* {
    box-sizing: border-box;
    font-family: 'Poppins-regular';
    list-style: none;
    text-decoration: none;
}

body {
    margin: 0;
    width: 100%;
}

body::-webkit-scrollbar {
    background-color: rgba(1, 115, 172, 0.1);
    z-index: 9;
    width: .4em;
}

body::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border-radius: 20px;
    z-index: 9;
    width: .4em;
}

body > nav {
    background-color: #0084c8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-inline: 3%;
    position: fixed;
    box-shadow: 0 0 2vw #00000061;
    z-index: 10;
}

.click-announce {
    position: fixed;
    z-index: 9;
    top: 70px;
    left: 10px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    cursor: pointer;    
    animation: appear 0.3s linear;
}

.click-announce > img {
    width: 80%;
    height: 50px;
    filter: drop-shadow(0 0 2px #ffffff);   
    animation: floating 1s ease infinite; 
}

.click-announce > img:hover {
    animation: wiggle 1.5s ease infinite;
}

@keyframes floating {
    0% {transform: translateY(0px)}
    50% {transform: translateY(-5px)}
    100% {transform: translateY(0px)}
}

@keyframes wiggle {
    0% {transform: rotate(0deg)}
    20% {transform: rotate(-30deg)}
    40% {transform: rotate(30deg)}
    60% {transform: rotate(-30deg)}
    100% {transform: rotate(0deg)}
}

.title {
    flex-direction: row;
    line-height: 1.1em;
    display: flex;
    user-select: none;
}

.logo-container {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
}

.logo-container > img {
    pointer-events: none;
    width: 50%;
}

#wheel {
    position: absolute;
    z-index: -1;
    width: 80%;
    animation: spin 6s linear infinite;
}

#wheel:hover {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}

.t-up {
    font-family: 'poppins-bold';
    color: #fff;
    font-size: 2em;
    font-weight: bolder;
    cursor: pointer;
}

.t-down {
    color: #fff;
    cursor: pointer;
    font-size: 0.8em;
    white-space: nowrap;
}

#burger {
    width: 1.5em;
    height: 10%;
    cursor: pointer;
}

.hidden-nav {
    background-color: #006294;
    width: 85%;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 100%;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s;
    z-index: 10;
}

.hidden-nav #h-burger {
    width: 1.5em;
    margin-block: 1.1em;
    margin-inline: 1.5em;
    cursor: pointer;
    transform: rotate(0deg);
    transition: transform 0.7s;
}

.hn-category {
    padding-left: 0;
    font-size: 1em;
}

.hn-category-row {
    color: #fff;
    font-family: 'poppins-regular';
    user-select: none;
    cursor: pointer;
    padding-block: 0.5em;
    font-size: clamp(1em, 4vw, 1em);
    padding-inline: 1em;
    display: flex;
    align-items: center;
    background-color: #006294;
    transition: background-color 0.5s;
}

#hn-category-icon-home, #hn-category-icon-course, #hn-category-icon-fac, #hn-category-icon-about {
    width: 0.9em;
    height: 0.4em;
    margin-left: 0.5em;
    transform: rotate(-90deg);
}

.hn-category-row:hover {
    background-color: #0084c8;
}

.hn-category ul {
    padding-left: 0;
}

.dropdown-home, .dropdown-course, .dropdown-fac, .dropdown-about{
    background-color: #004061;
}

.dropdown-home > a {
    cursor: pointer;
}

.hn-category a {
    color: #fff;
    font-size: 1rem;
}

a li {
    padding-block: 0.8em;
    padding-inline: 2.5em;
}

