.text-right {
    text-align: right !important;
}

.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

/* elements */

.num {
    position: relative;
    margin-left: 16px;
    width: 90px;
}

.num button {
    position: relative;
    background: transparent;
    border: none;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 0;
}

.num input {
    width: 100%;
    height: 30px;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    padding: 0 27px;
    font-weight:bold;
    -webkit-transition: .3s background, .3s border-color;
    transition: .3s background, .3s border-color;
}

.num input:focus {
	background: #FFF;
	border-color: #CDCDCD;
}

.num button span {
    background: #EB0E29;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.num button span:nth-child(1) {
    width: 8px;
    height: 2px;
}

.num button span:nth-child(2) {
    height: 8px;
    width: 2px;
}

.num button:hover {
    opacity: .5;
}

.num button.minus {
    left: 10px;
}

.num button.plus {
    right: 10px;
}

.delete {
    background: transparent;
    border: none;
    width: 18px;
    height: 18px;
    padding: 0;
    cursor: pointer;
    margin-right: 6px;
}

.delete span {
    display: block;
    width: 18px;
    height: 2px;
    background: #EBEBEB;
    position: absolute;
    -webkit-transition: .3s background;
    transition: .3s background;
}

.delete:hover span {
    background: #FF6073;
}

.delete span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.delete span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.shadow {
	-webkit-box-shadow: 0px 14px 54px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 14px 54px rgba(0, 0, 0, 0.1);
}

/* forms */

.form-group {
    margin: 0 0 20px;
}

.form-group:last-child {
    margin: 0;
}

.form-group input {
    background: #F9F9F9;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    height: 70px;
    padding: 20px;
    width: 100%;
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 200%;
    color: #6B6B6B;
    -webkit-transition: .3s border-color, .3s color, .3s background;
    transition: .3s border-color, .3s color, .3s background;
}

.form-group input:focus {
    background: #FFFFFF;
    border: 1px solid #CDCDCD;
}

.form-group input::-webkit-input-placeholder {
    color: #B7B7B7;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.form-group input::-moz-placeholder {
    color: #B7B7B7;
    -moz-transition: .3s color;
    transition: .3s color;
}

.form-group input:-ms-input-placeholder {
    color: #B7B7B7;
    -ms-transition: .3s color;
    transition: .3s color;
}

.form-group input::-ms-input-placeholder {
    color: #B7B7B7;
    -ms-transition: .3s color;
    transition: .3s color;
}

.form-group input::placeholder {
    color: #B7B7B7;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.form-group input:focus::-webkit-input-placeholder {
    color: #B7B7B7;
}

.form-group input:focus::-moz-placeholder {
    color: #B7B7B7;
}

.form-group input:focus:-ms-input-placeholder {
    color: #B7B7B7;
}

.form-group input:focus::-ms-input-placeholder {
    color: #B7B7B7;
}

.form-group input:focus::placeholder {
    color: #B7B7B7;
}

.form-group input.error {
    border: 1px solid #FF6073;
    background: #FFF;
}

.form-group input.error::-webkit-input-placeholder {
    color: #FF6073;
}

.form-group input.error::-moz-placeholder {
    color: #FF6073;
}

.form-group input.error:-ms-input-placeholder {
    color: #FF6073;
}

.form-group input.error::-ms-input-placeholder {
    color: #FF6073;
}

.form-group input.error::placeholder {
    color: #FF6073;
}

.form-group textarea {
    background: #F8F8F8;
    border: 1px solid #E1E1E1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 30px;
    height: 180px;
    padding: 20px;
    width: 100%;
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 120%;
    color: #6B6B6B;
    padding: 20px 35px;
    text-align: left;
    resize: none;
    -webkit-transition: .3s border-color, .3s color, .3s background;
    transition: .3s border-color, .3s color, .3s background;
}

.form-group textarea:focus {
    background: #FFFFFF;
    border: 1px solid #CDCDCD;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.form-group textarea::-webkit-input-placeholder {
    color: #B7B7B7;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.form-group textarea::-moz-placeholder {
    color: #B7B7B7;
    -moz-transition: .3s color;
    transition: .3s color;
}

.form-group textarea:-ms-input-placeholder {
    color: #B7B7B7;
    -ms-transition: .3s color;
    transition: .3s color;
}

.form-group textarea::-ms-input-placeholder {
    color: #B7B7B7;
    -ms-transition: .3s color;
    transition: .3s color;
}

.form-group textarea::placeholder {
    color: #B7B7B7;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.form-group textarea:focus::-webkit-input-placeholder {
    color: #B7B7B7;
}

.form-group textarea:focus::-moz-placeholder {
    color: #B7B7B7;
}

.form-group textarea:focus:-ms-input-placeholder {
    color: #B7B7B7;
}

.form-group textarea:focus::-ms-input-placeholder {
    color: #B7B7B7;
}

.form-group textarea:focus::placeholder {
    color: #B7B7B7;
}

.form-group textarea.error {
    border: 1px solid #FF6073;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #FFF;
}

.form-group textarea.error::-webkit-input-placeholder {
    color: #FF6073;
}

.form-group textarea.error::-moz-placeholder {
    color: #FF6073;
}

.form-group textarea.error:-ms-input-placeholder {
    color: #FF6073;
}

.form-group textarea.error::-ms-input-placeholder {
    color: #FF6073;
}

