.content-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
    /* overflow-y: hidden; */
    height: fit-content;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
    gap: 10px;
}

.content-card-invisible {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    height: fit-content;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0;
    gap: 10px;
    /* margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px; */
    padding-right: 10px;
}

.transparent {
    background-color: transparent;
    box-shadow: none;
}

.glass-gradient {
    background-color: none;
    background: linear-gradient(0deg,
            rgba(1, 4, 59, 0.35) 0%,
            rgba(1, 4, 59, 0.25) 100%)
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #dddddd;
    margin-top: -10px;
}

.row {
    flex-direction: row;
}

.fit-content-width {
    width: fit-content;
}

.full-height {
    height: 100%;
    box-sizing: border-box;
}

.full-width {
    width: 100%;
    box-sizing: border-box;
}

.width-fit-content {
    width: fit-content;
    box-sizing: border-box;
}

.height-fit-content {
    height: fit-content;
    box-sizing: border-box;
}

.scrollable {
    overflow-y: auto;
    overflow-x: auto;
}

.half-width {
    width: 50%;
}

.seventy-width {
    width: 65%;
}

.thirty-width {
    width: 35%;
}

.space-between {
    justify-content: space-between;
    align-items: center;
}

.content-card-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

.centered {
    justify-content: center;
    align-items: center;
}

.content-divider {
    width: 100%;
    height: 1px;
    background-color: #dddddd;
    display: inline-block;
}

.divider-container-vertical {
    display: flex;
    height: 100%;
    box-sizing: border-box;
    padding-top: 15px;
    padding-bottom: 15px;
}

.divider-container-vertical .content-divider-vertical {
    width: 1px;
    height: 100%;
    background-color: #dddddd;
    box-sizing: border-box;
}

.divider-container-horizontal {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.divider-container-horizontal .content-divider-horizontal {
    height: 1px;
    width: 100%;
    background-color: #dddddd;
    box-sizing: border-box;
}