body .logo-imagesBase {
  background: url(/resources/images/logo.svg) no-repeat scroll 0px 0px / 167px 40px rgba(0, 0, 0, 0);
  float: left;
  width: 167px;
  height: 40px;
}
body.dark .logo-imagesBase {
  background: url(/resources/images/logo-dark.svg) no-repeat scroll 0px 0px / 167px 40px rgba(0, 0, 0, 0);
  float: left;
  width: 167px;
  height: 40px;
}
textarea {
  min-height: 38px;
  max-height: 500px;
}
textarea:disabled {
  cursor: not-allowed;
}
label {
  cursor: pointer;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
input:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.circle-spinner {
  animation: spinner .7s linear infinite;
  border: 2px solid #FFF;
  border-right-color: transparent;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
@keyframes spinner {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
.filterProducts-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding-bottom: 5px;
  user-select: none;
  border-bottom: 2px solid #c1c1c100;
}
.filterProducts-btn.active {
  border-bottom: 2px solid #c1c1c1;
}
.prodImg-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5%;
}
.prodImg-block div[name="imgElement"]:first-child, .prodImg-block div[name="imgNew"]:first-child {
  width: 100%;
  margin-top: 0;
}
.prodImg-block div[name="imgElement"], .prodImg-block div[name="imgNew"] {
  width: 30%;
  border-radius: 10px;
  aspect-ratio: 3 / 4;
  position: relative;
  margin-top: 15px;
  display: flex;
}
.prodImg-block img {
  border-radius: 10px;
}
.prodImg-block div[name="imgNew"]:first-child .svgImg {
  width: 50px;
  height: 50px;
}
.prodImg-block div[name="imgNew"] .svgImg {
  width: 30px;
  height: 30px;
}
.prodImg-block div[name="imgNew"]:first-child .svgTitle {
  font-size: 28px;
}
.prodImg-block div[name="imgNew"] .svgTitle {
  font-size: 14px;
}
div[name="imgSettings"] {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ffffff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
}
div[name="imgElement"]:hover div[name="imgSettings"], div[name="itemBlock-brandEl"]:hover div[name="imgSettings"] {
  display: block;
}
.prodImg-block div[name="imgNew"] {
  border: 2px solid #c1c1c1;
  border-style: dashed;
  color: #909090;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  user-select: none;
  cursor: pointer;
}
.pageNewProd-center {
  display: flex;
  width: 100%;
  gap: 20px;
  padding: 20px;
}
.pageNewProd-center .elementInfo .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pageNewProd-center .elementInfo .items .title {
  font-size: 20px;
  font-weight: bold;
}
.pageNewProd-center .elementInfo .items .elFlex {
  display: flex;
  width: 100%;
  gap: 20px;
}
.pageNewProd-center .elementInfo .items .el {
  width: 100%;
}
.requiredValue {
  color: #ff0000;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  overflow-y: auto;
}
.modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 16px;
}
.modal-panel {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 512px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: #fbfbfb;
}
.modal-body {
  padding: 20px;
  background-color: #ffffff;
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 20px 20px 20px;
  background-color: #ffffff;
}
.custom-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1rem;
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: .375rem;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}
.custom-file-btn:hover {
  border-color: #4361ee;
}
.custom-file-btn .btn-text {
  pointer-events: none;
}
.btn-text {
  color: #5c616a;
}
.btn-text.value {
  color: #000000;
}
div[name="items-pageBrands"] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.cookie {
  background-color: #363740;
  box-shadow: 0 3px 5px #1f2026;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  max-width: 835px;
  width: 100%;
  padding: 20px 25px 20px 20px;
  border-radius: 15px;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.cookie.hidden {
  opacity: 0;
  display: none;
}
.cookie__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cookie__wrapper .cookie__section-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
.cookie__wrapper .cookie__section-description {
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}
.cookie__wrapper .cookie__section-description .cookie__link {
  color: #ffffffa8;
  text-decoration: underline;
}
.cookie__wrapper .cookie__section-description .cookie__link:hover {
  color: #ffffff;
}
.cookie__wrapper .button {
  border-radius: 10px;
  background: #ffffff;
  padding: 10px 20px;
  font-weight: bold;
}
.reviews-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
}
.review-star {
  color: #001a341f;
}
.review-star.on {
  color: #ffa800;
}
.timer, .statusGreen {
  background: #ddf1e4;
  color: #199854;
  width: max-content;
  font-weight: bold;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 5px;
}
.statusYellow {
  background: #ffe9ce;
  color: #ff8058;
  width: max-content;
  font-weight: bold;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 5px;
}
.statusRed {
  background: #ffe5e7;
  color: #ff4651;
  width: max-content;
  font-weight: bold;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 5px;
}
.statusGray {
  background: #f0f0f3;
  color: #767386;
  width: max-content;
  font-weight: bold;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 5px;
}
@media (max-width: 1023px) {
  body .logo-images {
    background: url(/resources/images/logoMin.png) no-repeat scroll 0px 0px / 43px 40px rgba(0, 0, 0, 0);
    float: left;
    width: 43px;
    height: 40px;
  }
  body.dark .logo-images {
    background: url(/resources/images/logoMin-dark.png) no-repeat scroll 0px 0px / 43px 40px rgba(0, 0, 0, 0);
    float: left;
    width: 43px;
    height: 40px;
  }
  div.dataTable-search, input.dataTable-input {
    width: 100% !important;
  }
  .pageNewProd-center {
    flex-direction: column;
  }
  .pageNewProd-center .elementImg {
    width: 100%;
  }
  .pageNewProd-center .elementInfo {
    width: 100%;
  }
  div[name="imgSettings"] {
    display: block;
  }
  .pageNewProd-center .elementInfo .items .elFlex {
    flex-direction: column;
  }
  .group-hover\:opacity-100 {
    opacity: 1;
  }
  div[name="items-pageBrands"] {
    justify-content: center;
  }
  .cookie {
    width: auto;
    left: 0;
    transform: none;
    margin: 20px;
  }
  .cookie__wrapper {
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  body .logo-images {
    background: url(/resources/images/logo.svg) no-repeat scroll 0px 0px / 167px 40px rgba(0, 0, 0, 0);
    float: left;
    width: 167px;
    height: 40px;
  }
  body.dark .logo-images {
    background: url(/resources/images/logo-dark.svg) no-repeat scroll 0px 0px / 167px 40px rgba(0, 0, 0, 0);
    float: left;
    width: 167px;
    height: 40px;
  }
  .pageNewProd-center {
    flex-direction: row;
  }
  .pageNewProd-center .elementImg {
    width: 30%;
  }
  .pageNewProd-center .elementInfo {
    width: 70%;
  }
  div[name="imgSettings"] {
    display: none;
  }
  .pageNewProd-center .elementInfo .items .elFlex {
    flex-direction: row;
  }
  .prodImg-block {
    position: sticky;
    top: 90px;
  }
  li.nav-item:has(a.nav-link) div.right_arrow {
    transition: all .4s ease-out;
    -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  li.nav-item:has(ul.sub-menu) div.right_arrow {
    transition: all .4s ease-out;
    -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  li.nav-item:has(a.nav-link:hover) div.right_arrow {
    transition: all .4s ease-out;
    -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
  }
  li.nav-item:has(ul.sub-menu:hover) div.right_arrow {
    transition: all .4s ease-out;
    -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
  }
}
@media (max-width: 1100px) {
  .absoluteMobile {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1101px) {
  .absoluteMobile {
    position: absolute;
  }
}