body {
    font-family: 'Oswald', sans-serif;
}

h1,
h2,
h3 {
    color: #8c6abb;
    font-weight: 800;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

.burgerMenu__btn {
    display: none;
    z-index: 1002;
    -webkit-transition: 0.1s -webkit-transform linear;
    transition: 0.1s -webkit-transform linear;
    transition: 0.1s transform linear;
    transition: 0.1s transform linear, 0.1s -webkit-transform linear;
    position: fixed;
    background: 0;
    float: right;
    margin: 2rem;
    height: 2.7rem;
    width: 3.5rem;
    outline: 0;
    padding: 0;
    border: 0;
}

@media (max-width: 1200px) {
    .burgerMenu__btn {
        display: block;
    }
}

.burgerMenu__bar,
.burgerMenu__bar::before,
.burgerMenu__bar::after {
    -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
    transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
    transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
    transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear, 0.2s -webkit-transform linear;
    position: absolute;
    background: #000;
    margin: auto;
    width: 100%;
    height: 0.3rem;
    content: '';
    top: 50%;
    right: 0;
}

.burgerMenu__bar {
    margin-top: -0.2rem;
}

.burgerMenu__bar::before {
    top: -1.2rem;
}

.burgerMenu__bar::after {
    top: 1.2rem;
}

.burgerMenu__bar::before,
.burgerMenu__bar::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.burgerMenu__btn.active .burgerMenu__bar {
    background: 0;
}

.burgerMenu__btn.active .burgerMenu__bar::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
}

.burgerMenu__btn.active .burgerMenu__bar::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #fff;
}

.burgerMenu__btn.active .burgerMenu__bar::before,
.burgerMenu__btn.active .burgerMenu__bar::after {
    top: 0;
}

.burgerMenu__btn.active .burgerMenu__bar,
.burgerMenu__btn.active .burgerMenu__bar::before,
.burgerMenu.active .burgerMenu__bar::after {
    -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
    transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
    transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s;
    transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s, 0.2s -webkit-transform linear 0.2s;
}

.burgerMenu__nav {
    z-index: 1001;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91), -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    padding-top: 6.2rem;
}

