/*login css*/
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
	font-family: 'Outfit', sans-serif;
}
/* :root{
    --grayColor:#5f88a3;
    --headingColor: #3f3f59;
    --primaryColor: #727598;
    --grayColor1: #a1a3ce;
    --themeColor: #3e5df2;
    --darkColor: #292934;
    --inputColor: #454764;
    --inputBgColor: #fafcff;
    --transition: all 0.3s ease-in-out;
} */
:root{
    --grayColor:#5f88a3;
    --headingColor: rgb(142 145 173);
    --gradientColor: linear-gradient(269.78deg, var(--primaryColor) 0.19%, var(--secondaryColor) 99.81%);
    --grayColor1: #a1a3ce;
    --primaryColor: #B828E5;
    --darkColor: #222426;
    --TextColor: #694C72;
    --inputColor: #454764;
    --inputBgColor: #fafcff;
    --transition: all 0.3s ease-in-out;
    --greenColor: #26D49B;
    --bgDarkColor: #2F3044; 
    --secondaryColor: #7b0b9c;
    --whiteColor:#ffffff;
}
body {
    font-size: 16px;
    color: var(--grayolor1);
    line-height: 1.5;
    font-weight: 400;
    margin: 0px;
    background-color: var(--bgDarkColor);
    font-family: 'Outfit', sans-serif;
}
a{
	color:inherit;
	text-decoration:none !important
}
a:hover{
	color:var(--primaryColor);
}
:after,:before{
	transition:all 0.25s ease-in-out;
	-webkit-transition:all 0.25s ease-in-out;
	-moz-transition:all 0.25s ease-in-out;
	-ms-transition:all 0.25s ease-in-out;
	-o-transition:all 0.25s ease-in-out;
}
p{
	margin:0px;
}
.w-100 {
    width: 100% !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/* Loader */
.product_loader  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-color: rgba(255 255 255 / 80%); */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    vertical-align: middle;
    display: flex;
    align-items: flex-end;
}
.pos_relative {
    position: relative;
    min-height: 500px;
}
.vertical_center {
    display: table;
    height: 100vh;
    width: 100%;
    text-align: center;
}
.center_dv{
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.vertical_center span {
    width: 70px;
    height: 70px;
    position: relative;
    display: inline-block;
    border-radius: 50px;
    position: absolute;
    -webkit-animation: loadingCircles 1.5s infinite;
    -moz-animation: loadingCircles 1.5s infinite;
    animation: loadingCircles 1.5s infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}
.vertical_center :nth-child(2){
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.vertical_center :nth-child(3){
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}
.product_loader.show_loader {
    opacity: 1;
    visibility: visible;
}
.product_loader  span {
    box-shadow: 0px 0px 0px 0px var(--primaryColor);
}
@-webkit-keyframes loadingCircles{
    0%{-webkit-transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--primaryColor);}
    100%{-webkit-transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--primaryColor);}
}
@-moz-keyframes loadingCircles{
    0%{-moz-transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--primaryColor);}
    100%{-moz-transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--primaryColor);}
}
@keyframes loadingCircles{
    0%{transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--primaryColor);}
    100%{transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--primaryColor);}
}
/*************** ScrollBar Css ****************/
.ap_login_box::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(168, 168, 168, 0);
	/* background-color: #F5F5F5; */
}
.ap_login_box::-webkit-scrollbar{
	width: 5px;
	/* background-color: #F5F5F5; */
}
.ap_login_box::-webkit-scrollbar-thumb{
	background-color: var(--primaryColor);
	border: 0px solid  transparent;
}

