
#modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    overflow-y: auto;
}

.modal {
    padding: 30px 0;
    color: #373737;
    flex: 1;
}

.modal_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0000004d;
    z-index: 1;
}

.modal_content {
    width: 400px;
    height: auto;
    margin: auto;
    max-width: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.modal_inner {
    background: #fff;
    padding: 35px 20px 20px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}


.modal_close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    z-index: 1;
}

.modal_close svg {
    height: 17px;
    width: 17px;
    margin: auto;
}

.modal_name {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.modal_location {
    margin-bottom: 10px;
}

.modal_location img {
    margin-right: 5px;
}

.modal .input_wrap {
    width: 100%;
}

.modal label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}


.modal h3 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 21px;
}

.modal h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.modal h4 span, .modal h5 span {
    color: #157efb;
    cursor: pointer;
}

.modal h5 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.7;
}


.modal_input {
    margin-bottom: 20px;
}

.modal_input label {
    display: block;
    text-align: left;
}

.modal .button_wrap {
    margin-top: 30px;
}

.modal .button_wrap .btn {
    width: 100%;
}

.modal .form{
    margin-bottom: 0 !important;
}

