#teach-resource {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

#teach-resource.hidden {
    display: none;
}

#teach-resource .content {
    min-width: 300px;
    width: fit-content;
    max-width: 840px;
    height: fit-content;
    background-color: #18324b;
    border-radius: 30px;
    padding: 0 12px 12px 12px;
}

#teach-resource .content .closeBtn {
    position: absolute;
    top: 15px;
    right: 24px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    user-select: none;
}

#teach-resource .content .title {
    position: relative;
    color: #ffffff;
    font-size: 30px;
    min-height: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#teach-resource .content .background {
    min-height: 0;
    position: relative;
    background-color: #FFFFFF;
    border-radius: 0 0 25px 25px;
    padding: 24px;
    display: flex;
    justify-content: center;
}

#teach-resource .content .background .buttons {
    min-height: 120px;
    max-height: 358px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    overflow: auto;
}

#teach-resource .content .background .buttons .teach-resource-btn {
    width: 102px;
    height: 90px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#teach-resource .content .background .buttons .teach-resource-btn .icon {
    width: 60px;
    height: 60px;
    cursor: pointer;
}

#teach-resource .content .background .buttons .teach-resource-btn .text {
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    color: #18324b;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    white-space: nowrap;
}