
.ishtar-small-modal {
    min-width: 15rem;
    width: 30%;
    max-height: 90%;
}

.ishtar-medium-modal {
    min-width: 25rem;
    width: 50%;
    max-height: 90%;
}

.ishtar-medium-plus-modal {
    min-width: 25rem;
    width: 60%;
    max-height: 90%;
}

.ishtar-large-modal {
    min-width: 35rem;
    width: 75%;
    max-height: 90%;
}

.ishtar-full-screen-modal {
    min-width: 50rem;
    width: 95%;
    max-height: 95%;
}

.ishtar-main-modal {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 0;
    overflow: hidden;
}

.ishtar-header-modal {
    padding: 0.3rem;
    padding-left: 0.8rem;
    height: 2.5rem;
    width: 100%;
    background-color: var(--color-primary);
}

.ishtar-body-modal {
    padding: 0.8rem;
    height: 100%;
    width: 100%;
    overflow: auto;
}

.ishtar-footer-modal {
    padding: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

.ishtar-btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.ishtar-main-modal .ishtar-header-modal {
    color: var(--font-th-color);
}