/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.show-tablet {
    display: none;
}

@media only screen and (max-width: 991px) {
    .show-tablet {
        display: block;
    }
}

.hide-tablet {
    display: block;
}

@media only screen and (max-width: 991px) {
    .hide-tablet {
        display: none;
    }
}

.show-mob {
    display: none;
}

@media only screen and (max-width: 767px) {
    .show-mob {
        display: block;
    }
}

.hide-mob {
    display: block;
}

@media only screen and (max-width: 767px) {
    .hide-mob {
        display: none;
    }
}

.transition {
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-size: 16px !important;
    font-family: "PT Sans", sans-serif !important;
    background: #fff;
    overflow-x: hidden;
    color: #333 !important;
    line-height: 1.4 !important;
}

.narrow {
    font-family: "PT Sans Narrow", sans-serif !important;
}

.container-fluid {
    max-width: 1204px;
    margin-left: auto;
    margin-right: auto;
}

.head {
    background: url('../img/head.png') center top no-repeat;
    min-height: 188px;
    background-size: 100% 185px;
}

.head .container-fluid {
    max-width: 1084px;
}

.head-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0px;
}

.head-right {
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    border-radius: 0px 0px 4px 4px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .head-right {
        box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
        margin-bottom: 30px;
    }
}

.head-right-top {
    padding: 15px 25px;
    border-bottom: 5px solid #C91A1A;
}

@media only screen and (max-width: 767px) {
    .head-right-top {
        border-bottom: none;
    }
}

@media only screen and (max-width: 767px) {
    .head-phone-wrap {
      display: block !important;
    }
}

.head-phone-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.btn-mob {
    font-size: 25px;
    color: #C91A1A;
    font-weight: bold;
    display: none;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(181, 181, 181, 1);
    border-radius: 5px;
    width: 27px;
    height: 27px;
}

.head-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #808080 !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 20px;
}

.head-phone i {
    font-style: normal;
}

@media only screen and (max-width: 767px) {
    .head-phone {
        font-size: 14px;
        text-align: center;
        margin: 0 auto;
        font-size: 15px;
    }
}