.form-group textarea.error::placeholder {
    color: #FF6073;
}

.registration_form button {
    width: 100%;
}

.form-group small {
    margin: 15px 0 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #303030;
    display: block;
}

.form-group label {
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #303030;
    margin: 0 0 8px;
    display: block;
}

.form-group small img {
    margin-right: 8px;
}

.form-check {
    text-align: left;
}

.form-check input {
    display: none;
}

.form-check label {
    position: relative;
    padding-left: 29px;
    cursor: pointer;
}

.form-check label:before {
    content: '';
    background: #F8F8F8;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border: 1px solid #E1E1E1;
    display: block;
    overflow: hidden;
    font-family: 'fontello';
    font-weight: 900;
    color: #FFF;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
}

.form-check input:checked + label:before {
    background: #ec0f29;
    border-color: #ec0f29;
    content: '\e901';
}


/***** CART PAGE *****/

.cart-page {
    width: 820px;
    max-width: 100%;
    background: #FFF;
    border-radius: 10px;
    /* padding: 32px 50px 50px; */
    overflow:hidden;
        width: 100%;
}

@media (max-width:991px) {
    .cart-page{
        margin-bottom: 40px;
    }
}

.cart-page .tabs .tab {
	display: none;
}

.cart-page .tabs .tab.active {
	display: block;
}

.cart-page .tabs .caption {
    border-bottom: 1px solid #EBEBEB;
    /* padding: 0 0 30px; */
    margin: 0 0 36px;
}

.cart-page .tabs .caption ul {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    justify-content:space-between;
    background: #EFE5DB;
    border-bottom: 1px solid #E5E5E5;
}

.cart-page .tabs .caption ul li {
    display: flex;
    position: relative;
    min-height: 70px;
    padding-left: 45px;
    padding-top: 0;
    /* max-width: calc(33.3333% - 55px); */
    cursor: pointer;
    padding-right: 30px;
    list-style: none;
    margin: 0;
    /* width: calc(100% / 2); */
    width: 100%;
    justify-content:center;
    align-items: center;
}
/* .cart-page .tabs .caption ul li:after{
    content: '.....';
    display: block;
    position: absolute;
    left: 93%;
    top: -5%;
    color: #D2C9C0;
    font-family: 'Roboto';
    font-weight: 900;
    font-size: 3.6rem;
    letter-spacing: 4.75px;
    z-index: 2;
} */

.cart-page .tabs .caption ul li.active{
    background: #fff;
}
.cart-page .tabs .caption span {
    /* padding: 15px 0 0; */
    display: block;
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 112%;
    color: #2F2F2F;
}



.cart-page .tabs .caption ul li i {
    /* position: absolute; */
    left: 0;
    top: 0;
    min-width: 30px;
    min-height: 30px;
    background: #302C29;
    opacity: 0.5;
    color:#EFE5DB;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;

    font-size: 15px;
    -webkit-transition: .3s color, .3s background;
    transition: .3s color, .3s background;
    margin-right: 10px;
}

@media (max-width:600px){
    .cart-page .tabs .caption ul li{
        padding: 8px;
        flex-direction:column;
        justify-content:center;
        text-align: center;
    }
    
    .cart-page .tabs .caption ul li::after{
        display: none;
    }
    
    .cart-page .tabs .caption ul li span{
        font-size: 12px;
    }   
    
    .cart-page .tabs .caption ul li i{
        margin-right: 0;
        margin-bottom: 5px;
    }      
}
.cart-page .tabs .caption ul li.active i{
    background: #D64E47;
    opacity:1;
    color: #D0D0D0;    
}

.cart-page .tabs .caption ul li.active i {
    color: #FFF;
    background: #D64E47;
}

.cart-page .tabs .caption li.active span {
    color: #303030;
    font-weight: 500;
}

.cart-page .tabs .caption ul li:last-child {
    margin: 0;
}

/* .cart-page .tabs .caption ul li:after {
    content: '';
    position: absolute;
    right: -47px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 17px;
    height: 89px;
    background: url(../img/icons/big-arrow.svg) no-repeat center center;
    background-size: contain;
} */

.cart-page .tabs .caption ul li:last-child:after {
    display: none;
}

.cart-page input {
    text-align: left;
    padding: 0 30px;
}

.cart-page h2 {
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 120%;
    color: #303030;
    margin: 0 0 18px;
}

.cart-page .form-group {
    margin: 0 0 20px;
    text-align: left;
}

.cart-page .form-group small {
	text-align: left;
}

.cart-page .subtabs {
    /* text-align: center; */
}

.cart-page .subtabs .nav {
    width: 100%;
    display: inline-flex;
    vertical-align: top;
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
    color: #303030;
    padding: 0;
    margin: 0 0 36px;
    position: relative;
    list-style:none;
    margin-bottom: 20px;
    flex-wrap:wrap;
}

.cart-page .subtabs .nav li {
    width: 200px;
    height: 70px;
/*     float: left;
margin-right: 40px; */
    cursor: pointer;
position: relative;
/* border-bottom: 2px solid #EBEBEB;
padding: 0 0 12px;
z-index: 5; */
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 10px;
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 106%;
    color: #302C29;
    padding: 0;
    padding-left: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width:560px){
    .cart-page .subtabs .nav li,
    .pay_types .pay_item{
        margin-right: 0 !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }
}

