/**********************************************************************/
/******************************  GENERAL  *****************************/
/**********************************************************************/

html,
body {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a,
menu {
    margin: 0px;
    padding: 0px;
}

a {
    list-style: none;
    text-decoration: none;
}

li {
    list-style: none;
}

/**********************************************************************/
/*******************************  COLOR  ******************************/
/**********************************************************************/

.c-white {
    color: #FFFFFF;
}
.c-black {
    color: #000000;
}
/*
.color-1 {
    color:;
}
.color-2 {
    color:;
}
.color-3 {
    color:;
}
.color-4 {
    color:;
}
.color-5 {
    color:;
}
*/

/**********************************************************************/
/***************************  FONT-FAMILY  ***************************/
/**********************************************************************/


.font-family-1 {
    font-family: sans-serif;
}
/*
.font-family-2 {
    font-family: ;
}
.font-family-3 {
    font-family: ;
}
*/

/**********************************************************************/
/*****************************  FONT-SIZE  ****************************/
/**********************************************************************/

.font-size-10 {
    font-size: 10px;
}
.font-size-12 {
    font-size: 12px;
}
.font-size-14 {
    font-size: 14px;
}
.font-size-16 {
    font-size: 16px;
}
.font-size-18 {
    font-size: 18px;
}
.font-size-20 {
    font-size: 20px;
}
.font-size-25 {
    font-size: 25px;
}
.font-size-30 {
    font-size: 30px;
}
.font-size-35 {
    font-size: 35px;
}
.font-size-40 {
    font-size: 40px;
}
.font-size-45 {
    font-size: 45px;
}
.font-size-50 {
    font-size: 50px;
}

/**********************************************************************/
/****************************  FONT-WEIGHT  ***************************/
/**********************************************************************/
.bold {
    font-weight: bold;
}
.weight-100 {
    font-weight: 100;
}
.weight-200 {
    font-weight: 200;
}
.weight-300 {
    font-weight: 300;
}
.weight-400 {
    font-weight: 400;
}
.weight-500 {
    font-weight: 500;
}
.weight-600 {
    font-weight: 600;
}
.weight-700 {
    font-weight: 700;
}
.weight-800 {
    font-weight: 800;
}
.weight-900 {
    font-weight: 900;
}

/**********************************************************************/
/**************************  LETTER-SPACING  **************************/
/**********************************************************************/

.letter-spacing-1 {
    letter-spacing: 1px;
}
.letter-spacing-2 {
    letter-spacing: 2px;
}
.letter-spacing-3 {
    letter-spacing: 3px;
}
.letter-spacing-4 {
    letter-spacing: 4px;
}
.letter-spacing-5 {
    letter-spacing: 5px;
}

/**********************************************************************/
/*******************************  MARGIN  *****************************/
/**********************************************************************/

.margin-auto {
    margin: auto !important;
}

/** MARGIN-LEFT **/
.ml-0 {
    margin-left: 0;
}
.ml-10 {
    margin-left: 10px;
}
.ml-20 {
    margin-left: 20px;
}
.ml-30 {
    margin-left: 30px;
}
.ml-40 {
    margin-left: 40px;
}

/** MARGIN-TOP **/
.mt-0 {
    margin-top: 0;
}
.mt-10 {
    margin-top: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}

/** MARGIN-RIGHT **/
.mr-0 {
    margin-right: 0;
}
.mr-10 {
    margin-right: 10px;
}
.mr-20 {
    margin-right: 20px;
}
.mr-30 {
    margin-right: 30px;
}
.mr-40 {
    margin-right: 40px;
}

/** MARGIN-BOTTOM **/
.mb-0 {
    margin-bottom: 0;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}

/**********************************************************************/
/******************************  PADDING  *****************************/
/**********************************************************************/

/** PADDING-LEFT **/
.pl-0 {
    padding-left: 0 !important;
}
.pl-10 {
    padding-left: 10px !important;
}
.pl-20 {
    padding-left: 20px !important;
}
.pl-30 {
    padding-left: 30px !important;
}
.pl-40 {
    padding-left: 40px !important;
}

/** PADDING-TOP **/
.pt-0 {
    padding-top: 0 !important;
}
.pt-10 {
    padding-top: 10px !important;
}
.pt-20 {
    padding-top: 20px !important;
}
.pt-30 {
    padding-top: 30px !important;
}
.pt-40 {
    padding-top: 40px !important;
}

/** PADDING-RIGHT **/
.pr-0 {
    padding-right: 0 !important;
}
.pr-10 {
    padding-right: 10px !important;
}
.pr-20 {
    padding-right: 20px !important;
}
.pr-30 {
    padding-right: 30px !important;
}
.pr-40 {
    padding-right: 40px !important;
}

/** PADDING-BOTTOM **/
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-10 {
    padding-bottom: 10px !important;
}
.pb-20 {
    padding-bottom: 20px !important;
}
.pb-30 {
    padding-bottom: 30px !important;
}
.pb-40 {
    padding-bottom: 40px !important;
}

/**********************************************************************/
/*******************************  TEXTE  ******************************/
/**********************************************************************/

/**  TEXT-DECORATION  **/
.underline {
    text-decoration: underline;
}

/**  TEXT-TRANSFORM  **/
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
.lowercase {
    text-transform: lowercase;
}

/**  TEXT-ALIGN  **/
.text-center {
    text-align: center;
}

/**********************************************************************/
/*****************************  POSITION  *****************************/
/**********************************************************************/

.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}

/**********************************************************************/
/******************************  Z-INDEX  *****************************/
/**********************************************************************/

.z-index-100 {
    z-index: 100;
}
.z-index-200 {
    z-index: 200;
}
.z-index-300 {
    z-index: 300;
}
.z-index-400 {
    z-index: 400;
}
.z-index-500 {
    z-index: 500;
}

/**********************************************************************/
/*******************************  WIDTH  ******************************/
/**********************************************************************/

.width-100 {
    width: 100%;
}
.width-auto {
    width: auto;
}
.width-fit-content {
    width: fit-content;
}

/**********************************************************************/
/*******************************  HEIGHT  *****************************/
/**********************************************************************/

.height-100 {
    height: 100%;
}
.height-auto {
    height: auto;
}
.height-fit-content {
    height: fit-content;
}

/**********************************************************************/
/******************************  DISPLAY  *****************************/
/**********************************************************************/

.display-none {
    display: none;
}
.display-flex {
    display: flex;
}
.display-block {
    display: block;
}
.display-inline {
    display: inline;
}
.display-inline-block {
    display: inline-block;
}

/**********************************************************************/
/********************************  FLEX  ******************************/
/**********************************************************************/

.flex-row {
    flex-direction: row;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.flex-column {
    flex-direction: column !important;
}
.flex-column-reverse {
    flex-direction: column-reverse;
}

/**  JUSTIFY  **/
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-evenly {
    justify-content: space-evenly;
}
.justify-end {
    justify-content: flex-end;
}

/**********************************************************************/
/*******************************  ALIGN  ******************************/
/**********************************************************************/

.align-items-center {
    align-items: center;
}

/**********************************************************************/
/*******************************  DIVERS  *****************************/
/**********************************************************************/

.cursor-pointer {
    cursor: pointer;
}

/**********************************************************************/
/******************************  OVERFLOW  ****************************/
/**********************************************************************/

.overflow-y-scroll {
    overflow-y: scroll;
}
.overflow-y-hidden {
    overflow-y: hidden;
}
.overflow-x-scroll {
    overflow-x: scroll;
}
.overflow-x-hidden {
    overflow-x: hidden;
}