.mob-close {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.mob-close:hover {
    opacity: 0.75;
}

.mob-menu {
    position: fixed;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    left: -100%;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 30px;
}

.mob-menu a {
    color: #fff !important;
    display: block;
    text-align: center;
    text-decoration: none !important;
    margin-top: 20px;
    font-size: 24px;
    font-weight: 300;
}

.mob-menu a:hover {
    opacity: 0.75;
}

.mob-menu.on {
    left: 0%;
}

.menu {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 18px;
    margin-top: 5px;
    color: #333 !important;
    text-decoration: none !important;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.menu-item:hover {
    color: #C91A1A !important;
}

@media only screen and (max-width: 767px) {
    .menu{
        margin: 0;
    }

    .menu-item {
        display: none;
        gap: 0;
        font-size: 14px;
    }

    .head-right-top{
        padding: 10px;
    }

    .menu-item:nth-child(1) {
        display: flex;
    }

    .menu-item:nth-child(2) {
        display: flex;
    }

    .head-left a img{
        width: 58px;
    }

    .btn-mob{
        display: flex;
    }

    .catalog-title {
        margin: 0 0 30px 0 !important;
    }

    .head-right{
        border-bottom: 3px solid #C91A1A;
        padding: 7px 7px 3px 7px;
    }

    .head-right-top{
        padding: 0;
    }
}

.black {
    color: #333 !important;
}

.crumbs {
    display: flex;
    align-items: center;
    padding: 0px 25px;
    padding-left: 0;
    text-transform: uppercase;
    font-size: 15px;
}

.crumbs a {
    text-decoration: none !important;
    color: #333 !important;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.crumbs a:hover {
    color: #CC2B2F !important;
}

.crumbs a.on {
    color: #fff !important;
    background: #CC2B2F;
}

.crumbs b {
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 20px;
}

.crumbs img {
    display: none;
}

.crumbs div {
    background: #333;
    color: #fff;
    padding-left: 45px;
}

.crumbs a,
.crumbs div {
    padding: 0px 25px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crumbs a:first-child,
.crumbs div:first-child {
    padding-left: 25px;
}

.crumbs img {
    margin-right: 30px;
}

@media only screen and (max-width: 767px) {
    .crumbs {
        padding-right: 0;
        flex-direction: column;
        border-top: 2px solid #CC2B2F;
    }

    .crumbs div {
        display: none;
    }

    .crumbs a,
    .crumbs div {
        width: 100%;
    }
}

.section {
    padding: 100px 0;
}

@media only screen and (max-width: 767px) {
    .section {
        padding: 45px 0;
    }
}

.big {
    padding-top: 0;
    top: -50px;
}

.big .container-fluid {
    max-width: 1084px;
}

.big-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.product-menu {
    display: flex;
    flex-direction: row;
    text-align: center;
    gap: 17px;
    justify-content: space-between;
    padding-left: 0 !important;
}

.product-menu li {
    width: 33.33%;
    list-style-type: none;
}

.product-menu li a {
    display: block;
    list-style-type: none;
    background: #ECECEB;
    color: #3B3B3B;
    height: 50px;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 5px 0px #C91A1A;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
}

.product-menu li a.active {
    background: #606060;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .product-menu {
        flex-direction: column;
    }

    .product-menu li {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .big-inner {
        flex-direction: column;
    }
}

.big-left {
    flex: 380px;
    flex-shrink: 0;
    flex-grow: 0;
}

@media only screen and (max-width: 767px) {
    .big-left {
        flex: auto;
        text-align: center;
    }
}

.prod-title {
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: bold;
    font-size: 60px;
    line-height: 1;
}

.prod-subtitle {
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: bold;
    color: #797979;
    font-size: 32px;
}

@media only screen and (max-width: 767px) {
    .prod-subtitle {
        font-size: 24px;
        margin-top: 15px;
    }
}

.prod-buy-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 290px;
}

.prod-buy {
    width: 290px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-transform: uppercase;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: bold;
    font-size: 23px;
    text-decoration: none !important;
    border-radius: 10px;
    background: #CC2B2F;
    border-bottom: 5px solid #a22225;
    margin-top: 45px;
}

.prod-buy:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

.prod-skid, .category-skid {
    width: 141px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background: #FFF500;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: bold;
    margin-top: 30px;
}

.category-skid{
    margin: 0;
    font-weight: 700;
    position: absolute;
    top: 0;
}

.prod-price {
    color: #FF0000;
    font-weight: bold;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 48px;
}

.prod-oldprice {
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 36px;
    color: #717171;
    text-decoration: line-through;
}


.category-oldprice {
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 26px;
    color: #717171;
    text-decoration: line-through;
    text-align: center;
}

.prod-skid-info {
    font-family: "PT Sans Narrow", sans-serif !important;
    color: #717171;
    text-align: center;
}

.big-right {
    width: 100%;
    display: flex;
    justify-content: center;
}

.prod-pic {
    position: relative;
    top: -50px;
}

/* .osob-inner{
    padding-bottom: 120px !important;
}

.footer-inner{
    padding: 75px 0px !important;
} */

@media only screen and (max-width: 767px) {
    .prod-pic {
        position: static;
    }

    .prod-pic img {
        max-width: 100%;
        height: auto;
    }
}

.ben {
    padding-top: 24px;
}

.ben-items {
    display: flex;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .ben-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }
}

.ben-item {
    width: 100%;
}

.ben-item-pic img {
    width: 100%;
    height: auto;
}

.ben-item-title {
    background: #E6E6E6;
    padding: 15px;
    line-height: 1.2;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .ben-item-title {
        padding: 10px;
        min-height: 85px;
    }
}

.desc {
    padding-top: 0px;
}

.desc-inner {
    font-size: 18px;
}

.desc-inner h2 {
    text-align: center;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 30px;
    margin-top: 0;
}

.vid {
    background: #E8E8E8;
}

.section-title {
    text-transform: uppercase;
    font-size: 30px;
    font-family: "PT Sans Narrow", sans-serif !important;
    margin-bottom: 30px;
    text-align: center;
}

.vid-title {
    text-transform: uppercase;
    font-size: 30px;
    font-family: "PT Sans Narrow", sans-serif !important;
    margin-bottom: 30px;
    text-align: center;
}

.vid-slider {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .vid-slider img {
        max-width: 100%;
        height: auto;
    }
}

.vid-360 {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .vid-360 img {
        max-width: 100%;
        height: auto;
    }
}

.vid-handle {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .vid-handle img {
        max-width: 100%;
        height: auto;
    }
}

.color-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

@media only screen and (max-width: 767px) {
    .color-inner {
        flex-direction: column;
        gap: 30px;
    }
}

.color-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.color-title {
    font-size: 18px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .prod-color img {
        max-width: 100%;
        height: auto;
    }
}

.osob {
    background: #E8E8E8;
}

.osob-title {
    text-transform: uppercase;
    font-size: 30px;
    font-family: "PT Sans Narrow", sans-serif !important;
    margin-bottom: 30px;
    text-align: center;
}

.osob-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

@media only screen and (max-width: 767px) {
    .osob-top {
        flex-direction: column;
        gap: 30px;
    }
}

.osob-pic .osob-pic-inner {
    position: relative;
}

.osob-pic .osob-pic-inner a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin: -13px 0 0 -13px;
    width: 26px;
    height: 26px;
    border-radius: 26px;
    text-align: center;
    background-color: #fff;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 20px;
    line-height: 24px;
    color: #000 !important;
    text-decoration: none !important;
    -webkit-box-shadow: 0 2px 2px rgb(0 0 0%);
    box-shadow: 0 2px 2px rgb(0 0 0%);
    -webkit-background-clip: padding-box;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.osob-pic .osob-pic-inner a:hover {
    background-color: #C22E2E;
    color: #fff !important;
    text-decoration: none;
}

.osob-pic .osob-pic-inner:first-child {
    display: block;
}

.osob-pic .osob-pic-inner:last-child {
    display: none;
}

.osob-pic.on .osob-pic-inner:first-child {
    display: none;
}

.osob-pic.on .osob-pic-inner:last-child {
    display: block;
}

@media only screen and (max-width: 767px) {
    .osob-pic img {
        max-width: 100%;
        height: auto;
    }
}

.osob-sel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
}

