@import url('https://fonts.cdnfonts.com/css/century-gothic-paneuropean');

*{
    box-sizing: border-box;
    position: relative;
}
img{
    max-width: 100%;
    height: auto;
}
body{
    font-size: 16px;
    font-weight: 400;
    font-family: 'Century Gothic Paneuropean', sans-serif;
background-color: #FBFEF9;
margin: 0;
color: #000;
}

._active-block {
    display: block;
}

.block_none {
    display: none;
}

input:not(.search input),
textarea {
    border: none;
    color:  #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    border: 3px solid #FFA081 !important;
    border-radius: 4px;
    padding: 10px 16px;
}
input::placeholder{
    color:  #ADADAD;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}
input[type="file"]{
    background: #FFA081;
    color: #fff !important;
}
.main .form-group > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.main .form-group > div > label{
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
/* label {
	display: block;
	margin: 0 0 10px 0;
	line-height: 22px;  
    cursor: pointer;
} */
label input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	display: inline-block;
	width: 26px;
	height: 26px;
margin: 0;
	padding: 0;
	vertical-align: top;
	outline: none;
	transition: background 0.3s ease;
	cursor: pointer;
}
 
/* Checked */
label input[type=checkbox]:checked {
    border-color: #FFA081;
    background-color: #FFA081;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  
}
 
/* Focus */
/* .focused input[type=checkbox] {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
} */
 
/* Hover */
label input[type=checkbox]:hover {
	filter: brightness(110%);
}
 
/* Active */
label input[type=checkbox]:active {
	filter: brightness(80%);
}
 
/* Disabled */
label input[type=checkbox]:disabled {
	color: #666;
	cursor: default;
}
label input[type=checkbox]:disabled {
	filter: grayscale(100%);
	opacity: 0.6;
}
/* input[type="checkbox"]{
 -webkit-appearance: none;
 -moz-appearance: none;
      appearance: none;
 background-color: var(--form-background);
 margin: 0;
 font: inherit;
 color: currentColor;
 width: 22px !important;
 height: 22px !important;
 border: 0.15em solid currentColor;
 border-radius: 0.15em;
 transform: translateY(-0.075em);
 display: grid;
 place-content: center;
}

input[type="checkbox"]+label {
   display: flex;
  }
  input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
            clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: CanvasText;
  }
  /* input[type=checkbox]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
  } 
  input[type="checkbox"]:checked::before {
    transform: scale(1);
    border-color: #FFA081;
    background-color: #FFA081;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }
  input[type=checkbox]:disabled {
    --form-control-color: var(--form-control-disabled);
    color: var(--form-control-disabled);
    cursor: not-allowed;
  } */
  input[type="radio"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  /* для элемента label связанного с .custom-radio */
  input[type="radio"]+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
  }
  /* создание в label псевдоэлемента  before со следующими стилями */
  input[type="radio"]+label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #FFA081;
    border-radius: 50%;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
  }
  /* стили при наведении курсора на радио */
  input[type="radio"]:not(:disabled):not(:checked)+label:hover::before {
    border-color: #FFA081;
  }
  /* стили для активной радиокнопки (при нажатии на неё) */
  input[type="radio"]:not(:disabled):active+label::before {
    background-color: #FFA081;
    border-color: #FFA081;
  }
  /* стили для радиокнопки, находящейся в фокусе */
  /* input[type="radio"]:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  } */
  /* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
  input[type="radio"]:focus:not(:checked)+label::before {
    border-color: #FFA081;
  }
  /* стили для радиокнопки, находящейся в состоянии checked */
  input[type="radio"]:checked+label::before {
    border-color: #FFA081;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFA081'/%3e%3c/svg%3e");
    background-size: 90% 90%;
  }
  /* стили для радиокнопки, находящейся в состоянии disabled */
  input[type="radio"]:disabled+label::before {
    background-color: #FFA081;
  }
  button{
    border: none;
    background: transparent;
}
select {
    border: 3px solid #FFA081;
    border-radius: 4px;
    padding: 10px 16px;
}