.cart-page .subtabs .nav li:not(:last-of-type){
    margin-right: 20px;
}

.cart-page .subtabs .nav li span{
    display: block;
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    color: #302C29;
}

/* @media (max-width:600px){
    .cart-page .subtabs .nav li{
        padding-left: 20px;
    }
    
    .cart-page .subtabs .nav li span{
        font-size: 12px;
    }    
} */

.cart-page .subtabs .nav li:after {
    content: '';
    /* width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #ffba5a transparent transparent transparent;
    position: absolute;
    left: 50%;
    bottom: -8px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 3;
    opacity: 0; */
}

.cart-page .subtabs .nav li:before,
.pay_types .pay_item input + label:before{
    content: '\e901';
    font-family:'fontello';
    text-align: center;
    color:#fff;
    font-size:0;
    line-height: 22px;
    display: block;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    left:18px;
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 50%;
      transition: all .3s;
}

/* .cart-page .subtabs .nav li.active:after, */
.cart-page .subtabs .nav li.active:before,
.pay_types .pay_item input:checked + label:before{
	/* opacity: 1; */
	font-size:12px;
	background: #D64E47;
	border-color:#D64E47;
}

/* .cart-page .subtabs .nav li.active {
    font-weight: 500;
    border-color: #FFBA5A;
} */

.cart-page .subtabs .nav li:last-child {
    margin: 0;
}


.cart-page .subtab {
	display: none;
}

.cart-page .subtab.active {
	display: block;
}

.cart-page .link {
    display: inline-block;
    vertical-align: middle;
}

.cart-page .link a {
    margin: 0 29px 0 0;
}

.cart-page .link .btn {
    display: inline-block;
    vertical-align: middle;
}

.cart-page .btn {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width:767px) {
    .cart-page .btn {
        min-width:13rem;
    }
    
    .btn i.icon-arrow-long{
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

.cart-page .cart_map {
    margin: 0 0 40px;
    border-radius: 10px;
    overflow: hidden;
}

.cart-page .cart_map .cart_map_block {
    width: 100%;
    height: 350px;
    display: none;
}

.cart-page .cart_map .cart_map_block.active {
	display: block;
}

.pay_types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction:column;
    align-items:stretch;
    margin: 0 0 40px;
}

.pay_types .pay_item {
    width: 50%;
    margin-bottom: 20px;
    
}

.pay_types .pay_item:last-child {
    margin-right: 0;
}

.pay_types .pay_item input {
    display: none;
}

.pay_types .pay_item .icon {
    background: #FFF;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    font-size: 49px;
    color: #ec0f29;
    margin: 0 auto 16px;
}

.pay_types .pay_item .title {
    font-size:16px;
    line-height:106%;
    font-weight:600;
}

.pay_types .pay_item label {
    background: #fff;
    padding: 17px 17px 17px 56px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #E5E5E5;
/*     -webkit-transition: .3s border-color;
transition: .3s border-color; */
    display: flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    position: relative;
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 106%;
    /* or 106% */
    color: #302C29;    
}

@media (max-width:700px){
    .pay_types .pay_item label {
        width: 100%;
    }
}

/* .pay_types .pay_item label:hover {
    border-color: #FF6073;
} */

.pay_types .pay_item input:checked + label {
    /* border-color: #ec0f29; */
}

.pay_types .pay_item input:checked + label:before {
    content: '\e901';
    font-family: 'fontello';;
}

.minicart.sitebar {
    background: #FFF;
    border-radius: 0;
    padding: 40px;
    background: #FFFFFF;
    border-radius: 20px;
}

@media (max-width:1199px) {
    .minicart.sitebar {
        padding: 20px;
    }
}

.minicart.sitebar form{
    width: 100%;
}


.minicart.sitebar .items-list {
    padding: 0;
    margin: 0;
    width: 100%;
}

.minicart.sitebar .item{
    display:flex;
    flex-direction:column;
    background: none;
    border-radius:0;
    overflow:auto;
    padding: 15px 0;
    border-top: 1px solid #E5E5E5;
}

.minicart.sitebar .item:last-child{
    border-bottom: 1px solid #E5E5E5;
}

.item__info{
    display: flex;
    justify-content:space-between;
    align-items:center;
}

.item__info .title{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 120%;
    color: #302C29;
        flex:0 0 calc(100% - 170px);
}

.item__info .price{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 120%;
    color: #302C29;
    padding: 0 15px;
    margin-right: -4px;
    /* margin-right: 20px; */
    margin-left: auto;
    flex:0 0 150px;
}

.item__info .delete{
    color:#D7C7B8;;
    flex:0 0 20px;
}

.item__vol{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 300%;
    color: #595450;
}

.item__count{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 300%;
    color: #595450;
    display:flex;
    align-items:center;
}

.total{
    width: 100%;
}

.total-info{
    width: 100%;
    margin: 30px 0 26px;
}

.total-info__item{
    padding: 4px 0;
    width: 100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.total-info__item-title{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #302C29;
}

.total-info__item-value{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    color: #302C29;

}

.total-info__item-value--delivery{
    color: #55BE7F;
}
.total-sum{
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items:center;
}

.total-sum__title{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px; 
    color: #302C29;
}

.total-sum__value{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    text-align: right;
    color: #302C29;
}


/* .minicart.sitebar .total {
    padding: 0 30px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
} */

.minicart .total .total_info {
    width: 54%;
}

.minicart.sitebar .total b {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.minicart .total .cost {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: #303030;
    margin-right: 6px;
    display: inline-block;
    vertical-align: middle;
}

.minicart .total .cost i {
    font-size: 24px;
    vertical-align: top;
}

.minicart.sitebar .total b .old_price {
    font-size: 24px;
    line-height: 38px;
    color: #6B6B6B;
    float: none;
    vertical-align: top;
    display: inline-block;
    margin-left: 10px;
    position: relative;
}

.minicart.sitebar .total b .old_price i {
    font-size: 18px;
    vertical-align: top;
}

.minicart.sitebar .total b .old_price:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    background: red;
    width: 100%;
    height: 2px;
    -webkit-transform: translateY(-50%) rotate(-15deg);
    transform: translateY(-50%) rotate(-15deg);
}

.minicart.sitebar .total span.old {
    font-weight: normal;
    width: auto;
    float: none;
    margin-left: 10px;
}

.minicart.sitebar .total span.total_sale {
    float: left;
    width: 100%;
    color: #EB0E29;
    font-size: 14px;
    clear: both;
    line-height: 1.4;
}

.minicart.sitebar .total .total_promo {
    width: 46%;
    margin: 14px 0 0;
}

.minicart.sitebar .total .total_promo i {
    color: #ec0f29;
    font-size: 22px;
    vertical-align: middle;
}

.minicart.sitebar .total .total_promo a {
    font-weight: 900;
    font-size: 12px;
}

.minicart.sitebar .total .add-promo {
	display: none;
    width: 100%;
    margin: 20px 0 0;
    position: relative;
}

.minicart.sitebar .total .add-promo input {
    height: 50px;
    text-align: left;
    padding: 10px 180px 10px 25px;
}

.minicart.sitebar .total .add-promo button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 50px;
    padding: 0 26px;
    font-size: 16px;
}

.minicart.sitebar .total .add-promo small {
    text-align: left;
}

.cart-page #map{
    max-height:400px;
}

