.switch {
    position: relative;
    display: inline-block;
    width: 49px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    background-color: #595959FF;
    transition: .4s;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    font-size: 10px;
    color: white;
    border: #eeeeee 1px solid;
}

.slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 0;
    top: -1px;
    bottom: 0;
    background-color: white;
    transition: .4s;
    border-radius: 10px;
}

input:checked+.slider {
    background-color: #004EA8;
}

input:checked+.slider::before {
    transform: translateX(29px);
}

.slider span {
    position: relative;
    z-index: 1;
}

input:checked+.slider span:nth-child(1) {
    opacity: 1;
}

input:checked+.slider span:nth-child(2) {
    opacity: 0;
}

input:not(:checked)+.slider span:nth-child(1) {
    opacity: 0;
}

input:not(:checked)+.slider span:nth-child(2) {
    opacity: 1;
}

.a11y-container {
    position: relative;
}

.nowrap {
    white-space: nowrap;
}

.a11y-box{
    display: flex;
    gap: 8px;
    color: #191919;
    font-size: 14px;
    line-height: 22px;
    align-items: center;
    position: absolute;
    right: 12px;
    top: 10px;
    height: 40px;
    border-radius: 40px;
    background-color: #FFFFFFCC;
    backdrop-filter : blur(16px);
    padding: 9px 16px;
    box-sizing: border-box;
}