

.blur-it {
  filter: blur(4px);
}

a.btn {
     margin-top: 1px;
    margin-left: 20px;
    padding: 8px 25px 8px 25px;
    color: #000;
    border: 2px solid transparent;
        border-image-outset: 0;
        border-image-repeat: stretch;
        border-image-slice: 100%;
        border-image-source: none;
        border-image-width: 1;
    border-radius: 5px;
    border-image: linear-gradient(to right, #af8d46 , #f2ca4f, #af8d46);
    -moz-border-image: -moz-linear-gradient(left, #af8d46 , #f2ca4f, #af8d46);
    -webkit-border-image: -webkit-linear-gradient(left, #af8d46 , #f2ca4f, #af8d46);
        border-image-slice: 100%;
    border-image-slice: 1;
    transition: all 0.1s linear;
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0; 
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
  display: flex;
  justify-content: center;
}

.modal-fixed {
  width: 60%;
  height: 400px;
  display: block;
  
  position: relative;
  top: 20%; 
  background: #fff;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.modal-wrapper.open .modal {
  margin-top: -200px;
  opacity: 1;
}

.head { 
  padding: 12px 30px 0 0;
  overflow: hidden;
}

.btn-close {
  width: 40px;
  height: 40px;
  background: #adadad;
  border: 2px solid #d9d9d9;
  border-radius: 50px;
  display: block;
  float: right;
  color: #fff;
  text-align: center;
  transition: all 0.2s linear;
}

.btn-close:hover {
    background: #ba2323;
}

.btn-close .fa {
    padding-top: 10px;
    color: #ccc;
    font-size: 15px;
}

.content {
  padding: 0 40px 40px 40px;
}

@media screen and (max-width: 700px) {
    .modal-fixed {
        width: 80%;
    }
    .popup-item h2 {
        color: #ba2323;
        font-size: 16px;
    }
    
    .popup-block-btn p {
        font-size: 12px;
    }
    a.btn {
        padding: 8px 10px 8px 10px;
        font-size: 10px;
    }
}

@media screen and (max-width: 600px) {
    a.btn {
        margin-left: 0;
    }
}

@media screen and (max-width: 520px) {
    a.btn {
        padding: 5px 5px 5px 5px;
        font-size: 8px;
    }
}

@media screen and (max-width: 420px) {
     a.btn {
       
        position: absolute;
        left: 20px;
        right: 20px;
        top: 54px;
        background: #fff;
    } 
    .content {
        padding: 0 15px 15px 15px;
    }
    .popup-block-btn {
        display: block;
    }
    .popup-form__item input {
        height: 28px;
    }
    .popup-button input {
        padding: 6px;
    }
}

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

    
}