@font-face {
  font-family: "Roboto"; 
  src: url("../fonts/Roboto-Thin.ttf") format('truetype'); 
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Roboto"; 
  src: url("../fonts/Roboto-ThinItalic.ttf") format('truetype'); 
  font-style: italic;
  font-weight: 100;
}
@font-face {
  font-family: "Roboto"; 
  src: url("../fonts/Roboto-Light.ttf") format('truetype'); 
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Roboto"; 
  src: url("../fonts/Roboto-LightItalic.ttf") format('truetype'); 
  font-style: italic;
  font-weight: 300;
}
@font-face {
  font-family: "Roboto"; 
  src: url("../fonts/Roboto-Regular.ttf") format('truetype'); 
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";  
  src: url("../fonts/Roboto-Italic.ttf") format('truetype');  
  font-style: italic;  
  font-weight: 400;
}
@font-face {
  font-family: "Roboto"; 
  src: url("../fonts/Roboto-Medium.ttf") format('truetype'); 
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";  
  src: url("../fonts/Roboto-MediumItalic.ttf") format('truetype');  
  font-style: italic;  
  font-weight: 500;
}
@font-face {
  font-family: "Roboto"; 
  src: url("../fonts/Roboto-Bold.ttf") format('truetype'); 
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";  
  src: url("../fonts/Roboto-BoldItalic.ttf") format('truetype');  
  font-style: italic;  
  font-weight: 700;
}
@font-face {
  font-family: "Roboto"; 
  src: url("../fonts/Roboto-Black.ttf") format('truetype'); 
  font-style: normal;
  font-weight: 900;
}
@font-face {
  font-family: "Roboto";  
  src: url("../fonts/Roboto-BlackItalic.ttf") format('truetype');  
  font-style: italic;  
  font-weight: 900;
}

*,:after,:before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

html{
  width: 100%;
  overflow-x: hidden;
}

a{
  color: #2F80ED;
  text-decoration: underline;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -webkit-transition: all .3s;
}

a:hover{
  text-decoration: none;
}

img{
  max-width: 100%;
}

button:focus{
  outline: none;
}

body {
    box-sizing:border-box;
    font-size:14px;
    font-family: 'Roboto', sans-serif;
    color: #333333;
    overflow-x:hidden;
    width:100%;
    min-height: 100vh;
}

.title-page{
  margin: 20px 0;
}

.collection-cont{
  margin-bottom: 40px;
  border: 1px solid #592d14;
  border-radius:4px;
}

