@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap);
/* Fonts */

/* Normalize */
*, *:before, *:after {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    position: relative;
}

html {
    line-height: 1.2;
}

input::-ms-clear {
    display: none;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.signupform__inner{
    position: relative;
}

.back-to-login {
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    display: block;
    padding: 9px 0;
    width: 150px;
    font-weight: bold;
    text-align: center;
    border: 1px solid white;
    background: #02BD5B;
    border-radius: 50px;
    position: relative;
    margin: 20px auto 0;
    transition: .3s;
}

.back-to-login:hover {
    text-decoration: none;
    color: white;
    background: #009c3a;
}

.step1.step {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
}

.signup-wrapper {
    flex: 1 0 calc(50% - 16px);
}

.signup-wrapper.email {
    flex-basis: 100%;
}

.sendspam {
    flex-basis: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

button {
    border: none;
    outline: none;
    background: transparent;
}

a, a:link, a:visited, a:hover, a:active, a:focus {
    text-decoration: none;
    outline: none;
    white-space: nowrap;
}

a,
button,
input[type="checkbox"] {
    cursor: pointer
}

/* Recaptha  */

/* From Twoup styles */

/*IE*/
input::-ms-reveal {
    display: none;
}

/* Common Styles */
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
}

.bold{
    font-weight: 700;
}

.modal-mask {
    background: url(/dist/assets/img/cg-form/login-bg.b1252613.jpg) no-repeat top center / cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: calc((40 / 1080) * 100vh) 15px;
}

.modal-mask.signup_steps {
    background: #fff;
    justify-content: center;
}

.modal-mask.signup_steps.signup_first_step {
    justify-content: space-between;
}

.go-to-login{
    margin-left: 5px;
    width: 70px;
    height: 25px;
    background: #FFD269;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}
.go-to-login:hover{
    background: #6C6C6C;
    color: #FFD269;
}

.error .go-to-login{
    background: transparent;
    text-decoration: underline;
    display: inline-block;
    margin: 0;
    width: auto;
    color: inherit;
    height: auto;
}
.error .go-to-login:hover{
    text-decoration: none;
}

.already-registered{
    height: calc((76 / 1080) * 100vh);
    min-height: 50px;
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #6C6C6C;
}

.cg__logo {
    height: calc((76 / 1080) * 100vh);
    min-height: 50px;
    cursor: pointer;
}

.cg__logo-signup {
    position: fixed;
    transform: translateX(-50%);
    left: 50%;
    top: calc((40 / 1080) * 100vh);
    z-index: 2;
}

.signupform {
    width: calc(360px + (((75 / 1080) * 100vh) * 2));
    margin: calc((30 / 1080) * 100vh) 0;
background: white;
    border-radius: 22px;
    padding: calc((50 / 1080) * 100vh) calc((75 / 1080) * 100vh);
    box-shadow: 0px 4px 70px rgba(185, 137, 25, .4);
}

.modal-mask.signup_steps .signupform {
    box-shadow: none;
    width: 360px;
    margin: calc((30 / 1080) * 100vh) 0;
    padding: 0;
    margin-top:0;
}




/*.cols {*/
/*    display: flex;*/
/*    justify-content: flex-start;*/
/*    align-items: stretch;*/
/*}*/
/*.column-left {*/
/*    !*line-height: 0;*!*/
/*    width: calc((1065 / 1920) * 100vw);*/
/*    flex-shrink: 0;*/
/*}*/
/*.column-left img {*/
/*    min-height: 100%;*/
/*    max-width: none;*/
/*    position: absolute;*/
/*}*/

.cols {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.column-left {
    flex-shrink: 0;
    max-width: calc(100vw - (360px + (15px * 2)));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    width: 56%;
}
.column-left img {
    height: 100%;
    max-width: none;
    max-height: 100vh;
    position: fixed;
    display: inline-block;
    top:0;
    left:0;
    bottom:0;
}
.column-left video {
    height: 100%;
    max-width: none;
    max-height: 100vh;
    position: fixed;
    display: inline-block;
    top:0;
    left:0;
    bottom:0;
    pointer-events: none;
}

.cg_video_bg{
    background:#FCFFFC;
}
.cg_video_bg .modal-mask.signup_steps{
    background:#FCFFFC;
}
.cg_video_bg .signupform{
    background:#FCFFFC;
}
h2 {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #272727;
    margin-bottom: calc((25 / 1080) * 100vh);
    text-transform: uppercase;
}

.login__infomessage {
    font-size: 12px;
    line-height: 18px;
}

.globalerror__wrapper .login__infomessage {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #556783;
}

.signup-wrapper {
    margin-top: calc((30 / 1080) * 100vh);
}

.sendspam,
.signup_steps .signup-wrapper {
    margin-top: calc((20 / 1080) * 100vh);
}

input[type=checkbox] {
    display: none;
}

.signupform .checkbox__label {
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: #6C6C6C;
    text-transform: unset;
}
.checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #FFD269;
    margin-right: 10px;
    border-radius: 5px;
}
.checkbox__label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -3px;
    width: 6px;
    height: 11px;
    border: solid #FFD269;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
input:checked ~ .checkmark{
    background-color: transparent;
    border: 2px solid #FFD269;
}
input:checked ~ .checkmark:after {
    display: block;
}

.policy_agree,
.capcha-privacy {
    font-size: 12px;
    line-height: 17px;
    color: #6c6c6c;
}

.policy_agree {
    margin-top: calc((20 / 1080) * 100vh);
}

.capcha-privacy a,
.policy_agree a {
    color: #6c6c6c;
    text-decoration: none;
}

.capcha-privacy a:hover,
.policy_agree a:hover {
    text-decoration: underline;
}

.signup-button {
    background: #29BE03;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    transition: .3s;
    margin-top: calc((30 / 1080) * 100vh);
}

.signup-button:hover {
    background: #fff;
    color: #29BE03;
    border-color: #29BE03;
}

.signup-button.wait {
    background: #EEB648;
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
    border-color: transparent;
}

.signup-button.signupButtonThanks {
    margin-top: calc((45 / 1080) * 100vh);
}

.signupform label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #6C6C6C;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.dont-wrapper {
    margin-top: calc((24 / 1080) * 100vh);
    font-size: 12px;
    color: #6C6C6C;
}

.signup_steps .dont-wrapper {
    margin-top: 15px;
}

.go-to {
    text-transform: capitalize;
    color: #EEB648;
}

.go-to:hover,
.go-to-signup:hover {
    text-decoration: underline;
    cursor: pointer;
}

.signup-wrapper input,
.signup-wrapper select {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #424242;
    border-radius: 5px;
    background-color: #F5F4F4;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    outline: none;
    transition: .3s;
    border: 1px solid transparent;
}

.signup-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(/dist/assets/img/cg-form/select-arrow-signup.08a48a1b.svg);
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 50%;
}

