
/* V. 22-03-2019 12:00 PM */
/* Display classes */

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-flow-root { display: flow-root !important; }
.d-table-cell { display: table-cell !important; }
.d-inline { display: inline !important; }
.d-inline-table { display: inline-table !important; }
.d-inline-flex { display: inline-flex !important; }
.d-inline-block { display: inline-block !important; }

/* Align classes */

.ai-center   { align-items: center !important; }
.ai-baseline { align-items: baseline !important; }
.ai-start    { align-items: start !important; }
.ai-end      { align-items: end !important; }
.ai-f-start  { align-items: flex-start !important; }
.ai-f-end    { align-items: flex-end !important; }

/* Justify Content classes */

.jc-unset   { justify-content: unset !important; }
.jc-center  { justify-content: center !important; }
.jc-start   { justify-content: start !important; }
.jc-end     { justify-content: end !important; }
.jc-f-start { justify-content: flex-start !important; }
.jc-f-end   { justify-content: flex-end !important; }

/* Width Height classes */

.h50p { height: 50%; }
.w50p { width : 50%; }
.h100p { height: 100%; }
.w100p { width : 100%; }

/* Margin classes */

.margin-0 { margin: 0 !important; }
.margin-auto { margin: auto !important; }

.ml0  { margin-left: 0px !important; }
.ml5  { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }

.mr0  { margin-right: 0px !important; }
.mr5  { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }

.mb0  { margin-bottom: 0px !important; }
.mb5  { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }

.mt0  { margin-top: 0px !important; }
.mt5  { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt-10 { margin-top: -10px !important; }

/* Padding classes */
.pad-0 { padding: 0 !important; }

/* Disable Text Selection */
.no-select 
{
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}