/* 
    Created on : 27 lug 2022, 08:50:16
    Author     : Davide Versace
*/

.flex {
    display: flex;
}

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

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

.f-align-end{
    align-self: flex-end;
}

.f-align-start{
    align-self: flex-start;
}

.nowrap {
    flex-wrap: nowrap;
}

.wrap {
    flex-wrap: wrap;
}

.text-break-word{
    word-wrap: break-word;
}
.f-col {
    flex-flow: column;
}

.f-auto {
    flex: auto;
}

.overflow-hidden {
    overflow: hidden
}

.margin-top-home {
    /*    margin-top: 20px;*/
    height: 25px;
}

