
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
.clear{
	clear:both;
}
.clearfix:before, .clearfix::after {
  content: "";
  clear: both;
  display: block;
}

/**<div class="give_error_yes"><dd><i class="fa fa-check-circle"></i></dd><li>Please fill in required fields.</li></div>**/
/**<div class="give_error_no"><dd><i class="fa fa-exclamation-circle"></i></dd><li>Please fill in required fields.</li></div> times-circle**/
.my_no_result{
	text-align:center;
	font-size:25px;
	padding:25px 10px;
	color:#FF6C6C;
}


.sv_width{
    width: 95%;
    margin: 0 auto;
    max-width: 1250px;
    overflow: hidden;
	text-align:center;
	clear:both;
}
.sv_width2{
    width: 100%;
    margin: 0 auto;
    max-width: 1250px;
	text-align:center;
	clear:both;
}
.box_shadow{
	-webkit-box-shadow: 0px 0px 1px 1px rgba(51,51,51,0.1);
	        box-shadow: 0px 0px 1px 1px rgba(51,51,51,0.1);
}
.give_error_no, .give_error_yes{
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin:0 auto;
    position:fixed;
    left: 50%;
    top:10%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    background:rgba(0, 0, 0, 0.9);
    color:var(--t);
    font-size:11px;
    line-height:14px;
    backdrop-filter: blur(5px);
    -webkit-box-shadow:1px 1px 1px 1px rgba(0,0,0,0.1);
            box-shadow:1px 1px 1px 1px rgba(0,0,0,0.1);
    z-index:9999999999999999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-radius:var(--border-r);
    text-align: left;
    -webkit-animation: errorInOutRotate 5s forwards;
            animation: errorInOutRotate 5s forwards;
    pointer-events: none;
    user-select: none;
    border: 1px solid #00db1d;
    font-family: var(--font);
    letter-spacing: 0.7px;
}

@-webkit-keyframes errorInOutRotate {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
                transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
    }
    10% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
                transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    90% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
                transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
                transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
    }
}

@keyframes errorInOutRotate {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
    }
}
.give_error_no{
    color: #ff0000;
    border-color: #ff0000;
}

