﻿#login-container {
    padding-top: 70px;
    padding-bottom: 50px;
    background-color: #fcfcfc !important;
    min-height: 100vh;
}

.default-width {
    width: 45vw;
}

.default-new-landing-font {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
}

.font-normal {
    font-weight: normal;
}

.pointer {
    cursor: pointer;
}

.logo-image {
    width: 150px;
}

.p-0 {
    padding: 0 !important;
}

.full-width {
    width: 100%;
}

.m-1 {
    margin: 0.2em;
}

.m-2 {
    margin: 0.4em;
}

.m-3 {
    margin: 0.6em;
}

.m-4 {
    margin: 0.8em;
}

.m-5 {
    margin: 1em;
}

.mr-0 {
    margin-right: 0 !important;
}

.mt-1 {
    margin-top: 0.2em;
}

.mt-2 {
    margin-top: 0.4em;
}

.mt-3 {
    margin-top: 0.6em;
}

.mt-4 {
    margin-top: 0.8em;
}

.mt-5 {
    margin-top: 1em;
}

.mb-1 {
    margin-bottom: 0.2em;
}

.mb-2 {
    margin-bottom: 0.4em;
}

.mb-3 {
    margin-bottom: 0.6em;
}

.mb-4 {
    margin-bottom: 0.8em;
}

.mb-5 {
    margin-bottom: 1em;
}

.ml-1 {
    margin-left: 0.2em;
}

.ml-2 {
    margin-left: 0.4em;
}

.ml-3 {
    margin-left: 0.6em;
}

.ml-4 {
    margin-left: 0.8em;
}

.ml-5 {
    margin-left: 1em;
}

.mr-1 {
    margin-right: 0.2em;
}

.mr-2 {
    margin-right: 0.4em;
}

.mr-3 {
    margin-right: 0.6em;
}

.mr-4 {
    margin-right: 0.8em;
}

.mr-5 {
    margin-right: 1em;
}

.padding-right-menu {
    padding-right: 45px;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: 2px underline;
    text-underline-offset: 5px;
}

.errormsg {
    color: red;
    font-size: 14px;
}

.new-form-design {
    width: 100%;
    padding: 20px;
}

.login-submit-container {
    width: 45vw;
}

.new-form-select-design > input,
.new-form-select-design > textarea {
    background-color: #000;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    -webkit-appearance: none;
    width: 100%;
    border: none;
    border-radius: 0;
    color: #FFF;
    font-size: 14px;
    padding: 16px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 0;
}

    .new-form-select-design > input:focus {
        /*background-color: #e25a00;*/
        color: #FFF;
    }

.new-form-select-design > select,
.new-form-select-design > input,
.new-form-select-design > textarea {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    width: 45vw;
    padding: 16px;
    background: #000;
    color: #FFF;
}

    .new-form-select-design > select > option.main {
        color: #FFF !important;
    }

    .new-form-select-design > select > option,
    .new-form-select-design > label,
    .custom-checkbox > label {
        font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
        font-weight: 900;
        background-color: transparent !important;
    }

    .new-form-select-design > input:read-only {
        background-color: gray !important;
    }

.custom-checkbox > label {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    background-color: transparent !important;
}


.custom-checkbox input[type=checkbox] {
    --active: #f15a2d;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #000;
    --border-hover: #f15a2d;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border)) !important;
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    margin: 0;
}

    .custom-checkbox input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    .custom-checkbox input[type=checkbox]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }

    .custom-checkbox input[type=checkbox]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

        .custom-checkbox input[type=checkbox]:disabled:checked {
            --b: var(--disabled-inner);
            --bc: var(--border);
        }

        .custom-checkbox input[type=checkbox]:disabled + label {
            cursor: not-allowed;
        }

    .custom-checkbox input[type=checkbox]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    .custom-checkbox input[type=checkbox]:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    .custom-checkbox input[type=checkbox]:not(.switch) {
        width: 21px;
    }

        .custom-checkbox input[type=checkbox]:not(.switch):after {
            opacity: var(--o, 0);
        }

        .custom-checkbox input[type=checkbox]:not(.switch):checked {
            --o: 1;
        }

    .custom-checkbox input[type=checkbox] + label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }

    .custom-checkbox input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }

        .custom-checkbox input[type=checkbox]:not(.switch):after {
            width: 5px;
            height: 9px;
            border: 2px solid var(--active-inner);
            border-top: 0;
            border-left: 0;
            left: 7px;
            top: 4px;
            transform: rotate(var(--r, 20deg));
        }

        .custom-checkbox input[type=checkbox]:not(.switch):checked {
            --r: 43deg;
        }

}

