﻿/**/
  :root{
    --width: 30px;
    --height: 25px;
    --border: 10px;
    --circle-diameter: calc( var(--width)/2 );
  }

.switch-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: min-content;
    margin: 20px;
    border-radius: 25% / 75%;
    box-shadow: 0px 2px 3px 1px #333;
}
@media (min-width: 1px) and (max-width: 400px) {
    .switch-container {
        margin: 15px;
    }
}
    .switch-container .switch {
        position: relative;
        display: inline-flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: var(--width);
        height: var(--height);
        margin: 0;
        cursor: pointer;
    }

        .switch-container .switch:before {
            content: '';
            width: 100%;
            height: 100%;
            position: relative;
            top: 0;
            left: 0;
            right:0;
            background: linear-gradient(#e9eaee, #e9eaee);
        }

    .switch-container .switch--left:before {
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
        border-right: 0;
    }

    .switch-container .switch--right:before {
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;
        border-left: 0;
    }

    .switch--left ~ span {
        left: calc(0px + var(--border));
        width: calc(var(--circle-diameter) );
        height: calc(var(--circle-diameter) );
    }

    .switch--left:checked ~ span {
        display: block;
        position: absolute;
        left: calc(0px + var(--border));
        border-radius: 50%;
        background-color: #134486;
        box-sizing: content-box;
        z-index: 2;
        transition: all .3s;
    }

    .switch--right:checked ~ span {
        display: block;
        position: absolute;
        left: calc( 100% - var(--circle-diameter) - (var(--border)*1) );
        border-radius: 50%;
        background-color: #134486;
        box-sizing: content-box;
        z-index: 2;
        transition: all .3s ease-in-out;
    }
    /*------------------------------------------*/
    .boxe {
        padding: 10px 20px;
        height: auto;
        width: 100%;
    }

.boxe1 {
    border-radius: 20px;
    background-color: #E9F4F9;
    color: #134486;
    padding: 100px 10px 50px 10px;

}
.boxe2 {
    border-radius: 20px;
    background-color: #F5F5F5;
    color: #134486;
    padding: 100px 10px 50px 10px;

}
.boxe3 {
    border-radius: 20px;
    background-color: #E9F4F4;
    color: #134486;
    padding: 100px 10px 50px 10px;

}
.btn-buy {
    padding: 10px 20px;
    display: inline-block;
    background: #3FA0E5;
    border: 1.8495px solid #3FA0E5;
    border-radius: 9.24752px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

.btn-buy1 {
    padding: 10px 20px;
    display: inline-block;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #3FA0E5;
    border: 1.8495px solid #3FA0E5;
    border-radius: 9.24752px;
}

.text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #545454;
    padding: 15px 10px 0 10px;
}
@media (min-width: 1500px) and (max-width: 3000px) {
    .text{
        padding:15px 40px 0 40px
    }
}
@media (min-width: 2000px) and (max-width: 3000px) {
    .text {
        padding: 15px 60px 0 60px
    }
}

