html {
  height: 100%;
}

body.scroll-locked {
  --removed-body-scroll-bar-size: 0;
  overflow: hidden !important;
  overscroll-behavior: contain;
  position: relative !important;
  padding-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  margin-left: 0;
  margin-top: 0;
  margin-right: 0px !important;
  height: 100%;
}
body.scroll-locked::before {
  content: "";
  position: fixed;
  inset: 0px;
  z-index: 5000;
  background-color: rgb(0, 0, 0);
  transition: opacity 0.33s;
  opacity: 0.7;
}
body.scroll-locked .vm-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  cursor: pointer;
  display: block;
}
body.scroll-locked .vm-upsell-selection {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background-color: #fff;
  pointer-events: auto;
}

.vm-backdrop {
  display: none;
}

.vm-upsell-selection {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  border-radius: 16px;
  z-index: 5001;
  padding: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.vm-upsell-selection .dropdown-menu {
  z-index: 5002;
}
@media (max-width: 768px) {
  .vm-upsell-selection {
    width: 95%;
    max-height: 95vh;
    padding: 16px;
  }
}
.vm-upsell-selection .vm-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
.vm-upsell-selection .vm-close-btn:hover {
  background-color: #f8f9fa;
  color: #495057;
}
.vm-upsell-selection .vm-close-btn:active {
  background-color: #e9ecef;
}
.vm-upsell-selection .vm-close-btn svg {
  width: 24px;
  height: 24px;
}
.vm-upsell-selection .header-block {
  display: block;
  flex-shrink: 0;
  padding-right: 40px;
}
.vm-upsell-selection .header-block.success {
  display: none;
}
.vm-upsell-selection .header-block h4 {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: Montserrat, sans-serif;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 450px) {
  .vm-upsell-selection .header-block h4 {
    font-size: 1.25rem;
  }
}
.vm-upsell-selection .header-block p {
  text-align: center;
  color: #6c757d;
  margin-bottom: 0;
}
.vm-upsell-selection .response-block {
  display: none;
  flex: 1 1 auto;
  overflow: hidden;
}
.vm-upsell-selection .response-block .table-responsive {
  overflow-y: auto;
}
.vm-upsell-selection .response-block img {
  max-height: 100px;
  max-width: 100px;
}
.vm-upsell-selection .response-block .cart-dropdown-buttons {
  margin-top: 30px;
}
@media (max-width: 450px) {
  .vm-upsell-selection .response-block .table-responsive {
    max-height: 50vh;
  }
  .vm-upsell-selection .response-block .cart-dropdown-buttons a.btn-primary {
    margin-top: 30px;
  }
}
.vm-upsell-selection .item-block {
  display: block;
  flex: 1 1 auto;
  overflow: hidden;
  margin: 16px 0;
}
.vm-upsell-selection .item-block .items {
  background-color: #f8f8f8;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
@media (max-width: 768px) {
  .vm-upsell-selection .item-block .items {
    justify-content: flex-start;
  }
}
.vm-upsell-selection .item-block .items::before, .vm-upsell-selection .item-block .items::after {
  content: "";
  margin: auto;
}
@media (max-width: 768px) {
  .vm-upsell-selection .item-block .items::before, .vm-upsell-selection .item-block .items::after {
    display: none;
  }
}
.vm-upsell-selection .item-block .items::-webkit-scrollbar {
  height: 8px;
}
.vm-upsell-selection .item-block .items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.vm-upsell-selection .item-block .items::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.vm-upsell-selection .item-block .items::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.vm-upsell-selection .item-block .items .item {
  position: relative;
  text-decoration: none;
  padding: 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 8px;
  border: 2px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.vm-upsell-selection .item-block .items .item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-color: #adb5bd;
}
.vm-upsell-selection .item-block .items .item.checked {
  border-color: #28a745;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.02) 100%);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}
.vm-upsell-selection .item-block .items .item.checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328a745' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.vm-upsell-selection .item-block .items .item.checked::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background-color: #28a745;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
  z-index: 2;
}
.vm-upsell-selection .item-block .items .item.checked > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .vm-upsell-selection .item-block .items .item {
    min-width: calc(100vw - 120px);
    max-width: calc(100vw - 120px);
  }
}
@media (max-width: 480px) {
  .vm-upsell-selection .item-block .items .item {
    min-width: calc(100vw - 100px);
    max-width: calc(100vw - 100px);
  }
}
.vm-upsell-selection .item-block .items .item .vm-checkbox {
  display: none;
}
.vm-upsell-selection .item-block .items .item .mobile-grouped {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.vm-upsell-selection .item-block .items .item .mobile-grouped.flex-column {
  gap: 8px;
}
.vm-upsell-selection .item-block .items .item .mobile-grouped .vm-select-box-container {
  width: 100%;
}
.vm-upsell-selection .item-block .items .item .mobile-grouped .vm-select-box-container label.vm-label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: #6c757d;
}
.vm-upsell-selection .item-block .items .item .mobile-grouped .vm-select-box-container .vm-variation-select {
  width: 100%;
  font-size: 0.9rem;
}
.vm-upsell-selection .item-block .items .item .mobile-grouped .item-price {
  font-weight: 600;
}
.vm-upsell-selection .item-block .items .item .mobile-grouped .item-price .special-price {
  color: #dc3545;
}
.vm-upsell-selection .item-block .items .item .image {
  border: 1px solid #eee;
  text-align: center;
  width: 100%;
  max-width: 200px;
  margin: 0;
  padding: 8px;
  border-radius: 4px;
}
.vm-upsell-selection .item-block .items .item .image img {
  max-width: 100%;
  height: auto;
}
.vm-upsell-selection .item-block .items .item .item-name {
  font-size: 0.95rem;
  font-weight: bold;
  font-family: Montserrat, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.vm-upsell-selection .item-block .items .item .item-name a {
  color: inherit;
  text-decoration: none;
}
.vm-upsell-selection .item-block .items .item .item-name a:hover {
  color: #007bff;
}
.vm-upsell-selection .item-block .items .item .item-price {
  margin: 0;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  font-weight: 600;
}
.vm-upsell-selection .item-block .items .item .item-price .org-price {
  display: block;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 4px;
}
.vm-upsell-selection .footer-block {
  display: block;
  flex-shrink: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
  margin-top: 16px;
}
.vm-upsell-selection .footer-block .footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 450px) {
  .vm-upsell-selection .footer-block .footer {
    flex-direction: column-reverse;
  }
}
.vm-upsell-selection .footer-block .footer a {
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 450px) {
  .vm-upsell-selection .footer-block .footer a {
    width: 100%;
  }
}
.vm-upsell-selection .footer-block .footer a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.vm-upsell-selection .footer-block .footer a.btn-without-item {
  background-color: transparent;
  color: #6c757d;
  border: 1px solid #dee2e6;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.vm-upsell-selection .footer-block .footer a.btn-without-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(220, 53, 69, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-out, height 0.4s ease-out;
}
.vm-upsell-selection .footer-block .footer a.btn-without-item:hover {
  background-color: #fff5f5;
  color: #dc3545;
  border-color: #dc3545;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}
.vm-upsell-selection .footer-block .footer a.btn-without-item:hover::before {
  width: 300px;
  height: 300px;
}
.vm-upsell-selection .footer-block .footer a.btn-without-item:hover svg {
  transform: rotate(90deg);
}
.vm-upsell-selection .footer-block .footer a.btn-without-item:active {
  background-color: #ffe5e5;
  border-color: #dc3545;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(220, 53, 69, 0.15);
}
.vm-upsell-selection .footer-block .footer a.btn-without-item svg {
  transition: transform 0.3s ease-in-out;
}
.vm-upsell-selection .footer-block .footer a.btn-primary {
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.vm-upsell-selection .footer-block .footer a.btn-primary:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.vm-upsell-selection.completed .cart-dropdown-buttons .btn-block {
  padding: 14px 20px;
}
.vm-upsell-selection.completed .header-block.default {
  display: none;
}
.vm-upsell-selection.completed .header-block.success {
  display: block;
}
.vm-upsell-selection.completed .header-block.success i.fa {
  color: var(--success);
}
.vm-upsell-selection.completed .footer-block {
  display: none;
}
.vm-upsell-selection.completed .response-block {
  display: block;
}
.vm-upsell-selection.completed .item-block {
  display: none;
}

/*# sourceMappingURL=vm.upsell_selection.css.map */
