.blocker {
    z-index: 10;
}

.modal {
    border-radius: 0;
    padding: 0;
    width: auto;
    max-width: 100%;
    box-shadow: none;
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.5));
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #ffc219;
    min-height: 60px;
    font-size: 22px;
    padding: 5px 15%;
    text-align: center;
    font-weight: 600;
}

.modal a.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: none;
}

.modal a.close-modal:before,
.modal a.close-modal:after {
    position: absolute;
    left: 11px;
    content: ' ';
    height: 23px;
    width: 2px;
    background-color: white;
}
.modal a.close-modal:before {
    transform: rotate(45deg);
}
.modal a.close-modal:after {
    transform: rotate(-45deg);
}

.modal-content {
    padding: 30px;
    font-size: 16px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal .select2-container,
.modal .form-style-input,
.modal .form-style-select,
.modal .form-style-textarea {
    background-color: white;
}

.modal .select2-container {
    height: 40px;
    background-color: #fafafa;
    padding: 0 10px;
    font-size: 16px;
    width: 100%;
    outline: none;
    border: 1px solid #c5c5c5;
    color: inherit;
    font-family: inherit;
}

.modal .select2-container--krajee .select2-selection--single .select2-selection__clear {
    right: 3rem !important;
}

.modal .select2-selection {
    outline: none;
    box-shadow: none !important;
    border: none !important;
}

.modal-content button[type=submit] {
    width: 100%;
    max-width: 240px;
    margin: 20px auto 5px auto;
    font-size: 18px;
    height: 50px;
}

.modal .scroll-list {
    width: 100%;
    overflow-x: auto;
}

