article{
    margin: 0 auto 115px;
    max-width: 980px;
    padding: 20px;
    text-align: center;
}
h1{
    font-size: 2.5em;
    text-align: center;
    margin: 0;
}
footer{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
#supported_languages_footer div {
    padding: 0.7em;
}
.popup_menu {
    max-width: 320px;
    border-radius: 2px;
    border: 1px solid #e1dcdc;
    height: 42px;
    overflow: hidden;
    background: url(images/popup_arrow.gif) center right no-repeat #fff;
    position: relative;
    margin: 20px auto;
}
.popup_menu>div {
    position: absolute;
    left: 0;
    right: -50px;
    top: 0;
    bottom: 0;
}
.popup_menu select {
    width: 100%;
    background: 0 0;
    border: none;
    outline: 0;
    color: #303339;
    font: 400 18px Open Sans, Arial, sans-serif;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 95px 9px 10px;
    -moz-appearance: none;
    appearance: none;
}
#price {
    display: flex;
    align-content: stretch;
    justify-content: space-between;
}
.tarif {
    background-color: #fff;
    width: 32%;
    border-radius: 10px;
    text-align: center;
    position: relative;
}
.tarif p {
    margin: 20px;
}
h2{
    margin: 0;
    padding: 10px;
    font-size: 2em;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    color: white;
}
#tarif_free h2{
    background-color: #188DC0;
}
#tarif_abon h2{
    background-color: #119230;
}
#tarif_own h2{
    background-color: #9447E7;
}
#tarif_free ul {
    margin: 0 20px;
    padding: 0;
    display: inline-block;
    text-align: left;
    font-size: 1.2em;
}
#tarif_free li {
    list-style-type: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 7px 20px 2px 20px;
    background-repeat: no-repeat;
    background-position: left 11px;
    background-size: 8px;
    background-image: url(images/list-mark-free.svg);
}
.slider-container {
    position: relative;
    height: 30px;
    margin: 0 20px;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: #ddd;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
}

.slider-fill {
    height: 100%;
    background-color: #9347e1;
    border-radius: 3px;
}

.slider-thumb {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #9347e1;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    touch-action: none;
}
#tarif_own_days {
    font-size: 1.2em;
}
.tarif_old_price {
    font-size: 1.2em;
    color: #717171;
    margin: 15px 0 6px;
}
.tarif_old_price small{
    color: #f32b2b;
}
.tarif_old_price span {
    position: relative;
    display: inline-block;
    padding: 0 5px;
}
.tarif_old_price span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px; /* Толщина линии */
    background-color: #f32b2b; /* Цвет линии */
    transform: translateY(-50%) rotate(-10deg); /* Позиционирование и поворот линии */
    transform-origin: center;
}
.tarif_price {
    font-size: 2.2em;
    line-height: 1;
    margin-bottom: 20px;
    margin-top: 20px;
}
.bottom_container {
    position: absolute;
    bottom: 0px;
    width: 100%;
}
#tarif_abon_radio_group {
    font-size: 1.3em;
    border: none;
    margin-bottom: 34px;
    white-space: nowrap;
    border-top: 1px solid #d1cfcf;
    border-bottom: 1px solid #d1cfcf;
    padding: 10px 0;
}
#tarif_abon_radio_group input{
    vertical-align: bottom;
    padding: 0;
    margin: 0 0 0 5px;
    width: 20px;
    height: 20px;
}
#tarif_free .bottom_container p{
    color: #474747;
    text-align: left;
}
#promo {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    margin: 20px;
}
#promo_icon{
    background-image: url(images/promo_star.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 64px;
    height: 64px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
#promo_icon span {
    text-align: center;
    line-height: 1.1;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    transform: rotate(-45deg);
}
#promo p {
    font-size: 1.5em;
    margin-left: 20px;
}
.orange_button {
    background: #eb5204;
    border-radius: 40px;
    color: #fff;
    padding: 10px 30px;
    font-size: 1.8em;
    text-decoration: none;
}

@media (max-width:890px){
    #tarif_abon_radio_group {
        font-size: 1em;
    }
}

@media (max-width:720px){
    #tarif_abon_radio_group {
        font-size: 1.3em;
    }
    #price {
        flex-direction: column;
        align-items: center;
    }
    .tarif {
        width: 100%;
        max-width: 400px;
        min-height: 320px;
        margin-bottom: 20px;
    }
}
@media (max-width:380px){
    article {
        padding: 10px;
        font-size: 0.9em;
    }
}