
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

*{box-sizing:border-box;}


:root {
    --scroll-bar-color: #c5c5c5;
    --scroll-bar-bg-color: #f6f6f6;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--scroll-bar-bg-color);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--scroll-bar-color);
    border-radius: 20px;
    border: 3px solid var(--scroll-bar-bg-color);
}


.flex{
display: flex;
}

.relative{
position: relative;
}

.absolute{
    position: absolute;
}

.fixed{
    position: fixed;
}


.inner{
width: 100%;
height: 100%;
}


.jc_start{
    justify-content: flex-start;
    align-items: center;
}

.text_l{
    text-align: left;
}

.jc_space_btwn{
    justify-content: space-between;
    align-items: center;
}

.jc_space_around{
    justify-content: space-around;
    align-items: center;
}

.jc_space_evenly{
    justify-content: space-evenly;
    align-items: center;
}

.jc_end{
    justify-content: flex-end;
    align-items: center;
}

.jc_center{
    justify-content: center;
    align-items: center;
}

.w_100{
    width: 100%;
}

.h_100{
    height: 100%;
}

.oflow_y_scroll{
    overflow-y: scroll;
}

.oflow_hide{
    overflow: hidden;
}

.oflow_visible{
    overflow: visible;
}

.font_6{
    font-size: 6px;
}

.font_8{
    font-size: 8px;
}

.font_10{
    font-size: 10px;
}

.font_12{
    font-size: 12px;
}

.font_14{
    font-size: 14px;
}

.font_18{
    font-size: 18px;
}

.font_20{
    font-size: 20px;
}

.font_22{
    font-size: 22px;
}

.font_24{
    font-size: 24px;
}

.font_30{
    font-size: 30px;
}

.font_36{
    font-size: 36px;
}

.font_400{
    font-weight: 400;
}

.weight_4{
    font-weight: 400;
}

.weight_5{
    font-weight: 500;
}

.font_600{
    font-weight: 600;
}

.weight_6{
    font-weight: 600;
}

.font_700{
    font-weight: 700;
}


.weight_7{
    font-weight: 700;
}

.font_800{
    font-weight: 800;
}

.object_fit_cover{
    object-fit: cover;
}

.cursor_point{
    cursor: pointer;
}

.c_point{
    cursor: pointer;
}

.column{
    flex-direction: column;
}

.row{
    flex-direction: row;
}

.wrap{
    flex-wrap: wrap;
}

.text_underline{
    text-decoration: underline;
}

.h_auto{
    height: auto;
}

.w_auto{
    width: auto;
}


@media screen and
(max-width: 640px){

.none{
    display: none;
}

}

@media screen and
(min-width: 641px) and (max-width: 1007px){

.none_medium{
    display: none;
}

}



@media screen and
(min-width: 1008px) and (max-width: 12000px){

    .none_large{
        display: none;
    }

}


.none_recycled{
    display: none;
}

.none_medium_recycled{
    display: none;
}

.none_large_recycled{
    display: none;
}

.nowrap{
    white-space: nowrap;
}

.oflow_hide_nowrap{
    white-space: nowrap;
    overflow: hidden;
}

.text_w_w{
    text-wrap: wrap;
}

.border_rad_50{
border-radius: 50%;
} 

.b_rad_50{
border-radius: 50%;  
}

.onepx_black{
    border: 1px solid black;
}

.bb_onepx_black{
    border-bottom: 1px solid black;
}

.bt_onepx_black{
    border-top: 1px solid black;
}

.br_onepx_black{
    border-right: 1px solid black;
}

.C0FFFF{
    background-color: #C0FFFF;
}

.yellow{
    background-color: yellow;
}

.float_R{
 float: right
}

.float_L{
float: left
}

.maxW_100{
max-width: 100% 
}

.w_100_less_auto{
width: calc(100% - auto);
}






