@charset "UTF-8";
@font-face {
  font-family: "Avartape-Light";
  src: url("../fonts/avertape-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Avartape-Regular";
  src: url("../fonts/avertape-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Avartape-Semibold";
  src: url("../fonts/avertape-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Avartape-Bold";
  src: url("../fonts/avertape-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
.w-reset {
  max-width: 100%;
  width: 100%;
}

.ul-reset {
  margin: 0;
  padding: 0;
}
.ul-reset li {
  list-style-type: none;
}

p {
  margin: 0 !important;
  line-height: 130%;
}

a {
  text-decoration: none !important;
}

.clear-li {
  padding: 0;
  margin: 0;
}
.clear-li li {
  list-style: none;
}

.fs-12 {
  font-size: 12px;
}
@media only screen and (max-width: 639px) {
  .fs-12 {
    font-size: 10px;
  }
}

.fs-11 {
  font-size: 11px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-27 {
  font-size: 27px;
}

.bold-400 {
  font-family: "Avartape-Regular", sans-serif;
}

.bold-600 {
  font-family: "Avartape-Semibold", sans-serif;
}

.bold-700 {
  font-family: "Avartape-Bold", sans-serif;
}

.center {
  text-align: center;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.case {
  text-transform: normal;
}

.nocase {
  text-transform: none;
}

.prel {
  position: relative;
}

.pabs {
  position: absolute;
}

.pfix {
  position: fixed;
}

header {
  position: sticky;
  top: 0;
  background: #F4F4F4;
  z-index: 10;
}

.search-bar {
  position: relative;
}
.search-bar input {
  height: 51px;
  border-radius: 30px;
  padding-left: 60px;
  border: 1px solid #B7B7B7;
}
.search-bar .search-icon {
  position: absolute;
  left: 20px;
  top: 16px;
  z-index: 1;
}

.main-btn {
  border-radius: 24px;
  padding: 13px 19px;
  font-size: 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.main-btn svg {
  margin-right: 10px;
}
.main-btn.light-blue {
  background: #D0E8FF;
  color: #2C7DCC;
}
.main-btn.blue {
  background: #2C7DCC;
  color: white;
}
.main-btn:hover.light-blue {
  background: #2C7DCC;
  color: white;
  transition: all 0.3s ease-in-out;
}
.main-btn:hover.light-blue svg path {
  fill: white;
  transition: all 0.3s ease-in-out;
}
.main-btn:hover.blue {
  background: #D0E8FF;
  color: #2C7DCC;
  transition: all 0.3s ease-in-out;
}
.main-btn:hover.blue svg path {
  fill: #2C7DCC;
  transition: all 0.3s ease-in-out;
}

.header-logo {
  width: 85px;
}
@media (max-width: 768px) {
  .header-logo {
    width: 55px;
  }
}

.mobile-header .menu-wrapper {
  position: relative;
}
.mobile-header .burger {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2C7DCC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  transition: all 0.3s ease;
}
.mobile-header .burger span {
  width: 20px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  display: block;
}
.mobile-header .burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-header .burger.active span:nth-child(2) {
  opacity: 0;
}
.mobile-header .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.mobile-header .menu {
  display: none;
  position: absolute;
  top: 175px;
  right: 0;
  left: 0;
  background-color: #F4F4F4;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-height: 70vh;
  max-height: 83vh;
  width: 100%;
  overflow: scroll;
}
.mobile-header .search-icon-wrapper {
  background: #1e6ed8;
  height: 100%;
  width: 55px;
  display: block;
  z-index: 11;
  position: absolute;
  right: 0;
  border-radius: 0 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-header .search-icon-wrapper .search-icon {
  position: unset;
}
.mobile-header .search-icon-wrapper .search-icon path {
  fill: white;
}
.mobile-header .search-bar input {
  padding-left: 50px;
}
.mobile-header .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-header .menu ul li {
  margin-bottom: 10px;
}
.mobile-header .menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.mobile-header .menu ul li:last-child {
  margin-bottom: 0;
}
.mobile-header .button-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mobile-header .button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
.mobile-header .call-button {
  background-color: #d3eaff !important;
  color: #D0E8FF;
}
.mobile-header .menu-button {
  background-color: #1e6ed8;
  color: white;
}
.mobile-header .search-bar input {
  padding-left: 20px !important;
}

.open-modal-btn, .cat-btn {
  font-size: 16px;
  cursor: pointer;
}

.cat-btn {
  padding-left: 30px;
}
.cat-btn .burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.cat-btn:hover .burger span {
  background-color: white;
}
.cat-btn .burger {
  width: 18px;
  height: 12px;
  gap: 3px;
  padding-right: 15px;
}
.cat-btn .burger span {
  background-color: #2C7DCC;
}

.mobile-cat-wrapper {
  padding-bottom: 60px;
}

.filter-category {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* клас, който ще показва менюто */
.filter-category.active {
  max-height: 500px;
  opacity: 1;
}

.cat-mobile {
  border-bottom: 1px solid #B7B7B7;
  padding: 20px 23px !important;
}

.btn-close {
  filter: invert(1);
}

.footer-top {
  background-color: #D0E8FF;
}

.footer-link {
  color: #2C7DCC;
  font-size: 18px;
  text-decoration: none;
  font-family: "Avartape-Bold", sans-serif;
  transition: opacity 0.3s ease-in-out;
}
.footer-link:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: #2C7DCC;
  font-family: "Avartape-Semibold", sans-serif;
}

.footer-logo {
  width: 85px;
}

.body {
  font-family: "Avartape-Regular", sans-serif;
}

header {
  border-bottom: 1px solid #B7B7B7;
}

.fw-bold {
  font-family: "Avartape-Semibold", sans-serif !important;
}

.fw-bolder {
  font-family: "Avartape-Bold", sans-serif !important;
}

.main-wrapper {
  padding: 15px 50px;
}
@media (max-width: 1025px) {
  .main-wrapper {
    padding: 15px 20px;
  }
}

.product {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
  background: white;
  border: 1px solid rgb(208, 232, 255);
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .product {
    margin-bottom: 20px;
  }
}
.product .case-heading {
  transition: color 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .product .case-heading {
    font-size: 18px;
  }
}
.product:hover .case-heading {
  color: #2C7DCC;
  transition: color 0.3s ease-in-out;
}

.product {
  overflow: hidden;
}

.product img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  width: 331px;
  height: 221px;
}
@media (max-width: 1800px) {
  .product img {
    width: 321px;
    height: 221px;
  }
}
@media (max-width: 1700px) {
  .product img {
    width: 300px;
    height: 200px;
  }
}
@media (max-width: 1600px) {
  .product img {
    width: 290px;
    height: 190px;
  }
}
@media (max-width: 1500px) {
  .product img {
    width: 280px;
    height: 180px;
  }
}
@media (max-width: 1400px) {
  .product img {
    width: 240px;
    height: 160px;
  }
}
@media (max-width: 1024px) {
  .product img {
    width: 230px;
    height: 130px;
  }
}

.min-h {
  display: flex;
  justify-content: center;
  min-height: 482px;
}
@media (max-width: 1500px) {
  .min-h {
    min-height: 400px;
  }
}
@media (max-width: 1024px) {
  .min-h {
    width: 330px;
    height: 330px;
    min-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

.modal-image {
  width: 702px !important;
  height: 482px;
  object-fit: cover;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .modal-image {
    width: 330px !important;
    height: 330px;
  }
}

.modal-case-lg img {
  width: 702px !important;
  height: 482px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .modal-case-lg img {
    width: 330px !important;
    height: 330px;
    padding: 0 !important;
    object-fit: cover;
  }
}

.price {
  color: #007bff;
  font-weight: bold;
}

.prod-modal .modal-header {
  position: absolute;
  right: 0;
}

.prod-modal .modal-xl {
  max-width: 1400px !important;
}

.prod-modal .modal-content {
  border-radius: 40px !important;
  padding-bottom: 37px;
  padding-right: 0;
  padding-top: 20px;
  padding-left: 0;
}
.prod-modal .modal-content .discount {
  width: max-content;
}
.prod-modal .modal-content .btn-close {
  filter: invert(0);
}
@media (max-width: 1025px) {
  .prod-modal .modal-content {
    padding: 20px 20px;
    border-radius: 16px !important;
    top: 50px;
    margin-bottom: 130px;
  }
  .prod-modal .modal-content .btn-close {
    padding: 0;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .prod-modal .modal-content img {
    padding: 0 60px;
  }
  .prod-modal .modal-content input {
    width: 100%;
  }
  .prod-modal .modal-content .discount {
    margin-top: 20px !important;
  }
  .prod-modal .modal-content .modal-submit-wrapper {
    flex-direction: column;
  }
  .prod-modal .modal-content .modal-submit-wrapper .main-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 0;
  }
  .prod-modal .modal-content .modal-submit-wrapper .share-link {
    font-size: 15px;
    transition: color 0.3s ease-in-out;
  }
}

.modal-right {
  padding-right: 100px !important;
  padding-top: 17px;
}
@media (max-width: 768px) {
  .modal-right {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.modal-heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  font-family: "Avartape-Bold", sans-serif !important;
}
@media (max-width: 1025px) {
  .modal-heading {
    font-size: 32px;
  }
}

.form-select {
  border-radius: 30px !important;
  border: 1px solid #B7B7B7 !important;
  color: #282828 !important;
  padding: 15px 20px !important;
}

.case-type {
  font-size: 14px;
  margin-bottom: 5px !important;
}

.case-heading {
  font-size: 20px;
  font-weight: 600;
}

.case-price {
  font-family: "Avartape-Bold", sans-serif;
  color: #2C7DCC;
  font-size: 28px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .case-price {
    font-size: 25px;
  }
}

.modal-body {
  padding: 0 !important;
}

.custom-upload {
  border: 1px dashed #2C7DCC;
  background-color: #DFECF8;
  border-radius: 20px;
  text-align: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.custom-upload:hover {
  background-color: #d0e8fc;
}

.custom-upload-icon {
  color: #2C7DCC;
  margin-bottom: 10px;
}

.custom-upload-text {
  color: #2C7DCC;
  font-family: "Avartape-Bold", sans-serif;
  font-size: 20px;
}
@media (max-width: 768px) {
  .custom-upload-text {
    font-size: 16px;
  }
}

input[type=file] {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Скрива стрелките в Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .h5 {
    font-size: 25px;
  }
}

.discount-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background: #FFEFE5;
  border: 1px dashed #FF5E00;
  color: #FF5E00;
  border-radius: 30px;
  padding: 5px 19px;
}
@media (max-width: 1025px) {
  .discount-banner {
    width: 100%;
  }
  .discount-banner svg {
    width: 30px;
    margin-right: 10px !important;
  }
}

.share-link {
  font-size: 20px;
  color: #2C7DCC;
  margin-left: 15px;
}

.share-link a {
  color: #2C7DCC;
  transition: color 0.3s ease-in-out;
}
.share-link a svg path {
  transition: stroke 0.3s ease-in-out;
}
.share-link a:hover {
  color: black;
  transition: color 0.3s ease-in-out;
}
.share-link a:hover svg path {
  stroke: black;
  transition: stroke 0.3s ease-in-out;
}

/* Cart */
.product-title {
  font-weight: 700;
  font-size: 14px;
}

.product-price {
  font-weight: 700;
  font-size: 20px;
}

.product-old-price {
  text-decoration: line-through;
  font-size: 12px;
}

.checkout-section {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #EDEDED;
  padding: 20px;
}

.delivery-title {
  font-weight: bold;
  font-size: 22px;
}

.summary-box {
  border-top: 1px dashed #FFA500;
  padding-top: 1rem;
}

.alert-box {
  background-color: #FFF4E5;
  border: 1px dashed #FFA500;
  font-size: 12px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
}

.custom-radio label {
  margin-right: 20px;
}

.btn-blue {
  background-color: #0074D9;
  color: white;
  border-radius: 999px;
  font-weight: 600;
}

.btn-tab {
  border-radius: 999px;
  padding: 0.25rem 1rem;
  font-weight: 600;
}

.summary-total {
  font-weight: bold;
  font-size: 16px;
}

.cart-wrapper {
  padding: 0 215px;
  z-index: 2;
}
@media (max-width: 1366px) {
  .cart-wrapper {
    padding: 0 8vw;
    padding-bottom: 220px;
  }
}
.cart-wrapper .section-title {
  font-size: 40px;
}
.cart-wrapper .price-new {
  font-size: 32px;
  color: #FF5E00;
}
.cart-wrapper .price-new.blue {
  color: #2C7DCC;
}
@media (max-width: 1024px) {
  .cart-wrapper {
    padding: 0;
    margin-bottom: 0;
  }
  .cart-wrapper .section-title {
    font-size: 24px;
  }
  .cart-wrapper .w-75 {
    width: 90% !important;
    line-height: 1.1 !important;
  }
  .cart-wrapper .single-final-price {
    justify-content: space-between;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .cart-wrapper .single-final-price {
    flex-wrap: wrap;
  }
  .cart-wrapper .single-final-price .custom-quantity-input {
    margin-left: 0 !important;
  }
}
@media (max-width: 1024px) {
  .cart-wrapper .column-sm {
    flex-direction: column;
    align-items: start !important;
  }
  .cart-wrapper .sum-wrapper {
    position: fixed;
    bottom: -20px;
    width: 100%;
    background: white;
    left: 0;
    z-index: 1;
    border-radius: 10px 10px 0 0 !important;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease-out;
    visibility: hidden;
    box-shadow: 0px 5px 10px 5px #a4a1a1;
    padding: 15px !important;
  }
  .cart-wrapper .sum-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .cart-wrapper .sum-wrapper hr {
    margin: 10px 0;
  }
  .cart-wrapper .submit-btn {
    padding: 10px 30px;
    font-size: 18px;
    margin-top: 20px !important;
  }
}

.product-box {
  border-radius: 20px;
}

.sum-wrapper {
  padding: 20px !important;
  border-radius: 20px !important;
  font-family: "Avartape-Semibold", sans-serif;
}
.sum-wrapper li {
  padding-bottom: 5px;
  font-size: 14px;
}
.sum-wrapper .highlight {
  color: #FF5E00;
}
.sum-wrapper .total {
  color: #2C7DCC;
  font-size: 16px;
}

.custom-form .form-control {
  border-radius: 30px;
  padding: 8px 15px;
  margin: 8px 0;
}
.custom-form .form-control::placeholder {
  color: #B7B7B7;
}

.tab-btn {
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 6px 0;
  margin-bottom: 15px;
}
.tab-btn svg {
  margin-right: 5px;
}
.tab-btn.econt-btn {
  background: white;
  color: #244082;
  border: 1px solid #244082;
  transition: all 0.3s ease-in-out;
}
.tab-btn.econt-btn path, .tab-btn.econt-btn rect {
  fill: #244082;
  transition: fill 0.3s ease-in-out;
}
.tab-btn.econt-btn:hover, .tab-btn.econt-btn.active {
  background-color: #244082;
  border: 1px solid #244082;
  color: white;
  transition: all 0.3s ease-in-out;
}
.tab-btn.econt-btn:hover path, .tab-btn.econt-btn:hover rect, .tab-btn.econt-btn.active path, .tab-btn.econt-btn.active rect {
  transition: fill 0.3s ease-in-out;
  fill: white;
}
.tab-btn.speedy-btn {
  background-color: white;
  border: 1px solid #DC0132;
  color: #DC0132;
  transition: all 0.3s ease-in-out;
}
.tab-btn.speedy-btn path, .tab-btn.speedy-btn rect {
  transition: fill 0.3s ease-in-out;
}
.tab-btn.speedy-btn:hover, .tab-btn.speedy-btn.active {
  background: #DC0132;
  color: white;
  border: 1px solid #DC0132;
  transition: all 0.3s ease-in-out;
}
.tab-btn.speedy-btn:hover path, .tab-btn.speedy-btn:hover rect, .tab-btn.speedy-btn.active path, .tab-btn.speedy-btn.active rect {
  fill: white;
  transition: fill 0.3s ease-in-out;
}

.free-label {
  color: #FF5E00;
  background: #FFEFE5;
  border: 1px solid #FF5E00;
  border-radius: 5px;
  font-size: 14px;
  padding: 2px 5px;
  margin-left: 5px;
}

.form-check-input {
  border-color: #8F8F9D !important;
}

.checkmark-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.success-wrapper {
  text-align: center;
  margin: 30px auto;
  max-width: 650px;
}
.success-wrapper .title {
  color: #2C7DCC;
  font-size: 38px;
}
.success-wrapper .order-info {
  font-size: 14px;
  margin-bottom: 40px;
}
.success-wrapper .promo-box {
  margin: 30px auto;
  margin-bottom: 0;
  padding: 30px 20px;
  border: 1px solid #EBEBEB;
  border-radius: 20px;
  text-align: left;
}
.success-wrapper .promo-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
}
.success-wrapper .promo-subtitle {
  font-size: 18px;
  display: flex;
  align-items: center;
}
.success-wrapper .promo-subtitle svg {
  margin-left: 5px;
  margin-right: 5px;
}
.success-wrapper .promo-subtitle a {
  color: #1A73E8;
  font-weight: 600;
  text-decoration: none;
}
.success-wrapper .promo-code {
  width: 160px;
}
.success-wrapper .promo-code-box {
  border: 1px dashed #FF5E00;
  color: #FF5E00;
  background-color: #FFEFE5;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Avartape-Bold", sans-serif;
  margin-left: 20px;
  width: 100%;
}
.success-wrapper .promo-code-box svg {
  margin-right: 5px;
}
.success-wrapper .small-text {
  font-size: 13px;
  color: #333;
}
.success-wrapper .small-text b {
  font-weight: 600;
}
@media (max-width: 1024px) {
  .success-wrapper img {
    width: 145px;
  }
  .success-wrapper .title {
    font-size: 36px;
  }
  .success-wrapper .promo-title {
    font-size: 40px;
  }
  .success-wrapper .promo-subtitle {
    font-size: 20px;
    display: block;
    line-height: 1.1;
    margin-top: 10px;
  }
  .success-wrapper .column-sm {
    flex-direction: column;
    align-items: start !important;
  }
  .success-wrapper .promo-code-box {
    margin-left: 0;
    margin-top: 10px;
  }
  .success-wrapper .main-btn.light-blue {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}

.btn-group.tabs {
  background: #EDEDED;
  border-radius: 30px;
}
.btn-group.tabs .company {
  color: #2C7DCC !important;
  border-radius: 30px !important;
  border: 4px solid #EDEDED;
}
.btn-group.tabs .company:hover {
  background: #2C7DCC;
  color: white !important;
}
.btn-group.tabs .company.active {
  background: #2C7DCC;
  color: white !important;
}
.btn-group.tabs .person {
  color: #2C7DCC !important;
  border-radius: 30px !important;
  border: 4px solid #EDEDED;
}
.btn-group.tabs .person:hover {
  background: #2C7DCC;
  color: white !important;
}
.btn-group.tabs .person.active {
  background: #2C7DCC;
  color: white !important;
}

.company-wrapper, .personal-wrapper {
  display: none;
}
.company-wrapper.active, .personal-wrapper.active {
  display: block;
}

.submit-btn {
  border: 0;
  padding: 15px 30px;
  border-radius: 30px;
}

.filter-category a {
  padding-right: 20px;
  transition: color 0.3s ease-in-out;
}
.filter-category a:hover {
  transition: color 0.3s ease-in-out;
  color: #2C7DCC !important;
}
.filter-category a.active {
  color: #2C7DCC !important;
}

.cart-quantity {
  position: absolute;
  font-size: 10px;
  background: #DB011C;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  top: -3px;
  right: -3px;
}

.expand-cat {
  display: none;
  padding: 15px 0 !important;
}
.expand-cat.active {
  display: block;
}
.expand-cat li {
  margin-bottom: 5px !important;
}
.expand-cat a {
  color: #837e7e !important;
  font-size: 14px;
}
.expand-cat a:hover {
  color: #1e6ed8 !important;
  transition: color 0.3s ease-in-out;
}

.open-cat {
  transition: color 0.3s ease-in-out;
}
.open-cat.active {
  transition: color 0.3s ease-in-out;
  color: #1e6ed8;
}

.arrow {
  transition: transform 0.3s ease-in-out;
}
.arrow svg {
  transition: fill 0.3s ease-in-out;
}
.arrow.active {
  transition: transform 0.3s ease-in-out;
  transform: rotate(90deg);
}
.arrow.active path {
  fill: #1e6ed8;
  transition: fill 0.3s ease-in-out;
}

.mobile-footer {
  margin-top: 10px;
}
.mobile-footer .footer-link {
  font-size: 16px !important;
  margin-bottom: 5px;
}

.delete-prod {
  transition: color 0.3s ease-in-out;
}
.delete-prod svg path {
  transition: fill 0.3s ease-in-out;
}
.delete-prod:hover {
  color: #DC0132;
  transition: color 0.3s ease-in-out;
}
.delete-prod:hover svg path {
  fill: #DC0132;
  transition: fill 0.3s ease-in-out;
}

.contact-card {
  width: 100%;
  background: rgb(248, 246, 246);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-card svg {
  margin-right: 10px;
}

.form-group-new {
  padding-bottom: 15px;
}

.form-new {
  background: white;
  border-radius: 15px;
  text-align: left;
  color: #8d9093;
}

.form-group-new input, .form-group-new select {
  height: 45px;
}

.see-all-btn {
  background: #2C7DCC;
  border: 1px solid #2C7DCC;
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease-in-out;
}
.see-all-btn path {
  transition: all 0.3s ease-in-out;
}
.see-all-btn:hover {
  background: white;
  color: #2C7DCC;
  transition: all 0.3s ease-in-out;
}
.see-all-btn:hover svg path {
  fill: #2C7DCC;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .connect-with-us p {
    width: 100% !important;
  }
}
.wysiwyg {
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .wysiwyg {
    padding: 20px;
    margin-bottom: 0;
  }
}
.wysiwyg h1 {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .wysiwyg h1 {
    margin-top: 20px;
  }
}
.wysiwyg h2, .wysiwyg h3 {
  margin-top: 2vw;
}
.wysiwyg ul {
  margin: 1em 0;
  padding-left: 20px;
}
.wysiwyg .last-updated {
  color: #777;
  font-size: 0.9em;
  margin-bottom: 30px;
}

.filter-category {
  padding-top: 10px;
}
.filter-category a:first-child {
  margin-left: 0 !important;
}
.filter-category img {
  width: 80px;
  height: 72px;
  object-fit: contain;
}
@media (max-width: 1800px) {
  .filter-category img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1500px) {
  .filter-category img {
    width: 50px;
    height: 50px;
  }
}

.menu {
  z-index: 1;
}

#myModal1 .modal-content {
  padding: 20px 30px;
}

#myModal1 .modal-body {
  border: 0;
}
#myModal1 .modal-body i {
  line-height: 1 !important;
}
#myModal1 .btn-close {
  position: absolute;
  right: 30px;
  top: 30px;
  border: 0;
  outline: 0;
  opacity: 1;
}
@media (max-width: 768px) {
  #myModal1 .btn-close {
    right: 10px;
    top: 20px;
  }
}

.tel-btn {
  transition: color 0.3s ease-in-out;
}
.tel-btn path {
  transition: stroke 0.3s ease-in-out;
}
.tel-btn:hover {
  transition: color 0.3s ease-in-out;
  color: #2C7DCC !important;
}
.tel-btn:hover svg path {
  stroke: #2C7DCC;
  transition: stroke 0.3s ease-in-out;
}

.custom-quantity-input {
  width: 90px;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.image-loader.hidden {
  pointer-events: none;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #ddd;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.product-image {
  width: 100%;
  display: block;
}

.note-i {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .note-i {
    width: 100%;
  }
}

#btn-go-cart {
  background-color: #2C7DCC !important;
  color: white;
  border-radius: 24px;
  padding: 13px 19px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  border: 0;
}
#btn-go-cart:hover {
  background-color: #D0E8FF !important;
  color: #2C7DCC;
  transition: all 0.3s ease-in-out;
}

#btn-continue {
  background-color: #D0E8FF !important;
  color: #2C7DCC;
  border-radius: 24px;
  padding: 13px 19px;
  font-size: 18px;
  display: inline-flex !important;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border: 0;
}
#btn-continue:hover {
  background-color: #2C7DCC !important;
  color: white;
  transition: all 0.3s ease-in-out;
}

.boxnow-btn {
  border: 1px solid #6cd04e;
  color: #6cd04e;
  background: white;
}
.boxnow-btn.active {
  border: 1px solid #6cd04e;
  color: white;
  background: #6cd04e;
}

.select2-container {
  width: 100%;
}

.select2-selection__arrow {
  display: none;
}

.select2-selection {
  border: 0;
}

.select2-container .select2-selection--single {
  height: 56px !important;
  display: flex !important;
  align-items: center;
}

.select2-container--default .select2-selection--single {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  width: 100%;
  height: 56px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 30px !important;
  border: 1px solid #DFE1E5 !important;
  color: #282828 !important;
  padding-left: 20px;
  display: flex !important;
  margin-top: 20px;
}

.svg-select {
  position: absolute;
  width: 15px;
  top: 40px;
  right: 20px;
}

.select2 .select2-container .select2-container--default .select2-container--focus {
  width: 100% !important;
}

.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-prev {
  filter: invert(1);
}

.header-logo {
  width: 85px;
}
@media (max-width: 768px) {
  .header-logo {
    width: 55px;
  }
}

@media (max-width: 768px) {
  .open-modal-btn {
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
  }

  .free-label {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .logo-mobile {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
  }
}

@media (max-width: 768px) {
  .filter-category {
    padding-top: 0;
  }
  .mobile-header .menu {
    top: 81px;
  }
  .header-wrapper {
    padding: 0;
  }
  .mobile-header {
    padding: 15px 20px;
  }
}
.breadcrumb a {
  color: #2C7DCC;
}

.single-prod {
  display: block !important;
}
.single-prod .modal-content {
  top: 0;
  margin-bottom: 0;
}

.tab-btn {
  position: relative;
}

.tab-btn::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.94em;
  height: 0.94em;
  outline: 1px solid #8F8F9D;
  border-radius: 100%;
  background: #fff;
  box-sizing: border-box;
  left: 15px;
}

.tab-btn.active::before {
  border: 4px solid #0d6efd;
}

.discount-banner {
  width: 90% !important;
  margin: 23px auto !important;
}
@media (max-width: 768px) {
  .discount-banner {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .btn-group {
    display: flex;
    flex-wrap: wrap;
  }
  .btn-group button {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
