@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Open+Sans&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
    color: #555;
    letter-spacing: 1px;
    line-height: 1.6;
    outline: none;
}
body {
    background: url(../images/iconsBg.png);
}


#regHeader {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(46, 91, 126, 0.0));
    /* background: url(../images/Screenshot_2.jpg); */
    background-size: contain;
    height: 50vh;
}

#regNav {
    display: flex;
    align-items: center;
    padding-top: 80px;
}


#regNav .logoHolder {
    width: 80%;
}

#regNav .logo {
    color: #d72020;
    font-weight: bold;
    font-size: 40px;
    font-family: 'Courgette', cursive;
    max-width: 300px;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 4px black);
    text-align: center;
}
#regNav .btn {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    background:#d82020;
    background: ;
    transition: .2s;
}
#regNav .btn:hover {
    /* opacity: .8; */
    background: #ee2727;
}

#regMain {
    height: auto;
}

#centerBox {

    position: fixed;
    top: 50%;
    left: 50%;
    max-width:600px;
    max-height: 600px;
    width: calc(100vw - 80px);
    height: calc(100vh - 80px);
    transform: translate(-50%, -50%);
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    -webkit-box-shadow: 0px 0px 3px #eee;
    -moz-box-shadow: 0px 0px 3px #eee;
    box-shadow: 0px 0px 3px #eee;
}

#centerBox .right {
    background: #fafafa;
    height: 100%;
    display: flex;
    border-radius: 0 10px 10px 0;
}
#centerBox .right .wrapRight {
    margin: auto;
}
 
#centerBox .googleReg {
    background: #2196f3;
    color: #fff;
    padding: 10px 20px;
    width: 80%;
    font-family: Arial;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

#centerBox .customLabel1 input,
#centerBox .customLabel2 input {
    opacity: 0;
}
#centerBox .customLabel1, #centerBox .customLabel2 {
    background: #aeaeae;
    padding: 15px;
    color: #fff;
    text-align: center;
  
    cursor: pointer;
    width: 45%;
}
.questionText {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 0;
}
#centerBox .activeMale {
    background: #00b4eb;
}
#centerBox .activeFemale {
    background: #e22b4c;
}

#step1 .questionHolder {
    margin: 20px auto;
    max-width: 400px;
    width: 95%;
    display: flex;
    justify-content: space-around;
}

#step2 .questionHolder,
#step3 .questionHolder {
    margin: 20px auto;
}
#step2 .questionText,
#step3 .questionText {
    display: block;
    margin: 5px auto;
    text-align: left;
}

#step2 input,
#step3 select,
#step3 input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
    height: 43px;
}

#thanksTitle {
    margin: 10px auto;
    width: 100%;
    display: none;
}
#thanksTitle h1{
    font-size: 14px;
    line-height: 15px;
    color: red;
    width: 90%;
    float: right;
}
#thanksTitle img {
    max-width: 30px;
    width: 100%;
    float: left;
}
._clear {
    clear: both;
}

.wrapRight {
    margin: 10px auto 0px auto;
}
.error {
    border: 1px solid red!important;
}
.error::-webkit-input-placeholder {
    color: red!important;
}
.steps {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
#stepDots {
    display: flex;
    align-items: center;
    max-width: 50px;
    margin: auto;
}
#stepDots .dots {
    width: 5px;
    height: 5px;
    background: #c8c8c8;
    margin: 5px auto 20px;
    border-radius: 50%;
}
#stepDots .activeDot {
    background: #e22b4c;
    width: 7px;
    height: 7px;
}
#stepBtns {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
#stepBtns button {
    padding: 15px;
    color: #fff;
    border: none;
    border-radius: 0;
    width: 120px;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.2s;
    font-weight: bold;
}
#userCounter, #regTitle, .counter_text {
    text-align: center;
}
..counter_text {
    padding-bottom: 15px;
}
#nextStep, #last_button {
    background: #62d182;
}
#nextStep:hover, #last_button:hover {
    background: #3bc563;
}
#stepBack {
    background: #c8c8c8;
}
#stepBack:hover {
    background: #aeaeae;
}