.menu-open .burgerMenu__nav {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.burgerMenu__list {
    margin: 0;
    list-style: none;
    padding: 0;
}

.burgerMenu__item {
    font-size: 2.6rem;
    text-transform: uppercase;
}

.burgerMenu__link {
    display: block;
    padding: 20px 8px;
    color: #fff;
}

.burgerMenu__link:hover,
.burgerMenu__link:focus,
.burgerMenu__link:active {
    background-color: rgba(13, 120, 146, 1);
    text-decoration: none;
    color: #fff;
}

.modalMain {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    display: none;
}

.modalMain__bg {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
}

.modalMain__inner {
    position: absolute;
    width: 450px;
    padding: 24px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url(/img/form_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1005;
}

.modalMain__title {
    font-size: 1.6em;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.modalMain__row {
    margin: 8px 0;
}

.modalMain__input {
    width: 100%;
    border: 1px solid #dddddd;
    padding: 4px 8px;
}

.modalMain__button {
    text-align: center;
}

@media (max-width: 768px) {
    .modalMain__inner {
        width: 98%;
    }
}

.modalYesright {
    color: #fff;
}

.modalYesright a {
    color: #fff;
}

.modalMain__btn {
    background-color: #fc6701;
    padding: 8px;
    white-space: nowrap;
    border-radius: 5px;
    text-transform: uppercase;
    outline-style: none;
    font-weight: 600;
    color: #fff;
}

.modalMain__btn:hover {
    background-color: #be4f03;
    color: #fff;
}

.shapka {
    padding: 16px 48px;
}

@media (max-width: 992px) {
	.shapka {
		display: none;
	}
}

.topMenu {
    display: flex;
    justify-content: space-around;
    position: relative;
    padding: 20px 0;
}

.topMenu__item {
    display: inline-block;
    margin-right: -4px;
    position: relative;
}

.topMenu__link {
    color: #000;
    font-weight: 600;
    font-size: 1.5em;
}

.topMenu__link:hover,
.topMenu__link:focus,
.topMenu__link:active {
    text-decoration: none;
    color: #000;
}

.dropDown {
    position: absolute;
    display: none;
    text-align: center;
    left: -25%;
    list-style: none;
    padding: 8px;
    margin: 0;
    box-shadow: 0 0 8px #dddddd;
    background-color: #fff;
    z-index: 500;
}

.dropDown__item {
    padding: 8px 0;
}

.dropDown__link {
    color: #000;
    font-weight: 600;
    font-size: 1.2em;
}

.logo {
    padding: 16px 0;
    text-align: center;
}

.logo-title {
    font-size: 2em;
    color: #000;
}

.shapka__kontakt {
    text-align: center;
    width: 100%;
    font-weight: 600;
}

.shapka__phone {
    font-size: 1.8em;
    color: #000;
}

.shapka__mail {
    color: #000;
    font-size: 1.5em;
}

.logo__img {
    width: 50px;
}

.logo-footer__img {
    width: 150px;
}

.slider__item1 {
    background-image: url(/img/slider/001.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slider__item2 {
    background-image: url(/img/slider/002.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


.slider__item3 {
    background-image: url(/img/slider/003.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


.sliderItem__info {
    padding: 256px 0 64px;
}

.sliderItem__title {
    font-size: 5em;
    font-weight: 400;
    color: #000000;
    line-height: 1em;
    text-shadow: 0 0 4px #fff, 1px 1px 4px #fff;
}

.sliderItem__text {
    font-weight: 400;
    font-size: 2em;
    color: #fff;
    text-shadow: 0 0 8px #000;
    padding: 16px 0;
}

.sliderItem__text2 {
    font-weight: 400;
    font-size: 2.5em;
    /*padding-bottom: 16px;*/
    color: #fff;
    text-shadow: 0 0 8px red;
}

.sliderItem__text3 {
    font-weight: 400;
    font-size: 1em;
    color: #fff;
    padding: 8px 0 16px;
}

.sliderItem__btn {
    background-color: #000000;
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 16px 32px;
    font-size: 1.6em;
    text-align: center;
    width: 50%;
}

.genTitle {
    font-size: 3.5em;
    font-weight: 400;
    text-align: center;
    padding: 16px 0;
}

.plusi {
    padding: 56px 0;
}

.plusi__item {
    position: relative;
    text-align: center;
    margin-top: 90px;
    border: 3px solid #f2f2f2;
    padding: 48px 16px;
    font-size: 1.2em;
}

.plusi__title {
    font-weight: 600;
    padding-bottom: 16px;
}

.plusi__text {
    font-weight: 400;
}

.plusi__img {
    position: absolute;
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
    top: -74px;
}

.nabor {
    background-color: #e9ebea;
    padding: 56px 0;
}

.naborTitle {
    font-size: 3em;
    font-weight: 500;
}

.nabor__text {
    padding: 32px 0;
    font-size: 1.2em;
}

.naborBtn {
    width: 50%;
    text-align: center;
}

.nabor__btn {
    border: 5px solid #000000;
    color: #000000;
    width: 100%;
    font-size: 1.5em;
    font-weight: 600;
    background-color: inherit;
}

.nabor__img {
    width: 100%;
}

.newsBlock {
    padding: 56px 0;
}

.news__btn {
    border: 5px solid #000000;
    color: #000000;
    width: 100%;
    font-size: 1.5em;
    font-weight: 600;
    background-color: inherit;
}

.newsBtn {
    margin-top: 32px;
}

.news__img {
    width: 100%;
}

.news__date {
    padding: 16px 0;
    color: #999999;
}

.news__title {
    font-weight: 500;
    font-size: 1.4em;
    min-height: 54px;
}

.news__info {
    padding: 16px;
}

.news__text {
    font-size: 1.2em;
}

.territory {
    background-color: #e9ebea;
    padding: 56px 32px;
}

.genTitle_b {
    font-weight: 600;
}

.territory__item {
    position: relative;
    margin-top: 32px;
}

.territory__img {
    width: 100%;
}

.territory__title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
}

.territory__link {
    padding: 16px 28px;
    color: #000;
    font-weight: 600;
    font-size: 1.5em;
}

.otzivi {
    padding: 56px 0;
}

.textBlock {
    padding: 56px 0;
}

.greenArea {
    padding: 56px 0;
    background-color: #000000;
    color: #fff;
}

.greenAreaBtn {
    float: right;
}

.greenArea__btn {
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.5em;
    background-color: inherit;
    text-transform: uppercase;
    padding: 8px 32px;
}

.green__title {
    font-size: 2em;
}

.green__text {
    font-size: 1.4em;
}

.footer {
    text-align: center;
    padding: 72px 32px;
}

.footer__item {
    display: inline-block;
    vertical-align: middle;
    width: 24%;
}

.footer__item:nth-child(2) {
    width: 48%;
}

.footerMenu {
    display: inline-block;
    vertical-align: top;
    width: 29%;
}

.footerMenu__list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-right: 12px;
}

.footerMenu__link {
    font-size: 1.1em;
    font-weight: 500;
    color: #000;
}

.footerMenu__item {
    padding-bottom: 12px;
    text-align: left;
}

.leftNews {
    background-color: #f5f5f5;
    margin-bottom: 32px;
}

.content__inner,
.leftMenu__inner {
    padding: 32px 0;
}

.leftTitle {
    font-weight: 400;
    font-size: 3.5em;
}

@media (max-width: 1460px) {
    .shapka__phone {
        font-size: 1.6em;
    }
}

@media (max-width: 1200px) {
    .shapka__phone {
        font-size: 1.3em;
    }

    .topMenu__link {
        font-size: 1.3em;
    }
}

@media (max-width: 992px) {
    .topMenu {
        display: none;
    }

    .shapka__phone {
        font-size: 1.6em;
    }

    .greenAreaBtn {
        float: none;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer__item {
        width: 100%;
        padding-bottom: 16px;
    }

    .footer__item:nth-child(2) {
        width: 100%;
    }

    .footerMenu {
        width: 30%;
        padding: 16px 0;
    }

    .footer__item:nth-child(2) {
        padding-left: 0;
    }

    .footer {
        padding: 32px;
    }

    .greenAreaBtn {
        padding-top: 16px;
    }
}

.inputCheck {
    width: 20px;
    height: 20px;
    font-size: 2em;
}

.price__img,
.inputCheck,
.price__title,
.price__price {
    display: inline-block;
    margin-right: 12px;
}

.price__oldprice {
    text-decoration: line-through;
}

.price__newprice {
    color: #ff0000;
}

.price__div {
    margin: 8px 0;
}

.itogo,
.itogo2 {
    float: right;
    font-size: 1.4em;
    text-align: right;
}

.price__title {
    font-size: 1.4em;
}

.priceTable {
    width: 100%;
    max-width: 100%;
}

.priceTable tr td {
    border: 1px solid #000;
    padding: 6px 12px;
}

.priceTable tr th {
    border: 1px solid #000;
    padding: 6px 12px;
    color: #fff;
    background-color: #000;
    text-align: center;
}

.send-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.send-form__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.send-form__inner {
    width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 8px #000000;
    z-index: 1001;
    background: #ffffff;
    margin: 0 auto;
    transform: translateX(-50%) translateY(-50%);
    padding: 20px;
    margin-bottom: 20px;
    border: 3px solid #f2f2f2;
}

@media (max-width: 992px) {
    .send-form__inner {
        width: 100%;
    }
}

.send-form__header {
    font-size: 2em;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    padding: 16px 0;
}

.send-form__row {
    margin: 14px 0;
}

.send-form__input {
    padding: 8px 12px;
    width: 100%;
    border: 3px solid #f2f2f2;
}

.send-form__input:focus {
    border: 3px solid #000000;
}

.send-form__areabutton {
    text-align: center;
}

.send-form__btn {
    background-color: transparent;
    text-transform: uppercase;
    border: 3px solid #f2f2f2;
    color: #000000;
    font-size: 1.2em;
    font-weight: 600;
}

.send-form__btn:hover,
.send-form__btn:focus,
.send-form__btn:active {
    outline: none;
    border: 3px solid #000000;
}

.shapkaBtn {
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 450px) {
    .shapka__phone {
        font-size: 1.2em;
    }
}

.dostavka__inner {
    background-image: url(/img/dost_bg.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 32px 0;
}

.dostavka {
    background-color: #000;
    padding: 32px 0;
    font-size: 3em;
    color: #fff;
    text-shadow: 0 0 8px #000;
}

.stick-menu {
    display: none;
    text-align: center;
}

.is-sticky .stick-menu {
    width: 100%;
    z-index: 1000;
    display: block;
    position: fixed;
    background-color: #fff;
    padding: 12px 0;
}

.stickMenu__list {
    display: flex;
    justify-content: space-around;
}

.toTop {
    width: 50px;
    height: 50px;
    font-size: 24px !important;
    line-height: 45px !important;
    color: #fff;
    background: #000;
    border: 1px solid #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: fixed;
    right: 66px;
    bottom: 80px;
    display: none;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    z-index: 20;
}

.toTop:hover {
    border: 1px solid #000;
    color: #000;
    background: #fff;
    text-decoration: none;
}

.toTop:focus {
    border: 1px solid #000;
    color: #fff;
    background: #000;
    text-decoration: none;
}

.footer__kontakt {
    font-size: 2em;
}

.callback-modal__btn {
    display: block;
    margin: 0 auto;
    padding: 8px 64px;
    border: 1px solid #000000;
    background: none;
    text-transform: uppercase;
    font-size: 1.4em;
}

.price__img {
    width: 150px;
}

@media (max-width: 768px) {

    .price__img {
        display: block;
        margin-bottom: 12px;
    }
    .price__div {
        width: 100%;
        margin-bottom: 12px;
    }
    .price__img {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .mobile-slider {
        display: none;
    }
}

@media (max-width: 992px) {
    .slider {
        display: none;
    }
}

@media (max-width: 992px) {
    .slider__item1,
    .slider__item2,
    .slider__item3,
    .slider__item4 {
        background-image: none;
        background-color: #000;

    }
}

@media (max-width: 992px) {
    .sliderItem__info {
        text-align: center;
        padding: 8px 0;
        font-size: 0.5em;
    }
}

.line-top {
    display: none;
    z-index: 1001;
    /*position: fixed;*/
    width: 100%;
    left: 0;
    top: 0;
}

@media (max-width: 992px) {
    .line-top {
        display: block;
    }
}

.line-top__inner {
    padding: 8px 8px;
    background-color: #fcfcfc;
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line-top__logo {
    height: 32px;
}

.line-top__phone {
    text-align: left;
}

.line-top__phone-link {
    color: #000;
    text-decoration: none;
}

.line-top__logo-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.line-top__icon  {
    text-decoration: none;
    color: #000;
    font-size: 1.8em;
}

.mobile-menu {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fcfcfc;
    z-index: 1001;
}

.mobile-menu__inner {
    padding: 16px;
}

.mobile-menu__line-top {
   display: -webkit-flex;
   display: -moz-flex;
   display: -ms-flex;
   display: -o-flex;
   display: flex;
   justify-content: space-between;
   align-items: center;   
}

.mobile-menu__logo {
    height: 48px;
}

.mobile-menu__logo-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.mobile-menu__closed  {
    color: #000;
    text-decoration: none;
    font-size: 1.8em;
}

.mobile-menu__menu {
    margin: 16px 0;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__item {
    padding: 8px 0;
}

.mobile-menu__link {
    text-transform: uppercase;
    font-size: 0.875em;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu__phone {
    margin: 16px 0;
    color: #000
}

.mobile-menu__phone-text {
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
    font-size: 0.875em;
}

.mobile-menu__phone-list {
    list-style: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

.mobile-menu__phone-item {
    padding: 8px 0;
}

.mobile-menu__phone-link {
    text-transform: uppercase;
    font-size: 0.875em;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.category-mobile {
    margin: 8px 0;
}

.category-mobile select {
    width: 100%;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 8px 16px;
}

.sticky {
    position: fixed;
}

.line-top__callback {
    background-color: #000;
    color: #ffffff;
    border: none;
    margin-top: 4px;
    text-transform: lowercase;
    padding: 4px 8px;
}

.modal-exit {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1001;
    top: 0;
    left: 0;
}

.modal-exit__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-exit__inner {
    font-size: 1.2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 350px;
    background-color: #ffffff;
    box-shadow: 0 0 8px #666666;
    padding: 16px;
    text-align: center;
}

@media (max-width: 768px;) {
    .modal-exit__inner {
        width: 98%;
    }
}

.modal-exit__header {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 8px;
}

.teleseti {
    margin-top: 16px;
}

.wa__ico {
    padding: 4px 16px 8px 16px;
    background-color: #64bd52;
    color: #fff;
    font-size: 1.6em;
    border-radius: 5px;
    margin: 16px 4px;
}

.vi__ico {
    padding: 4px 16px 8px 16px;
    background-color: #77509e;
    color: #fff;
    font-size: 1.6em;
    border-radius: 5px;
    margin: 16px 4px;
}

.te__ico {
    padding: 4px 16px 8px 16px;
    background-color: #23a0d6;
    color: #fff;
    font-size: 1.6em;
    border-radius: 5px;
    margin: 16px 4px;
}

.wa__ico:hover, .vi__ico:hover, .te__ico:hover {
    color: #fff;
}

.carBlock__row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sliderGallery {
    padding: 32px 0;
    background-color: #e9ebea;
}

@media (max-width: 992px) {
    .carBlock__row {
        flex-direction: column;
    }
}

.carBlock__col {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    width: 48%;
    align-items: center;
}

@media (max-width: 992px) {
    .carBlock__col {
        width: 100%;
        flex-direction: column;
        margin-bottom: 8px;
    }
}

.carBlock__img {
    width: 100%;
}

@media (max-width: 992px) {
    .carBlock__img {
        width: 100%;
    }
}

.carBlock__row {
    margin: 8px 0;
}

.carBlock__col label {
    width: 58%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carBlock__col label div {
    display: block;
}

.carBlock__text {
    width: 90%;
}

@media (max-width: 992px) {
    .carBlock__text {
        font-size: 1.2em;
    }
}

.carBlock__header {
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
}

.carBlock__subheader {
    font-size: 0.775em;
    color: #999999;
    margin: 8px 0;
}

.carBlock__price {
    font-size: 1.4em;
}

.carBlock__summary {
    font-size: 1.6em;
    text-transform: uppercase;
    margin-top: 24px;
}

.carBlock__price-old {
    text-decoration: line-through;
    color: red;
}

label {
    padding-left: 16px;
}

.price {
    padding: 54px 0;
}

.price-table {
    width: 100%;
}

.price-table tr th {
    border: 1px solid #000;
    text-align: center;
        padding: 4px 12px;
}

.price-table tr td {
    border: 1px solid #000;
    padding: 4px 12px;
}