/* ==================== RESPONSIVE STYLES ==================== */
.mobile-block {
  display: none;
}

@media (max-width: 1200px) {
  /* tablet devices */
}
@media (max-width: 992px) {
  /* small tablet devices */
  .slider-main .item-slide {
    height: auto;
  }

  .table-shopping-cart tr td:first-child {
    width: 250px;
  }
  .table-shopping-cart .itemside .info {
    padding: 0;
  }
  .table-shopping-cart .itemside .aside {
    display: none;
  }
}
@media all and (max-width: 768px) {
  /* mobile devices */
  .mobile-block {
    display: block;
  }

  .mobile-hide {
    display: none;
  }

  .section-header .logo {
    max-height: 40px;
    width: auto;
  }
  .section-header .header-main .brand-wrap {
    margin-bottom: 1rem;
    display: inline-block;
  }
  .section-header .header-main .search {
    margin-bottom: 1rem;
  }

  .item-feature {
    margin-bottom: 20px;
  }

  .mobile-order-first {
    order: -1;
  }

  .mobile-order-1 {
    order: 1;
  }

  .mobile-order-2 {
    order: 2;
  }

  .mobile-order-3 {
    order: 3;
  }

  .mobile-py {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mobile-pb {
    padding-bottom: 20px;
  }

  .mobile-pt {
    padding-top: 20px;
  }

  .navbar-expand .navbar-collapse {
    flex-direction: column;
  }
}

/* ==================== AJAX LOADER STYLES ==================== */
#ajax-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 9999;
}

#ajax-loader:before {

    content: '';

    position: absolute;

    top: 50%;
    left: 50%;

    width: 40px;
    height: 40px;

    margin: -20px 0 0 -20px;

    border:4px solid #dbeafe;
    border-top-color:#0d6efd;

    border-radius:50%;

    animation:spin .8s linear infinite;

}


@keyframes spin {

    from {
        transform:rotate(0deg);
    }

    to {
        transform:rotate(360deg);
    }

}

/* ==================== NOTIFICATION / TOAST STYLES ==================== */
/* new update to toast START */
.custom-toast,
.custom-toast * {
    box-sizing: border-box;
    line-height: 1.2;
}

.custom-toast p,
.custom-toast h1,
.custom-toast h2,
.custom-toast h3,
.custom-toast h4,
.custom-toast h5,
.custom-toast h6 {
    margin: 0;
}

.custom-toast button {
    line-height: 1;
}

/* new update to toast END */




.custom-toast-container {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1050;
  margin-bottom: 1rem;
}

.custom-toast {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
  width: 330px;
  height: auto;
  padding: 10px 15px;
  background-color: #ffffff;
  border-radius: 140px;
  box-shadow: 0 9px 10px rgb(0 0 0 / 29%);
  margin-right: 1rem;
  align-items: center;
  display: flex;
  margin-bottom: 0.5rem;
}

.custom-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.custom-toast .icon-container {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.custom-toast .icon-container > svg {
  height: 34px;
}

.custom-toast .content-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.custom-toast .content-container .title {
  font-weight: 600;
  font-size: 15px;
}

.custom-toast .content-container .message {
  font-size: 14px;
  font-weight: 400;
  color: #111215;
}

.custom-toast > button {
  background-color: transparent;
  font-size: 25px;
  color: #9b9dab;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  height: 34px;
  width: 34px;
}

.custom-toast.success .icon-container > svg {
  fill: #47D764;
}

.custom-toast.success .content-container .title {
  color: #47d764;
}

.custom-toast.error .icon-container > svg {
  fill: #ff355b;
}

.custom-toast.error .content-container .title {
  color: #ff355b;
}

.custom-toast.info .icon-container > svg {
  fill: #2F86EB;
}

.custom-toast.info .content-container .title {
  color: #2F86EB;
}

.custom-toast.warning .icon-container > svg {
  fill: #FFC021;
}

.custom-toast.warning .content-container .title {
  color: #FFC021;
}

.custom-toast-container .custom-toast:last-child {
  margin-bottom: 1rem;
}

@media (max-width: 568px) {
  .custom-toast {
      margin: auto 0.5rem;
      left: 0;
      right: 0;
      width: calc(100% - 1rem);
      margin-bottom: 0.5rem;
  }

  .custom-toast-container {
      margin: 0;
  }
}