.prev-tab i::before{
    transform:scaleX(-1);
}

.items-list-title{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 600;
    font-size: 4rem;
    line-height: 125%;
    color: #302C29;
    text-align: center;
    padding-bottom: 20px;
}

.bg{
    background: #E6DBD3 url(../img/bg-category-main.png) center -6rem no-repeat;
}

.tabs-list{
    padding: 40px;
}

.contact-block{
    width: 100%;
    display:none;
    margin-top: 30px;
    margin-bottom: 30px;
    align-items:flex-start;
}

.contact-block.active{
    display: flex;
}

.contact-block__img{
    position: relative;
    width: 40%;
    padding-bottom: 30%;
    border-radius: 10px;
    overflow:hidden;
}

.contact-block__img img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.contact-block__info{
    margin-left: 45px;
    width: calc(60% - 45px);
    color: #302C29;
}
.contact-block .footer-contact{
    padding: 0 0 0 2.5rem;
}
.contact-block .footer-contact .data{
    font-weight:800;
}

.contact-block .footer-contact a{
    color: #302C29;
}

.address-title{
    font-family: Museo Sans Cyrl;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 2.4rem !important;
    line-height: 150% !important;
    color: #302C29 !important;
}

.order-form-btn{
    width: 100%;
}

.error-msg{
    color: #FF6073;
    display: none;
}

.error-msg.visible{
    display: block;
}

.btn-back i::before{
    transform:scaleX(-1);
}

.btn[disabled]{
    opacity:0.5;
    cursor:default;
    pointer-events:none;
}

.cart-page .tabs .caption ul li.success i{
    background: #55BE7F;
    opacity:1;
}

.cart-page .tabs .caption ul li.success i::before{
    color:#fff;
    content:'\e901';
}

.prev-tab, .next-tab{
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width:1200px){
    .cart-page .tabs .caption ul li:after {
        left: 88%;
        top: 8%;
    }
}

@media (max-width: 1200px){
    .cart-page .tabs .caption ul li:after {
        left: 90%;
        top: -5%;
    }
}
@media (max-width: 767px){

    .contact-block__img{
        width: 50%;
    }

    .contact-block__info{
        margin-left: 25px;
        width: calc(50% - 25px);
    }
    
}

@media (max-width: 600px){
    .tabs-list{
        padding: 20px;
    }
    
    .cart-page input, .cart-page textarea{
        text-align: left;
        padding: 0 17px;
    }
    
    .cart-page textarea{
        padding:17px;
    }
    
    .cart-page .btn {
        min-width:unset;
        width: 100%;
    }
}

@media (max-width: 575px){
     .contact-block{
        flex-direction:column-reverse;
        justify-content:flex-start;
        align-items:stretch;
    }

    .contact-block__img{
        width: 100%;
        padding-bottom: 50%;
    }

    .contact-block__info{
        margin-left: 0;
        width: 100%;
    }
    
    .tab .row .col-6{
        width: 100%;
        max-width: 100%;
        flex:0 0 100%;
    }
    
    .tab .row .col-6:first-child{
        margin-bottom: 15px;
    }
    
}


@media (max-width: 500px){
    .item__info .title{
        font-size: 2rem;
        flex:0 0 calc(100% - 140px);
    }
    
    .item__info .price{
        font-size: 2rem;
        flex:0 0 120px;
    }
    
    .item__info .delete{
        flex:0 0 20px;
    }
}