.give_error_no dd, .give_error_yes dd{
    color: #ff0000;
    font-family: 'Fjalla One', 'Rubik';
    font-weight: 600;
    font-size: 20px;
    display: none;
}
.give_error_yes dl img{
    display: block;
    width: 50%;
    margin: 0 auto;
}
.give_error_yes dd{
    color: #00db1d;
}
.give_error_no dl, .give_error_yes dl{
    text-align: left;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5px;
    margin: 0px;
    flex: 1;
    border-radius: var(--border-r);
}
.give_error_yes dl li{
    color: #00db1d;
}
/* .give_error_no:after{
    content: '';
    position: absolute;
    border-top: 1px solid #ff0000;
    bottom: 0;
    left: 100%;
    right: 0;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-animation: border_width 5s alternate;
            animation: border_width 5s alternate;

}
.give_error_yes:after{
    content: '';
    position: absolute;
    border-top: 1px solid #00db1d;
    bottom: 0;
    left: 100%;
    right: 0;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-animation: border_width 5s alternate;
            animation: border_width 5s alternate;

} */
@keyframes border_width  {
    0%{
        left:0%;
    }
     100%{
        left:100%;
     }
}
@-webkit-keyframes border_width  {
    0%{
        left:0%;
    }
     100%{
        left:100%;
     }
}
.give_error_no li, .give_error_yes li{
	padding: 3px 10px;
    color: #f20000;
    display: block;
    text-align: left;
    font-weight: 600;
}
.give_error_yes li{
    color: var(--t);
}
.give_error_no li:last-child, .give_error_yes li:last-child{
	border: none;
}
.give_error_no li em, .give_error_yes li em{
    display: none;
}
@keyframes showHide {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  10%, 80% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
}
.my_fade_box{
	opacity:0;
}
.noscript{
	font-size:20px;
	color:#f20000;
	text-align:center;
	font-weight:600;
	padding:25px;
	line-height:26px;
}
.noscript i{
	color:#F9F900;
	margin-right:8px;
	font-size:30px;
	vertical-align:middle;
}
.my_battan, .my_btn{
	display: inline-block;
    overflow: hidden;
    background: #1b73cb;
    color: #FFF;
    padding: 8px 8px;
    font-size: 15px;
    -webkit-box-shadow: 2px 2px 0px 0px #CCC;
            box-shadow: 2px 2px 0px 0px #CCC;
    border-radius: 2px;
    outline: none;
    border: none;
    -webkit-transition: ease-in-out 0.2s all;
    -o-transition: ease-in-out 0.2s all;
    transition: ease-in-out 0.2s all;
	cursor:pointer;
}
.my_btn:active{
	background:#004080;
	-webkit-transform:translate(2px,2px);
	    -ms-transform:translate(2px,2px);
	        transform:translate(2px,2px);
	-webkit-box-shadow:none;
	        box-shadow:none;
}
.my_btn2{
	background-color:#F20000;
}
.loading1{
	position:fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3) url(../img/loading4.gif) no-repeat center center;
    top: 0px;
    left: 0px;
	z-index:9999999999999;
    background-size: 100px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.loading2{
	display:none;
	position:fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3) url(../img/loading4.gif) no-repeat center center;
    top: 0px;
    left: 0px;
	z-index:9999999999999;
    background-size: 100px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.loading3{
	position:absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3) url(../img/loading4.gif) no-repeat center center;
    top: 0px;
    left: 0px;
	z-index:9999999999999;
    background-size: 70px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.loading4{
	display:none;
	position:absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3) url(../img/loading4.gif) no-repeat center center;
    top: 0px;
    left: 0px;
	z-index:9999999999999;
    background-size: 70px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.load{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.1) url(../img/load5.gif) center center no-repeat;
	z-index:500;
    background-size: 100px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.load5{
	position:absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05) url(../img/load5.gif) no-repeat center center;
    top: 0px;
    left: 0px;
	z-index:10;
    background-size: 100px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.load3_box{
	display:inline-block;
	position:fixed;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	    -ms-transform:translate(-50%,-50%);
	        transform:translate(-50%,-50%);
	background:rgba(0,0,0,0.1) url(../img/load5.gif) center no-repeat;
	background-size:contain;
	padding:8px;
	width:80px;
	height:80px;
	z-index:999;
	background-size:60%;
	border-radius:50%;
}
.my_no_file {
    margin: 15px 15px;
    overflow: hidden;
    text-align: center;
    opacity: 0.8;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), var(--pb3)); */
    padding: 28px 14px;
    border-radius: 16px;
    text-align: center;
    letter-spacing: .2px;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, .14); */
}

.my_no_file img {
    display: block;
    max-width: 60%;
    width: 40%;
    margin: 0 auto;
    /* filter: grayscale(1); */
    opacity: 0.8;
}

.my_no_file h2 {
    display: block;
    padding: 10px;
    font-size: 16px;
    color: var(--t4);
    margin: 0 auto;
    margin-top: 5px;
    font-family: var(--font);
	font-weight: 600;
}

.my_no_file p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 auto;
    line-height: 18px;
}