/******/
.ap_auth_wrapper{
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background:url('../images/login-bg.png') var(--whiteColor) no-repeat;
	background-size:cover;
	background-position:center;
	overflow:auto;
}
.ap_login_main {
    background-blend-mode: multiply;
    padding: 80px 15px;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ap_login_flex {
    display: flex;
    justify-content: center;
    max-width: 1150px;
    width: 100%;
    align-items: center;
    border-radius: 40px;
    background-color: #090935;
    padding: 100px;
}
.ap_whiteColor {
    display: flex;
}
.ap_imgbox {
    display: inline-flex;
}
.ap_detail_wrapper {
    position: relative;
    z-index: 1;
}
.ap_detail_wrapper:after {
    position: absolute;
    content: "";
    top: -36px;
    left: -18px;
    width: 77px;
    height: 83px;
    background-image: url(../images/icon1.png);
    background-repeat: no-repeat;
    z-index: -1;
}
.ap_detail_wrapper::before {
    position: absolute;
    content: "";
    bottom: -30px;
    left: -26px;
    width: 78px;
    height: 79px;
    background-image: url(../images/icon2.png);
    background-repeat: no-repeat;
    z-index: -1;
}
.ap_loginDetail {
    background-image: url('../images/login_form_bg.png');
    background-color: var(--whiteColor);
    max-width: 500px;
    width: 100%;
    border-radius: 20px 0 0 20px;
    padding: 50px;
    height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
/* .icon_one {
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 0;
}
.icon_two {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 0;
} */
.icon_three {
    position: absolute;
    bottom: 35px;
    right: -30px;
    z-index: 1;
}
.ap_login_box > img {
    max-width: 150px;
    margin: 0 0 15px;
}

.ap_detail_wrapper .ap_imgbox img{
	max-width: 100%;
}
.ap_login_box h1 {
    font-weight: 700;
    font-size: 32px;
    margin: 0px;
    color: var(--darkColor);
}
.ap_login_box p {
    font-size: 16px;
    color: var(--TextColor);
    font-weight: 400;
    margin: 10px 0 0;
}
.ap_input_wrapper {
    margin-top: 30px;
}
.ap_input input {
    height: 70px;
    padding: 0 20px 0 55px;
    width: -moz-fill-available;
    border-radius: 8px;
    outline: none;
    width: 100%;
    font-size: 15px;
    background-color: var(--whiteColor);
    color: var(--darkColor);
    border: 1px solid #DAE7F2;
    font-weight: 400;
    transition: 0.3s;
}
/* 
.ap_input input:focus + span svg, 
.ap_input input:visited + span svg, 
.ap_input input:active + span svg {
    fill: var(--darkColor);
}  */
.ap_input input:focus{
	border: 1px solid var(--primaryColor);
}
.ap_input span {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    display: flex;
}
.ap_input input::placeholder{
	color:#C1CBD4;
}
.ap_input {
	position: relative;
	margin-bottom: 20px;
	display: inline-flex;
	width: 100%;
}
.ap_input input.ap_bordernone {
	border: none;
	border-radius: 0 0 9px 9px;
}
.ap_rememberMe_wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 36px;
}
.ap_checkbox {
    position: relative;
    padding: 0 0 0 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--TextColor);
}
.ap_forgotLink a {
    font-size: 14px;
    font-weight: 500;
    color: var(--TextColor);
}
.ap_checkbox input {
	display: none;
}
.ap_checkbox>span {
    height: 16px;
    width: 16px;
    border: 1px solid #DAE7F2;
    background-color: var(--whiteColor);
    position: absolute;
    content: '';
    border-radius: 3px;
    left: 2px;
    top: 0px;
}
.ap_checkbox>span:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 5px;
    border: 2px solid var(--whiteColor);
    border-top: none;
    border-right: none;
    left: 2px;
    top: 3px;
    transform: rotate(-45deg) scale(0);
}
.ap_checkbox input:checked ~ span{
	border-color:var(--primaryColor);
	background-color: var(--primaryColor);
}
.ap_checkbox input:checked ~ span:after {
	transform: rotate(-45deg) scale(1);
}
.ap_btn {
    max-width: 210px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    padding: 0 30px;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.ap_btn:before, .ap_btn:after {
    content: '';
    display: block;
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 50%, rgb(253 253 253 / 10%) 50%);
    background-size: 210% 100%;
    background-position: right bottom;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.ap_loginBtns .ap_btn:hover {
    color: var(--whiteColor);
}
.ap_btn:hover:before {
    background-position: left bottom;
}
.ap_btn:hover.ap_btn:after{
    background-position: right bottom;
}


.ap_copyright {
	font-size:16px;
	color: #9ba0a2;
	margin: 69px 0 0 0;
	font-weight: 500;
}
.ap_btn.ap_register {
    background-color: #566c8e;
    margin-left: 10px;
}
.ap_social_login p {
    text-align: center;
    margin:35px 0 25px;
    font-size: 15px;
    position: relative;
}
.ap_social_login p:before,
.ap_social_login p:after {
    content: "";
    width: calc(50% - 75px);
    height: 1px;
    background-color: #DBDCE9;
    position: absolute;
    left: 0;
    top: 50%;
}
.ap_social_login p:after {
    right: 0;
    left: auto;
}
.ap_facebook {
	margin-right: 15px;
	background-color: #3B5998;
}
.ap_facebook, .ap_google {
    display: inline-block;
    max-width: calc(50% - 10px);
    position: relative;
    text-align: left;
    padding-left: 60px;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
}
.ap_social_login button span {
    position: absolute;
    width: 35px;
    height: 35px;
    left: 10px;
    top: 8px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ap_social_login button span svg {
    fill: var(--whiteColor);
}
.ap_google {
	background-color:#FC4737;
}
.ap_copyright a {
    font-weight: 700;
    color: var(--primaryColor);
}
.ap_facebook:hover {
    background-color: #293e6a;
}
.ap_google:hover {
    background-color: #b03226;
}
.ap_loginBtns .ap_btn span svg{
	fill: var(--whiteColor);
}
.ap_loginBtns .ap_btn:hover span {
    left: 30px;
    opacity: 0;
    transition: all linear 0.2s;
}
.ap_loginBtns .ap_btn span {
    left: 10px;
    opacity: 1;
    transition: all linear 0.2s;
    position: relative;
}
.ap_register_link {
    position: relative;
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 15px;
}

.ap_login_link {
    text-align: center;
    padding: 20px 0 0;
}
/* NotiFication Css Start */
.ap_notification_wrapper {
    position: fixed;
    top: 20px;
    right: 30px;
    max-width: 300px;
    width: 100%;
}
.ap_comman_noti {
    background-color: var(--whiteColor);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 15px 0 30px rgba(99 129 155 / 10%);
    text-align: center;
}
.ap_inner {
    display: flex;
    text-align: left;
    align-items: center;
    grid-gap: 15px;
}
.ap_inner img,
.noti_content {
    display: inline-block;
    vertical-align: middle;
}
.noti_content h3 {
    font-size: 20px;
    margin: 0 0 0px;
    color: #020430;
}
.noti_content {
    padding-left: 0;
    width: calc(100% - 0px);
}
.noti_content p {
    font-size: 14px;
    color: var(--TextColor);
}
.ap_notication_error .noti_content h3 {
    color: #F83A5C;
}
.ap_notication_success .noti_content h3 {
    color: #00E0A4;
}
.ap_close.close {
    opacity: 1;
    text-align: center;
    position: absolute;
    z-index: 99;
    background-color: #FA395C;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    line-height: normal;
    font-size: 0;
    padding: 5px;
}
.ap_close.close span img {
    max-width: 10px;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
/* NotiFication Css End */
.ap_highlight {
    background-image: url(../images/highlight.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0px 7px;
    padding: 0px 10px 0 10px;
    color: var(--primaryColor);
}
.ap_right_wrapper {
    max-width: 450px;
    background: linear-gradient(180deg, #090935 0%, var(--primaryColor) 100%);
    border-radius: 0 20px 20px 0;
    padding: 80px 20px 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ap_mobileScreen img {
    width: 100%;
}
.ap_error{
    border: 1px solid #f90000 !important;
}

.app_terms_link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 20px;
    margin-top: 10px;
}
.app_terms_link a {
    display: inline-block;
    color: var(--primaryColor);
}
.app_terms_link a:hover {
    color: var(--secondaryColor);
}

.app2_create_auth {}
.app2_create_auth > p > a {
    color: var(--primaryColor);
}
.ap_input.registration_pass {
    margin-bottom: 0;
}
h6.passNote {
    font-size: 15px;
    color: var(--TextColor);
    font-weight: 500;
    margin: 5px 0 20px;
}
.ap_auth_wrapper .ap_detail_wrapper.ap_wl_loginPage {
    margin: auto;
    float: none;
}
/* responsive css*/
@media (max-width:1200px){
   
    .ap_login_flex {
        padding: 50px;
    }
    
}

@media(max-width:991px){
    
}

@media (max-width:768px){

    .ap_login_flex {
        display: block;
    }
    .ap_loginDetail {
        max-width: 100%;
        border-radius: 20px;
    }
	
	
    .ap_right_wrapper {
        display: none;
    }
    
    
    
    .ap_login_box h1 {
        font-size: 20px;
    }
      
}

@media(max-width:575px){
    .ap_login_main {
        padding: 30px 15px;
    }
    .ap_login_flex {
        padding: 0;
    }
    .ap_loginDetail {
        padding: 25px;
    }
    .icon_three {
        bottom: 0;
        right: 0;
        max-width: 50px;
    }
}