/*******************************************************************************************************
FONTS
*******************************************************************************************************/
@font-face {
    font-family: "Bebas-Neue";
    src: url(/assets/fonts/BebasNeue-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Montserrat";
    src: url(/assets/fonts/Montserrat-Regular.ttf) format("truetype");
}


/*******************************************************************************************************
VARIABLES
*******************************************************************************************************/
:root {
    --color-0: transparent;
    --color-1: #ffffff;
    --color-2: #fe0000;
    --color-3: #01ff11;
    --color-4: #0140ff;
    --color-5: #ffe900;
    --color-6: #d95d39;
    --color-7: #d76f52;
    --color-8: #da8872;
    --color-9: #1d1412;
    --color-10: #3f3b3b;
    --color-11: #878080;
    --color-12: #b1a3a3;
    --color-13: #ebe9e9;
    --color-14: #56e39f;
    --color-15: #2b50AA;
    --color-16: #a63d40;
    --color-17: rgba(0,0,0, .8);
    --color-18: rgba(0,0,0, .6);
    --color-19: rgba(0,0,0, .4);
    --color-20: rgba(0,0,0, .2);
    --gradient-1: linear-gradient(transparent 0%, rgba(0, 0, 0, .4) 25%, rgba(0, 0, 0, .8) 50%, rgba(0, 0, 0, .4) 60%, transparent 70%, transparent 100%);
    --gradient-2: linear-gradient(transparent 0%, rgba(0, 0, 0, .8) 50%, transparent 100%);
    /* --gradient-2: linear-gradient(transparent 0%, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, .7) 70%, rgba(0, 0, 0) 100%); */
    /* --color-21: linear-gradient(rgba(0, 0, 0, .01), rgba(0, 0, 0, .9) 90%); */
    --shadow-1: 4px 4px 10px 2px rgba(63,59,59, .4);
    --shadow-2: 0 -4px 10px 2px rgba(63,59,59, .4);
    --shadow-3: 0 -4px 10px 2px rgba(63,59,59, .4); /* à faire */
    --shadow-4: 0 -4px 10px 2px rgba(63,59,59, .4); /* à faire */
    --radius-1: 50%;
    --radius-2: 15px;
    --radius-3: 0 0 15px 15px;
    /* --radius-2: 15px 15px 0 0;
    --radius-3: 15px; */
    --radius-4: 5px;
    --radius-5: 15px 0 0 15px;
    --radius-6: 0 15px 15px 0;
    /* --radius-7: 15px 15px 0 0; */
    --size-1: .1rem;
    --size-2: .2rem;
    --size-3: .3rem;
    --size-4: .4rem;
    --size-5: .5rem;
    --size-6: .6rem;
    --size-7: .7rem;
    --size-8: .8rem;
    --size-9: .9rem;
    --size-10: 1rem;
    --size-11: 1.1rem;
    --size-12: 1.2rem;
    --size-13: 1.3rem;
    --size-14: 1.4rem;
    --size-15: 1.5rem;
    --size-16: 1.6rem;
    --size-17: 1.7rem;
    --size-18: 1.8rem;
    --size-19: 1.9rem;
    --size-20: 2rem;
    --weight-1: 400;
    --weight-2: 600;
    --weight-3: 800;
}

/*******************************************************************************************************
ANIMATIONS
*******************************************************************************************************/
@-webkit-keyframes modalanimation {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}
@keyframes modalanimation {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}


/*******************************************************************************************************
GENERAL
*******************************************************************************************************/
*, ::before, ::after {
	box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    max-width: 600px;
    margin: auto;
    font-size: var(--size-10);
    background-color: var(--color-1);
}
a {
	display: block;
	text-decoration: none;
	text-decoration-color: none;
	text-decoration-line: none;
    text-decoration-style: none;
    text-overflow: ellipsis;
    cursor: pointer;
}
h1, h2, h3, h4, h5, h6, p {
	text-decoration: none;
    text-overflow: ellipsis;
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas-Neue", sans-serif;
}
p, li, a, button, input {
    font-family: "Montserrat", sans-serif;
}
ul, ol {
    list-style-type: none;
	margin: 0;
	padding: 0;
}
select {
	appearance: none;
    text-overflow: ellipsis;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
button {
    border: none;
    cursor: pointer;
    text-overflow: ellipsis;
    background-color: transparent;
}
fieldset {
    border: 0;
}
input {
    font-family: "Montserrat", sans-serif;
    border-style: unset;
    text-overflow: ellipsis;
    background-color: transparent;
}
textarea {
    font-family: "Montserrat", sans-serif;
    border: none;
    resize: none;
}
:focus {
    outline: none;
}
form {
    margin: 0;
}
input::placeholder, textarea::placeholder {
    font-family: "Montserrat", sans-serif;
    color: var(--color-11);
    font-size: var(--size-8);
    font-weight: var(--weight-1);
    line-height: 20px;
}


/*******************************************************************************************************
POSITION
*******************************************************************************************************/
.position-1 {
    position: fixed;
}
.position-2 {
    position: relative;
}
.position-3 {
    position: absolute;
}
.position-4 {
    position: sticky;
}


/*******************************************************************************************************
DISPLAY
*******************************************************************************************************/
.display-0 {
    display: none;
}
.display-1 {
    display: flex;
}
.display-2 {
    display: grid;
}
.display-3 {
    display: contents;
}


/*******************************************************************************************************
FLEX-DIRECTION
*******************************************************************************************************/
.flex-direction-1 {
    flex-direction: column;
}


/*******************************************************************************************************
FLEX-ITEMS
*******************************************************************************************************/
.flex-items-1 {
    align-items: flex-start;
}
.flex-items-2 {
    align-items: center;
}
.flex-items-3 {
    align-items: flex-end;
}
.flex-items-4 {
    align-items: baseline;
}


/*******************************************************************************************************
FLEX-CONTENT
*******************************************************************************************************/
.flex-content-1 {
    justify-content: flex-start;
}
.flex-content-2 {
    justify-content: center;
}
.flex-content-3 {
    justify-content: flex-end;
}
.flex-content-4 {
    justify-content: space-around;
}
.flex-content-5 {
    justify-content: space-between;
}
.flex-content-6 {
    justify-content: space-evenly;
}


/*******************************************************************************************************
FLEX-WRAP
*******************************************************************************************************/
.flex-wrap-1 {
    flex-wrap: wrap;
}
.flex-wrap-2 {
    flex-wrap: nowrap;
}


/*******************************************************************************************************
TXT ALIGN
*******************************************************************************************************/
.txt-align-1 {
    text-align: left;
}
.txt-align-2 {
    text-align: center;
}
.txt-align-3 {
    text-align: right;
}


/*******************************************************************************************************
TXT WRAP
*******************************************************************************************************/
.txt-wrap-1 {
    text-wrap: nowrap;
}


/*******************************************************************************************************
TXT OVERFLOW
*******************************************************************************************************/
.txt-overflow-1 {
    text-overflow: ellipsis;
}


/*******************************************************************************************************
TXT SHADOW
*******************************************************************************************************/
.txt-shadow-1 {
    text-shadow: 2px 2px 1px var(--color-5);
}


/*******************************************************************************************************
TXT SIZE
*******************************************************************************************************/
.txt-size-1 {
    font-size: var(--size-1);
}
.txt-size-2 {
    font-size: var(--size-2);
}
.txt-size-3 {
    font-size: var(--size-3);
}
.txt-size-4 {
    font-size: var(--size-4);
}
.txt-size-5 {
    font-size: var(--size-5);
}
.txt-size-6 {
    font-size: var(--size-6);
}
.txt-size-7 {
    font-size: var(--size-7);
}
.txt-size-8 {
    font-size: var(--size-8);
}
.txt-size-9 {
    font-size: var(--size-9);
}
.txt-size-10 {
    font-size: var(--size-10);
}
.txt-size-11 {
    font-size: var(--size-11);
}
.txt-size-12 {
    font-size: var(--size-12);
}
.txt-size-13 {
    font-size: var(--size-13);
}
.txt-size-14 {
    font-size: var(--size-14);
}
.txt-size-15 {
    font-size: var(--size-15);
}
.txt-size-16 {
    font-size: var(--size-16);
}
.txt-size-17 {
    font-size: var(--size-17);
}
.txt-size-18 {
    font-size: var(--size-18);
}
.txt-size-19 {
    font-size: var(--size-19);
}
.txt-size-20 {
    font-size: var(--size-20);
}


/*******************************************************************************************************
TXT WEIGHT
*******************************************************************************************************/
.txt-weight-1 {
    font-weight: var(--weight-1);
}
.txt-weight-2 {
    font-weight: var(--weight-2);
}
.txt-weight-3 {
    font-weight: var(--weight-3);
}


/*******************************************************************************************************
TXT COLOR
*******************************************************************************************************/
.txt-color-0 {
    color: var(--color-0);
}
.txt-color-1 {
    color: var(--color-1);
}
.txt-color-2 {
    color: var(--color-2);
}
.txt-color-3 {
    color: var(--color-3);
}
.txt-color-4 {
    color: var(--color-4);
}
.txt-color-5 {
    color: var(--color-5);
}
.txt-color-6 {
    color: var(--color-6);
}
.txt-color-7 {
    color: var(--color-7);
}
.txt-color-8 {
    color: var(--color-8);
}
.txt-color-9 {
    color: var(--color-9);
}
.txt-color-10 {
    color: var(--color-10);
}
.txt-color-11 {
    color: var(--color-11);
}
.txt-color-12 {
    color: var(--color-12);
}
.txt-color-13 {
    color: var(--color-13);
}
.txt-color-14 {
    color: var(--color-14);
}
.txt-color-15 {
    color: var(--color-15);
}
.txt-color-16 {
    color: var(--color-16);
}
.txt-color-17 {
    color: var(--color-17);
}
.txt-color-18 {
    color: var(--color-18);
}
.txt-color-19 {
    color: var(--color-19);
}
.txt-color-20 {
    color: var(--color-20);
}
.txt-color-21 {
    color: var(--color-21);
}
.txt-color-22 {
    color: var(--color-22);
}


/*******************************************************************************************************
BACK COLOR
*******************************************************************************************************/
.back-color-0 {
    background-color: var(--color-0);
}
.back-color-1 {
    background-color: var(--color-1);
}
.back-color-2 {
    background-color: var(--color-2);
}
.back-color-3 {
    background-color: var(--color-3);
}
.back-color-4 {
    background-color: var(--color-4);
}
.back-color-5 {
    background-color: var(--color-5);
}
.back-color-6 {
    background-color: var(--color-6);
}
.back-color-7 {
    background-color: var(--color-7);
}
.back-color-8 {
    background-color: var(--color-8);
}
.back-color-9 {
    background-color: var(--color-9);
}
.back-color-10 {
    background-color: var(--color-10);
}
.back-color-11 {
    background-color: var(--color-11);
}
.back-color-12 {
    background-color: var(--color-12);
}
.back-color-13 {
    background-color: var(--color-13);
}
.back-color-14 {
    background-color: var(--color-14);
}
.back-color-15 {
    background-color: var(--color-15);
}
.back-color-16 {
    background: var(--color-16);
}
.back-color-17 {
    background-color: var(--color-17);
}
.back-color-18 {
    background-color: var(--color-18);
}
.back-color-19 {
    background-color: var(--color-19);
}
.back-color-20 {
    background-color: var(--color-20);
}
.back-color-21 {
    background: var(--color-21);
}
.back-color-22 {
    background: var(--color-22);
}


/*******************************************************************************************************
COLOR SVG
*******************************************************************************************************/
.svg-color-0 {
    fill: var(--color-0);
}
.svg-color-1 {
    fill: var(--color-1);
}
.svg-color-2 {
    fill: var(--color-2);
}
.svg-color-3 {
    fill: var(--color-3);
}
.svg-color-4 {
    fill: var(--color-4);
}
.svg-color-5 {
    fill: var(--color-5);
}
.svg-color-6 {
    fill: var(--color-6);
}
.svg-color-7 {
    fill: var(--color-7);
}
.svg-color-8 {
    fill: var(--color-8);
}
.svg-color-9 {
    fill: var(--color-9);
}
.svg-color-10 {
    fill: var(--color-10);
}
.svg-color-11 {
    fill: var(--color-11);
}
.svg-color-12 {
    fill: var(--color-12);
}
.svg-color-13 {
    fill: var(--color-13);
}
.svg-color-14 {
    fill: var(--color-14);
}
.svg-color-15 {
    fill: var(--color-15);
}
.svg-color-16 {
    fill: var(--color-16);
}
.svg-color-17 {
    fill: var(--color-17);
}
.svg-color-18 {
    fill: var(--color-18);
}
.svg-color-19 {
    fill: var(--color-19);
}
.svg-color-20 {
    fill: var(--color-20);
}
.svg-color-21 {
    fill: var(--color-21);
}
.svg-color-22 {
    fill: var(--color-22);
}


/*******************************************************************************************************
COLOR STROKE
*******************************************************************************************************/
.stroke-color-0 {
    stroke: var(--color-0);
}
.stroke-color-1 {
    stroke: var(--color-1);
}
.stroke-color-2 {
    stroke: var(--color-2);
}
.stroke-color-3 {
    stroke: var(--color-3);
}
.stroke-color-4 {
    stroke: var(--color-4);
}
.stroke-color-5 {
    stroke: var(--color-5);
}
.stroke-color-6 {
    stroke: var(--color-6);
}
.stroke-color-7 {
    stroke: var(--color-7);
}
.stroke-color-8 {
    stroke: var(--color-8);
}
.stroke-color-9 {
    stroke: var(--color-9);
}
.stroke-color-10 {
    stroke: var(--color-10);
}
.stroke-color-11 {
    stroke: var(--color-11);
}
.stroke-color-12 {
    stroke: var(--color-12);
}
.stroke-color-13 {
    stroke: var(--color-13);
}
.stroke-color-14 {
    stroke: var(--color-14);
}
.stroke-color-15 {
    stroke: var(--color-15);
}
.stroke-color-16 {
    stroke: var(--color-16);
}
.stroke-color-17 {
    stroke: var(--color-17);
}
.stroke-color-18 {
    stroke: var(--color-18);
}
.stroke-color-19 {
    stroke: var(--color-19);
}
.stroke-color-20 {
    stroke: var(--color-20);
}
.stroke-color-21 {
    stroke: var(--color-21);
}
.stroke-color-22 {
    stroke: var(--color-22);
}


/*******************************************************************************************************
BACK GRADIENT
*******************************************************************************************************/
.back-gradient-1 {
    background: var(--gradient-1);
}
.back-gradient-2 {
    background: var(--gradient-2);
}


/*******************************************************************************************************
SHADOW
*******************************************************************************************************/
.shadow-1 {
    box-shadow: var(--shadow-1);
}
.shadow-2 {
    box-shadow: var(--shadow-2);
}
.shadow-3 {
    box-shadow: var(--shadow-3);
}
.shadow-4 {
    box-shadow: var(--shadow-4);
}


/*******************************************************************************************************
RADIUS
*******************************************************************************************************/
.radius-1 {
    border-radius: var(--radius-1);
}
.radius-2 {
    border-radius: var(--radius-2);
}
.radius-3 {
    border-radius: var(--radius-3);
}
.radius-4 {
    border-radius: var(--radius-4);
}
.radius-5 {
    border-radius: var(--radius-5);
}
.radius-6 {
    border-radius: var(--radius-6);
}


/*******************************************************************************************************
BORDER
*******************************************************************************************************/
.border-1 {
    border: solid 1px var(--color-10);
}
.border-2 {
    border: solid 20px var(--color-2);
}


/*******************************************************************************************************
MARGIN
*******************************************************************************************************/
.margin-1 {
    margin: auto;
}
.margin-2 {
    margin-right: 5px;
}


/*******************************************************************************************************
IMG
*******************************************************************************************************/
.img-1 {
    object-fit: cover;
    object-position: center;
}
.img-2 {
    width: 100%;
}
.img-3 {
    height: 100%;
}


/*******************************************************************************************************
FIELD
*******************************************************************************************************/
.field-1 {
    padding: 0 10px 0 20px;
}


/*******************************************************************************************************
TEXTAREA
*******************************************************************************************************/
.textarea-1 {
    line-height: 20px;
    margin: 0 10px;
}
.textarea-1::placeholder {
    margin: 0 10px;
}


/*******************************************************************************************************
OVERFLOW
*******************************************************************************************************/
.overflow-1 {
    overflow: hidden;
}
.overflow-2 {
    overflow-x: overlay;
}
.overflow-3 {
    overflow-y: overlay;
}
.overflow-4 {
    overflow-x: hidden;
}
.overflow-5 {
    overflow-y: hidden;
}


/*******************************************************************************************************
INDEX
*******************************************************************************************************/
.index-1 {
    z-index: 1;
}
.index-2 {
    z-index: 2;
}
.index-3 {
    z-index: 3;
}
.index-4 {
    z-index: 4;
}
.index-5 {
    z-index: 5;
}
.index-6 {
    z-index: 6;
}
.index-7 {
    z-index: 7;
}
.index-8 {
    z-index: 8;
}
.index-9 {
    z-index: 9;
}
.index-10 {
    z-index: 10;
}


/*******************************************************************************************************
CURSOR
*******************************************************************************************************/
.cursor-1 {
    cursor: pointer;
}


/*******************************************************************************************************
PADDING
*******************************************************************************************************/
.padding-10-10 {
    padding: 10px 10px;
}
.padding-0-5 {
    padding: 0 5px;
}
.padding-0-10 {
    padding: 0 10px;
}
.padding-0-15 {
    padding: 0 15px;
}
.padding-0-20 {
    padding: 0 20px;
}
.padding-10-0 {
    padding: 10px 0;
}


/*******************************************************************************************************
SEPARATOR H
*******************************************************************************************************/
.separator-h-1 {
    min-height: 1px;
    height: 1px;
    width: 100%;
}
.separator-h-2 {
    min-height: 2px;
    height: 2px;
    width: 100%;
}
.separator-h-3 {
    min-height: 3px;
    height: 3px;
    width: 100%;
}
.separator-h-4 {
    min-height: 4px;
    height: 4px;
    width: 100%;
}
.separator-h-5 {
    min-height: 5px;
    height: 5px;
    width: 100%;
}
.separator-h-6 {
    min-height: 6px;
    height: 6px;
    width: 100%;
}
.separator-h-7 {
    min-height: 7px;
    height: 7px;
    width: 100%;
}
.separator-h-8 {
    min-height: 8px;
    height: 8px;
    width: 100%;
}
.separator-h-9 {
    min-height: 9px;
    height: 9px;
    width: 100%;
}
.separator-h-10 {
    min-height: 10px;
    height: 10px;
    width: 100%;
}
.separator-h-15 {
    min-height: 15px;
    height: 15px;
    width: 100%;
}
.separator-h-20 {
    min-height: 20px;
    height: 20px;
    width: 100%;
}
.separator-h-25 {
    min-height: 25px;
    height: 25px;
    width: 100%;
}
.separator-h-30 {
    min-height: 30px;
    height: 30px;
    width: 100%;
}
.separator-h-40 {
    min-height: 40px;
    height: 40px;
    width: 100%;
}
.separator-h-50 {
    min-height: 50px;
    height: 50px;
    width: 100%;
}


/*******************************************************************************************************
SEPARATOR V
*******************************************************************************************************/
.separator-v-1 {
    height: 100%;
    min-width: 1px;
    width: 1px;
}
.separator-v-2 {
    height: 100%;
    min-width: 2px;
    width: 2px;
}
.separator-v-3 {
    height: 100%;
    min-width: 3px;
    width: 3px;
}
.separator-v-4 {
    height: 100%;
    min-width: 4px;
    width: 4px;
}
.separator-v-5 {
    height: 100%;
    min-width: 5px;
    width: 5px;
}
.separator-v-6 {
    height: 100%;
    min-width: 6px;
    width: 6px;
}
.separator-v-7 {
    height: 100%;
    min-width: 7px;
    width: 7px;
}
.separator-v-8 {
    height: 100%;
    min-width: 8px;
    width: 8px;
}
.separator-v-9 {
    height: 100%;
    min-width: 9px;
    width: 9px;
}
.separator-v-10 {
    height: 100%;
    min-width: 10px;
    width: 10px;
}
.separator-v-15 {
    height: 100%;
    min-width: 15px;
    width: 15px;
}
.separator-v-20 {
    height: 100%;
    min-width: 20px;
    width: 20px;
}
.separator-v-25 {
    height: 100%;
    min-width: 25px;
    width: 25px;
}
.separator-v-30 {
    height: 100%;
    min-width: 30px;
    width: 30px;
}
.separator-v-40 {
    height: 100%;
    min-width: 40px;
    width: 40px;
}
.separator-v-50 {
    height: 100%;
    min-width: 50px;
    width: 50px;
}


/*******************************************************************************************************
HEIGHT
*******************************************************************************************************/
.height-0 {
    height: 0;
}
.height-p-1 {
    height: 1%;
}
.height-p-2 {
    height: 2%;
}
.height-p-3 {
    height: 3%;
}
.height-p-4 {
    height: 4%;
}
.height-p-5 {
    height: 5%;
}
.height-p-6 {
    height: 6%;
}
.height-p-7 {
    height: 7%;
}
.height-p-8 {
    height: 8%;
}
.height-p-9 {
    height: 9%;
}
.height-p-10 {
    height: 10%;
}
.height-p-11 {
    height: 11%;
}
.height-p-12 {
    height: 12%;
}
.height-p-13 {
    height: 13%;
}
.height-p-14 {
    height: 14%;
}
.height-p-15 {
    height: 15%;
}
.height-p-16 {
    height: 16%;
}
.height-p-17 {
    height: 17%;
}
.height-p-18 {
    height: 18%;
}
.height-p-19 {
    height: 19%;
}
.height-p-20 {
    height: 20%;
}
.height-p-21 {
    height: 21%;
}
.height-p-22 {
    height: 22%;
}
.height-p-23 {
    height: 23%;
}
.height-p-24 {
    height: 24%;
}
.height-p-25 {
    height: 25%;
}
.height-p-26 {
    height: 26%;
}
.height-p-27 {
    height: 27%;
}
.height-p-28 {
    height: 28%;
}
.height-p-29 {
    height: 29%;
}
.height-p-30 {
    height: 30%;
}
.height-p-31 {
    height: 31%;
}
.height-p-32 {
    height: 32%;
}
.height-p-33 {
    height: 33%;
}
.height-p-34 {
    height: 34%;
}
.height-p-35 {
    height: 35%;
}
.height-p-36 {
    height: 36%;
}
.height-p-37 {
    height: 37%;
}
.height-p-38 {
    height: 38%;
}
.height-p-39 {
    height: 39%;
}
.height-p-40 {
    height: 40%;
}
.height-p-41 {
    height: 41%;
}
.height-p-42 {
    height: 42%;
}
.height-p-43 {
    height: 43%;
}
.height-p-44 {
    height: 44%;
}
.height-p-45 {
    height: 45%;
}
.height-p-46 {
    height: 46%;
}
.height-p-47 {
    height: 47%;
}
.height-p-48 {
    height: 48%;
}
.height-p-49 {
    height: 49%;
}
.height-p-50 {
    height: 50%;
}
.height-p-51 {
    height: 51%;
}
.height-p-52 {
    height: 52%;
}
.height-p-53 {
    height: 53%;
}
.height-p-54 {
    height: 54%;
}
.height-p-55 {
    height: 55%;
}
.height-p-56 {
    height: 56%;
}
.height-p-57 {
    height: 57%;
}
.height-p-58 {
    height: 58%;
}
.height-p-59 {
    height: 59%;
}
.height-p-60 {
    height: 60%;
}
.height-p-61 {
    height: 61%;
}
.height-p-62 {
    height: 62%;
}
.height-p-63 {
    height: 63%;
}
.height-p-64 {
    height: 64%;
}
.height-p-65 {
    height: 65%;
}
.height-p-66 {
    height: 66%;
}
.height-p-67 {
    height: 67%;
}
.height-p-68 {
    height: 68%;
}
.height-p-69 {
    height: 69%;
}
.height-p-70 {
    height: 70%;
}
.height-p-71 {
    height: 71%;
}
.height-p-72 {
    height: 72%;
}
.height-p-73 {
    height: 73%;
}
.height-p-74 {
    height: 74%;
}
.height-p-75 {
    height: 75%;
}
.height-p-76 {
    height: 76%;
}
.height-p-77 {
    height: 77%;
}
.height-p-78 {
    height: 78%;
}
.height-p-79 {
    height: 79%;
}
.height-p-80 {
    height: 80%;
}
.height-p-81 {
    height: 81%;
}
.height-p-82 {
    height: 82%;
}
.height-p-83 {
    height: 83%;
}
.height-p-84 {
    height: 84%;
}
.height-p-85 {
    height: 85%;
}
.height-p-86 {
    height: 86%;
}
.height-p-87 {
    height: 87%;
}
.height-p-88 {
    height: 88%;
}
.height-p-89 {
    height: 89%;
}
.height-p-90 {
    height: 90%;
}
.height-p-91 {
    height: 91%;
}
.height-p-92 {
    height: 92%;
}
.height-p-93 {
    height: 93%;
}
.height-p-94 {
    height: 94%;
}
.height-p-95 {
    height: 95%;
}
.height-p-96 {
    height: 96%;
}
.height-p-97 {
    height: 97%;
}
.height-p-98 {
    height: 98%;
}
.height-p-99 {
    height: 99%;
}
.height-p-100 {
    height: 100%;
}
.height-p-110 {
    height: 110%;
}
.height-p-120 {
    height: 120%;
}
.height-p-130 {
    height: 130%;
}
.height-p-140 {
    height: 140%;
}
.height-p-150 {
    height: 150%;
}
.height-p-160 {
    height: 160%;
}
.height-p-170 {
    height: 170%;
}
.height-p-180 {
    height: 180%;
}
.height-p-190 {
    height: 190%;
}
.height-p-200 {
    height: 200%;
}
.height-vh-1 {
    height: 1vh;
}
.height-vh-2 {
    height: 2vh;
}
.height-vh-3 {
    height: 3vh;
}
.height-vh-4 {
    height: 4vh;
}
.height-vh-5 {
    height: 5vh;
}
.height-vh-6 {
    height: 6vh;
}
.height-vh-7 {
    height: 7vh;
}
.height-vh-8 {
    height: 8vh;
}
.height-vh-9 {
    height: 9vh;
}
.height-vh-10 {
    height: 10vh;
}
.height-vh-11 {
    height: 11vh;
}
.height-vh-12 {
    height: 12vh;
}
.height-vh-13 {
    height: 13vh;
}
.height-vh-14 {
    height: 14vh;
}
.height-vh-15 {
    height: 15vh;
}
.height-vh-16 {
    height: 16vh;
}
.height-vh-17 {
    height: 17vh;
}
.height-vh-18 {
    height: 18vh;
}
.height-vh-19 {
    height: 19vh;
}
.height-vh-20 {
    height: 20vh;
}
.height-vh-21 {
    height: 21vh;
}
.height-vh-22 {
    height: 22vh;
}
.height-vh-23 {
    height: 23vh;
}
.height-vh-24 {
    height: 24vh;
}
.height-vh-25 {
    height: 25vh;
}
.height-vh-26 {
    height: 26vh;
}
.height-vh-27 {
    height: 27vh;
}
.height-vh-28 {
    height: 28vh;
}
.height-vh-29 {
    height: 29vh;
}
.height-vh-30 {
    height: 30vh;
}
.height-vh-31 {
    height: 31vh;
}
.height-vh-32 {
    height: 32vh;
}
.height-vh-33 {
    height: 33vh;
}
.height-vh-34 {
    height: 34vh;
}
.height-vh-35 {
    height: 35vh;
}
.height-vh-36 {
    height: 36vh;
}
.height-vh-37 {
    height: 37vh;
}
.height-vh-38 {
    height: 38vh;
}
.height-vh-39 {
    height: 39vh;
}
.height-vh-40 {
    height: 40vh;
}
.height-vh-41 {
    height: 41vh;
}
.height-vh-42 {
    height: 42vh;
}
.height-vh-43 {
    height: 43vh;
}
.height-vh-44 {
    height: 44vh;
}
.height-vh-45 {
    height: 45vh;
}
.height-vh-46 {
    height: 46vh;
}
.height-vh-47 {
    height: 47vh;
}
.height-vh-48 {
    height: 48vh;
}
.height-vh-49 {
    height: 49vh;
}
.height-vh-50 {
    height: 50vh;
}
.height-vh-51 {
    height: 51vh;
}
.height-vh-52 {
    height: 52vh;
}
.height-vh-53 {
    height: 53vh;
}
.height-vh-54 {
    height: 54vh;
}
.height-vh-55 {
    height: 55vh;
}
.height-vh-56 {
    height: 56vh;
}
.height-vh-57 {
    height: 57vh;
}
.height-vh-58 {
    height: 58vh;
}
.height-vh-59 {
    height: 59vh;
}
.height-vh-60 {
    height: 60vh;
}
.height-vh-61 {
    height: 61vh;
}
.height-vh-62 {
    height: 62vh;
}
.height-vh-63 {
    height: 63vh;
}
.height-vh-64 {
    height: 64vh;
}
.height-vh-65 {
    height: 65vh;
}
.height-vh-66 {
    height: 66vh;
}
.height-vh-67 {
    height: 67vh;
}
.height-vh-68 {
    height: 68vh;
}
.height-vh-69 {
    height: 69vh;
}
.height-vh-70 {
    height: 70vh;
}
.height-vh-71 {
    height: 71vh;
}
.height-vh-72 {
    height: 72vh;
}
.height-vh-73 {
    height: 73vh;
}
.height-vh-74 {
    height: 74vh;
}
.height-vh-75 {
    height: 75vh;
}
.height-vh-76 {
    height: 76vh;
}
.height-vh-77 {
    height: 77vh;
}
.height-vh-78 {
    height: 78vh;
}
.height-vh-79 {
    height: 79vh;
}
.height-vh-80 {
    height: 80vh;
}
.height-vh-81 {
    height: 81vh;
}
.height-vh-82 {
    height: 82vh;
}
.height-vh-83 {
    height: 83vh;
}
.height-vh-84 {
    height: 84vh;
}
.height-vh-85 {
    height: 85vh;
}
.height-vh-86 {
    height: 86vh;
}
.height-vh-87 {
    height: 87vh;
}
.height-vh-88 {
    height: 88vh;
}
.height-vh-89 {
    height: 89vh;
}
.height-vh-90 {
    height: 90vh;
}
.height-vh-91 {
    height: 91vh;
}
.height-vh-92 {
    height: 92vh;
}
.height-vh-93 {
    height: 93vh;
}
.height-vh-94 {
    height: 94vh;
}
.height-vh-95 {
    height: 95vh;
}
.height-vh-96 {
    height: 96vh;
}
.height-vh-97 {
    height: 97vh;
}
.height-vh-98 {
    height: 98vh;
}
.height-vh-99 {
    height: 99vh;
}
.height-vh-100 {
    height: 100vh;
}
.height-px-1 {
    height: 1px;
}
.height-px-2 {
    height: 2px;
}
.height-px-3 {
    height: 3px;
}
.height-px-4 {
    height: 4px;
}
.height-px-5 {
    height: 5px;
}
.height-px-6 {
    height: 6px;
}
.height-px-7 {
    height: 7px;
}
.height-px-8 {
    height: 8px;
}
.height-px-9 {
    height: 9px;
}
.height-px-10 {
    height: 10px;
}
.height-px-11 {
    height: 11px;
}
.height-px-12 {
    height: 12px;
}
.height-px-13 {
    height: 13px;
}
.height-px-14 {
    height: 14px;
}
.height-px-15 {
    height: 15px;
}
.height-px-16 {
    height: 16px;
}
.height-px-17 {
    height: 17px;
}
.height-px-18 {
    height: 18px;
}
.height-px-19 {
    height: 19px;
}
.height-px-20 {
    height: 20px;
}
.height-px-21 {
    height: 21px;
}
.height-px-22 {
    height: 22px;
}
.height-px-23 {
    height: 23px;
}
.height-px-24 {
    height: 24px;
}
.height-px-25 {
    height: 25px;
}
.height-px-26 {
    height: 26px;
}
.height-px-27 {
    height: 27px;
}
.height-px-28 {
    height: 28px;
}
.height-px-29 {
    height: 29px;
}
.height-px-30 {
    height: 30px;
}
.height-px-31 {
    height: 31px;
}
.height-px-32 {
    height: 32px;
}
.height-px-33 {
    height: 33px;
}
.height-px-34 {
    height: 34px;
}
.height-px-35 {
    height: 35px;
}
.height-px-36 {
    height: 36px;
}
.height-px-37 {
    height: 37px;
}
.height-px-38 {
    height: 38px;
}
.height-px-39 {
    height: 39px;
}
.height-px-40 {
    height: 40px;
}
.height-px-41 {
    height: 41px;
}
.height-px-42 {
    height: 42px;
}
.height-px-43 {
    height: 43px;
}
.height-px-44 {
    height: 44px;
}
.height-px-45 {
    height: 45px;
}
.height-px-46 {
    height: 46px;
}
.height-px-47 {
    height: 47px;
}
.height-px-48 {
    height: 48px;
}
.height-px-49 {
    height: 49px;
}
.height-px-50 {
    height: 50px;
}
.height-px-51 {
    height: 51px;
}
.height-px-52 {
    height: 52px;
}
.height-px-53 {
    height: 53px;
}
.height-px-54 {
    height: 54px;
}
.height-px-55 {
    height: 55px;
}
.height-px-56 {
    height: 56px;
}
.height-px-57 {
    height: 57px;
}
.height-px-58 {
    height: 58px;
}
.height-px-59 {
    height: 59px;
}
.height-px-60 {
    height: 60px;
}
.height-px-61 {
    height: 61px;
}
.height-px-62 {
    height: 62px;
}
.height-px-63 {
    height: 63px;
}
.height-px-64 {
    height: 64px;
}
.height-px-65 {
    height: 65px;
}
.height-px-66 {
    height: 66px;
}
.height-px-67 {
    height: 67px;
}
.height-px-68 {
    height: 68px;
}
.height-px-69 {
    height: 69px;
}
.height-px-70 {
    height: 70px;
}
.height-px-71 {
    height: 71px;
}
.height-px-72 {
    height: 72px;
}
.height-px-73 {
    height: 73px;
}
.height-px-74 {
    height: 74px;
}
.height-px-75 {
    height: 75px;
}
.height-px-76 {
    height: 76px;
}
.height-px-77 {
    height: 77px;
}
.height-px-78 {
    height: 78px;
}
.height-px-79 {
    height: 79px;
}
.height-px-80 {
    height: 80px;
}
.height-px-81 {
    height: 81px;
}
.height-px-82 {
    height: 82px;
}
.height-px-83 {
    height: 83px;
}
.height-px-84 {
    height: 84px;
}
.height-px-85 {
    height: 85px;
}
.height-px-86 {
    height: 86px;
}
.height-px-87 {
    height: 87px;
}
.height-px-88 {
    height: 88px;
}
.height-px-89 {
    height: 89px;
}
.height-px-90 {
    height: 90px;
}
.height-px-91 {
    height: 91px;
}
.height-px-92 {
    height: 92px;
}
.height-px-93 {
    height: 93px;
}
.height-px-94 {
    height: 94px;
}
.height-px-95 {
    height: 95px;
}
.height-px-96 {
    height: 96px;
}
.height-px-97 {
    height: 97px;
}
.height-px-98 {
    height: 98px;
}
.height-px-99 {
    height: 99px;
}
.height-px-100 {
    height: 100px;
}
.height-px-110 {
    height: 110px;
}
.height-px-120 {
    height: 120px;
}
.height-px-130 {
    height: 130px;
}
.height-px-140 {
    height: 140px;
}
.height-px-150 {
    height: 150px;
}
.height-px-160 {
    height: 160px;
}
.height-px-170 {
    height: 170px;
}
.height-px-180 {
    height: 180px;
}
.height-px-190 {
    height: 190px;
}
.height-px-200 {
    height: 200px;
}
.height-px-210 {
    height: 210px;
}
.height-px-220 {
    height: 220px;
}
.height-px-230 {
    height: 230px;
}
.height-px-240 {
    height: 240px;
}
.height-px-250 {
    height: 250px;
}
.height-px-260 {
    height: 260px;
}
.height-px-270 {
    height: 270px;
}
.height-px-280 {
    height: 280px;
}
.height-px-290 {
    height: 290px;
}
.height-px-300 {
    height: 300px;
}
.height-px-310 {
    height: 310px;
}
.height-px-320 {
    height: 320px;
}
.height-px-330 {
    height: 330px;
}
.height-px-340 {
    height: 340px;
}
.height-px-350 {
    height: 350px;
}
.height-px-360 {
    height: 360px;
}
.height-px-370 {
    height: 370px;
}
.height-px-380 {
    height: 380px;
}
.height-px-390 {
    height: 390px;
}
.height-px-400 {
    height: 400px;
}
.height-px-410 {
    height: 410px;
}
.height-px-420 {
    height: 420px;
}
.height-px-430 {
    height: 430px;
}
.height-px-440 {
    height: 440px;
}
.height-px-450 {
    height: 450px;
}
.height-px-460 {
    height: 460px;
}
.height-px-470 {
    height: 470px;
}
.height-px-480 {
    height: 480px;
}
.height-px-490 {
    height: 490px;
}
.height-px-500 {
    height: 500px;
}
.height-px-525 {
    height: 525px;
}
.height-px-550 {
    height: 550px;
}
.height-px-575 {
    height: 575px;
}
.height-px-600 {
    height: 600px;
}
.height-px-625 {
    height: 625px;
}
.height-px-650 {
    height: 650px;
}
.height-px-675 {
    height: 675px;
}
.height-px-700 {
    height: 700px;
}
.height-px-725 {
    height: 725px;
}
.height-px-750 {
    height: 750px;
}
.height-px-775 {
    height: 775px;
}
.height-px-800 {
    height: 800px;
}
.height-px-825 {
    height: 825px;
}
.height-px-850 {
    height: 850px;
}
.height-px-900 {
    height: 900px;
}
.height-px-925 {
    height: 925px;
}
.height-px-950 {
    height: 950px;
}
.height-px-975 {
    height: 975px;
}
.height-px-1000 {
    height: 1000px;
}


/*******************************************************************************************************
HEIGHT MIN
*******************************************************************************************************/
.height-min-0 {
    min-height: 0;
}
.height-min-p-1 {
    min-height: 1%;
}
.height-min-p-2 {
    min-height: 2%;
}
.height-min-p-3 {
    min-height: 3%;
}
.height-min-p-4 {
    min-height: 4%;
}
.height-min-p-5 {
    min-height: 5%;
}
.height-min-p-6 {
    min-height: 6%;
}
.height-min-p-7 {
    min-height: 7%;
}
.height-min-p-8 {
    min-height: 8%;
}
.height-min-p-9 {
    min-height: 9%;
}
.height-min-p-10 {
    min-height: 10%;
}
.height-min-p-11 {
    min-height: 11%;
}
.height-min-p-12 {
    min-height: 12%;
}
.height-min-p-13 {
    min-height: 13%;
}
.height-min-p-14 {
    min-height: 14%;
}
.height-min-p-15 {
    min-height: 15%;
}
.height-min-p-16 {
    min-height: 16%;
}
.height-min-p-17 {
    min-height: 17%;
}
.height-min-p-18 {
    min-height: 18%;
}
.height-min-p-19 {
    min-height: 19%;
}
.height-min-p-20 {
    min-height: 20%;
}
.height-min-p-21 {
    min-height: 21%;
}
.height-min-p-22 {
    min-height: 22%;
}
.height-min-p-23 {
    min-height: 23%;
}
.height-min-p-24 {
    min-height: 24%;
}
.height-min-p-25 {
    min-height: 25%;
}
.height-min-p-26 {
    min-height: 26%;
}
.height-min-p-27 {
    min-height: 27%;
}
.height-min-p-28 {
    min-height: 28%;
}
.height-min-p-29 {
    min-height: 29%;
}
.height-min-p-30 {
    min-height: 30%;
}
.height-min-p-31 {
    min-height: 31%;
}
.height-min-p-32 {
    min-height: 32%;
}
.height-min-p-33 {
    min-height: 33%;
}
.height-min-p-34 {
    min-height: 34%;
}
.height-min-p-35 {
    min-height: 35%;
}
.height-min-p-36 {
    min-height: 36%;
}
.height-min-p-37 {
    min-height: 37%;
}
.height-min-p-38 {
    min-height: 38%;
}
.height-min-p-39 {
    min-height: 39%;
}
.height-min-p-40 {
    min-height: 40%;
}
.height-min-p-41 {
    min-height: 41%;
}
.height-min-p-42 {
    min-height: 42%;
}
.height-min-p-43 {
    min-height: 43%;
}
.height-min-p-44 {
    min-height: 44%;
}
.height-min-p-45 {
    min-height: 45%;
}
.height-min-p-46 {
    min-height: 46%;
}
.height-min-p-47 {
    min-height: 47%;
}
.height-min-p-48 {
    min-height: 48%;
}
.height-min-p-49 {
    min-height: 49%;
}
.height-min-p-50 {
    min-height: 50%;
}
.height-min-p-51 {
    min-height: 51%;
}
.height-min-p-52 {
    min-height: 52%;
}
.height-min-p-53 {
    min-height: 53%;
}
.height-min-p-54 {
    min-height: 54%;
}
.height-min-p-55 {
    min-height: 55%;
}
.height-min-p-56 {
    min-height: 56%;
}
.height-min-p-57 {
    min-height: 57%;
}
.height-min-p-58 {
    min-height: 58%;
}
.height-min-p-59 {
    min-height: 59%;
}
.height-min-p-60 {
    min-height: 60%;
}
.height-min-p-61 {
    min-height: 61%;
}
.height-min-p-62 {
    min-height: 62%;
}
.height-min-p-63 {
    min-height: 63%;
}
.height-min-p-64 {
    min-height: 64%;
}
.height-min-p-65 {
    min-height: 65%;
}
.height-min-p-66 {
    min-height: 66%;
}
.height-min-p-67 {
    min-height: 67%;
}
.height-min-p-68 {
    min-height: 68%;
}
.height-min-p-69 {
    min-height: 69%;
}
.height-min-p-70 {
    min-height: 70%;
}
.height-min-p-71 {
    min-height: 71%;
}
.height-min-p-72 {
    min-height: 72%;
}
.height-min-p-73 {
    min-height: 73%;
}
.height-min-p-74 {
    min-height: 74%;
}
.height-min-p-75 {
    min-height: 75%;
}
.height-min-p-76 {
    min-height: 76%;
}
.height-min-p-77 {
    min-height: 77%;
}
.height-min-p-78 {
    min-height: 78%;
}
.height-min-p-79 {
    min-height: 79%;
}
.height-min-p-80 {
    min-height: 80%;
}
.height-min-p-81 {
    min-height: 81%;
}
.height-min-p-82 {
    min-height: 82%;
}
.height-min-p-83 {
    min-height: 83%;
}
.height-min-p-84 {
    min-height: 84%;
}
.height-min-p-85 {
    min-height: 85%;
}
.height-min-p-86 {
    min-height: 86%;
}
.height-min-p-87 {
    min-height: 87%;
}
.height-min-p-88 {
    min-height: 88%;
}
.height-min-p-89 {
    min-height: 89%;
}
.height-min-p-90 {
    min-height: 90%;
}
.height-min-p-91 {
    min-height: 91%;
}
.height-min-p-92 {
    min-height: 92%;
}
.height-min-p-93 {
    min-height: 93%;
}
.height-min-p-94 {
    min-height: 94%;
}
.height-min-p-95 {
    min-height: 95%;
}
.height-min-p-96 {
    min-height: 96%;
}
.height-min-p-97 {
    min-height: 97%;
}
.height-min-p-98 {
    min-height: 98%;
}
.height-min-p-99 {
    min-height: 99%;
}
.height-min-p-100 {
    min-height: 100%;
}
.height-min-p-110 {
    min-height: 110%;
}
.height-min-p-120 {
    min-height: 120%;
}
.height-min-p-130 {
    min-height: 130%;
}
.height-min-p-140 {
    min-height: 140%;
}
.height-min-p-150 {
    min-height: 150%;
}
.height-min-p-160 {
    min-height: 160%;
}
.height-min-p-170 {
    min-height: 170%;
}
.height-min-p-180 {
    min-height: 180%;
}
.height-min-p-190 {
    min-height: 190%;
}
.height-min-p-200 {
    min-height: 200%;
}
.height-min-vh-1 {
    min-height: 1vh;
}
.height-min-vh-2 {
    min-height: 2vh;
}
.height-min-vh-3 {
    min-height: 3vh;
}
.height-min-vh-4 {
    min-height: 4vh;
}
.height-min-vh-5 {
    min-height: 5vh;
}
.height-min-vh-6 {
    min-height: 6vh;
}
.height-min-vh-7 {
    min-height: 7vh;
}
.height-min-vh-8 {
    min-height: 8vh;
}
.height-min-vh-9 {
    min-height: 9vh;
}
.height-min-vh-10 {
    min-height: 10vh;
}
.height-min-vh-11 {
    min-height: 11vh;
}
.height-min-vh-12 {
    min-height: 12vh;
}
.height-min-vh-13 {
    min-height: 13vh;
}
.height-min-vh-14 {
    min-height: 14vh;
}
.height-min-vh-15 {
    min-height: 15vh;
}
.height-min-vh-16 {
    min-height: 16vh;
}
.height-min-vh-17 {
    min-height: 17vh;
}
.height-min-vh-18 {
    min-height: 18vh;
}
.height-min-vh-19 {
    min-height: 19vh;
}
.height-min-vh-20 {
    min-height: 20vh;
}
.height-min-vh-21 {
    min-height: 21vh;
}
.height-min-vh-22 {
    min-height: 22vh;
}
.height-min-vh-23 {
    min-height: 23vh;
}
.height-min-vh-24 {
    min-height: 24vh;
}
.height-min-vh-25 {
    min-height: 25vh;
}
.height-min-vh-26 {
    min-height: 26vh;
}
.height-min-vh-27 {
    min-height: 27vh;
}
.height-min-vh-28 {
    min-height: 28vh;
}
.height-min-vh-29 {
    min-height: 29vh;
}
.height-min-vh-30 {
    min-height: 30vh;
}
.height-min-vh-31 {
    min-height: 31vh;
}
.height-min-vh-32 {
    min-height: 32vh;
}
.height-min-vh-33 {
    min-height: 33vh;
}
.height-min-vh-34 {
    min-height: 34vh;
}
.height-min-vh-35 {
    min-height: 35vh;
}
.height-min-vh-36 {
    min-height: 36vh;
}
.height-min-vh-37 {
    min-height: 37vh;
}
.height-min-vh-38 {
    min-height: 38vh;
}
.height-min-vh-39 {
    min-height: 39vh;
}
.height-min-vh-40 {
    min-height: 40vh;
}
.height-min-vh-41 {
    min-height: 41vh;
}
.height-min-vh-42 {
    min-height: 42vh;
}
.height-min-vh-43 {
    min-height: 43vh;
}
.height-min-vh-44 {
    min-height: 44vh;
}
.height-min-vh-45 {
    min-height: 45vh;
}
.height-min-vh-46 {
    min-height: 46vh;
}
.height-min-vh-47 {
    min-height: 47vh;
}
.height-min-vh-48 {
    min-height: 48vh;
}
.height-min-vh-49 {
    min-height: 49vh;
}
.height-min-vh-50 {
    min-height: 50vh;
}
.height-min-vh-51 {
    min-height: 51vh;
}
.height-min-vh-52 {
    min-height: 52vh;
}
.height-min-vh-53 {
    min-height: 53vh;
}
.height-min-vh-54 {
    min-height: 54vh;
}
.height-min-vh-55 {
    min-height: 55vh;
}
.height-min-vh-56 {
    min-height: 56vh;
}
.height-min-vh-57 {
    min-height: 57vh;
}
.height-min-vh-58 {
    min-height: 58vh;
}
.height-min-vh-59 {
    min-height: 59vh;
}
.height-min-vh-60 {
    min-height: 60vh;
}
.height-min-vh-61 {
    min-height: 61vh;
}
.height-min-vh-62 {
    min-height: 62vh;
}
.height-min-vh-63 {
    min-height: 63vh;
}
.height-min-vh-64 {
    min-height: 64vh;
}
.height-min-vh-65 {
    min-height: 65vh;
}
.height-min-vh-66 {
    min-height: 66vh;
}
.height-min-vh-67 {
    min-height: 67vh;
}
.height-min-vh-68 {
    min-height: 68vh;
}
.height-min-vh-69 {
    min-height: 69vh;
}
.height-min-vh-70 {
    min-height: 70vh;
}
.height-min-vh-71 {
    min-height: 71vh;
}
.height-min-vh-72 {
    min-height: 72vh;
}
.height-min-vh-73 {
    min-height: 73vh;
}
.height-min-vh-74 {
    min-height: 74vh;
}
.height-min-vh-75 {
    min-height: 75vh;
}
.height-min-vh-76 {
    min-height: 76vh;
}
.height-min-vh-77 {
    min-height: 77vh;
}
.height-min-vh-78 {
    min-height: 78vh;
}
.height-min-vh-79 {
    min-height: 79vh;
}
.height-min-vh-80 {
    min-height: 80vh;
}
.height-min-vh-81 {
    min-height: 81vh;
}
.height-min-vh-82 {
    min-height: 82vh;
}
.height-min-vh-83 {
    min-height: 83vh;
}
.height-min-vh-84 {
    min-height: 84vh;
}
.height-min-vh-85 {
    min-height: 85vh;
}
.height-min-vh-86 {
    min-height: 86vh;
}
.height-min-vh-87 {
    min-height: 87vh;
}
.height-min-vh-88 {
    min-height: 88vh;
}
.height-min-vh-89 {
    min-height: 89vh;
}
.height-min-vh-90 {
    min-height: 90vh;
}
.height-min-vh-91 {
    min-height: 91vh;
}
.height-min-vh-92 {
    min-height: 92vh;
}
.height-min-vh-93 {
    min-height: 93vh;
}
.height-min-vh-94 {
    min-height: 94vh;
}
.height-min-vh-95 {
    min-height: 95vh;
}
.height-min-vh-96 {
    min-height: 96vh;
}
.height-min-vh-97 {
    min-height: 97vh;
}
.height-min-vh-98 {
    min-height: 98vh;
}
.height-min-vh-99 {
    min-height: 99vh;
}
.height-min-vh-100 {
    min-height: 100vh;
}
.height-min-px-1 {
    min-height: 1px;
}
.height-min-px-2 {
    min-height: 2px;
}
.height-min-px-3 {
    min-height: 3px;
}
.height-min-px-4 {
    min-height: 4px;
}
.height-min-px-5 {
    min-height: 5px;
}
.height-min-px-6 {
    min-height: 6px;
}
.height-min-px-7 {
    min-height: 7px;
}
.height-min-px-8 {
    min-height: 8px;
}
.height-min-px-9 {
    min-height: 9px;
}
.height-min-px-10 {
    min-height: 10px;
}
.height-min-px-11 {
    min-height: 11px;
}
.height-min-px-12 {
    min-height: 12px;
}
.height-min-px-13 {
    min-height: 13px;
}
.height-min-px-14 {
    min-height: 14px;
}
.height-min-px-15 {
    min-height: 15px;
}
.height-min-px-16 {
    min-height: 16px;
}
.height-min-px-17 {
    min-height: 17px;
}
.height-min-px-18 {
    min-height: 18px;
}
.height-min-px-19 {
    min-height: 19px;
}
.height-min-px-20 {
    min-height: 20px;
}
.height-min-px-21 {
    min-height: 21px;
}
.height-min-px-22 {
    min-height: 22px;
}
.height-min-px-23 {
    min-height: 23px;
}
.height-min-px-24 {
    min-height: 24px;
}
.height-min-px-25 {
    min-height: 25px;
}
.height-min-px-26 {
    min-height: 26px;
}
.height-min-px-27 {
    min-height: 27px;
}
.height-min-px-28 {
    min-height: 28px;
}
.height-min-px-29 {
    min-height: 29px;
}
.height-min-px-30 {
    min-height: 30px;
}
.height-min-px-31 {
    min-height: 31px;
}
.height-min-px-32 {
    min-height: 32px;
}
.height-min-px-33 {
    min-height: 33px;
}
.height-min-px-34 {
    min-height: 34px;
}
.height-min-px-35 {
    min-height: 35px;
}
.height-min-px-36 {
    min-height: 36px;
}
.height-min-px-37 {
    min-height: 37px;
}
.height-min-px-38 {
    min-height: 38px;
}
.height-min-px-39 {
    min-height: 39px;
}
.height-min-px-40 {
    min-height: 40px;
}
.height-min-px-41 {
    min-height: 41px;
}
.height-min-px-42 {
    min-height: 42px;
}
.height-min-px-43 {
    min-height: 43px;
}
.height-min-px-44 {
    min-height: 44px;
}
.height-min-px-45 {
    min-height: 45px;
}
.height-min-px-46 {
    min-height: 46px;
}
.height-min-px-47 {
    min-height: 47px;
}
.height-min-px-48 {
    min-height: 48px;
}
.height-min-px-49 {
    min-height: 49px;
}
.height-min-px-50 {
    min-height: 50px;
}
.height-min-px-51 {
    min-height: 51px;
}
.height-min-px-52 {
    min-height: 52px;
}
.height-min-px-53 {
    min-height: 53px;
}
.height-min-px-54 {
    min-height: 54px;
}
.height-min-px-55 {
    min-height: 55px;
}
.height-min-px-56 {
    min-height: 56px;
}
.height-min-px-57 {
    min-height: 57px;
}
.height-min-px-58 {
    min-height: 58px;
}
.height-min-px-59 {
    min-height: 59px;
}
.height-min-px-60 {
    min-height: 60px;
}
.height-min-px-61 {
    min-height: 61px;
}
.height-min-px-62 {
    min-height: 62px;
}
.height-min-px-63 {
    min-height: 63px;
}
.height-min-px-64 {
    min-height: 64px;
}
.height-min-px-65 {
    min-height: 65px;
}
.height-min-px-66 {
    min-height: 66px;
}
.height-min-px-67 {
    min-height: 67px;
}
.height-min-px-68 {
    min-height: 68px;
}
.height-min-px-69 {
    min-height: 69px;
}
.height-min-px-70 {
    min-height: 70px;
}
.height-min-px-71 {
    min-height: 71px;
}
.height-min-px-72 {
    min-height: 72px;
}
.height-min-px-73 {
    min-height: 73px;
}
.height-min-px-74 {
    min-height: 74px;
}
.height-min-px-75 {
    min-height: 75px;
}
.height-min-px-76 {
    min-height: 76px;
}
.height-min-px-77 {
    min-height: 77px;
}
.height-min-px-78 {
    min-height: 78px;
}
.height-min-px-79 {
    min-height: 79px;
}
.height-min-px-80 {
    min-height: 80px;
}
.height-min-px-81 {
    min-height: 81px;
}
.height-min-px-82 {
    min-height: 82px;
}
.height-min-px-83 {
    min-height: 83px;
}
.height-min-px-84 {
    min-height: 84px;
}
.height-min-px-85 {
    min-height: 85px;
}
.height-min-px-86 {
    min-height: 86px;
}
.height-min-px-87 {
    min-height: 87px;
}
.height-min-px-88 {
    min-height: 88px;
}
.height-min-px-89 {
    min-height: 89px;
}
.height-min-px-90 {
    min-height: 90px;
}
.height-min-px-91 {
    min-height: 91px;
}
.height-min-px-92 {
    min-height: 92px;
}
.height-min-px-93 {
    min-height: 93px;
}
.height-min-px-94 {
    min-height: 94px;
}
.height-min-px-95 {
    min-height: 95px;
}
.height-min-px-96 {
    min-height: 96px;
}
.height-min-px-97 {
    min-height: 97px;
}
.height-min-px-98 {
    min-height: 98px;
}
.height-min-px-99 {
    min-height: 99px;
}
.height-min-px-100 {
    min-height: 100px;
}
.height-min-px-110 {
    min-height: 110px;
}
.height-min-px-120 {
    min-height: 120px;
}
.height-min-px-130 {
    min-height: 130px;
}
.height-min-px-140 {
    min-height: 140px;
}
.height-min-px-150 {
    min-height: 150px;
}
.height-min-px-160 {
    min-height: 160px;
}
.height-min-px-170 {
    min-height: 170px;
}
.height-min-px-180 {
    min-height: 180px;
}
.height-min-px-190 {
    min-height: 190px;
}
.height-min-px-200 {
    min-height: 200px;
}
.height-min-px-210 {
    min-height: 210px;
}
.height-min-px-220 {
    min-height: 220px;
}
.height-min-px-230 {
    min-height: 230px;
}
.height-min-px-240 {
    min-height: 240px;
}
.height-min-px-250 {
    min-height: 250px;
}
.height-min-px-260 {
    min-height: 260px;
}
.height-min-px-270 {
    min-height: 270px;
}
.height-min-px-280 {
    min-height: 280px;
}
.height-min-px-290 {
    min-height: 290px;
}
.height-min-px-300 {
    min-height: 300px;
}
.height-min-px-310 {
    min-height: 310px;
}
.height-min-px-320 {
    min-height: 320px;
}
.height-min-px-330 {
    min-height: 330px;
}
.height-min-px-340 {
    min-height: 340px;
}
.height-min-px-350 {
    min-height: 350px;
}
.height-min-px-360 {
    min-height: 360px;
}
.height-min-px-370 {
    min-height: 370px;
}
.height-min-px-380 {
    min-height: 380px;
}
.height-min-px-390 {
    min-height: 390px;
}
.height-min-px-400 {
    min-height: 400px;
}
.height-min-px-410 {
    min-height: 410px;
}
.height-min-px-420 {
    min-height: 420px;
}
.height-min-px-430 {
    min-height: 430px;
}
.height-min-px-440 {
    min-height: 440px;
}
.height-min-px-450 {
    min-height: 450px;
}
.height-min-px-460 {
    min-height: 460px;
}
.height-min-px-470 {
    min-height: 470px;
}
.height-min-px-480 {
    min-height: 480px;
}
.height-min-px-490 {
    min-height: 490px;
}
.height-min-px-500 {
    min-height: 500px;
}
.height-min-px-525 {
    min-height: 525px;
}
.height-min-px-550 {
    min-height: 550px;
}
.height-min-px-575 {
    min-height: 575px;
}
.height-min-px-600 {
    min-height: 600px;
}
.height-min-px-625 {
    min-height: 625px;
}
.height-min-px-650 {
    min-height: 650px;
}
.height-min-px-675 {
    min-height: 675px;
}
.height-min-px-700 {
    min-height: 700px;
}
.height-min-px-725 {
    min-height: 725px;
}
.height-min-px-750 {
    min-height: 750px;
}
.height-min-px-775 {
    min-height: 775px;
}
.height-min-px-800 {
    min-height: 800px;
}
.height-min-px-825 {
    min-height: 825px;
}
.height-min-px-850 {
    min-height: 850px;
}
.height-min-px-900 {
    min-height: 900px;
}
.height-min-px-925 {
    min-height: 925px;
}
.height-min-px-950 {
    min-height: 950px;
}
.height-min-px-975 {
    min-height: 975px;
}
.height-min-px-1000 {
    min-height: 1000px;
}


/*******************************************************************************************************
HEIGHT MAX
*******************************************************************************************************/
.height-max-0 {
    max-height: 0;
}
.height-max-p-1 {
    max-height: 1%;
}
.height-max-p-2 {
    max-height: 2%;
}
.height-max-p-3 {
    max-height: 3%;
}
.height-max-p-4 {
    max-height: 4%;
}
.height-max-p-5 {
    max-height: 5%;
}
.height-max-p-6 {
    max-height: 6%;
}
.height-max-p-7 {
    max-height: 7%;
}
.height-max-p-8 {
    max-height: 8%;
}
.height-max-p-9 {
    max-height: 9%;
}
.height-max-p-10 {
    max-height: 10%;
}
.height-max-p-11 {
    max-height: 11%;
}
.height-max-p-12 {
    max-height: 12%;
}
.height-max-p-13 {
    max-height: 13%;
}
.height-max-p-14 {
    max-height: 14%;
}
.height-max-p-15 {
    max-height: 15%;
}
.height-max-p-16 {
    max-height: 16%;
}
.height-max-p-17 {
    max-height: 17%;
}
.height-max-p-18 {
    max-height: 18%;
}
.height-max-p-19 {
    max-height: 19%;
}
.height-max-p-20 {
    max-height: 20%;
}
.height-max-p-21 {
    max-height: 21%;
}
.height-max-p-22 {
    max-height: 22%;
}
.height-max-p-23 {
    max-height: 23%;
}
.height-max-p-24 {
    max-height: 24%;
}
.height-max-p-25 {
    max-height: 25%;
}
.height-max-p-26 {
    max-height: 26%;
}
.height-max-p-27 {
    max-height: 27%;
}
.height-max-p-28 {
    max-height: 28%;
}
.height-max-p-29 {
    max-height: 29%;
}
.height-max-p-30 {
    max-height: 30%;
}
.height-max-p-31 {
    max-height: 31%;
}
.height-max-p-32 {
    max-height: 32%;
}
.height-max-p-33 {
    max-height: 33%;
}
.height-max-p-34 {
    max-height: 34%;
}
.height-max-p-35 {
    max-height: 35%;
}
.height-max-p-36 {
    max-height: 36%;
}
.height-max-p-37 {
    max-height: 37%;
}
.height-max-p-38 {
    max-height: 38%;
}
.height-max-p-39 {
    max-height: 39%;
}
.height-max-p-40 {
    max-height: 40%;
}
.height-max-p-41 {
    max-height: 41%;
}
.height-max-p-42 {
    max-height: 42%;
}
.height-max-p-43 {
    max-height: 43%;
}
.height-max-p-44 {
    max-height: 44%;
}
.height-max-p-45 {
    max-height: 45%;
}
.height-max-p-46 {
    max-height: 46%;
}
.height-max-p-47 {
    max-height: 47%;
}
.height-max-p-48 {
    max-height: 48%;
}
.height-max-p-49 {
    max-height: 49%;
}
.height-max-p-50 {
    max-height: 50%;
}
.height-max-p-51 {
    max-height: 51%;
}
.height-max-p-52 {
    max-height: 52%;
}
.height-max-p-53 {
    max-height: 53%;
}
.height-max-p-54 {
    max-height: 54%;
}
.height-max-p-55 {
    max-height: 55%;
}
.height-max-p-56 {
    max-height: 56%;
}
.height-max-p-57 {
    max-height: 57%;
}
.height-max-p-58 {
    max-height: 58%;
}
.height-max-p-59 {
    max-height: 59%;
}
.height-max-p-60 {
    max-height: 60%;
}
.height-max-p-61 {
    max-height: 61%;
}
.height-max-p-62 {
    max-height: 62%;
}
.height-max-p-63 {
    max-height: 63%;
}
.height-max-p-64 {
    max-height: 64%;
}
.height-max-p-65 {
    max-height: 65%;
}
.height-max-p-66 {
    max-height: 66%;
}
.height-max-p-67 {
    max-height: 67%;
}
.height-max-p-68 {
    max-height: 68%;
}
.height-max-p-69 {
    max-height: 69%;
}
.height-max-p-70 {
    max-height: 70%;
}
.height-max-p-71 {
    max-height: 71%;
}
.height-max-p-72 {
    max-height: 72%;
}
.height-max-p-73 {
    max-height: 73%;
}
.height-max-p-74 {
    max-height: 74%;
}
.height-max-p-75 {
    max-height: 75%;
}
.height-max-p-76 {
    max-height: 76%;
}
.height-max-p-77 {
    max-height: 77%;
}
.height-max-p-78 {
    max-height: 78%;
}
.height-max-p-79 {
    max-height: 79%;
}
.height-max-p-80 {
    max-height: 80%;
}
.height-max-p-81 {
    max-height: 81%;
}
.height-max-p-82 {
    max-height: 82%;
}
.height-max-p-83 {
    max-height: 83%;
}
.height-max-p-84 {
    max-height: 84%;
}
.height-max-p-85 {
    max-height: 85%;
}
.height-max-p-86 {
    max-height: 86%;
}
.height-max-p-87 {
    max-height: 87%;
}
.height-max-p-88 {
    max-height: 88%;
}
.height-max-p-89 {
    max-height: 89%;
}
.height-max-p-90 {
    max-height: 90%;
}
.height-max-p-91 {
    max-height: 91%;
}
.height-max-p-92 {
    max-height: 92%;
}
.height-max-p-93 {
    max-height: 93%;
}
.height-max-p-94 {
    max-height: 94%;
}
.height-max-p-95 {
    max-height: 95%;
}
.height-max-p-96 {
    max-height: 96%;
}
.height-max-p-97 {
    max-height: 97%;
}
.height-max-p-98 {
    max-height: 98%;
}
.height-max-p-99 {
    max-height: 99%;
}
.height-max-p-100 {
    max-height: 100%;
}
.height-max-p-110 {
    max-height: 110%;
}
.height-max-p-120 {
    max-height: 120%;
}
.height-max-p-130 {
    max-height: 130%;
}
.height-max-p-140 {
    max-height: 140%;
}
.height-max-p-150 {
    max-height: 150%;
}
.height-max-p-160 {
    max-height: 160%;
}
.height-max-p-170 {
    max-height: 170%;
}
.height-max-p-180 {
    max-height: 180%;
}
.height-max-p-190 {
    max-height: 190%;
}
.height-max-p-200 {
    max-height: 200%;
}
.height-max-vh-1 {
    max-height: 1vh;
}
.height-max-vh-2 {
    max-height: 2vh;
}
.height-max-vh-3 {
    max-height: 3vh;
}
.height-max-vh-4 {
    max-height: 4vh;
}
.height-max-vh-5 {
    max-height: 5vh;
}
.height-max-vh-6 {
    max-height: 6vh;
}
.height-max-vh-7 {
    max-height: 7vh;
}
.height-max-vh-8 {
    max-height: 8vh;
}
.height-max-vh-9 {
    max-height: 9vh;
}
.height-max-vh-10 {
    max-height: 10vh;
}
.height-max-vh-11 {
    max-height: 11vh;
}
.height-max-vh-12 {
    max-height: 12vh;
}
.height-max-vh-13 {
    max-height: 13vh;
}
.height-max-vh-14 {
    max-height: 14vh;
}
.height-max-vh-15 {
    max-height: 15vh;
}
.height-max-vh-16 {
    max-height: 16vh;
}
.height-max-vh-17 {
    max-height: 17vh;
}
.height-max-vh-18 {
    max-height: 18vh;
}
.height-max-vh-19 {
    max-height: 19vh;
}
.height-max-vh-20 {
    max-height: 20vh;
}
.height-max-vh-21 {
    max-height: 21vh;
}
.height-max-vh-22 {
    max-height: 22vh;
}
.height-max-vh-23 {
    max-height: 23vh;
}
.height-max-vh-24 {
    max-height: 24vh;
}
.height-max-vh-25 {
    max-height: 25vh;
}
.height-max-vh-26 {
    max-height: 26vh;
}
.height-max-vh-27 {
    max-height: 27vh;
}
.height-max-vh-28 {
    max-height: 28vh;
}
.height-max-vh-29 {
    max-height: 29vh;
}
.height-max-vh-30 {
    max-height: 30vh;
}
.height-max-vh-31 {
    max-height: 31vh;
}
.height-max-vh-32 {
    max-height: 32vh;
}
.height-max-vh-33 {
    max-height: 33vh;
}
.height-max-vh-34 {
    max-height: 34vh;
}
.height-max-vh-35 {
    max-height: 35vh;
}
.height-max-vh-36 {
    max-height: 36vh;
}
.height-max-vh-37 {
    max-height: 37vh;
}
.height-max-vh-38 {
    max-height: 38vh;
}
.height-max-vh-39 {
    max-height: 39vh;
}
.height-max-vh-40 {
    max-height: 40vh;
}
.height-max-vh-41 {
    max-height: 41vh;
}
.height-max-vh-42 {
    max-height: 42vh;
}
.height-max-vh-43 {
    max-height: 43vh;
}
.height-max-vh-44 {
    max-height: 44vh;
}
.height-max-vh-45 {
    max-height: 45vh;
}
.height-max-vh-46 {
    max-height: 46vh;
}
.height-max-vh-47 {
    max-height: 47vh;
}
.height-max-vh-48 {
    max-height: 48vh;
}
.height-max-vh-49 {
    max-height: 49vh;
}
.height-max-vh-50 {
    max-height: 50vh;
}
.height-max-vh-51 {
    max-height: 51vh;
}
.height-max-vh-52 {
    max-height: 52vh;
}
.height-max-vh-53 {
    max-height: 53vh;
}
.height-max-vh-54 {
    max-height: 54vh;
}
.height-max-vh-55 {
    max-height: 55vh;
}
.height-max-vh-56 {
    max-height: 56vh;
}
.height-max-vh-57 {
    max-height: 57vh;
}
.height-max-vh-58 {
    max-height: 58vh;
}
.height-max-vh-59 {
    max-height: 59vh;
}
.height-max-vh-60 {
    max-height: 60vh;
}
.height-max-vh-61 {
    max-height: 61vh;
}
.height-max-vh-62 {
    max-height: 62vh;
}
.height-max-vh-63 {
    max-height: 63vh;
}
.height-max-vh-64 {
    max-height: 64vh;
}
.height-max-vh-65 {
    max-height: 65vh;
}
.height-max-vh-66 {
    max-height: 66vh;
}
.height-max-vh-67 {
    max-height: 67vh;
}
.height-max-vh-68 {
    max-height: 68vh;
}
.height-max-vh-69 {
    max-height: 69vh;
}
.height-max-vh-70 {
    max-height: 70vh;
}
.height-max-vh-71 {
    max-height: 71vh;
}
.height-max-vh-72 {
    max-height: 72vh;
}
.height-max-vh-73 {
    max-height: 73vh;
}
.height-max-vh-74 {
    max-height: 74vh;
}
.height-max-vh-75 {
    max-height: 75vh;
}
.height-max-vh-76 {
    max-height: 76vh;
}
.height-max-vh-77 {
    max-height: 77vh;
}
.height-max-vh-78 {
    max-height: 78vh;
}
.height-max-vh-79 {
    max-height: 79vh;
}
.height-max-vh-80 {
    max-height: 80vh;
}
.height-max-vh-81 {
    max-height: 81vh;
}
.height-max-vh-82 {
    max-height: 82vh;
}
.height-max-vh-83 {
    max-height: 83vh;
}
.height-max-vh-84 {
    max-height: 84vh;
}
.height-max-vh-85 {
    max-height: 85vh;
}
.height-max-vh-86 {
    max-height: 86vh;
}
.height-max-vh-87 {
    max-height: 87vh;
}
.height-max-vh-88 {
    max-height: 88vh;
}
.height-max-vh-89 {
    max-height: 89vh;
}
.height-max-vh-90 {
    max-height: 90vh;
}
.height-max-vh-91 {
    max-height: 91vh;
}
.height-max-vh-92 {
    max-height: 92vh;
}
.height-max-vh-93 {
    max-height: 93vh;
}
.height-max-vh-94 {
    max-height: 94vh;
}
.height-max-vh-95 {
    max-height: 95vh;
}
.height-max-vh-96 {
    max-height: 96vh;
}
.height-max-vh-97 {
    max-height: 97vh;
}
.height-max-vh-98 {
    max-height: 98vh;
}
.height-max-vh-99 {
    max-height: 99vh;
}
.height-max-vh-100 {
    max-height: 100vh;
}
.height-max-px-1 {
    max-height: 1px;
}
.height-max-px-2 {
    max-height: 2px;
}
.height-max-px-3 {
    max-height: 3px;
}
.height-max-px-4 {
    max-height: 4px;
}
.height-max-px-5 {
    max-height: 5px;
}
.height-max-px-6 {
    max-height: 6px;
}
.height-max-px-7 {
    max-height: 7px;
}
.height-max-px-8 {
    max-height: 8px;
}
.height-max-px-9 {
    max-height: 9px;
}
.height-max-px-10 {
    max-height: 10px;
}
.height-max-px-11 {
    max-height: 11px;
}
.height-max-px-12 {
    max-height: 12px;
}
.height-max-px-13 {
    max-height: 13px;
}
.height-max-px-14 {
    max-height: 14px;
}
.height-max-px-15 {
    max-height: 15px;
}
.height-max-px-16 {
    max-height: 16px;
}
.height-max-px-17 {
    max-height: 17px;
}
.height-max-px-18 {
    max-height: 18px;
}
.height-max-px-19 {
    max-height: 19px;
}
.height-max-px-20 {
    max-height: 20px;
}
.height-max-px-21 {
    max-height: 21px;
}
.height-max-px-22 {
    max-height: 22px;
}
.height-max-px-23 {
    max-height: 23px;
}
.height-max-px-24 {
    max-height: 24px;
}
.height-max-px-25 {
    max-height: 25px;
}
.height-max-px-26 {
    max-height: 26px;
}
.height-max-px-27 {
    max-height: 27px;
}
.height-max-px-28 {
    max-height: 28px;
}
.height-max-px-29 {
    max-height: 29px;
}
.height-max-px-30 {
    max-height: 30px;
}
.height-max-px-31 {
    max-height: 31px;
}
.height-max-px-32 {
    max-height: 32px;
}
.height-max-px-33 {
    max-height: 33px;
}
.height-max-px-34 {
    max-height: 34px;
}
.height-max-px-35 {
    max-height: 35px;
}
.height-max-px-36 {
    max-height: 36px;
}
.height-max-px-37 {
    max-height: 37px;
}
.height-max-px-38 {
    max-height: 38px;
}
.height-max-px-39 {
    max-height: 39px;
}
.height-max-px-40 {
    max-height: 40px;
}
.height-max-px-41 {
    max-height: 41px;
}
.height-max-px-42 {
    max-height: 42px;
}
.height-max-px-43 {
    max-height: 43px;
}
.height-max-px-44 {
    max-height: 44px;
}
.height-max-px-45 {
    max-height: 45px;
}
.height-max-px-46 {
    max-height: 46px;
}
.height-max-px-47 {
    max-height: 47px;
}
.height-max-px-48 {
    max-height: 48px;
}
.height-max-px-49 {
    max-height: 49px;
}
.height-max-px-50 {
    max-height: 50px;
}
.height-max-px-51 {
    max-height: 51px;
}
.height-max-px-52 {
    max-height: 52px;
}
.height-max-px-53 {
    max-height: 53px;
}
.height-max-px-54 {
    max-height: 54px;
}
.height-max-px-55 {
    max-height: 55px;
}
.height-max-px-56 {
    max-height: 56px;
}
.height-max-px-57 {
    max-height: 57px;
}
.height-max-px-58 {
    max-height: 58px;
}
.height-max-px-59 {
    max-height: 59px;
}
.height-max-px-60 {
    max-height: 60px;
}
.height-max-px-61 {
    max-height: 61px;
}
.height-max-px-62 {
    max-height: 62px;
}
.height-max-px-63 {
    max-height: 63px;
}
.height-max-px-64 {
    max-height: 64px;
}
.height-max-px-65 {
    max-height: 65px;
}
.height-max-px-66 {
    max-height: 66px;
}
.height-max-px-67 {
    max-height: 67px;
}
.height-max-px-68 {
    max-height: 68px;
}
.height-max-px-69 {
    max-height: 69px;
}
.height-max-px-70 {
    max-height: 70px;
}
.height-max-px-71 {
    max-height: 71px;
}
.height-max-px-72 {
    max-height: 72px;
}
.height-max-px-73 {
    max-height: 73px;
}
.height-max-px-74 {
    max-height: 74px;
}
.height-max-px-75 {
    max-height: 75px;
}
.height-max-px-76 {
    max-height: 76px;
}
.height-max-px-77 {
    max-height: 77px;
}
.height-max-px-78 {
    max-height: 78px;
}
.height-max-px-79 {
    max-height: 79px;
}
.height-max-px-80 {
    max-height: 80px;
}
.height-max-px-81 {
    max-height: 81px;
}
.height-max-px-82 {
    max-height: 82px;
}
.height-max-px-83 {
    max-height: 83px;
}
.height-max-px-84 {
    max-height: 84px;
}
.height-max-px-85 {
    max-height: 85px;
}
.height-max-px-86 {
    max-height: 86px;
}
.height-max-px-87 {
    max-height: 87px;
}
.height-max-px-88 {
    max-height: 88px;
}
.height-max-px-89 {
    max-height: 89px;
}
.height-max-px-90 {
    max-height: 90px;
}
.height-max-px-91 {
    max-height: 91px;
}
.height-max-px-92 {
    max-height: 92px;
}
.height-max-px-93 {
    max-height: 93px;
}
.height-max-px-94 {
    max-height: 94px;
}
.height-max-px-95 {
    max-height: 95px;
}
.height-max-px-96 {
    max-height: 96px;
}
.height-max-px-97 {
    max-height: 97px;
}
.height-max-px-98 {
    max-height: 98px;
}
.height-max-px-99 {
    max-height: 99px;
}
.height-max-px-100 {
    max-height: 100px;
}
.height-max-px-110 {
    max-height: 110px;
}
.height-max-px-120 {
    max-height: 120px;
}
.height-max-px-130 {
    max-height: 130px;
}
.height-max-px-140 {
    max-height: 140px;
}
.height-max-px-150 {
    max-height: 150px;
}
.height-max-px-160 {
    max-height: 160px;
}
.height-max-px-170 {
    max-height: 170px;
}
.height-max-px-180 {
    max-height: 180px;
}
.height-max-px-190 {
    max-height: 190px;
}
.height-max-px-200 {
    max-height: 200px;
}
.height-max-px-210 {
    max-height: 210px;
}
.height-max-px-220 {
    max-height: 220px;
}
.height-max-px-230 {
    max-height: 230px;
}
.height-max-px-240 {
    max-height: 240px;
}
.height-max-px-250 {
    max-height: 250px;
}
.height-max-px-260 {
    max-height: 260px;
}
.height-max-px-270 {
    max-height: 270px;
}
.height-max-px-280 {
    max-height: 280px;
}
.height-max-px-290 {
    max-height: 290px;
}
.height-max-px-300 {
    max-height: 300px;
}
.height-max-px-310 {
    max-height: 310px;
}
.height-max-px-320 {
    max-height: 320px;
}
.height-max-px-330 {
    max-height: 330px;
}
.height-max-px-340 {
    max-height: 340px;
}
.height-max-px-350 {
    max-height: 350px;
}
.height-max-px-360 {
    max-height: 360px;
}
.height-max-px-370 {
    max-height: 370px;
}
.height-max-px-380 {
    max-height: 380px;
}
.height-max-px-390 {
    max-height: 390px;
}
.height-max-px-400 {
    max-height: 400px;
}
.height-max-px-410 {
    max-height: 410px;
}
.height-max-px-420 {
    max-height: 420px;
}
.height-max-px-430 {
    max-height: 430px;
}
.height-max-px-440 {
    max-height: 440px;
}
.height-max-px-450 {
    max-height: 450px;
}
.height-max-px-460 {
    max-height: 460px;
}
.height-max-px-470 {
    max-height: 470px;
}
.height-max-px-480 {
    max-height: 480px;
}
.height-max-px-490 {
    max-height: 490px;
}
.height-max-px-500 {
    max-height: 500px;
}
.height-max-px-525 {
    max-height: 525px;
}
.height-max-px-550 {
    max-height: 550px;
}
.height-max-px-575 {
    max-height: 575px;
}
.height-max-px-600 {
    max-height: 600px;
}
.height-max-px-625 {
    max-height: 625px;
}
.height-max-px-650 {
    max-height: 650px;
}
.height-max-px-675 {
    max-height: 675px;
}
.height-max-px-700 {
    max-height: 700px;
}
.height-max-px-725 {
    max-height: 725px;
}
.height-max-px-750 {
    max-height: 750px;
}
.height-max-px-775 {
    max-height: 775px;
}
.height-max-px-800 {
    max-height: 800px;
}
.height-max-px-825 {
    max-height: 825px;
}
.height-max-px-850 {
    max-height: 850px;
}
.height-max-px-900 {
    max-height: 900px;
}
.height-max-px-925 {
    max-height: 925px;
}
.height-max-px-950 {
    max-height: 950px;
}
.height-max-px-975 {
    max-height: 975px;
}
.height-max-px-1000 {
    max-height: 1000px;
}


/*******************************************************************************************************
WIDTH
*******************************************************************************************************/
.width-0 {
    width: 0;
}
.width-p-1 {
    width: 1%;
}
.width-p-2 {
    width: 2%;
}
.width-p-3 {
    width: 3%;
}
.width-p-4 {
    width: 4%;
}
.width-p-5 {
    width: 5%;
}
.width-p-6 {
    width: 6%;
}
.width-p-7 {
    width: 7%;
}
.width-p-8 {
    width: 8%;
}
.width-p-9 {
    width: 9%;
}
.width-p-10 {
    width: 10%;
}
.width-p-11 {
    width: 11%;
}
.width-p-12 {
    width: 12%;
}
.width-p-13 {
    width: 13%;
}
.width-p-14 {
    width: 14%;
}
.width-p-15 {
    width: 15%;
}
.width-p-16 {
    width: 16%;
}
.width-p-17 {
    width: 17%;
}
.width-p-18 {
    width: 18%;
}
.width-p-19 {
    width: 19%;
}
.width-p-20 {
    width: 20%;
}
.width-p-21 {
    width: 21%;
}
.width-p-22 {
    width: 22%;
}
.width-p-23 {
    width: 23%;
}
.width-p-24 {
    width: 24%;
}
.width-p-25 {
    width: 25%;
}
.width-p-26 {
    width: 26%;
}
.width-p-27 {
    width: 27%;
}
.width-p-28 {
    width: 28%;
}
.width-p-29 {
    width: 29%;
}
.width-p-30 {
    width: 30%;
}
.width-p-31 {
    width: 31%;
}
.width-p-32 {
    width: 32%;
}
.width-p-33 {
    width: 33%;
}
.width-p-34 {
    width: 34%;
}
.width-p-35 {
    width: 35%;
}
.width-p-36 {
    width: 36%;
}
.width-p-37 {
    width: 37%;
}
.width-p-38 {
    width: 38%;
}
.width-p-39 {
    width: 39%;
}
.width-p-40 {
    width: 40%;
}
.width-p-41 {
    width: 41%;
}
.width-p-42 {
    width: 42%;
}
.width-p-43 {
    width: 43%;
}
.width-p-44 {
    width: 44%;
}
.width-p-45 {
    width: 45%;
}
.width-p-46 {
    width: 46%;
}
.width-p-47 {
    width: 47%;
}
.width-p-48 {
    width: 48%;
}
.width-p-49 {
    width: 49%;
}
.width-p-50 {
    width: 50%;
}
.width-p-51 {
    width: 51%;
}
.width-p-52 {
    width: 52%;
}
.width-p-53 {
    width: 53%;
}
.width-p-54 {
    width: 54%;
}
.width-p-55 {
    width: 55%;
}
.width-p-56 {
    width: 56%;
}
.width-p-57 {
    width: 57%;
}
.width-p-58 {
    width: 58%;
}
.width-p-59 {
    width: 59%;
}
.width-p-60 {
    width: 60%;
}
.width-p-61 {
    width: 61%;
}
.width-p-62 {
    width: 62%;
}
.width-p-63 {
    width: 63%;
}
.width-p-64 {
    width: 64%;
}
.width-p-65 {
    width: 65%;
}
.width-p-66 {
    width: 66%;
}
.width-p-67 {
    width: 67%;
}
.width-p-68 {
    width: 68%;
}
.width-p-69 {
    width: 69%;
}
.width-p-70 {
    width: 70%;
}
.width-p-71 {
    width: 71%;
}
.width-p-72 {
    width: 72%;
}
.width-p-73 {
    width: 73%;
}
.width-p-74 {
    width: 74%;
}
.width-p-75 {
    width: 75%;
}
.width-p-76 {
    width: 76%;
}
.width-p-77 {
    width: 77%;
}
.width-p-78 {
    width: 78%;
}
.width-p-79 {
    width: 79%;
}
.width-p-80 {
    width: 80%;
}
.width-p-81 {
    width: 81%;
}
.width-p-82 {
    width: 82%;
}
.width-p-83 {
    width: 83%;
}
.width-p-84 {
    width: 84%;
}
.width-p-85 {
    width: 85%;
}
.width-p-86 {
    width: 86%;
}
.width-p-87 {
    width: 87%;
}
.width-p-88 {
    width: 88%;
}
.width-p-89 {
    width: 89%;
}
.width-p-90 {
    width: 90%;
}
.width-p-91 {
    width: 91%;
}
.width-p-92 {
    width: 92%;
}
.width-p-93 {
    width: 93%;
}
.width-p-94 {
    width: 94%;
}
.width-p-95 {
    width: 95%;
}
.width-p-96 {
    width: 96%;
}
.width-p-97 {
    width: 97%;
}
.width-p-98 {
    width: 98%;
}
.width-p-99 {
    width: 99%;
}
.width-p-100 {
    width: 100%;
}
.width-p-110 {
    width: 110%;
}
.width-p-120 {
    width: 120%;
}
.width-p-130 {
    width: 130%;
}
.width-p-140 {
    width: 140%;
}
.width-p-150 {
    width: 150%;
}
.width-p-160 {
    width: 160%;
}
.width-p-170 {
    width: 170%;
}
.width-p-180 {
    width: 180%;
}
.width-p-190 {
    width: 190%;
}
.width-p-200 {
    width: 200%;
}
.width-vw-1 {
    width: 1vw;
}
.width-vw-2 {
    width: 2vw;
}
.width-vw-3 {
    width: 3vw;
}
.width-vw-4 {
    width: 4vw;
}
.width-vw-5 {
    width: 5vw;
}
.width-vw-6 {
    width: 6vw;
}
.width-vw-7 {
    width: 7vw;
}
.width-vw-8 {
    width: 8vw;
}
.width-vw-9 {
    width: 9vw;
}
.width-vw-10 {
    width: 10vw;
}
.width-vw-11 {
    width: 11vw;
}
.width-vw-12 {
    width: 12vw;
}
.width-vw-13 {
    width: 13vw;
}
.width-vw-14 {
    width: 14vw;
}
.width-vw-15 {
    width: 15vw;
}
.width-vw-16 {
    width: 16vw;
}
.width-vw-17 {
    width: 17vw;
}
.width-vw-18 {
    width: 18vw;
}
.width-vw-19 {
    width: 19vw;
}
.width-vw-20 {
    width: 20vw;
}
.width-vw-21 {
    width: 21vw;
}
.width-vw-22 {
    width: 22vw;
}
.width-vw-23 {
    width: 23vw;
}
.width-vw-24 {
    width: 24vw;
}
.width-vw-25 {
    width: 25vw;
}
.width-vw-26 {
    width: 26vw;
}
.width-vw-27 {
    width: 27vw;
}
.width-vw-28 {
    width: 28vw;
}
.width-vw-29 {
    width: 29vw;
}
.width-vw-30 {
    width: 30vw;
}
.width-vw-31 {
    width: 31vw;
}
.width-vw-32 {
    width: 32vw;
}
.width-vw-33 {
    width: 33vw;
}
.width-vw-34 {
    width: 34vw;
}
.width-vw-35 {
    width: 35vw;
}
.width-vw-36 {
    width: 36vw;
}
.width-vw-37 {
    width: 37vw;
}
.width-vw-38 {
    width: 38vw;
}
.width-vw-39 {
    width: 39vw;
}
.width-vw-40 {
    width: 40vw;
}
.width-vw-41 {
    width: 41vw;
}
.width-vw-42 {
    width: 42vw;
}
.width-vw-43 {
    width: 43vw;
}
.width-vw-44 {
    width: 44vw;
}
.width-vw-45 {
    width: 45vw;
}
.width-vw-46 {
    width: 46vw;
}
.width-vw-47 {
    width: 47vw;
}
.width-vw-48 {
    width: 48vw;
}
.width-vw-49 {
    width: 49vw;
}
.width-vw-50 {
    width: 50vw;
}
.width-vw-51 {
    width: 51vw;
}
.width-vw-52 {
    width: 52vw;
}
.width-vw-53 {
    width: 53vw;
}
.width-vw-54 {
    width: 54vw;
}
.width-vw-55 {
    width: 55vw;
}
.width-vw-56 {
    width: 56vw;
}
.width-vw-57 {
    width: 57vw;
}
.width-vw-58 {
    width: 58vw;
}
.width-vw-59 {
    width: 59vw;
}
.width-vw-60 {
    width: 60vw;
}
.width-vw-61 {
    width: 61vw;
}
.width-vw-62 {
    width: 62vw;
}
.width-vw-63 {
    width: 63vw;
}
.width-vw-64 {
    width: 64vw;
}
.width-vw-65 {
    width: 65vw;
}
.width-vw-66 {
    width: 66vw;
}
.width-vw-67 {
    width: 67vw;
}
.width-vw-68 {
    width: 68vw;
}
.width-vw-69 {
    width: 69vw;
}
.width-vw-70 {
    width: 70vw;
}
.width-vw-71 {
    width: 71vw;
}
.width-vw-72 {
    width: 72vw;
}
.width-vw-73 {
    width: 73vw;
}
.width-vw-74 {
    width: 74vw;
}
.width-vw-75 {
    width: 75vw;
}
.width-vw-76 {
    width: 76vw;
}
.width-vw-77 {
    width: 77vw;
}
.width-vw-78 {
    width: 78vw;
}
.width-vw-79 {
    width: 79vw;
}
.width-vw-80 {
    width: 80vw;
}
.width-vw-81 {
    width: 81vw;
}
.width-vw-82 {
    width: 82vw;
}
.width-vw-83 {
    width: 83vw;
}
.width-vw-84 {
    width: 84vw;
}
.width-vw-85 {
    width: 85vw;
}
.width-vw-86 {
    width: 86vw;
}
.width-vw-87 {
    width: 87vw;
}
.width-vw-88 {
    width: 88vw;
}
.width-vw-89 {
    width: 89vw;
}
.width-vw-90 {
    width: 90vw;
}
.width-vw-91 {
    width: 91vw;
}
.width-vw-92 {
    width: 92vw;
}
.width-vw-93 {
    width: 93vw;
}
.width-vw-94 {
    width: 94vw;
}
.width-vw-95 {
    width: 95vw;
}
.width-vw-96 {
    width: 96vw;
}
.width-vw-97 {
    width: 97vw;
}
.width-vw-98 {
    width: 98vw;
}
.width-vw-99 {
    width: 99vw;
}
.width-vw-100 {
    width: 100vw;
}
.width-px-1 {
    width: 1px;
}
.width-px-2 {
    width: 2px;
}
.width-px-3 {
    width: 3px;
}
.width-px-4 {
    width: 4px;
}
.width-px-5 {
    width: 5px;
}
.width-px-6 {
    width: 6px;
}
.width-px-7 {
    width: 7px;
}
.width-px-8 {
    width: 8px;
}
.width-px-9 {
    width: 9px;
}
.width-px-10 {
    width: 10px;
}
.width-px-11 {
    width: 11px;
}
.width-px-12 {
    width: 12px;
}
.width-px-13 {
    width: 13px;
}
.width-px-14 {
    width: 14px;
}
.width-px-15 {
    width: 15px;
}
.width-px-16 {
    width: 16px;
}
.width-px-17 {
    width: 17px;
}
.width-px-18 {
    width: 18px;
}
.width-px-19 {
    width: 19px;
}
.width-px-20 {
    width: 20px;
}
.width-px-21 {
    width: 21px;
}
.width-px-22 {
    width: 22px;
}
.width-px-23 {
    width: 23px;
}
.width-px-24 {
    width: 24px;
}
.width-px-25 {
    width: 25px;
}
.width-px-26 {
    width: 26px;
}
.width-px-27 {
    width: 27px;
}
.width-px-28 {
    width: 28px;
}
.width-px-29 {
    width: 29px;
}
.width-px-30 {
    width: 30px;
}
.width-px-31 {
    width: 31px;
}
.width-px-32 {
    width: 32px;
}
.width-px-33 {
    width: 33px;
}
.width-px-34 {
    width: 34px;
}
.width-px-35 {
    width: 35px;
}
.width-px-36 {
    width: 36px;
}
.width-px-37 {
    width: 37px;
}
.width-px-38 {
    width: 38px;
}
.width-px-39 {
    width: 39px;
}
.width-px-40 {
    width: 40px;
}
.width-px-41 {
    width: 41px;
}
.width-px-42 {
    width: 42px;
}
.width-px-43 {
    width: 43px;
}
.width-px-44 {
    width: 44px;
}
.width-px-45 {
    width: 45px;
}
.width-px-46 {
    width: 46px;
}
.width-px-47 {
    width: 47px;
}
.width-px-48 {
    width: 48px;
}
.width-px-49 {
    width: 49px;
}
.width-px-50 {
    width: 50px;
}
.width-px-51 {
    width: 51px;
}
.width-px-52 {
    width: 52px;
}
.width-px-53 {
    width: 53px;
}
.width-px-54 {
    width: 54px;
}
.width-px-55 {
    width: 55px;
}
.width-px-56 {
    width: 56px;
}
.width-px-57 {
    width: 57px;
}
.width-px-58 {
    width: 58px;
}
.width-px-59 {
    width: 59px;
}
.width-px-60 {
    width: 60px;
}
.width-px-61 {
    width: 61px;
}
.width-px-62 {
    width: 62px;
}
.width-px-63 {
    width: 63px;
}
.width-px-64 {
    width: 64px;
}
.width-px-65 {
    width: 65px;
}
.width-px-66 {
    width: 66px;
}
.width-px-67 {
    width: 67px;
}
.width-px-68 {
    width: 68px;
}
.width-px-69 {
    width: 69px;
}
.width-px-70 {
    width: 70px;
}
.width-px-71 {
    width: 71px;
}
.width-px-72 {
    width: 72px;
}
.width-px-73 {
    width: 73px;
}
.width-px-74 {
    width: 74px;
}
.width-px-75 {
    width: 75px;
}
.width-px-76 {
    width: 76px;
}
.width-px-77 {
    width: 77px;
}
.width-px-78 {
    width: 78px;
}
.width-px-79 {
    width: 79px;
}
.width-px-80 {
    width: 80px;
}
.width-px-81 {
    width: 81px;
}
.width-px-82 {
    width: 82px;
}
.width-px-83 {
    width: 83px;
}
.width-px-84 {
    width: 84px;
}
.width-px-85 {
    width: 85px;
}
.width-px-86 {
    width: 86px;
}
.width-px-87 {
    width: 87px;
}
.width-px-88 {
    width: 88px;
}
.width-px-89 {
    width: 89px;
}
.width-px-90 {
    width: 90px;
}
.width-px-91 {
    width: 91px;
}
.width-px-92 {
    width: 92px;
}
.width-px-93 {
    width: 93px;
}
.width-px-94 {
    width: 94px;
}
.width-px-95 {
    width: 95px;
}
.width-px-96 {
    width: 96px;
}
.width-px-97 {
    width: 97px;
}
.width-px-98 {
    width: 98px;
}
.width-px-99 {
    width: 99px;
}
.width-px-100 {
    width: 100px;
}
.width-px-110 {
    width: 110px;
}
.width-px-120 {
    width: 120px;
}
.width-px-130 {
    width: 130px;
}
.width-px-140 {
    width: 140px;
}
.width-px-150 {
    width: 150px;
}
.width-px-160 {
    width: 160px;
}
.width-px-170 {
    width: 170px;
}
.width-px-180 {
    width: 180px;
}
.width-px-190 {
    width: 190px;
}
.width-px-200 {
    width: 200px;
}
.width-px-210 {
    width: 210px;
}
.width-px-220 {
    width: 220px;
}
.width-px-230 {
    width: 230px;
}
.width-px-240 {
    width: 240px;
}
.width-px-250 {
    width: 250px;
}
.width-px-260 {
    width: 260px;
}
.width-px-270 {
    width: 270px;
}
.width-px-280 {
    width: 280px;
}
.width-px-290 {
    width: 290px;
}
.width-px-300 {
    width: 300px;
}
.width-px-310 {
    width: 310px;
}
.width-px-320 {
    width: 320px;
}
.width-px-330 {
    width: 330px;
}
.width-px-340 {
    width: 340px;
}
.width-px-350 {
    width: 350px;
}
.width-px-360 {
    width: 360px;
}
.width-px-370 {
    width: 370px;
}
.width-px-380 {
    width: 380px;
}
.width-px-390 {
    width: 390px;
}
.width-px-400 {
    width: 400px;
}
.width-px-410 {
    width: 410px;
}
.width-px-420 {
    width: 420px;
}
.width-px-430 {
    width: 430px;
}
.width-px-440 {
    width: 440px;
}
.width-px-450 {
    width: 450px;
}
.width-px-460 {
    width: 460px;
}
.width-px-470 {
    width: 470px;
}
.width-px-480 {
    width: 480px;
}
.width-px-490 {
    width: 490px;
}
.width-px-500 {
    width: 500px;
}
.width-px-525 {
    width: 525px;
}
.width-px-550 {
    width: 550px;
}
.width-px-575 {
    width: 575px;
}
.width-px-600 {
    width: 600px;
}
.width-px-625 {
    width: 625px;
}
.width-px-650 {
    width: 650px;
}
.width-px-675 {
    width: 675px;
}
.width-px-700 {
    width: 700px;
}
.width-px-725 {
    width: 725px;
}
.width-px-750 {
    width: 750px;
}
.width-px-775 {
    width: 775px;
}
.width-px-800 {
    width: 800px;
}
.width-px-825 {
    width: 825px;
}
.width-px-850 {
    width: 850px;
}
.width-px-900 {
    width: 900px;
}
.width-px-925 {
    width: 925px;
}
.width-px-950 {
    width: 950px;
}
.width-px-975 {
    width: 975px;
}
.width-px-1000 {
    width: 1000px;
}


/*******************************************************************************************************
WIDTH MIN
*******************************************************************************************************/
.width-min-0 {
    min-width: 0;
}
.width-min-p-1 {
    min-width: 1%;
}
.width-min-p-2 {
    min-width: 2%;
}
.width-min-p-3 {
    min-width: 3%;
}
.width-min-p-4 {
    min-width: 4%;
}
.width-min-p-5 {
    min-width: 5%;
}
.width-min-p-6 {
    min-width: 6%;
}
.width-min-p-7 {
    min-width: 7%;
}
.width-min-p-8 {
    min-width: 8%;
}
.width-min-p-9 {
    min-width: 9%;
}
.width-min-p-10 {
    min-width: 10%;
}
.width-min-p-11 {
    min-width: 11%;
}
.width-min-p-12 {
    min-width: 12%;
}
.width-min-p-13 {
    min-width: 13%;
}
.width-min-p-14 {
    min-width: 14%;
}
.width-min-p-15 {
    min-width: 15%;
}
.width-min-p-16 {
    min-width: 16%;
}
.width-min-p-17 {
    min-width: 17%;
}
.width-min-p-18 {
    min-width: 18%;
}
.width-min-p-19 {
    min-width: 19%;
}
.width-min-p-20 {
    min-width: 20%;
}
.width-min-p-21 {
    min-width: 21%;
}
.width-min-p-22 {
    min-width: 22%;
}
.width-min-p-23 {
    min-width: 23%;
}
.width-min-p-24 {
    min-width: 24%;
}
.width-min-p-25 {
    min-width: 25%;
}
.width-min-p-26 {
    min-width: 26%;
}
.width-min-p-27 {
    min-width: 27%;
}
.width-min-p-28 {
    min-width: 28%;
}
.width-min-p-29 {
    min-width: 29%;
}
.width-min-p-30 {
    min-width: 30%;
}
.width-min-p-31 {
    min-width: 31%;
}
.width-min-p-32 {
    min-width: 32%;
}
.width-min-p-33 {
    min-width: 33%;
}
.width-min-p-34 {
    min-width: 34%;
}
.width-min-p-35 {
    min-width: 35%;
}
.width-min-p-36 {
    min-width: 36%;
}
.width-min-p-37 {
    min-width: 37%;
}
.width-min-p-38 {
    min-width: 38%;
}
.width-min-p-39 {
    min-width: 39%;
}
.width-min-p-40 {
    min-width: 40%;
}
.width-min-p-41 {
    min-width: 41%;
}
.width-min-p-42 {
    min-width: 42%;
}
.width-min-p-43 {
    min-width: 43%;
}
.width-min-p-44 {
    min-width: 44%;
}
.width-min-p-45 {
    min-width: 45%;
}
.width-min-p-46 {
    min-width: 46%;
}
.width-min-p-47 {
    min-width: 47%;
}
.width-min-p-48 {
    min-width: 48%;
}
.width-min-p-49 {
    min-width: 49%;
}
.width-min-p-50 {
    min-width: 50%;
}
.width-min-p-51 {
    min-width: 51%;
}
.width-min-p-52 {
    min-width: 52%;
}
.width-min-p-53 {
    min-width: 53%;
}
.width-min-p-54 {
    min-width: 54%;
}
.width-min-p-55 {
    min-width: 55%;
}
.width-min-p-56 {
    min-width: 56%;
}
.width-min-p-57 {
    min-width: 57%;
}
.width-min-p-58 {
    min-width: 58%;
}
.width-min-p-59 {
    min-width: 59%;
}
.width-min-p-60 {
    min-width: 60%;
}
.width-min-p-61 {
    min-width: 61%;
}
.width-min-p-62 {
    min-width: 62%;
}
.width-min-p-63 {
    min-width: 63%;
}
.width-min-p-64 {
    min-width: 64%;
}
.width-min-p-65 {
    min-width: 65%;
}
.width-min-p-66 {
    min-width: 66%;
}
.width-min-p-67 {
    min-width: 67%;
}
.width-min-p-68 {
    min-width: 68%;
}
.width-min-p-69 {
    min-width: 69%;
}
.width-min-p-70 {
    min-width: 70%;
}
.width-min-p-71 {
    min-width: 71%;
}
.width-min-p-72 {
    min-width: 72%;
}
.width-min-p-73 {
    min-width: 73%;
}
.width-min-p-74 {
    min-width: 74%;
}
.width-min-p-75 {
    min-width: 75%;
}
.width-min-p-76 {
    min-width: 76%;
}
.width-min-p-77 {
    min-width: 77%;
}
.width-min-p-78 {
    min-width: 78%;
}
.width-min-p-79 {
    min-width: 79%;
}
.width-min-p-80 {
    min-width: 80%;
}
.width-min-p-81 {
    min-width: 81%;
}
.width-min-p-82 {
    min-width: 82%;
}
.width-min-p-83 {
    min-width: 83%;
}
.width-min-p-84 {
    min-width: 84%;
}
.width-min-p-85 {
    min-width: 85%;
}
.width-min-p-86 {
    min-width: 86%;
}
.width-min-p-87 {
    min-width: 87%;
}
.width-min-p-88 {
    min-width: 88%;
}
.width-min-p-89 {
    min-width: 89%;
}
.width-min-p-90 {
    min-width: 90%;
}
.width-min-p-91 {
    min-width: 91%;
}
.width-min-p-92 {
    min-width: 92%;
}
.width-min-p-93 {
    min-width: 93%;
}
.width-min-p-94 {
    min-width: 94%;
}
.width-min-p-95 {
    min-width: 95%;
}
.width-min-p-96 {
    min-width: 96%;
}
.width-min-p-97 {
    min-width: 97%;
}
.width-min-p-98 {
    min-width: 98%;
}
.width-min-p-99 {
    min-width: 99%;
}
.width-min-p-100 {
    min-width: 100%;
}
.width-min-p-110 {
    min-width: 110%;
}
.width-min-p-120 {
    min-width: 120%;
}
.width-min-p-130 {
    min-width: 130%;
}
.width-min-p-140 {
    min-width: 140%;
}
.width-min-p-150 {
    min-width: 150%;
}
.width-min-p-160 {
    min-width: 160%;
}
.width-min-p-170 {
    min-width: 170%;
}
.width-min-p-180 {
    min-width: 180%;
}
.width-min-p-190 {
    min-width: 190%;
}
.width-min-p-200 {
    min-width: 200%;
}
.width-min-vw-1 {
    min-width: 1vw;
}
.width-min-vw-2 {
    min-width: 2vw;
}
.width-min-vw-3 {
    min-width: 3vw;
}
.width-min-vw-4 {
    min-width: 4vw;
}
.width-min-vw-5 {
    min-width: 5vw;
}
.width-min-vw-6 {
    min-width: 6vw;
}
.width-min-vw-7 {
    min-width: 7vw;
}
.width-min-vw-8 {
    min-width: 8vw;
}
.width-min-vw-9 {
    min-width: 9vw;
}
.width-min-vw-10 {
    min-width: 10vw;
}
.width-min-vw-11 {
    min-width: 11vw;
}
.width-min-vw-12 {
    min-width: 12vw;
}
.width-min-vw-13 {
    min-width: 13vw;
}
.width-min-vw-14 {
    min-width: 14vw;
}
.width-min-vw-15 {
    min-width: 15vw;
}
.width-min-vw-16 {
    min-width: 16vw;
}
.width-min-vw-17 {
    min-width: 17vw;
}
.width-min-vw-18 {
    min-width: 18vw;
}
.width-min-vw-19 {
    min-width: 19vw;
}
.width-min-vw-20 {
    min-width: 20vw;
}
.width-min-vw-21 {
    min-width: 21vw;
}
.width-min-vw-22 {
    min-width: 22vw;
}
.width-min-vw-23 {
    min-width: 23vw;
}
.width-min-vw-24 {
    min-width: 24vw;
}
.width-min-vw-25 {
    min-width: 25vw;
}
.width-min-vw-26 {
    min-width: 26vw;
}
.width-min-vw-27 {
    min-width: 27vw;
}
.width-min-vw-28 {
    min-width: 28vw;
}
.width-min-vw-29 {
    min-width: 29vw;
}
.width-min-vw-30 {
    min-width: 30vw;
}
.width-min-vw-31 {
    min-width: 31vw;
}
.width-min-vw-32 {
    min-width: 32vw;
}
.width-min-vw-33 {
    min-width: 33vw;
}
.width-min-vw-34 {
    min-width: 34vw;
}
.width-min-vw-35 {
    min-width: 35vw;
}
.width-min-vw-36 {
    min-width: 36vw;
}
.width-min-vw-37 {
    min-width: 37vw;
}
.width-min-vw-38 {
    min-width: 38vw;
}
.width-min-vw-39 {
    min-width: 39vw;
}
.width-min-vw-40 {
    min-width: 40vw;
}
.width-min-vw-41 {
    min-width: 41vw;
}
.width-min-vw-42 {
    min-width: 42vw;
}
.width-min-vw-43 {
    min-width: 43vw;
}
.width-min-vw-44 {
    min-width: 44vw;
}
.width-min-vw-45 {
    min-width: 45vw;
}
.width-min-vw-46 {
    min-width: 46vw;
}
.width-min-vw-47 {
    min-width: 47vw;
}
.width-min-vw-48 {
    min-width: 48vw;
}
.width-min-vw-49 {
    min-width: 49vw;
}
.width-min-vw-50 {
    min-width: 50vw;
}
.width-min-vw-51 {
    min-width: 51vw;
}
.width-min-vw-52 {
    min-width: 52vw;
}
.width-min-vw-53 {
    min-width: 53vw;
}
.width-min-vw-54 {
    min-width: 54vw;
}
.width-min-vw-55 {
    min-width: 55vw;
}
.width-min-vw-56 {
    min-width: 56vw;
}
.width-min-vw-57 {
    min-width: 57vw;
}
.width-min-vw-58 {
    min-width: 58vw;
}
.width-min-vw-59 {
    min-width: 59vw;
}
.width-min-vw-60 {
    min-width: 60vw;
}
.width-min-vw-61 {
    min-width: 61vw;
}
.width-min-vw-62 {
    min-width: 62vw;
}
.width-min-vw-63 {
    min-width: 63vw;
}
.width-min-vw-64 {
    min-width: 64vw;
}
.width-min-vw-65 {
    min-width: 65vw;
}
.width-min-vw-66 {
    min-width: 66vw;
}
.width-min-vw-67 {
    min-width: 67vw;
}
.width-min-vw-68 {
    min-width: 68vw;
}
.width-min-vw-69 {
    min-width: 69vw;
}
.width-min-vw-70 {
    min-width: 70vw;
}
.width-min-vw-71 {
    min-width: 71vw;
}
.width-min-vw-72 {
    min-width: 72vw;
}
.width-min-vw-73 {
    min-width: 73vw;
}
.width-min-vw-74 {
    min-width: 74vw;
}
.width-min-vw-75 {
    min-width: 75vw;
}
.width-min-vw-76 {
    min-width: 76vw;
}
.width-min-vw-77 {
    min-width: 77vw;
}
.width-min-vw-78 {
    min-width: 78vw;
}
.width-min-vw-79 {
    min-width: 79vw;
}
.width-min-vw-80 {
    min-width: 80vw;
}
.width-min-vw-81 {
    min-width: 81vw;
}
.width-min-vw-82 {
    min-width: 82vw;
}
.width-min-vw-83 {
    min-width: 83vw;
}
.width-min-vw-84 {
    min-width: 84vw;
}
.width-min-vw-85 {
    min-width: 85vw;
}
.width-min-vw-86 {
    min-width: 86vw;
}
.width-min-vw-87 {
    min-width: 87vw;
}
.width-min-vw-88 {
    min-width: 88vw;
}
.width-min-vw-89 {
    min-width: 89vw;
}
.width-min-vw-90 {
    min-width: 90vw;
}
.width-min-vw-91 {
    min-width: 91vw;
}
.width-min-vw-92 {
    min-width: 92vw;
}
.width-min-vw-93 {
    min-width: 93vw;
}
.width-min-vw-94 {
    min-width: 94vw;
}
.width-min-vw-95 {
    min-width: 95vw;
}
.width-min-vw-96 {
    min-width: 96vw;
}
.width-min-vw-97 {
    min-width: 97vw;
}
.width-min-vw-98 {
    min-width: 98vw;
}
.width-min-vw-99 {
    min-width: 99vw;
}
.width-min-vw-100 {
    min-width: 100vw;
}
.width-min-px-1 {
    min-width: 1px;
}
.width-min-px-2 {
    min-width: 2px;
}
.width-min-px-3 {
    min-width: 3px;
}
.width-min-px-4 {
    min-width: 4px;
}
.width-min-px-5 {
    min-width: 5px;
}
.width-min-px-6 {
    min-width: 6px;
}
.width-min-px-7 {
    min-width: 7px;
}
.width-min-px-8 {
    min-width: 8px;
}
.width-min-px-9 {
    min-width: 9px;
}
.width-min-px-10 {
    min-width: 10px;
}
.width-min-px-11 {
    min-width: 11px;
}
.width-min-px-12 {
    min-width: 12px;
}
.width-min-px-13 {
    min-width: 13px;
}
.width-min-px-14 {
    min-width: 14px;
}
.width-min-px-15 {
    min-width: 15px;
}
.width-min-px-16 {
    min-width: 16px;
}
.width-min-px-17 {
    min-width: 17px;
}
.width-min-px-18 {
    min-width: 18px;
}
.width-min-px-19 {
    min-width: 19px;
}
.width-min-px-20 {
    min-width: 20px;
}
.width-min-px-21 {
    min-width: 21px;
}
.width-min-px-22 {
    min-width: 22px;
}
.width-min-px-23 {
    min-width: 23px;
}
.width-min-px-24 {
    min-width: 24px;
}
.width-min-px-25 {
    min-width: 25px;
}
.width-min-px-26 {
    min-width: 26px;
}
.width-min-px-27 {
    min-width: 27px;
}
.width-min-px-28 {
    min-width: 28px;
}
.width-min-px-29 {
    min-width: 29px;
}
.width-min-px-30 {
    min-width: 30px;
}
.width-min-px-31 {
    min-width: 31px;
}
.width-min-px-32 {
    min-width: 32px;
}
.width-min-px-33 {
    min-width: 33px;
}
.width-min-px-34 {
    min-width: 34px;
}
.width-min-px-35 {
    min-width: 35px;
}
.width-min-px-36 {
    min-width: 36px;
}
.width-min-px-37 {
    min-width: 37px;
}
.width-min-px-38 {
    min-width: 38px;
}
.width-min-px-39 {
    min-width: 39px;
}
.width-min-px-40 {
    min-width: 40px;
}
.width-min-px-41 {
    min-width: 41px;
}
.width-min-px-42 {
    min-width: 42px;
}
.width-min-px-43 {
    min-width: 43px;
}
.width-min-px-44 {
    min-width: 44px;
}
.width-min-px-45 {
    min-width: 45px;
}
.width-min-px-46 {
    min-width: 46px;
}
.width-min-px-47 {
    min-width: 47px;
}
.width-min-px-48 {
    min-width: 48px;
}
.width-min-px-49 {
    min-width: 49px;
}
.width-min-px-50 {
    min-width: 50px;
}
.width-min-px-51 {
    min-width: 51px;
}
.width-min-px-52 {
    min-width: 52px;
}
.width-min-px-53 {
    min-width: 53px;
}
.width-min-px-54 {
    min-width: 54px;
}
.width-min-px-55 {
    min-width: 55px;
}
.width-min-px-56 {
    min-width: 56px;
}
.width-min-px-57 {
    min-width: 57px;
}
.width-min-px-58 {
    min-width: 58px;
}
.width-min-px-59 {
    min-width: 59px;
}
.width-min-px-60 {
    min-width: 60px;
}
.width-min-px-61 {
    min-width: 61px;
}
.width-min-px-62 {
    min-width: 62px;
}
.width-min-px-63 {
    min-width: 63px;
}
.width-min-px-64 {
    min-width: 64px;
}
.width-min-px-65 {
    min-width: 65px;
}
.width-min-px-66 {
    min-width: 66px;
}
.width-min-px-67 {
    min-width: 67px;
}
.width-min-px-68 {
    min-width: 68px;
}
.width-min-px-69 {
    min-width: 69px;
}
.width-min-px-70 {
    min-width: 70px;
}
.width-min-px-71 {
    min-width: 71px;
}
.width-min-px-72 {
    min-width: 72px;
}
.width-min-px-73 {
    min-width: 73px;
}
.width-min-px-74 {
    min-width: 74px;
}
.width-min-px-75 {
    min-width: 75px;
}
.width-min-px-76 {
    min-width: 76px;
}
.width-min-px-77 {
    min-width: 77px;
}
.width-min-px-78 {
    min-width: 78px;
}
.width-min-px-79 {
    min-width: 79px;
}
.width-min-px-80 {
    min-width: 80px;
}
.width-min-px-81 {
    min-width: 81px;
}
.width-min-px-82 {
    min-width: 82px;
}
.width-min-px-83 {
    min-width: 83px;
}
.width-min-px-84 {
    min-width: 84px;
}
.width-min-px-85 {
    min-width: 85px;
}
.width-min-px-86 {
    min-width: 86px;
}
.width-min-px-87 {
    min-width: 87px;
}
.width-min-px-88 {
    min-width: 88px;
}
.width-min-px-89 {
    min-width: 89px;
}
.width-min-px-90 {
    min-width: 90px;
}
.width-min-px-91 {
    min-width: 91px;
}
.width-min-px-92 {
    min-width: 92px;
}
.width-min-px-93 {
    min-width: 93px;
}
.width-min-px-94 {
    min-width: 94px;
}
.width-min-px-95 {
    min-width: 95px;
}
.width-min-px-96 {
    min-width: 96px;
}
.width-min-px-97 {
    min-width: 97px;
}
.width-min-px-98 {
    min-width: 98px;
}
.width-min-px-99 {
    min-width: 99px;
}
.width-min-px-100 {
    min-width: 100px;
}
.width-min-px-110 {
    min-width: 110px;
}
.width-min-px-120 {
    min-width: 120px;
}
.width-min-px-130 {
    min-width: 130px;
}
.width-min-px-140 {
    min-width: 140px;
}
.width-min-px-150 {
    min-width: 150px;
}
.width-min-px-160 {
    min-width: 160px;
}
.width-min-px-170 {
    min-width: 170px;
}
.width-min-px-180 {
    min-width: 180px;
}
.width-min-px-190 {
    min-width: 190px;
}
.width-min-px-200 {
    min-width: 200px;
}
.width-min-px-210 {
    min-width: 210px;
}
.width-min-px-220 {
    min-width: 220px;
}
.width-min-px-230 {
    min-width: 230px;
}
.width-min-px-240 {
    min-width: 240px;
}
.width-min-px-250 {
    min-width: 250px;
}
.width-min-px-260 {
    min-width: 260px;
}
.width-min-px-270 {
    min-width: 270px;
}
.width-min-px-280 {
    min-width: 280px;
}
.width-min-px-290 {
    min-width: 290px;
}
.width-min-px-300 {
    min-width: 300px;
}
.width-min-px-310 {
    min-width: 310px;
}
.width-min-px-320 {
    min-width: 320px;
}
.width-min-px-330 {
    min-width: 330px;
}
.width-min-px-340 {
    min-width: 340px;
}
.width-min-px-350 {
    min-width: 350px;
}
.width-min-px-360 {
    min-width: 360px;
}
.width-min-px-370 {
    min-width: 370px;
}
.width-min-px-380 {
    min-width: 380px;
}
.width-min-px-390 {
    min-width: 390px;
}
.width-min-px-400 {
    min-width: 400px;
}
.width-min-px-410 {
    min-width: 410px;
}
.width-min-px-420 {
    min-width: 420px;
}
.width-min-px-430 {
    min-width: 430px;
}
.width-min-px-440 {
    min-width: 440px;
}
.width-min-px-450 {
    min-width: 450px;
}
.width-min-px-460 {
    min-width: 460px;
}
.width-min-px-470 {
    min-width: 470px;
}
.width-min-px-480 {
    min-width: 480px;
}
.width-min-px-490 {
    min-width: 490px;
}
.width-min-px-500 {
    min-width: 500px;
}
.width-min-px-525 {
    min-width: 525px;
}
.width-min-px-550 {
    min-width: 550px;
}
.width-min-px-575 {
    min-width: 575px;
}
.width-min-px-600 {
    min-width: 600px;
}
.width-min-px-625 {
    min-width: 625px;
}
.width-min-px-650 {
    min-width: 650px;
}
.width-min-px-675 {
    min-width: 675px;
}
.width-min-px-700 {
    min-width: 700px;
}
.width-min-px-725 {
    min-width: 725px;
}
.width-min-px-750 {
    min-width: 750px;
}
.width-min-px-775 {
    min-width: 775px;
}
.width-min-px-800 {
    min-width: 800px;
}
.width-min-px-825 {
    min-width: 825px;
}
.width-min-px-850 {
    min-width: 850px;
}
.width-min-px-900 {
    min-width: 900px;
}
.width-min-px-925 {
    min-width: 925px;
}
.width-min-px-950 {
    min-width: 950px;
}
.width-min-px-975 {
    min-width: 975px;
}
.width-min-px-1000 {
    min-width: 1000px;
}


/*******************************************************************************************************
WIDTH MAX
*******************************************************************************************************/
.width-max-0 {
    max-width: 0;
}
.width-max-p-1 {
    max-width: 1%;
}
.width-max-p-2 {
    max-width: 2%;
}
.width-max-p-3 {
    max-width: 3%;
}
.width-max-p-4 {
    max-width: 4%;
}
.width-max-p-5 {
    max-width: 5%;
}
.width-max-p-6 {
    max-width: 6%;
}
.width-max-p-7 {
    max-width: 7%;
}
.width-max-p-8 {
    max-width: 8%;
}
.width-max-p-9 {
    max-width: 9%;
}
.width-max-p-10 {
    max-width: 10%;
}
.width-max-p-11 {
    max-width: 11%;
}
.width-max-p-12 {
    max-width: 12%;
}
.width-max-p-13 {
    max-width: 13%;
}
.width-max-p-14 {
    max-width: 14%;
}
.width-max-p-15 {
    max-width: 15%;
}
.width-max-p-16 {
    max-width: 16%;
}
.width-max-p-17 {
    max-width: 17%;
}
.width-max-p-18 {
    max-width: 18%;
}
.width-max-p-19 {
    max-width: 19%;
}
.width-max-p-20 {
    max-width: 20%;
}
.width-max-p-21 {
    max-width: 21%;
}
.width-max-p-22 {
    max-width: 22%;
}
.width-max-p-23 {
    max-width: 23%;
}
.width-max-p-24 {
    max-width: 24%;
}
.width-max-p-25 {
    max-width: 25%;
}
.width-max-p-26 {
    max-width: 26%;
}
.width-max-p-27 {
    max-width: 27%;
}
.width-max-p-28 {
    max-width: 28%;
}
.width-max-p-29 {
    max-width: 29%;
}
.width-max-p-30 {
    max-width: 30%;
}
.width-max-p-31 {
    max-width: 31%;
}
.width-max-p-32 {
    max-width: 32%;
}
.width-max-p-33 {
    max-width: 33%;
}
.width-max-p-34 {
    max-width: 34%;
}
.width-max-p-35 {
    max-width: 35%;
}
.width-max-p-36 {
    max-width: 36%;
}
.width-max-p-37 {
    max-width: 37%;
}
.width-max-p-38 {
    max-width: 38%;
}
.width-max-p-39 {
    max-width: 39%;
}
.width-max-p-40 {
    max-width: 40%;
}
.width-max-p-41 {
    max-width: 41%;
}
.width-max-p-42 {
    max-width: 42%;
}
.width-max-p-43 {
    max-width: 43%;
}
.width-max-p-44 {
    max-width: 44%;
}
.width-max-p-45 {
    max-width: 45%;
}
.width-max-p-46 {
    max-width: 46%;
}
.width-max-p-47 {
    max-width: 47%;
}
.width-max-p-48 {
    max-width: 48%;
}
.width-max-p-49 {
    max-width: 49%;
}
.width-max-p-50 {
    max-width: 50%;
}
.width-max-p-51 {
    max-width: 51%;
}
.width-max-p-52 {
    max-width: 52%;
}
.width-max-p-53 {
    max-width: 53%;
}
.width-max-p-54 {
    max-width: 54%;
}
.width-max-p-55 {
    max-width: 55%;
}
.width-max-p-56 {
    max-width: 56%;
}
.width-max-p-57 {
    max-width: 57%;
}
.width-max-p-58 {
    max-width: 58%;
}
.width-max-p-59 {
    max-width: 59%;
}
.width-max-p-60 {
    max-width: 60%;
}
.width-max-p-61 {
    max-width: 61%;
}
.width-max-p-62 {
    max-width: 62%;
}
.width-max-p-63 {
    max-width: 63%;
}
.width-max-p-64 {
    max-width: 64%;
}
.width-max-p-65 {
    max-width: 65%;
}
.width-max-p-66 {
    max-width: 66%;
}
.width-max-p-67 {
    max-width: 67%;
}
.width-max-p-68 {
    max-width: 68%;
}
.width-max-p-69 {
    max-width: 69%;
}
.width-max-p-70 {
    max-width: 70%;
}
.width-max-p-71 {
    max-width: 71%;
}
.width-max-p-72 {
    max-width: 72%;
}
.width-max-p-73 {
    max-width: 73%;
}
.width-max-p-74 {
    max-width: 74%;
}
.width-max-p-75 {
    max-width: 75%;
}
.width-max-p-76 {
    max-width: 76%;
}
.width-max-p-77 {
    max-width: 77%;
}
.width-max-p-78 {
    max-width: 78%;
}
.width-max-p-79 {
    max-width: 79%;
}
.width-max-p-80 {
    max-width: 80%;
}
.width-max-p-81 {
    max-width: 81%;
}
.width-max-p-82 {
    max-width: 82%;
}
.width-max-p-83 {
    max-width: 83%;
}
.width-max-p-84 {
    max-width: 84%;
}
.width-max-p-85 {
    max-width: 85%;
}
.width-max-p-86 {
    max-width: 86%;
}
.width-max-p-87 {
    max-width: 87%;
}
.width-max-p-88 {
    max-width: 88%;
}
.width-max-p-89 {
    max-width: 89%;
}
.width-max-p-90 {
    max-width: 90%;
}
.width-max-p-91 {
    max-width: 91%;
}
.width-max-p-92 {
    max-width: 92%;
}
.width-max-p-93 {
    max-width: 93%;
}
.width-max-p-94 {
    max-width: 94%;
}
.width-max-p-95 {
    max-width: 95%;
}
.width-max-p-96 {
    max-width: 96%;
}
.width-max-p-97 {
    max-width: 97%;
}
.width-max-p-98 {
    max-width: 98%;
}
.width-max-p-99 {
    max-width: 99%;
}
.width-max-p-100 {
    max-width: 100%;
}
.width-max-p-110 {
    max-width: 110%;
}
.width-max-p-120 {
    max-width: 120%;
}
.width-max-p-130 {
    max-width: 130%;
}
.width-max-p-140 {
    max-width: 140%;
}
.width-max-p-150 {
    max-width: 150%;
}
.width-max-p-160 {
    max-width: 160%;
}
.width-max-p-170 {
    max-width: 170%;
}
.width-max-p-180 {
    max-width: 180%;
}
.width-max-p-190 {
    max-width: 190%;
}
.width-max-p-200 {
    max-width: 200%;
}
.width-max-vw-1 {
    max-width: 1vw;
}
.width-max-vw-2 {
    max-width: 2vw;
}
.width-max-vw-3 {
    max-width: 3vw;
}
.width-max-vw-4 {
    max-width: 4vw;
}
.width-max-vw-5 {
    max-width: 5vw;
}
.width-max-vw-6 {
    max-width: 6vw;
}
.width-max-vw-7 {
    max-width: 7vw;
}
.width-max-vw-8 {
    max-width: 8vw;
}
.width-max-vw-9 {
    max-width: 9vw;
}
.width-max-vw-10 {
    max-width: 10vw;
}
.width-max-vw-11 {
    max-width: 11vw;
}
.width-max-vw-12 {
    max-width: 12vw;
}
.width-max-vw-13 {
    max-width: 13vw;
}
.width-max-vw-14 {
    max-width: 14vw;
}
.width-max-vw-15 {
    max-width: 15vw;
}
.width-max-vw-16 {
    max-width: 16vw;
}
.width-max-vw-17 {
    max-width: 17vw;
}
.width-max-vw-18 {
    max-width: 18vw;
}
.width-max-vw-19 {
    max-width: 19vw;
}
.width-max-vw-20 {
    max-width: 20vw;
}
.width-max-vw-21 {
    max-width: 21vw;
}
.width-max-vw-22 {
    max-width: 22vw;
}
.width-max-vw-23 {
    max-width: 23vw;
}
.width-max-vw-24 {
    max-width: 24vw;
}
.width-max-vw-25 {
    max-width: 25vw;
}
.width-max-vw-26 {
    max-width: 26vw;
}
.width-max-vw-27 {
    max-width: 27vw;
}
.width-max-vw-28 {
    max-width: 28vw;
}
.width-max-vw-29 {
    max-width: 29vw;
}
.width-max-vw-30 {
    max-width: 30vw;
}
.width-max-vw-31 {
    max-width: 31vw;
}
.width-max-vw-32 {
    max-width: 32vw;
}
.width-max-vw-33 {
    max-width: 33vw;
}
.width-max-vw-34 {
    max-width: 34vw;
}
.width-max-vw-35 {
    max-width: 35vw;
}
.width-max-vw-36 {
    max-width: 36vw;
}
.width-max-vw-37 {
    max-width: 37vw;
}
.width-max-vw-38 {
    max-width: 38vw;
}
.width-max-vw-39 {
    max-width: 39vw;
}
.width-max-vw-40 {
    max-width: 40vw;
}
.width-max-vw-41 {
    max-width: 41vw;
}
.width-max-vw-42 {
    max-width: 42vw;
}
.width-max-vw-43 {
    max-width: 43vw;
}
.width-max-vw-44 {
    max-width: 44vw;
}
.width-max-vw-45 {
    max-width: 45vw;
}
.width-max-vw-46 {
    max-width: 46vw;
}
.width-max-vw-47 {
    max-width: 47vw;
}
.width-max-vw-48 {
    max-width: 48vw;
}
.width-max-vw-49 {
    max-width: 49vw;
}
.width-max-vw-50 {
    max-width: 50vw;
}
.width-max-vw-51 {
    max-width: 51vw;
}
.width-max-vw-52 {
    max-width: 52vw;
}
.width-max-vw-53 {
    max-width: 53vw;
}
.width-max-vw-54 {
    max-width: 54vw;
}
.width-max-vw-55 {
    max-width: 55vw;
}
.width-max-vw-56 {
    max-width: 56vw;
}
.width-max-vw-57 {
    max-width: 57vw;
}
.width-max-vw-58 {
    max-width: 58vw;
}
.width-max-vw-59 {
    max-width: 59vw;
}
.width-max-vw-60 {
    max-width: 60vw;
}
.width-max-vw-61 {
    max-width: 61vw;
}
.width-max-vw-62 {
    max-width: 62vw;
}
.width-max-vw-63 {
    max-width: 63vw;
}
.width-max-vw-64 {
    max-width: 64vw;
}
.width-max-vw-65 {
    max-width: 65vw;
}
.width-max-vw-66 {
    max-width: 66vw;
}
.width-max-vw-67 {
    max-width: 67vw;
}
.width-max-vw-68 {
    max-width: 68vw;
}
.width-max-vw-69 {
    max-width: 69vw;
}
.width-max-vw-70 {
    max-width: 70vw;
}
.width-max-vw-71 {
    max-width: 71vw;
}
.width-max-vw-72 {
    max-width: 72vw;
}
.width-max-vw-73 {
    max-width: 73vw;
}
.width-max-vw-74 {
    max-width: 74vw;
}
.width-max-vw-75 {
    max-width: 75vw;
}
.width-max-vw-76 {
    max-width: 76vw;
}
.width-max-vw-77 {
    max-width: 77vw;
}
.width-max-vw-78 {
    max-width: 78vw;
}
.width-max-vw-79 {
    max-width: 79vw;
}
.width-max-vw-80 {
    max-width: 80vw;
}
.width-max-vw-81 {
    max-width: 81vw;
}
.width-max-vw-82 {
    max-width: 82vw;
}
.width-max-vw-83 {
    max-width: 83vw;
}
.width-max-vw-84 {
    max-width: 84vw;
}
.width-max-vw-85 {
    max-width: 85vw;
}
.width-max-vw-86 {
    max-width: 86vw;
}
.width-max-vw-87 {
    max-width: 87vw;
}
.width-max-vw-88 {
    max-width: 88vw;
}
.width-max-vw-89 {
    max-width: 89vw;
}
.width-max-vw-90 {
    max-width: 90vw;
}
.width-max-vw-91 {
    max-width: 91vw;
}
.width-max-vw-92 {
    max-width: 92vw;
}
.width-max-vw-93 {
    max-width: 93vw;
}
.width-max-vw-94 {
    max-width: 94vw;
}
.width-max-vw-95 {
    max-width: 95vw;
}
.width-max-vw-96 {
    max-width: 96vw;
}
.width-max-vw-97 {
    max-width: 97vw;
}
.width-max-vw-98 {
    max-width: 98vw;
}
.width-max-vw-99 {
    max-width: 99vw;
}
.width-max-vw-100 {
    max-width: 100vw;
}
.width-max-px-1 {
    max-width: 1px;
}
.width-max-px-2 {
    max-width: 2px;
}
.width-max-px-3 {
    max-width: 3px;
}
.width-max-px-4 {
    max-width: 4px;
}
.width-max-px-5 {
    max-width: 5px;
}
.width-max-px-6 {
    max-width: 6px;
}
.width-max-px-7 {
    max-width: 7px;
}
.width-max-px-8 {
    max-width: 8px;
}
.width-max-px-9 {
    max-width: 9px;
}
.width-max-px-10 {
    max-width: 10px;
}
.width-max-px-11 {
    max-width: 11px;
}
.width-max-px-12 {
    max-width: 12px;
}
.width-max-px-13 {
    max-width: 13px;
}
.width-max-px-14 {
    max-width: 14px;
}
.width-max-px-15 {
    max-width: 15px;
}
.width-max-px-16 {
    max-width: 16px;
}
.width-max-px-17 {
    max-width: 17px;
}
.width-max-px-18 {
    max-width: 18px;
}
.width-max-px-19 {
    max-width: 19px;
}
.width-max-px-20 {
    max-width: 20px;
}
.width-max-px-21 {
    max-width: 21px;
}
.width-max-px-22 {
    max-width: 22px;
}
.width-max-px-23 {
    max-width: 23px;
}
.width-max-px-24 {
    max-width: 24px;
}
.width-max-px-25 {
    max-width: 25px;
}
.width-max-px-26 {
    max-width: 26px;
}
.width-max-px-27 {
    max-width: 27px;
}
.width-max-px-28 {
    max-width: 28px;
}
.width-max-px-29 {
    max-width: 29px;
}
.width-max-px-30 {
    max-width: 30px;
}
.width-max-px-31 {
    max-width: 31px;
}
.width-max-px-32 {
    max-width: 32px;
}
.width-max-px-33 {
    max-width: 33px;
}
.width-max-px-34 {
    max-width: 34px;
}
.width-max-px-35 {
    max-width: 35px;
}
.width-max-px-36 {
    max-width: 36px;
}
.width-max-px-37 {
    max-width: 37px;
}
.width-max-px-38 {
    max-width: 38px;
}
.width-max-px-39 {
    max-width: 39px;
}
.width-max-px-40 {
    max-width: 40px;
}
.width-max-px-41 {
    max-width: 41px;
}
.width-max-px-42 {
    max-width: 42px;
}
.width-max-px-43 {
    max-width: 43px;
}
.width-max-px-44 {
    max-width: 44px;
}
.width-max-px-45 {
    max-width: 45px;
}
.width-max-px-46 {
    max-width: 46px;
}
.width-max-px-47 {
    max-width: 47px;
}
.width-max-px-48 {
    max-width: 48px;
}
.width-max-px-49 {
    max-width: 49px;
}
.width-max-px-50 {
    max-width: 50px;
}
.width-max-px-51 {
    max-width: 51px;
}
.width-max-px-52 {
    max-width: 52px;
}
.width-max-px-53 {
    max-width: 53px;
}
.width-max-px-54 {
    max-width: 54px;
}
.width-max-px-55 {
    max-width: 55px;
}
.width-max-px-56 {
    max-width: 56px;
}
.width-max-px-57 {
    max-width: 57px;
}
.width-max-px-58 {
    max-width: 58px;
}
.width-max-px-59 {
    max-width: 59px;
}
.width-max-px-60 {
    max-width: 60px;
}
.width-max-px-61 {
    max-width: 61px;
}
.width-max-px-62 {
    max-width: 62px;
}
.width-max-px-63 {
    max-width: 63px;
}
.width-max-px-64 {
    max-width: 64px;
}
.width-max-px-65 {
    max-width: 65px;
}
.width-max-px-66 {
    max-width: 66px;
}
.width-max-px-67 {
    max-width: 67px;
}
.width-max-px-68 {
    max-width: 68px;
}
.width-max-px-69 {
    max-width: 69px;
}
.width-max-px-70 {
    max-width: 70px;
}
.width-max-px-71 {
    max-width: 71px;
}
.width-max-px-72 {
    max-width: 72px;
}
.width-max-px-73 {
    max-width: 73px;
}
.width-max-px-74 {
    max-width: 74px;
}
.width-max-px-75 {
    max-width: 75px;
}
.width-max-px-76 {
    max-width: 76px;
}
.width-max-px-77 {
    max-width: 77px;
}
.width-max-px-78 {
    max-width: 78px;
}
.width-max-px-79 {
    max-width: 79px;
}
.width-max-px-80 {
    max-width: 80px;
}
.width-max-px-81 {
    max-width: 81px;
}
.width-max-px-82 {
    max-width: 82px;
}
.width-max-px-83 {
    max-width: 83px;
}
.width-max-px-84 {
    max-width: 84px;
}
.width-max-px-85 {
    max-width: 85px;
}
.width-max-px-86 {
    max-width: 86px;
}
.width-max-px-87 {
    max-width: 87px;
}
.width-max-px-88 {
    max-width: 88px;
}
.width-max-px-89 {
    max-width: 89px;
}
.width-max-px-90 {
    max-width: 90px;
}
.width-max-px-91 {
    max-width: 91px;
}
.width-max-px-92 {
    max-width: 92px;
}
.width-max-px-93 {
    max-width: 93px;
}
.width-max-px-94 {
    max-width: 94px;
}
.width-max-px-95 {
    max-width: 95px;
}
.width-max-px-96 {
    max-width: 96px;
}
.width-max-px-97 {
    max-width: 97px;
}
.width-max-px-98 {
    max-width: 98px;
}
.width-max-px-99 {
    max-width: 99px;
}
.width-max-px-100 {
    max-width: 100px;
}
.width-max-px-110 {
    max-width: 110px;
}
.width-max-px-120 {
    max-width: 120px;
}
.width-max-px-130 {
    max-width: 130px;
}
.width-max-px-140 {
    max-width: 140px;
}
.width-max-px-150 {
    max-width: 150px;
}
.width-max-px-160 {
    max-width: 160px;
}
.width-max-px-170 {
    max-width: 170px;
}
.width-max-px-180 {
    max-width: 180px;
}
.width-max-px-190 {
    max-width: 190px;
}
.width-max-px-200 {
    max-width: 200px;
}
.width-max-px-210 {
    max-width: 210px;
}
.width-max-px-220 {
    max-width: 220px;
}
.width-max-px-230 {
    max-width: 230px;
}
.width-max-px-240 {
    max-width: 240px;
}
.width-max-px-250 {
    max-width: 250px;
}
.width-max-px-260 {
    max-width: 260px;
}
.width-max-px-270 {
    max-width: 270px;
}
.width-max-px-280 {
    max-width: 280px;
}
.width-max-px-290 {
    max-width: 290px;
}
.width-max-px-300 {
    max-width: 300px;
}
.width-max-px-310 {
    max-width: 310px;
}
.width-max-px-320 {
    max-width: 320px;
}
.width-max-px-330 {
    max-width: 330px;
}
.width-max-px-340 {
    max-width: 340px;
}
.width-max-px-350 {
    max-width: 350px;
}
.width-max-px-360 {
    max-width: 360px;
}
.width-max-px-370 {
    max-width: 370px;
}
.width-max-px-380 {
    max-width: 380px;
}
.width-max-px-390 {
    max-width: 390px;
}
.width-max-px-400 {
    max-width: 400px;
}
.width-max-px-410 {
    max-width: 410px;
}
.width-max-px-420 {
    max-width: 420px;
}
.width-max-px-430 {
    max-width: 430px;
}
.width-max-px-440 {
    max-width: 440px;
}
.width-max-px-450 {
    max-width: 450px;
}
.width-max-px-460 {
    max-width: 460px;
}
.width-max-px-470 {
    max-width: 470px;
}
.width-max-px-480 {
    max-width: 480px;
}
.width-max-px-490 {
    max-width: 490px;
}
.width-max-px-500 {
    max-width: 500px;
}
.width-max-px-525 {
    max-width: 525px;
}
.width-max-px-550 {
    max-width: 550px;
}
.width-max-px-575 {
    max-width: 575px;
}
.width-max-px-600 {
    max-width: 600px;
}
.width-max-px-625 {
    max-width: 625px;
}
.width-max-px-650 {
    max-width: 650px;
}
.width-max-px-675 {
    max-width: 675px;
}
.width-max-px-700 {
    max-width: 700px;
}
.width-max-px-725 {
    max-width: 725px;
}
.width-max-px-750 {
    max-width: 750px;
}
.width-max-px-775 {
    max-width: 775px;
}
.width-max-px-800 {
    max-width: 800px;
}
.width-max-px-825 {
    max-width: 825px;
}
.width-max-px-850 {
    max-width: 850px;
}
.width-max-px-900 {
    max-width: 900px;
}
.width-max-px-925 {
    max-width: 925px;
}
.width-max-px-950 {
    max-width: 950px;
}
.width-max-px-975 {
    max-width: 975px;
}
.width-max-px-1000 {
    max-width: 1000px;
}


/*******************************************************************************************************
BAR
*******************************************************************************************************/
.bar-1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 20px;
}
.bar-2 {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 700px;
    padding: 0 10px;
    z-index: 3;
}
.bar-3 {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 700px;
    padding: 0 10px;
    z-index: 3;
}


/*******************************************************************************************************
MAIN
*******************************************************************************************************/
.main-1 {
    padding: 0 10px 20px 10px;
}
.main-2 {
    padding: 0 20px 20px 20px;
    margin: 10px 0 0 0;
}


/*******************************************************************************************************
FOOTER
*******************************************************************************************************/
.footer-1 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 20px;
}