.my_no_file a{
	display:inline-block;
	clear:both;
    color: #ffffff;
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.1);
            box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.1);
	margin-top:10px;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.2);
    background: var(--p);
    background: linear-gradient(0deg, var(--pb2) 0%, var(--pb) 100%);
    box-shadow: 0 3px 6px rgba(55, 93, 80, 0.16), 0 3px 6px rgba(55, 93, 78, 0.23);
    border-radius: var(--border-r);
}
.my_no_file a:hover{
	cursor:pointer;
	color:#fff;
	background:#ff4400;
}
.img_shadow_box{
    padding: 10px;
    overflow: hidden;
    display: block;
}
.img_shadow {
    display: block;
    width: 100%;
    margin-top: 0;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 5px 0.05px rgb(0 0 0 / 20%);
            box-shadow: 0px 2px 5px 0.05px rgb(0 0 0 / 20%);
    clear: both;
}
.inmload_box{/*
	position:absolute;
	left:0px;
	top:0px;
	width:100%;*/
	overflow:hidden;
	display:flex;
	clear:both;
}
.inmload{
	flex:1;
	overflow:hidden;
	/*float:left;
	width:16.666%;*/
	position:relative;
}
.inmload span{
	background:#f9f9f9;
	display:block;
	min-height:50px;
	margin:10px ;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: placeHolderShimmer;
	background: #f6f7f8;
	background: linear-gradient(to right, rgba(255,255,255,0.009) 8%, rgba(255,255,255,0.03) 18%, rgba(255,255,255,0.009) 33%);
	background-size: 800px 104px;
	position:relative;
	z-index:1;
	box-shadow: 0px 0px 1px 1px rgba(51,51,51,0.1);
}

@keyframes placeHolderShimmer {
  0%{ background-position: -468px 0; }
  100%{ background-position: 468px 0; }
}
/**Popup**S**/
/**Popup**E**/
/**Head**S**/
.my_pbody{
    /* background: var(--pb);
    background: linear-gradient(180deg, var(--p) 0%, var(--pb) 100%); */
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* max-width: 700px; */
    width: 100%;
	height:100%;
	float:left;
	position:fixed;
	top:0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
	bottom:0;
	right:auto;
    overflow-x: hidden;
    overflow-y: auto;
    background-size: cover;
    z-index: 1;
}
.my_pbody::-webkit-scrollbar{
	width:4px;
	height:4px;
}
.my_pbody::-webkit-scrollbar-track{
	background:#fff;
	-webkit-box-shadow:inset 1px 1px 2px #e0e0e0;
	border:2px solid #d8d8d8;
	}
.my_pbody::-webkit-scrollbar-thumb{
	background:#0058af;
	-webkit-box-shadow:inset 1px 1px 2px rgba(155,155,155,.4);
}
.my_pbody::-webkit-scrollbar-thumb:hover{
	-webkit-box-shadow:inset 1px 1px 10px rgba(0,0,0,.3);
}
.my_pbody::-webkit-scrollbar-thumb:active{
	background:#888;
	-webkit-box-shadow:inset 1px 1px 2px rgba(0,0,0,.3);
}
.my_pbody::-webkit-scrollbar-track {box-shadow:inset 0 0 5px rgba(0,0,0,0.3);-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.3);
-moz-box-shadow:inset 0 0 5px rgba(0,0,0,0.3);border-radius:8px;}

.my_pbody *::-webkit-scrollbar{
	width:4px;
	height:4px;
}
.my_pbody *::-webkit-scrollbar-track{
	background:#fff;
	-webkit-box-shadow:inset 1px 1px 2px #e0e0e0;
	border:2px solid #d8d8d8;
	}
