.upkid-header{
    width: 100%;
    position: fixed;
    z-index: 10;
    height: 64px;
}

.top-header-section{
    display: none;
    position: relative;
    /* z-index: 10; */
}

.bottom-header-section{
    background-color: #ffffff;
    height: 100%;
}

.bottom-header-block{
    padding-left: 16px;
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.upkid-logo{
    width: 60px;
    height: 25px;
}

.language-switcher{
    display: none;
    z-index: 10;
}

@media(min-width: 767.9px){
    .upkid-header{
        height: auto;
    }

    .top-header-section{
        background-color: #f8f8fc;
        display: block;
    }

    .top-header-block{
        padding: 4px 42px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .contacts-block{
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 100%;
        padding: 6px 0;
    }

    .contact-link{
        line-height: 16px;
        font-size: 12px;
        font-weight: 400;
        color: #5455f6;
        transition: color 0.5s ease
    }

    .contact-link:hover{
        color: #2526f4;
    }

    .social-media-icons-block{
        padding: 5px 0;
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .social-media-icon {
        width: 18px;
        height: 18px;
        background-color: #5455f6;
        mask-size: cover;
        transition: background-color 0.5s ease;
    }
    
    .social-media-icon--facebook {
        mask-image: url('../../icons/facebook-colored.svg');
        -webkit-mask-image: url('../../icons/facebook-colored.svg')
    }
    
    .social-media-icon--instagram {
        mask-image: url('../../icons/instagram-colored.svg');
        -webkit-mask-image: url('../../icons/instagram-colored.svg')
    }
    
    .social-media-icon--tiktok {
        mask-image: url('../../icons/tiktok-colored.svg');
        -webkit-mask-image: url('../../icons/tiktok-colored.svg')
    }
    
    .social-media-icon:hover {
        background-color: #2526f4;
    }
    
    .bottom-header-section{
        height: auto;
    }

    .bottom-header-block{
        padding: 32px 42px 0 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .upkid-logo-wrapper{
        padding: 4px 0;
    }

    .upkid-logo{
        width: 86px;
        height: 36px;
    }

    .language-switcher{
        display: flex;
        height: 44px;
        width: 112px;
        background-color: #ffffff;
        border: 1px solid #5455f6;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .language-switcher-button {
        background-color: inherit;
        height: 100%;
        width: 50%;
        color: #5455f6;
        line-height: 16px;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 16px;
    }

    .language-switcher-button.active {
        background-color: #5455f6;
        color: #fff;
        z-index: 5;
        height: 44px;
        margin-top: -1px;
    }
}

@media(min-width: 1199.9px){
    .top-header-block{
        height: 40px;
        padding: 4px 82px;
        width: 1200px;
    }

    .contacts-block{
        padding: 8px 0;
    }

    .bottom-header-block{
        padding: 32px 82px 0 82px;
        width: 1200px;
    }
}