/*******************************************************************************************************
LINK
*******************************************************************************************************/
.link-1 {
    position: absolute;
    /* top: 0; */
    bottom: -10%;
    left: 39%;
    /* right: 0; */
    opacity: .8;
}
.link-2 {
    position: absolute;
    /* top: 0; */
    bottom: -10%;
    left: 40%;
    /* right: 0; */
    opacity: .8;
}
.link-3 {
    position: absolute;
    top: -10px;
    bottom: 0;
    left: 41%;
    /* right: 0; */
    opacity: .8;
}
.link-4 {
    position: absolute;
    top: -10px;
    bottom: 0;
    left: 42%;
    /* right: 0; */
    opacity: .8;
}


/*******************************************************************************************************
CONTAINER
*******************************************************************************************************/
.container-1 {
    position: absolute;
    top: 30%;
    right: 0;
}


/*******************************************************************************************************
COLUMN
*******************************************************************************************************/
.column-1 {
    padding: 0 5px 0 0;
}
.column-2 {
    padding: 0 0 0 5px;
}

/*******************************************************************************************************
BOX
*******************************************************************************************************/


/*******************************************************************************************************
FIGURE
*******************************************************************************************************/


/*******************************************************************************************************
BTN
*******************************************************************************************************/


/*******************************************************************************************************
TAB
*******************************************************************************************************/



/*******************************************************************************************************
SLIDER
*******************************************************************************************************/
.slider-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 50px 0 50px 0;
    z-index: 5;
}
.slider {
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    -webkit-animation: modalanimation 0.6s;
    animation: modalanimation 0.6s;
}