.popup-fade
{
	height:           100%;
	width:            100%;
	left:             0;
	top:              0;
	position:         fixed;
	background-color: black;
	opacity:          0;
	z-index:          100;
}

.popup_wrapper{
    display:none;
}

.pop-up-fade {
	display: none;
	width: 100%;
	height: 100%;
	background: #638CD7;
	opacity: 0.7;
	position: absolute;
	top: 154px;
	left: 0;
	z-index: 2;
}
.pop-up-fade.show {
	display: block;
}

.login-form-wrapper, .first-visit-popup-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.login-form-inner, .first-visit-popup-inner {
	position: relative;
	width: 500px;
	background: white;
	margin: 20% auto 0;
	padding: 40px 80px;
	box-sizing: border-box;
	border-radius: 20px;
	box-shadow: 0px 0px 11px 1px #a2a2a2;
}
.login-form-header {
	text-align: center;
}
.login-form-header .title{
	margin-bottom: 20px;
	font-size: 26px;
	font-weight: bold;
}
.login-form-header .reg-text{
	font-size: 14px;
	color: #76767A;
}
.login-form-header .login-close-icon {
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: gainsboro;
	position: absolute;
	top: 30px;
	right: 30px;
	border-radius: 13px;
	font-size: 18px;
	color: white;
	cursor: pointer;
}
.login-form-inner form {
	display: flex;
	flex-direction: column;

}
.login-form-inner form input {
	margin-bottom: 15px;
	box-sizing: border-box;
	height: 50px;
	padding-left: 20px;
	border: 1px solid #D9D9DE;
	border-radius: 6px;
	font-size: 14px;
}
.login-form-inner form .forget-password {
	margin-bottom: 15px;
	text-align: right;
}
.login-form-inner form button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background: #638CD7;
	border-radius: 6px;
	width: 100%;
	height: 50px;
	font-size: 16px;
	line-height: 24px;
	color: white;
	cursor: pointer;
}
.first-visit-popup-wrapper .first-visit-popup-inner .first-visit-text {
	margin: 20px 0 40px;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}
.first-visit-popup-wrapper .first-visit-popup-inner  button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background: #638CD7;
	border-radius: 6px;
	width: 100%;
	height: 50px;
	font-size: 16px;
	line-height: 24px;
	color: white;
	cursor: pointer;
}

.rk-popup{
    z-index:101;
}

.rk-popup.container
{
	/*font-family: Myriad sans-serif;*/
	opacity:     0;
	width:       100%;
	height:      100%;
	top:         0;
	left:        0;
	position:    fixed;
	text-align:  center;
	/*z-index:     3;*/
}

.rk-popup.container .background
{
	background:       url("/images/background_crop.png") no-repeat scroll right bottom #F3F3F3;
	border-radius:    5px 5px 5px 5px;
	display:          inline-block;
	padding:          20px;
	padding-bottom:   35px;
	top:              10%;
	text-align:       left;
	position:         relative;
    overflow:auto;
}

.rk-popup header
{
	margin-top:    10px;
	margin-bottom: 10px;
	font-size:     24px;
	color:         #22538b;
	width:         auto;
	height:        auto;
	text-shadow:   -1px 0 1px white;
}

.rk-popup form
{
}

.rk-popup p
{
	color:         #7f8186;
	font-size:     12px;
	margin-bottom: 10px;
}

.rk-popup input
{
	font-size:        12px;
	color:            #000;
	display:          inline-block;
	height:           22px;
	border-radius:    2px;
	background-color: #ffffff;
	box-shadow:       1px 1px 2px 0 #ABABAB inset;
	padding-left:     5px;
	border:           none;
}
.rk-popup input[type='checkbox']{
    border-radius: 0;
    padding: inherit;
    height: auto;
}
.rk-popup input.error
{
	box-shadow:       1px 1px 2px 0 #AB0000 inset;
}
.rk-popup label.error{
    color: #AB0000;
    border: none;
}
.rk-popup button
{
	background: url("/images/btnGradient.png") no-repeat;
	width:      74px;
	height:     22px;
	color:      #f0f0f0;
	font-size:  11px;
	cursor:     pointer;
}

.rk-popup button:hover>span
{
	color: #ffffff;
}

.rk-popup button>span
{
	bottom: 1px;
}

.rk-popup .closeIcon
{
	background: url("/images/close_popup.png") no-repeat scroll 0 0 transparent;
	cursor:     pointer;
	height:     14px;
	position:   absolute;
	right:      15px;
	top:        9px;
	width:      15px;
}
.rk-popup .closeIcon:hover
{
	background: url("/images/close_popup_hover.png");
}

.rk-popup span.requiredSign
{
	color:   #bbbbbd;
	display: inline-block;
	right:   -6px;
	top:     5px;
}

