html {
    font-size: 18px;
}

body {
    color: #000000;
    font-family: "Calibri", Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    font-size: 18px;
    line-height: 21px;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    padding-left: 30px;
    padding-right: 30px;
}

a {
    background-color: transparent;
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #000000;
    text-decoration: underline;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.h1, h1 {
    font-size: 34px;
}

.h2, h2 {
    font-size: 26px;
}

.h3, h3 {
    font-size: 24px;
}

.h4, h4 {
    font-size: 18px;
}

.h5, h5 {
}

.h6, h6 {
}

.border-top {
    border-top: 1px solid #1c3d50 !important;
}

.section-header {
    font-size: 34px;
    text-transform: uppercase;
}

.text-case-none {
    text-transform: none !important;
}

.text-primary {
    color: #3d7d83 !important;
}

.text-secondary {
    color: #1d3c4f;
}

.text-danger {
    color: #901815 !important;
}

.bg-info {
    background-color: #3d7d83 !important;
}

.bg-danger {
    background-color: #901815 !important;
}

/* Card */
.card {
    border-color: #3d7d83;
    border-radius: 0;
    cursor: pointer;
    transition-duration: 0.35s;
    transition-property: background-color, border-bottom-color, border-left-color, border-right-color, border-top-color, color;
    transition-timing-function: ease;
}

.card.selected {
    background-color: #1d3c4f;
    border-color: #1d3c4f;
    color: #ffffff;
}

/* Modal */
.modal-content {
    border: 5px solid #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
    .modal-dialog-centered {
        min-height: calc(85% - 3.5rem);
    }
}

.modal-body {
    color: #ffffff;
    padding: 2rem 1rem 1rem;
}

.modal-footer {
    padding: 0 1rem 1.6rem 1rem;
}

.modal-backdrop {
    display: none;
}

/* Forms */
.form-group label > .required,
.form-check .form-check-label > .required {
    color: #901815;
    display: inline-block;
    margin-left: 1px;
    transform: scale(1.2);
}

.form-control {
    border-color: #3d7c83;
    border-radius: 0;
    height: 46px;
}

.form-control:focus {
    border-color: #3d7c83;
    box-shadow: none;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%233d7c83' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    border-color: #3d7c83;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #3d7c83;
    box-shadow: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23901815' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23901815' stroke='none'/%3e%3c/svg%3e");
    border-color: #901815;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #901815;
    box-shadow: none;
}

select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='100%25' height='100%25' viewBox='0 0 14 8' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cpath d='M6.75,7.5l-6.75,-7.5l13.5,0l-6.75,7.5Z' style='fill:%233d7d83;'/%3E%3C/svg%3E");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 20px auto;
    padding-right: 3rem !important;
}

.invalid-feedback {
    color: #901815;
}

.form-group-radio .invalid-feedback {
    flex: 0 0 100%;
    margin: 0 !important;
    order: 1;
}

.form-check {
    margin-bottom: 1.3rem;
    padding-left: 2rem;
}

.form-group-radio .form-check {
    flex: 0 0 50%;
}

.form-check > input {
    opacity: 0;
    visibility: hidden;
}

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
    color: initial;
}

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
    color: initial;
}

.form-check > input + label::before {
    border: 1px solid #3d7d83;
    content: "";
    display: flex;
    height: 21px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 21px;
}

.form-check > input:checked + label::after {
    content: "x";
    left: 7px;
    position: absolute;
    top: 0;
}

.form-check + .invalid-feedback {
    margin-bottom: 1rem;
    margin-left: 2rem;
    margin-top: -1rem;
}

/* Table */
.table td, .table th {
    border-top-width: 0;
}

.table tbody tr td {
    border-bottom: 1px solid #1c3d50;
}

@media (min-width: 992px) {
    /*.table tbody tr:nth-child(n+2) {*/
    /*    margin-top: 1rem;*/
    /*}*/
    .table thead th {
        vertical-align: bottom;
        border-bottom: 1px solid #1c3d50;
    }

    .table thead th:first-child {
        width: 50%;
    }
}

/* Our responsive table */
@media (max-width: 991px) {
    .our-responsive-table thead {
        display: none;
    }

    .our-responsive-table tbody tr {
        display: flex;
        flex-direction: column;
    }

    .our-responsive-table tbody tr:nth-child(n + 2) {
        margin-top: 1rem;
    }

    .our-responsive-table tbody tr td {
        align-items: center;
        border-left: 1px solid black;
        border-right: 1px solid black;
        display: flex;
    }

    .our-responsive-table tbody tr td:first-child {
        border-top: 1px solid black;
    }

    .our-responsive-table tbody tr td:last-child {
        border-bottom: 1px solid black;
    }

    .our-responsive-table tbody tr td::before {
        align-self: stretch;
        content: attr(data-header-title);
        flex: 0 0 30%;
        font-weight: 600;
        margin: -0.75rem 1rem -0.75rem -0.75rem;
        min-width: 100px;
        padding: 0.75rem;
        text-align: left;
        white-space: normal;
        background-color: #ededed;
    }

    .our-responsive-table tbody tr td {
        border-bottom: 1px solid lightgray;
    }

    .our-responsive-table td.inactive {
        display: none;
    }
}

