﻿* {
    margin: 0;
    padding: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    font-family: 'Geist', sans-serif;
    /* Custom font*/
    list-style: none;
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    -moz-box-sizing: border-box;
    /* Firefox 1, probably can drop this */
    -webkit-box-sizing: border-box;
    /* Safari 3-4, also probably droppable */
    box-sizing: border-box;
    /* Everything else */
}

.container {
    width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

#logintoaccHeader{
    color: #262365;
    font-size: 30px;
}
#loginOrSpan {
    color: #262365;
    font-size: 16px;
}

#loginGoogleDiv {
    color: #262365;
    font-size: 16px;
}

.btn {
    width: 100%;
    border: none;
    text-align: center;
    padding: 15px 35px;
    border-radius: 30px;
    padding: 13px 35px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    background-color: #3C11A6;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
/*    transition: all 0.4s;
*/    border: 2px solid transparent;
    /* keep it snappy; avoid transition: all */
    transition: border-color 120ms ease, box-shadow 120ms ease, color 120ms linear;
}
    .btn:hover {
        box-shadow: 4px 4px 10px #3C10A6;
        border: 2px solid #ffffff;
        color: #fff;
    }

#loginGoogleDiv:hover {
    border: 2px solid #4375E9;
}


.btn.blue {
    background-color: #4fc4d2;
}

        .btn.blue:hover {
            background-color: #3badbb;
        }

    .btn.orange {
        background-color: #38B2AC;
    }

        .btn.orange:hover {
            color: #fff;
            background-color: #ec5044;
        }

    .btn.red {
        background-color: #e35c5c;
    }

        .btn.red:hover {
            background-color: #ec5044;
        }

    .btn.white {
        background-color: #fff;
        color: #3a4458;
    }

h1 {
    font-size: 38px;
    font-weight: bold;
    color: #384257;
    line-height: 44px;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    color: #384257;
    line-height: 34px;
}

h3 {
    font-size: 24px;
    font-weight: bold;
    color: #384257;
    line-height: 28px;
}

h4 {
    font-size: 22px;
    font-weight: medium;
    color: #a3a3a3;
    line-height: 26px;
}

p {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #384257;
    font-weight: normal;
}

.create-account {
    position: relative;
    display: inline-block;
}

    .create-account input[type="email"] {
        height: 48px;
        background-color: #f5f5f5;
        color: #b9b9b9;
        border: none;
        border-radius: 30px;
        padding: 0 260px 0 24px;
        font-size: 16px;
        font-family: 'Geist', sans-serif;
    }

    .create-account button[type="submit"] {
        background-color: #3ac4d7;
        color: #fff;
        border-radius: 30px;
        padding: 13px 35px;
        border: 2px solid #f5f5f5;
        font-size: 14px;
        position: absolute;
        left: 230px;
        top: 0;
        width: fit-content;
    }

.btn.transparent {
    background: none;
    border: 2px solid #f5f5f5;
}

#loginWelcome{
    font-size: 40px;
}

.load-delay img {
    transform: translateY(75px);
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.load-delay.show img {
    transform: none;
    opacity: 1;
}

.relative {
    position: relative;
}

    .relative .line {
        position: absolute;
        opacity: 0;
    }

.u-top_m_search {
    margin-top: 69px;
}

.u-top-208 {
    margin-top: 208px;
}

.u-top-categories {
    margin-top: 139px;
}

.indent-nav {
    height: 139px;
}

@keyframes cd-bounce-in {
    0% {
        width: 0;
    }

    60% {
        width: 55%;
    }

    100% {
        width: 50%;
    }
}

@keyframes line-bounce-in {
    0% {
        left: 0;
    }

    60% {
        left: 55%;
    }

    100% {
        left: 50%;
    }
}

.error-msg {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #ff6154;
    display: block;
    margin-top: 5px;
}

#login.flex-support {
    display: flex;
    min-height: 100vh;
    height: 100%;
}

