.lb-popup-wrapper {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.lb-popup {
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  /* max-width: 840px; */
  max-width: 575px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 24px 0px rgba(4, 30, 33, 0.50);
  z-index: 10000;
  max-height: 92vh;
  min-height: 280px;
  font-family: "Revisal-Light", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  overflow: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
}

.lb-popup .main-heading {
  margin-bottom: 0;
}

.lb-popup hr {
  border: unset;
  border-top: 5px solid #AB874D;
  margin-top: 16px;
  margin-bottom: 20px;
}

.lb-popup h2 {
  text-transform: uppercase;
  font-size: 24px;
}

.lb-popup h2, .lb-popup h3, .lb-popup h4 {
  font-family: 'BemboMTPro-Regular', 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.4;
}

.lb-popup .popup-content .text {
  font-family: "Revisal-Light", sans-serif;
  font-weight: 300;
  line-height: 1.4;
  font-size: 18px;
} 

.lb-popup .popup-content .text h5 {
  text-transform: unset;
  font-family: "Revisal-Light", sans-serif;
  font-weight: 300;
  margin: 12px 0 0 0;
  line-height: 1.4;
  font-size: 18px;
}

.lb-popup .popup-content .text h2 {
  color: #AB874D;
  font-family: 'BemboMTPro-Regular', 'Times New Roman', serif;
  margin-bottom: 8px;
} 

.lb-popup .popup-content {
  overflow-y: auto;
  overflow: auto;
  background-color: white;
  padding: 42px;
  width: 100%;
}

.lb-popup .popup-content strong {
  color: #AB874D;
}

.lb-popup .popup-content a {
  color: #AB874D;
  text-decoration: underline!important;
  font-weight: 600;
  font-family: "Revisal-Bold";
}

/******************** close btn *******************/

.lb-popup .close-btn {
  position: absolute;
  right: 32px;
  top: 28px;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  cursor: pointer;
}

.lb-popup .close-btn:hover {
  opacity: 1;
}

.lb-popup .close-btn:before, .close-btn:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 24px;
  width: 2px;
  background-color: #000000;
}

.lb-popup .close-btn:before {
  transform: rotate(45deg);
}

.lb-popup .close-btn:after {
  transform: rotate(-45deg);
}

/******************** end close btn *******************/


@media screen and (max-width: 767px) {
  .lb-popup {
    width: 90%;
  }

  .lb-popup .close-btn {
    right: 40px;
    top: 40px;
  }

  .lb-popup .popup-content {
    padding: 42px 22px 32px;
  }
}

@media screen and (min-width: 768px) {
  .lb-popup {
    padding: 60px 40px 50px;
  }
}

@media screen and (min-width: 992px) {
  .lb-popup {
    padding: 70px 50px 80px;
  }
}