/* End Our responsive table */

/* Our responsive table */
/*.our-responsive-table thead {*/
/*    display: none;*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .our-responsive-table thead {*/
/*        display: table-header-group;*/
/*    }*/
/*}*/

/*.our-responsive-table thead th {*/
/*    border-bottom: 1px solid #1c3d50;*/
/*    padding-bottom: 0.3rem;*/
/*    padding-left: 0;*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .our-responsive-table thead th:first-child {*/
/*        width: 50%;*/
/*    }*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .our-responsive-table.adresy-dostaw-table thead th:first-child {*/
/*        width: auto;*/
/*    }*/
/*}*/

/*.our-responsive-table tbody tr {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .our-responsive-table tbody tr {*/
/*        display: table-row;*/
/*    }*/
/*}*/

/*.our-responsive-table tbody tr:nth-child(n+2) {*/
/*    margin-top: 1rem;*/
/*}*/

/*.our-responsive-table tbody tr td {*/
/*    align-items: center;*/
/*    border-bottom: 1px solid #1c3d50;*/
/*    display: flex;*/
/*    !*padding-left: 0;*!*/
/*    !*word-break: break-all;*!*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .our-responsive-table tbody tr td {*/
/*        display: table-cell;*/
/*    }*/
/*}*/

/*.our-responsive-table tbody tr:last-child td {*/
/*}*/

/*.our-responsive-table tbody tr td::before {*/
/*    align-self: stretch;*/
/*    content: attr(data-header-title);*/
/*    flex: 0 0 30%;*/
/*    font-weight: 600;*/
/*    margin: -0.75rem 1rem -0.75rem -0.75rem;*/
/*    min-width: 100px;*/
/*    padding: 0.75rem;*/
/*    text-align: left;*/
/*    white-space: normal;*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .our-responsive-table tbody tr td::before {*/
/*        display: none;*/
/*    }*/
/*}*/

/*.our-responsive-table tbody tr td select {*/
/*    width: calc(70% - 1rem);*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .our-responsive-table tbody tr td select {*/
/*        width: auto;*/
/*    }*/
/*}*/

/* End Our responsive table */
/* Lead */
.lead {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
}

/* Buttons */
.btn {
    align-items: center;
    border-radius: 0;
    display: inline-flex;
    font-size: 18px;
    height: auto;
    padding: 3px 1.2rem;
    position: relative;
    text-transform: uppercase;
}

.btn-lg {
    color: #ffffff;
    height: auto;
    line-height: 1.5;
    padding: 4px 1.2rem;
}

.btn-xl {
    color: #ffffff;
    height: 54px;
    line-height: 1.5;
    padding: 0 1.2rem;
}

.btn-primary {
    background-color: #3d7d83;
    border-color: #3d7d83;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3d7d83;
    border-color: #3d7d83;
    color: #ffffff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: #3d7d83;
    border-color: #3d7d83;
    color: #ffffff;
}

.btn-primary.focus, .btn-primary:focus {
    background-color: #3d7d83;
    border-color: #3d7d83;
    box-shadow: none;
    color: #ffffff;
}

.btn-light {
    background-color: #ffffff;
    color: initial;
}

.btn-light:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: initial;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    background-color: #ffffff;
    border-color: #ffffff;
    color: initial;
}

.btn-light.focus, .btn-light:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: none;
    color: initial;
}

.btn-next {
    padding-right: 2.2rem;
}

.btn-next::after {
    border-bottom: 6px solid transparent;
    border-left: 6px solid #ffffff;
    border-right: 0 solid transparent;
    border-top: 6px solid transparent;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}

.btn-prev {
    padding-left: 2.2rem;
}

.btn-prev::after {
    border-bottom: 6px solid transparent;
    border-left: 0 solid transparent;
    border-right: 6px solid #ffffff;
    border-top: 6px solid transparent;
    content: "";
    display: block;
    height: 0;
    left: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}

/* Header */
.header {
    padding: 10px 0;
}

/* Footer */
.footer__copyright {
    font-size: 12px;
    line-height: 14px;
    margin-top: 40px;
}

/* Navbar */
.navbar {
    padding: 0;
}

.navbar-top {
    align-items: flex-start;
    height: 57px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .navbar-top {
        align-items: unset;
        height: auto;
        justify-content: flex-end;
        margin-bottom: 15px;
    }
}