.osob-sel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
}

.osob-sel-item img {
    border-radius: 100%;
    border: 4px solid transparent;
}

.osob-sel-item.on img {
    border: 4px solid #666;
}

.osob-info {
    text-align: center;
    font-size: 18px;
    margin: 30px 0;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.osob-buy {
    width: 290px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-transform: uppercase;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: bold;
    font-size: 23px;
    text-decoration: none !important;
    border-radius: 10px;
    background: #CC2B2F;
    border-bottom: 5px solid #a22225;
    margin-top: 45px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}

.osob-buy:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

.osob-blocks {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

@media only screen and (max-width: 767px) {
    .osob-blocks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }
}

.osob-block {
    margin-bottom: 30px;
}

.osob-block-pic img {
    display: block;
    width: 100%;
    height: auto;
}

.osob-block-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .osob-block-info {
        gap: 15px;
        margin-top: 15px;
    }
}

.osob-block-num {
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 54px;
    line-height: 0.8;
}

@media only screen and (max-width: 767px) {
    .osob-block-num {
        font-size: 32px;
    }
}

.osob-block-content-title {
    font-weight: bold;
    font-size: 18px;
}

.osob-block-content-text {
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .osob-block-content-text {
        font-size: 12px;
    }
}

.osob-buy2 {
    width: 290px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-transform: uppercase;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: bold;
    font-size: 23px;
    text-decoration: none !important;
    border-radius: 10px;
    background: #CC2B2F;
    border-bottom: 5px solid #a22225;
    margin-top: 45px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.osob-buy2:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

.ofert-inner {
    font-size: 13px;
    padding: 15px 0;
}

.fz30 {
    font-size: 30px;
}

.textpage-inner {
    padding: 30px 0;
    font-size: 18px;
    overflow: auto;
}

.textpage-inner p {
    margin: 15px 0;
}

.textpage-inner .fz30 {
    font-family: "PT Sans Narrow", sans-serif !important;
}

.bigslider-wrapper {
    position: relative;
}

.bigslider-prev {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 100;
}

.bigslider-prev:hover {
    opacity: 0.5;
}

.bigslider-next {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 100;
}

.bigslider-next:hover {
    opacity: 0.5;
}

.bigslide img {
    display: block;
    width: 100%;
    height: auto;
}

.bigpic img {
    display: block;
    width: 100%;
    height: auto;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "PT Sans Narrow", sans-serif !important;
    gap: 15px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .page-title {
        font-size: 30px;
        flex-direction: column;
        text-align: center;
    }
}

.contact {
    padding: 100px 0;
    background: #F2F2F2;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .contact {
        padding: 45px 0;
    }
}

