.rmi-button {
  margin-top: 10px;
}
.single-product-page .single-product-description .rmi-button {
  width: 100%;
  background: #888;
  margin-left: 0;
  padding: 17px 32px;
}
.rmi-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, .7);
  transition: opacity .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 11000;
}
.rmi-overlay.active {
  visibility: visible;
  opacity: 1;
}
.rmi-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1ch;
}
.rmi-popup .form-wrapper {
  position: relative;
  width: 45%;
  margin-top: 5%;
  background: #fff;
  border: 1px solid #fff;
  padding: 15px;
  max-height: 90vh;
  overflow: auto;
}
.rmi-popup h3 {
  font-size: 22px;
  text-align: center;
  font-weight: 400;
  margin: 0;
  padding: 15px 0 40px;
}
.rmi-popup p {
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  margin: 0;
  padding: 30px 0 40px;
}
.form-wrapper .content {
  display: flex;
}
.form-wrapper ul {
  flex: 0 0 35%;
  list-style: none;
  margin: 0 30px 0 0;
  padding: 0;
}
.form-wrapper ul li {
  position: relative;
  margin: 0 0 15px;
  padding: 0;
}
.form-wrapper .link {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.form-wrapper .remove {
  position: absolute;
  bottom: 20px;
  left: 70px;
}
.form-wrapper img {
  width: 100%;
}
.form-wrapper ul button {
  display: inline-block;
  color: #fff;
  width: 37px;
  height: 37px;
  font-size: 11px;
  line-height: 34px;
  text-align: center;
  border-radius: 100%;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
}
.form-wrapper ul button:hover {
  color: #9c0a0a!important;
  background: transparent;
  border-color: #9c0a0a;
}
.rmi-popup label {
  display: block;
  margin-bottom: 15px;
}
.rmi-popup input,
.rmi-popup textarea {
  display: block;
  width: 100%;
}
.rmi-popup .more-items {
  text-align: right;
  text-transform: uppercase;
  margin-right: 25px;
  font-size: 11px;
  letter-spacing: 2px;
}
.rmi-popup .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  line-height: 36px;
  padding: 8px;
  background: #060100;
  color: #fff;
  box-shadow: none;
  opacity: 1;
}
.rmi-popup .submit {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 14px;
  background: #060100;
  border: 1px solid #060100;
  text-transform: uppercase;
  margin-top: 10px;
  padding: 15px 60px;
  transition: 0s;
}
.rmi-popup .submit:hover {
  background: #060100;
  border: 1px solid #060100;
}

@media (max-width: 991px) {
  .rmi-popup .form-wrapper {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .rmi-popup .form-wrapper {
    width: 95%;
    margin-top: 0;
  }
  .form-wrapper .content {
    display: flex;
    flex-direction: column;
  }
  .form-wrapper ul {
    margin: 0;
  }
}
