.thumbnail-img {
  width: 100%;
  height: 250px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  border-radius: 10px 10px 0 0;
}

.mouse-cursor {
  cursor: pointer;
}

/* The container must be positioned relative: */
.akc-custom-select-1 {
  position: relative;
  font-family: Arial;
}

.akc-custom-select-1 select {
  display: none;
  /*hide original SELECT element: */
}

.select-selected {
  background-color: #ffffff;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
  border-radius: 5px;
  outline: none;
  border: none;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: #181818;
  font-size: 15px;
  padding: 16px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-sign-in-google {
  /* lign grey backend */
  background-color: #fff;
  color: #181818;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-sign-in-google:hover {
  background-color: #181818;
  color: #fff;
}

.btn-sign-in-google:active {
  background-color: #181818;
  color: #fff;
}

.akc-rounded-1 {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-left: 10px;
}

.cart_table_price {
  font-size: 15px;
  font-weight: 500;
  color: #808080;
  text-align: center;
  text-decoration: line-through;
}

.cart_table_discounted_price {
  font-size: 20px;
  font-weight: 600;
  color: #181818;
  text-align: center;
}

/* text custom css start */
/* medium sized medium weight light color */
.akc-text-1 {
  font-size: 15px;
  font-weight: 500;
  color: #808080;
}

/* medium sized medium weight dark color */
.akc-text-2 {
  font-size: 15px;
  font-weight: 500;
  color: #181818;
}

/* text custom css end */
.playlist-hover-effect-1 {
  /* background-color :rgba(0, 0, 0, 0.1) */
}

.playlist-hover-effect-1:hover {
  background-color: rgba(245, 128, 33, 0.1);
}

.playlist-hover-effect-1-active {
  background-color: rgba(245, 128, 33, 0.1);
}

.playlist-success {
  background-color: #e8fff3;
  border: 1px solid #50cd89;



  border-radius: 15px;

}

/* nav link to orange */
.nav-pills .nav-link.active {
  background-color: #062946 !important;
  color: #fff !important;
}

.nav-link {
  color: #181818 !important;
}

.akc-checkout-button {
  background-color: #062946;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.akc-checkout-button-outline {
  background-color: transparent;
  color: #062946;
  border: 1px solid #062946;
  outline: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.akc-search-container {
  display: flex;
  align-items: center;
  width: 300px;
  padding: 0px 6px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* width responsive */
@media (max-width: 768px) {
  .akc-search-container {
    width: 100%;
  }
}



.akc-search-container input[type="text"] {
  flex-grow: 1;
  border: none;
  padding: 8px;
  background-color: transparent;
  box-shadow: none;
}

.akc-search-container button {
  background-color: #fff;
  border: none;
  /* padding: 8px 12px; */
  margin-left: 6px;
  border-radius: 4px;
  cursor: pointer;
}

/* gallery style */
.image-container {
  height: 250px;
  width: 100%;
  position: relative;
  border-radius: 0px;
  margin-bottom: 0px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* gallery style */
/* width classes */
.w-10 {
  width: 10px;
}

.w-20 {
  width: 20px;
}

.w-30 {
  width: 30px;
}

.w-40 {
  width: 40px;
}

.w-50 {
  width: 50px;
}

.w-60 {
  width: 60px;
}

.w-70 {
  width: 70px;
}

.w-80 {
  width: 80px;
}

.w-90 {
  width: 90px;
}

.w-100 {
  width: 100px;
}

.w-110 {
  width: 110px;
}

.w-120 {
  width: 120px;
}

.w-130 {
  width: 130px;
}

.w-140 {
  width: 140px;
}

/* width classes */
/* height classes */
.h-10 {
  height: 10px;
}

.h-20 {
  height: 20px;
}

.h-30 {
  height: 30px;
}

.h-40 {
  height: 40px;
}

.h-50 {
  height: 50px;
}

.h-60 {
  height: 60px;
}

.h-70 {
  height: 70px;
}

.h-80 {
  height: 80px;
}

.h-90 {
  height: 90px;
}

.h-100 {
  height: 100px;
}

.h-110 {
  height: 110px;
}

.h-120 {
  height: 120px;
}

.h-130 {
  height: 130px;
}

.h-140 {
  height: 140px;
}

/* height classes */
/* akc file upload */
.custom-file-input {
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}

.custom-file-input input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  font-size: 100px;
  cursor: pointer;
}

.custom-file-input label {
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}

/* 
*/
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  color: inherit;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.close {
  float: right;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

/* #50cd89
#e8fff3
#7239ea
f8f5ff */
.akc-badge-info {
  background-color: #f8f5ff;
  color: #7239ea;
  border: 1px solid #7239ea;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
}

.akc-badge-success {
  background-color: #e8fff3;
  color: #50cd89;
  border: 1px solid #50cd89;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
}

.akc-active-menu {
  color: #062946 !important;
}

.akc-active-menu a {
  color: #062946 !important;
}





/* dropdown items custom classes .akc-dropdown-item */
.akc-dropdown-item {
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #181818;
  cursor: pointer;
  transition: all 0.3s ease;
  /* words should not break */
  white-space: nowrap;
  width: 100%;
}

.akc-dropdown-item:hover {
  background-color: #062946;
  color: #fff;
}

.akc-dropdown-item:active {
  background-color: #062946;
  color: #fff;
}

/* dropdown items custom classes .akc-dropdown-item */



/* ribbon */
.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}

.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  /* background: linear-gradient(#F70505 0%, #8F0808 100%); */
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px;
  right: -21px;
}