/* СТРАНИЦА ЗАКАЗА ПЕЛЛЕТ */

.pellete-form-page .product-about-left{
    margin-top: -4rem;
}

.pellete-form{
    width: 75%;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding-bottom: 30px;
}
.pellete-form .row{
    width: 100%;
}

.pellete-form .row .col-12{
        display: flex;
    align-items: center;
}

.pellete-form .row .col-6:last-child{
    display: flex;
    justify-content:flex-end;
}
.pellete-form .row .col-6:last-child .fg-ver{
    align-items:flex-end;
}
.pellete-form .row .col-6:last-child .fg-ver label{
    align-self:flex-start;
}

.pellete-form label{
    line-height: 120%;
    display: block;
    text-align:left;
}
.pellete-form .btn{
    width:100%;
    margin-top: 30px;
}
.pellete-form .jq-selectbox,
.amount{
    width: 100%;
}

.pellete-form .jq-selectbox__select-text,
.amount span{
    font-weight: bold;
}

.fg-hor{
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items:center;
    padding: 6px 0;
}

.fg-ver{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction:column;
    justify-content: flex-end;
    align-items:flex-start;
    padding: 6px 0;    
}

.fg-ver label{
    margin-bottom: 5px;
    margin-top: 10px;
    text-align:left;
}

.amount{
    display: flex;
    justify-content: flex-start;
    background: #fff;
    border-radius: 1rem;
    padding: 0 2rem 0 2rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.6rem;
    -webkit-box-shadow: 0 1rem 1rem 0 rgb(0 0 0 / 10%);
    box-shadow: 0 1rem 1rem 0 rgb(0 0 0 / 10%);
    text-align:left;
}

.amount input{
    background: none;
    border:none;
    outline:none;
    width: 30px;
    font-weight:bold;
    text-align:left;
}

.amount input::-webkit-outer-spin-button,
.amount input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

@media (max-width:991px){
    .pellete-form-page .product-about-left{
        margin-top: 0;
    }
    
    .pellete-form{
        width: 65%;
    }
    
    .pellete-form-page .product .product-about{
        display: flex;
        flex-direction:column-reverse;
        justify-content:flex-start;
        align-items:center;
    }
    
    .pellete-form-page .product .product-about-left{
        margin-top: 2rem;
        text-align: center;
        display: flex;
        flex-direction:column;
        align-items:center;
    }
    
}


@media (max-width:575px){
    .amount {
        display: flex;
        justify-content: center;
    }
    
    .pellete-form label{
        text-align: center;
    }
    
    .pellete-form .btn{
        padding: 1.3rem 1rem;
    }
    
    .pellete-form {
        width: 100%;
        justify-content: center;
    }
    
}

.service .imgBox{
        background-position: 50% 100% !important;
}
.product-about-left .btn{
        width: 300px;
    margin-top: 35px;
    font-size: 2rem;
    padding: 1.7rem 2rem;
}

.list-category-product{
        padding-bottom: 150px;
    margin-bottom: -150px;
}
.svg-box svg {
    width: 100%;
}
.map-box {
	width: 100%;
	z-index: 2;
	max-width: 854px;
}
.map-box svg {
	width: 100%;
	height: 100%;
}
.regoins .img-box {
    z-index: 1;
}
#footer {
    z-index: 15;
}
@media (max-width: 768px) {
    .map-box {
		width: 100%;
		height: 100%;
	}
}




/* аудит 27.03.24 */
.header-contact{
    padding-top: 0;
}

.category .name{
    min-height: 80px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.category .price span{
    height: 40px;
}

.category .price.price--hide{
    opacity: 0;
    visibility: hidden;
}

.section-photo{
    padding: 3rem 1.5rem;
}

.SliderItem .slick-dots{
    max-width: 210px;
    width: 100%;
}

.CaruselItem .item{
    display: flex;
    flex-direction: column;
   
    
}

.item .item-content{
    display: flex;
    flex-direction: column;
     margin-top: auto;
    height: 100%;
}

.SliderItem .slick-slide div div > a{
    display: block;
    width: 100%;
}

.SliderItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item .item-data{
    margin-top: auto;
}

.item .name{
    font-size: 2.8rem;
}

.CaruselItem .item .name{
    min-height: 65px;
    
} 

.section-regoins{
    overflow: hidden;
}

.regoins .img-box{
    bottom: 0;
    top: auto;
}

.list-photo .image-zoom{
    height: 230px;
}

.list-photo .image-zoom img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column{
    align-items: flex-start;
}

/* .column .column-right{
    position: sticky;
    top: 100px;
} */

.img-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content{
    padding-top: 20px !important;
}

@media(max-width: 1400px) {
    .category .name{
        min-height: 60px;
    }
    
    .CaruselItem .item{
        min-height: 540px;
    }
}

@media(max-width: 1200px) {
    .regoins .img-box{
        width: 75rem;
    }
}

@media only screen and (max-width: 991px){
    .slide-new{
        padding-top: 20rem !important;
    }
    
    #map{
        height: 500px;
    }
    
    .secton-contact{
        min-height: fit-content;
    }
    
    .news .name{
        font-size: 18px;
        line-height: 1.2;
    }
}

