/**
 * Imports
 */
/**
 * OVATB Variables
 */
/**
 * Transition
 */
/**
 * Transform
 */
/**
 * OVATB Animations
 */
@keyframes ovatb-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**
 * Cart - Theme Twentytwentyfour & Theme Twentytwentyfive
 */
.theme-twentytwentyfour .woocommerce td.product-name dl.variation p, .theme-twentytwentyfive .woocommerce td.product-name dl.variation p {
  margin-bottom: 1em;
}

.ovatb-popup-guest-info {
  display: inline-flex;
}
.ovatb-popup-guest-info .guest-info-text {
  color: #7f54b3;
  cursor: pointer;
}
.ovatb-popup-guest-info .guest-info-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(29, 23, 41, 0.7);
  z-index: 999;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info {
  width: 500px;
  max-width: 90%;
  max-height: 80%;
  overflow: auto;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background-color: #FFFFFF;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .close-popup {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .close-popup i {
  font-size: 14px;
  color: red;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .close-popup:hover i {
  transform: scale(1.2);
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content {
  border: var(--ovatb-border-width) solid var(--ovatb-border-color);
  border-radius: var(--ovatb-border-radius);
  box-sizing: border-box;
  overflow: hidden;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item {
  border-bottom: var(--ovatb-border-width) solid var(--ovatb-border-color);
  box-sizing: border-box;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item .guest-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: var(--ovatb-background);
  cursor: pointer;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item .guest-info-header label {
  font-size: var(--ovatb-title-tab-size);
  font-weight: var(--ovatb-text-font-weight);
  line-height: var(--ovatb-label-line-height);
  color: var(--ovatb-label-color);
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item .guest-info-header i {
  color: var(--ovatb-label-color);
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item .guest-info-body {
  display: none;
  padding: 10px 16px;
  margin: 0;
  list-style: none;
  border: none;
  border-top: 1px solid var(--ovatb-border-color);
  box-sizing: border-box;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item .guest-info-body li {
  margin: 0;
  padding: 0;
  font-size: var(--ovatb-title-tab-size);
  font-weight: var(--ovatb-text-font-weight);
  line-height: var(--ovatb-text-line-height);
  color: var(--ovatb-text-color);
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item .guest-info-body li .field-label {
  color: var(--ovatb-label-color);
  font-weight: var(--ovatb-label-font-weight);
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item.active {
  border-bottom: none;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item.active .guest-info-header i {
  transform: rotate(-180deg);
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item:first-child {
  border-top: none;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item:last-child {
  border-width: 0;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item:last-child .guest-info-body {
  border-width: 0;
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item:last-child.active .guest-info-header {
  border-width: var(--ovatb-border-width);
}
.ovatb-popup-guest-info .guest-info-wrap .popup-guest-info .guest-info-content .guest-info-item.last-child {
  border-bottom: none;
}
.ovatb-popup-guest-info p, .ovatb-popup-guest-info br {
  display: none !important;
}

.woocommerce-mini-cart-item.mini_cart_item .variation .ovatb-popup-guest-info {
  display: none;
}