.navbar-top .navbar-nav {
    align-items: center;
    flex-direction: row;
    margin: 0 -16px;
}

@media (min-width: 992px) {
    .navbar-top .navbar-nav {
        margin-left: 0;
        margin-right: 0;
    }
}

.navbar-top .navbar-nav .nav-item {
    padding: 0 10px;
    position: relative;
}

.navbar-top .navbar-nav .nav-item::after {
    background-color: #d5d5d5;
    content: "";
    height: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

.navbar-top .navbar-nav .nav-item:last-child::after {
    display: none;
}

.navbar-top .navbar-nav .nav-item:first-child {
    bottom: -10px;
    position: absolute;
}

@media (min-width: 992px) {
    .navbar-top .navbar-nav .nav-item:first-child {
        bottom: auto;
        position: relative;
    }
}

.navbar-top .navbar-nav .nav-item:first-child::after {
    display: none;
}

@media (min-width: 992px) {
    .navbar-top .navbar-nav .nav-item:first-child::after {
        display: block;
    }
}

.navbar-top .navbar-nav .nav-item .nav-link {
    color: #000000;
    padding: 5px 8px;
}

.navbar-top .navbar-nav .nav-item .nav-link .fa-shopping-basket {
    font-size: 1.667rem;
}

.navbar-top .navbar-nav .nav-item .nav-link .fa-facebook-f {
    font-size: 0.722rem;
}

.navbar-top .navbar-nav .nav-item .nav-link .fa-youtube {
    font-size: 0.722rem;
    transform: scale(1.2);
}

.navbar-top .navbar-nav .nav-item .nav-link .fa-instagram {
    font-size: 0.722rem;
}

.navbar-light .navbar-toggler {
    align-items: center;
    background-color: #212529;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 57px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 0;
    top: -97px;
    transition-duration: 0.35s;
    transition-property: background-color;
    transition-timing-function: ease;
    width: 65px;
}

@media (min-width: 576px) {
    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
}

.navbar-light .navbar-toggler[aria-expanded="true"] {
    background-color: #3d7d83;
}

.navbar-light .navbar-toggler > span {
    background-color: #ffffff;
    border-radius: 2px;
    display: block;
    height: 4px;
    position: absolute;
    transition-duration: 0.35s;
    transition-property: transform;
    transition-timing-function: ease;
    width: 25px;
}

.navbar-light .navbar-toggler > span:first-child {
    transform: translateY(9px);
}

.navbar-light .navbar-toggler[aria-expanded="true"] > span:first-child {
    transform: translateY(0) rotate(45deg);
}

.navbar-light .navbar-toggler[aria-expanded="true"] > span:nth-child(2) {
    display: none;
}

.navbar-light .navbar-toggler > span:last-child {
    transform: translateY(-9px);
}

.navbar-light .navbar-toggler[aria-expanded="true"] > span:last-child {
    transform: translateY(0) rotate(-45deg);
}

.navbar-collapse .navbar-nav {
    background-color: #3d7d83;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .navbar-collapse .navbar-nav {
        background-color: transparent;
        margin-left: auto;
        margin-top: 0;
    }
}

.navbar-collapse .navbar-nav .nav-item {
    border-bottom: 1px solid #ffffff;
}

.navbar-collapse .navbar-nav .nav-item:last-child {
    border-bottom-width: 0;
}

.navbar-collapse .navbar-nav .nav-link,
.navbar-collapse .navbar-nav .active .nav-link {
    color: #ffffff !important;
    padding: 0.5rem 0.4rem;
}

@media (min-width: 992px) {
    .navbar-collapse .navbar-nav .nav-link,
    .navbar-collapse .navbar-nav .active .nav-link {
        color: #333333 !important;
    }
}

.navbar-collapse .navbar-nav .nav-link:hover,
.navbar-collapse .navbar-nav .active .nav-link:hover {
    color: #ffffff;
}

.navbar-collapse .dropdown-menu {
    background-color: transparent;
    border-radius: 0;
    border-width: 0;
    margin: 0;
    padding-top: 0;
}

@media (min-width: 992px) {
    .navbar-collapse .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.9);
        padding-left: 1rem;
        padding-right: 1rem;
        border: 1px solid lightgrey;
    }
}

.navbar-collapse .dropdown-menu .dropdown-item {
    color: #ffffff;
    padding: 0.25rem 2rem;
}

@media (min-width: 992px) {
    .navbar-collapse .dropdown-menu .dropdown-item {

        color: #333333;
        padding: 0.5rem 0;
    }

    .navbar-collapse .dropdown-menu .dropdown-item + .dropdown-item {
        border-top: 1px solid #d5d5d5;
    }
}

.navbar-collapse .dropdown-menu .dropdown-item:focus,
.navbar-collapse .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: #ffffff;
}