@media(max-width: 991px) {
    
    .sitebar{
        display: none;
    }
    
    .header-phone{
        font-size: 18px;
    }
    
    .item .name{
        font-size: 2.2rem;
    }
    
    .category .name{
        min-height: 80px;
    }
    
    .section-photo h2{
        font-size: 4.8rem;
    }
    
    .list-photo.row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .list-photo.row li.col-md-4 {
        max-width: 100%;
    }
}

@media(max-width: 768px) {
    .category .name{
        min-height: fit-content;
    }
    
    .news .name{
        font-size: 16px;
        line-height: 1.2;
    }
    
    .category .imgBox{
        background-position: bottom center !important;
    }
    
    .section-callback-right{
        width: 100%;
    }
    
    .section-callback p{
        line-height: 1.2;
    }
    
    .section-top-content .title{
        font-size: 4rem;
    }
    
    .section-top-content p{
        font-size: 3.4rem;
    }
    
    .item .name{
        font-size: 2.4rem;
    }
    
    .CaruselItem .item{
        min-height: 625px;
    }
    
    .regoins .sub{
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px){
    #map{
        height: 50rem !important;
    }
    
    .cart-page h2{
        font-size: 30px;
    }
}

@media only screen and (max-width: 575px){
    .CaruselItem .item{
        min-height: 550px;
    }
    
    .card-data li{
        text-align: left !important;
    }
    
    .CaruselItem .item .name{
        min-height: 55px;
    }
    
    .btn.btn-large{
        font-size: 16px !important;
    }
    
    .news .img-box{
        height: 260px;
    }
    
    .news .img-box img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .section-photo h2{
        font-size: 3rem;
    }
    
    .CaruselItem .item .name{
        font-size: 2.4rem;
    }
    
    .list-photo .image-zoom{
        height: 180px;
    }
    
    blockquote{
        padding: 30px 40px;
        font-size: 18px;
    }
    
    blockquote::before{
        bottom: 0;
        right: 0;
        font-size: 4rem;
    }
    
    blockquote::after{
        top: 0;
        left: 0;
        font-size: 4rem;
    }
}
.map__block{
    max-width: 70rem;
}

/*.hero__slide{
    position: relative;
    padding: 20px;
    border-radius: 20px;
    height: 450px;
    overflow: hidden;
}
.hero__slide-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero__content{
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 711px;
    border-radius: 20px;
    padding: 40px 40px 80px;
    background: rgba(250, 245, 241, 0.85);
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}
.hero__content-title{
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
    color: #302C29;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}
.hero__content-desc{
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    margin-bottom: 0;
}
.hero__content-text{
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    margin-bottom: 20px;
}
.btn-red{
    background: #D64E47;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0px 11.43px 34.3px 0px #D64E474D;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.05em;
    padding: 20px 0;
    width: 100%;
    max-width: 280px;
    text-decoration: unset;
}
.hero{
    margin-top: 40px;
    position: relative;
}
.hero::before{
    content: '';
    background: #EDE6E0;
    height: 100vh;
    width: calc(100% + 30px);
    position: absolute;
    bottom: 0;
    left: -15px;
    pointer-events: none;
}
.hero .slick-dots{
    position: absolute;
    bottom: 60px;
    left: 60px;
}
.hero__content-bottom{
    padding-top: 20px;
    border-top: 1px solid #DCCCBF;
}
.hero__content-btn .icon-arrow-long{
    width: 15px;
    height: 9px;
    margin-left: 0;
}
.hero__content-btn .icon-arrow-long::before{
    line-height: 0.6em;
}
@media(max-width: 768px){
    .hero__slide-img{
        object-fit: cover;
    }
}
@media(max-width: 575px){
    .hero .slick-dots{
        left: 30px;
        bottom: 40px;
    }
    .hero__content{
        padding: 20px;
    }
    .btn-red{
        padding: 12px 0;
        max-width: 240px;
    }
    .hero__content-desc,.hero__content-title,.hero__content-text{
        -webkit-line-clamp: unset;
    }
    .hero__content-title{
        font-size: 25px;
    }
    .hero .slick-dots{
        position: unset;
        margin-top: 10px;
    }
    .hero__slide{
        height: 100%;
    }
    .hero__content-text{
        font-size: 16px;
    }
}*/

/*  */


.slick-dots >li {
    padding-left: 5px;
    padding-right: 5px;
    
}

.slick-dots >li button {
    width: 6px;
    height: 6px;
    background-color: #e2d6cd;
    border: none;
}

.slick-dots >li.slick-active button {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #d64e47;
    background-color: transparent;
    box-shadow: none;
}

.slick-dots >li.slick-active button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d64e47;
    content: "";
}

.slick-dots {
    align-items: center;
}

.hero {
    margin-top: 40px;
    font-family: "Museo Sans Cyrl", sans-serif;
}

.hero__slide {
    border-radius: 10px;
    background-color: #f5f1ee;
    overflow: hidden;
}

.hero__wrapper {
    display: flex;
}

.hero__content {
    display: flex;
}

.hero__content-title {
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #302c29;
}

.hero__content-desc {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #302c29;
}

.hero__content-top {
    position: relative;
    max-width: 470px;
    padding: 30px 60px 49px 40px;
}

.hero__content-top:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 90px;
    background-color: #ebe4dd;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero__content-bottom {
    padding: 30px 0 49px 60px;
}

