* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: inherit;
}

/* All Round Gothic Font Family */
@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_Book_Oblique.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_Medium_Oblique.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_Demi.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_Demi_Oblique.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_Bold_Oblique.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_XLig.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('fonts/All_Round_Gothic_XLig_Oblique.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

:root {
    --color-background: #f5efe8;
    --color-a: #7BB9C4;
    --color-b: #EE8886;
    --color-c: #E9662E;
    --color-d: #BF942E;
    --color-e: #E6B535;
    --color-f: #838522;
    --color-h: #be9c7b;
    /* header */

    --max-width: 800px;
}

.fg-a {
    color: var(--color-a) !important;
}

.fg-b {
    color: var(--color-b) !important;
}

.fg-c {
    color: var(--color-c) !important;
}

.fg-d {
    color: var(--color-d) !important;
}

.fg-e {
    color: var(--color-e) !important;
}

.fg-f {
    color: var(--color-f) !important;
}

.fg-h {
    color: var(--color-h) !important;
}

.fg-facebook {
    color: #0866ff !important;
}

.bg-a {
    color: #fff;
    background-color: var(--color-a) !important;
}

.bg-b {
    color: #fff;
    background-color: var(--color-b) !important;
}

.bg-c {
    color: #fff;
    background-color: var(--color-c) !important;
}

.bg-d {
    color: #fff;
    background-color: var(--color-d) !important;
}

.bg-e {
    color: #fff;
    background-color: var(--color-e) !important;
}

.bg-f {
    color: #fff;
    background-color: var(--color-f) !important;

    .invert {
        color: var(--color-f);
        background-color: #fff;
    }
}

.bg-h {
    color: #fff;
    background-color: var(--color-h) !important;
}

.bg-facebook {
    background-color: #0866ff !important;
    color: #fff !important;
}

.bg-fb {
    background-color: #0866ff !important;
    color: #fff !important;
}

.bg-white {
    background-color: #fff !important;
    color: #000 !important;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: calc(min(20px, 12px + 1.25vmin));
    background: #fafafa;
    background: #e2d6c9;
    background-color: #f5efe8;

    overflow-x: hidden;
    width: 100vw;
}

h1,
h2,
h3 {
    font-family: 'All Round Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.25em;

    img {
        width: 2em;
        vertical-align: middle;
        margin-right: 1rem;
    }
}

h2 {
    font-size: 1.2em;
    font-weight: 600;
}

strike {
    opacity: 0.5;
}

section {
    display: flex;
    flex-direction: column;
}

b {
    font-weight: 600;
}

.padding {
    padding: 0.5rem;
}

.margin {
    margin: 0.5rem;
}

.text-align-right {
    text-align: right;
}

.vertical-align-bottom {
    vertical-align: bottom;
}

.border-radius {
    border-radius: 0.5rem;
}

.inline {
    display: inline-block !important;
}

.icon {
    width: 2rem
}

.slots-info {
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    .count {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 600;
        font-size: 1.25em;
        justify-content: space-between;

    }

    .small {
        font-size: 0.9rem;
    }

    .slots {

        &.warning {
            color: #c00;
        }

        sub {
            font-size: 0.8em;
            vertical-align: sub;
        }
    }
}

.main-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: var(--max-width);
    justify-self: center;

    >* {
        width: 100%;
    }

    span.inline {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        padding: 0.25rem 0.5rem;
    }

    .island {
        padding: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .sticky-bar {
        position: sticky;
        bottom: 0px;
        left: 0;
        width: 100%;
        /* background: #fff; */
        background: #e2d6c9;
        background: #f5efe8;

        padding: 1rem;
        border-color: inherit;
        box-shadow: 0px -1px 4px 0px #00000088;
        transition: all 0.2s ease-in-out;
        z-index: 100;
        scale: 1;
        transform-origin: center bottom;

        &.finished {
            box-shadow: none;
            /* background-color: #fafafa; */

            .buttons {
                /* gap: 0; */
            }
        }

        .buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: all 0.2s ease-in-out;
        }

        .button,
        button {

            height: 3rem;

            &.hidden {
                height: 0px;
                padding: 0px;
                overflow: hidden;
            }

            transition: all 0.2s ease-in-out;

        }

        &.hidden {
            gap: 0;
            padding: 0;

            .button,
            button {
                height: 0px;
                padding: 0px;
                overflow: hidden;
            }

            .buttons {
                gap: 0
            }
        }

        .hot-offer {
            font-size: 0.8em;
            opacity: 0.8;
            text-align: center;
        }

    }

    .overlay-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        mask-size: cover;
        mask-repeat: no-repeat;

        &.mask-1 {
            mask-image: url('/obrazy/1024x576/mask1.png');
        }

        &.mask-2 {
            mask-image: url('/obrazy/1024x576/mask2.png');
        }

        &.mask-3 {
            mask-image: url('/obrazy/1024x576/mask3.png');
        }

    }

}