.signup-wrapper select option {
    color: #424242;
    background-color: #f5f4f4;
}

.signup-wrapper input:focus {
    border: 1px solid transparent;
}

.signup-wrapper input[aria-invalid=true] {
    border: 1px solid rgb(202, 80, 80);
}

.signup-wrapper input.occupied,
.signup-wrapper input.occupied:focus {
    border: 1px solid rgb(202, 80, 80);
}

.password-button {
    position: absolute;
    right: 20px;
    top: calc(50% + (((14px * 1.2) + 10px) / 2)); /*(label-font-size * default-line-height) + (label-margin-bottom)*/
    transform: translateY(-50%);
    line-height: 0;
    transition: ease .3s;
    width: 25px;
}

.password-button .hide-password {
    display: none;
}

.password-button.hide .hide-password {
    display: block;
}

.password-button.hide .show-password {
    display: none;
}

.error, .notification {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    right: 0;
    z-index: 3;
    text-align: left;
    position: absolute;
    top: calc(100% + 5px);
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
}

.error {
    background: rgb(202, 80, 80);
    border: 1px solid rgb(202, 80, 80);
}

.notification {
    background: #1d9c52;
    border: 1px solid #1d9c52;
    display: none;
}

.error:before, .notification:before {
    content: "";
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
    position: absolute;
    top: -5px;
    right: 11px;
    background-color: inherit;
    border-top-left-radius: 3px;
}

