/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/futura-pt');

/* GOOGLE ICONS */

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 48
  }

/* MAIN CSS */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: Gilroy, system-ui, -apple-system, 'Helvetica Neue', sans-serif
}

a {
    text-decoration: none;
}

body {
    height: 100vh;
    width: 100vw;
    background-color: white;
}


/* HEADER CSS */


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5em;
    padding-inline: 5em;
    background-color: white;
    border: 1px solid rgb(225, 225, 225);
    border-style: none none solid none;
}

.logo-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.finexpertiza-link {
    height: 5em;
    padding: 1.8em;
    padding-left: 0;
    border: 1px solid rgb(225, 225, 225);
    border-style: none solid none none;
}

.client-link {
    height: 5em;
    padding: 1.8em;
    border: 1px solid rgb(225, 225, 225);
    border-style: none solid none none;
}

.logo-finexpertiza {
    height: 100%;
}

.logo-client {
    height: 100%;
    opacity: 0.5;
}











.title {
    font-size: 1.5em;
    font-weight: 100;
    padding: 1em;
    color: black;
    border: 1px solid black;
    border-style: none solid none solid;
}










/* PROFILE CSS */

.profile-group {
    padding: 5em;
    padding-top: 3em;
    padding-bottom: 0;
}

.profile {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: fit-content;
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10em;
    width: auto;
    background-color: rgb(245, 245, 245);
    padding: 1.61em;
    border-radius: 1em;
    font-weight: 600;
    color: rgb(100, 100, 100);
    margin: 0.5em;
    margin-right: 0;
}

.profile-addons {
    display: flex;
    flex-direction: row;
}

.website-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0.5em;
}

.www {
    display: grid;
    place-content: center;
    height: 3em;
    background-color: rgb(245, 245, 245);
    padding: 0.5em;
    border-radius: 0.75em 0 0 0.75em;
}

.website {
    display: grid;
    place-content: center;
    font-size: 1em;
    height: 3em;
    width: fit-content;
    background-color: rgb(100, 100, 100);
    padding: 0.5em;
    border-radius: 0 0.75em 0.75em 0;
    font-weight: 600;
    text-decoration: none;
    color: white;
}

.website a {
    color: white;
}

.company-new {
    height: 10em;
    background-color: rgb(245, 245, 245);
    padding: 1.61em;
    border-radius: 1em;
}







/* AUTHENTICATION CSS */

.logout {
    background-color:white;
    padding: 0.5em;
    padding-bottom: 0.6em;
    margin-right: 0em;
    border: none;
    border-radius: 0.6em;
    transition: 300ms;
    font-weight: 500;
    font-size: 1.3em;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.1);
}

.logout:hover {
    box-sizing: border-box;
    outline: 0.1em solid #ff0099a0;
    -moz-outline-radius: 0.1em;
}










.page {
    position: relative;
    min-height: 75vh;
    width: 100vw;
    padding: 5em;
    padding-top: 3em;
}

h1 {
    position: relative;
    display: grid;
    margin-bottom: 1em;
    font-size: 2.5em;
    font-family: Futura PT, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    font-weight: 700;
}

.grid {
    display: grid;
    gap: 1.5em;
    grid-template-columns: 1fr 1fr 1fr;
    /* width: 24em; */
}

.grid-item-1 {
    display: grid;
    place-content: center;
    grid-template-columns: 2fr 1fr;
    height: 8em;
    color: black;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), #ff009960);
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), #ff009920);
    border-radius: 1.5em;
    transition: 300ms;
    position: relative;
}

.grid-item-1:hover {
    margin-top: -0.6em;
}

.grid-item-1 img {
    height: 6em;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0 0em 1em 0;
    opacity: 1;
}

.border {
    height: fit-content;
    background-color: aqua;
}

.grid-item-1 p {
    gap: auto;
    padding-left: 1em;
    color: inherit;
    border-color: inherit;
    /* font-family: Futura PT; */
    font-weight: 600;
    font-size: 2em;
}

.grid-item-1 span {
    display: grid;
    place-content: center;
    gap: auto;
    font-size: 2em;
    border: 1px solid rgb(192, 192, 192);
    border-style: none none none solid;
    padding: auto;
    padding-block: 0.5em;
    color: inherit;
    border-color: inherit;
}

/* FORM CSS */

.form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-requisites-wrapper {
    display: grid;
    grid-template-areas: "input input input";
    gap: 1em;
}

.form, input {
    background-color: rgb(245, 245, 245);
    padding: 1em;
    /* margin: 0.5em; */
    border-radius: 1em;
    border: none;
    /* box-shadow: 0em 0em 3em 0.3em rgb(230, 230, 230); */
}

.form, input {
    outline: none;
}

.b {
    background-color: white;
    color: black;
    padding: 0.85em;
    padding-inline: 1.7em;
    margin-top: 2em;
    outline: none;
    border: 0.15em solid #ff0099a0;
    border-radius: 1em;
    font-weight: 500;
}

