@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --primarycolor: #0084ff;
    --secondarycolor: #0070d9;
    --primaryfontcolor: #4d4b55;
    --secondaryfontcolor: #79777f;
    --primaryfontfamaly: "Poppins", sans-serif;
    --secondaryfontfamaly: "Poppins", sans-serif;
    --primaryfontsize: 14px;
    --navbarBackground: #ffffff;
    --topnavbarFontColor: #4d4b55;
    --sideNavBackgroungColor: #ffffff;
    --sideNavBarMainMenu: #4d4b55;
    --sideNavBarSubMenue: #79777f;
    --mainBackground: url(../images/banner-bg.svg), #fff;
    --mainBackgrounddarklightfont: #4d4b55;
    --navigationmenubariconwidth: 27px;
    --navigationmenubariconfontsize: 16px;
    --letterspacing: "0.2px";
    --primaryfontweight: 400;
    --secondaryfontweight: 500;
    --lightbgcolor: #ebf1f6;
    --whitecolor: #fff;
    --inputborder: #d2dbfc;
    --boxshadow: 0px 0px 6px 0px #4042441a;
    --liteboxshadow: 0px 0px 0px 5px #ffffff6b;
    --lightblue: #eef3ff;
    --inputbg: #f8f9fd;
    --placeholdercolor: #9c97aa;
    --opasityzero: #2b58bf00;
    --gray: #ddd;
    --lightgray: #eee;
    --activegreen: #acffd7;
    --greencolor: #02c064;
    --greencolorhover: #02c666;
    --greenlight: #e5fff2;
    --redcolor: #ef5350;
    --redcolorhover: #df3d3a;
    --erroralart: #fff5f5;
    --erroralartborder: #ffdcdc;
    --notecolor: #f3d86d;
    --speed: 0.5s;
    --boxshadow: 0px 0px 6px 0px rgba(64, 66, 68, 0.1019607843);
}


.body-bg {
    background: url(banner-bg.svg), var(--whitecolor);
    background-size: cover;
    background-attachment: fixed;
}

.hedader_main {
    background: #f6fbff;
    padding: 8px 0;
    padding-top: 10px;
    border-bottom: 1px solid #e2eef8;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0px 1px 5px 1px rgba(64, 66, 68, 0.06);
}

.hedader_main .logo_img {
    max-width: 200px;
    height: 36px;
    max-height: 35px;
}

.custom-theme-style .signin-signup-layout {
    display: flex;
    height: 89vh;
    align-items: center;
}

.custom-theme-style .signin-signup-layout .content-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primaryfontcolor);
    margin-bottom: 3px;
}

.custom-theme-style .signin-signup-layout .content-text h1 span {
    color: var(--primarycolor);
}

.custom-theme-style .signin-signup-layout .content-text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondaryfontcolor);
}

.custom-theme-style .signin-signup-layout .signup-signin-header {
    text-align: center;
    padding: 25px 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0px rgba(64, 66, 68, 0.1019607843);
}

.signup-signin-header {}

.signup-signin-header .steps-list {
    display: flex;
    justify-content: center;
}

.step.active {
    /* background-color: #007bff;
    color: white; */
}

.body-content {
    display: none;
}

.body-content.active {
    display: block;
}

.body-content .error-helper {
    text-align: left;
    margin-top: -5px;
}

.body-content .error-helper span {
    color: var(--redcolor);
    display: inline-block;
    font-size: 13px;
    margin-bottom: 5px;
}

.body-content .success-helper {
    margin-top: 0px;
    background: var(--greencolor);
    text-align: center;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 4px;
}

.body-content .success-helper span {
    color: var(--whitecolor);
    display: inline-block;
    font-size: 13px;
    margin-bottom: 5px;
}

.body-content .success-helper i {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    margin-right: 5px;
}

.custom-theme-style .signin-signup-layout .signup-signin-header h6 {
    margin-bottom: 0;
    font-size: var(--primaryfontsize);
    font-weight: 400;
}

.custom-theme-style .signin-signup-layout .signup-signin-header h4 {
    color: var(--primarycolor);
    font-weight: 600;
}

.custom-theme-style .form-group input,
select {
    padding: 8.5px 14px;
    color: var(--primaryfontcolor);
    background-color: var(--inputbg);
    border-radius: 4px;
    font-weight: 400;
    margin-bottom: 12px;
    width: 100%;
    border: 1px solid var(--inputborder);
    font-size: 14px;
}

.custom-theme-style .form-group input::placeholder,
select::placeholder {
    color: var(--secondaryfontcolor);
    opacity: 0.8;
}

.custom-theme-style .form-group input:focus,
select:focus {
    border: 1px solid #0084ff;
}


