/** modal custom **/
.modal-width {
    max-width: 550px;
}

.modal-width-noti {
    max-width: 450px;
}

.modal-radius {
    border-radius: 0;
    border: 1px solid #000;
}

.modal-noti {
  border: 1px solid #8d7a4d;
}

.modal-top {
    border-top: unset;
}

.modal-bottom {
    border-bottom: unset;
}

.modal-font {
    font-size: 15px;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
}

.modal-header-new {
    padding: 5px 15px !important;
    background: #8d7a4d !important;
    text-align: left;
}

.modal-header-new h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    display: inline-block;
    margin-right: 30px;
}

.modal-header .close {
    position: absolute;
    top: 9px;
    right: 15px;
}

.btn-modal {
  margin-bottom: 0;
    width: auto;
    margin: 0;
    padding: 6px 24px 6px;
    display: inline-block;
    float: none;
    background-image: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background .5s ease;
    background: #8d7a4d;
    border: 1px solid #8d7a4d;
    color: #fff;
    cursor: pointer;
    outline: none;
}

.btn-modal:hover {
  background: #d5d5d5;
}

.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}

.fade-scale.in {
  opacity: 1;
  transform: scale(1);
}