.hero__content-text {
    margin-bottom: 7px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #302c29;
}

.hero__content-btn {
    justify-content: flex-start;
    padding-left: 0;
    background: transparent;
    border: none;
    color: #d64e47;
}

.hero__content-btn:hover {
    background: transparent;
    opacity: 0.6;
}

.hero__slide-img {
    height: 100%;
}

.slick-dots {
    position: absolute;
    left: 40px;
    bottom: 30px;
    justify-content: flex-start;
}

@media (max-width: 1200px) {
    .hero__content-title {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .hero__content-top {
        padding: 10px 15px 30px 15px;
    }
    
    .hero__content-bottom {
        padding: 10px 0 30px 15px;
    }
    
    .hero__content-text {
        font-size: 12px;
    }
    
    .slick-dots {
        left: 10px;
        bottom: 10px;
    }
    
    .hero__content-desc {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero__content {
        padding: 0 0 25px 25px;
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .hero__content-top,
    .hero__content-bottom {
        padding: 0 25px 0 0;
        max-width: 100%;
        text-align: right;
    }
    
    .hero__content-top:before {
        display: none;
    }
    
    .hero__content picture {
        order: -1;
    }
    
    .hero__slide-img {
        width: 100%;
        height: auto;
    }
    
    .hero__content-btn {
        justify-content: flex-end;
        padding-right: 0;
    }
    
    .slick-dots {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Новая карта */

.contacts-page__map {
    position: relative;
    left: -15px;
    right: -15px;
    width: calc(100% + 30px);
}

#map {
    height: 964px;
}

.contact-page__address {
    opacity: 0.4;
}

.contact-page__address.active {
    opacity: 1;
}

.contact-page__balloon {
    display: none;
}

.contact-page__balloon.active {
    display: block;
}

.contact-page__addresses {
    position: absolute;
    top: 7.29vw;
    left: 12.45vw;
    z-index: 3000;
}

.contact-page__balloons {
    position: absolute;
    top: 7.29vw;
    right: 12.45vw; 
    z-index: 3000;
}

.contact-page__addresses {
    border-radius: 20px;
    box-shadow: 0 30px 100px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    padding: 42px;
    max-width: 437px;
}

.contact-page__balloon {
    padding: 20px;
    max-width: 437px;
    border-radius: 20px;
    box-shadow: 0 30px 100px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

.contact-page__address {
    position: relative;
    transition: .3s ease;
}

.contact-page__address:hover {
    opacity: 1;
}

.ymaps-2-1-79-controls__control {
    
}

.contact-address__btn {
    font-weight: 600;
    font-size: 29px;
    line-height: 120%;
    color: #302c29;
    background: transparent;
    border: none;
    width: 100%;
    text-align: start;
    transition: .3s ease;
    cursor: pointer;
}

.contact-address__btn:hover {
    color: #d64e47;
}

.contact-address__btn span {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #979797;
}

.contact-page__address:not(:last-child) {
    padding-bottom: 37px;
    margin-bottom: 37px;
}

.contact-page__address:not(:last-child):before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-image: url("data:image/svg+xml,%3Csvg width='354' height='2' viewBox='0 0 354 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1H354' stroke='%23CCCCCC' stroke-dasharray='6 6' /%3E%3C/svg%3E");
    content: "";
}

.contact-balloon__image {
    border-radius: 20px;
    width: 100%;
    height: 280px;
    margin-bottom: 33px;
}

.contact-balloon__image img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-balloon__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    color: #302c29;
    margin-bottom: 16px;
}

.contact-balloon__title span {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #979797;
}

.contact-balloon__address {
    font-style: normal;
}

.contact-balloon__info {
    display: block;
    padding-left: 21px;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #302c29;
    background-repeat: no-repeat;
    background-position: 0 4px;
    margin-bottom: 20px;
}

.contact-balloon__info--address {
    font-style: normal;
    background-image: url("/templates/img/contacts/address.png")
}

.contact-balloon__info--links {
    display: flex;
    gap: 5px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='18' viewBox='0 0 13 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5821 17.6L10.5825 17.6C11.4072 17.5964 12.1 16.9883 12.1 16.2157V2.2809C12.1 1.51202 11.4113 0.9 10.5821 0.9H2.41791C1.59281 0.9 0.9 1.50833 0.9 2.2809V16.2191C0.9 16.988 1.58872 17.6 2.41791 17.6H10.5821ZM2.01418 4.06966H10.9821V13.2472H2.01418V4.06966ZM2.41791 1.92584H10.5821C10.8133 1.92584 10.9858 2.09309 10.9858 2.2809V3.04382H2.01418V2.2809C2.01418 2.09309 2.18671 1.92584 2.41791 1.92584ZM2.01418 16.2157V14.2697H10.9821V16.2157C10.9821 16.4011 10.8123 16.5708 10.5784 16.5708H2.41791C2.18671 16.5708 2.01418 16.4035 2.01418 16.2157Z' fill='%23D64E47' stroke='%23D64E47' stroke-width='0.2' /%3E%3Cpath d='M7.29349 15.2027H5.70394C5.43528 15.2027 5.21055 15.4121 5.21055 15.6797C5.21055 15.9473 5.43528 16.1567 5.70394 16.1567H7.29349C7.56214 16.1567 7.78688 15.9473 7.78688 15.6797C7.78688 15.4121 7.56214 15.2027 7.29349 15.2027Z' fill='%23D64E47' stroke='%23D64E47' stroke-width='0.2' /%3E%3C/svg%3E");
}

.contact-balloon__info--links a {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: #302c29;
    text-decoration: none;
}

.contact-balloon__info--schedule {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 15C4.14005 15 1 11.86 1 8C1 4.14005 4.14005 1 8 1C11.86 1 15 4.14005 15 8C15 11.86 11.86 15 8 15ZM8 1.875C4.62251 1.875 1.875 4.62251 1.875 8C1.875 11.3775 4.62251 14.125 8 14.125C11.3775 14.125 14.125 11.3775 14.125 8C14.125 4.62251 11.3775 1.875 8 1.875Z' fill='%23D64E47' stroke='%23D64E47' stroke-width='0.4' /%3E%3Cpath d='M11.0625 11.7917C10.9505 11.7917 10.8385 11.749 10.7533 11.6633L7.69078 8.60077C7.60854 8.51852 7.5625 8.40712 7.5625 8.29166V4.20825C7.5625 3.96675 7.7585 3.77075 8 3.77075C8.2415 3.77075 8.4375 3.96675 8.4375 4.20825V8.11018L11.3717 11.0444C11.5426 11.2153 11.5426 11.4924 11.3717 11.6633C11.2865 11.749 11.1745 11.7917 11.0625 11.7917Z' fill='%23D64E47' stroke='%23D64E47' stroke-width='0.4' /%3E%3C/svg%3E");
}

.contact-balloon__info--mail {
    text-decoration: none;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.0875 10.719V3.168L7.09459 8.37415L7.0947 8.37425C7.21124 8.47505 7.35579 8.52524 7.5 8.52524C7.64418 8.52524 7.78875 8.4751 7.90532 8.37423L7.90541 8.37415L13.9125 3.168V10.719C13.9125 10.719 13.9125 10.719 13.9125 10.719C13.9125 10.8948 13.7695 11.0377 13.5937 11.0377H1.40626C1.23046 11.0377 1.0875 10.8948 1.0875 10.719ZM13.5937 0.725244H1.40626C0.547958 0.725244 -0.15 1.4232 -0.15 2.2815V10.719C-0.15 11.5773 0.547958 12.2753 1.40626 12.2753H13.5937C14.452 12.2753 15.15 11.5773 15.15 10.719V2.2815C15.15 1.4232 14.452 0.725244 13.5937 0.725244ZM13.4132 1.96274L7.5 7.08773L1.58679 1.96274H13.4132Z' fill='%23D64E47' stroke='%23D64E47' stroke-width='0.3' /%3E%3C/svg%3E");
}

.contact-balloon__gallery {
    display: flex;
    gap: 16px;
    margin: 0;
    list-style: none;
}

.contact-ballon__photo {
    padding: 0;
    border-radius: 10px;
    width: 100%;
    height: 85px;
}

.contact-ballon__photo img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .contact-page__addresses {
        top: 50px;
        left: 50px;
    }
    
    .contact-page__balloons {
        top: 50px;
        right: 50px;
    }
}

@media (max-width: 1200px) {
    #map {
        height: 100vh;
    }
    
    .contact-page__addresses {
        padding: 20px;
        max-width: 350px;
    }
    
    .contact-address__btn,
    .contact-balloon__title {
        font-size: 18px;
    }
    
    .contact-balloon__info,
    .contact-balloon__info--links a {
        font-size: 14px;
    }
    
    .contact-balloon__image {
        height: 200px;
    }
    
    .contact-page__balloon {
        max-width: 350px;
    }
    
    .contact-page__address:not(:last-child) {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .contact-balloon__image {
        margin-bottom: 10px;
    }
    
    .contact-balloon__gallery {
        gap: 10px;
    }
    
    .contact-balloon__info {
        margin-bottom: 10px;
        background-position: 0 0;
    }
    
    .contact-ballon__photo {
        height: 60px;
    }
}

@media (max-width: 992px) {
    .contact-page__addresses {
        top: -70px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-page {
        margin-top: 100px;
    }
    
    .contact-page__balloons {
        top: 100px;
        right: 20px;
    }
    
    .contact-page__balloon {
        max-width: 200px;
        padding: 10px;
    }
    
    .contact-balloon__image {
        height: 120px;
    }
    
    .contact-balloon__title {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .contact-balloon__title span {
        font-size: 10px;
    }
    
    .contact-balloon__info,
    .contact-balloon__info--links a{
        font-size: 10px;
    }
    
    .contact-balloon__gallery {
        display: none;
    }
    
    .contact-balloon__info--links svg {
        width: 15px;
        height: 15px;
    }
    
    .contact-page__address:not(:last-child) {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .contact-page__addresses {
        padding: 10px;
    }
    
    .contact-address__btn {
        font-size: 14px;
    }
    
    .contact-address__btn span {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        margin-top: 20px;
    }
    
    .contact-page__addresses {
        position: static;
        width: 100%;
        margin: 0 auto 20px;
        transform: none;
    }
    
    .contact-page__balloons {
        top: 140px;
        right: 0;
    }
    
    .contact-balloon__image {
        display: none;
    }
}

.content.content--main {
    padding-bottom: 0;
}

a[href="akciya/"] ~ .menu-drop {
    display: none;
}