﻿* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('/login/content/fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('/login/content/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('/login/content/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('/login/content/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('/login/content/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Font Gilroy only for HYBE */

@font-face {
    font-family: 'Gilroy';
    src: url('/login/content/fonts/Gilroy/Gilroy-Regular.eot');
    src: url('/login/content/fonts/Gilroy/Gilroy-Regular.eot?#iefix') format('embedded-opentype'), url('/login/content/fonts/Gilroy/Gilroy-Regular.woff') format('woff'), url('/login/content/fonts/Gilroy/Gilroy-Regular.ttf') format('truetype');
}

body {
    width: 100%;
    height: 100%;
    background-color: #F7F8F8;
    font-family: "Open Sans", "Segoe UI", sans-serif;
}

.content {
    display: block;
    width: 100%;
    max-width: 784px;
    margin: 0 auto;
}

    .content .logo {
        display: block;
        width: 100%;
        max-width: 206px;
        margin: 0 auto 68px;
    }

    .content .reg-title {
        font-size: 36px;
        font-weight: 300;
        text-align: center;
        color: #131b25;
    }

    .content .reg-text {
        font-size: 25px;
        font-weight: 300;
        line-height: 1.7;
        text-align: center;
        color: #6f7c82;
    }

/* Redesign login page */

.btn-wrapper {
    width: 100%;
    margin: 45px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-wrapper__signup {
    display: inline-block !important;
    margin: 0 10px 0 !important;
    max-width: 380px;
}

.btn-wrapper__forgot-password {
    margin: 0 6px;
    cursor: pointer;
}


/*#region select-type*/
.select-type {
    width: 100%;
    max-width: 784px;
    margin: 68px auto 0;
    display: flex;
    justify-content: space-between;
}

    .select-type .item {
        flex: 0 0 calc(50% - 10px);
        cursor: pointer;
        height: 225px;
        background-color: #fff;
        box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.1);
    }

        .select-type .item:hover {
            background-color: #f2f5f7;
        }

        .select-type .item img {
            margin: 52px auto 0;
            display: block;
            height: 80px;
        }

            .select-type .item img.n {
                display: block;
            }

            .select-type .item img.hover {
                display: none;
            }

        .select-type .item:hover img.n {
            display: none;
        }

        .select-type .item:hover img.hover {
            display: block;
        }

        .select-type .item .text {
            font-size: 15px;
            font-weight: 300;
            color: #2c3d4f;
            margin: 22px auto 0;
            text-align: center;
        }
/*#endregion*/

.screen {
    display: none;
}

    .screen.active {
        display: block;
    }

.field {
    width: 500px;
    margin: 50px auto 0;
    height: 42px;
    position: relative;
}

    .field label {
        color: #131B25;
        line-height: 42px;
        font-size: 18px;
        font-weight: 300;
    }

.dpp-field {
    height: initial;
    display: flex;
    flex-flow: row;
    justify-content: center;
}

    .dpp-field .dpp-wrapper {
        width: 100%;
        max-width: 40px;
        display: inline-block;
    }

    .dpp-field input[type=checkbox] {
        width: 15px;
        float: none;
        margin: 0 auto;
        display: block;
    }

    .dpp-field label {
        font-size: 14px;
        color: #5F6E6F;
        transition: color .5s ease-in-out;
    }

        .dpp-field label a {
            transition: color .5s ease-in-out;
        }

    .dpp-field.alert label {
        color: red;
    }

        .dpp-field.alert label a {
            color: red;
        }

.button {
    display: block;
    width: 100%;
    max-width: 186px;
    height: 38px;
    line-height: 38px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    margin: 0 auto;
    border-radius: 3px;
    cursor: pointer;
    background-color: #38bc9c;
    border: none;
}

.field input, select {
    float: right;
    border: 1px solid #DBE3E4;
    border-radius: 3px;
    width: 275px;
    height: 42px;
    font-size: 14px;
    padding-left: 10px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    color: #55606E !important;
    background-color: #FFF;
}

[data-id=eye] {
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url("/login/Content/images/eye.png");
    right: 15px;
    top: 15px;
    background-size: 100%;
    cursor: pointer;
}

.field .hint {
    float: right;
    font-size: 12px;
    color: #9CA2A6;
    width: 275px;
    margin-top: 2px;
}

.field input.warning {
    border: 1px solid #E74C3D !important;
}

    .field input.warning:focus {
        border: none !important;
    }

.field div.warning {
    display: none;
    position: absolute;
    top: 0px;
    left: 105%;
    color: #E74C3D;
    font-size: 12px;
    width: 200px;
    margin-top: 10px;
    font-weight: 400;
}

.notice {
    color: #5F6E6F;
    width: 100%;
    text-align: center;
    margin: 50px auto 50px;
    font-weight: 300;
    font-size: 14px;
}

a {
    color: #3597DB;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/*#region Progress Bar*/

.content .progress-bar {
    width: 100%;
    height: 10px;
}

    .content .progress-bar .block {
        display: inline-block;
        width: 153px;
        height: 5px;
        margin-left: 7px;
        background-color: #DBDCDC;
    }

        .content .progress-bar .block.active {
            background-color: #08B793;
        }

        .content .progress-bar .block:first-of-type {
            margin-left: 0;
        }

/*#endregion*/

/*#region Выпадающий список*/
.jstyling-select {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
    font-size: 13px;
    width: 275px;
    float: right;
    border: 1px solid #ccd6dd;
    cursor: pointer;
    border-radius: 3px;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.jstyling-select-t {
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    font-weight: 300;
    color: #55606E;
}

.jstyling-select-l {
    margin: 0;
    padding: 0;
    width: 100%;
    display: none;
    position: absolute;
    overflow-y: auto;
    z-index: 1000;
    font-size: 13px;
    max-height: 324px;
    background: #FFFFFF;
    border: 1px solid #ccd6dd;
    border-top: 0;
    top: 43px;
    left: -1px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

    .jstyling-select-l::-webkit-scrollbar {
        height: 100%;
        width: 7px;
        background-color: transparent;
    }

    .jstyling-select-l::-webkit-scrollbar-track {
        width: 7px;
    }

    .jstyling-select-l::-webkit-scrollbar-thumb {
        height: 20px;
        border-radius: 100%/18%;
        width: 7px;
        background-color: rgba(64,64,64, 0.6);
    }

.campaign-list .jstyling-select-l {
    max-height: 244px;
}

.source-list .jstyling-select-l {
    max-height: 230px;
}

.jstyling-select-l div {
    list-style: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    height: 20px;
    padding: 10px;
    border-bottom: 1px solid #DBE3E4;
    color: #55606E;
}

.jstyling-select.active {
    z-index: 700;
    background-position: 100% -28px;
}

    .jstyling-select.active .jstyling-select-l {
        display: block;
    }

.jstyling-select-s {
    padding: 10px 10px;
    height: 20px;
    line-height: 22px;
    font-size: 22px;
}

    .jstyling-select-s::after {
        content: "\f107";
        font-family: 'FontAwesome', sans-serif;
        position: absolute;
        width: 15px;
        height: 15px;
        font-size: 14px;
        text-align: center;
        border-radius: 100%;
        box-sizing: border-box;
        padding-top: 2px;
        top: 9px;
        right: 10px;
        color: #55606E;
    }

.jstyling-select-l div:hover {
    background: #EAF4FB;
}

.jstyling-select-l div.disabled {
    background: #E5E5E5;
    background-color: #E5E5E5;
}

    .jstyling-select-l div.disabled:hover {
        color: #000000;
    }

.jstyling-select-l div:first-child {
    border-top: 0;
}
/*#endregion*/

body.dark {
    background-color: #2C3D4F;
}

.dark .reg-title {
    color: #FFFFFF;
}

.dark label {
    color: #FFFFFF;
}

.dark .field input {
    border: 1px solid #465361;
    background-color: #263646;
    color: #5D5C5C !important;
}

.dark .field {
    width: 400px;
}

.dark .reg-block .field {
    margin-top: 21px;
}

    .dark .reg-block .field:first-of-type {
        margin-top: 50px;
    }

.dark .notice {
    color: #FFFFFF;
}

/*div.warning:not(#password-warning):after {
    content: "\f12a";
    font-family: 'FontAwesome';
    position: absolute;
    width: 15px;
    height: 15px;
    font-size: 12px;
    color: #FFF;
    background-color: #E74C3D;
    left: -50px;
    border-radius: 100%;
    text-align: center;
    box-sizing: border-box;
    padding-top: 2px;
    top: 3px;
}*/

.dark div.warning::after {
    color: #263646 !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset;
    -webkit-text-fill-color: #55606E !important;
}

.dark input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #263646 inset;
    -webkit-text-fill-color: #969FA8 !important;
}
