.new__user__modal{
    position:absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 1;
    display: flex;
    align-content: center;
    justify-content: center;
    background-color:rgba(0, 0, 0, 0.7);
    -webkit-animation: fadein 0.3s; /* Safari, Chrome and Opera > 12.1 */
      -moz-animation: fadein 0.3s; /* Firefox < 16 */
       -ms-animation: fadein 0.3s; /* Internet Explorer */
        -o-animation: fadein 0.3s; /* Opera < 12.1 */
           animation: fadein 0.3s;
}

.not__active__modal{
  opacity: 0.0;

  -webkit-animation: fadeout 0.3s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeout 0.3s; /* Firefox < 16 */
     -ms-animation: fadeout 0.3s; /* Internet Explorer */
      -o-animation: fadeout 0.3s; /* Opera < 12.1 */
         animation: fadeout 0.3s;
  display: none;
}

.win__request{
  width: 70%;
  height: 60%;
  margin-top: 10%;
  z-index: 11;
  box-sizing: border-box;

  background-color: #fff;
}

.win__request__title{
  width: 100%;
  height:50px;
  background-color: #fff;
}

.win__request__content{
  width: 100%;
  height:calc(100% - 50px);
  background-color: #fff;
}

.content__email{
  width: 100%;
  height: calc(100% - 70px);
}

.content__email p{
  text-align: center;
  padding-top: 40px;
  width: 100%;
  font-size: 1.5em;
  color:#666;
  line-height: 28px;

}

.content__email input{
  width: 400px;
  height:30px;
  font-size: 20px;
  border: 1px solid #cdcdcd;
  margin-left: calc(50% - 200px);
  margin-top: 10px;
  text-align: center;
}

.content__email > input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #999;
}

.content__send__request{
  height: 50px;
  width: 100%;
  padding: 0px 10px 0px 10px;
}

.close__icon{
  float: right;
  height: 70px;
  width: 70px;
  line-height: 50px;
  text-align:center;
  font-size: 25px;
  color: red;

}

.close__icon:hover{
  cursor:pointer;
}

/*fade in*/
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/*fade out*/
@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Firefox < 16 */
@-moz-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Internet Explorer */
@-ms-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Opera < 12.1 */
@-o-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}


@media (max-width: 1024px) {
  .win__request{
    width: 90%;
    height:90%;
    z-index: 11;
    margin-top: 5%;
    box-sizing: border-box;

    background-color: #fff;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {}

@media (max-width: 767px) {
  .content__email > input{
    width: 300px;
    height:50px;
    font-size: 30px;
    border: 1px solid #cdcdcd;
    margin-left: calc(50% - 150px);
    margin-top: 30px;
    text-align: center;
  }
}

@media (max-width: 823px) and (orientation: landscape) {
  .win__request{
    margin-top: 3%;
  }
}

  @media (max-width: 320px) {
    .content__email > input{
      width: 250px;
      height:35px;
      font-size: 20px;
      border: 1px solid #cdcdcd;
      margin-left: calc(50% - 125px);
      margin-top: 20px;
      text-align: center;
    }
  }