#login .step-wrapper {
    display: flex;
}

#login section.presentation {
    background-color: #3C11A6;
}

#login section.presentation .wrapper {
    padding: 50px;
}

#login-left-wrapper{
    
}

#login .wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#loginMainPhoto{
    margin-top: 100px;
}


#login .wrapper .logo {
    margin-bottom: 40px;
}

        #login .wrapper h2 {
            margin-top:20px;
            width: 600px;
            color: #fff;
            line-height: 50px;
        }

        #login section.presentation .wrapper .dashboard {
            margin-bottom: 40px;
            max-width: 100%;
        }

        #login section.presentation .wrapper .btn.white {
            border-radius: 30px;
            padding: 15px 50px;
            color: #3ac4d7;
            display: inline-block;
            font-size: 18px;
            font-weight: bold;
            background-color: #fff;
            -webkit-transition: all 0.4s;
            -moz-transition: all 0.4s;
            -o-transition: all 0.4s;
            transition: all 0.4s;
            width: inherit;
        }

#login section.fields {
    background-color: #fff;
    padding-top: 50px;
    max-width: 620px;
    padding-left: 30px;
    padding-right: 30px;
}

    #login section.fields .btn {
        margin-top: 25px;
    }

    #login section.fields h2 {
        font-size: 30px;
        color: #262365;
        margin-bottom: 25px;
    }

    #login section.fields .btn.google {
        border: 2px solid #4375E9;
        background-color: #fff;
        color: #4375E9;
        font-weight: bold;
        margin-bottom: 30px;
        display: block;
        text-align: center;
        font-size: 16px;
        cursor: pointer;
    }

    #login section.fields .divider {
        text-align: center;
        position: relative;
        margin-bottom: 30px;
    }

        #login section.fields .divider::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #e9e9e9;
            top: 50%;
            left: 0;
        }

        #login section.fields .divider span {
            color: #262365;
            border-left: 9px solid #fff;
            border-right: 9px solid #fff;
            background-color: #fff;
            z-index: 5;
            position: relative;
        }

    #login section.fields .description {
        color: #262365;
        font-size: 18px;
        margin-bottom: 40px;
                    font-family: 'Geist', sans-serif;
        font-weight: 600;
    }

.text {
    color: #262365;
                font-family: 'Geist', sans-serif;
    margin-bottom: 20px;
    font-size: 18px;
}

