/* ------------------------------------------------------------------------- CORE This core file sets up most important setup variables. They underpin a lot of calculations based on that values. Should be modified with caution. Values should be expressed in PX and will be converted into REM/EM. */
/* ------------------------------------------------------------------------- CONFIG Global configuration */
/* SCOPED enable if you are scoping the output in a selector */
/* ENVIRONMENT dev .................. Development prod ................. Production */
/* DEBUG for debugging proposes */
/* ------------------------------------------------------------------------- CONFIG Global configuration */
/* SCOPED enable if you are scoping the output in a selector */
/* ENVIRONMENT dev .................. Development prod ................. Production */
/* DEBUG for debugging proposes */
/* PATHS Define assets paths here */
/* SPECIAL CHARS Define special chars */
/* CORE FUNCTIONS SASS core functions (core- prefixed) breakpoint-suffix ..... returns a string with breakpoint separator concatenated to a given breakpoint map-diff .............. returns the differences between two maps, skipping equal values strip-units ........... returns the unitless number of a given value ratio-suffix .......... returns a ratio string with its escaped separator of a given width and height rem-to-px ............. returns PX equivalent value using a given REM value px-to-rem ............. returns REM equivalent value using a given PX value px-to-em .............. returns EM equivalent value using a given PX value and a REM reference */
/* ------------------------------------------------------------------------- BREAKPOINT SUFFIX Returns a breakpoint string with its escaped separator Useful for utilities that uses breakpoints modifiers s-core-breakpoint-suffix(md) == \@md */
/* ------------------------------------------------------------------------- MAP DIFF Compares the differences between two maps, skipping equal values. Compares both keys and values. Params: MAP-A .............................. Main map to compare with MAP-B .............................. Secondary map Returns a map with the differences */
/* ------------------------------------------------------------------------- STRIP UNITS Returns the unitless number of a given value. Useful for calculations and unit conversion. s-core-strip-units(16px) == 16 */
/* ------------------------------------------------------------------------- RATIO SUFFIX Returns a ratio string with its escaped separator Useful for objects and utilities that uses ratio modifiers s-core-ratio-suffix(16, 9) == 16\:9 */
/* ------------------------------------------------------------------------- REM TO PX Returns PX equivalent value using a given REM value. By default, uses $s-core__font-size on the conversion, and the returned value is rounded. s-core-rem-to-px(1.143rem) == 16px (based on 14px $s-core__font-size) */
/* ------------------------------------------------------------------------- PX TO REM Returns REM equivalent value using a given PX value. By default, uses $s-core__font-size on the conversion. s-core-px-to-rem(16px) == 1.143rem (based on 14px $s-core__font-size) */
/* ------------------------------------------------------------------------- PX TO EM Returns EM equivalent value using a given PX value and a REM reference By default, uses $s-core__font-size on the conversion. s-core-px-to-em(24px, 1.143rem) == 1.5em (based on 14px $s-core__font-size) */
/* DESIGN FOUNDATIONS aspect-ratios ......... to support some objects, material and components breakpoints ........... to determine screen sizes and media queries colors ................ brand, neutral, vendor, state and other colors durations ............. to be used on animations and transitions font-families ......... to import and define the families font-sizes ............ fixed sizes catalog line-heights .......... unit less line heights radiuses .............. to be used as a border radius spaces ................ to determine common spacing and gutters */
/* ------------------------------------------------------------------------- COLORS Import all color groups and build the main color map */
/* ------------------------------------------------------------------------- COLORS BRAND Config for: _framework/haiticss/foundations/_foundations__colors.scss */
/* ------------------------------------------------------------------------- COLORS COLLECTIONS Define Sunweb collections colors */
/* AS AN OBJECT Used in utilities */
/* ------------------------------------------------------------------------- FONTS Config for: _framework/haiticss/foundations/_foundations__font-families.scss */
@font-face { font-family: 'Pacifico'; src: font("pacifico-webfont.eot"); src: font("pacifico-webfont.eot?#iefix") format("embedded-opentype"), font("pacifico-webfont.woff2") format("woff2"), font("pacifico-webfont.woff") format("woff"), font("pacifico-webfont.ttf") format("truetype"), font("pacifico-webfont.svg#pacifico") format("svg"); font-weight: 400; font-style: normal; }

@font-face { font-family: 'Sansa Pro Bold'; src: font("sansapro-bold-webfont.eot"); src: font("sansapro-bold-webfont.eot?#iefix") format("embedded-opentype"), font("sansapro-bold-webfont.woff2") format("woff2"), font("sansapro-bold-webfont.woff") format("woff"), font("sansapro-bold-webfont.ttf") format("truetype"), font("sansapro-bold-webfont.svg#sansa_con_probold") format("svg"); font-weight: 400; font-style: normal; }

@font-face { font-family: 'Sansa Pro SemiBold'; src: font("sansapro-semibold-webfont.eot"); src: font("sansapro-semibold-webfont.eot?#iefix") format("embedded-opentype"), font("sansapro-semibold-webfont.woff2") format("woff2"), font("sansapro-semibold-webfont.woff") format("woff"), font("sansapro-semibold-webfont.ttf") format("truetype"), font("sansapro-semibold-webfont.svg#sansa_prosemibold") format("svg"); font-weight: 400; font-style: normal; }