table{
    width: 100%;
    border-collapse: collapse;
}
table thead{
    background: #FFA081;
}
table th{
    padding: 15px;
    text-align: left;
    min-width: 150px;
}
table th a{
    color: #000;
}
table td{
    padding: 15px;
    text-align: left;
    max-width: 400px;
    word-wrap: break-word;
}
table td a{color: #000;}
th, td {
    border: 1px solid #FFA081;
 }
 table thead input{
    border: 2px solid #1a1a1a !important;
 }
 table input[type=text]{
    width: 100% !important;
    padding: 5px;
 }
 .cart-table__item.cart-table__title .cart-table__item-title{
    margin-bottom: 12px;
 }
 .order-table .cart-table__item .btn {
    width: 70%;
    margin-top: 12px;
}
 .input-group{
    gap: 10px;
 }
 .input-group-text{
    width: 20px;
    height: 20px;
 }
 .w-100{
    width: 100% !important;
 }
.btn{
    background-color: #FFA081;
    color: #fff;
    font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.48px;
padding: 15px 50px;
border-radius: 5px;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
border: 2px solid #FFA081;
cursor: pointer;
}
.btn.btn-small {
    font-size: 12px;
    padding: 4px;
}
table .btn.btn-small {
width: 100%;

    margin-top: 10px;
}
.breadcrumb{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style-type: none;
}
.container{
    max-width: 1920px;
    padding: 0 60px;
    margin: 0 auto;
}
.header {
    background-color: #FFE1CD;
    padding: 40px 0;
}
.header-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo a{
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.9px;
    text-decoration: none;
    color: #000;
    font-family: Cormorant;

}
.header-navbar__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.header-navbar__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    list-style-type: none;
    padding: 0;
}
.header-navbar__nav ul li a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.48px;
color: #000;
}
.header-navbar__nav ul li.current a span{
    border-bottom: 1px solid #000;
}
.header-navbar__nav ul li a:hover span{
    border-bottom: 1px solid #000;  
}
.header-navbar__nav ul li a svg{
    width: 24px;
    height: 24px;
}
.lang{
    display: none;
}
.lang ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.lang ul li:not(:first-child){
    display: none;
}
.mini-cart a{
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: 18px;
}
.mini-cart__count {
    background: #FFA081;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.42px;
color: #fff;
position: absolute;
left: -19px;
top: -15px;
}
.mini-cart__amount {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}
/* .main{
    padding: 86px 0;
} */

section{
    padding: 56px 0;
    width: 100%;
}
.section-header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 82px;
}
.section-title {
    font-size: 58px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;
    letter-spacing: 2.04px;
    font-family: Cormorant;

}
.search{
    max-width: 460px;
    width: 100%;
}
.input-search__wrap{
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search input {
  width: 100% !important;
border: none;
padding: 13px 5px;
outline: none;
background-color: transparent;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 15px;
}
.category {
    border-radius: 0px 0px 10px 10px;
    background: #FFE1CD;
    display: flex;
    align-items: center;
    justify-content: center;
   
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.66px;
    overflow: hidden;
    border-radius: 15px;
}
.category a{
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
  
  
}
.category a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category a span{
    padding: 25px 10px;
}
.category:hover{
    background-color: #FFA081;
}


.field-product-vendor_id, .field-productsearch-product_name, .field-product-brand_id, .field-product-category_id{
    margin-bottom: 25px;
}

.product-article {
    margin: 0;
    opacity: 50%;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 46px 24px; 
}
.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 320px;
    box-shadow: 0 2px 10px hsl(0 0% 0% / 20%);
    border-radius: 10px;
background-color: #fff;
/* width: max-content; */
}
.product-thumbnail {
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 0 35px; */
}
.product-gallery{
    width: 100%;
    height: 100%;
}
.product-thumbnail__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
height: 206px;
    margin: 0 auto;
}
.product-thumbnail__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-badge{
    background: #FFA081;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 2;
}
.product-name {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.51px;
    text-decoration: none;
    color: #000;
    word-wrap: break-word;
    text-align: center;
}
.product-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 0 18px 0 18px;
    /* padding: 0 45px; */
}
.product-price {
    color: #FFA081;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.54px;
}
.product-action{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px 18px 18px;
}
.product-action .btn{
    width: 100%;
}
.btn.add-to-cart.added{
    background: #fff;
    color: #000;
    border-radius: 5px;
border: 2px solid #FFA081;
}
.btn.btn-add-to_cart-click.added{
    background: #fff;
    color: #000;
    border-radius: 5px;
    border: 2px solid #FFA081;
}
.swiper-button-next, .swiper-button-prev{
    color: #FFA081;
width: 40px;
height: 40px;
background-color: #FFE1CD;
border-radius: 100%;
}
.swiper-button-prev{
    left: -15px;
}
.swiper-button-next{
    right: -15px;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 28.538px; /* 101.923% */
}

