:root {
    --ghostwhite: #f1f1f1;
    --white: #ffffff;
    --black: #000000;

    --lightgold: #eee4cb;
    --gold: #c6a753;
    --skyblue: #37b3f1;
    --border: #c9c9c9;
    
    --smoke: #eeeeee;
    --lightsmoke: #f7f7f7;
    --lightgrey: #b3b3b3;
    --grey: #aaaaaa;
    --darkgrey: #414141;

    --lightyellow: #ffec99;

    --lightred: #fcc0c0;
    --red: #DC3545;

    --green: #c4f5c4;
    --darkgreen: #0a7c00;

    --lightblue: #E4FCFF;
    --blue: #bae4f5;
}


html {

}


body {
    padding: 0;
    margin: 0;
}

#content-wrap {
    min-height: 100vh;
}


.no-scroll {
    overflow: hidden;
}


.no-select,
i,
button,
.material-icons,
img,
a.btn {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
}





/*------------------------------*/
/* Header */
/*------------------------------*/
header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(100% - 2rem);
    padding: 0.7rem 1rem;
    background-color: var(--skyblue);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
}

header > div {
    text-align: center;
}

@media (max-width: 900px) {
    header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 650px) {
    header {
        font-size: 2rem;
    }
}

@media (max-width: 300px) {
    header > div {
        line-break: anywhere;
    }
}





/*------------------------------*/
/* Footer */
/*------------------------------*/
footer {
    background-color: var(--darkgrey);
    color: var(--white);
    padding: 0.5rem 0.5rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

footer a {
    color: var(--lightgrey);
    padding: 0.5rem 2.5rem;
}
    footer a:hover {
        text-decoration: underline;
        color: var(--white);
    }


@media (max-width: 500px) {
    footer a {
        padding: 0.5rem 1.5rem;
    }
}





/*------------------------------*/
/* Page Setup */
/*------------------------------*/
.part-1 {
    padding: 1rem 0;
    border-bottom: 1px var(--gold) solid;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
    .part-1.v-center {
        align-items: center;
    }


.part-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
}
    .part-2.w100 {
        width: 100%;
    }


.part-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 1rem 0;
}


h1 {
    font-size: 1.5rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding-bottom: 2rem;
    margin: 0;
}

h2 {
    font-size: 1.35rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 0.5rem;
    margin: 0;
}
    h2.w100 {
        width: 100%;
    }

h3 {
    font-size: 1.15rem;
    text-decoration: underline;
    text-align: left;
    font-weight: 400;
    margin: 0;
    margin-bottom: 0.5rem;
}

    

.headline-3 {
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 0.3rem;
}


.flex {
    display: flex;
    flex-wrap: wrap;
}
    .flex.center {
        justify-content: center;
    }
    .flex.v-center {
        align-items: center;
    }
    .flex.w100 {
        width: 100%;
    }


@media print {
    .p-left {
        justify-content: left;
    }

    .print-flexCenter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}





/*------------------------------*/
/* Media Queries */
/*------------------------------*/
.print-block {
    display: none;
}

/*.print-hide {
    display: block;
}*/

.print-hide-flex {
    display: flex;
}

.print-tabRow {
    display: none;
}

@media print {
    .print-block {
        display: block !important;
    }
    
    .print-hide {
        display: none !important;
    }
    
    .print-hide-flex {
        display: none !important;
    }

    .print-iBlock {
        display: inline-block !important;
    }

    .print-tabRow {
        display: table-row;
    }
}

@media (max-width: 600px) {
    .hide-w600 {
        display: none;
    }
}

@media (max-width: 400px) {
    .hide-w400 {
        display: none;
    }
}

@media (max-width: 350px) {
    .smallFont-w350 {
        font-size: 0.7rem !important;
    }
}





/*------------------------------*/
/* Text */
/*------------------------------*/
.infoText-1 {
    padding: 1rem 3rem;
    text-align: center;
}

.hover-under:hover {
    text-decoration: underline;
    cursor: pointer;
}





/*------------------------------*/
/* Loading Animation */
/*------------------------------*/
.loadAni-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}


@media (max-width: 450px) {
    .loadAni-box img {
        width: 100%;
    }
}



/*------------------------------*/
/* Version Info */
/*------------------------------*/
.version-box {
    margin: 3rem 5rem;
}

.version-head {
    font-size: 1.2rem;
    font-weight: bold;
}



/*------------------------------*/
/* Colors */
/*------------------------------*/
.modal-alert { /* Modal Box */
    display: none;
    position: fixed;
    font-size: 1.2rem;
    width: calc(100% - 14% - 4rem);
    margin: 0 7%;
    z-index: 1000;
    padding: 0.8rem 2rem;
    background-color: #6C757D;
    border-radius: 1rem;
    color: white;
    bottom: 0.5rem;
    left: 0;
    overflow: hidden;
}
    .modal-alert.success {
        background-color: #198754;
    }

    .modal-alert.danger {
        background-color: var(--red);
    }

.modal-alert-text { /* Modal Text */
    float: left;
    display: flex;
    flex-wrap: wrap;
}

.modal-alert-btnClose { /*Btn: Close*/
    width: 1rem;
    float: right;
    text-align: right;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}
    .modal-alert-btnClose:hover {
        color: #000000;
    }

/*------------------------------*/
/* Colors */
/*------------------------------*/
.yellow-1 {
    background-color: var(--lightyellow) !important;
    color: #000000 !important;
}
.red-1 {
    background-color: var(--lightred) !important;
    color: #000000 !important;
}
.green-1 {
    background-color: var(--green) !important;
    color: #000000 !important;
}
.blue-1 {
    background-color: var(--blue) !important;
    color: #000000 !important;
}
.white-1 {
    background-color: var(--white) !important;
}
.darkgrey-1 {
    background-color: var(--darkgrey) !important;
    color: #FFFFFF !important;
}