.common-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.common-modal .modal-content {
  background-color: #fefefe;
  margin: 5% auto 15%;
  border: 0 solid #888;
  width: 30%;
  /* border-radius: 10px; */
}

.common-modal .modal-content .model-head {
  background-color: #d9dadb;
  color: #000000;
  font-size: 15px;
  padding: 10px 25px 10px 10px;
  border-radius: 0px 0px;
}

.common-modal .close {
  position: absolute;
  right: 10px;
  top: 2px;
  color: #000;
  font-size: 25px;
  font-weight: 700;
}

.common-modal .close:hover,
.common-modal .close:focus {
  cursor: pointer;
  opacity: 0.9;
}

.popup-list ul {
  list-style: none;
  padding: 10px;
}
.popup-list ul li {
  position: relative;
  transition: 0.5s;
  font-weight: 500;
  cursor: pointer;
}
.popup-list ul li:hover {
  padding-left: 10px;
}
.popup-list ul li:before {
  font-family: "font awesome 5 free";
  font-weight: 900;
  content: "\f101";
  padding-right: 7px;
  color: #eb820a;
}

@media screen and (max-width: 1024px) {
  .common-modal .modal-content {
    background-color: #fefefe;
    margin: 5% auto 15%;
    border: 1px solid #888;
    width: 65%;
  }

  .common-modal .modal-content .model-head {
    font-size: 13px;
    padding: 10px 25px 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .common-modal .modal-content {
    background-color: #fefefe;
    margin: 5% auto 15%;
    border: 1px solid #888;
    width: 96%;
  }

  .common-modal .modal-content .model-head {
    font-size: 13px;
    padding: 10px 25px 10px 10px;
  }
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* / // -----------------------------#popup_on_pageload start---------------------------// /  */