#login section.fields .login-form .form-field select {
    height: 48px;
    background-color: #f3f3f3;
    color: #262365;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Geist', sans-serif;
    width: 100%;
    padding-left: 10px;
}

        #login section.fields .login-form .form-field {
            margin-bottom: 25px;
        }

            #login section.fields .login-form .form-field label {
                color: #262365;
                font-family: 'Geist', sans-serif;
                font-size: 16px;
                font-weight: 500;
                margin-bottom: 10px;
                display: block;
            }

                #login section.fields .login-form .form-field label .fa-question-circle {
                    position: relative;
                    font-size: 16px;
                    cursor: pointer;
                }

                    #login section.fields .login-form .form-field label .fa-question-circle .tooltip {
                        position: absolute;
                        border-radius: 30px;
                        background-color: #262365;
                        color: #fff;
                        width: 363px;
                        padding: 10px 22px;
                        bottom: 28px;
                        left: 50%;
                        transform: translateX(-50%);
                        font-family: 'Geist', sans-serif;
                        font-size: 12px;
                        line-height: 14px;
                        font-weight: 500;
                        z-index: 10;
                        opacity: 0;
                        visibility: hidden;
                        -webkit-transition: all 0.4s;
                        -moz-transition: all 0.4s;
                        -o-transition: all 0.4s;
                        transition: all 0.4s;
                    }

                        #login section.fields .login-form .form-field label .fa-question-circle .tooltip::after {
                            content: "";
                            background: no-repeat url('../images/tooltip-arrow.png');
                            position: absolute;
                            bottom: -9px;
                            left: 50%;
                            transform: translateX(-50%);
                            width: 16px;
                            height: 10px;
                        }

                    #login section.fields .login-form .form-field label .fa-question-circle:hover .tooltip {
                        opacity: 1;
                        visibility: visible;
                    }

            #login section.fields .login-form .form-field input[type="text"], #login section.fields .login-form .form-field input[type="password"], #login section.fields .login-form .form-field input[type="email"] {
                height: 48px;
                background-color: #f3f3f3;
                color: #262365;
                border: none;
                border-radius: 30px;
                padding: 16px 26px;
                font-size: 16px;
                font-family: 'Geist', sans-serif;
                width: 100%;
                margin-bottom: 4px;
            }

            #login section.fields .login-form .form-field input#SiteName {
                width: 60%;
            }

            #login section.fields .login-form .form-field input::placeholder {
                color: #e4e4e4;
            }

            #login section.fields .login-form .form-field input::-ms-input-placeholder {
                color: #e4e4e4;
            }

            #login section.fields .login-form .form-field input.validated {
                border: 2px solid #ff6154;
            }

            #login section.fields .login-form .form-field .coredomain {
                width: 40%;
                font-family: 'Geist', sans-serif;
                color: #262365;
                font-size: 20px;
                font-weight: 500;
                padding-left: 12px;
            }

            #login section.fields .login-form .form-field .forgot {
                color: #262365;
                font-family: 'Geist', sans-serif;
                font-size: 12px;
                font-weight: 500;
                float: right;
                margin-bottom: 25px;
                margin-top: 5px;
            }

            #login section.fields .login-form .form-field .error-msg {
                font-family: 'Geist', sans-serif;
                font-size: 14px;
                color: #ff6154;
                display: inline;
            }

            i.fa-eye {
                margin-left: -30px;
                position: absolute;
                top: 54px;
                right: 17px;
                cursor: pointer;
                color: lightgray;
            }

.loginHelpers {
    color: #262365;
    font-size: 16px;
}

#login section.fields p.register {
    font-size: 16px;
    margin-top: 32px;
}

        #login section.fields .register .create {
            color: #4DACF8;
            font-family: 'Geist', sans-serif;
            font-size: 16px;
        }

    #login section.fields .steps-wrapper {
        width: 90%;
        display: flex;
        justify-content: space-between;
        position: relative;
        margin-bottom: 45px;
    }

        #login section.fields .steps-wrapper span {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            font-weight: 500;
            position: relative;
            padding-bottom: 20px;
            color: #d6d6d6;
        }

            #login section.fields .steps-wrapper span::after {
                content: "";
                width: 16px;
                height: 16px;
                border-radius: 100%;
                background-color: #d6d6d6;
                position: absolute;
                left: 50%;
                bottom: 0;
                transform: translateX(-50%);
                z-index: 5;
                box-sizing: content-box;
            }

            #login section.fields .steps-wrapper span.step-1 {
                margin-left: -42px;
            }

            #login section.fields .steps-wrapper span.step-3 {
                margin-right: -30px;
            }

            #login section.fields .steps-wrapper span.active {
                color: #3C11A6;
            }

                #login section.fields .steps-wrapper span.active::after {
                    width: 12px;
                    height: 12px;
                    background-color: #3C11A6;
                    border: 2px solid #d6d6d6;
                }

        #login section.fields .steps-wrapper::after {
            content: "";
            width: 100%;
            height: 2px;
            background-color: #d6d6d6;
            position: absolute;
            left: 0;
            bottom: 7px;
        }

    #login section.fields .for-mobile {
        display: none;
    }

