/*variable*/
:root{
		--mainColor:#bd232f;
		--second_menu_color:#e7e7e7;
		--sub_menu_color:#feffff;
}
/*variable*/

.main_color_bg{background-color:var(--mainColor) !important;}
.main_color_font{color:var(--mainColor) !important;;}
.main_color_border{border: 1px solid var(--mainColor) !important;;}
.main_color_border_left_bold{border-left:4px solid var(--mainColor) !important;;}
.main_color_border_left_light_dashed{border-left:2px dashed ;}

#roller {
    height: 70px;
    padding-top: 13px;
    position: fixed;
    text-align: center;
    width: 100%;
	z-index:102;
	left:0;
	top:0;
	display:none;
}

#rolling_msg {
    color: white;
    display: inline-block;
    margin-left: 30px;
    margin-top: 10px;
    text-transform: uppercase;
    vertical-align: top;
}

.spinner {
  width: 30px;
  height: 30px;
  display:inline-block;
  position: relative;
}

.cube1, .cube2 {
  background-color: #fff;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
  25% { -webkit-transform: translateX(24px) rotate(-90deg) scale(0.5) }
  50% { -webkit-transform: translateX(24px) translateY(24px) rotate(-180deg) }
  75% { -webkit-transform: translateX(0px) translateY(24px) rotate(-270deg) scale(0.5) }
  100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
  25% { 
    transform: translateX(24px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(24px) rotate(-90deg) scale(0.5);
  } 50% { 
    transform: translateX(24px) translateY(24px) rotate(-179deg);
    -webkit-transform: translateX(24px) translateY(24px) rotate(-179deg);
  } 50.1% { 
    transform: translateX(24px) translateY(24px) rotate(-180deg);
    -webkit-transform: translateX(24px) translateY(24px) rotate(-180deg);
  } 75% { 
    transform: translateX(0px) translateY(24px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(24px) rotate(-270deg) scale(0.5);
  } 100% { 
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

#general_msg_area {
    color: white;
    display: none;
    height: 70px;
    line-height: 70px;
    position: fixed;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
	left:0;
	z-index:102;
}
#general_msg_area img {
    width: 18px;
    vertical-align: middle;
    margin: 5px;
    filter: brightness(0) invert(1);
}

	
	#popArea {
    position: fixed;
		display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 110;
    background: rgba(0, 0, 0, 0.7);
}
	
	#popBox {
    margin: auto;
    display: block;
    max-width: 90vw;
    transform: translateY(-50%);
    background: white;
    position: relative;
    top: 50%;
    border-radius: 3px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    width: 600px;
}
	#close_pop {
    position: absolute;
    right: -15px;
    width: 30px;
    background: gray;
    height: 30px;
    border: 1px solid white;
    border-radius: 30px;
    text-align: center;
    line-height: 28px;
    top: -15px;
    color: white;
}
	
	#pop_content {
    height: 100%;
    display: table;
    width: 100%;
}
	
	#popSign {
    display: table-cell;
    width: 20%;
    text-align: center;
    font-size: 70px;
		color:lightgray;
    vertical-align: top;
}
	
	#pop_area {
    display: table-cell;
    vertical-align: top;
    padding: 10px;
}
	
	#pop_title {
    font-weight: bold;
    margin-bottom: 10px;
		padding-bottom:5px;
    border-bottom: 1px solid gray;
}
	
	.action {
    display: inline-block;
    width: 50%;
    text-align: center;
    padding: 10px;
    border: 0;
    vertical-align: top;
}
	
	
	.gray_bg {
    background: lightgray;
}