.popup-form {
  position: fixed;
  left: 0;
  top: -200%;
  min-height: 100vh;
  height: 100%;
  width: 100%;
/*  height: 500px;*/
  background-color: rgba(51, 51, 51, 0.7);
  overflow-y: auto;
  z-index: 99988;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
}

/*.scroll-body {
    max-height: 800px;
    overflow-y: auto;
}
*/
.popup-form > .inner-block {

  position: relative;
  border-radius: 8px;
  max-width: 740px;
  width: 100%;
  height: 650px;
  overflow-y: auto;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

.popup-form > .inner-block > #popup-form-close {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 30px;
  font-weight: 900;
  color: #b3b3b3;
  cursor: pointer;
  line-height: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.popup-form > .inner-block > #popup-form-close:hover {
  color: #333333;
}

.popup-form > .inner-block > .image-preview-container {
  overflow: hidden;
  max-width: 340px;
  width: 100%;
  width: 100%;
  height: 100%;
  background-color: black;
}

/*.popup-form > .inner-block > .file > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% center;
     object-position: 0% center;
}*/

.popup-form > .inner-block > form {
  /* max-width: 400px; */
  width: 100%;
  padding: 50px;
}

.popup-form > .inner-block > form > .section-title {
  font-size: 40px;
  color: #333333;
  margin-bottom: 35px;
}

.popup-form > .inner-block > form > .input-box {
  position: relative;
  width: 100%;
  height: 35px;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-bottom: 2px solid rgba(51, 51, 51, 0.3);
}

.popup-form > .inner-block > form > .input-box > label {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #7f7f7f;
  font-size: 18px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.popup-form > .inner-block > form > .input-box > input {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
}

.popup-form > .inner-block > form > .input-box:hover, .popup-form > .inner-block > form > .input-box:focus {
  border-bottom-color: #333333;
}

.popup-form > .inner-block > form > .input-box:hover > label, .popup-form > .inner-block > form > .input-box:focus > label {
  top: -10px;
  font-size: 14px;
}

.popup-form > .inner-block > form > .select-box {
  position: relative;
  width: 100%;
  height: 35px;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-bottom: 2px solid rgba(51, 51, 51, 0.3);
}

.popup-form > .inner-block > form > .select-box > .fa {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #333333;
  font-size: 20px;
  line-height: 10px;
}

.popup-form > .inner-block > form > .select-box > select {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  padding-right: 20px;
}

.popup-form > .inner-block > form > .select-box > select > option {
  line-height: 2;
  background-color: #ffffff;
}

.popup-form > .inner-block > form > .select-box:hover {
  border-bottom-color: #333333;
}

.popup-form > .inner-block > form > .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .popup-form > .inner-block {
    height: initial;
    max-width: 300px;
  }
  .popup-form > .inner-block > .file {
    display: none;
  }
  .popup-form > .inner-block > form {
    padding: 50px 15px;
  }
}