@media (min-width: 992px) {
    .navbar-collapse .dropdown-menu .dropdown-item:focus,
    .navbar-collapse .dropdown-menu .dropdown-item:hover {
        color: #333333;
    }
}

.dropdown-toggle::after {
    border-left: 0.4em solid transparent;
    border-right: 0.4em solid transparent;
    border-top: 0.4em solid;
    margin-left: 0.5em;
    vertical-align: middle;
}

.navbar-nav .nav-item-home a {
    background-image: url("../../images/layout/icons/home-mobile.png");
    background-position: left 1rem center;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item-home a {
        background-image: url("../../images/layout/icons/home-desktop.png");
    }
}

/* Shop cart timer */
.shop-cart-timer {
    background-color: #3d7d83;
    border-radius: 2px;
    bottom: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    left: 50%;
    opacity: 0;
    position: fixed !important;
    transform: translateX(-50%);
    transition-duration: 0.35s;
    transition-property: bottom, opacity, visibility;
    transition-timing-function: ease;
    visibility: hidden;
    z-index: 1;
}

@media (min-width: 992px) {
    .shop-cart-timer {
        background-color: unset;
        border-radius: unset;
        bottom: unset;
        box-shadow: unset;
        display: none;
        left: unset;
        position: relative !important;
        transform: unset;
        transition: unset;
    }
}

.shop-cart-timer--active {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .shop-cart-timer--active {
        bottom: unset;
        display: block;
    }
}

.shop-cart-timer::after {
    display: none;
}

@media (min-width: 992px) {
    .shop-cart-timer::after {
        display: block;
    }
}

.shop-cart-timer .nav-link {
    color: #ffffff !important;
}

@media (min-width: 992px) {
    .shop-cart-timer .nav-link {
        color: unset !important;
    }
}

/* Shop cart language */
.shop-cart-language a {
    font-size: 0.889rem;
}

/* Header banner */
.header__banner {
    margin-bottom: 2rem;
    margin-top: 1.111rem;
}

/*.header__banner img {*/
/*    height: 188px;*/
/*    margin: 0 -30px;*/
/*    object-fit: cover;*/
/*    width: 100vw;*/
/*}*/

/*@media (min-width: 576px) {*/
/*    .header__banner img {*/
/*        margin: 0;*/
/*        width: 100%*/
/*    }*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .header__banner img {*/
/*        height: 294px;*/
/*    }*/
/*}*/

/* Sightseeing type */
.sightseeing-type {
    margin-top: 1.6rem;
}

.sightseeing-type article {
    position: relative;
}

@media (min-width: 992px) {
    .sightseeing-type article {
        border-bottom: 1px solid #1d3c4f;
        display: flex;
        justify-content: space-between;
        margin-top: 3rem;
    }
}

.sightseeing-type article:nth-child(n+2) {
    margin-top: 2.2rem;
}