.my_pbody *::-webkit-scrollbar-thumb{
	background:var(--pb);
	-webkit-box-shadow:inset 1px 1px 2px rgba(155,155,155,.4);
}
.my_pbody *::-webkit-scrollbar-thumb:hover{
	-webkit-box-shadow:inset 1px 1px 10px rgba(0,0,0,.3);
}
.my_pbody *::-webkit-scrollbar-thumb:active{
	background:#888;
	-webkit-box-shadow:inset 1px 1px 2px rgba(0,0,0,.3);
}
.my_pbody *::-webkit-scrollbar-track {box-shadow:inset 0 0 5px rgba(0,0,0,0.3);-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.3);
-moz-box-shadow:inset 0 0 5px rgba(0,0,0,0.3);border-radius:8px;}
.my_pbody_in{
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0px;
    padding-bottom: var(--bhdp);
    overflow-x: hidden;
    overflow-y: auto;
    /* background: var(--pb); */
    background-size: cover;
    padding-top: var(--hd);
}
.my_pbody_in2{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
.my_click_tab{
	background: var(--w);
	display: flex;
	align-items: center;
	border-bottom: 1px solid #f3f3f3;
	overflow: auto hidden ;
}
.my_click_tab section{
	display: flex;
	align-items: center;
	border-right: 1px solid #e7e7e7;
}
.my_click_tab section a{
	font-size: 12px;
	display: flex;
	align-items: center;
	padding: 12px 10px;
	padding-right: 0;
	color: var(--t6);
	opacity: 0.8;
	white-space: nowrap;
}
.my_click_tab section:first-child a{
	padding-right: 10px;
}
.my_click_tab section a i{
	font-size: 10px;
	margin-right: 5px;
}
.my_click_tab section a:hover{
	opacity: 1;
	cursor: pointer;
}
.my_click_tab section a.active{
	color: var(--b);
	opacity: 1;
}
.my_click_tab section a.active i{
	color: var(--blue);
}
.my_click_tab section span{
	font-size: 12px;
	padding: 10px;
	opacity: 0.3;
}
.my_click_tab section span:hover{
	cursor: pointer;
	opacity: 1;
}
/**Head**E**/
/**Menu**S**/

.sva_menu{
	top:0px;
	left:0px;
	bottom:0px;
	width:200px;
    padding-top: 50px;
	background:#414141;
    position: fixed;
	z-index:1000;
    box-shadow: 0 0 2px 4px rgba(0,0,0,.16), 0 2px 4px rgba(0,0,0,0.24);
    -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out;
    transition: transform .3s ease-in-out,width .3s ease-in-out;
	overflow:auto;
}
.sva_menu::-webkit-scrollbar {
    width: 4px;
	box-shadow:inset 1px 1px 2px #666;
	-moz-box-shadow:inset 1px 1px 2px #666;
	-o-box-shadow:inset 1px 1px 2px #666;
	-webkit-box-shadow:inset 1px 1px 2px #666;
}
.sva_menu::-webkit-scrollbar-thumb {
    height: 56px;
    background: rgba(0, 0, 00, 0.4);
}
.sva_menu::-webkit-scrollbar-thumb:active {
	background-color:#333;
	cursor:row-resize;
}
.sva_menu section{
	position:relative;
	/*border-bottom:1px solid rgba(255,255,255,0.05);*/
	overflow:hidden;
}
.sva_menu section dl{
	height:50px;
	display:flex;
	/* border-left:4px solid; */
	transition:ease-in-out 0.2s all;
	overflow:hidden;
}
.sva_menu section dl i{
	display:inline-block;
	width:40px;
	height:50px;
	font-size:16px;
	text-align:center;
	line-height:49px;
	color:#a7a7a7;
}
.sva_menu section dl a{
    display: flex;
	height:50px;
	text-align:left;
	color:#e2e2e2;
	font-size:14px;
	width:90%;
	/*font-weight:600;*/
    align-items: center;
	vertical-align:middle;
	text-shadow:1px 1px 1px rgba(0,0,0,0.3);
}
.sva_menu section dl em{
	display:inline-block;
	width:30px;
	height:50px;
	font-size:14px;
	color:#FFF;
	line-height:52px;
	text-align:center;
	transition:ease-in-out 0.2s all;
}
.sva_menu section dl:hover{
	color:#09F;
	background:#000;
	border-color:#09F;
	cursor:pointer;
}
.sva_menu section dl:hover i{
	color:#09F;
}
.sva_menu section dl:hover a{
	color:#09F;
}
.sva_menu section:hover dl{
	color:#09F;
	background:#000;
	border-color:#09F;
}
.sva_menu section:hover dl i{
	color:#09F;
}
.sva_menu section:hover dl a{
	color:#09F;
}
.sva_head_b1{
	width:200px;
	float:left;
	height:50px;
	overflow:hidden;
    -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out;
    transition: transform .3s ease-in-out,width .3s ease-in-out;
	position:absolute;
	top:0px;
	left:0px;
	background:#fff url(./../img/g4.png);
	border-radius:0px 0px 5px 0px;
}
.sva_head_b1 a{
	display:block;
	height:50px;
}
.sva_head_b1 img{
	margin:0 auto;
	height:40px;
	display:block;
	margin-top:5px;
	width:95%;
}
.sva_head_b2{
	height:50px;
    -webkit-transition: -webkit-transform .3s ease-in-out,margin-left .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out,margin-left .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out,margin-left .3s ease-in-out;
    transition: transform .3s ease-in-out,margin-left .3s ease-in-out;
	position:relative;
	margin-left:200px;
	display: flex;
}
.sva_head_cat_i{
	float:left;
	height:50px;
    overflow: hidden;
    flex: 1 0 50px;
    max-width: 50px;
}
.sva_head_cat_i i{
	width:50px;
	height:50px;
	font-size:24px;
	color:#FFF;
	line-height:50px;
}
.sva_head_cat_i i:hover{
	cursor: pointer;
}
.sva_menu_active dl{
	color:#09F;
	background:#000;
	border-color:#09F;
}
.sva_menu_active dl i{
	color:#09F !important;
}
.sva_menu_active dl em{
	transform:rotate(90deg);
}
.sva_menu_active dl a{
	color:#09F !important;
}

/*.sva_menu section:hover aside{
	display:block;
}
.sva_menu section:hover dl em{
	transform:rotate(90deg);
}*/
dt.sva_menu_s_active a{
	color:#09F !important;
}

.sva_menu_show aside{
	display:block !important;
}
.sva_menu_show dl em{
	transform:rotate(90deg);
}
.sva_menu_show 	dl a span{
	color:#fff;
}
.sva_menu_show dl{
	color:#09F;
	background:#000;
	border-color:#09F;
}


.sva_head{
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.16), 0 2px 4px rgba(0,0,0,0.24);
    position: fixed;
	background:#414141;
	height:50px;
	z-index:1001;
}
.sva_body{
	padding-top: 50px;
    -webkit-transition: -webkit-transform .3s ease-in-out,margin .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out,margin .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out,margin .3s ease-in-out;
    transition: transform .3s ease-in-out,margin .3s ease-in-out;
    margin-left: 200px;
	min-height:200px;
}
.sva_menu_t2{
	text-align:left;
	overflow:hidden;
	clear:both;
	font-size:12px;
	font-weight:600;
	padding-left:5px;
	padding:18px  5px;
	color:#8BC34A;
	letter-spacing:1px;
	border-top:1px solid rgba(255,255,255,0.1);
    display: none;
}