#regFooter {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 100%;
}
#regFooter .footerContent {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    border-top: 1px solid #ccc;
    padding: 20px 20px 0;
    text-align: center;
}


#login {
    max-width: 360px;
    width: 94%;
    min-height: 340px;
    position: absolute;
    left: 80%;
    top: 80px;
    transform: translate(-72%, 0%);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    border-radius: 10px;
    background: #fff;
    align-items: center;
    text-align: center;
    padding: 20px;
    display: none;
}
#login .questionHolder {
    margin: 0px auto 10px;
}
#login input,
#login #loginBtn {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
}
#login #loginBtn,
#login .googleReg {
    cursor: pointer;
    border: none;
    color: #fff;
    font-weight: bold;
    background: #d82020;
}
#login .googleReg {
    background: #2196f3;
    color: #fff;
    padding: 10px 20px;
    font-family: Arial;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}
#login .separator {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
#login .separator p {
    background: #fff;
    padding: 0 5px;
    font-size: 12px;
}
#login .separator::before,
#login .separator::after {
    content: '';
    display: block;
    width: 50%;
    height: 1px;
    background: #ccc;
}
#login .terms {
    font-size: 12px;
    letter-spacing: initial;
    line-height: 1.2;
}
#login .terms a {
    text-decoration: underline;
    margin-bottom: 10px;
}
#login .terms a:hover {
    color: #d82020;
}
#login .lastHolder {
    position: absolute;
    width: 100%;
    background: #fafafa;
    left: 0;
    bottom: 0;
    padding: 10px 20px;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}
#login #backToReg {
    color: #2196f3;
    text-decoration: none;
    cursor: pointer;
}
#login #backToReg:hover {
    color: #d82020;
}



.cookie-for-all-pages-bottom-fixed-text p {
    color: #fff;
}
.cookie-for-all-pages-bottom-fixed-text a {
    color: #0000EE;
}

/* loader css */

.loader_container {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
}

.loader_holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
}

#msg_loader {
    color: #fff;
    text-align: center;
}

#msg_loader img{
    padding-bottom: 10px;
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.loader {
    margin: 0px auto 20px;
    font-size: 5px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #fff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* loader css */
@media screen and (max-width:768px) {
    .cookie-for-all-pages-bottom-fixed {
        height: 100px!important;
    } 
    .cookie-for-all-pages-bottom-fixed-inner {
        padding: 10px 0 0!important;
    }


    #centerBox .split {
        width: 100%;
        padding: 10px 0px;
    }
    #centerBox .right {
        border-radius: 0 0 10px 10px;
    }
    #regNav .logoHolder,
    #regNav .btnHolder {
        display: block;
        width: 100%;
    }

    #regNav .btn {
        position: absolute;
        transform: translate(0, -50%);
        right: 25px;
        padding: 6px 12px;
    }
    #login {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    #regFooter {
        position: initial;
    }
    #regTitle, #userCounter {
        font-size: 21px;
        line-height: 20px;
        padding-top: 10px;
    }
    #regTitle {
        font-size: 18px;
        line-height: 20px;
    }
    #step1 .questionText {
        
        margin: 15px auto;
        
    }
    #step1 .questionHolder {
        margin: 20px auto;
    }
    #regHeader {
  
        height: auto;
    }
    #regNav {
    
        padding-top: 40px;
    }
    #regNav .logo {
      
        font-size: 35px;
  
    }
    #centerBox {
   position: relative;
   top: 0;
   left: 0;
   right: 0;
   transform: translate( 0%);
        width: calc(100vw - 20px);
        height: auto;
        overflow: auto;
        padding: 10px;
        margin: 37px auto 0px auto;

    }
    #centerBox .customLabel1, #centerBox .customLabel2 {
   
        padding: 15px 20px;
     
    
    }
    #centerBox .customLabel1 input, #centerBox .customLabel2 input{
   
        padding: 0px;
        display: none;
     
    
    }
    .bottom-footer-fixed-cen #privacyLink2, .bottom-footer-fixed-cen #termsLink2, .bottom-footer-fixed-cen .support-link-item {
   
        font-size: 13px;
    }
}

