/* Reset */


:root{

    --red_btn_color: #A24242;
    --red_btn_hover_color: #aa5055;
    --red_btn_active_color: #8e3237;

    --green_bg_color: #418b45;
    --green_hover_color: #699b5f;
    --green_active_color: #577e51;

    --blue_bg_color: #004e9b;

    --dark_btn_color: #666666;
    --dark_btn_hover_color: #7d7d7d;
    --dark_btn_active_color: #4f4f4f;

    --light_btn_color: #d1d3d4;
    --light_btn_hover_color: #dddddd;
    --light_btn_active_color: #bcbec0;

    --blue_btn_color: #5dabf9;
    --blue_btn_hover_color: #88b4e0;
    --blue_btn_active_color: #7293b5;

    --btn_bgcolor_animation: background-color .3s ease-in-out;
    --card_shadow_animation: box-shadow .3s ease-in-out;

    --card_radius: 10px;
    --card_radius_half: 5px;
    --white_card_bgcolor: #FFFFFF;
    --light_card_bgcolor: #F1F1F1;
    --white_card_border: 1px solid #CFCFCF;
    --white_card_shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    --white_card_shadow_hover: rgba(0, 0, 0, 0.1) 0px 4px 12px;

    --black_transparent_bg: rgba(0, 0, 0, 0.85);
    --black_transparent: rgba(0, 0, 0, 0.5);
    --black_transparent_hover: rgba(0, 0, 0, 0.7);

    --white_shadow: 0 0 17px -5px #ffffff;

    --btn_radius: 5px;
    --avatar_radius: 50%;
}

*:where(:not(html, iframe, canvas, img, svg, video, lite-youtube,  audio, li, ul):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}


html, body {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #eeeeee;
    background-attachment: fixed;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div, span, article, aside, footer, header, hgroup, nav, section, h1, h2, h3, h4, h5, h6, p, blockquote, a, ol, ul, li, table, tr, th, td, tbody, tfoot, thead {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    line-height: normal;
    text-indent: 0;
    text-decoration: none;
    text-align: left;
    color: #666666;
    background: transparent;
}

h1{
    font-size: 22px;
    font-weight: bold;
}
h2{
    font-size: 16px;
    font-weight: bold;
}
h3{
    font-size: 13px;
    font-weight: bold;
}
h4, h5, h6, p{
    font-size: 12px;
    font-weight: normal;
}

b{
    font-weight: bold;
}
i{
    font-style: italic;
}
u{
    text-decoration: underline;
}

img	{
    margin:0;
    padding:0;
    border:0;
}


table, tr, th, td, tbody, tfoot, thead	{
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, select, textarea, form, fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

a, button {
    cursor: pointer;
}
ol, ul, li, menu, summary {
    list-style: none;
}
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}
table {
    border-collapse: collapse;
}
input[type='text']{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: var(--white_card_border);
    border-radius: var(--card_radius_half);
}
input[type='button']{
    position: relative;
    min-width: 80px;
    padding: 0 10px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
}

.noscroll {
    overflow: hidden !important;
}

/*for webkit*/
div ::-webkit-scrollbar {
    width: 8px;
}
div ::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 16px;
}
div ::-webkit-scrollbar-thumb {
    background-color: #DDDDDD;
    border-radius: 16px;
}
div ::-webkit-scrollbar-thumb:hover {
    background-color: #CCCCCC;
}
/*for firefox*/
.introanditemdescriptionholdermax {
    /*overflow-y: scroll;*/
    scrollbar-color: #DDDDDD #f1f1f1;
    scrollbar-width: thin;
}

@media only screen and (max-width: 720px) {
    div, span, article, aside, footer, header, hgroup, nav, section, h1, h2, h3, h4, h5, h6, p, blockquote, a, ol, ul, li, table, tr, th, td, tbody, tfoot, thead{
        font-size: 12px;
    }
    h1{
        font-size: 18px;
        font-weight: bold;
    }
    h2{
        font-size: 15px;
        font-weight: bold;
    }
    h3{
        font-size: 13px;
        font-weight: bold;
    }
    h4, h5, h6{
        font-size: 11px;
        font-weight: bold;
    }
    #containerholderwrapper{
        width: 100%!important;
    }
    #containerholder{
        margin-top: 0!important;
        padding-bottom: 100px;
    }
}