.footer,
.header {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
    padding-bottom: 1rem;
    background-color: var(--color-h) !important;
    color: #fff !important;
    align-items: center;
    /* padding-right: 6rem; */
    position: relative;

    >div {

        max-width: 1000px;
        width: 100%;

    }

    .logo {
        font-weight: 800;
        font-size: 1.5rem;
        display: flex;
        /* justify-content: space-between; */
        gap: 1rem;
        align-items: center;
        flex-direction: row;
        margin-bottom: 0.5rem;
        padding-right: 2.7rem;

        img {

            width: 3.5rem;
        }

        .img-wrapper {
            position: absolute;
            right: 0;
            top: 0;
            background: #f5efe8;
            padding: 0.5rem 0.5rem 1rem 1.5rem;
            border-radius: 0 0 0 2em;
        }

    }

    h1 span {
        font-size: 0.8em;
        opacity: 0.8;
        display: block;
    }

}

.header+.horizontal-divider {
    margin-bottom: 0rem;
}

a.button,
button {
    display: inline-block;
    background: none;
    border: 0px;
    padding: calc(0.5rem + 2px) calc(2rem + 1px);
    border-radius: 0.5rem;
    font-size: 1em;
    font-weight: 400;
    cursor: pointer;
    box-shadow: inset 0px -3px 0px 0px #00000088, inset 0px 0px 0px 0px #00000088;
    text-decoration: none;
    text-align: center;
}

a.button.hollow,
button.hollow {
    background: none;
    border: 1px solid;
    border-bottom: 3px solid;
    border-color: inherit;
    padding: 0.5rem 1rem;
    font-size: 1em;
    font-weight: 400;
    cursor: pointer;
    box-shadow: none;

}


.padding-section {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: var(--max-width);

    h3 {
        font-size: 1.25em;
        font-weight: 500;

        span {
            font-size: 1.25rem;
            font-weight: normal
        }

        img.margin-left {
            margin-left: 1rem;
        }

    }
}

.margin-section {
    margin: 2rem 1rem;
}

.section-inner {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
}

.full-width-image {
    width: 100%;
}

.full-width-image-half {
    width: 100%;
    object-fit: cover;
    height: 40vh;
}

.EventsHome {

    .offer-thumbnails {
        display: grid;
        grid-template-columns: 1fr;

        >div {

            width: 100%;
            position: relative;

            display: flex;
            flex-direction: column;
            align-items: center;

            .inner-section {
                display: grid;
                max-width: 1000px;
                align-items: center;
                justify-content: center;
                grid-template-columns: 1fr;
                gap: 1rem;

                >div {

                    border-radius: 2rem;
                    padding: 1rem 2rem;
                    overflow: hidden;

                }

                >a:first-child,
                img {
                    justify-self: center;
                    grid-row: 1;
                    max-width: 440px;
                    width: 100%;
                    object-fit: cover;
                }

                h2 {
                    font-weight: 500;
                    line-height: 1.25em;
                    margin-bottom: 1rem;
                    /* position: absolute; */
                    left: 50%;
                    bottom: 0;
                    /* transform: translate(-50%, 0); */
                    font-size: 2em;
                    /* border-radius: 0.25rem 0.25rem 4rem 4rem; */
                    border-radius: 4rem;
                    width: 100%;
                }

                h3 {
                    font-weight: 600;
                    font-size: 1.5em;
                    margin-bottom: 1rem;
                }

                .buttons {
                    margin: 1.5rem 0;

                    .button {
                        width: 100%;
                    }
                }



            }

        }
    }


}

