@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ovabrw-appointment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  background-color: var(--ovabrw-primary-color);
  padding: 15px 30px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ovabrw-appointment-button:after {
  content: none !important;
}
.ovabrw-appointment-button i {
  display: flex;
  color: inherit;
}
.ovabrw-appointment-button svg {
  width: 16px;
  fill: currentColor;
  stroke: currentColor;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ovabrw-appointment-button .ovabrw-loader {
  display: none;
}
.ovabrw-appointment-button .ovabrw-loader.active {
  display: inline-block;
}
.ovabrw-appointment-button .ovabrw-loader i {
  font-size: 16px;
  color: inherit;
  animation: spin 1s linear infinite;
}
.ovabrw-appointment-button.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.ovabrw-appointment-button.loading .ovabrw-loader {
  display: inline-block;
}
.ovabrw-appointment-button.loading > i,
.ovabrw-appointment-button.loading > svg {
  display: none;
}
.ovabrw-appointment-button.icon-before {
  flex-direction: row;
}
.ovabrw-appointment-button.icon-after {
  flex-direction: row-reverse;
}

.ovabrw-popup-form {
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  z-index: 99999;
}
.ovabrw-popup-form.active {
  display: block;
}
.ovabrw-popup-form .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.ovabrw-popup-form .ovabrw-wrap-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  max-height: 90vh;
  width: 500px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ovabrw-popup-form .ovabrw-wrap-form::-webkit-scrollbar {
  display: none;
}
.ovabrw-popup-form .ovabrw-wrap-form .product-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.ovabrw-popup-form .ovabrw-wrap-form .close-popup-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5px;
  right: 5px;
  z-index: 9999;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #c8c8c8ba;
  color: black;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ovabrw-popup-form .ovabrw-wrap-form .close-popup-btn i {
  display: flex;
}
.ovabrw-popup-form .ovabrw-wrap-form .close-popup-btn:hover {
  background-color: var(--ovabrw-primary-color);
  color: #fff;
}
@media (max-width: 768px) {
  .ovabrw-popup-form .ovabrw-wrap-form {
    width: 100%;
    padding: 20px;
  }
}