/*
 *  webui popover plugin  - v1.2.17
 *  A lightWeight popover plugin with jquery ,enchance the  popover plugin of bootstrap with some awesome new features. It works well with bootstrap ,but bootstrap is not necessary!
 *  https://github.com/sandywalker/webui-popover
 *
 *  Made by Sandy Duan
 *  Under MIT License
 */

 .c-tips{
	margin-left:36%;
	max-width:640px;
	position:fixed;
	text-align:center;
	top:15px;
	width:58%;
	z-index:10001;
	left:50%;
	margin-left:-320px
}

.c-tips-message{
	color: #fff;
	font-size: 14px;
	padding: 18px 40px;
    display: inline-block;
    border-radius: 3px;
    margin: 0;
	line-height: 1;
    font-weight: 300;
}

.c-tips-message i {
	font-size: 14px ;
	color: #11B674;
	margin-right: 5px;
}


 
@keyframes fade-in {    
    0% {opacity: 0;}/*初始状态 透明度为0*/    
    40% {opacity: 0;}/*过渡状态 透明度为0*/    
    100% {opacity: 1;}/*结束状态 透明度为1*/    
}    
@-webkit-keyframes fade-in {/*针对webkit内核*/    
    0% {opacity: 0;}    
    40% {opacity: 0;}    
    100% {opacity: 1;}    
}    
.content-area , .user-panel , .invitation_page {      
    animation: fade-in;/*动画名称*/    
    animation-duration: .5s;/*动画持续时间*/    
    -webkit-animation:fade-in .5s;/*针对webkit内核*/    
}  
 .webui-popover-content {
  display: none;
}
.webui-popover-rtl {
  direction: rtl;
  text-align: right;
}
/*  webui popover  */
.webui-popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  min-width: 50px;
  min-height: 32px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  background-clip: padding-box;
  -moz-box-shadow: 3px 3px 15px #aebfff2b;
    -webkit-box-shadow: 3px 3px 15px #aebfff2b;
    box-shadow: 3px 3px 15px #aebfff2b;
	border-radius: 2px;	
}
.webui-popover.top,
.webui-popover.top-left,
.webui-popover.top-right {
  margin-top: -10px;
}
.webui-popover.right,
.webui-popover.right-top,
.webui-popover.right-bottom {
  margin-left: 10px;
}
.webui-popover.bottom,
.webui-popover.bottom-left,
.webui-popover.bottom-right {
  margin-top: 10px;
}
.webui-popover.left,
.webui-popover.left-top,
.webui-popover.left-bottom {
  margin-left: -10px;
}
.webui-popover.pop {
  -webkit-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: transform 0.15s cubic-bezier(0.3, 0, 0, 1.5);
  -o-transition: transform 0.15s cubic-bezier(0.3, 0, 0, 1.5);
  transition: transform 0.15s cubic-bezier(0.3, 0, 0, 1.5);
  opacity: 0;
  filter: alpha(opacity=0);
}
.webui-popover.pop-out {
  -webkit-transition-property: "opacity,transform";
  -o-transition-property: "opacity,transform";
  transition-property: "opacity,transform";
  -webkit-transition: 0.15s linear;
  -o-transition: 0.15s linear;
  transition: 0.15s linear;
  opacity: 0;
  filter: alpha(opacity=0);
}
.webui-popover.fade,
.webui-popover.fade-out {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  opacity: 0;
  filter: alpha(opacity=0);
}
.webui-popover.out {
  opacity: 0;
  filter: alpha(opacity=0);
}
.webui-popover.in {
  -webkit-transform: none;
  -o-transform: none;
  transform: none;
  opacity: 1;
  filter: alpha(opacity=100);
}
.webui-popover .webui-popover-content {
  padding: 9px 14px;
  overflow: auto;
  display: block;
}
.webui-popover .webui-popover-content > div:first-child {
  
}
.webui-popover-inner .close {
  font-family: arial;
  margin: 8px 10px 0 0;
  float: right;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  color: #000000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
  text-decoration: none;
}
.webui-popover-inner .close:hover,
.webui-popover-inner .close:focus {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.webui-popover-inner .close:after {
  content: "\00D7";
  width: 0.8em;
  height: 0.8em;
  padding: 4px;
  position: relative;
}
.webui-popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  background-color: #ffffff;
  border-bottom: 1px solid #f2f2f2;
  border-radius: 5px 5px 0 0;
}
.webui-popover-content {
  padding: 9px 14px;
  overflow: auto;
  display: none;
}
.webui-popover-inverse {
  background-color: #333333;
  color: #eeeeee;
}
.webui-popover-inverse .webui-popover-title {
  background: #333333;
  border-bottom: 1px solid #3b3b3b;
  color: #eeeeee;
}
.webui-no-padding .webui-popover-content {
  padding: 0;
}
.webui-no-padding .list-group-item {
  border-right: none;
  border-left: none;
}
.webui-no-padding .list-group-item:first-child {
  border-top: 0;
}
.webui-no-padding .list-group-item:last-child {
  border-bottom: 0;
}
.webui-popover > .webui-arrow,
.webui-popover > .webui-arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.webui-popover > .webui-arrow {
  border-width: 11px;
}
.webui-popover > .webui-arrow:after {
  border-width: 10px;
  content: "";
}
.webui-popover.top > .webui-arrow,
.webui-popover.top-right > .webui-arrow,
.webui-popover.top-left > .webui-arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #e7ebff;
  border-top-color: #e7ebff;
  border-bottom-width: 0;
}
.webui-popover.top > .webui-arrow:after,
.webui-popover.top-right > .webui-arrow:after,
.webui-popover.top-left > .webui-arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-bottom-width: 0;
}
.webui-popover.right > .webui-arrow,
.webui-popover.right-top > .webui-arrow,
.webui-popover.right-bottom > .webui-arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #e7ebff;
  border-right-color: #e7ebff;
}
.webui-popover.right > .webui-arrow:after,
.webui-popover.right-top > .webui-arrow:after,
.webui-popover.right-bottom > .webui-arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.webui-popover.bottom > .webui-arrow,
.webui-popover.bottom-right > .webui-arrow,
.webui-popover.bottom-left > .webui-arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-color: #e7ebff;
  border-bottom-color: #e7ebff;
  border-top-width: 0;
}
.webui-popover.bottom > .webui-arrow:after,
.webui-popover.bottom-right > .webui-arrow:after,
.webui-popover.bottom-left > .webui-arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-top-width: 0;
}
.webui-popover.left > .webui-arrow,
.webui-popover.left-top > .webui-arrow,
.webui-popover.left-bottom > .webui-arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #e7ebff;
  border-left-color: #e7ebff;
}
.webui-popover.left > .webui-arrow:after,
.webui-popover.left-top > .webui-arrow:after,
.webui-popover.left-bottom > .webui-arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.webui-popover-inverse.top > .webui-arrow,
.webui-popover-inverse.top-left > .webui-arrow,
.webui-popover-inverse.top-right > .webui-arrow,
.webui-popover-inverse.top > .webui-arrow:after,
.webui-popover-inverse.top-left > .webui-arrow:after,
.webui-popover-inverse.top-right > .webui-arrow:after {
  border-top-color: #333333;
}
.webui-popover-inverse.right > .webui-arrow,
.webui-popover-inverse.right-top > .webui-arrow,
.webui-popover-inverse.right-bottom > .webui-arrow,
.webui-popover-inverse.right > .webui-arrow:after,
.webui-popover-inverse.right-top > .webui-arrow:after,
.webui-popover-inverse.right-bottom > .webui-arrow:after {
  border-right-color: #333333;
}
.webui-popover-inverse.bottom > .webui-arrow,
.webui-popover-inverse.bottom-left > .webui-arrow,
.webui-popover-inverse.bottom-right > .webui-arrow,
.webui-popover-inverse.bottom > .webui-arrow:after,
.webui-popover-inverse.bottom-left > .webui-arrow:after,
.webui-popover-inverse.bottom-right > .webui-arrow:after {
  border-bottom-color: #333333;
}
.webui-popover-inverse.left > .webui-arrow,
.webui-popover-inverse.left-top > .webui-arrow,
.webui-popover-inverse.left-bottom > .webui-arrow,
.webui-popover-inverse.left > .webui-arrow:after,
.webui-popover-inverse.left-top > .webui-arrow:after,
.webui-popover-inverse.left-bottom > .webui-arrow:after {
  border-left-color: #333333;
}
.webui-popover i.icon-refresh:before {
  content: "";
}
.webui-popover i.icon-refresh {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  top: 50%;
  left: 50%;
  position: absolute;
  margin-left: -15px;
  margin-right: -15px;
  background: url(../img/loading.gif) no-repeat;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.webui-popover-backdrop {
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
.webui-popover .dropdown-menu {
  display: block;
  position: relative;
  top: 0;
  border: none;
  box-shadow: none;
  float: none;
}

/*  login form  */
form.ajax-auth{
    display: none;
    z-index: 10001;
    position: fixed;
    top: 150px;
    left: 50%;
    width: 350px;
    margin-left: -175px;
    padding: 40px 25px 25px 25px;
    background-color: #FFFFFF;
    border-radius: 3px;
    font-family: PingFang SC,Hiragino Sans GB,Microsoft YaHei,STHeiti,WenQuanYi Micro Hei,Helvetica,Arial,sans-serif;
    color: #212121;
    font-size: 11px;
}

.ajax-auth h1, .ajax-auth h3{
    font-family: PingFang SC,Hiragino Sans GB,Microsoft YaHei,STHeiti,WenQuanYi Micro Hei,Helvetica,Arial,sans-serif;
    font-weight: 100;
    color: #333333;    
	line-height: 1;    
}

.ajax-auth h1{
    font-size: 27px;
    text-align: left;
    margin: 0 0 10px 0;
	font-weight: 600;
}

.ajax-auth h3{
    margin: 0;
	margin-bottom: 30px;
    display: inline-block;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.ajax-auth h2 {
	display: inline-block;
    width: 100%;
}

.ajax-auth h3 a{
	color: #5534ff;
    font-weight: 400;
}

.ajax-auth hr {
    background-color: rgba(224, 220, 255, 0.78);
    border: 0 none;
    height: 1px;
    margin: 20px 0;
}

.ajax-auth input#username,
.ajax-auth input#password,
.ajax-auth input#signonname,
.ajax-auth input#user_email,
.ajax-auth input#signonpassword,
.ajax-auth input#password2,
.ajax-auth input#user_login,
.ajax-auth input#invitation_code,
.ajax-auth input#captcha{
    border: 1px solid #dbd4ff;
    border-radius: 0;
    color: #333333;
    font-size: 15px;
    padding: 10px 10px 10px 40px;
    background-color: #f0efff;
    font-family: PingFang SC,Hiragino Sans GB,Microsoft YaHei,STHeiti,WenQuanYi Micro Hei,Helvetica,Arial,sans-serif;
    width: 100%;
	border-radius: 3px;
}

.ajax-auth input#captcha {
	width: 70%;
}

.ajax-auth .captchapush {
    width: 28%;
    display: inline-block;
    background: #5c4f90;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    border-radius: 3px;
    float: right;
    cursor: pointer;
}

.ajax-auth input#username:focus,
.ajax-auth input#password:focus,
.ajax-auth input#signonname:focus,
.ajax-auth input#user_email:focus,
.ajax-auth input#signonpassword:focus,
.ajax-auth input#password2:focus,
.ajax-auth input#user_login:focus,
.ajax-auth input#invitation_code:focus,
.ajax-auth input#captcha:focus{
	outline: none;
	border: 1px solid #6c6aff
}

