#products {
  font-family: "Montserrat", sans-serif;
  padding: 10px 10px 10px 10px;
  min-height: 40rem;
  text-align: center;
}
#products .category-box {
  display: flex;
  align-items: baseline;
  padding: 20px;
  width: 100%;
}
#products .search-box {
  display: flex;
  padding: 20px;
  width: 100%;
  max-width: 550px;
}
#products .preloader {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background-color: #191e29;
}
#products #products_items {
  position: relative;
  min-height: 300px;
}
#products #products_items #products_list {
  position: relative;
}
#products #products_items #products_list #cate_title {
  color: #01c38d;
}
#products #products_items #products_list .card {
  width: 100%;
  height: 256px;
  transition: all 0.2s;
  position: relative;
  cursor: pointer;
  background: #132d46;
  color: #fff;
  margin: 2.5vw;
}
#products #products_items #products_list .card .card-inner {
  width: inherit;
  height: inherit;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 5px;
}
#products #products_items #products_list .card .card-inner img {
  width: 100%;
  max-height: 60%;
  height: auto;
  min-height: 60%;
  min-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 35px;
}
#products #products_items #products_list .card .card-inner p {
  font-size: 1rem;
  word-break: normal;
}
#products #products_items #products_list .card .circle {
  width: 4rem;
  height: 4rem;
  background: radial-gradient(#b0e633, #01c38d);
  border-radius: 50%;
  position: absolute;
  animation: move-up6 2s ease-in infinite alternate-reverse;
  display: flex;
  justify-content: center;
  align-items: center;
}
#products #products_items #products_list .card .circle i {
  font-size: 2.5rem;
}
#products #products_items #products_list .card .circle-edit {
  width: 4rem;
  height: 4rem;
  background: radial-gradient(#36526d, #2e4357);
  border-radius: 50%;
  position: absolute;
  top: -25px;
  right: -25px;
  animation: move-down1 2s ease-in infinite alternate-reverse;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
#products #products_items #products_list .card .circle-edit i {
  font-size: 2.5rem;
}
#products #products_items #products_list .card .circle-edit:hover {
  opacity: 0.8;
}
#products #products_items #products_list .card .circle-remove {
  width: 4rem;
  height: 4rem;
  background: radial-gradient(#691d09, #c30101);
  border-radius: 50%;
  position: absolute;
  bottom: -25px;
  right: -25px;
  animation: move-down1 2s ease-in infinite alternate-reverse;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
#products #products_items #products_list .card .circle-remove i {
  font-size: 2.5rem;
}
#products #products_items #products_list .card .circle-remove:hover {
  opacity: 0.8;
}
#products #products_items #products_list .card .circle:nth-child(1):hover {
  opacity: 0.8;
}
#products #products_items #products_list .card .circle:nth-child(1) {
  top: -25px;
  left: -25px;
  z-index: 2;
}
#products #products_items #products_list .card .circle:nth-child(2) {
  bottom: -25px;
  right: -25px;
  animation-name: move-down1;
}
@keyframes move-up6 {
  to {
    transform: translateY(-10px);
  }
}
@keyframes move-down1 {
  to {
    transform: translateY(10px);
  }
}
#products #products_items #products_list .card:hover {
  transform: scale(1.04) rotate(1deg);
}

#add_product_modal label, #add_product_modal span {
  color: black;
}
#add_product_modal #currect_support_file {
  display: flex;
  align-items: center;
  border-style: dashed;
  width: -moz-fit-content;
  width: fit-content;
  color: #084cdf;
  padding: 10px;
  font-size: 1rem;
}
#add_product_modal #currect_support_file span {
  color: #084cdf;
}
#add_product_modal #currect_support_file i {
  color: #c30101;
  cursor: pointer;
}

input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #555;
}

input[type=file]::file-selector-button {
  margin-right: 5px;
  margin-left: 5px;
  border: none;
  background: #084cdf;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  background: #0d45a5;
}/*# sourceMappingURL=products.css.map */