/* Minification failed. Returning unminified contents.
: run-time error CSS1036: Expected expression, found ''
: run-time error CSS1036: Expected expression, found ''
 */
/*
    CSS COMMON FOR ALL SITES
*/
/* desktop screen*/
@media screen and (min-width: 769px) {
    .mobile-only { display: none; }
    
    .desktop-only { 
        display: block;
        padding: 0 0 0 0;
    }
    .promo-enel { }
}
/* mobile screen*/
@media screen and (max-width: 320px) {
    .desktop-only {
        display: none;
    }
    mobile-only {
        display: block;
    }
    .mobile-only > button {
        max-width: 68px;
    }
    .promo-enel {
        max-width: 63px;
    }
}

@media screen and (min-width: 321px) and (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .mobile-only > button {
        max-width: 68px;
    }
    
    .desktop-only {
        display: none;
    }

    .promo-enel {
        max-width: 63px;
    }
}

/*margin: top right bottom left */
.priv-checkbox-first { 
}

.priv-checkbox-first > label {
    margin: 0 0 10px 0;
}

.priv-checkbox-first > label > input {
    width: 20px; 
    height: 20px;
}

.priv-checkbox-first > label > span {
    margin: 0 0 0 3px;
}

.priv-checkbox {
    margin: 1px 0 1px 0;    
}

.priv-checkbox > label {
    margin: 0 0 10px 0;
}

.priv-checkbox > label > input {
    width: 20px; 
    height: 20px;    
}
.priv-checkbox > label > span {
    margin: 0 0 0 3px;
}

#basket-box-pv-container {    
    position: -webkit-sticky;
    position: sticky;
    display: block;
    top: 115px;
}

.spn-mobile-login {
    margin-left:-5px;
}

.not-visible {
    display: none;
}

#_reservationFormContainer {
    margin-top: 0em;
}

.klarna-text {
    font-size: 13px;
}
.waiting-div {
    background-image:url(../Images/plane-icon-dark.png);    
}

/* Call to action button*/


#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #d9534f; /* Set a background color */ /*#449d44*/
    color: #fff; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}
/**/

/*ToolTip*/
/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

    /* Hide the tooltip content by default */
    [data-tooltip]:before,
    [data-tooltip]:after {
        visibility: hidden;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        pointer-events: none;
    }

    /* Position tooltip above the element */
    [data-tooltip]:before {
        position: absolute;
        bottom: 150%;
        left: 50%;
        margin-bottom: 5px;
        margin-left: -80px;
        padding: 7px;
        width: 160px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background-color: #000;
        background-color: hsla(0, 0%, 20%, 0.9);
        color: #fff;
        content: attr(data-tooltip);
        text-align: center;
        font-size: 14px;
        line-height: 1.2;
    }

    /* Triangle hack to make tooltip look like a speech bubble */
    [data-tooltip]:after {
        position: absolute;
        bottom: 150%;
        left: 50%;
        margin-left: -5px;
        width: 0;
        border-top: 5px solid #000;
        border-top: 5px solid hsla(0, 0%, 20%, 0.9);
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        content: " ";
        font-size: 0;
        line-height: 0;
    }

    /* Show tooltip content on hover */
    [data-tooltip]:hover:before,
    [data-tooltip]:hover:after {
        visibility: visible;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }
/* end tooltip*/

.turkish-banner {
    position: relative;
    width: 100%;
    max-width: 400px;
}

    .turkish-banner img {
        width: 100%;
        height: auto;
    }

    .turkish-banner .btn {
        position: absolute;
        top: 80%;
        left: 20%;
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        background-color: #555;
        color: white;
        font-size: 16px;
        padding: 12px 24px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        text-align: center;
    }

        .turkish-banner .btn:hover {
            background-color: black;
        }

.notify-badge {
    position: relative;
    right: -40px;
    top: 340px;
    /*background: red;*/
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color: white;
    padding: 5px 10px;
    font-size: 20px;
}

/*.zoom {
    transition: transform .2s; /* Animation *//*
    padding: 50px;
    width: 1040px;
    height: 350px;
    margin: 0 auto;
}

.zoom:hover {
    transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) *//*    
}*/

.zoom {
    display: inline-block;
    margin: 1px;
    border: 1px solid white;
    overflow: hidden; /* clip the excess when child gets bigger than parent */    
}

    .zoom img {
        display: block;
        transition: transform .4s; /* smoother zoom */
    }

    .zoom:hover img {
        transform: scale(1.3);
        transform-origin: 50% 50%;
    }

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}