
.popup-wrapper {
  position: fixed;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.popup-wrapper-login {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
}

.popup {
  width: 350px;
  background-color: #fff;
  border-radius: 10px;
  height: 530px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  padding: 15px;
  text-align: center;
  padding-top: 45px;
  box-shadow: 0 0 64px 0 rgba(0, 0, 0, 0.20);
}

.popup.payment {
  height: 630px;
  overflow: 9999;
}

.popup .close {
  position: absolute;
  right: 15px;
  top: 10px;
  opacity: .5;
  z-index: 10;
}

.popup .close img {
  width: 13px;
}

.popup h4 {
  font-size: 17px;
  color: #666;
  letter-spacing: 1.3px;
  margin: 0;
}

.popup h5 {
  font-size: 12px;
  color: #999;
  letter-spacing: 1.3px;
  margin: 0;
}

.popup .facebook-btn {
  background-image: linear-gradient(-146deg, #425EAC 1%, #1B40AA 100%);
  box-shadow: 0 17px 30px 0 rgba(0, 0, 0, 0.22);
  width: 100%;
  height: 50px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  padding: 17px;
  border-radius: 30px;
  margin-top: 30px;
  cursor: pointer;
  transition: all 700ms ease;
}

.popup .facebook-btn:hover {
  transition: all 700ms ease;
  transform: scale(1.02);
  box-shadow: 0 27px 40px 0 rgba(0, 0, 0, 0.22);
}

.popup .ortext {
  font-size: 12px;
  color: #999;
  margin-top: 25px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.grey-input {
  width: 100%;
  background-color: #ececec;
  border-radius: 30px;
  border: none;
  padding: 15px 20px;
  outline: none;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.submit-btn {
  background-image: linear-gradient(-90deg, #488BFF 0%, #8150FF 100%);
  box-shadow: 0 17px 30px 0 rgba(0, 0, 0, 0.22);
  width: 100%;
  height: 50px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  padding: 17px;
  border-radius: 30px;
  margin-top: 10px;
  cursor: pointer;
  transition: all 700ms ease;
  border: none;
}

.submit-btn:hover {
  transform: scale(1.02);
  transition: all 500ms ease;
  box-shadow: 0 27px 40px 0 rgba(0, 0, 0, 0.22);
}

.submit-btn-alternate {
  width: 100%;
  height: 50px;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
  color: #333;
  padding: 17px;
  border-radius: 30px;
  margin-top: 0px;
  cursor: pointer;
  transition: all 700ms ease;
  border: none;
  border: 1px solid #eee;
}

.submit-btn-alternate:hover {
  transform: scale(1.02);
  transition: all 500ms ease;
  box-shadow: 0 27px 40px 0 rgba(0, 0, 0, 0.22);
}

.popup .forgotpass {
  font-size: 12px;
  margin-top: 15px;
}

.alert {
  border-radius: 30px;
  border-radius: none;
  font-size: 13px;
}

.popup .forgotpass a {
  color: #999 !important;
}

.load-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.1);
}

.load-wrapper .load-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 90px;
  overflow: hidden;
}

.load-wrapper .load-icon img {
  width: 130px;
  margin-left: -20px;
  margin-top: -20px;
}


@media only screen and (max-width: 600px) {

.popup-wrapper {
  position: absolute;
  width: 100%;
  height: 110%;
  left: 0;
  top: 360px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}
}