

/* DEVTOOLS */


/* CENTERING */
.center_vertically{
    display: inline-flex;
    align-items: center;
}


/* HOVER DROPDOWN */
.dropdown_hover2:hover .dropdown_hover_content2 {
    display: block;
}
.dropdown_hover_content2 {
    z-index: 9999;
    cursor: auto;
    color: #000;
    background-color: #fff;
    display: none;
    position: absolute;
    min-width: 160px;
    margin: 0;
    padding: 0;

    border: 1px solid #c1f1f1;
    top: 0px;    
    right: -20px;
}
.dropdown_hover:hover .dropdown_hover_content {
    display: block;
}
.dropdown_hover_content {
    z-index: 9999;
    cursor: auto;
    color: #000;
    background-color: #fff;
    display: none;
    position: absolute;
    min-width: 160px;
    margin: 0;
    padding: 0;

    border: 1px solid #c1f1f1;
    top: 0px;    
    right: -20px;
}
.dropdown_hover_item {
    width: 100%;
    display: block;
    padding: 8px 16px;
    text-align: left;
    border: none;
    white-space: normal;
    float: none;
    outline: 0;
    color: var(--font-color);
    
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.dropdown_hover_item:hover{
    color: white;
    background-color: var(--font-color);
}

/* PADDING */
.padding_top_25px{
    padding-top:25px;
}

/* HEIGHT */

.height_200px{
    height: 200px;
}
.height_400px{
    height: 400px;
}
.height_600px{
    height: 600px;
}
.height_700px{
    height: 700px;
}
/* WIDTH */

/* WIDTH PIXELS */
.width_8px{
    width: 8px;
}
.width_10px{
    width: 10px;
}
.width_50px{
    width: 50px;
}
.width_75px{
    width: 75px;
}
.width_100px{
    width: 100px;
}

.width_150px{
    width: 150px;
}
.width_200px{
    width: 200px;
}
.width_250px{
    width: 250px;
    
}
.width_300px{
    width: 300px;
}
.width_400px{
    width: 400px;
}
.width_450px{
    width: 450px;
}
.width_600px{
    width: 600px;
}
.width_650px{
    width: 650px;
}
.width_800px{
    width: 800px;
}
.width_900px{
    width: 900px;
}
.width_1200px{
    width: 1200px;
}

/* WIDTH PERCETAGES */
.width_100p{
    width: 100%;
}
.width_90p{
    width: 90%;
}
.width_80p{
    width: 80%;
}
.width_75p{
    width: 75%;
}
.width_70p{
    width: 70%;
}
.width_60p{
    width: 60%;
}
.width_50p{
    width: 50%;
}
.width_45p{
    width: 45%;
}
.width_40p{
    width: 40%;
}
.width_30p{
    width: 30%;
}
.width_20p{
    width: 20%;
}
.width_15p{
    width: 15%;
}
.width_10p{
    width: 10%;
}
.width_5p{
    width: 5%;
}
.width_2p{
    width: 2%;
}

/* WIDTH MIN MAX AUTO */

.width_auto{
    width: auto;
}
.max_width_none{
    max-width: none;
}


/* DISPLAY */
.display_none{
    display: none;
}
.display_block{
    display: block;
}
.display_flex{
    display: flex;
}
.display_inline_block{
    display: inline-block;
}
.margin_auto{
    margin: auto;
}
.text_align_center{
    text-align: center;
}
.text_align_left{
    text-align: left;
}
.text_align_right{
    text-align: right;
}



/* MARGINS */


.margin_vertical_10px {
    margin-top: 10px;
    margin-bottom: 10px;
}

.margin_vertical_20px {
    margin-top: 20px;
    margin-bottom: 20px;
}

.margin_vertical_50px {
    margin-top: 50px;
    margin-bottom: 50px;
}

.margin_left_0px{
    margin-left: 0px;
}
.margin_left_2px{
    margin-left: 2px;
}
.margin_left_5px{
    margin-left: 5px;
}
.margin_right_5px{
    margin-right: 5px;
}

.margin_right_20px{
    margin-right: 20px;
}

.margin_left_40px{
    margin-left: 40px;
}

/* MARGIN TOP */

.margin_top_2px{
    margin-top: 2px;
}
.margin_top_5px{
    margin-top: 5px;
}
.margin_top_10px{
    margin-top: 10px;
}
.margin_top_20px{
    margin-top: 20px;
}
.margin_top_40px{
    margin-top: 40px;
}



.margin_top_5p{
    margin-top: 5%;
}

.margin_top_10p{
    margin-top: 10%;
}

.margin_left_auto{
    margin-left: auto;
}

.margin_bottom_20px {
    margin-bottom: 20px;
}
.margin_bottom_40px {
    margin-bottom: 40px;
}
.margin_bottom_80px {
    margin-bottom: 80px;
}

.margin_horizontal_20px {
    margin-left: 20px;
    margin-right: 20px;
}

.margin_horizontal_10px {
    margin-left: 10px;
    margin-right: 10px;
}

.overflow_auto{
    overflow: auto
}
.overflow_y_auto{
    overflow-y: auto;
}

.pointer {
    cursor: pointer;
}


.vertical_align_middle {
    vertical-align: middle;
  }
  
.dflex {
display: flex;
}

.justify_content_center {
justify-content: center;
}

.justify_content_space_between {
    justify-content: space-between;
}

.align_items_center {
align-items: center;
}

.flex_direction_column {
flex-direction: column;
}

.flex_direction_row {
flex-direction: row;
}
.flex_flow_wrap{
flex-flow: wrap;
}

/* POSITIONS */
.position_relative{
    position: relative;
}
.position_absolute{
    position: absolute;
}
.right_-10px{
    right: -10px;
}
.top_15px{
    top: 15px;
}
.top_25px{
    top: 25px;
}
.top_30px{
    top: 30px;
}
.bottom_5px{
    bottom: 5px;
}
.right_10px{
    right: 10px;
}
.devtools{
    display: none;
}