.contact-title {
    text-transform: uppercase;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 30px;
    margin: 30px 0;
}

.contact-phone {
    font-weight: bold;
    text-align: center;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-size: 40px;
    color: #CC2F2F;
}

.soc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.soc a {
    display: block;
}

.soc a img {
    width: 100%;
    height: auto;
}

.docs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
    padding: 100px 0;
    padding-top: 50px;
}

@media only screen and (max-width: 767px) {
    .docs {
        padding: 45px 0;
    }
}

@media only screen and (max-width: 767px) {
    .docs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

.doc {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 17px;
}

.doc:hover {
    text-decoration: underline !important;
}

@media only screen and (max-width: 767px) {
    .doc {
        flex-direction: column;
        text-align: center;
        font-size: 14px;
    }
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #dddddd;
    }

    .table-responsive table {
        min-width: 800px;
    }
}

.table {
    font-size: 17px;
}

.table th,
.table td,
.table>tbody>tr>td {
    text-align: center;
    border-top: 1px solid #B3B3B3;
    line-height: 1.2;
}

.table tr:first-child th {
    border-top: none;
}

.table th {
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: normal;
    font-size: 21px;
    background-color: #f2f2f2;
}

.table tr td:first-child,
.table tr th:first-child {
    text-align: right;
    width: 300px;
}

table.table2 {
    font-size: 17px;
    border-bottom: 1px solid #B3B3B3;
}

table.table2 td,
table.table2 th {
    padding: 5px;
    border-top: 1px solid #B3B3B3;
}

.color-red {
    color: #CC2F2F;
}

.note {
    font-size: 13px;
    line-height: 1.2;
    text-align: left;
    margin: 17px 0 20px;
    padding-left: 5px;
    color: #4d4d4d;
}

.pb30 {
    padding-bottom: 30px !important;
}

.pt60 {
    padding-top: 60px !important;
}

.pb60 {
    padding-bottom: 60px !important;
}

.flex {
    display: flex;
}

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

.justify-center {
    justify-content: center;
}

.mt0 {
    margin-top: 0 !important;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 30px;
    min-height: 300px;
}

.row-small{
    min-height: 150px ;
}

@media only screen and (max-width: 767px) {
    .gallery-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .gallery_small{
        height: 245px;
    }
}

.gallery-big {
    display: block;
    background-size: cover;
    background-position: center center;
}

.gallery-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

