.dlt {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999999;
    color: #06104f;
    font-family: inherit;
}

.dlt__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 62px;
    height: 48px;
    padding: 0 13px;
    border: 2px solid #fff;
    border-radius: 24px;
    background: #06104f;
    color: #fff;
    box-shadow: 0 8px 24px rgba(6, 16, 79, .24);
    cursor: pointer;
    font-weight: 800;
}

.dlt__toggle:hover,
.dlt__toggle:focus-visible {
    background: #10257f;
    outline: 3px solid rgba(16, 37, 127, .22);
    outline-offset: 2px;
}

.dlt__globe {
    font-size: 17px;
    line-height: 1;
}

.dlt__menu {
    position: absolute;
    right: 0;
    bottom: 58px;
    width: 190px;
    padding: 8px;
    border: 1px solid #dce4f2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(6, 16, 79, .18);
}

.dlt__language {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #06104f;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.dlt__language:hover,
.dlt__language:focus-visible,
.dlt__language.is-current {
    background: #06104f;
    color: #fff;
    outline: none;
}

.dlt__code {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
}

.dlt__status {
    position: absolute;
    right: 0;
    bottom: -19px;
    width: max-content;
    max-width: 220px;
    color: #06104f;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .dlt {
        right: 12px;
        bottom: 12px;
    }

    .dlt__toggle {
        height: 44px;
        min-width: 58px;
    }
}
