#OfferlyModalDiv,
#OfferlySupportDiv {
  display: none;
  position: fixed;
  z-index: 2147483647;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  flex-direction: column;
}
.offerly-terms {
  font-size: 12px;
}
.offerly-loading {
  display: none;
}
.offerly-loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  min-width: 100%;
  flex-direction: column;
}
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #767676;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.offerly-modal-content-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.offerButton {
  min-height: 40px;
}
.glow-button {
  animation: glow 1s infinite alternate;
}
@keyframes glow {
  from {
    box-shadow: 0 0 1px #007bff;
  }
  to {
    box-shadow: 0 0 20px #007bff;
  }
}
#OfferInput {
  width: 100%;
  display: block;
  padding: 10px;
  margin-bottom: 5px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  font-family: inherit;
  font-size: 16px;
  background-color: inherit;
}
#termsCheckbox {
  display: flex;
  align-items: center;
}
#OfferInput:focus,
#OfferInput:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#rightSide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  flex: 1 1 150px;
  padding-top: 40px;
}
#leftSide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  flex: 1 1 250px;
}
#leftSide h2 {
  font-size: 24px;
}
.offerInputError {
  border-color: red !important;
  outline: 1px solid red;
  box-shadow: 0 0 5px red;
}
.indented-list {
  padding-left: 20px;
}
.offerly-input-label {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-product-image {
  object-fit: contain;
}
#productImageMobileDiv {
  justify-content: center;
  display: none;
}
.offerly-modal-content {
  margin: auto;
  border: 1px solid #888;
  width: 90%;
  max-width: 650px;
  padding: 40px;
}
.offerly-support-modal-content {
  margin: auto;
  border: 1px solid #888;
  width: 90%;
  max-width: 650px;
  padding: 40px;
}
.close {
float: right;
font-size: 22px;
font-weight: bold;
}

@media only screen and (max-width: 600px) {
  #OfferlyModalDiv,
  #OfferlySupportDiv {
    padding-top: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: scroll;
  }
  #modalProductDescription {
    display: none !important;
  }
  @keyframes animateopacity {
    from {
      background-color: rgba(0, 0, 0, 0.0)
    }
    to {
      background-color: rgba(0, 0, 0, 0.7)
    }
  }
  .offerly-modal-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 40px;
    border: none;
    height: 100vh;
    overflow-y: auto;
  }
  .offerly-modal-content-group {
    gap: 0;
  }
  #rightSide {
    padding-top: 15px;
    min-width: 300px;
  }
  #productImage {
    display: none;
  }
}