@media screen and (min-width: 767px) and (max-width: 899px) {
    .modal {
        --bs-modal-width: 700px;
    }
}

@media screen and (min-width: 900px) {
    .modal {
        --bs-modal-width: 900px;
    }
}

.modal-content {
    border-radius: 12px !important;
}

.modalimgdiv h3 {
    font-weight: var(--fw-xxl);
    font-size: 25px;
    position: absolute;
    top: 2%;
    left: 2%;
    color: var(--tertiary);
    text-align: center;
}

.modalinputdiv {
    padding: 5px 20px 0px 20px;
}

.modal h4 {
    color: var(--text-primary);
    font-weight: var(--fw-xl);
    font-size: 18px;
}

.modal form label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: var(--fw-lg);
}

.modal form input,
.modal form textarea,
.modal form select {
    border: 1px solid #00000014;
    background-color: var(--secondary);
    font-size: 14px;
    font-weight: var(--fw-md);
}

.modal form select option {
    font-size: 13px;
    font-weight: var(--fw-lg);
}

.modal .table td,
.modal .table th {
    padding: 5px 5px;
    background-color: transparent !important;
    font-size: 13px;
}

.modal .table th {
    color: var(--text-secondary);
    font-weight: var(--fw-xl);
    text-transform: uppercase;
}

@media screen and (min-width: 767px) {
    .modal img {
        object-fit: cover;
        object-position: center;
        border-radius: 10px 0px 0px 10px;
    }
}

@media screen and (max-width: 767px) {
    .modal img {
        height: 300px !important;
        object-fit: cover;
        object-position: center;
        border-radius: 10px 10px 0px 0px;
    }
}