@media only screen and (max-width: 767px) {
    .gallery-four {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.gallery-small {
    height: 100%;
    background-size: cover;
    background-position: center center;
}

@media only screen and (max-width: 767px) {
    .gallery-small {
        height: 245px;
    }
}

.oform {
    padding-right: 230px;
    margin-top: 60px;
}

@media only screen and (max-width: 767px) {
    .oform {
        padding-right: 0;
    }

    .oform form>p {
        display: none;
    }
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    align-items: flex-end;
}

@media only screen and (max-width: 767px) {
    .form-row {
        display: block;
    }
}

.form-label {
    flex: 200px;
    text-align: right;
    font-weight: bold;
    display: flex;
    min-height: 35px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    line-height: 1.2;
}

@media only screen and (max-width: 767px) {
    .form-label {
        justify-content: center;
        text-align: center;
        margin-bottom: 15px;
        min-height: 0;
    }

    .form-label br {
        display: none;
    }
}

.form-input {
    flex: 380px;
}

.form-input input,
.form-input textarea {
    width: 100%;
    padding: 0 15px;
    border: 1px solid #ccc;
    height: 35px;
    font-size: 14px;
}

.form-input textarea {
    padding: 15px;
    height: 155px;
}

.form-input p {
    margin-bottom: 15px;
    margin-top: 0;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #B52222;
    width: 200px;
    height: 35px;
    border: none;
    font-family: "PT Sans Narrow", sans-serif !important;
    color: #fff;
    font-size: 18px;
}

.form-submit:hover {
    background: #000;
}

.soglasen {
    display: flex;
    gap: 15px;
}

.soglasen input {
    width: 16px;
    height: 16px;
    margin-top: 5px;
}

.soglasen a {
    color: #B52222 !important;
    text-decoration: none;
}

.soglasen a:hover {
    text-decoration: underline;
}

.thanks {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 888;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    display: none;
}

.thanks.on {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-inner {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.35);
    position: relative;
    padding: 60px;
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .thanks-inner {
        padding: 30px;
    }
}

.thanks-close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.thanks-title {
    text-align: center;
    font-size: 24px;
    font-family: "PT Sans Narrow", sans-serif !important;
    font-weight: bold;
}

.thanks-text {
    text-align: center;
    font-size: 24px;
    font-family: "PT Sans Narrow", sans-serif !important;
    margin-top: 20px;
}

.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: cover;
}

.footer-text {
    margin: 60px 0;
    max-width: 850px;
    font-size: 13px;
}

.footer-text p,
.footer-text a {
    color: #999999 !important;
    margin: 20px 0;
}

.footer-text a {
    text-decoration: underline;
}

.footer-text a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .footer-text {
        margin: 30px 0;
    }
}

.footer-phone {
    display: flex;
    align-items: center;
    color: #8E8E8E !important;
    text-decoration: none !important;
    font-size: 32px;
    font-weight: bold;
    gap: 15px;
}

/*  Страница каталога  */

.catalog-title {
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 70px 0;
}

.catalog-inner {
    display: flex;
    flex-direction: row;
    gap: 27px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 100px;
    font-family: "PT Sans Narrow", sans-serif !important;
}

.catalog-inner a {
    text-decoration: none;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 31%;
    background: #fff;
    box-shadow: 0px 5.36px 40.23px 0px #00000026;
    border-radius: 7px;
    padding: 15px 0;
    position: relative;
}

.catalog-item-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.catalog-item-img img {
    max-width: 150px;
}

.catalog-item-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog-item-title {
    font-size: 20px;
    font-weight: bold;
    color: #4D4D4D;
    text-align: center;
}

.catalog-item-price {
    text-align: center;
    font-size: 26px;
    color: #000;
}

.catalog-item-sale {
    text-align: center;
    font-size: 26px;
    text-decoration: line-through;
    color: #8F8F8F;
}

.catalog-item-promo {
    width: 150px;
    height: 25px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: #FFF500;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .catalog-item {
        width: 48%;
    }

    .catalog-inner {
        justify-content: center;
    }

}

@media (max-width: 840px) {
    .catalog-item {
        width: 100%;
    }

    .catalog-inner {
        flex-direction: column;
        align-items: center;
    }

    .catalog-item-content {
        justify-content: center;
    }

}




.copyright {
    background: #262626;
}

.copyright-inner {
    color: #fff;
    padding: 15px 0;
    font-size: 15px;
}

* {
    outline: none !important;
}

.dark:hover {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
}

.bright:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    opacity: 0;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

::-webkit-input-placeholder {
    color: #aaa;
    opacity: 1;
}

