<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.overflow-block {
    width: 100vw;
    margin-left: calc(-1 * ((100vw - 100%) / 2));
    padding: 0 15px 0 15px;
}

/* 
 * 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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    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;
}

/* OTHER */
.nowrap {
    white-space: nowrap;
}
.cleaner {
    clear: both;
    /*    height: 0px !important;*/
}
.outline-0 {
    outline: 0!important;
}
.fit-content {
    display: table;
}
/*.reset-after::after {
    display: none!important;
}*/

/* MEDIA */
@media (max-width:1199px) {
    .flex-direction-md-column {
        flex-direction: column!important;
    }
}
@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: 0 auto;
    }
}
@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: 0 auto;
    }
}

@media (max-width:575px) {
    .flex-wrapper-xss {
        flex-basis: 100%;
    }
}</pre></body></html>