
.homepage-groups-wrapper {
    margin-left: 4.8em;
    margin-right: 4.8em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage-group-wrapper {
    width: 100%;
    margin-bottom: 1em;
}

.homepage-group-top-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.5em;
    margin-left: 0.7em;
}

.homepage-group-name {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.02em;
    outline: 0px solid transparent;
}

.homepage-group-hide {
    margin-left: 1em;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
}

.homepage-group-hide img {
    width: 0.6em;
    height: 0.6em;
}

.homepage-group-hide:hover{
    background-color: #DEDEDE;
}

.homepage-group-options {
    width: 30px;
    height: 30px;
    margin-left: 0.3em;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.homepage-group-options img {
    width: 0.85em;
    height: 0.65em;
}

.homepage-group-options:hover{
    background-color: #DEDEDE;
}

.homepage-group-bottom-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.homepage-group-document {
    padding: 0.6em 0.7em;
    width: 17.2em;
    height: 12.5em;
    margin: 0.5em 0.65em;
    border-radius: 5px;
    background-color: white;
}

.homepage-group-new-workspace-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    margin: 0.5em 1em;
    width: 15.5em;
    height: 12.5em;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.1s;
}

.homepage-group-new-workspace-div:hover {
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
    transition: 0.1s;
}

.homepage-group-new-workspace-icon-div {
    width: 3em;
    height: 3em;
    background-color: white;
    border-radius: 5px;
    transition: 0.1s;
}

.homepage-group-new-workspace-icon {
    width: 1.5em;
    height: 1.5em;
    opacity: 30%;
    transition: 0.1s;
}

.homepage-group-new-workspace-div:hover .homepage-group-new-workspace-icon{
    opacity: 45%;
    transition: 0.1s;
}

.homepage-group-new-workspace {
    margin-top: 1em;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #A2A2A2;
    opacity: 80%;
    transition: 0.1s;
}

.homepage-group-new-workspace-div:hover .homepage-group-new-workspace{
    color: #2A2A2A;
    opacity: 50%;
    transition: 0.1s;
}

.homepage-group-document:hover{
    cursor: pointer;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.homepage-group-document-image {
    height: 8em;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;
    object-fit: cover;
}

.homepage-document-highlight {
    width: 0.5em;
    height: 0.5em;
    background-color: #E04d46;
    border-radius: 100%;
    border: 2px solid white;
    margin-top: 0.85em;
}

.homepage-group-document-bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.homepage-group-document-left {
    width: 8%;
}

.homepage-group-document-right {
    width: 100%;
}

.homepage-group-document-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    color: #2A2A2A;
    outline: 0px solid transparent;
}

.homepage-group-document-right-top {
    margin-top: 0.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.homepage-group-document-permalink {
    padding: 0.5em 1em;
    border-radius: 15px;
    background-color: #5DAD78;
    color: white;
    font-size: 9px;
    transition: 0.3s;
}

.homepage-group-document-right-bottom {
    margin-top: 0.6em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.homepage-group-document-date {
    font-size: 14px;
    color: #A2A2A2;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.homepage-group-document-date img {
    width: 12px;
    height: 12px
}

.homepage-group-document-date span {
    margin-left: 0.3em;
    padding-top: 0.1em;
}

.homepage-group-document-users {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.homepage-group-user-image-div {
    width: 24px;
    height: 24px;
    margin-left: 2px;
}

.homepage-group-user-image {
    width: 1.5em;
    height: 1.5em;
    object-fit: cover;
    border-radius: 20px;
}

.homepage-group-extra-users {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2A2A2A;
    color: white;
    font-size: 10px;
    border-radius: 100%;
    margin-left: 2px;
}

.homepage-group-new-group-wrapper {
    padding: 1em;
    display: flex;
    border-radius: 3px;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    margin-bottom: 3em;
}

.homepage-group-new-group-wrapper:hover {
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.homepage-group-new-group-text {
    font-size: 18px;
    color: #A2A2A2;
    opacity: 80%;
    padding-right: 0.5em;
}

.homepage-group-new-group-wrapper:hover .homepage-group-new-group-text{
    color: #2A2A2A;
    opacity: 50%;
    transition: 0.1s;
}

.homepage-group-new-group-icon {
    width: 1em;
    height: 1em;
    opacity: 30%;
}

.homepage-group-new-group-wrapper:hover .homepage-group-new-group-icon {
    opacity: 45%;
    transition: 0.1s;
}

.homepage-group-new-group-input-wrapper {
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    margin-bottom: 3em;
}

.homepage-group-new-group-name-input {
    border: none;
    outline: none;
    padding: 0.7em 0.7em 0.4em;
    background-color: transparent;
    font-size: 17px;
}