*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}


*:focus
{
    outline: none;
}



body
{
    overflow-x: hidden;
}


.wo_col
{
    width: auto;
    height: auto;
}

.wo_col > .inner_wo
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.wo_col > .inner_wo > .wo_section
{
    width: 100%;
    height: 100%;
}

.wo_col > .inner_wo > .wo_section.mini-width
{
    width: auto;
}

.wo_col > .inner_wo > .wo_section > .inner_wo
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


/* MARGINS */

.mr-2
{
    margin-right: 20px;
}


h2
{
    font-size: 1.5em;
}

h1
{
    font-size: 2em;
}



::-webkit-scrollbar
{
    background: #ffffff;
    width: 12px;
}

::-webkit-scrollbar-thumb
{
    background-color: #aaaaaa;
    border-radius: 8px;
    border: 3px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover
{
    background-color: #0057D0;
}




.wo_round_link
{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ffffff4d;
    color: #ffffff;
    font-weight: 600;
    width: max-content;
    padding: 0 25px;
    height: 40px;
    border-radius: 20px;
    text-decoration: none;
}


.wo_round_link:hover
{
    background-color: #ffffff;
    color: #0057D0;
}

.wo_link_extra
{
    opacity: 0.7 !important;
}

.wo_link_extra:hover
{
    color: #ffffff !important;
    opacity: 1 !important;
}