/* FLEXBOX: */

.Flex {
    display: flex;
}

.row {
    flex-direction: row;
}

.wrap {
    flex-wrap: wrap;
}

.column {
    flex-direction: column;
}

.rvsd {
    flex-direction: row-reverse;
}

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

.flexStart {
    align-items: flex-start;
    align-self: flex-start;
}

.flexEnd {
    align-items: flex-end;
    align-self: flex-end;
}

.flexTop {
    align-items: flex-start;
}

.alignBottom {
    align-self: self-end;
}

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

.spaceAround {
    align-content: space-around;
    justify-content: space-around;
}

.spaceEvenly {
    align-content: space-evenly;
    justify-content: space-evenly;
}

.gap10 {
    gap: 10px;
}

.gap20 {
    gap: 20px;
}

.gap30 {
    gap: 30px;
}


.spacer {
    margin: 10px;
    /* border: dashed 1px; */
}




@media screen and (max-width: 640px){

    .row {
        flex-direction: column;
    }

}