@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

.pricing__box {
    width: 100%;
    box-sizing: content-box;
}
.pricing__inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.pricing__item {
    border: 1px solid #e0e6ed;
    border-radius: 9px;
    margin: 0px 20px;
    height: 370px;
    max-width: 360px;
    box-sizing: border-box;
}
.pricing__item:nth-of-type(2) {
    height: 420px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
 }
.pricing__item__inner {
    padding: 40px 30px;
    text-align: center;
}
.pricing__item:nth-of-type(2) .pricing__item__inner {
    padding: 65px 30px 40px;
 }
.pricing__item__title {
    font-family: 'Roboto Condensed',Arial,sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 22px;
    height: 50px;
}
.pricing__item__duration {
    font-family: 'Roboto Condensed',Arial,sans-serif;
    font-weight: 300;
    color: #777;
    font-size: 22px;
    height: 30px;
    margin: 20px auto 0px;
}
.pricing__item__price {
    font-family: 'Roboto Condensed',Arial,sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 42px;
    margin: 10px 0px;
}
.pricing__item__label {
    font-family: 'Roboto Condensed',Arial,sans-serif;
    font-weight: 300;
    color: #000;
    font-size: 16px;
    padding: 10px;
}

.t-tildalabel {
    display: none;
}
.footer__modal {
    width: 100%;
    height: auto;
    background-color: #000;
    min-height: 70px;
    display: flex;
    flex-direction: column;
}
.footer__modal__links {
    width: auto;
    margin: auto;
}
.overlay {
    opacity: 0;
    visibility: hidden;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 20;
    transition: .3s all;
}

/* Стили для модальных окон */
.modal {
    opacity: 0;
    visibility: hidden;

    width: 100%;
    max-width: 700px;
    max-height: 100%;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;

    box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2);
    text-align: center;
    border-radius: 3px;
    background-color: #fff;
    transition: 0.3s all;
    overflow-y: auto;
}
.modal__inner {
    padding: 20px;
}
.modal.active,
.overlay.active{
    opacity: 1;
    visibility: visible;
}
.modal__cross {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 20px;
    right: 20px;
    fill: #444;
    cursor: pointer;
}
.modal__title {
    font-family: 'Open Sans',serif;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    font-size: 25px;
}
.modal__heading {
    font-family: 'Open Sans',serif;
    font-weight: 600;
    font-size: 18px;
}
.modal__text {
    font-family: 'Open Sans',serif;
    font-size: 15px;
}

/* Стили для кнопок. Мы ведь порядочные разработчики, негоже простые ссылки оставлять */

.js-open-modal {
    font-family: 'Open Sans',serif;
    display: block;
    text-decoration: underline;
    color: #F5F5F5;
    text-align: center;
    margin-top: 10px;
}
.js-open-modal:hover {
    text-decoration: underline;
}
.footer__label {
    font-family: 'Open Sans',serif;
    color: #F5F5F5;
    text-align: center;
    margin-bottom: 10px;
}
/* 992 - 1199 */
/* 768 - 991 */
/* 576 - 767 */
@media (max-width: 1199px) {
    .pricing__item {
        width: 300px;
        margin: 5px;
    }
}
@media (max-width: 991px) {
    .pricing__inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .pricing__item {
         height: 350px;
         max-width: 550px;
         width: 100%;
         margin: 10px 0;
     }
}