.buttonSwitch button {
    width: auto;
    height: 30px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-align: center;
    -o-object-fit: contain;
       object-fit: contain;
    cursor: pointer;
    transition: 0.15s linear;
    padding-left: 20px;
    padding-right: 20px;
}

.buttonSwitch button:hover {
    background-color: #f08b1d;
    color: #FFFFFF;
    border: solid 1px #f08b1d;
}

.buttonSwitch .buttonSwitch {
    background-color: transparent;
    color: #db532a;
    border: solid 1px #db532a;
    outline: none;
    cursor: pointer;
}

.buttonSwitch button.active {
    background-color: #db532a;
    border: solid 1px #db532a;
    color: #FFFFFF;
}

.buttonSwitch button.left {
    border-radius: 50px 0 0 50px;
}

.buttonSwitch button.right {
    border-radius: 0 50px 50px 0;
}

@media only screen and (max-width:1225px) {
    .buttonSwitch button.left {
        /* width: 90px; */
    }
    .buttonSwitch button.right {
        /* width: 90px; */
    }
}
