.language {
}

.language-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0a3847;
    cursor: pointer;
    text-decoration: none;
}

a.language-item:hover {
    color: #1574f5;
}

.language-item-icon {
    display: flex;
    flex-basis: 21px;
    min-width: 21px;
    max-width: 21px;
    height: 21px;
    border-radius: 50%;
    overflow: hidden;
}

.language-item-icon-check {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(78%) saturate(1725%) hue-rotate(358deg) brightness(96%) contrast(99%);
}

.language-item-icon img {
    width: 100%;
    height: 100%;
}

.language-item-label {
    font-size: 16px;
    line-height: 24px;
    font-family: JetSansDigital, Arial, sans-serif;
    font-weight: 400;
}

.language-item-label-selected {
    font-size: 16px;
    line-height: 24px;
    font-family: JetSansDigital, Arial, sans-serif;
    font-weight: 700;
}

.language-item-arrow {
    margin-left: 16px;
}

.language-side-sheet-inner {
    display: none;
    min-width: 475px;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    border: 1px solid #d7d7d7;
    height: 100vh;
    border-radius: 8px 0 0 8px;
}

.language-side-sheet-inner--visible{
    display: block;
}

.language-side-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.language-side-sheet-header-heading {
    font-family: JetSansDigital, Takeaway Sans, sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
}

.language-side-sheet-divider {
    height: 1px;
    background-color: rgb(0, 0, 0, .08);
}

.language-items-wrapper {
    padding: 0 8px;
}

.close-button {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
}

.close-icon {
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.language-side-sheet-item {
    padding: 12px 16px;
    margin-bottom: 8px;
}

@media (max-width: 959px) {
    .language > .language-item {
        height: 24px;
    }

    .language > .language-item .language-item-icon {
        flex-basis: 21px;
        min-width: 21px;
        max-width: 21px;
        height: 21px;
    }

    .language-side-sheet-inner {
        min-width: 100%;
        border-radius: unset;
    }
}