.custom-theme-style .password-layout {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.custom-theme-style .password-layout .toggle-password {
    padding: 8.5px 12px;
    color: var(--primaryfontcolor);
    background-color: var(--inputbg);
    border-radius: 0px 4px 4px 0px;
    font-weight: 400;
    /* margin-bottom: 12px; */
    width: 100%;
    border: 1px solid var(--inputborder);
    font-size: 14px;
    cursor: pointer;
}

.custom-theme-style .phoneno-layout {
    display: flex;
}

.custom-theme-style .phoneno-layout select {
    width: 120px;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 23px;
}

.custom-theme-style .password-layout input {
    margin-bottom: 0;
    border-radius: 4px 0px 0px 4px;
    border-right: 0;
}

.custom-theme-style .password-layout .width-100 {
    width: 100%;
}

.custom-button {
    color: #fff;
    padding: 8px 13px;
    background: var(--primarycolor);
    width: 100%;
    font-weight: 500;
    font-family: var(--primaryfontfamaly);
    border-radius: 4px;
}

.custom-button:hover {
    background: var(--secondarycolor);
}

.custom-theme-style .form-group .checkbox-layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 13px;
    margin-top: 1px;
    cursor: pointer;
}

.custom-theme-style .form-group .checkbox-layout input {
    width: auto;
    padding: 0;
    margin: 0;
    margin-right: 7px;
    cursor: pointer;
}

.custom-theme-style .form-group .checkbox-layout label {
    width: 100%;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.custom-theme-style .form-group .checkbox-layout label span {
    color: var(--primarycolor);
}

.custom-theme-style .form-group .checkbox-layout label span:hover {
    color: var(--secondarycolor);
}

.custom-theme-style .form-group .checkbox-layout label a {
    text-decoration: none;
}

.stepper-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 65%;
}

.stepper-custom .step-custom {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.stepper-custom .step-custom p {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--secondaryfontcolor);
    font-weight: 500;
    margin-top: 5px;
}

.step-custom span {
    background-color: #b5b5b5;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
    width: 22px;
    height: 22px;
}

.step-custom.active span {
    background-color: #007bff;
}

.line-custom.active {
    background-color: #007bff;
}

.line-custom {
    height: 2px;
    background-color: #eee;
    flex-grow: 1;
    margin: 0 0px;
    margin-top: -25px;
}

.stepper-custom-bg {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.terms-and-conditions {
    padding-top: 30px;
    padding-bottom: 30px;
}

.terms-and-conditions .page-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.terms-and-conditions div {
    font-size: 14px;
    margin-bottom: 10px;
}

.terms-and-conditions li {
    font-size: 14px;
    margin-bottom: 10px;
}

.seconds-count {}

.seconds-resend {}

.hidden {
    display: none;
}

.otp-body-form {}

.otp-body-form label {
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 8px;
    display: inline-block;
}

.otp-body-form .seconds-count {
    text-align: right;
}

.otp-body-form .seconds-resend {
    text-align: right;
    cursor: pointer;
    color: var(--primarycolor);
    margin-top: -10px;
}

.alert-custom {
    background-color: #ffd7d4;
    color: #af0606;
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
    text-transform: capitalize;
    padding: 10px 15px;
}

.closebtn-custom {
    margin-left: 15px;
    color: #f00606;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn-custom:hover {
    color: black;
}

#snackbar {
    min-width: 250px;
    margin-left: -16%;
    background-color: var(--greencolor);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 7px 15px;
    position: fixed;
    z-index: 1;
    left: 50%;
    border-radius: 5px;
    bottom: 30px;
    font-size: 15px;
}

#snackbar.hide {
    display: none;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 7px;
}

.errormessage {
    text-align: left;
}

.errormessage span {
    color: var(--redcolor);
    display: block;
    margin-top: -5px;
    font-size: 14px;
    margin-bottom: 7px;
    display: none;
}

.errormessagepass {
    text-align: left;
}

.errormessagepass span {
    color: var(--redcolor);
    display: block;
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 9px;

}

.spin-loader {
    margin-top: 40px;
    margin-bottom: 20px;
}

.spin-loader i {
    font-size: 45px;
    color: var(--primarycolor);
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.spin-loader p {
    color: var(--primaryfontcolor);
    margin-top: 11px;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1370px;
    }
}

@media only screen and (max-width: 992px) {
    .custom-theme-style .signin-signup-layout {
        height: auto;
    }

    .custom-theme-style .signin-signup-layout .content-text {
        text-align: center;
    }

    .custom-theme-style .signin-signup-layout .content-text h1 {
        font-size: 30px;
        padding-top: 20px;
    }

    .custom-theme-style .signin-signup-layout .signup-signin-header {
        padding: 0;
        background: none;
        border-radius: initial;
        box-shadow: none;
        border-top: 1px solid #eee;
        margin-top: 5px;
        padding-top: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .custom-theme-style .signin-signup-layout .content-text h1 {
        font-size: 25px;
    }

    .custom-theme-style .signin-signup-layout .content-text p {
        font-size: 14px;
    }

    .hedader_main .logo_img {
        height: 28px;
    }
}