.notification:before {
    border-top: 1px solid #1d9c52;
    border-left: 1px solid #1d9c52;
}

input:focus ~ .error {
    display: none;
}


input[aria-invalid=true]:focus ~ .notification,
input.empty:focus ~ .notification {
    display: block;
}


/*.form-header__number:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    margin: -7px 0 0 -3px;*/
/*    width: 6px;*/
/*    height: 11px;*/
/*    border: solid transparent;*/
/*    border-width: 0 2px 2px 0;*/
/*    transform: rotate(45deg);*/
/*}*/

/*.form-header__number:after {*/
/*    content: '';*/
/*    display: block;*/
/*    height: 1px;*/
/*    width: calc((360px - (30px * 3)) / 2);*/
/*    background: rgba(38, 142, 27, .21);*/
/*    position: absolute;*/
/*    left: calc(100% + 1px);*/
/*    top: 50%;*/
/*    transform: translateY(50%);*/
/*}*/

.cg-firststep-text{
    margin-bottom: calc((35 / 1080) * 100vh);
    font-size: 14px;
    line-height: 20px;
    color: #6C6C6C;
}

.mobile{
    display: none;
    max-width: 200px;
    height: auto;
}

.signupform .form-header {
	color: #272727;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
	text-transform: uppercase;
}


@media (max-height: 699px) {
    .modal-mask{
        padding: 15px;
    }
    .cg__logo-signup{
        top: 15px;
    }
}

@media (max-aspect-ratio: 1319 / 800), (max-width: 1200px), (max-height: 599px) {
    .mobile{
        display: inline-block;
    }
    .column-left,
    .for-cg{
        display: none;
    }
    .column-left video{
        display: none !important;
    }
    .cg__logo-signup{
        position: static;
        transform: none;
    }
    .cols{
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: 100vh;
        padding: 20px 15px;
        background: url(/dist/assets/img/cg-form/login-bg.b1252613.jpg) no-repeat top center / cover;
    }
    .modal-mask{
        padding: 20px 15px;
    }
    .signup_steps.modal-mask{
        min-height: auto;
        width: auto;
        box-shadow: 0 4px 70px rgba(185, 137, 25, .4);
        border-radius: 22px;
        padding: calc((50 / 1080) * 100vh) calc((75 / 1080) * 100vh);
        margin: calc((30 / 1080) * 100vh) 0;
    }
    .already-registered{
        justify-content: center;
        height: auto;
        min-height: auto;
        margin-bottom: calc((35 / 1080) * 100vh);
    }
    .modal-mask.signup_steps .signupform{
        margin: 0;
    }
    .signup-wrapper {
        margin-top: 30px;
    }
    .sendspam,
    .signup_steps .signup-wrapper {
        margin-top: 20px;
    }
    .signup-button {
        margin-top: 30px;
    }
    .signup_steps .signup-button {
        margin-top: 20px;
    }
    .signup-button.signupButtonThanks{
        margin-top: 30px;
    }
    h2 {
        margin-bottom: 24px;
    }
    .signup_steps .dont-wrapper,
    .policy_agree{
        margin-top: 20px;
    }
    .dont-wrapper {
        margin-top: 24px;
    }
}

@media (max-width: 599px), (max-height: 449px) {
    .cg-firststep-text{
        display: none;
    }
    .cols,
    .modal-mask{
        background: transparent;
        padding: 20px 0;
    }
    .signup_steps.modal-mask {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 20px 0 0;
    }
    .signupform{
        margin: 20px 0 0;
    }
    .signupform,
    .modal-mask.signup_steps .signupform,
    .already-registered{
        max-width: calc(360px + (15px * 2));
        width: 100%;
        padding: 0 15px;
        box-shadow: none;
        border-radius: 0;
    }
    .cg__logo{
        width: calc((112 / 375) * 100vw);
        max-width: 149px;
        min-width: 112px;
        height: auto;
        min-height: auto;
    }
    .signupform-wrapper{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .already-registered{
        margin-bottom: 40px;
    }
}

@media (max-width: 389px){
    .signupform,
    .modal-mask.signup_steps .signupform,
    .already-registered{
        max-width: calc(290px + (15px * 2));
    }
}
