﻿@import url(root.css);
@import url(img.css);
@import url(text.css);
@import url(button.css);
@import url(banner.css);
@import url(tile.css);
@import url(navbar.css);
@import url(sidebar.css);
@import url(event.css);
@import url(contentpage.css);
@import url(table.css);
@import url(carousel.css);
@import url(footer.css);
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
    transition: 0.3s all;
}

a {
    color: var(--text-main-color);
    text-decoration: unset;
}

hr {
    border-color: #ddd;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    color: var(--text-black);
    background: var(--background-color);
    font-size: 16px;
    letter-spacing: -0.5px;
    line-height: 1.4em;
}

ul {
    padding: 0.6em 0;
    list-style-type: none;
    color: black;
}

.info-container {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.info-container__btn {
    margin: 16px auto;
    align-self: center;
}

.info .info__text {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8em;
    background: none;
    border: none;
    width: 70%;
    margin: auto;
    white-space: pre-line;
    word-break: keep-all;
    border: 1px solid var(--secondary-color-400);
}

.cookie-popup {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 24px;
    background: var(--white);
    color: var(--text-black);
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
    border-top: 8px solid var(--secondary-color-400)
}

.cookie-info {
    width: 75%;
}

.cookie-info__title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--text-main-color);
}

.cookie-info__text {
    font-size: 1em;
}

.cookie-info__button {
    font-size: 1.2em;
    color: var(--text-white);
    padding: 24px 48px;
    border-radius: .3em;
    background: var(--main-color-400);
}

.cookie-info__button:hover {
    background: var(--main-color-200);
}

.break {
    display: block;
}

.divider {
    height: 1px;
    width: 90%;
    margin: 8px auto;
    background: var(--white);
}

.divider--sidebar {
    height: 1px;
    width: 90%;
    margin: 2px auto;
    background: rgba(0,0,0,0.12);
}

.full-bg {
    width: 100vw;
    background: var(--secondary-color-400);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.full-bg--white {
    background: var(--white);
}

.page-content {
    flex: 1;
}


.fade-in {
    animation: fadeIn ease 0.50s;
    -webkit-animation: fadeIn ease 0.50s;
    -moz-animation: fadeIn ease 0.50s;
    -o-animation: fadeIn ease 0.50s;
    -ms-animation: fadeIn ease 0.50s;
}

.fotowydarzen {
    width: 98%;
    margin: 32px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.foto {
    max-width: 95%;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 1200px) {
    .container, .pdo-container {
        margin-top: 100px;
    }
}

@media screen and (max-width: 767px) {
    

    .pdo-container, .container {
        margin-top: 85px;
    }

    .menu-table1 ul li a {
        width: 95vw;
    }

    .foto {
        max-width: 350px;
    }
}

@media screen and (max-width: 600px) {

    .menu-table1 .header-table {
        font-size: 1em;
    }

}