.catalog-wrap {
    display: flex;
    gap: 30px;
}
.catalog-sidebar {
    max-width: 20%;
    width: 100%;
    padding: 56px 0;
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
}
.breadcrumb {
    padding: 0 .5rem;
  }
  
  .breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 .25rem;
    content: "→";
  }
.filter{
    padding: 18px;
    box-shadow: 0 2px 10px hsl(0 0% 0% / 20%);
    border-radius: 10px;
background-color: #fff;
height: 100%;
overflow-y: auto;
}
.filter-title{
    color: #FFA081;

font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 72px; /* 200% */
letter-spacing: 1.08px;
}
.products-category {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.filter-group {
    border-top: 1px solid #000;
    padding: 18px 0;
}
.filter-group:last-child{
    border-bottom: 1px solid #000;

}
.filter-group-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.54px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-group__item {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    margin-bottom: 14px;
   
}
.filter-group__item input[type="checkbox"]{
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.filter-group__item input[type="checkbox"]+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
  }
  .filter-group__item input[type="checkbox"]+label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #FFA081;
    border-radius: 4px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
  }

  .filter-group__item input[type="checkbox"]:checked+label::before {
    border-color: #FFA081;
    background-color: #FFA081;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }
  .filter-group__item input[type="radio"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  /* для элемента label связанного с .custom-radio */
  .filter-group__item input[type="radio"]+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
  }
  /* создание в label псевдоэлемента  before со следующими стилями */
  .filter-group__item input[type="radio"]+label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #FFA081;
    border-radius: 50%;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
  }
  /* стили при наведении курсора на радио */
  .filter-group__item input[type="radio"]:not(:disabled):not(:checked)+label:hover::before {
    border-color: #FFA081;
  }
  /* стили для активной радиокнопки (при нажатии на неё) */
  .filter-group__item input[type="radio"]:not(:disabled):active+label::before {
    background-color: #FFA081;
    border-color: #FFA081;
  }
  /* стили для радиокнопки, находящейся в фокусе */
  /* .filter-group__item input[type="radio"]:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  } */
  /* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
  .filter-group__item input[type="radio"]:focus:not(:checked)+label::before {
    border-color: #FFA081;
  }
  /* стили для радиокнопки, находящейся в состоянии checked */
  .filter-group__item input[type="radio"]:checked+label::before {
    border-color: #FFA081;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFA081'/%3e%3c/svg%3e");
    background-size: 90% 90%;
  }
  /* стили для радиокнопки, находящейся в состоянии disabled */
  .filter-group__item input[type="radio"]:disabled+label::before {
    background-color: #FFA081;
  }

  /************* Single Product **************/
  .single-product__header {
    margin-bottom: 37px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.single-product__body{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 90px;
}
.single-product__gallery{
    width: 65%;
}
.single-product__gallery img{
    border-radius: 10px;
    overflow: hidden;
}
.single-product__gallery-wrap {

  
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /*Убрал*/
    /*height: 650px;*/
    gap: 20px;
}
  .single-product__gallery-main {
    height: 100%;
    width: 100%;
      display: none;
  }
  /*добавил*/
.swiper-free-mode.single-product__gallery-thumbs > .swiper-wrapper{
    display: flex;
    flex-flow: wrap;
}
/*/добавил*/
  .single-product__gallery-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .single-product__gallery-thumbs {
      /*заменил*/
    /*width: 200px;*/
      width: 100%;
    height: 100%;
  }

  .single-product__gallery-thumbs .swiper-slide {
      /*заменил*/
    /*height: 25%;*/
    height: 200px;
    /*opacity: 0.4;*/
      /*добавил*/
      width: 200px;
      margin: 5px;
      margin-top: 40px;
  }

.single-product__gallery-thumbs .swiper-slide p{
    text-align: center;
    margin-top: 10px;
}
.swiper-slide.swiper-slide-thumb-active
 {
    opacity: 1;
    border: 8px solid #FFA081;
  }
  .single-product__gallery-thumbs .swiper-button-prev{
    left: 50%;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: left;
    top: 0;
    bottom: auto;
    margin-top: 0 !important;
  }
  .single-product__gallery-thumbs .swiper-button-next{
    left: 50%;
    right: auto;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: left;
    top: auto;
    bottom: 0;
  }
  .single-product__gallery-thumbs img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.single-product__props-wrap{
    width: 30%;
}
    .single-product__title {
    color: #000;
    font-size: 68px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    letter-spacing: 2.04px;
    word-wrap: break-word;
}
.single-product__article {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin: 33px 0 ;
}
.single-product__article-title{
    font-weight: 600;
}
.single-product__price{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;

}
.single-product__price-title {
    color: #000;
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 1.08px;
}

.single-product__price-value {
    color: #FFA081;
    text-align: right;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 1.08px;
}
.single-product__props{
    margin: 66px 0;
}
.single-product__desc{
    margin: 48px 0;
}
.single-product__desc-title {
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    letter-spacing: 2.04px;
}
.single-product__desc-text {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.51px;
    word-wrap: break-word;
}

.single-commit_images-text {
    font-size: 22px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.51px;
    word-wrap: break-word;
}

.commit_images-text {
    margin-left: 180px;
}


.filter-group__items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/************* Cart ******************/
.cart-title {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 1.08px;
    margin: 20px 0 31px;
}
.cart-table__wrap{
   overflow-x: auto;
  }
  
.cart-table__head {
    /* display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0 54px; */
    border-bottom: 1px solid #FFA081;
    font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.72px;
}
.cart-table__body{
    font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.66px;
}
/* .cart-table__body .cart-table__item{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-all;
} */
.cart-table__row{
    /* display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0 74px; */
    border-bottom: 1px solid #FFA081;
}
.cart-table__item{
    padding: 24px;
    text-align: center;
}
.cart-table__head .cart-table__item:first-child{
    min-width: 198px;
}
.cart-item__select{
    width: 100%;
}
.cart-item__thumbnail_slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 198px;
}

