/* 
 * BASE CSS FOR WEB (ADMIN AND PUBLIC)
 */

/*** WIDTH AND HEIGHT ***/
.w-100 {
    width: 100%;
}

/*** COLORS ***/
.white {
    color: white!important;
}
.white-bg {
    background-color: white!important;
}

/*** TEXT ***/
.uppercase {
    text-transform: uppercase;
}
.normal {
    font-weight: 400!important;
}
.medium {
    font-weight: 500;
}
.semibold {
    font-weight: 600;
}
.bold,
.strong {
    font-weight: 700;
}
.thin,
.light {
    font-weight: 300;
}
.italic {
    font-style: italic;
}

/*** PADDING AND MARGIN ***/
.no-padding-gutters {
    padding-left: 0!important;
    padding-right: 0!important;
}
.no-margin-gutters {
    margin-left: 0!important;
    margin-right: 0!important;
}
.margin-auto {
    margin: 0 auto;
}

/*** ALIGNMENT ***/

/*** FLEX ***/
.d-flex {
    display: flex;
}
.d-block {
    display: block;
}
.justify-content-start {
    justify-content: flex-start;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-around {
    justify-content: space-around;
}
.justify-content-between {
    justify-content: space-between;
}
.align-items-start {
    align-items: flex-start;
}
.align-items-end {
    align-items: flex-end;
}
.align-items-center {
    align-items: center;
}
.flex-direction-column {
    flex-direction: column;
}
.flex-direction-row {
    flex-direction: row;
}
.flex-wrap {
    flex-wrap: wrap;
}

/*** POSITIONING ***/
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}

/*** VISIBILITY ***/
.opacity-0 {
    opacity: 0;
}

/*** OTHER ***/
.nowrap {
    white-space: nowrap;
}
.cleaner {
    clear: both;
    /*    height: 0px !important;*/
}
.outline-0 {
    outline: 0!important;
}
.fit-content {
    display: table;
}

/*** MEDIA ***/
@media (max-width: 1199px) {
    .margin-md-auto {
        margin: auto;
    }
    .text-md-center {
        text-align: center;
    }
    .justify-content-md-center {
        justify-content: center;
    }
}
@media (max-width:991px) {
    .flex-wrapper-sm {
        flex-basis: 100%;
    }
    .text-sm-left {
        text-align: left;
    }
    .text-sm-right {
        text-align: right;
    }
    .text-sm-center {
        text-align: center;
    }
    .margin-sm-auto {
        margin: auto;
    }
    .justify-content-sm-center {
        justify-content: center;
    }
    .flex-direction-sm-column {
        flex-direction: column;
    }
    .align-items-sm-start {
        align-items: flex-start;
    }
}
@media (max-width:767px) {
    .text-xs-left {
        text-align: left!important;
    }
    .text-xs-center {
        text-align: center!important;
    }
    .flex-wrapper-xs {
        flex-basis: 100%;
    }
    .d-xs-none {
        display: none!important;
    }
    .margin-xs-auto {
        margin: auto;
    }
    .justify-content-xs-center {
        justify-content: center!important;
    }
}
@media (max-width:575px) {
    .flex-wrapper-xss {
        flex-basis: 100%;
    }
}