.EventDetails {

    display: flex;
    flex-direction: column;


    .hero {

        .content {
            position: relative;
            padding-top: 1rem;

            img {
                width: 100%;
                object-fit: cover;
                border-radius: 0 0 1rem 1rem;
                /* border-radius: 0 0 30% 30%; */
            }
        }



    }
}

.icon-list {
    list-style: none;
    padding: 0;

    .icon {
        width: 2.5em;
    }

    li {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

.contact-form {


    display: flex;
    flex-direction: column;
    gap: 1rem;

    .main-label {
        font-weight: 400;
    }

    .fields {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 0.5rem;
        border: 1px solid #444;

        input[type="checkbox"] {
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.5rem;
            border: 1px solid #ccc;
            border-radius: 0.5rem;
            padding: 0.5rem;
            cursor: pointer;
            vertical-align: middle;
        }

        label[for] {
            cursor: pointer;
        }
    }

    button {
        width: 100%;
    }


    .other-methods {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #ccc;
    }

    p {
        text-align: center;
        padding: 1rem;
        transition: all 0.2s ease-in-out;
    }

    .copied {
        font-weight: 600;
        scale: 1.5;
        color: var(--color-b);
    }
}


.horizontal-divider {
    border-bottom: 1px solid;
    border-top: 3px solid;
    border-color: inherit;
    line-height: 0;
    padding: 2px 0 0 0 !important;
    width: 100%;
    margin: 1px 0;

    &.hidden {
        border-bottom: 0px !important;
        border-top: 0px !important;
    }
}

input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font: inherit;
}


textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font: inherit;
}


[data-error]:before {
    content: attr(data-error);
    color: red;
    font-size: 0.8em;
    margin-bottom: 0.5rem;
}

[data-error] input,
[data-error] textarea {
    border: 2px solid #f00;
}

.attention {
    border-radius: 0.5rem;
    border: 1px solid;
    padding: 1rem;
}

.disclaimer {
    border-radius: 0.5rem;
    border: 1px solid;
    padding: 1rem;
    font-weight: 400;
}

.OfferSummary {

    .pane,
    .location-pane {

        /* border: 1px solid #000; */
        background-color: #eeeeee;
        border: 1px solid #cccccc;
        border-bottom: 4px solid #888888;
        margin: 0.5rem;
        padding: 0.5rem;
        border-radius: 0.5rem;
        width: 100%;
        overflow: hidden;
        padding-bottom: 1rem;

        display: flex;
        flex-direction: column;
        gap: 1rem;

        .content {
            display: grid;
            gap: 1rem;
            /* grid-template-columns: 1fr 1fr; */

            &.cols-1 {
                grid-template-columns: 1fr;

            }

            &.column {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }

            >* {
                overflow: hidden;

                &.thumbnail {

                    display: flex;
                    flex-direction: column;
                    gap: 1rem;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 0.5rem;
                        flex-grow: 1;
                        aspect-ratio: 16/9;
                    }

                    button {
                        width: 100%;
                    }
                }

            }
        }

        .contrast {
            color: #eeeeee;
            background-color: #222222;
            white-space: nowrap;
            padding: 2px 4px;
            border-radius: 4px;
        }

        h3 {
            font-size: 1.25em;
            font-weight: 500;
            text-align: center;
        }

        h4 {
            margin-top: 1rem;
            font-weight: 600;
        }

        td.spacer {
            padding: 1rem 0;
        }

    }

    table {
        td {

            vertical-align: top;

            &.thumbnail {

                button {
                    width: 100%;
                }

                img {
                    width: 100%;
                    height: 20vh;
                    border-radius: 1rem;
                    object-fit: cover;
                }

            }
        }
    }

}

