:root {
    --accent-color: #ffd32f;
    --link-color: #fbc600;
    --link-color-inverted: #797979;
    --accent-color-rgb: 255, 211, 47;
    --logo-dimension: 100px;
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 100%;

    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

.price-list-body {

}

:focus {
    outline: 0 !important;
    box-shadow: unset !important;
}

a:link {
    text-decoration: none;
    color: var(--link-color);

    &.inverted {
        color: var(--link-color-inverted);
    }
}
a:visited {
    text-underline-offset: 2px;
    text-decoration: underline;
    text-decoration-style: dotted;

    color: var(--link-color);
    &.inverted {
        color: var(--link-color-inverted);
    }
}
a:hover {
    text-underline-offset: 2px;
    text-decoration: underline;
    text-decoration-style: dashed;

    color: var(--link-color);
    &.inverted {
        color: var(--link-color-inverted);
    }
}
a:active {
    text-underline-offset: 2px;
    text-decoration: underline;

    color: var(--link-color);
    &.inverted {
        color: var(--link-color-inverted);
    }
}

.no-decoration {
    text-decoration: none !important;
}

header {
    z-index: 100;
    position: sticky;
    top: -50px;

    display: flex;
    width: 100%;
    height: 100px;

    box-shadow: 0 2px 5px rgba(var(--accent-color-rgb), 0.5);
    background-color: var(--accent-color);

    .header-inner {
        position: sticky;
        top: 0; 

        display: flex;

        width: 100%;
        height: 50px;
    }
}

.on-top {
    z-index: 10;
}

.logo {
    width: var(--logo-dimension);
}

.anchored {
    position: absolute;
    width: 100%;
    height: var(--logo-dimension);
}

.title-big {
    font-size: 2em;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    user-select: none;

    margin: 0;

    transition: font-size 0.15s linear;
}

.title-medium {
    text-align: center;
    border-top: 2px solid rgba(var(--accent-color-rgb), 1);
    border-bottom: 2px solid rgba(var(--accent-color-rgb), 1);
}

.title-small {
    margin-bottom: 16px;
    border-bottom: 2px solid rgba(var(--accent-color-rgb), 1);
}

.title-margin {
    margin-left: 10px;
    margin-right: 10px;
}

@media only screen and (max-width: 600px) {
    .title-big {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 475px) {
    .title-big {
        font-size: 1em;
    }
}

#header-spacer {
    width: 100%;
    height: var(--logo-dimension);
}

.btn-container {
    padding-top: 16px;
}

.btn {
    padding: 8px;
    margin-top: 8px;
    margin-left: 4px;
    margin-right: 4px;

    border-radius: 4px;

    max-width: 250px;

    text-decoration: unset;
}

.btn-white {
    color: black;
    border: 1px solid rgba(255, 255, 255, 1);
    background-color: rgba(var(--accent-color-rgb), 1);
}

.btn-accent {
    color: black;
    border: 1px solid rgba(var(--accent-color-rgb), 1);
    background-color: rgba(var(--accent-color-rgb), 0.2);
}

.btn:hover {
    transition: background-color 0.25s linear, border 0.25s linear;
}

.btn:focus {
    outline: none !important;
}

.btn:active {
    outline: none !important;
}

.btn-white:hover {
    border: 1px solid rgba(var(--accent-color-rgb), 1);
    background-color: rgba(255, 255, 255, 0.5);
}

.btn-accent:hover {
    background-color: rgba(var(--accent-color-rgb), 1);
}

main {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;

    flex-grow: 1;
}

section {
    margin-top: 32px;
    margin-bottom: 32px;
    scroll-margin-top: var(--logo-dimension);
}

.first {
    margin-top: unset !important;
}

.last {
    margin-bottom: unset !important;
}

.section-alternating {
    background-color: rgba(var(--accent-color-rgb), 0.1);
}

article {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: unset !important;
    margin-left: unset !important;
    margin-right: unset !important;
    margin-bottom: unset !important;
}

.row-alternating {
    /*background-color: rgba(var(--accent-color-rgb), 0.2);*/
}

.avatar-size {
    width: 100%;
}

.content-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
    border-left: 2px solid rgba(var(--accent-color-rgb), 1);
}

@media (max-width: 768px) {
    .content-contact {
        border-left: unset;
    }

    .padded-top-32 {
        padding-top: 32px;
    }
}

.article-img {
    min-height: 200px;
    padding: 0;

    padding: 16px;
    padding-left: 8px;
    padding-right: 8px;
}

.article-img img {
    border-radius: 4px;
}

.article-content {
    flex-direction: column;
    justify-content: space-between;

    padding: 16px;
    padding-left: 8px;
    padding-right: 8px;

    text-align: justify;
}

#map {
    height: 400px;
    width: 100%;
}

.icon {
    padding-right: 16px;
}

footer {
    width: 100%;
    margin-top: 32px;
    padding-top: 16px;
    padding-bottom: 16px;

    text-align: center;

    box-shadow: 0 -2px 5px rgba(var(--accent-color-rgb), 0.5);
    background-color: var(--accent-color);
}

.centered {
    justify-content: center;
    text-align: center;
}

.list {
    padding-left: 22px;
    padding-right: 22px;
}

.list-title {
    padding-top: 12px;
    font-size: 20px;
}

.list-item {
    cursor: pointer;
    user-select: none;
}

.list-item:hover {
    box-shadow: 0px 0px 0px 2px rgba(var(--accent-color-rgb), 1);
    transition: box-shadow 0.25s ease-in-out;
}

.list-item:nth-child(even) {
    background-color: transparent;
}
.list-item:nth-child(odd) {
    background-color: rgba(var(--accent-color-rgb), 0.25);
}

.list-item div.col-2 {
    text-align: right;
}

.tos {
    flex-grow: 1;
    align-items: center;
    justify-content: center;

    .tos-text {

    }
}