:-moz-placeholder {
    color: #aaa;
    opacity: 1;
}

::-moz-placeholder {
    color: #aaa;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #aaa;
    opacity: 1;
}

.modal {
    border-radius: 20px !important;
    font-family: "PT Sans Narrow", sans-serif !important;
}

.order_modal{
    max-width: 626px !important;
    max-height: 551px !important;
}

.order-success{
    max-height: 214px !important;
}


.modal a.close-modal {
    width: 20px !important;
    height: 20px !important;
    top: 23px !important;
    right: 23px !important;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuOTk5MzUgMTQuMTY2Nkw5Ljk5OTM1IDExLjE2NjZMMTIuOTk5MyAxNC4xNjY2TDE0LjE2NiAxM0wxMS4xNjYgOS45OTk5NkwxNC4xNjYgNi45OTk5NkwxMi45OTkzIDUuODMzMjlMOS45OTkzNSA4LjgzMzI5TDYuOTk5MzUgNS44MzMyOUw1LjgzMjY4IDYuOTk5OTZMOC44MzI2OCA5Ljk5OTk2TDUuODMyNjggMTNMNi45OTkzNSAxNC4xNjY2Wk05Ljk5OTM1IDE4LjMzMzNDOC44NDY1NyAxOC4zMzMzIDcuNzYzMjQgMTguMTE0NCA2Ljc0OTM1IDE3LjY3NjZDNS43MzU0NiAxNy4yMzg4IDQuODUzNTIgMTYuNjQ1MiA0LjEwMzUyIDE1Ljg5NThDMy4zNTM1MiAxNS4xNDU4IDIuNzU5OSAxNC4yNjM4IDIuMzIyNjggMTMuMjVDMS44ODU0NiAxMi4yMzYxIDEuNjY2NTcgMTEuMTUyNyAxLjY2NjAyIDkuOTk5OTZDMS42NjYwMiA4Ljg0NzE4IDEuODg0OSA3Ljc2Mzg1IDIuMzIyNjggNi43NDk5NkMyLjc2MDQ2IDUuNzM2MDcgMy4zNTQwNyA0Ljg1NDEzIDQuMTAzNTIgNC4xMDQxM0M0Ljg1MzUyIDMuMzU0MTMgNS43MzU0NiAyLjc2MDUxIDYuNzQ5MzUgMi4zMjMyOUM3Ljc2MzI0IDEuODg2MDcgOC44NDY1NyAxLjY2NzE4IDkuOTk5MzUgMS42NjY2M0MxMS4xNTIxIDEuNjY2NjMgMTIuMjM1NSAxLjg4NTUxIDEzLjI0OTMgMi4zMjMyOUMxNC4yNjMyIDIuNzYxMDcgMTUuMTQ1MiAzLjM1NDY4IDE1Ljg5NTIgNC4xMDQxM0MxNi42NDUyIDQuODU0MTMgMTcuMjM5MSA1LjczNjA3IDE3LjY3NjggNi43NDk5NkMxOC4xMTQ2IDcuNzYzODUgMTguMzMzMiA4Ljg0NzE4IDE4LjMzMjcgOS45OTk5NkMxOC4zMzI3IDExLjE1MjcgMTguMTEzOCAxMi4yMzYxIDE3LjY3NiAxMy4yNUMxNy4yMzgyIDE0LjI2MzggMTYuNjQ0NiAxNS4xNDU4IDE1Ljg5NTIgMTUuODk1OEMxNS4xNDUyIDE2LjY0NTggMTQuMjYzMiAxNy4yMzk3IDEzLjI0OTMgMTcuNjc3NUMxMi4yMzU1IDE4LjExNTIgMTEuMTUyMSAxOC4zMzM4IDkuOTk5MzUgMTguMzMzM1pNOS45OTkzNSAxNi42NjY2QzExLjg2MDUgMTYuNjY2NiAxMy40MzY4IDE2LjAyMDggMTQuNzI4NSAxNC43MjkxQzE2LjAyMDIgMTMuNDM3NSAxNi42NjYgMTEuODYxMSAxNi42NjYgOS45OTk5NkMxNi42NjYgOC4xMzg4NSAxNi4wMjAyIDYuNTYyNDYgMTQuNzI4NSA1LjI3MDc5QzEzLjQzNjggMy45NzkxMyAxMS44NjA1IDMuMzMzMjkgOS45OTkzNSAzLjMzMzI5QzguMTM4MjQgMy4zMzMyOSA2LjU2MTg1IDMuOTc5MTMgNS4yNzAxOCA1LjI3MDc5QzMuOTc4NTIgNi41NjI0NiAzLjMzMjY4IDguMTM4ODUgMy4zMzI2OCA5Ljk5OTk2QzMuMzMyNjggMTEuODYxMSAzLjk3ODUyIDEzLjQzNzUgNS4yNzAxOCAxNC43MjkxQzYuNTYxODUgMTYuMDIwOCA4LjEzODI0IDE2LjY2NjYgOS45OTkzNSAxNi42NjY2WiIgZmlsbD0iIzk3OTc5NyIvPgo8L3N2Zz4K") !important;
}



