/* Overflow */
.overflow-auto {
    overflow: auto;
}

/* Border radius */
.border-radius-medium {
    border-radius: 8px;
}

.border-radius-large {
    border-radius: 15px;
}

/* Visual borders */
.border-top {
    border-top: 1px solid var(--neutrals-100);
}

.myborder-bottom {
    border-bottom: 1px solid var(--neutrals-100);
}

/* Widths and heights */
.height-auto {
    height: auto;
}
.height-100 {
    height: 100%;
}
.max-height-100 {
    max-height: 100%
}

.width-auto {
    width: auto;
}
.width-fitcontent {
    width: fit-content;
}
.width-100 {
    width: 100%;
}
.max-width-100 {
    max-width: 100%
}

/* Flex */
.display-flex {
    display: flex;
}
.flex-grow-1 {
    flex-grow: 1 !important;
}

/* Margin */
.nomargin {
    margin: 0;
}
.marginbottomonly-small {
    margin: 0;
    margin-bottom: 10px;
}
.marginbottomonly-large {
    margin: 0;
    margin-bottom: 20px;
}

/* Positioning */
.display-block {
    display: block;
}
.center-xaxis {
    justify-content: center;
}
.justify-content-end {
     justify-content: flex-end;
}
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
