.pop-overlay {
  position: fixed;
  top: 0px;
  top: 0px;
  left: 0;
  right: 0;
  transition: all .3s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  background: rgb(0 0 0 / 90%);
  box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 85%);
  height: 100vh;
  width: 100%;
}
.popup {
  margin: 0rem auto;
  padding: 40px 50px;
  max-width: 1000px;
  border-radius: 0px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
 a.close {
  color: #fff !important;
}
.close {
  position: absolute;
  top: 60px;
  right: 60px;
  transition: all 200ms;
  font-size: 52px !important;
  text-decoration: none;
  color: #fff;
  opacity: 1;
  background: none;
}

.main-nav .pop-overlay-open {
  visibility: visible;
  transition: all .3s;
  opacity: 1;
}
.popup h3 {
  font-size: 28px !important;
  line-height: 48px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-bottom: 2em;
}
form.search-box {
  display:flex;
  margin: 0 auto;
  max-width: 500px;
}

.popup form input {
  background: transparent;
  padding: 12px 20px;
  font-size: 18px;
  outline: none;
  width: 100%;
  font-weight: 400;
  color: var(--font-color);
  border-radius: 1.5rem;
  border: 1px solid var(--bg-color);
}
.btn-style {
  padding: 15px 45px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  transition: 0.3s ease-in;
  border-radius: 6px;
}
.btn-primary {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
 .popup form button {
  margin-left: 0.6em;
  line-height: 18px;
  font-weight: 600;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
  background: #888; 
}

::-webkit-scrollbar-thumb:hover {
  background: #555; 
}