.sva_menu_t3{
	text-align:left;
	overflow:hidden;
	clear:both;
	font-size:12px;
	font-weight:800;
	padding-left:5px;
	padding:10px  5px;
	color:rgba(0,0,0,0.3);
	letter-spacing:1px;
	border-top:1px solid rgba(255,255,255,0.1);
}

.sva_menu section aside{
	display:none;
	overflow:hidden;
	background:rgba(255,255,255,0.98);
	margin:0px 5px;
	margin-bottom:10px;
	border-radius:0px 0px 5px 5px;
	padding:2px;
}
.sva_menu section aside dt{
	overflow:hidden;
}
.sva_menu section aside dt a{
	display:flex;
    align-items: center;
	text-align:left;
	transition:ease-in-out 0.2s all;
	text-shadow:1px 1px 1px rgba(0,0,0,0.1);
	color:#333;
	border-bottom:1px solid #f2f2f2 !important;
    white-space: normal;
    padding: 13px 10px;
	width:inherit;
    white-space: nowrap;
    font-size: 13px;
	line-height: 16px;
}
.sva_menu section aside dt a i{
	height:30px;
	width:25px;
	line-height:30px;
	color:#929292;
    display: none;
}
.sva_menu section aside dt a span{
	display:flex;
	/* height:30px; */
    align-items: center;
	vertical-align:middle;
    white-space: normal;
}
.sva_menu section aside dt a:hover{
	border-radius:4px;
	background:rgba(0,0,0,0.05);
	font-weight:normal;
}

