﻿/* Desktop */
@media screen and (min-width: 801px) {
    .Size1_Width100 {
        width: 100%;
    }
}
/* Mobile Horizontal*/
@media screen and (min-width: 601px) and (max-width: 800px) {
    .Size1_Width100 {
        width: 100%;
    }
}
/* Mobile */
@media screen and (max-width: 600px) {
    .Size1_Width100 {
        width: 100%;
    }
}

/* Desktop */
@media screen and (min-width: 801px) {
    .Size1_MinimunWidth {
        width: 1%;
    }
}
/* Mobile Horizontal*/
@media screen and (min-width: 601px) and (max-width: 800px) {
    .Size1_MinimunWidth {
        width: 1%;
    }
}
/* Mobile */
@media screen and (max-width: 600px) {
    .Size1_MinimunWidth {
        width: 1%;
    }
}

/* Desktop */
@media screen and (min-width: 801px) {
    .Size1_MidPage600 {
        width: 600px;
        /* min-width: fit-content; */
    }
}
/* Mobile Horizontal*/
        @media screen and (min-width: 601px) and (max-width: 800px) {
            .Size1_MidPage600 {
                width: 100%;
            }
        }
        /* Mobile */
        @media screen and (max-width: 600px) {
            .Size1_MidPage600 {
                width: 100%;
            }
        }
        /* Desktop */
        @media screen and (min-width: 801px) {
            .Size1_MidPage800 {
                width: 800px;
                padding: 15px;
            }
        }
        /* Mobile Horizontal*/
        @media screen and (min-width: 601px) and (max-width: 800px) {
            .Size1_MidPage800 {
                width: 100%;
            }
        }
        /* Mobile */
        @media screen and (max-width: 600px) {
            .Size1_MidPage800 {
                width: 100%;
            }
        }

        .Size1_Width10px {
    width: 10px;
}
.Size1_Width30px {
    width: 30px;
}
.Size1_Width60px {
    width: 60px;
}
.Size1_Width90px {
    width: 90px;
}
.Size1_Width120px {
    width: 120px;
}