.back-arrow {
    position: absolute;
    display: grid;
    place-content: center;
    right: 4.75em;
    top: 4.75em;
    padding: 0em;
    padding-top: 1em;
    border: none;
    outline: none;
    color: #c90062;
    scale: 0.8;
}

.back-arrow span {
    font-size: 3em;
}

/* MEDIA QURIES */

@media (min-width: 0px) and (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .page h1 {
        margin-bottom: 1em;
        font-size: 2.5em;
    }
    .logo-title .logo {
        display: none;
    }
}
@media (min-width: 480px) and (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .logo-title .logo {
        display: none;
    }
}
@media (min-width: 600px) and (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
    .logo-title .logo {
        display: none;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* FILE SYSTEM CSS */

.finder {
    display: grid;
    gap: 0.5em;
    place-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    background-color: hsl(0, 0%, 100%);
    height: auto;
    width: auto;
    padding: 0;
}

.file {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: none;
    height: 7.5em;
    width: 7.5em;
    border-radius: 0.75em;
    transition: 200ms;
    opacity: 1;
    font-weight: 500;
    position: relative;
}

.file:hover {
    background-color: #ff009920;
    background-color: #ff00991a;
    opacity: 1;
}

.file-img {
    height: 4.8em;
    padding: 0.5em;
    opacity: 1;
}

.file-done {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    height: 1em;
    width: 1em;
    background-color: #ff0099aa;
    border-radius: 50%;
    padding: 0.2em;
}

.filename {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgb(237, 237, 237); */
    padding: 0.5em;
    padding-block: 0.25em;
    border-radius: 0.3em;
    height: fit-content;
    width: fit-content;
    font-size: 0.9em;
}





/* TRAIL CSS */

.trail {
    display: flex;
    flex-direction: row;
    margin-bottom: 2em;
    color: grey;
}

.trail-step {
    margin-right: 0.5em;
}

.trail-destination {
    color: rgb(0, 0, 0);
}




/* QUERIES CSS */

.archive-icon {
    height: 2em;
    padding: 0.309em;
}

.archive-text {
    color: white;
    height: 2em;
    border-radius: .5em;
    font-weight: 600;
    padding: 0.309em;
    padding-top: 0.409em;
    padding-inline: 0.5em;
    padding-left: 0;
}

.archive-group {
    position: absolute;
    top: 3em;
    right: 5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 200ms;
    background-color: grey;
    height: fit-content;
    min-width: fit-content;
    padding: 0.1em;
    border-radius: .5em;
    flex-wrap: nowrap;
}

.archive-group:hover {
    opacity: 0.6;
}































/* ALERTS CSS */

.alert-number {
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    background-color: red;
    display: grid;
    place-content: center;
    padding: 0.5em;
    font-size: 1.25em;
    color: white;
    height: 2em;
    width: 2em;
    border-radius: 100%;
    font-weight: 600;
}

.alert-text {
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    background-color: rgb(0, 255, 60);
    display: grid;
    place-content: center;
    padding: 0.75em;
    font-size: 1.25em;
    color: white;
    height: 2em;
    width: fit-content;
    border-radius: 1em;
    font-weight: 600;
}

/* QUERY CSS */

.query-group {
    display: flex;
    flex-direction: row;
}

.query-grid {
    display: grid;
    gap: 1em;
    width: 30em;
    height: 100%;
    margin-right: 1em;
}

.query {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1em;
    height: fit-content;
    font-weight: 600;
    border-radius: 1em;
    position: relative;
}

.q-archive {
    color: white;
    background-color: rgb(64, 64, 64);
}

.q-done {
    text-decoration: line-through;
    color: rgb(128, 128, 128, 0.6);
    background-color: rgba(245, 245, 245, 0.8);
}

.q-warning {
    color: black;
    background-color: rgb(238, 255, 0);
}

.q-new {
    color: black;
    background-color: rgb(245, 245, 245);
}

.query-status {
    display: flex;
    height: 1.8em;
    width: 1.8em;
    margin-right: 1em;
}

#blend {
    display: flex;
    height: 1.8em;
    width: 1.8em;
    margin-right: 1em;
    mix-blend-mode: color-burn;
}



.query-arrow {
    right: 1em;
    position: absolute;
    display: flex;
    height: 1.8em;
    width: 1.8em;
    margin-right: 1em;
    background-color: none;
}

.query-info {
    display: flex;
    position: absolute;
    right: 1.45em;
    height: 1em;
}





/* CHAT CSS */

.timegrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

.timeline {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 25em;
    width: auto;
    background-color: rgb(245, 245, 245);
    border-radius: 1em;
    padding: 3em;
}

.chat {
    display: flex;
    flex-direction: column;
    height: 25em;
    width: 40em;
    background-color: none;
    border-radius: 1em;
}

.chat-header {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 15%;
    width: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), #ff009960);
    border-radius: 0.9em 0.9em 0 0;
}

.chat-body {
    display: flex;
    justify-content: center;
    align-items: center;
    color: grey;
    height: 70%;
    width: 100%;
    background-color: rgb(245, 245, 245);
}

