@import url("modern-normalize.css");
@import url("fonts.css");
@import url("comparison.css");

@import url("form.css");
@import url("layout.css");
@import url("styles.css");
@import url("navigation.css");
@import url("navigation-large.css");
@import url("navigation-small.css");

@import url("hmcms--popup.css");

@import url("jobs.css");

@import url("articles.css");
@import url("article--banner.css");
@import url("article--service.css");
@import url("article--highlights.css");
@import url("article--text-media.css");
@import url("article--text.css");
@import url("article--contact.css");
@import url("article--quote.css");
@import url("article--photo-text.css");
@import url("article--vacancy-overview.css");

:root {
    --text: #555;
    --dark-blue: #0D5065;
    --light-blue: #eef7fe;
    --lime:#06a69e;
    --orange: #f0921e;
    --swiper-theme-color:#06a69e;
}

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



.layout-article--bg-lime {
    background: var(--lime);
    color: #fff;
}

.bg-light-blue,
.layout-article--bg-light-blue {
    background: var(--light-blue);
}

.layout-article--bg-lime .layout-article__title {
    color: #fff;
}

.resort-location {
    position: relative;
}

.resort-location__position {
    position: absolute;
    width: 24px;
    height: 32px;
    transform: translate3d(-50%, -100%, 0);
    color: var(--orange);
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.2));
}

.embed-video-container iframe {
    width: 100%;
    height: 100%;
}


.layout-article__contact {
/*    background: #fff;*/
    margin-top: 4rem;
}

.wf-group:not(.file) .wf-label {
    display: none;
}

form {
    display: grid;
    grid-template-columns: repeat(6, 1fr) 230px;
    grid-gap: 10px;
}

@media screen and (max-width:800px){
    form {
        grid-template-columns: repeat(6, 1fr);
    }

    body .wf-group.file {
        grid-column: span 6;
        grid-row: auto;
    }
}
.wf-group input {
    width: 100%;
}

.wf-group.name {
    grid-column: span 2;
}

.wf-group.middle {
    grid-column: span 2;
}

.wf-group.file {
    grid-row: 1 / 4;
    grid-column: 7;
    background: url(/static/img/icons/upload_file.svg) #FFF no-repeat;
    border: 1px solid #ddd;
    border-radius: 3px;
    position: relative;
    background-position: center 33%;
    background-size: 80px;
}