.Otulanie {
    .premium {
        color: var(--color-b);
        font-weight: 600;
    }
}

@media (min-width: 600px) {

    .full-width-image-half {
        width: 100%;
        object-fit: cover;
        height: auto;
        aspect-ratio: 16/9;
    }

    .Home {
        .offer-thumbnails {
            >div {
                .inner-section {
                    grid-template-columns: 2fr 2fr !important;

                    img {
                        max-width: 512px;
                        grid-row: auto;

                    }
                }
            }
        }
    }
}

.loading {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
    cursor: wait;
}

ui-tabs {

    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;

    .ui-tab,
    ui-tab {

        background-color: #eee;
        color: #000;
        cursor: pointer;
        border: 1px solid #000;
        border-bottom: 4px solid #000;
        border-radius: 0.5rem;
        display: block;
        padding: 0.75rem 1rem;
        font-weight: 400;
        transition: all 0.1s ease-out;
        text-decoration: none;

        img {
            height: 2rem;
            vertical-align: middle;
            margin-right: 0.5rem;
            border-right: 1px solid #000;
            padding-right: 0.5rem;
        }

        &.selected {
            background-color: #fff;
            padding-left: 2rem;
        }
    }
}

.question {
    font-weight: 600;

    &::before {
        content: "💬";
        margin-right: 0.5rem;
    }
}

.answer {
    font-weight: 400;
    padding-left: 2rem;
}

.solid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    z-index: 1000;

    .overlay-survey {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 0.5rem;
    }
}

.fake-chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 0.5rem;

    >.messages {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        >* {
            padding: 0.5rem;
            border-radius: 0.5rem;
            width: 80%;
        }

        .user-1 {
            background-color: var(--color-a);
            color: #fff;

        }

        .user-2 {
            background-color: var(--color-b);
            color: #fff;
            align-self: flex-end;
        }
    }

}

.tile-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;

    li {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        width: 100%;
        font-weight: 300;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
        align-items: center;
        overflow: hidden;

        span {
            display: block;
            width: 100%;
            white-space: normal;
            align-self: flex-start;
            text-overflow: ellipsis;
            overflow: hidden;
            height: 4rem;

        }

        img {
            max-width: 64px;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}


.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */

    >* {
        flex: 0 0 auto;
        scroll-snap-align: start;
        /* adjust to how wide each slide should be */
        margin-right: 1rem;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

.slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.icons-slider {
    position: relative;

    >* {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;

        .icon {
            width: 64px;
        }
    }

    .scroll-indicator {
        position: sticky;
        right: 0;

        span {
            background-color: #000;
            color: #fff;
            border-radius: 100%;
            aspect-ratio: 1/1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
    }

    &.at-end {
        .scroll-indicator {
            span {
                opacity: 0;
            }
        }
    }
}

ui-option-picker {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    >ui-option {

        border: 1px solid #000;
        border-bottom: 3px solid #000;
        border-radius: 4px;
        padding: 0.5rem;

        &.selected {
            background-color: var(--color-a);
        }



    }
}


.short-footer {
    padding: 1rem;
    color: #fff;
    background-color: var(--color-b);
    text-align: center;
    margin-top: 1rem;

    a {
        text-decoration: underline;
        color: #fff;
        font-weight: 800;
    }
}

img.contain { 
    object-fit: contain;
}

.Home {
    .category {
        img.thumbnail {
            width: 100%;
            object-fit: contain;
            height: 40vh;

        }
    }
}