.clickable {
    cursor: pointer;
}

.no-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.split-flexbox {
    display: flex;
}

.split-flexbox-left {
    width: 50%;
}

.split-flexbox-right {
    width: 50%;
}

.centered {
    margin: auto;
}

.hidden {
    display: none;
}

.center-div {
    max-width: fit-content;
    margin: auto;
}

/* FLEXCOL */

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.vari-flex-row {
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 1199px) {
    .vari-flex-row {
        display: flex;
        flex-direction: column;
    }
}

.space-between {
    justify-content: space-between;
}

.align-stretch {
    align-items: stretch;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

/* MARGINS */

.margin-bottom-1 {
    margin-bottom: 1px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-100 {
    margin-top: 100px;
}

/* PADDING */

.padding-left-20 {
    padding-left: 20px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-5 {
    padding-top: 5px;
}

/* FLEX SPACERS */

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex3 {
    flex: 3;
}

.flex4 {
    flex: 4;
}

.g20 {
    gap: 20px;
}

.g15 {
    gap: 15px;
}

.g10 {
    gap: 10px;
}

.g5 {
    gap: 5px;
}

/* FONT SIZES */

.font12 {
    font-size: 12px;
}

.font18 {
    font-size: 18px;
}

/* TEXT */

.text-centered {
    text-align: center;
}

.text-small {
    font-size: 16px;
}

.text-tiny {
    font-size: 12px;
}

.indent {
    text-indent: 20px;
}

.reverse-indent {
    text-indent: -20px;
    padding-left: 20px;
}

.text-right {
    text-align: right;
}

/* SIZING */

.w500 {
    width: 500px;
}

.h100p {
    height: 100%;
}