section.sva_menu_active aside{
	display:inherit;
}

.sva_head_search{
	float:left;
    display: -webkit-box;
    display: -ms-flexbox;
	display:flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
	height:50px;
}
.sva_head_search input{
	flex:1;
	border:none;
	outline:none;
	margin:7px 0px;
	padding:0px 15px;
	font-size:14px;
	border-radius:7px 0px 0px 7px;
	padding-right:25px;
	color:#666;
}
.sva_head_search button{
	flex:1;
	border:none;
	outline:none;
	margin:7px 0px;
	padding:0px 15px;
	font-size:18px;
	border-radius:0px 7px 7px 0px;
	background:#3bb1ff;
	color:#fff;
	opacity:0.9;
	transition:ease-in-out 0.2s all;
}
.sva_head_search button:hover{
	cursor:pointer;
	opacity:1;
}
.sva_head_r{
	float:right;
	height:50px;
	display:flex;
    margin-left: auto;
}
.sva_head_r_i{
	position:relative;
	/* flex:1; */
}
.sva_head_r_i dl{
	font-size:20px;
	height:50px;
	display:flex;
    align-items: center;
	text-align:center;
    justify-content: center;
	color:rgba(255,255,255,0.5);
	width:45px;
	position:relative;
	transition:ease-in-out 0.2s all;
	border-right:1px solid rgba(255,255,255,0.1);
}
.sva_head_r_i dl:hover{
	color:rgba(255,255,255,0.9);
	cursor:pointer;
}
.sva_head_r_i dl small{
	color:#FFF;
	width:17px;
	height:17px;
	text-align:center;
	border-radius:50%;
	position:absolute;
	font-size:12px;
	background:#f20000;
	line-height:17px;
	top:8px;
	right:2px;
}
.sva_head_r_user{
	position:relative;
	flex:1;
}
.sva_head_r_user dl{
	height:50px;
	display:flex;
	padding:0px 15px;
	padding-left:15px;
    align-items: center;
}
.sva_head_r_user dl img{
	width:40px;
	height:40px;
    min-width: 40px;
	border-radius:50%;
}
.sva_head_r_user dl span{
	
    display: flex;
    align-items: center;
	padding-right:10px;
	font-size:12px;
	line-height:14px;
	color:#fff;
	color:rgba(255,255,255,0.9);
	text-align:right;
	font-weight: 400;
}
.sva_head_r_user dl h1{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
    height: 40px;
	min-width: 40px;
    border-radius: 50%;
	font-size: 16px;
	color: var(--w);
	font-weight: 500;
}
.sva_head_r_user:hover{
	cursor:pointer;
}
.sva_head_r_user:hover span{
	color:#fff;
}
.sva_head_r_i aside{
	background:#FFF;/*
	padding:10px;*/
	border-radius:0px 0px 7px 7px;
	z-index:430;
	transition:ease-in-out 0.2s all;
	/*right:-100%;*/
	position:absolute;
	top:50px;
	right:0px;
	width:350px;
	padding:0px 0px;
	display:none;
	-webkit-animation-name: growInPopup;
    animation-name: growInPopup;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}
