/* SEARCH FORM */



/* Common Items */
/* Modal Content/Box */
.modal-body {
    width: 40%;
    /* Could be more or less, depending on screen size */
    margin: 0 auto 0 auto;
    /* 5% from the top, 15% from the bottom and centered */
    border-radius: 0px;
    background-color: #fbfcff;
}

/* Add padding to container elements */
.modal-body-padding {
    padding: 50px;
}

@media screen and (max-width: 1128px) {
    .modal-body {
        width: 70%;
    }
}

@media screen and (max-width: 560px) {
    .modal-body {
        width: 100%;
        border-radius: 0;
    }

    .modal-body-padding {
        padding: 50px 30px;
    }
}

.modal-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.modal-form p {
    color: #333;
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin-top: 15px;
}

.modal-form label {
    position: absolute;
    top: -9px;
    left: 10px;
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0 10px;
    background: #fbfcff;
}

.modal-form input {
    color: #222;
    font-size: 1.03rem;
    font-weight: 500;
    padding: 0;
    width: 100%;
    height: 50px;
    background-color: #fbfcff;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
    text-align: center;
}

.modal-form-btn-c {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 20px;
}

.modal-check-form label {
    color: #333;
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 500;
}

.modal-check-form input {
    transform: scale(1.5); /* Adjust scale factor for desired size */
    margin: 0 20px 0 3px;
}

/* For Search Form -------- */

.modal-search-input {
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 17px;
    margin: 10px 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 0px;
    height: 36px;
    width: 100%;
    box-sizing: border-box;
}

.modal-search-select {
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    height: 36px;
    padding: 0 13px;
    margin: 10px 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 0px;
}

.modal-search-select1 {
    width: 100%;
}

.modal-search-select2 {
    width: 48%;
}

.modal-search-select1 option,
.modal-search-select2 option {
    color: #222;
    font-family: "Outfit", Arial, Helvetica, sans-serif;
}

.modal-search-row {
    display: flex;
    justify-content: space-between;
}

.modal-search-btn-c {
    width: 100%;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 560px) {
    .modal-search-select {
        font-size: 0.95rem;
    }
}