.sightseeing-type article > a {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

@media (min-width: 992px) {
    .sightseeing-type article:nth-child(n+2) {
        margin-top: 0.6rem;
    }
}

.sightseeing-type header {
    display: flex;
    flex-direction: column-reverse;
}

@media (min-width: 992px) {
    .sightseeing-type header {
        align-items: center;
        flex: 0 0 calc(100% / 12 * 7);
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
}

.sightseeing-type header picture {
    align-items: center;
    background-color: #1d3c4f;
    display: flex;
    height: 92px;
    justify-content: center;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .sightseeing-type header picture {
        flex: 0 0 auto;
        height: 137px;
        margin-bottom: 0;
        width: 220px;
        position: relative;
        bottom: -1px;
    }
}

.sightseeing-type header h1 {
}

@media (min-width: 992px) {
    .sightseeing-type header h1 {
        margin-bottom: 0;
        margin-left: 30px;
    }
}

@media (min-width: 992px) {
    .sightseeing-type .body {
        align-items: flex-start;
        display: flex;
        flex: 0 0 calc(100% / 12 * 4);
        flex-direction: column;
        justify-content: flex-end;
        padding: 10px 15px;
    }
}

.sightseeing-type .btn {
    margin-right: -15px;
}

/* CMS */
[data-page-name="rezerwacja_index_index"] .cms,
[data-page-name="rezerwacja_rezerwacja_grupa-wydarzen"] .cms {
    font-size: 1.333rem;
    font-weight: bold;
}

[data-page-name="rezerwacja_index_index"] .cms a,
[data-page-name="rezerwacja_rezerwacja_grupa-wydarzen"] .cms a {
    text-decoration: underline;
}

/* Donor */
.donor h2 {
}

.donor__amount-items {
    display: flex;
    flex-wrap: wrap;
    list-style: none outside none;
    margin: 2rem -10px 0;
    padding: 0;
}

.donor__amount-item {
    flex: 0 0 calc(100% / 2);
    margin-bottom: 15px;
    padding: 0 10px;
}

@media (min-width: 992px) {
    .donor__amount-item {
        flex: 0 0 calc(100% / 3);
    }
}

.donor__amount-value {
    align-items: center;
    background-color: #3d7c83;
    color: #ffffff;
    cursor: default;
    display: flex;
    font-size: 20px;
    height: 79px;
    justify-content: center;
    transition-duration: 0.35s;
    transition-property: background-color;
    transition-timing-function: ease;
}

.donor__amount-value:hover {
    cursor: pointer;
}

.donor__amount-value--selected {
    background-color: #1d3c4f;
}

/* Group of events */
.group-of-events,
.group-of-terms {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

.group-of-events li,
.group-of-terms li {
    border-top: 1px solid #1b3d4f;
    padding: 0.7rem 0 0.4rem;
}

.group-of-events li:last-child,
.group-of-terms li:last-child {
    border-bottom: 1px solid #1b3d4f;
}

.group-of-events h3,
.group-of-terms h3 {
    text-transform: none;
}

/* Calendar */
.calendar__month-selector {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

@media (min-width: 992px) {
    [data-page-name="rezerwacja_rezerwacja_termin"] .calendar__month-selector {
        margin-bottom: 0.5rem;
    }
}

.calendar__month-selector .prev-month,
.calendar__month-selector .next-month {
    font-size: 24px;
}

@media (min-width: 992px) {
    [data-page-name="rezerwacja_rezerwacja_termin"] .calendar__month-selector .prev-month,
    [data-page-name="rezerwacja_rezerwacja_termin"] .calendar__month-selector .next-month {
        font-size: 18px;
    }
}

.calendar__month-selector .month {
    color: #1d3b4f;
    font-size: 24px;
    font-weight: bold;
}

@media (min-width: 992px) {
    [data-page-name="rezerwacja_rezerwacja_termin"] .calendar__month-selector .month {
        font-size: 18px;
    }
}

/*.calendar__table thead tr th {*/
/*    color: #1d3b4f;*/
/*    padding-bottom: 0.2rem;*/
/*    text-align: center;*/
/*    width: calc(100% / 7);*/
/*}*/

/*@media (min-width: 992px) {*/
/*    [data-page-name="rezerwacja_rezerwacja_termin"] .calendar__table thead tr th {*/
/*        font-size: 14px;*/
/*    }*/
/*}*/

/*.calendar__table .calendar-day-selector {*/
/*    align-items: center;*/
/*    color: #1d3b4f;*/
/*    display: flex;*/
/*    font-size: 22px;*/
/*    height: 42px;*/
/*    justify-content: center;*/
/*}*/

/*.calendar__table .calendar-day-selector:hover {*/
/*    text-decoration: none;*/
/*}*/

/*@media (min-width: 992px) {*/
/*    [data-page-name="rezerwacja_rezerwacja_termin"] .calendar__table .calendar-day-selector {*/
/*        font-size: 16px;*/
/*        height: 32px;*/
/*    }*/
/*}*/

/*.calendar__table .calendar-day-selector.kalendarz-dostepny-dzien {*/
/*    background-color: #c5cdd3;*/
/*    transition-duration: 0.35s;*/
/*    transition-property: background-color, color;*/
/*    transition-timing-function: ease;*/
/*}*/

/*.calendar__table .calendar-day-selector.kalendarz-dostepny-dzien:hover,*/
/*.calendar__table .calendar-day-selector.kalendarz-dostepny-dzien.selected {*/
/*    background-color: #1d3c50;*/
/*    border-radius: 4px;*/
/*    color: #c5cdd3;*/
/*}*/

/*.calendar__table .calendar-day-selector.kalendarz-niedostepny-dzien {*/
/*    pointer-events: none;*/
/*}*/

/*.calendar__table .calendar-day-selector.kalendarz-dzisiaj {*/
/*    background-color: #1d3c50;*/
/*    border-radius: 5px;*/
/*    color: #c5cdd3;*/
/*}*/

/*.calendar__table .table-cell-with-terms {*/
/*    background-color: #c5cdd3;*/
/*}*/

.calendar__legend {
    list-style: none outside none;
    margin: 1.5rem 0 0;;
    padding: 0;
}

.calendar__legend li {
    align-items: center;
    display: flex;
    margin-bottom: 0.8rem;
}

.calendar__legend li::before {
    content: "";
    height: 30px;
    margin-right: 1.5rem;
    width: 30px;
}

.calendar__legend li:nth-child(1):before {
    background-color: #c5cdd3;
}

.calendar__legend li:nth-child(2):before {
    background-color: #1d3b4f;
}

.calendar__legend li:nth-child(3):before {
    background-color: #ffffff;
    border: 1px solid #1d3b4f;
}

.js-rozwin-terminy {
    width: 100%;
}

.termin-do-wyboru {
    border: 1px solid #1d3b4f;
    display: block;
    line-height: 1.5;
    text-align: left;
}

a.termin-do-wyboru.selected,
a.termin-do-wyboru:hover {
    background-color: #3d7d83;
    color: white;
    border: 1px solid #3d7d83;
}

span.termin-do-wyboru {
    color: #ff6d6d !important;;
    border-color: #ff6d6d !important;;
}

.lista-terminow-dla-wydarzenia {
    display: none;
}

/* Counter */
.counter button {
    align-items: center;
    background-color: #3d7d83;
    color: #ffffff;
    height: 20px;
    justify-content: center;
    padding: 0;
    width: 20px;
}

.counter button i {
    font-size: 10px;
}

.counter input {
    border-width: 0 !important;
    width: 40px;
}

.counter .input-group {
    display: inline-flex;
    width: auto;
}

/* Grupa podsumowanie */
.grupa-podsumowanie,
.podsumowanie {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.grupa-podsumowanie table tbody tr td,
.podsumowanie table tbody tr td {
    color: #3d7d83;
    font-weight: bold;
    padding: 0 0.5rem;
}

.grupa-podsumowanie table tbody tr td:first-child,
.podsumowanie table tbody tr td:first-child {
    text-align: right;
}

.page-item.active .page-link {
    background-color: #3d7d83;
    border-color: #3d7d83;
}

.page-link {
    color: initial;
}

h3.terminy-lista-wyd-nazwa {
    margin-bottom: 5px;
}

.termny-lista-wyd-opis {
    font-size: smaller;
}

.strona-glowna-link {
    display: inline-block;
    padding-left: 35px;
}

.tooltip-inner {
    background-color: white;
    color: black;
    border: 1px solid gray;
}

#koszyk-liczba {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #3d7d83;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    position: relative;
    left: -10px;
    top: 6px;
}

.zamowienia-table {
    margin-bottom: 0;

}

@media (min-width: 768px) {
    .zamowienia-table thead th:first-child {
        width: auto;
    }
}

@-webkit-keyframes spin-preloader {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(1turn);
        transform: translate(-50%, -50%) rotate(1turn);
    }
}

@keyframes spin-preloader {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(1turn);
        transform: translate(-50%, -50%) rotate(1turn);
    }
}

.preloader:before {
    background-color: hsla(0, 0%, 100%, 0.8);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.preloader:after,
.preloader:before {
    content: "";
    opacity: 0;
    position: fixed;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    visibility: hidden;
    z-index: 2;
}

.preloader:after {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: spin-preloader;
    animation-name: spin-preloader;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    border-radius: 50%;
    border: 2px solid #3d7d83;
    border-bottom-color: transparent;
    display: block;
    height: 4rem;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 4rem;
}

.preloader--active:after,
.preloader--active:before {
    opacity: 1;
    visibility: visible;
}

.strona-blokada-main-content {
    min-height: 450px;
    text-align: center;
}

/* kalendarz nowy */
.cal-days-of-the-week,
.cal-days {
    display: flex;
    flex-wrap: wrap;
}

.cal-days-of-the-week span,
.cal-days a {
    text-align: center;
    width: calc(100% / 7);
    display: inline-block;
}

.cal-days-of-the-week span {
    font-size: 14px;
    color: #1d3b4f;
    padding-bottom: 0.2rem;
    font-weight: bold;

}

.cal-days a {
    font-size: 22px;
    height: 42px;
    line-height: 42px;
}

.cal-days a.dzien-z-terminami:hover,
.cal-days a.dzien-z-terminami.selected {

    background-color: #1d3c50;
    border-radius: 4px;
    color: #c5cdd3;
}

.cal-days a:hover {
    text-decoration: none;
}

.cal-days a.dzien-z-terminami:hover {
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 992px) {
    [data-page-name="rezerwacja_rezerwacja_termin"] .cal-days a {
        font-size: 16px;
        height: 32px;
        line-height: 32px;
    }
}

.cal-offset-1 {
    margin-left: calc(100% / 7)
}

.cal-offset-2 {
    margin-left: calc(100% / 7 * 2)
}

.cal-offset-3 {
    margin-left: calc(100% / 7 * 3)
}

.cal-offset-4 {
    margin-left: calc(100% / 7 * 4)
}

.cal-offset-5 {
    margin-left: calc(100% / 7 * 5)
}

.cal-offset-6 {
    margin-left: calc(100% / 7 * 6)
}

.dzien-z-terminami {
    background-color: #c5cdd3;
}

/*end kalendarz nowy*/

/*.footer-logos img {*/
/*    display: block;*/
/*    height: 85px;*/
/*}*/

/*.footer-logos img:last-child {*/
/*    padding-left: 70px;*/
/*}*/
.grupy-towarow-header {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .grupy-towarow-header {
        display: flex;
        justify-content: space-between;
    }

    .grupy-towarow-header:hover {
        cursor: pointer;
    }
}

@media (min-width: 992px) {
    .grupa-towarow-header-icon {
        display: none;
    }
}

ul#grupy-towarow {
    list-style: none;
    display: none;
    padding-left: 0;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    ul#grupy-towarow {
        display: block;
    }
}

ul#grupy-towarow li {
    display: block;
    border-top: 1px solid black;
}

