:root
{
    --swiper-navigation-color: #FBCC33;
    --swiper-theme-color: #FBCC33;
}

:link, :visited
{
    color: inherit;
    text-decoration: inherit;
}

/*Normal button*/
.button
{
    font-weight: 500;
    margin: 0;
    padding: 10px 16px;
    background-color: #2D2D2D;
    border: 1px solid #333333;
    border-radius: 4px;
    transition: background-color ease 0.2s;
}

.button:hover
{
    background-color: #323232;
}

/*Flat button*/
.button-flat
{
    font-weight: 500;
    margin: 0;
    padding: 10px 16px;
    border-radius: 4px;
    border: none;
    color: white;
    background-color: transparent;
    transition: background-color ease 0.2s;
}

.button-flat:hover
{
    background-color: #323232;
}

/*Accent button*/
.button-accent
{
    font-weight: 500;
    margin: 0;
    padding: 10px 16px;
    color: #000000;
    background-color: #FBCC33;
    border-radius: 4px; 
    border: none;
    transition: background-color ease 0.2s;
}

.button-accent:hover
{
    background-color: #FBB947;
}

/*Progress bar*/
.progress-bar
{
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background-color: #121212;
    border: 1px solid #0a0a0a;
}

.progress-bar-fill
{
    width: 10%;
    height: 100%;
    border-radius: 5px;
    background-color: #FBCC33;
}

/*Link*/
.link:hover
{
    cursor: pointer;
    text-decoration: underline;
}