@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

@import 'splashscreen-reset.css';
@import 'splashscreen-container.css';
@import 'splashscreen-hero.css';
@import 'splashscreen-marker.css';
@import 'splashscreen-mobile.css';
@import 'splashscreen-skelet-item.css';
@import 'splashscreen-sr.css';

#splash {
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    font-size: 100px;
    transition: opacity 0.2s ease;
}

    #splash .header-wrapper {
        position: relative;
        max-width: 100%;
        min-width: 1000px;
    }

    #splash .splash-container {
        position: relative;
        display: flex;
        flex-direction: column;
        flex: 1;
        height: 100%;
        overflow: hidden;
    }

    #splash .splashscreen-header {
        padding: 15px 0;
        background-color: white;
    }

    #splash .header-logo-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    #splash .user-menu-list {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    #splash .header-logo-img-link {
        display: flex;
        width: 100%;
        align-items: center;
        width: 175px;
        height: 40px;
    }

        #splash .header-logo-img-link img {
            width: auto;
            height: auto;
        }

        #splash .header-logo-img-link svg {
            width: 100%;
            height: 32px;
            color: white;
        }

            #splash .header-logo-img-link svg.face-icon {
                color: #e73e45;
                height: 35px;
                width: 35px;
            }


    #splash .user-menu-link-item {
        cursor: pointer;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 37px;
        height: 37px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        #splash .user-menu-link-item:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        #splash .user-menu-link-item.account .icon svg {
            fill: currentColor;
        }

            #splash .user-menu-link-item.account .icon svg path {
                stroke: white;
            }

        #splash .user-menu-link-item.account svg {
            fill: currentColor;
        }

        #splash .user-menu-link-item.account .is-logged-in {
            position: absolute;
            right: -3px;
            bottom: -3px;
            width: 15px;
            height: 15px;
            border: 1px solid var(--main-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--main-green);
        }

        #splash .user-menu-link-item a,
        #splash .user-menu-link-item button,
        #splash .user-menu-link-item .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            width: 18pt;
            height: 18pt;
            background-color: transparent;
            border: none;
        }

            #splash .user-menu-link-item a svg,
            #splash .user-menu-link-item button svg,
            #splash .user-menu-link-item .icon svg {
                fill: currentColor;
                width: 12pt;
                height: 12pt;
            }

        #splash .user-menu-link-item a {
            position: relative;
        }

        #splash .user-menu-link-item img,
        #splash .user-menu-link-item svg {
            width: 100%;
            height: 100%;
            min-width: 15px;
        }

        #splash .user-menu-link-item .counter {
            width: 15px;
            height: 15px;
            background-color: var(--main-blue);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0px;
            border-radius: 50%;
            font-size: 10px;
            position: absolute;
            right: 0px;
            top: 0px;
            margin-left: 0;
        }

            #splash .user-menu-link-item .counter.ipad {
                width: 13px;
                height: 13px;
                line-height: 13px;
                font-size: 8px;
                right: 5px;
                padding: 0;
            }

    #splash .hero-text {
        color: #fff;
        text-shadow: 1px 1px rgba(0, 0, 0, .3);
        margin-top: 100px;
        margin-bottom: 65px;
        opacity: 0;
    }

        #splash .hero-text:has(h3) {
            margin-top: 75px;
        }

    #splash h3 {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2rem;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 5px;
    }

h3 .icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

    h3 .icon svg {
        width: 20px;
        height: 20px;
    }

#splash h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

#splash h2 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#splash .image-block {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 520px;
    min-height: 520px;
    height: 100%;
    min-height: auto;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
}

.image-block::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    opacity: 0;
    background-image: var(--header-hero-gradient, linear-gradient(180deg, rgba(0, 0, 0, .5019607843) 0%, rgba(0, 0, 0, .5019607843) 100%));
}

.image-block:has([loaded])::after, .image-block:has([loaded]) + .hero-text {
    opacity: 1 !important;
}

#splash .search-console-wrapper {
    padding-bottom: 0px;
}

#splash .search-console-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 8px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #1f2a44;
}

#splash .search-console-wrapper .tabs {
    display: flex;
    margin-bottom: 15px;
    gap: 0px;
}

#splash .header-wrapper .tabs.mobile {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

    #splash .header-wrapper .tabs.mobile .tab {
        font-size: 14px;
        padding: 10px 15px;
        font-weight: 700;
        background: transparent;
        flex: 0 1 33%;
        justify-content: center;
        border-radius: 35px;
    }

        #splash .header-wrapper .tabs.mobile .tab.active {
            border: 1px solid white;
        }

#splash .search-console-wrapper .tabs .tab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 20px;
    color: white;
    border-radius: 35px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0);
    background: transparent;
}

    #splash .search-console-wrapper .tabs .tab.active {
        border: 1px solid white;
        margin-bottom: 0;
        border-radius: 35px;
        font-weight: 900;
    }

#splash .filters-row {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 2px;
}

#splash .search-field {
    border: none;
    position: relative;
    margin: 0 -2px;
    width: calc(100% + 4px);
    overflow: hidden;
    padding: 6px 25px 15px;
    cursor: pointer;
}

    #splash .search-field label {
        font-size: 12px;
        line-height: 12px;
        color: #72777a;
        display: flex;
        align-items: center;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    #splash .search-field .value {
        width: 100%;
        color: #000;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 20px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        background: transparent;
        border: none;
        opacity: 1;
        min-height: 20px;
        border-radius: 3px;
    }

    #splash .search-field::after {
        content: "";
        height: calc(100% - 10px);
        width: 1px;
        background-color: #ddd;
        position: absolute;
        right: 0;
        top: 5px;
    }

    #splash .search-field:nth-of-type(1) {
        flex: 1 1 33.3333333333%;
    }

    #splash .search-field:nth-of-type(2) {
        flex: 1 1 25%;
    }

    #splash .search-field:nth-of-type(3) {
        flex: 1 1 25%;
    }

#splash .search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    background-color: #0d5ca8;
    border: 1px solid #0d5ca8;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    color: #fff;
    transition: background-color .3s ease;
    padding: 15px 25px;
    max-width: 80px;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    opacity: .5;
}