.background {
    height: 100vh;
    width: 100%;
    user-select: none;
    background-image: url('./images/Seawater1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background > .b-group {
    background: #0c6bb4d9;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    width: 95%;
}

.b-title {
    display: flex;
    justify-content: center;
    pointer-events: none;
    align-items: center;
}

.b-title > img {
    width: 80%;
    max-width: 385px;
    min-width: 300px;
    filter: drop-shadow(0 0 2px #ffffff);
    transform: translateY(50%);
    opacity: 0;
    transition: transform 1s, opacity 0.8s;
}

.background > img {
    width: 1000px;
}

.announcement-board-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #4d4d4d87;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.announce-board {
    background-color: #f0f0f0;
    width: 95%;
    max-width: 729.600px;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 3em 0;    
    border-radius: 0.3em;
    position: relative;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.abm-close {
    position: absolute;
    color: #000;
    top: 0.8em;
    right: 0.8em;
    width: 20px;
    cursor: pointer;
}

.announce-board > h1 {
    margin: 0;
    font-size: 3rem;
    color: #01547f;
    width: 90%;
    text-align: center;
    font-family: 'Poppins-bold';
}

.announce-board > h2 {
    margin: 0;
    font-size: calc(3rem / 1.6);
    color: #01547f;
    width: 90%;
    text-align: center;
}

.ab-board {
    width: 90%;
    min-height: 450px;
    height: 87%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0.5em;
    max-width: 950px;
    background-image: url('./images/seamac_ship.png');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    overflow-y: auto;
}

.ab-board > .slide {
    flex-shrink: 0;
    width: 100%;
    transition: transform 0.6s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block-end: 1rem;
}

.ab-board > .slide > img {
    width: 100%;
    transform: translateX(0);
    transition: transform 0.3s;
    object-fit: cover;
    pointer-events: none;
}

.container {
    height: 50vh;
    background-image: linear-gradient(to bottom, #f0f0f0 50%, #0184c8 100%);
}

.contact {
    background-color: #0184c8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block-start: 50px;
    width: 100%;
}

.contact > h1 {
    font-family: 'poppins-regular';
    color: white;
    font-size: 1.5em;
}

.c-add-phone-email {
    border-radius: 10rem 0 10rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 1rem;
    width: 100%;
    box-shadow: 0px 0px 300px inset rgba(0, 0, 0, 0.868);
}

.c-ape-row {
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-block-end: 2rem;
    width: 95%;
    padding-block: 1rem;
    max-width: 339px;
}

.c-ape-row > h3, .c-ape-row > p {
    margin: 0;
    color: white;
}

.c-ape-row > p {
    width: 95%;
    font-size: 0.9em;
    white-space: wrap;
}

.c-ape-row > img {
    width: 50px;
    margin-block: 1rem;
}

.email, .facebook {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding-block: 1rem;
}

.email img, .facebook img {
    width: 25px;
    margin-inline: 1rem;
}

.socials p {
    margin: 0;
}

.group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-ape-row > iframe {
    margin-block: 1rem;
    width: 250px;
    border-radius: 1rem;
}

.c-ape-row a {
    color: white;
}

.c-ape-row > p > a:hover {
    text-decoration: underline;
}

.footer {
    border: 1px solid #0184c8;
    background-color: #0184c8;
    text-align: center;
    font-size: 0.7em;
    padding-inline: 1rem;
    line-height: 0.2rem;
    padding-block: 1.8rem;
}

.footer > * {
    color: white;
}

.footer > a:hover {
    text-decoration: underline;
}

.footer > p {
    line-height: 0.8rem;
}
/* 
    30.4px
    9.5vw 
    75.456px

    1.7rem
*/
.gradient-box-home > h1 {
    margin-block: 1em 0.5em;
    font-size: clamp(30.4px, 9.5vw, 75.456px);
    color: #00324c;
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.vid_para {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}

#seamac_video {
    border: 3px solid #0184c8;
    width: 100%;
    max-width: 688px;
    border-radius: 0.5em;
}

article {
    width: 100%;
    max-width: 688px;
    color: #00324c;
    text-align: justify;
    margin-block: 1em;
    font-size: calc(1.7rem / 1.6);
}

.gradient-box-home{
    background: linear-gradient(to bottom, #f0f0f0 30%, #0184c8 100%);
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-block: 1em;
}

.partners {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    width: 85%;
}

.partner {
    background: white;
    border-radius: 10px;
    text-align: center;
    color: black;
    width: 100%;
    max-width: 273px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    transition: transform 0.3s;
    cursor: pointer;
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
    
}

.partner:hover {
    transform: scale(1.1);
}

.partner:hover .img-container > img {
    width: 90px;
}

.partner:hover .p-group > h2{
    font-size: 1.2em;
}

.img-container {
    height: 50%;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
}

.p-group {
    color: #002031;
    background-color: #01a8ff;
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 0.5em 0.5em;
}

.gradient-box-home > h2 {
    color: #00324c;
}

.partner > .img-container > img {
    width: 80px;
    transition: width 0.3s;
}

.partner > .p-group > h2 {
    font-size: 1.17em;
    margin: 0;
}

.partner > .p-group > p {
    margin: 0;
    font-size: calc(1.17em / 1.6);
}

.white-move-box {
    background-image: url('./images/gallery/Deck Course/DPT.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding-inline: 1em;
    padding-block-start: 4em;
    min-height: 100vh;
    flex-direction: column;
}

.course-title { 
    color: #1e1e5c;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    text-align: left;
    transform: none;
}

.courses {
    background: white;
    color: #000;
    width: 97%;
    margin: 15px auto;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.bg-fixed {
    background-image: url("./images/blue_building_seamac.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    height: 100vh;
    position: relative;
    transition: height 1s ease; 
}

.about_building { 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -0%);
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    width: 90%;
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease; 
}

.white-box-building {
    align-items: center;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    padding-block: 1em;
}

.slider-for-all {
    position: relative;
    width: 90%;
    max-width: 550px;
    max-height: 550px;
    overflow: hidden;
    border-radius: 0.5em;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 1em;
}

.slides-b > img {
    pointer-events: none;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    z-index: 2;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.prev {
    left: 0.4em;
}

.next {
    right: 0.4em; 
}

.gallery {
    width: 90%;
    display: flex;
    flex-direction: column;
    max-width: 700px;
    align-items: center;
    font-size: 1em;
    position: relative;
    padding-block-start: 2.8em;
}

.gallery > nav {
    /* height: 50px; */
    width: 100%;
}

.gallery > nav > h1, .white-box-building > h2 {
    font-size: 1.5rem;
    margin-top: 1em;
    text-align: center;
    color: #1e1e5c;
}

.gallery > nav > ul {
    padding: 0;
    display: flex;
    height: 100%;
    margin: 0;
    justify-content: space-around;
}

.gallery > nav > ul > li {
    width: 31%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.2em;
    background-color: #006294;
    color: #fff;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gallery > nav > ul > li:hover {
    background-color: #007bba;
}

.gallery > .desc {
    font-size: 0.9em;
    text-align: justify;
    width: 95%;
}

.image-container > .card {
    min-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}

.image-container {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
    max-width: 557px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    border-radius: 0.5em;
    scroll-snap-type: x mandatory;
    gap: 1rem;
}

.image-container > .card > img {
    width: 100%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.gallery > .g-slider {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery > .g-slider > .btns {
    position: absolute;
    width: 10%;
    max-width: 40px;
    height: 50px;
    font-size: 1em;
    border: none;
    font-weight: bolder;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.75);
    transition: opacity 0.3s;
    opacity: 0;
    color: #fff;
}

.g-s-next {
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
}

.g-s-prev {
    left: 1em;
    top: 50%;
    transform: translateY(-50%);
}

.about-content {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
    padding-block: 3rem;
}

.about-content > .about-group {
    background-color: #fff;
    align-items: center;  
    display: flex;
    flex-direction: column;
    width: 93%;
    margin-block-end: 1rem;
    max-width: 825px;
}

.ag-header {
    border: 1px solid rgba(0, 0, 0, 0.364);
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 1rem;
    cursor: pointer;
}

.ag-header > img {
    filter: brightness(0);
    width: 13px;
    transform: rotate(-90deg);
    transition: transform 0.5s;
    user-select: none;
    pointer-events: none;
}

.ag-header > h1 {
    margin: 0;
    font-size: 2rem; 
    font-family: 'Poppins-regular';
    color: #00314b;
}

.ag-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #005f93;
    width: 100%;
    overflow-y: hidden;
    padding-block: 0.2rem;
    max-height: 0;
    transition: max-height 1s;
}

.ag-body > p {
    width: 90%;
    max-width: 532px;
    overflow-y: hidden;
    font-size: clamp(calc(1.17rem / 1.6), 4vw, calc(1.5rem / 1.6));
    text-align: justify;
    color: #d2e8f5;
    line-height: 1.3rem;
}

.ac-box {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 1rem;
    gap: 2rem;
}

.ac-b-group {
    border: 1px solid black;
    background-color: #fff;
    box-shadow: 10px 10px #005f93;
    width: 268px;
    height: 350px;
    margin-block: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block-start: 3rem;
}

.ac-b-group.qualObj{
    transition: height 1s ease;
}

.ac-b-group.qualPol {
    transition: height 1s ease;
}

.ac-b-group > #top_icon {
    width: 100px;
    position: absolute;
    left: 50%;
    top: -3.1rem;
    transform: translateX(-50%);
}

.ac-b-group > .seemore {
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floating 1s ease infinite; 
}

.sub-content {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-block: 1rem 3.5rem;
}

.sub-content.qualObj , .sub-content.qualPol{
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1s ease;
}

.sub-content > p {
    margin: 0;
    width: 70%;
    text-align: center;
    margin-block: 0.5rem;
    font-family: 'Poppins-Regular';
    color: #005f93;
}

.sub-content > img {
    height: 40px;
}

.seemore > img {
    width: 5%;
}

.ac-b-group > h1 {
    font-family: 'Poppins-Bold';
    color: #005f93;
    text-align: center;
    width: 70%;
    height: 96.8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #005f93;
}

.ac-b-group > p {
    text-align: center;
    width: 80%;
    margin: 0;
    color: #005f93;
    font-weight: bold;
}

.modal {
    background-color: #00000040;
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding-block-start: 4.5em;
}

.modal-content {
    width: 90%;
    max-width: 710px;
    align-items: center;
    max-height: 550px;
    background-color: white;
    border-radius: 0.5em;
    position: relative;
    padding-inline: 1em;
    padding-block: 1em;
}

.modal-content > .close-btn {
    position: absolute;
    top: 0.3em;
    right: 0.3em;
    font-size: 2.5em;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-content > .scc-course {
    margin: 0;
    color: #1e1e5c;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(0, 0, 37, 0.51);
    padding-block: 0.5em;
}

.modal-content > ul {
    padding: 0;
    height: 80%;
    overflow-y: auto;
    margin: 0;
}

.modal-content > ul > a:last-child > li {
    border-bottom: none;
}

.modal-content > ul > a > li {
    border-bottom: 1px solid rgba(0, 0, 62, 0.601);
    display: flex;
    justify-content: start;
    padding: 0;
    height: 70px;
    align-items: center;
    padding-block: 1em;
    color: #36366d;
}

.modal-content > Ul > a > li > img {
    margin-right: 1em;
    width: 1em;
}

.open {
    cursor: pointer;
}

.upload-announcement {
    background-color: #006294;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

/* min 1.5rem */

.upload-announcement > h1 {
    margin: 0;
    font-family: 'Poppins-Regular';
    font-weight: bolder;
    text-align: center;
    font-size: 1.5rem;
    width: 100%;
    height: 60px;
    color: #002f47;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ua-content {
    background-color: #fafafa;
    width: 85%;
    margin-block: 1.5rem;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

#uploadModal {
    background-color: #0094e0;
    border: none;
    width: 100%;
    height: 50px;
    border-radius: 0.3rem;
    cursor: pointer;
}

.announcement-gallery {
    overflow-y: auto;
    margin-block-start: 1rem;
    height: 420px;
    max-height: 420px;
    background-color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.img-wrapper {
    background-color: #ffffff;
    width: 200px;
    height: 200px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: relative;
}

.img-wrapper:hover > .delete-btn, .img-wrapper:hover > .screen {
    opacity: 1;
}

.img-wrapper > .screen {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000083;
    display: flex;    
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.screen > button {
    border: none;
    background-color: #00000091;
    color: #acacac;
    border-radius: 0.5rem;
    width: 50%;
    height: 15%;
}

.img-wrapper > img {
   height: 100%;
}

.delete-btn {
    opacity: 0;
    position: absolute;
    background-color: #f42929;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    padding-inline: 0.8rem;
    padding-block: 0.5rem;
    top: 0;
    right: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.view {
    cursor: pointer;
    user-select: none;
}

.upload_modal, .delete_modal, .view_modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: #00000084;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.view_modal {
    justify-items: center;
    align-content: center;
}

.modal-content {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content > .um-close {
    position: absolute;
    top: 0.2rem;
    right: .4rem;
    font-size: 1.8rem;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

#uploadForm {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-area {
    border-radius: 0.3rem;
    background-color: #0094e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 230px;
    gap: 1rem;
    width: 100%;
    margin-block-start: 1rem;
}

.upload-area > img {
    width: 50px;
}

.upload-area > label {
    color: #002f47;
    background-color: #73cefc;
    width: 60%;
    max-width: 182px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    padding-block: 0.5rem;
    font-size: 0.9rem;
    user-select: none;
    cursor: pointer;
}

.upload-area > p {
    color: #fff;
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
}

#message {
    width: 100%;
    height: 40%;
    overflow-y: auto;
}

#upload_file {
    display: none;
}

#uploadForm > button {
    border: none;
    background-color: #0094e0;
    width: 100%;
    height: 40px;
    color: #fff;
    border-radius: 0.3rem;
    cursor: pointer;
    user-select: none;
}

.file-names {
    white-space: pre-wrap;
}

.delete_modal > .modal-content{
    width: 90%;
    height: 25%;
    text-align: center;
    max-width: 336px;
}

#confirmForm {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.btn-confirm {
    border: none;
    background-color: #f54141;
    color: #fff;
    width: 50%;
    cursor: pointer;
}

.btn-cancel {
    border: none;
    background-color: #5bc0de;
    width: 30%;
    color: #fff;
    cursor: pointer;
}

#viewImg {
    width: 85%;
}

.view_modal > .view-modal-content {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: .6rem;
    padding-block-end: .8rem;
    background-color: white;
    border-radius: 0.5em;
    position: relative;
    padding-inline: 1em;
    padding-block: 1em;
}

.done {
    border: none;
    background-color: #0094e0;
    width: 85%;
    height: 40px;
    color: #fff;
    border-radius: 0.3rem;
    cursor: pointer;
    user-select: none;
}

.faq {
    position: fixed;
    z-index: 10;  
    bottom: 0.5rem;
    right: 0.5rem;
    width: 10%;
    max-width: 38px;
    cursor: pointer;
}

.faq-modal {
    position: fixed;
    z-index: 11;
    background-color: #00000076;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.fm-content > img {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 10px;
    filter: brightness(0);
    user-select: none;
    cursor: pointer;
}

.fm-content {
    background-color: #fafafa;
    width: 90%;
    height: 90%;
    position: relative;
    max-width: 873px;
}

.fm-content > h1 {
    background-color: #d9d9d9;
    margin: 0;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fm-group {
    max-height: 90%;
    overflow-y: auto;
}

.fm-row {
    border: 1px solid rgb(123, 123, 123);
    padding-inline: 0.5rem;
}

.fm-row > h3 {
    font-size: 0.9rem;
}

.fm-desc {
    background-color: #b1b1b1;
    font-size: 0.8rem;
    padding-inline: 1rem;
    padding-block: 0.5rem;
}

.fm-desc > ul > li {
    list-style: circle;
}

.fm-desc > ol > li {
    list-style: decimal;
}