ul#grupy-towarow li:last-child {
    border-bottom: 1px solid black;
}

ul#grupy-towarow li a {
    display: block;
    padding: 10px;
    color: #891518;
    font-weight: 600;
}

ul#grupy-towarow li a:hover,
ul#grupy-towarow li a.selected {
    text-decoration: none;
    color: white;
    background-color: #a48648;
}

.lista-towarow-towar {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stara-cena {
    text-decoration: line-through;
    display: inline-block;
    margin-right: 15px;
}

.towar-przyciski {
    display: flex;
    justify-content: space-between;
    /*position: absolute;*/
    /*bottom: 0;*/
}

.towar-niedostepny-info {
    display: inline-block;
    padding: 7px 0;
    letter-spacing: -1px;

}

.lista-towarow-towar.polecany .towar-niedostepny-info {
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.lista-towarow-btn {
    background-color: #3d7d83;
    border-color: #3d7d83;
    display: inline-block;
    color: white;
    padding: 7px 10px;
}

.lista-towarow-btn:hover {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.product-list-image-wrapper {
    cursor: pointer;
    text-align: center;
}

/*@media (min-width: 576px) {*/
/*    .product-list-image-wrapper {*/
/*        height: 76%;*/
/*    }*/
/*}*/

.ts-cena-towaru {
    color: #a48648;
    font-weight: bolder;
    padding-top: 10px;
    padding-bottom: 17px;
    font-size: 22px;
}

.product-list-price {
    color: #a48648;
    font-weight: bolder;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
}

.lista-towarow-nazwa {
    padding-top: 10px;
    /*padding-bottom: 10px;*/
    margin-bottom: 0;
}

.towary-opcje-top {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

@media (min-width: 1200px) {
    .towary-opcje-top > div:first-child,
    .towary-opcje-top > div:nth-child(2) {
        margin-right: 15px;
    }
}


@media (max-width: 1199px) {
    .towary-opcje-top > div:nth-child(2) {
        width: 50%;
        justify-content: end;
    }

    .towary-opcje-top > div:first-child,
    .towary-opcje-top > div:nth-child(2) {
        width: 50%;
    }

    .towary-opcje-top > div:nth-child(3) {
        width: 100%;
        margin-top: 5px;
    }
}

@media (max-width: 767px) {
    .towary-opcje-top > div:nth-child(2) {
        margin-top: 5px;
    }
    .towary-opcje-top > div:first-child,
    .towary-opcje-top > div:nth-child(2) {
        width: 100%;
        justify-content: space-between;
    }
}

.towary-opcje-top label {
    padding-right: 5px;
    margin-bottom: 0;
}

.lista-towarow-nazwa:hover {
    cursor: pointer;
}

.polecany .lista-towarow-btn {
    display: block;

}

.polecany .towar-przyciski {
    display: block;
}

.polecany .lista-towarow-btn {
    margin-bottom: 10px;
    text-align: center;
}

.polecany .lista-towarow-btn:last-child {
    margin-bottom: 0;
}

.slick-prev-arrow-wrapper, .slick-next-arrow-wrapper {
    background-color: lightgrey;
    color: #3d7d83;
    position: absolute;
    top: 30%;
    z-index: 99;
    padding: 5px;
    font-size: 30px;
    display: inline-block;
}

.slick-next-arrow-wrapper {
    right: -2px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-list {
    margin: 0 -15px !important;
}

.page-item:first-child .page-link {
    border: 0;
}

.page-item:last-child .page-link {
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
}

.product_unavailable:hover,
.product_unavailable .product-list-image-wrapper:hover,
.product_unavailable .lista-towarow-nazwa:hover {
    cursor: initial;
}

.ts-ilosc,
.ts-produkt-razem {
    color: #3d7d83;
    display: flex;
    align-items: center;
}

#ts-towar-ilosc,
.ts-change-qty-btn {
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#ts-towar-ilosc {
    border: 0;
    border-radius: 0;
    width: 40px;
}


.ts-change-qty-btn {
    color: white;
    background-color: #3d7d83;
    border-radius: 0;
    font-size: 13px;
}

.ts-change-qty-btn:hover {
    text-decoration: none;
    color: white;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.ts-opis-towaru {
    padding-top: 30px;
}

img#bigpix {
    max-width: 100%;
    margin-bottom: 10px;
}

.zdjecia_mini {
    display: block;
    /*flex-wrap: wrap;*/
    /*justify-content: start;*/
    /*flex-direction: row;*/
    /*align-items: flex-start;*/
}

.zdjecia_mini .zdjecie_mini {
    display: inline-block;
    width: 32%;
    padding-bottom: 8px;
    float: left
}

.zdjecie_mini:first-child {
    margin-right: 2%;
}

.zdjecie_mini + .zdjecie_mini {
    margin-right: 2%;
}

.zdjecie_mini:nth-child(3n+3) {
    margin-right: 0;
}

.zdjecia_mini img {
    display: block;
    width: 100%;
}

.ts-back-btn-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 0;

}

.ts-back-btn-wrapper a {
    background-color: #3d7d83;
    border: 1px solid #3d7d83;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    text-transform: uppercase;
}

.ts-back-btn-wrapper a:hover {
    text-decoration: none;
    color: white;

}

.koszyk-towar-miniatura {
    width: 80px;
    display: none;
}

.koszyk-towar-link {
    display: none;
}

@media (min-width: 768px) {
    .koszyk-towar-miniatura {
        display: inline-block;
    }

    .koszyk-towary-table tbody tr td:first-child {
        width: 100px;
    }

    .koszyk-towar-link {
        display: inline-block;
        margin-right: 20px;
    }
}

.koszyk-towar-link:hover {
    text-decoration: none;
}

.koszyk-towar-nazwa {
    display: inline-flex;
}

.koszyk-towar-qty-switch {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.js-koszyk-ilosc-sztuk-towaru, .js-towar-zmien-ilosc {
    display: inline-flex;
    width: 40px;
    height: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.js-towar-zmien-ilosc:hover {
    cursor: pointer;
}

.dostawa-block {
    margin-top: 40px;
}

.koszyk-kwoty tr td:last-child,
.podsumowanie-kwoty tr td:last-child {
    text-align: right;
}

.adresy-dostaw-table {
    margin-bottom: 50px;
}

section#adresy-dostaw {
    margin-top: 40px;
}

.strona-sklep-link-img {
    max-width: 66%;
    height: auto;
}

.footer-logos img {
    display: block;
}

@media (min-width: 768px) {
    .footer-logos img {
        height: 85px;
    }
}


.footer-logos img:last-child {
    padding-left: 70px;
}

#koszyk-sposob_dostawy {
    margin-bottom: 10px;
}

.podsumowanie-kwoty-table tr td:last-child {
    text-align: right;
}

#wybor-paczkomatu-sekcja {
    border: 1px solid #1c3d50;
}

.wybor-paczkomatu-tytul {
    padding: 10px;
    display: inline-block
}

#selected-parcel-locker {
    padding: 10px;
    /*border: 1px solid #1c3d50;*/
    margin-top: 10px;
}

#change-parcel-locker-btn {
    margin-top: 15px;
    background-color: #3d7d83;
    border-color: #3d7d83;
    color: #ffffff;
}

.footer-logos {
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .footer-logos img + img {
        margin-top: 3rem
    }
}

/*@media (min-width: 992px) {*/
/*    body[data-page-name="rezerwacja_rezerwacja_lokalizacja"] .sightseeing-type article:first-child {*/
/*        border-top: 1px solid #1d3c4f;*/
/*    }*/
/*}*/
.oddzialy-div {
    justify-content: space-between;
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
}

.oddzial-nazwa {
    display: block;
    height: 0;
    /*justify-content: center;*/
    /*align-items: center;*/
    width: 100%;
    padding-top: calc(100% * 2 / 3);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.oddzial-nazwa-txt {
    font-size: 2rem;
    color: white;
    position: absolute;
    top: calc(50% - 30px);
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 60px;
}

@media (min-width: 768px) {
    .oddzial-nazwa-txt {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .oddzial-nazwa-txt {
        font-size: 4rem;
    }
}

.oddzial-opis1 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    line-height: 1.4rem;
    color: #901815;
    font-weight: bolder;
}

.oddzial-opis2 {
    margin-bottom: 15px;
    min-height: 60px;
}

.oddzial-wrapper {
    width: 48%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;

}

@media (min-width: 576px) {
    .oddzial-wrapper {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .oddzial-wrapper {
        width: 45%;
    }
}

.separator {
    border-bottom: 1px solid black;
}

@media (max-width: 767px) {
    .header__banner .container {
        padding-left: 0;
        padding-right: 0;
    }
}

.change-button:hover,
.vouchery-change-qty-button:hover {
    color: white;
    opacity: 0.8;
}

#ilosc-na-stronie,
#towary-sortowanie {
    width: auto;
    display: inline-block;
}

.product-search-text-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3d7c83;
    background-color: #3d7d83;
    color: white;
    width: 46px;
}