/* ------------------------------------------------------------------------- BREAKPOINTS */
/* DESIGN FOUNDATIONS aspect-ratios ......... to support some objects, material and components breakpoints ........... to determine screen sizes and media queries colors ................ brand, neutral, vendor, state and other colors durations ............. to be used on animations and transitions font-families ......... to import and define the families font-sizes ............ fixed sizes catalog line-heights .......... unit less line heights radiuses .............. to be used as a border radius spaces ................ to determine common spacing and gutters */
/* ------------------------------------------------------------------------- ASPECT RATIOS Used to support some objects, material and components */
/* SAFE CHECKING Check that the chosen ratios are numbers. */
/* ------------------------------------------------------------------------- BREAKPOINTS Define all breakpoints Extracted from [Google Material Design] (https://www.google.com/design/spec/layout/adaptive-ui.html) */
/* ------------------------------------------------------------------------- COLORS Import all color groups and build the main color map */
/* ------------------------------------------------------------------------- COLORS BRAND Define brand colors and its priorities */
/* ------------------------------------------------------------------------- COLORS NEUTRAL Neutral colors are the ones without saturation */
/* ------------------------------------------------------------------------- COLORS STATE Define all state colors */
/* ------------------------------------------------------------------------- COLORS VENDOR Define all vendor colors */
/* ------------------------------------------------------------------------- COLORS OTHER Define all other colors */
/* ------------------------------------------------------------------------- DURATIONS Define durations foundation */
/* ------------------------------------------------------------------------- EASINGS Define easings foundation Based on Polaris: https://github.com/Shopify/polaris/blob/master/src/styles/foundation/easing.scss */
/* ------------------------------------------------------------------------- FONTS Font families & fallback */
/* ------------------------------------------------------------------------- FONT SIZES Values should be expressed in PX. If you need a relative unit based on that values, use the core functions on used context. */
/* SAFE CHECKING Check that the chosen values are pixel numbers. */
/* ------------------------------------------------------------------------- LINE HEIGHTS Values should be expressed unit less */
/* ------------------------------------------------------------------------- RADIUS Define radius foundation */
/* SAFE CHECKING Check that the chosen values are pixel numbers. */
/* ------------------------------------------------------------------------- shadowS Define shadows foundation Values should be expressed in PX. If you need a relative unit based on that values, use the core functions on used context. Colors are not included */
/* ------------------------------------------------------------------------- SPACES Modifying these variables can break the vertical rhythm. Should be modified with caution. Values should be expressed in PX. If you need a relative unit based on that values, use the core functions on used context. */
/* SAFE CHECKING Check that the chosen values are pixel numbers. */
/* ========================================================================== TOOLS SCSS mixins where project is built on clearfix ............... Micro clearfix sass-mq ................ Media query manager based on sass-mq quantity-queries ....... Third party quantity queries ========================================================================== */
/* ------------------------------------------------------------------------- CLEARFIX Mixin to drop micro clearfix into a selector. Further reading: http://www.cssmojo.com/the-very-latest-clearfix-reloaded/ */
/* ------------------------------------------------------------------------- SASS-MQ Based on https://github.com/sass-mq/sass-mq Adapted to Haiticss settings and workflow */
/*
- Example of usage:

// Default variables

.selector {
@include responsive-image();
}

// Change variables

.selector {
@include responsive-image('../images/', 'promo-image', 'png');
}

- Output ex.:

@media all and (max-width: 480px) {
.selector {
background-image: image("promo-image-s.png");
}
}
*/
/* line 8, ie7.scss */
.discover-holiday .swiper-container .swiper-wrapper .icon-group, .discover-holiday .swiper-container .swiper-wrapper .icon-heart, .discover-holiday .swiper-container .swiper-wrapper .icon-euro, .discover-holiday .swiper-container .swiper-wrapper .icon-sun, .discover-holiday .swiper-container .swiper-wrapper .icon-thumbs-up { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createElement("span")).className="ie-before"); }

/* line 11, ie7.scss */
.discover-holiday .swiper-container .swiper-wrapper .icon-group > .ie-before { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createTextNode('\f0c0'))); }

/* line 14, ie7.scss */
.discover-holiday .swiper-container .swiper-wrapper .icon-heart > .ie-before { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createTextNode('\f004'))); }

/* line 17, ie7.scss */
.discover-holiday .swiper-container .swiper-wrapper .icon-euro > .ie-before { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createTextNode('\f153'))); }

/* line 20, ie7.scss */
.discover-holiday .swiper-container .swiper-wrapper .icon-sun > .ie-before { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createTextNode('\f185'))); }

/* line 23, ie7.scss */
.discover-holiday .swiper-container .swiper-wrapper .icon-thumbs-up > .ie-before { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createTextNode('\f164'))); }

/* line 29, ie7.scss */
.discover-holiday .swiper-container .arrow-left, .discover-holiday .swiper-container .arrow-right { background-color: #909090; }

/* line 31, ie7.scss */
.discover-holiday .swiper-container .arrow-left i, .discover-holiday .swiper-container .arrow-right i { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createElement("span")).className="ie-before"); }

/* line 36, ie7.scss */
.discover-holiday .swiper-container .arrow-left i { right: 8px; }

/* line 38, ie7.scss */
.discover-holiday .swiper-container .arrow-left i > .ie-before { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createTextNode('\f104'))); }

/* line 43, ie7.scss */
.discover-holiday .swiper-container .arrow-right i > .ie-before { *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createTextNode('\f105'))); }

.rating-stars label { color: #CECECE; }

.rating-stars label.rating-stars-input-not-checked { color: #CECECE; }

.booking .departure-place.info-box .departure strong img.airline { display: none; }

.promo-header.header-001 { background-image: url("/images/promotion/header_001.jpg"); }