.cart-item__thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 198px;
    height: 120px;
}

.cart-item__thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item__thumbnail-action {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cart-item__action {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.51px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 38px;
}
.cart-item__action a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    width: max-content;
    color: #000;
}
.cart-table__footer{
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
}
.cart-table__result {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-table__result-title{
    font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 72px; /* 200% */
letter-spacing: 1.08px;
}
.cart-table__result-value{
    font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.66px;
}

.gallery {
    margin-top: 30px;
}

.gallery__title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.gallery__list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.gallery__list_commit {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;

}

.gallery_commit {
    margin: 15px;
}

.text_img-commit {
    width: 100%;
}

.gallery__item_commit {

    margin-bottom: 10px;
    /*width: calc((100% / 3) - 30px);*/
    height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    width: 100%;
}

.gallery__item {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    width: calc((100% / 3) - 30px);
    height: 300px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
}

.gallery__item-delete {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    z-index: 2;
}

.text_center-header {
    text-align: center;
}

.gallery__item_img {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
}

.gallery__item:hover .gallery__item-delete {
    display: block;
}

.gallery__item_commit:hover .gallery__item-delete {
    display: block;
}

.main form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

form.order-info_search {
    display: grid;
    align-items: end;
    max-width: 99%;
    grid-template-columns: repeat(11, 1fr);
    gap: 20px;
}

form.order-info_search .form-group {
    display: block;
}
form.order-info_search .control-label {
    width: 100%;
    font-size: 20px;
}

form.order-info_search select {
    width: 100%;
}

form.order-info_search input {
    width: 100%;
}

.transactions-search form {
    display: grid;
    align-items: end;
    max-width: 99%;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.transactions-search form input{
    width: 100%;
}

.transactions-search form select{
    width: 100%;
}

.transactions-search form .form-group {
    display: block;
}
.transactions-search form .control-label {
    width: 100%;
    font-size: 20px;
}

.shipping-cost-search form {
    display: grid;
    align-items: end;
    max-width: 99%;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.shipping-cost-search form input{
    width: 100%;
}

.shipping-cost-search form select{
    width: 100%;
}

.shipping-cost-search form .form-group {
    display: block;
}
.shipping-cost-search form .control-label {
    width: 100%;
    font-size: 20px;
}




.product-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.main .form-group{
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}
.main .control-label {
    width: 20%;
    font-size: 22px;
    font-weight: 600;
}
.form-group.field-uploadingpicturecart-img{
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.form-group.field-uploadingpicturecart-img label{
    width: 100%;
}
input#uploadingpicturecart-img{
    width: 100%;
}
.form-group.field-uploadingpicturecart-id_product,
.form-group.field-uploadingpicturecart-page,
.form-group.field-product-images_item,
.form-group.field-product-id_product{
    display: none;
}
th.list-cell__property_id {
    width: 20%;
    font-size: 22px;
    font-weight: 600;
    padding-right: 85px;
}
.main input,
.main textarea,
.main select {
    width: 70%;
}
.wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 0;
}
.site-login,
.site-request-password-reset,
.site-signup{
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px hsl(0 0% 0% / 20%);
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
}
input#loginform-rememberme{
    width: auto;
}
.wrapper form,
.wrapper form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.wrapper .row,
.wrapper .mb-3{
    width: 100%;
}
.wrapper .form-group,
.wrapper .form-group{
    width: 100%;
    justify-content: center;
}

.wrapper .form-group > div,
.wrapper .form-group > div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.wrapper form input,
.wrapper form input{
    width: 100%;
}
.wrapper label.form-label{
    font-weight: bold;
    font-size: 24px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style-type: none;
    padding: 0;
}
.pagination a,
.pagination .disabled{
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #FFE1CD;
    line-height: 20px;
    font-size: 16px;
}

.pagination a:hover,
.pagination .active a{
    background: #FFA081;
}

.displayNone {
    display: none;
}
.showMore {
    padding: 20px 30px;
    display: block;
    border-radius: 100px;
    text-align: center;
    vertical-align: top;
    background-color: #FFA081;
    margin-bottom: 20px;
}

.showMore  a{
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
}
.overlay {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: none;
}
.cart-popup {
    display: flex;
    flex-direction: column;
    gap: 20px;
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    background: #fff;
    padding: 20px;
    border-radius: 10px;

}
.cart-popup__header{
    display: flex;
    justify-content: flex-end;
}
.close{
    cursor: pointer;
}
.cart-popup form{
gap: 10px;
}
.form-group.field-uploadingpicturecart-img{
    gap: 10px;
}

.order-grid .table > :not(caption) > * > * {
    padding: 0.1rem 0.1rem;
}

.container.container_order {
    padding: 0px 10px;
}


a.btn.btn-small.editing_departure_date,a.btn.btn-small.editing_party_track ,a.btn.btn-small.editing_manager_comment_send ,a.btn.btn-small.editing_weight{
    margin: 0px;
}

.password {
    position: relative;
}
.password-control {
    position: absolute;
    top: 35px;
    right: 15px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/img/no-view.svg) 0 0 no-repeat;
}
.password-control.view {
    background: url(/img/view.svg) 0 0 no-repeat;
}