.chat-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 15%;
    width: 100%;
    background-color: rgb(245, 245, 245);
    border-radius: 0 0 0.9em 0.9em;
    border: 0.075em solid hsl(0, 0%, 83%);
    border-style: solid none none none;
}

.chat-message textarea {
    height: 100%;
    width: 90%;
    border: none;
    outline: none;
    border-radius: 0 0 0.9em 0.9em;
    font-size: large;
    padding: 1em;
    resize: none;
    background-color: rgb(245, 245, 245);
}

.send {
    height: 2em;
    opacity: 0.3;
    margin: 1em;
}

.audittime {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
    height: 5em;
    width: 100%;
    margin: 1em;
    font-size: 1.75em;
    font-weight: 700;
}

.chat-name {
    color: black;
    font-size: 1em;
    font-weight: 500;
}

.chat-pic {
    height: 2.5em;
    margin: 1em;
    border-radius: 50%;
}


/* LOGIN CSS */

.page-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 25em;
    width: 25em;
    background: rgb(255, 255, 255);
    border-radius: 2.5em;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.1);
    animation-duration: 1.5s;
    animation-name: fadeInMove;
}

.login-field {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5em;
    width: 15em;
    margin: 1em;
    border-radius: 2.5em;
    background: rgb(245, 245, 245);
    border: none;
    outline: 0.1em solid #ff009920;
    resize: none;
}

.login-logo {
    height: 2em;
    margin: 2.5em;
}

.wave {
    position: absolute;
    display: flex;
    height: 100vh;
    width: 100vw;
    animation-duration: 3s;
    animation-name: fadeIn;
    z-index: -1;
}






  /* KEYFRAMES CSS */

  @keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInMove {
    from {
        opacity: 0;
        margin-bottom: -10em;
    }
    to {
        opacity: 1;
        margin-bottom: 0em;
    }
}










/* FOOTER CSS */

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 4em;
    padding: 1em;
    padding-inline: 5em;
    border: 1px solid rgb(225, 225, 225);
    border-style: solid none none none;
}

.footer-note {
    color: rgb(0, 0, 0); 
}

.footer-links {
    display: flex;
    flex-direction: row;
}

.footer-link{
    background-color: rgb(225, 225, 225);
    border-radius: 0.3em;
    color: white;
    padding: 0.2em;
    padding-inline: 0.3em;
    font-size: 0.9em;
    margin-left: 0.5em;
}










.years {
    display: grid;
    place-content: center;
    width: auto;
    gap: 0.5em;
    row-gap: 4em;
    grid-template-columns: 1fr 1fr 1fr;
}

.year-active {
    display: grid;
    place-content: center;
    border-radius: 0.5em;
    height: 2em;
    width: 5em;
    background: linear-gradient(45deg, rgba(0, 255, 174, 0.1), #00f7ff60);
    padding: 1em;
    color: black;
    font-size: 3em;
    font-weight: 600;
}

.year {
    display: grid;
    place-content: center;
    border-radius: 0.5em;
    height: 2em;
    width: 5em;
    background-color: rgb(250, 250, 250);
    padding: 1em;
    color: rgb(115, 115, 115);
    font-size: 3em;
    font-weight: 400;
    font-size-adjust: 2;
}






/* SCHEDULE CSS */

.schedule-status {
    display: flex;
    font-size: 1em;
    background-color: #00ff37;
    background-color: #ffff00;
    border-radius: 1em;
    width: fit-content;
    padding: 1em;
    color: rgb(72, 72, 72);
    margin-top: 1em;
    font-weight: 600;
}

.map {
    height: 20em;
    width: 100%;
    border-radius: 1em;
}

[class*=copyrights-pane] {
    display: none;
}

[class*=map] {
    border-radius: 1em;
}









/* MODAL CSS */
  
.open-button {
    display: flex;
    flex-flow: nowrap;
    justify-content: center;
    align-items: center;
    flex-shrink: ;
    background-color: #fbff00;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-radius: 5em;
    transition: 300ms;
    min-height: 2.25em;
    min-width: 2.25em;
  }

.open-button img {
    height: 50%;
    opacity: 0.475;
}

.close-button {
    position: absolute;
    top: 2.5em;
    right: 2.5em;
    border: 0;
    outline: 0;
    background-color: transparent;
    color: black;
}

.close-button img {
    height: 1em;
    opacity: 0.5;
}

.modal {
    border-radius: 1em;
    padding: 1.5em;
    margin: auto;
    height: 25em;
    width: 35em;
    border: 0;
    box-shadow: 0 0 1em 0.1em rgb(0 0 0 / .1x);
}
  
.modal::backdrop {
    background: rgba(200, 200, 200, 0.5);
}

.modal h2 {
    margin-top: 0.25em;
}

/* UPLOAD CSS */

.upload-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.2em dashed black;
    height: 17.5em;
    margin-top: 2em;
    border-radius: 1em;
}

.upload-zone img {
    height: 4em;
}