.modal {
    background: rgba(0, 0, 0, 0.340);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 0 10px;
    display: none;
    z-index: 9999;
} 

.modal_card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 98%;
    min-height: 200px;
    max-height: calc(100vh - 20px);
    height: auto;
    border-radius: 5px;
    padding: 15px;
    overflow-y: scroll;
}

.modal_title {
    font-size: 18px;
    margin: 0;
    color: #477f8e;
}

.section_form form.container {
    padding: 5px;
    border: none;
    overflow: hidden;
} 

.modal_close {
    width: 20px;
    height: 1px;
    background: #000;
    display: block;
    position: absolute;
    top: 25px;
    right: 15px;
    transform: rotate(45deg);
}

.modal_close::after {
    content: '';
    width: 20px;
    height: 1px;
    background: #000;
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    transform: rotate(-90deg);
}

.modal_vacancy_card {
    margin-top: 40px;
}

.modal_vacancy_card p:first-child {
    font-weight: 500;
}

.modal_vacancy_card p:first-child::after {
    content: ''; 
    display: inline-block;
    position: relative;
    top: -3px;
    left: 5px;
    width: 5px;
    height: 5px;
    background: #477f8e;
    border-radius: 50%;
}

.modal_vacancy_card p:first-child::before {
    content: ''; 
    display: inline-block;
    position: relative;
    top: -3px;
    right: 5px;
    width: 5px;
    height: 5px;
    background: #477f8e;
    border-radius: 50%;
}

.main_color_line {
    width: 100%;
    background: #1884f821;
    display: block;
    height: 1px;
    border-radius: 100%;
    border: 1px solid #00000040;
    display: none;
}

.border_right {
    border-left: 3px solid #477f8e;
    padding-left: 10px;
}

.modal_images img {
    max-width: 100%;
} 



/* section_form */

.section_form {
    overflow: hidden;
}

.section_form label {
    font-weight: 400;
}

.section_form input {
    margin-top: 5px;
    /* padding-left: 5px; */
    margin-right: 5px;
    width: 99%;
    height: 30px;
    border-radius: 2px;
    border: 1px solid #477f8e;
    font-weight: 400; 
    margin-bottom: 10px;
    outline: none;
    transition: border 0.5s; 
} 

.section_form input:focus { 
    border: 1px solid #0066ff;
}