.order_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 365px;
    margin: 25px auto !important;
}

.modal_phone{
    color: #B52222;
}

.order_success_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 365px;
    gap: 30px;
    margin: 36px auto !important;
}

@media screen and (max-width: 797px) {
    .order_success_wrapper .title{
        font-size: 20px !important;
    }

    .order_success_wrapper .desc{
        font-size: 16px !important;
    }

    .desc{
        font-size: 14px !important;
    }

    .agreement{
        font-size: 14px !important;
    }
}

.order_wrapper p {
    padding: 0;
    margin: 0;
}

.order_wrapper .title {
    font-weight: bold;
    font-size: 24px;
    margin: 0 !important;
}

.order_wrapper .desc {
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 20px !important;
}

.order-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px !important;
    max-width: 350px;
}

.order-form [type="text"] {
    width: 100%;
    height: 50px;
    background: #EBEBEB;
    border: 1px solid #D6D6D6;
    font-size: 20px;
    padding: 15px;
    text-align: left;
    letter-spacing: 0.07px;
}


.order-form input::placeholder {
    text-align: left;
    color: #6F6F6F;
    font-size: 20px;
}

.order-form .checkbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    font-family: "PT Sans", sans-serif !important;
}

.order-form .checkbox label {
    font-size: 18px;
    line-height: 20px;
    display: block;
    width: 100%;
}

.order-form .checkbox [type="checkbox"] {
    margin-top: 5px;
    width: 14px;
    height: 14px;
}

.order-form .checkbox label a {
    color: #B52222;
    text-decoration: none;
}

.order-form button,
button:active,
button:focus {
    border: none;
}

.order-form button {
    width: 100%;
    background: #C43131;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    height: 50px;
    text-align: center;
}

.tab-nav {
    display: flex;
    flex-direction: row;
    text-align: center;
    gap: 17px;
    justify-content: center;
    margin: 20px 0;
}

@media screen and (min-width: 797px) and (max-width: 1028px) {
    .tab-nav .tab-link {
        padding: 17px !important;
        font-size: 16px !important;
    }
}

@media screen and (max-width: 797px) {
    .tab-nav {
        flex-direction: column;
        align-items: center
    }

    .tab-nav .tab-link {
        width: 100% !important;
    }

    .catalog-item-price{
        font-size: 22px;
    }

    .category-oldprice{
        font-size: 22px;
    }

    .catalog-item-title{
        font-size: 17px;
    }

    .head{
        background-size: 100% 146px;
        min-height: 140px;
    }
}

.tab-nav .tab-link {
    display: block;
    width: 33.33%;
    background: #ECECEB;
    color: #3B3B3B;
    height: 50px;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 5px 0px #C91A1A;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
}

.tab-link.active {
    background: #606060 !important;
    color: #fff !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.color-color {
    border: 2px solid #e5e7eb;
}

.color-color:hover {
    border: 4px solid #e5e7eb;
}