* {box-sizing: border-box;}

#Home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/*#region Not Signed In*/

#NotSignedIn {
    display: flex;
    justify-content: center;
    align-items: center;
}

#NSIText {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: var(--font-color);
}

/*#endregion*/

/*#region Document Container Title Container*/

.DCTC {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    user-select: none;
}

.DCT {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: var(--font-color);
    padding: 0;
    margin: 16px 0;
    cursor: default;
}

/*#endregion*/

/*#region Card Container*/

#Container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    margin: 0;
    width: 100%;
}

#CardContainer, #CardContainerIDOC, #CardContainerCHKLST {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}

#CardContainer:has(.Card:hover), #CardContainerIDOC:has(.Card:hover), #CardContainerCHKLST:has(.Card:hover) {
    .Card {
        opacity: 0.2;
    }
    .Card:hover {
        opacity: 1;
    }
}

#CardTemplate {
    display: none;
}

.Card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    margin: 0;
    width: 250px;
    background-color: var(--Ezi-Orange);
    border-radius: 10px;
    box-shadow: 0 0 10px RGBA(0,0,0,0.5);
    transition: opacity 0.2s ease-in-out;
}

.Card:hover {
    cursor: pointer;
}

.Favourite {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 32px;
    color: RGB(255,255,255);
}

.IDContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 0 10px;
    margin: 0;
}

.IDC {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    width: fit-content;
    background-color: RGB(0,0,0);
    border-radius: 10px;
    padding: 10px;
    margin: 0;
}

.IDNumber {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: RGB(255,255,255);
    padding: 0;
    margin: 0;
    width: fit-content;
    cursor: pointer;
}

.Date {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: RGB(255,255,255);
    padding: 0;
    margin: 0;
    width: fit-content;
    cursor: pointer;
}

.TContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    width: 100%;
    background-color: RGBA(0,0,0,0.5);
    padding: 10px;
    margin: 0;
}

.Title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: RGB(255,255,255);
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: center;
}

/*#endregion*/

/*#region Folder Container*/

#FolderContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

#FolderContainer:has(.Folder:hover) {
    .Folder {
        opacity: 0.2;
    }
    .Folder:hover {
        opacity: 1;
    }
}

#FolderContainer:has(.Folder.Active) {
    .Folder {
        opacity: 0.2;
    }
    .Folder.Active {
        opacity: 1;
    }
}

#T_Two, #T_Three, #T_Seven {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 168px;
    background-color: var(--Ezi-Orange);
    background-size: cover;
    -webkit-clip-path: url(#FolderClip);
    clip-path: url(#FolderClip);
    transition: all 0.2s ease-in-out
}

.svg {
    position: absolute;
    width: 0;
    height: 0;
}

.FolderText {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: bold;
    background-color: RGBA(0,0,0,0.5);
    color: RGB(255,255,255);
    width: 100%;
    padding: 10px 0;
    margin: 0;
    text-align: center;
}

/*#endregion*/

/*#region Scaling*/

@media only screen and (max-width: 430px) {
    #T_Two, #T_Three, #T_Seven {
        width: 175px;
        height: 143px;
    }

    .FolderText {
        font-size: 20px;
    }
}

/*#endregion*/

/*#region*/
/*#endregion*/

/*#region*/
/*#endregion*/

/*#region*/
/*#endregion*/

/*#region*/
/*#endregion*/