.flex-column {
    flex-direction: column;
}

.d-flex {
    display: flex;
}
.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.cursor-pointer {
    cursor: pointer;
}

.w-40 {
    width: 40px !important;
}

.w-50 {
    width: 50px !important;
}

.w-100 {
    width: 100px !important;
}

/* SPACING */

.mb-3 {
    margin-bottom: 1rem!important;
}

.mr-3 {
    margin-right: 1rem!important;
}

.p-0 {
    padding: 0rem!important;
}

.p-3 {
    padding: 1rem!important;
}

.pb-0 {
    padding-bottom: 0rem!important;
}
/* COLORS */
.bg-light {
    background-color: #f8f9fa!important;
}

.bg-light-grey {
    background-color: #ebeff0!important;
}

.bg-white {
    background-color: #fff!important
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

/* TEXTS */
.text-break {
    overflow-wrap: break-word;
}

.font-weight-bold {
    font-weight: bold;
}

.a-decoration {
    text-decoration: none;
    color: black;
}