.wf-group.file label.wf-label {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    text-wrap: unset;
    text-align: center;
    padding: 60% 16px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.wf-group.file label.wf-label ~ input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.wf-group.surname {
    grid-column: span 2;
}

.wf-group.phone {
    grid-column: span 3;
}

.wf-group.email {
    grid-column: span 3;
}

.wf-group.message {
    grid-column: span 6;
}

.wf-checkbox {
    grid-column: span 7;
    text-align: center;
}

.wf-checkbox {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    grid-gap: 10px;
}

input.button.button--orange {
    grid-column: span 7;
    margin: 20px auto 0;
}
form input,
form textarea,
.wf-group textarea,
.wf-group input {
    width: 100%;
    padding: .5em 1em;
    display: block;
    margin: 0px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wf-group textarea {
    min-height: 110px;
}

.wf-errors {
    grid-column: span 7;
    background: #ffe7e7;
    border: 1px solid #c51919;
}

.wf-thanks {
    grid-column: span 7;
}


.popup-slider {
    transform: translateY(-100%);
    position: fixed;
    z-index: 1000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    transition: transform .5s ease;
    z-index: 1000000;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.body--has-swiper-popup .popup-slider {
    transform: translateY(0);
}

.popup-slider__container {
    width: 1200px;
    max-width: 95vw;
    padding-left: 80px;
    padding-right: 80px;
    margin: 0 auto;
    position: relative;
}

.swiper-popup__info {color: #fff;margin-top: 20px;}

    .swiper-popup__info-counter {color: #fff;opacity: .7 ;position: relative;}

    .popup-slider__close-icon {position: absolute;right: 10px;top: 10px;display: block;width: 18px;height: 18px; cursor: pointer;}

        .popup-slider__close-icon::before,
        .popup-slider__close-icon::after {content: '';position: absolute;width: 22px;height: 2px;background: #fff;border-radius: 50px;top: 8px;left: -2px;transform: rotate(45deg);}

        .popup-slider__close-icon::before {transform: rotate(-45deg);}

        .swiper-popup-button-next,
        .swiper-popup-button-prev {
            width: 40px;
            height: 40px;
            border: 3px solid #eeeae6;
            border-radius: 50px;
            position: absolute;
            z-index: 100000000;
            opacity: 1;
            top: 50%;
            margin-top: -20px;
            display: flex;
            flex-flow: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .swiper-popup-button-next::after,
        .swiper-popup-button-prev::after {
            content: '';
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate3d(-60%, -50%, 0) rotate(-45deg);
            width: 13px;
            height: 13px;
            border: 3px solid #fff;
            border-top: 0;
            border-left: 0;
        }

            .swiper-popup-button-prev::after {
                transform: translate3d(-40%, -50%, 0) rotate(135deg);
            }


            .swiper-popup-button-next svg,
            .swiper-popup-button-prev svg {
                position: absolute;
            }

        .swiper-popup-button-next {
            right: 0;
        }
        .swiper-popup-button-prev {
            left: 0;
        }


a.vacancy-overview__link {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}


.swiper-slide:not(.swiper-slide-active) .quote-slide__image::after{
    opacity:.5;
    transform:translate3d(-50%, -50%, 0) scale(0.1) rotate(45deg)
}

.quote-slide__image::after{
    transition:all .5s ease .5s;
    opacity:1;
    transform:translate3d(0, 0%, 0) scale(1) rotate(0deg)
}





.search-result-item {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(70,60,60,.1);
    padding: 20px;
}

.searche-results-container {
    display: grid;
    grid-gap: 20px;
}

.search-result-item__section {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--brown);
    margin-bottom: 8px;
}

.search-result-item__title {
    margin:0 0 10px;
}

.search-result-item__title a {
    text-decoration: none;
    font-weight: 700;
}

.search-result-item__title a:hover {

}
.search-result-item__shortdesc {;
    font-size: 14px;
}
.search-result-item__shortdesc *:first-child {
    margin-top: 0;
}

.search-result-item__shortdesc *:last-child {
    margin-bottom: 0;
}

.search-result-item {
    display: flex;
    grid-gap: 30px;
}

.search-result-item__media img {
    width: 180px;
    height: 120px;
    object-fit: contain;
}

    .search-result__title {
        font-size: 22px;
        font-weight: 500;
    }

    .searcher-results__buttons {
        margin-top: 30px;
    }


form.search-reslut__form {
    grid-template-columns: 5fr 1fr;
    background: #fff;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(70,60,60,.1);
}

form.search-reslut__form input.button.button--orange {
    grid-column: span 1;
    margin: 0;
}

.swiper-button-lock {
    display: none !important;
}

.swiper-button-disabled {
    opacity: .4;
    pointer-events: none !important;
}

.job-details__resort-info-media {
    margin: -30px -30px 20px;
}

.job-details__resort-info-media img {
    width: 100%;
}

.wf-group.file label.wf-label ~ input {
    opacity: 0 !important;

}

.wf-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.wf-checkbox label::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    border: 1px solid #ddd;
    background: var(--lime);
    margin-right: .56em;
    box-shadow: 0 0 0 .6em white inset;
    transition: box-shadow .3s ease;
}

.wf-checkbox label {
    align-items: center;
    display: flex;
    grid-gap: 4px;
}

.wf-checkbox input[type="checkbox"]:checked ~ label::before {
    box-shadow: 0 0 0 4px #fff inset;
}

.wf-checkbox {
    position: relative;
}

input.button.button--orange.button-form {
    width: auto;
}

@media screen and (max-width:480px){
    .quote-slide__container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .quote-slide__image {
        max-width: 270px;
        margin: 0 auto;
    }
}

figure.table {
    margin: 0;
    max-width: 100%;
    overflow: auto;
    font-size: 14px;
    width: 100%;
}

figure.table table {
    width: 100%;
}

figure.table tr td {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 6px 10px !important;
    height: auto !important;
    width: auto !important;
}

figure.table tr td:first-child {
    border-left: 1px solid #ccc;
}

figure.table tr:last-child td {
    border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 480px){
    .at-quote {
        margin-top:0;
    }
}



.hmcms-popup:not(.hmcms-popup--visible) {
    background: transparent;
    pointer-events: none;
    transition: none;
}

.hmcms-popup:not(.hmcms-popup--visible) .hmcms-popup__container{
    transform: translateY(-100px);
    opacity: 0;
    transition: none;
}

.hmcms-popup {
    position: fixed;
    top: 0;
    display: none;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10000000001;
    padding: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-justify-content: center;
    justify-content: center;
    transition: background .3s ease 0s;
}
.hmcms-popup__container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    position: relative;
    max-height: 90vh;
    padding: 30px;
    overflow: auto;
    transition: transform .5s ease 0s, opacity .5s ease 0s;
}

.hmcms-popup__title {
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 16px;
}
.hmcms-popup__content > *:first-child {
    margin-top: 0px;
}
.hmcms-popup__content > *:last-child {
    margin-bottom:0px;
}
.hmcms-popup__close {
    width: 30px;
    height: 30px;
    background: #666;
    position: absolute;
    right: 0px;
    top: 0px;
    transition: background .3s ease;
    cursor: pointer;
    z-index: 10000;
}
.hmcms-popup__close::before,
.hmcms-popup__close::after {
    width: 20px;
    height: 2px;
    background: #fff;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -1px;
    transform: rotate(45deg);
    border-radius: 3px
}
.hmcms-popup__close::before {
    transform: rotate(-45deg)
}


label.wf-label a {
    position: relative;
    z-index: 1000;
    transition: all .15s ease;
}

label.wf-label a:hover {
    transform: translateY(-1px);
}

