<p>/* === Display === */ .d-none { display: none !important; } .d-inline { display: inline !important; } .d-inline-block { display: inline-block !important; } .d-block { display: block !important; } .d-table { display: table !important; } .d-table-row { display: table-row !important; } .d-table-cell { display: table-cell !important; } .d-grid { display: grid !important; } .d-inline-grid { display: inline-grid !important; } @media (max-width: 768px) { .d-sm-none { display: none !important; } .d-sm-inline { display: inline !important; } .d-sm-inline-block { display: inline-block !important; } .d-sm-block { display: block !important; } .d-sm-table { display: table !important; } .d-sm-table-row { display: table-row !important; } .d-sm-table-cell { display: table-cell !important; } .d-sm-grid { display: grid !important; } .d-sm-inline-grid { display: inline-grid !important; } } /* === Position === */ .position-static { position: static !important; } .position-relative { position: relative !important; } .position-absolute { position: absolute !important; } .position-fixed { position: fixed !important; } .position-fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; } .position-fixed-bottom { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1030; } /* === Text === */ .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } .tt-up { text-transform: uppercase !important; } .tt-cap { text-transform: capitalize !important; } .fz-13 { font-size: 13px !important; } .fz-14 { font-size: 14px !important; } .fz-15 { font-size: 15px !important; } .fz-17 { font-size: 17px !important; } .fz-18 { font-size: 18px !important; } .fz-19 { font-size: 19px !important; } .fz-20 { font-size: 20px !important; } @media (max-width: 768px) { .text-sm-left { text-align: left !important; } .text-sm-right { text-align: right !important; } .text-sm-center { text-align: center !important; } .fz-sm-13 { font-size: 13px !important; } .fz-sm-15 { font-size: 15px !important; } .fz-sm-17 { font-size: 17px !important; } .fz-sm-18 { font-size: 18px !important; } } /* === Background === */ .bg-position-center { background-position: 50% 50% !important; } .bg-size-cover { background-size: cover !important; } .bg-attachment-fixed { background-attachment: fixed !important; } .bg-attachment-scroll { background-attachment: scroll !important; }</p>