.collection-filter-cont.fixed{
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.collection-filter{
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}

.collection-filter-icon{
  margin-right: 5px;
  font-size: 22px;
  color: #592d14;
}

.filter-item{
  display: flex;
  align-items: center;
  padding: 10px;
}

.filter-item-title{
  font-size: 20px;
  font-weight: bold;
  margin-right: 20px;
}

.filter-item-element{
  margin-right: 10px;
  display: inline-block;
  padding: 5px 7px;
  border: 1px solid #592d14;
  transition: 0.3s all;
  white-space: nowrap;
  background: #ffffff;
  color:  #592d14;
  text-decoration: none;
}

.filter-item-element.active{
  background: #592d14;
  color: #ffffff;
}

.filter-item-element:hover{
  text-decoration: none;
  color: #ffffff;
  background: #592d14;
}

.collection-title{
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 10px 75px 10px 10px;
  border-bottom: 1px solid #592d14;
  display: flex;
  justify-content: space-between;
}

.collection-title-count{
  color: #249191;
  font-size: 20px;
}

.collection-list{
  display: flex;
  flex-wrap: wrap;
}

.collection-list-basket .collection-list-block{
  flex: 0 0 calc(100%/5);
  max-width: calc(100%/5);
}

.collection-list-block{
  flex: 0 0 calc(100%/4);
  padding: 0 5px;
  margin-bottom: 20px;
}

.collection-item{
  position: relative;
  padding: 10px;
  border: 1px solid transparent;
  border-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.collection-item-img{
  text-align: center;
  flex: 1 2 auto;
  padding-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collection-item-img-b{
  cursor: pointer;
}

.modal-img-container{
  max-width: 800px;
}

.collection-item-name{
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  display: block;
  text-align: center;
  line-height: 1;
  /*min-height: 36px;*/
}

.collection-price{
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #592D14;
  line-height: 1.2;
}

.collection-item-name:hover{
  color: #592D14;
  text-decoration: none;
}

.collection-item-info{
  
}

.collection-item-info-i{
  display: flex;
  align-items: flex-start;

}

.collection-item-key{
  font-weight: bold;
  color: #592D14;
}

.collection-item-version{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 72px;
}

.collection-item-version-type{
  flex: 0 0 100%;
  max-width: 100%;
}

.collection-item-version-type + .collection-item-version-type{
  margin-top: 20px;
}

.collection-item-version-type label{
  margin-bottom: 5px;
  display: block;
  text-align: center;
  cursor: pointer;

}

.collection-item-version-type.type-img label{
  display: flex;
  justify-content: center;
}

.collection-item-version-type label input{
  display: none;
}

.collection-item-version-type label input:checked ~ .radio-text{
  background: #592d14;
  border-color: #592d14;
  color: #ffffff;
}

.collection-item-version-type label input:checked ~ .radio-img{
  border-color: #64DEDD;
}

.collection-item-version-type .radio-text{
  display: inline-block;
  padding: 5px 7px;
  border: 1px solid #592d14;
  color: #592d14;
  transition: 0.3s all;
  width: 100%;
  white-space: nowrap;
}

.collection-item-version-type .radio-img{
  display: inline-block;
  border: 2px solid transparent;
  position: relative;
}

.collection-item-version-type .radio-img-basket{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #0be30b;
  font-size: 18px;
}

.collection-item-version-type .radio-img img{
  max-width: 40px;
}

.collection-item-version-type .radio-text:hover{
  background: #592d14;
  border-color: #592d14;
  color: #ffffff;
}

.collection-item-btn{

}

.collection-item-btn .btn{
  display: block;
}

.collection-item-top-block{
  display: flex;
  margin-bottom: 5px;
  flex: 1 0 auto;
}

.btn{
  text-decoration: none;
  background: #592d14;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
}

.btn:hover{
  background: #DE9164;
  color: #fff;
}

.btn-color{
  background: #249191;

}

.btn-color:hover{
  background: #64DEDD;
}

.collection-item:hover{
  box-shadow: 0px 10px 18px rgb(0 0 0 / 13%);
}


.collection-description{
  margin-bottom: 20px;
  padding: 10px;
  border-top: 1px solid #592d14;
}

.collection-description-title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.collection-description-text{
  font-size: 16px;
}

.register-cont{
  margin-bottom: 40px;
}

.form-control{
  border-color: #592D14;
  font-size: 16px;
}

.form-control:focus {
    color: #DE9164;
    background-color: #fff;
    border-color: #DE9164;
    outline: 0;
    box-shadow: none;
}

.form-group label{
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

header{
  padding: 20px 0;
  border-bottom: 1px solid #592d14;
  background: #eeeae7;
}

.header-cont{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-home a{
  color: #592d14;
  text-decoration: none;
  font-size: 32px;
}

.header-home a:hover{
  text-decoration: none;
  color: #DE9164;
}

.logo-block{
  max-width: 150px;
}

.header-icon-cont{
  display: flex;
  align-items: center;
}

.header-icon-item{
  padding: 5px 10px;
  line-height: 1;
}

.header-icon-item > *{
  text-decoration: none;
  font-size: 24px;
  color: #592d14;
  position: relative;
  cursor: pointer;
}

.header-icon-item-exit{
  display: block;
  text-align: center;
}

.header-icon-item-exit a{
  font-size: 14px;
  text-decoration: none;
  color: #592d14;
}

.header-icon-item-exit a:hover{
  text-decoration: none;
  color: #DE9164;
}

.header-icon-item > *:hover{
  text-decoration: none;
  color: #DE9164;
}

.header-icon-item + .header-icon-item{
  border-left: 1px solid #592d14;
}

.basket-counter{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #592d14;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  border: 1px solid #fff;
  right: -10px;
  top: -7px;
}

.header-icon-item a:hover .basket-counter{
  background: #DE9164;
}


.title-form{
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}

.title-form .form-control{
  display: inline;
  width: auto;
}

.form-group-inputs{
  padding: 10px;
  border:1px solid #592d14;
  border-radius: 4px;
  margin-bottom: 30px;
}

.form-group-inputs-title{
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
  border-bottom: 1px solid #592d14;
  margin: -10px -10px 20px;
}

.form-group-inputs-title.types{
  display: flex;
  flex-wrap: wrap;
}

.radio-label{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-label input{
  display: none;
}

.radio-label input + .radio{
  flex: 0 0 20px;
  max-width: 20px;
  height: 20px;
  margin-right: 10px;
  border:1px solid #592d14;
  position: relative;
  border-radius: 50%;
}

.radio-label input:checked + .radio:before{
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background: #592d14;
  border-radius: 50%;
}

.radio-label-text{
  display: flex;
}

.form-group-inputs-item{
  display: flex;
  margin-bottom: 20px;
}

.form-group-inputs-item:last-child{
  margin-bottom: 0;
}

.form-group-inputs-key{
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 20px;
  font-size: 18px;
}

.form-group-inputs-value{
  flex: 0 0 50%;
  max-width: 50%;
}

.form-group-inputs-table-head{
  display: flex;
  align-items: center;
  margin: 0 -10px;
}

.form-group-inputs-table-head .form-group-inputs-table-element{
  font-weight: bold;
  font-size: 18px;
}

.form-group-inputs-table-element{
  flex: 0 0 20%;
  max-width: 20%;
  padding: 10px;
  font-size: 18px;
}

.form-group-inputs-table-element:first-child{
  flex: 0 0 40%;
  max-width: 40%;
}

.form-group-inputs-table-body{

  margin: 0 -10px;
}

.form-group-inputs-table-body-footer{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -10px;
}

.form-group-inputs-table-total{
  font-weight: bold;
    font-size: 18px;
    padding: 10px;
    color: #592d14;
    flex: 0 0 20%;
    max-width: 20%;
}

.form-group-inputs-table-group{
  display: flex;
}

.table-v2 .form-group-inputs-table-element{
  flex: 0 0 30%;
  max-width: 30%;
}

.table-v2 .form-group-inputs-table-element:first-child{
  flex: 0 0 40%;
  max-width: 40%;
}

.table-v3 .form-group-inputs-table-element, .table-v3 .form-group-inputs-table-element:first-child{
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
}

.table-v3 .form-group-inputs-table-element .radio-label{
  white-space: nowrap;
  margin: 0;
}

.table-v3 .form-group-inputs-table-element .form-control{
  margin-left: 26px;
}

.table-v3 .form-group-inputs-table-head{
  flex-wrap: wrap;
}

.form-group-inputs-table-element input::placeholder{
  color: transparent;
}

header.fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.collection-list.slick-initialized {
    overflow: visible;
}

.collection-list {
    overflow: hidden;
}

.collection-list .slick-list {
    width: 100%;
    z-index: 2;
}

/*.collection-list .slick-track {
    display: flex;
}

.collection-list .slick-slide {
    opacity: 0;
    height: inherit;
    visibility: hidden;
    transition: all 300ms;
}

.collection-list .slick-slide.slick-active {
    opacity: 1;
    visibility: visible;
}

.collection-list.slick-initialized .slick-slide {
    flex: 0 0 auto;
    max-width: none;
}*/

.collection-list .slick-arrow{
  height: auto;
  width: auto;
  padding: 5px;
  display: flex;
  z-index: 3;
  top: unset;
  bottom: calc(100% + 22px);
  background: #592d14;
  border-radius: 4px;
}

.collection-list .slick-arrow path{
  stroke: #fff;
}

.collection-list .slick-arrow:hover{
  background: #DE9164;
}

.collection-list .slick-next{
  right: 10px;
}

.collection-list .slick-prev{
  left: unset;
  right: 44px;
}

.collection-list .slick-arrow.slick-disabled{
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.collection-list .slick-arrow:before{
  content: none;
}

.download-btn-cont{
  margin-right: 30px;
  position: relative;
}

.download-dropdown{
  position: absolute;
  top: 100%;
  background: #fff;
  z-index: 3;
  box-shadow: 0px 10px 18px rgb(0 0 0 / 9%);
  border-radius: 4px;
  padding: 5px;
  display: none;
  width: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.download-btn-cont.opened .download-dropdown{
  display: block;
}

.download-dropdown-items{
  text-decoration: none;
  color: #592d14;
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}

.download-dropdown-items:hover{
  color: #DE9164;
  text-decoration: none;
}

.modal-content{
  border: 1px solid #592d14;
}

.modal-header, .modal-footer{
  border-color: #592d14;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.fancy-custom .fancybox-skin{
  display: flex;
}

.fancy-custom{
  max-width: 650px;
  width: 100%!important;
}

.fancy-custom .fancybox-title-inside-wrap{
  padding: 0;
  font-size: 16px;
}

.fancy-custom .fancybox-outer{
  flex: 0 0 50%;
  max-width: 50%;
}

.fancy-custom .fancybox-inner{
  width: auto!important;
  height: auto!important;
}

.basket_dody{
  display: flex;
  flex-direction: column;
}

.basket_item{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #592d14;
}

.basket_item:last-child{
  margin-bottom: 0;
  border-bottom: 0;
}

.basket_item_name{
  text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    display: block;
    line-height: 1;
    flex: 1 0 auto;
}

.basket_item_name:hover{
    color: #592D14;
    text-decoration: none;
}

.basket_item_variant{
  margin: 0 10px;
  display: inline-block;
  padding: 5px 7px;
  border: 1px solid #592d14;
  transition: 0.3s all;
  white-space: nowrap;
  background: #592d14;
  color: #ffffff;
}

.basket_item_price{
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #592D14;
  line-height: 1.2;
  padding: 0 10px;
  white-space: nowrap;
}

.remove_basket{
  color: #592d14;
  cursor: pointer;
}

.remove_basket:hover{
  color: #DE9164;
}

.empty_basket{
  text-align: center;
  padding: 30px 0;
  font-size: 24px;
  color: #592d14;
}

.modal-title .fauth{
  cursor: pointer;
  display: inline-block;
  color: #592d14;
}

.modal-title .fauth:hover{
  font-weight: bold;
}

.modal-title .fauth.active{
  border-bottom: 2px solid #592d14;
  font-weight: bold;
}

.modal-img-block{
  display: flex;
}

.modal-img-cont{
  flex: 0 0 50%;
  max-width: 50%;
  text-align: center;
}

.zoom-cont{
  display: inline-block;
  position: relative;
}

.modal-img-text{
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 10px;
}

.fancy-custom1{
  width: auto!important;
}

.fancy-custom1 .fancybox-skin{
  min-height: 80vh;
  min-width: 80vw;
}

.fancy-custom1 .fancybox-inner{
  width: 100%!important;
}

@media(max-width:992px){
  .collection-list-block {
    flex: 0 0 calc(100%/3);
  }

  .collection-list-basket .collection-list-block{
    flex: 0 0 calc(100%/4);
    max-width: calc(100%/4);
  }
}

@media(max-width:767px){
  .collection-list-block {
    flex: 0 0 calc(100%/2);
  }

  .collection-list-basket .collection-list-block{
    flex: 0 0 calc(100%/2);
    max-width: calc(100%/2);
  }

  .collection-item:hover{
  border-color: transparent;
  box-shadow: none;
  }


  .form-group-inputs-item{
    flex-wrap: wrap;
  }

  .form-group-inputs-key{
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0 20px;
  }

  .form-group-inputs-value{
    flex: 0 0 100%;
    max-width: 100%;
  }

  .form-group-inputs-table-element input::placeholder{
    color: #9f9f9f;
  }

  .form-group-inputs-table-head{
    display: none;
  }

  .table-v3 .form-group-inputs-table-head{
    display: flex;
  }

  .form-group-inputs-table-group{
    flex-wrap: wrap;
  }

  .table-v2 .form-group-inputs-table-element, .form-group-inputs-table-element, .form-group-inputs-table-element:first-child, .table-v2 .form-group-inputs-table-element:first-child, .form-group-inputs-table-total{
    flex: 0 0 100%;
    max-width: 100%;
  }

  .form-group-inputs-table-total{
    text-align: right;
  }

  .form-group-inputs-table-group + .form-group-inputs-table-group{
    border-top: 1px solid #592d14;
  }

  .table-v3 .form-group-inputs-table-element, .table-v3 .form-group-inputs-table-element:first-child {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .fancy-custom1 .fancybox-skin{
    min-height: 600px;
    min-width: 500px;
  }
}

@media(max-width:576px){
  .collection-list-block {
    flex: 0 0 calc(100%/1);
  }

  .collection-list-basket .collection-list-block{
    flex: 0 0 calc(100%/1);
    max-width: calc(100%/1);
  }

  .download-btn-cont{
    margin-right: 10px;
  }

  .basket_item{
    flex-wrap: wrap;
  }

  .basket_item_name{
    flex: 0 0 100%;
    margin-bottom: 10px;
    justify-content: space-between;
  }

  .fancy-custom1 .fancybox-skin{
    min-height: 600px;
    min-width: 300px;
  }
}

.new_ttype label span.radio-img{background-color: #6a2204;}
.new_ttype label.active span.radio-img{background: 2px green;}
.collection-price:not(.thisprice){
  /*min-height: 34px;*/
}

.header-mob-item{
  display: none;
}

@media(max-width:767px){
  .logo-block-desc, .header-icon-cont .download-btn-cont{
    display: none;
  }

  .header-mob-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 2 auto;
    margin: 0 10px;
    text-align: center;
  }

  .header-mob-item .logo-block{
    max-width: unset;
    margin-bottom: 5px;
  }

  .download-btn-cont{
    margin: 0;
  }

  .download-btn-cont .btn{
    font-size:12px;
  }

  .collection-filter{
    overflow-x: auto;
    flex-wrap: wrap;
  }
  }

.personal-order-list{
  padding: 30px 0;
}

.personal-order-item{
  margin-bottom: 20px;
  border: 1px solid #592d14;
  border-radius: 4px;
}

.personal-order-title{
  list-style: none;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  background: rgb(255 0 0 / 20%);
}

.done .personal-order-title{
  background: rgb(0 128 0 / 20%);
}

.personal-order-detail{
  padding: 20px 25px;
  border-top: 1px solid #592d14;
}

.personal-order-table{
  margin-bottom: 20px;
}

.personal-order-table table{
  width: 100%;
}

.personal-order-table td, .personal-order-table th{
  padding: 10px;
  border-bottom: 1px solid #592d14;
  font-size: 16px;
  text-align: center;
}

.personal-order-table th{
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.personal-order-img, .personal-order-color{
  display: flex;
  align-items: center;
  justify-content: center;
}

.personal-order-img img{
  max-width: 50px;
}

.personal-order-color img{
  max-width: 40px;
}

.personal-order-name{
  text-align: left;
  font-weight: bold;
}

.personal-order-count, .personal-order-price{
  font-weight: bold;
}

.personal-order-total{
  text-align: right;
}

.personal-order-total-price{
  font-weight: bold;
}

.personal-order-file{
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.personal-order-file-title{
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.personal-order-file-l{
  position: relative;
}

.personal-order-file-l input {
    position: relative;
    z-index: 1;
    padding: 0 gap(m);
    width: 100%;
    height: 38px;
    border: 1px solid #592d14;
    border-radius: 3px;
    font-family: arial, sans-serif;
    font-size: 1rem;
    user-select: none;
    cursor: pointer;
    padding-right: 185px;
}
.personal-order-file-l.fileUploadInput input[type="file"] {
  padding: 0 gap(m); 
}
.personal-order-file-l input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
  margin-left: 10px;
  padding: 0;
  height: 38px;
  width: 0; 
}

.personal-order-file-input{
  position: absolute;
  top: 0;
  right: 0;
}

.personal-order-status{
  font-size: 20px;
  text-align: center;
}

.personal-order-status span{
  font-weight: bold;
  color: red;
}

.done .personal-order-status span{
  color: green;
}

@media(max-width: 576px){
  .personal-order-table th{
    display: none;
  }

  .personal-order-table td{
    width: 100%;
    flex: 0 0 100%;
  }

  .personal-order-table tr{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
  }

  .personal-order-table td.po-foto{
    flex: 0 0 100px;
    max-width: 100px;
    border-bottom: 0;
  }

  .personal-order-table td.po-name{
    flex: 0 0 calc(100% - 100px);
    max-width: calc(100% - 100px);
    border-bottom: 0;
  }

  .personal-order-table td.po-count, .personal-order-table td.po-price{
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.basket-btn-block{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap:wrap ;
  margin-bottom: 15px;
}

.basket-btn-cont a{
  display: inline-block;
  padding: 5px 7px;
  border: 1px solid #592d14;
  color: #592d14;
  transition: 0.3s all;
  width: 100%;
  white-space: nowrap;
  text-decoration: none;
}

.basket-btn-cont a.active, .basket-btn-cont a:hover{
  background: #592d14;
    border-color: #592d14;
    color: #ffffff;
    text-decoration: none;
}

.pagination-cont{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.pagination-cont .text:first-child{
  display: none;
}

.pagination-cont .text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0px;
  justify-content: center;
}

.pagination-cont .text a, .pagination-cont .text b{
  padding: 5px 7px;
  border: 1px solid #592d14;
  color: #592d14;
  transition: 0.3s all;
  white-space: nowrap;
  text-decoration: none;
  min-width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.pagination-cont .text a:hover, .pagination-cont .text b{
  background: #592d14;
    border-color: #592d14;
    color: #ffffff;
    text-decoration: none;
}

