.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--back-overlay);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.modal-wrapper {
  background-color: var(--back-body);
  border-radius: 40px;
  padding: 16px;
  max-width: 800px;
  display: flex;
  gap: 20px;
}
.modal-product-img-wrapper {
  min-width: 310px;
  height: 310px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-product-img {
  width: 100%;
  height: 100%;
  scale: 1.1;
  object-fit: cover;
}
.modal-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-wrapper .tab-wrapper {
  gap: 8px;
}
.product-size-title {
  margin-bottom: 8px;
}
.modal-total-wrapper {
  display: flex;
  justify-content: space-between;
}
.total-disclaimer {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border-inverse);
}
.svg-info {
  min-width: 16px;
}

@media (max-width:767px) {
  .modal-overlay {
    padding: 19px;
  }
}

@media (max-width:680px) {
  .modal-product-img-wrapper {
    display: none;
  }
}