.custom-checkbox * {
    box-sizing: inherit;
}

    .custom-checkbox *:before,
    .custom-checkbox *:after {
        box-sizing: inherit;
    }


.vb-new-button {
    padding: 0;
    color: #FFFFFF !important;
    border-width: 0px !important;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 900 !important;
    background-color: #000000 !important;
    padding: .3em 1em !important;
    line-height: 1.7em !important;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all !important;
    transition-property: all !important;
}

    .vb-new-button:hover {
        background-color: #f26833 !important;
    }

.vb-new-button-top-nav {
    padding: 0;
    color: #FFFFFF !important;
    border-width: 0px !important;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: normal !important;
    background-color: #f26833 !important;
    padding: .3em 1em !important;
    line-height: 1.7em !important;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all !important;
    transition-property: all !important;
}

    .vb-new-button-top-nav:hover {
        background-color: #000000 !important;
    }

.partners-container {
    width: 80vw;
}

.partners-container div {
    /*margin: 1em;*/
}

.title-text {
    font-size: 40px;
    padding: 0;
}
.partners-welcome-text {
    margin: 54px 0;
    padding-bottom: 54px;
    border-bottom: 3px solid black;
    width: 80vw;
}

.partners-welcome-suptitle {
    width: 465px;
    text-align: center;
}

/*floating label*/

#forgot-container {
    margin-top: 30px;
}



.input-fields,
#country-ddl {
    position: relative;
    margin-bottom: 30px;
    /*width: 430px;
    height: 40px;
    margin-top: 30px;*/
}

/*.input-fields input {
    width: 100%;
    height: 100%;
    outline: 1.4px solid black;
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 18px;
}

.input-fields input:focus {
    outline: 2px solid #1f3040;
}*/

    .input-fields input:focus + label:not(.error),
    .input-fields textarea:focus + label:not(.error) {
        top: -30px;
        color: #000;
    }

    .input-fields input:not(:placeholder-shown) + label:not(.error),
    .input-fields textarea:not(:placeholder-shown) + label:not(.error) {
        top: -30px;
        color: #000;
    }
    

    .input-fields label:not(.error) {
        position: absolute;
        top: 10px;
        left: 5px;
        font-size: 18px;
        padding: 0 5px;
        pointer-events: none;
        transition: top .2s;
        background-color: white;
        color: #FFF;
    }

    label.error {
        color: red;
    }
   

/*ui*/
ul.ui-autocomplete {
    z-index: 1000 !important;
    max-height: 300px !important;
    overflow: auto !important;
}

.advanced-search-container {
    width: calc(50vw + 80px);
}

    .advanced-search-container > span {
        margin-right: 10px;
    }

.ui-menu .ui-menu-item {
    padding: 5px;
}

a.ui-corner-all {
    font-size: 14px !important;
    font-weight: bold;
    display: block;
    width: 95%;
    padding: 5px;
}

.ui-widget-content .ui-state-hover {
    width: 95%;
    border: 0;
    font-size: 14px !important;
    font-weight: bold;
    border-radius: 0 !important;
    padding: 5px;
}


.fancybox-overlay {
    z-index: 100000 !important;
}

.full-width-alternative-button {
    width: 100%;
    padding: 15px !important;
    text-align: center;
    background-color: #f26833 !important;
}

.full-width-alternative-button:hover {
    background-color: #000000 !important;
}
