/************************************************************************/


/******************** MAIN-BOX GLOBAL SETTINGS **************************/


/************************************************************************/


/*--------------------------------------------------------------------------------------------------------------------------------
 Modal css for alerts that are common to all pages so they are placed here with the menu system which is common to all pages
--------------------------------------------------------------------------------------------------------------------------------*/

.modals {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1500;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.6);
    /* Black w/ opacity */
}

#modal-alert-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 300px;
    border-radius: 20px;
    background-color: White;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#modal-alert-title {
    border-radius: 20px 20px 0 0;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: brown;
    color: white;
    font-size: 30px;
    text-align: center;
}

#modal-alert-message {
    font-size: 20px;
    padding: 20px;
}

#modal-alert-nav {
    text-align: center;
    margin: 20px 0 20px 0;
}

#main-box {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border-radius: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #ecebeb;
    top: 120px;
    height: 75%;
    width: 1100px;
}

body {
    background-image: url(/administration/lang/msa/images/arabia.jpg);
}