.v-spinner {
  position: fixed;
  inset: 0;
  /* cover entire screen */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  font-size: 0;
  background: #00000047;
}

.v-spinner-inner {
  display: grid;
  grid-template-columns: repeat(3, 20px);
  /* 3 columns */
  grid-template-rows: repeat(3, 20px);
  /* 3 rows */
  gap: 4px;
  /* space between dots */
}

.v-grid {
  background-color: #2359A8;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  animation: v-gridStretchDelay 0.8s infinite ease-in-out both;
}

/* Staggered animation delays */
.v-grid1 {
  animation-delay: 0s;
}

.v-grid2 {
  animation-delay: 0.1s;
}

.v-grid3 {
  animation-delay: 0.2s;
}

.v-grid4 {
  animation-delay: 0.3s;
}

.v-grid5 {
  animation-delay: 0.4s;
}

.v-grid6 {
  animation-delay: 0.5s;
}

.v-grid7 {
  animation-delay: 0.6s;
}

.v-grid8 {
  animation-delay: 0.7s;
}

.v-grid9 {
  animation-delay: 0.8s;
}

/* Animation */
@keyframes v-gridStretchDelay {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.5);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.font-days {
  font-family: "Days One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.clipp-path {
  clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0 5%);
}

@media (min-width: 1536px) {
  .accordion-button::after {
    top: 10px !important;
  }
}

@media (min-width: 1200px) {
  .accordion-button::after {
    top: 11px;
  }
  
  .protectionplan-slider .slick-slide:not(:last-child) {
    margin-right: 70px;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .accordion-button::after {
    top: 10px;
  }
  .protectionplan-slider .slick-slide:not(:last-child) {
    margin-right: 30px;
  }
}

@media (min-width: 320px) and (max-width: 1024px) {
  .protectionplan-slider .slick-slide:not(:last-child) {
    margin-right: 15px;
  }
}

.protectionplan-slider .slick-track {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 10px;
}

.protectionplan-slider .slick-slide .slick-active {
  width: 35px;
  height: 8px;
  background: #2459a8;
  border-radius: 50px;
}

.protectionplan-slider .slick-dots li {
  width: 8px;
  height: 8px;
  border: 1px solid #F8B134;
  border-radius: 50px;
  transition: all ease 0.4s;
}

.protectionplan-slider .slick-dots li.slick-active {
  width: 35px;
  background: #2459a8;
  border: 0;
}

.protectionplan-slider .slick-dots li button {
  display: none;
}

.is-invalid {
  border-color: #fe0000 !important;
}

.invalid-feedback {
  color: #fe0000;
  font-size: 14px;
  text-align: left;
  display: block;
}

.toast {
  min-width: 250px;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.success {
  background-color: #28a745;
}

.toast.error {
  background-color: #dc3545;
}

.customScrollbar::-webkit-scrollbar {
  width: 4px;
}

.customScrollbar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #E3E3E3;
  border-radius: 10px;
}

.customScrollbar::-webkit-scrollbar-thumb {
  background: #D4D4D4;
  border-radius: 10px;
}

.modalselection {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

#modalIncluded li:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  background-image: url('../../assets/images/yellow-check-icon.svg');
  background-position: center;
  background-size: contain;
  width: 22px;
  height: 22px;
}

#modalExcluded li:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  background-image: url('../../assets/images/excluded-items-icon.svg');
  background-position: center;
  background-size: contain;
  width: 22px;
  height: 22px;
}

@media screen and (max-width: 767px) {

  #modalIncluded li:after,
  #modalExcluded li:after {
    width: 20px;
    height: 20px;
  }
}

/* modal base */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* show modal */
.modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* dialog animation */
.modal-dialog {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

/* backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
}

/* accordio ns  */
.accordion-button {
  width: 100%;
  padding: 10px 10px 10px 40px;
  background: #1B51A2;
  color: #F5B134;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

/* arrow */
.accordion-button::after {
  content: "";
  background-image: url('../images/Plus-icon.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 12px;
  transition: transform 0.3s ease;
  font-size: 30px;
  color: white;
}

.accordion-button.active::after {
  content: "";
  background-image: url('../images/Minus-icon.png');
}

.accordion-collapse {
  height: 0;
  overflow: hidden;
}

.accordion-body {
  padding: 0px 15px 15px 40px; 
  background: #1B51A2;
  color: white;
}

.accordion-button.active {
  font-weight: 600;
}