.ajax-auth label.error{
	display: none !important;
}

.ajax-auth input.error{
	border: 1px solid #FF0000 !important;
}

.ajax-auth input.submit_button{
    font-size: 13px;
    color: #FFF;
    background: -webkit-gradient(linear,left top,right top,from(#9c51ff),to(#816bff));
    background: -webkit-linear-gradient(90deg,#9c51ff,#816bff);
    background: linear-gradient(90deg,#9c51ff,#816bff);
    border-radius: 0px;
    padding: 16px 31px;
    width: 100%;
    border: none;
    margin-top: 20px;	
	cursor: pointer;
	display: inline-block;
	border-radius: 3px;
}

.ajax-auth input.submit_button:focus {
	outline: none
}

.ajax-auth a{
    text-decoration: none;
}

.ajax-auth a.close{
    color: #9ca0d4;
    position: absolute;
    right: 15px;
    top: 15px;
}

.ajax-auth a.text-link{
    color: #B4B2B2;
    float: left;
}

.ajax-auth p.status{
    text-align: left;
    margin: -15px 0 20px 0;
	font-weight: 400;
    display: none;
    color: #f65fff;	
	padding-top: 5px;
}

a.login_button{
    height: 80px;
    line-height: 80px;	
}

a.login_button i {
    font-size: 25px;
    color: #101010;	
}

.login_overlay{
    height: 100%;
    width: 100%;
    background-color: #19173c;
    opacity: 0.8;
    position: fixed;
    z-index: 998;
}

form#login label , form#register label, form#forgot_password label {
	position: relative;
	margin: 7px 0 12px 0;
	display: inline-block;
    width: 100%;
}

i.iconfont.loginicon {
    position: absolute;
    top: 10px;
    left: 15px;
}

p.log_title {
    margin-top: 0px;
    color: #9ca0ce;
}

/* noty */
.naranja-notification {
	height: 0;
	box-sizing: content-box;
	padding: 10px 0;
	transition: padding .7s cubic-bezier(0, .5, 0, 1),height .7s cubic-bezier(0, .5, 0, 1)
}

.naranja-notification * {
	box-sizing: border-box
}

.naranja-notification .narj-log {
	background: -webkit-gradient(linear,left top,right top,from(#9c51ff),to(#816bff));
    background: -webkit-linear-gradient(90deg,#9c51ff,#816bff);
    background: linear-gradient(90deg,#9c51ff,#816bff);
}

.naranja-notification .narj-log button {
	border: 1px solid #D2D2D2;
	background-color: white
}

.naranja-notification .narj-log button:first-of-type {
	color: #0099E5
}

.naranja-notification .narj-success {
	background: -webkit-gradient(linear,left top,right top,from(#62ffaf),to(#81caff));
    background: -webkit-linear-gradient(90deg,#62ffaf,#81caff);
    background: linear-gradient(90deg,#62ffaf,#81caff);
}

.naranja-notification .narj-success button {
	border: 1px solid #6ED69A;
	background-color: #B8F4BC;
	opacity: .9;
	color: #11B674
}

.naranja-notification .narj-success button:first-of-type {
	opacity: 1
}

.naranja-notification .narj-warn {
	background: -webkit-gradient(linear,left top,right top,from(#ffe66c),to(#ff6b6b));
    background: -webkit-linear-gradient(90deg,#ffe66c,#ff6b6b);
    background: linear-gradient(90deg,#ffe66c,#ff6b6b);
}

.naranja-notification .narj-warn button {
	border: 1px solid #F5CE69;
	background-color: #FFDD85;
	opacity: .9;
	color: #D9993F
}

.naranja-notification .narj-warn button:first-of-type {
	opacity: 1
}

.naranja-notification .narj-error {
	background: -webkit-gradient(linear,left top,right top,from(#ffab42),to(#ff5050));
    background: -webkit-linear-gradient(90deg,#ffab42,#ff5050);
    background: linear-gradient(90deg,#ffab42,#ff5050);
}

.naranja-notification .narj-error button {
	border: 1px solid #ED8476;
	background-color: #ED9286;
	opacity: .9;
	color: #C24343
}

.naranja-notification .narj-error button:first-of-type {
	opacity: 1
}

.naranja-notification .naranja-body-notification {
	animation: .4s fadeUpIn 1 cubic-bezier(0, .5, 0, 1);
	position: relative;
	display: flex;
	width: 310px;
	border-radius: 4px;
	padding: 15px 15px;
	box-shadow: 0 5px 10px rgba(120, 149, 255, 0.3);
	margin-bottom: 7px;
	margin-top: 12px;
	opacity: 1;
	transition: opacity .15s ease,marginTop .3s ease,marginBottom .3s ease,padding .3s ease
}

.naranja-notification .naranja-body-notification:hover .naranja-close-icon {
	opacity: .7
}

.naranja-notification .naranja-body-notification:hover .naranja-close-icon:hover {
	opacity: 1
}

.naranja-notification .naranja-body-notification>div {
	display: inline-flex;
	justify-content: center;
	align-items: center
}

.naranja-notification .naranja-body-notification .naranja-text-and-title {
	padding-left: 15px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start
}

.naranja-notification .naranja-body-notification .naranja-text-and-title>p {
	margin: 5px;
	font-family: 'microsoft yahei';
	color: #fff;
}

.naranja-notification .naranja-body-notification .naranja-text-and-title>div {
	width: 100%
}

.naranja-notification .naranja-body-notification .naranja-text-and-title>div button {
	float: right;
	margin-left: 6px;
	margin-top: 10px;
	margin-bottom: 2px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	border-radius: 3px;
	padding: 2px 11px;
	font-size: 14px;
	text-align: center;
	outline: none;
	border-width: 1px;
	box-shadow: 0 2px 4px -2px rgba(0,0,0,0.2);
	cursor: pointer
}

.naranja-notification .naranja-body-notification .naranja-text-and-title>div button:active {
	opacity: .7
}

.naranja-notification .naranja-body-notification .naranja-title {
	font-size: 20px;
	opacity: 1;
	display: none;
}

.naranja-notification .naranja-body-notification .naranja-parragraph {
	font-size: 14px;
	padding-right: 30px;
	line-height: 1.4em
}

.naranja-close-icon {
	position: absolute;
	right: 12px;
	top: 12px;
	opacity: 0;
	cursor: pointer;
	transition: opacity .25s ease
}

.naranja-icon i {
	
}

@keyframes fadeUpIn {
	from {
		opacity: .2;
		box-shadow: 0 0 0 rgba(0,0,0,0.5);
		transform: scale(.95)
	}

	75% {
		opacity: 1
	}

	to {
		opacity: 1;
		box-shadow: 0 5px 10px rgba(0,0,0,0.16);
		transform: scale(1)
	}
}

.naranja-notification-box {
	box-sizing: content-box;
	display: flex;
	flex-direction: column-reverse;
	position: fixed;
	bottom: 20px;
	right: 0;
	width: 315px;
	height: auto;
	max-height: 100vh;
	overflow: auto;
	padding: 8px;
	padding-top: 20px
}

.naranja-notification-box .naranja-notification-advice {
	position: fixed;
	right: 138px;
	top: -39px;
	transform: translateY(0);
	cursor: pointer;
	transition: transform .3s ease
}

.naranja-notification-box .naranja-notification-advice.active {
	transform: translateY(60px)
}

/*--------------------------------------------------------------
## nice-select
--------------------------------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 1px solid #947fff;
    border-right: 1px solid #947fff;
    content: '';
    display: block;
    height: 10px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 10px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }


.no-verify {
    text-align: center;
}

.no-verify a {
    padding: 10px 20px;
    background: #5206ff;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    margin-top: 30px;
    display: inline-block;	
}

.no-verify a:hover{
	color: #fff;
}

.no-verify a:active{
	color: #fff;
}

.no-verify a:focus{
	color: #fff;
}