.sva_head_r_i aside h3{
    text-align: left;
    overflow: hidden;
    clear: both;
    font-size: 12px;
    font-weight: 800;
    padding: 15px 20px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
	background:#e74a3b;
}
.sva_head_r_i aside h2{
    text-align: center;
    overflow: hidden;
    clear: both;
    color: rgba(0,0,0,0.5);
    letter-spacing: 1px;
	background:#f9f9f9;
	border-radius:0px 0px 7px 7px;
	overflow:hidden;
}
.sva_head_r_i aside h2 a{
    color: rgba(0,0,0,0.5);
	display:block;
    font-size: 12px;
    font-weight: 600;
    padding: 15px 20px;
	transition:ease-in-out 0.2s all;
}
.sva_head_r_i aside section{
    border-bottom: 1px solid #eeeff5;
}
.sva_head_r_i aside h2 a:hover{
    background: rgba(0,0,0,0.03);
	cursor:pointer;
}
.sva_head_r_i aside a{
	display:flex;
    justify-content: center;
    align-items: center;
	transition: ease-in-out 0.2s all;
}
.sva_head_r_i aside a:hover{
    background: rgba(0,0,0,0.03);
	
}
.sva_head_r_i aside a nav{
    flex-basis: 25%;
	color:rgba(255,51,0,0.5);
	font-size:30px;
	padding:10px 0px;
}
.sva_head_r_i aside a dd{
	flex:1;
	text-align:left;
	padding:10px 5px;
}
.sva_head_r_i aside a dd h4{
	font-weight:400;
	color:#bec2da;
	font-size:12px;
	padding-bottom:3px;
	font-style:italic;
}
.sva_head_r_i aside a dd article{
	font-size:16px;
	color:#999;
	line-height:20px;
	padding-right:5px;
}
.sva_head_r_i aside a dd article b{
	color:#666;
}
.sva_head_r_i aside a dd article i{
	color:#dddfec;
	padding-left:4px;
	display:inline-block;
	
}
.alertMenuShow aside{
	display:block;
}
.unpaidMenuShow aside{
	display:block;
}



.sva_head_r_user aside{
	background:#FFF;/*
	padding:10px;*/
	border-radius:0px 0px 7px 7px;
	z-index:430;
	transition:ease-in-out 0.2s all;
	/*right:-100%;*/
	position:absolute;
	top:50px;
	right: 0;
	width:150px;
	padding:0px 0px;
	display:none;
	-webkit-animation-name: growInPopup;
    animation-name: growInPopup;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}

@keyframes growInPopup {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.adminMenuShow aside{
	display:block;
}
.sva_head_r_user aside a{
	display:block;
	border-bottom:1px solid #f9f9f9;
	color:#666;
	font-size:14px;
	padding:10px 10px;
	text-align:left;
	transition:ease-in-out 0.2s all;
	/* white-space: nowrap; */
}
.sva_head_r_user aside a i{
    color: #dddfec;
	margin-right:5px;
}
.sva_head_r_user aside a:hover{
	background:rgba(0,0,0,0.02);
	cursor:pointer;
}

/**Menu**E**/

/**Other**S**/

.shadow {
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;	
}
.sv_back_to_top{
	position: fixed;
    bottom: 40px;
    right: 10px;
    /* -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); */
    width: auto;
    -webkit-animation: d 0.3s ease;
            animation: d 0.3s ease;
    min-width: 50px;	
    color: var(--p);
    background-color: #fff;
    border-radius: 50px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0,0,0,0.15);
            box-shadow: 0 2px 8px 0 rgba(0,0,0,0.15);
	text-align:center;
	font-size:14px;
	padding:8px;
	-webkit-transition:ease-in-out 0.2s all;
	-o-transition:ease-in-out 0.2s all;
	transition:ease-in-out 0.2s all;
	display:none;
	z-index:349;
}
.sv_back_to_top i{
	font-size:18px;
}
.sv_back_to_top:hover{
	cursor:pointer;
	background:var(--s);
	color:#fff;
}
.my_t1{
	padding:10px 15px;
	text-align: left;
	margin-bottom: 5px;
}
.my_t1 h1{
	font-family: var(--font);
	font-size: 25px;
	color: var(--b);
	font-weight: 600;
}
.my_t1 h3{
	font-family: var(--font);
	font-size: 14px;
	color: #9e9e9e;
	font-weight: 500;
	padding-top: 5px;
}
/**Other**E**/
/**Notes**S**/
/**Notes**E**/