.period-switcher {
    width: 840px;
    max-width: 80%;
    height: 61px;
    margin: 0 auto 60px;
    position: relative;
    border-radius: 16px;
    background: #F3F8FF;
    display: flex;
    justify-content: space-between;
}

.period-switcher-option {
    padding: 0 8px;
    height: 100%;
    width: 33.3%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 24px;
    color: #474766;
    cursor: pointer;
    z-index: 2;
}

.period-switcher-option:hover {
    color: #2589FF;
}

.period-switcher-option.active {
    color: #2589FF;
}

.period-switcher-handle-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.period-switcher-handle {
    position: absolute;
    top: 4px;
    width: calc(33.3% - 8px);
    height: calc(100% - 8px);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 16px 48px -4px rgba(17, 8, 0, 0.04), 0px 32px 96px -5px rgba(17, 8, 0, 0.04), 0px 64px 192px -6px rgba(17, 8, 0, 0.04);
    z-index: 1;
    transition: 0.3s;
}
.period-switcher-handle[data-position='1'] {
    left: 4px;
}
.period-switcher-handle[data-position='2'] {
    left: calc(33.3% + 4px);
}
.period-switcher-handle[data-position='3'] {
    left: calc(66.6% + 4px);
}

.period-switcher-discount {
    margin-left: 8px;
    padding: 2px 4px;
    background: #66ADFF;
    color: #fff;
    border-radius: 18px;
    font-size: 12px;
}

.additional-tools .period-switcher{
    width: 100%;
    max-width: unset;
    background: #fff;
    border: 2px solid #E5F1FF;
}

.additional-tools .period-switcher-handle {
    background: #F5FAFF;
    border: 1px solid #CCE4FF;
    box-shadow: 0px 1px 2px 0px #1108000A;
    box-shadow: 0px 2px 4px 0px #1108000A;
    box-shadow: 0px 4px 8px -1px #1108000A;
}

@media screen and (max-width: 1281px) {
    .period-switcher {
        margin: 0 auto 50px;
    }
}

@media screen and (max-width: 980px) {
    .period-switcher {
        height: 48px;
        margin: 0 auto 40px;
        border-radius: 12px;
    }
    .period-switcher-option {
        font-size: 18px;
    }
    .period-switcher-handle {
        border-radius: 8px;
    }
}
@media screen and (max-width: 750px){
    .period-switcher-wrapper {
        display: none;
    }
}