#login.window {
    width: 720px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.3);
}

    #login.window .fields {
        width: 100%;
        padding-top: 0;
    }

        #login.window .fields .header {
            padding-top: 35px;
            padding-bottom: 32px;
            padding-left: 16px;
            padding-right: 16px;
            background-color: #f3f3f3;
        }

            #login.window .fields .header h2 {
                text-align: center;
                margin-bottom: 0;
            }

        #login.window .fields .content-wrapper {
            padding-top: 30px;
            padding-bottom: 30px;
        }

            #login.window .fields .content-wrapper .login-form input {
                margin-bottom: 30px;
            }

                #login.window .fields .content-wrapper .login-form input.guided {
                    margin-bottom: 10px;
                }

            #login.window .fields .content-wrapper .login-form .guide {
                font-family: 'Geist', sans-serif;
                font-size: 14px;
                color: #3ac4d7;
            }

            #login.window .fields .content-wrapper .login-form .terms {
                margin-top: 40px;
                color: #262365;
            }

                #login.window .fields .content-wrapper .login-form .terms a {
                    color: #3ac4d7;
                    font-family: 'Geist', sans-serif;
                    font-size: 16px;
                }

            #login.window .fields .content-wrapper .btn-wrapper {
                text-align: center;
            }

                #login.window .fields .content-wrapper .btn-wrapper .btn {
                    width: unset !important;
                    padding: 13px 70px;
                    font-size: 18px;
                }

    #login.window .form-container {
        width: 467px;
    }

#login #step-1 {
    height: 100%;
    min-height: 100vh;
}

#login #step-1, #login #step-2, #login #step-3 {
    display: none;
}


#login #login-content.contains_thankyou {
    min-height: 690px
}

#login #thankyou {
    min-height: 36vw;
    position: relative;
    bottom: 0;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0) url("../images/envelope.svg") no-repeat scroll 50% bottom / contain;
}

#login #thankyou-content {
    bottom: 0;
    left: 50%;
    position: absolute;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

#login .thankyou_inner {
    left: 50%;
    position: absolute;
    top: 23%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 28vw;
}

#login #thankyou-content h1 {
                font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    top: -120px;
    color: #384257;
    -webkit-text-transform: none;
    -moz-text-transform: none;
    -ms-text-transform: none;
    -o-text-transform: none;
    text-transform: none;
}

#login #thankyou-content .thankyou_text {
    display: block;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 70px;
    width: 100%;
    color: #384257;
    font-weight: 500;
    font-family: 'Geist', sans-serif;
}

#login #thankyou-content h2 {
                font-family: 'Geist', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 800;
    color: #384257;
    -webkit-text-transform: none;
    -moz-text-transform: none;
    -ms-text-transform: none;
    -o-text-transform: none;
    text-transform: none;
}

#login .thankyou_border {
    border-radius: 100%;
    bottom: 7px;
    left: 0;
    box-shadow: 0 10px 3px rgba(0, 0, 0, 0.5);
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
}

#login #thankyou-content #thankyou img {
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 80;
}



/* Layout: responsive row for phone fields */
.phone-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* space between fields */
}

    /* Let fields grow/shrink nicely */
    .phone-row .cc-field {
        flex: 1 1 320px; /* can grow, min ~320px */
        min-width: 280px; /* ensures long country names have room */
    }

    .phone-row .mn-field {
        flex: 2 1 340px; /* phone number gets more space overall */
        min-width: 260px;
    }

/* Full-width controls inside their cell */
.select-fluid,
.input-fluid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent label text from pushing layout */
.field-label {
    display: inline-block;
    margin-bottom: 6px;
}

/* If the select is still narrower than the text, show ellipsis gracefully */
.select-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* On narrow screens, stack fields */
@media (max-width: 768px) {
    .phone-row .cc-field,
    .phone-row .mn-field {
        flex: 1 1 100%;
        min-width: 0; /* allow full width on small screens */
    }
}

/* Optional: improve focus ring without altering current styles */
.select-fluid:focus,
.input-fluid:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .35); /* subtle ring */
}

#countryCodeDiv{
    padding-right: 50px;
}