.fa-check:before {
    content: "\F132"
}
.fa, .user-aut__icon {
    color: #000000;
    font-weight: normal;
    font-style: normal;
}

.user-aut__span {
    margin-right: 5px;

}


.l-ss-c-price-digit-full {
    font-weight: 700;
    display: none;
}

.single-product__price-value.original_price-class {
    font-size: 30px;
    color: #717171;
    opacity: 0.8;
}

.single-product__price-title.original_price-class
{
    color: #717171;
    opacity: 0.8;
}

.cart-table__result-title.result-title_add {
    font-size: 28px;

    opacity: 0.8;
}

.cart-table__result-value.result-title_add {
    font-size: 28px;

    opacity: 0.8;
}

.form-group-search-product {
    display: flex;
    gap: 100px;
}

.field-product-category_id label.control-label {
    width: 100%;
}

.field-product-brand_id label.control-label {
    width: 100%;
}

.field-product-vendor_id label.control-label {
    width: 100%;
}

.btn.save_atr-product {
    padding: 5px 50px;
    margin-bottom: 20px;
}

.delivery_table__item:before {
    content: "";
    display: block;
    background-image: url(../img/icons/loading.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    position: absolute;
    height: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    background-size: contain;
    top: 0px;
    right: -25px;
    cursor: pointer;
}

