/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  height: 100%;
  }

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
  }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
  font-weight: 500;
  }

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  }

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
  }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: 500;
  }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  }

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
  }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  }

sub {
  bottom: -0.25em;
  }

sup {
  top: -0.5em;
  }

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
  }

/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
form {
  margin: 0;
  }

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  /*white-space: normal;*/
  background: none;
  line-height: 1;
  font-size: 13px;
  }

select {
  cursor: pointer;
  }

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
  }

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea,
div, ul, li, input, textarea, select, fieldset {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  }

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }

/* Text Inputs
-----------------------------------------------*/

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  }

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
  }

/* File Uploads
-----------------------------------------------*/

input[type=file] {

  }

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  }

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  }

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
  }

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
  }

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
  }

/* Textarea
-----------------------------------------------*/

textarea {
  /* Move the label to the top */
  vertical-align: top;

  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
  }

/* Selects
-----------------------------------------------*/

select {

  }

select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
  }

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
  }

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
  }

/*
The wrapper is to be wrapped around the content of the website with the exclusion of the overlays (which should go over the wrapper)
*/
#wrapper {
  position: relative;
  z-index: 300;
  min-height: 100%;
  }

/*
The overlays wrapper will contain all pop-ups.
*/
#overlays {
  position: relative;
  z-index: 900;
  height: 0;
  }

/*The behaviour of the default popupMask*/
.popupMask {
  /*display:none;*/
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  text-align: center;
  padding: 40px;
  outline: none;
  }

/*popupWrapper is the box actually containing the content. We center it for obvious reasons.*/
.popupWrapper {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  background: white;
  text-align: left;
  }

.bejo_draggable_element .bejo_close,
.popupWrapper .bejo_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 3;
  }

table {
  border-collapse: collapse;
  }

/*
The #content wrapper will contain the website page.
*/
#content {
  position: relative;
  z-index: 5;
  }

/*Scale the container wrapper CLASS for responsive*/
/*container defaults to boxed 1250px*/
.container {
  padding: 0;
  width: 1250px;
  margin: 0 auto;
  }

.container.fluid {
  width: 100%;
  }

.tCenter {
  text-align: center;
  }

.tRight {
  text-align: right;
  }

.tLeft {
  text-align: left;
  }

.fRight {
  float: right;
  }

.fLeft {
  float: left;
  }

.fCenter {
  margin: 0 auto;
  float: none;
  }

/*Global columns settings*/
.row {
  position: relative;
  margin: 15px 0;
  }

.row.topRow {
  margin-top: 0;
  padding-top: 15px;
  }

.row.noMar {
  margin: 0;
  }

.row.padded {
  margin: 0;
  padding: 15px 0;
  }

.clearFix::after, #content::after, #overlays::after, #wrapper::after, .container::after, .row::after {
  content: "";
  display: block;
  clear: both;
  }

.clear {
  clear: both;
  }

.boxFix {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }

.column {
  display: block;
  float: left;
  padding: 0 15px;
  }

.column.fRight {
  float: right;
  }

/*
Set the default colums
s = phones ( 768px -)
m = tablets portait / big phones (768px - 1024px)
l = tablet landscape / small desktop (1024px -)
xl = big desktop (1200px +)
*/

.s-col-100, .m-col-100, .xl-col-100 {
  width: 100%;
  }

.s-col-90, .m-col-90, .xl-col-90 {
  width: 90%;
  }

.s-col-85, .m-col-85, .xl-col-85 {
  width: 85%;
  }

.s-col-80, .m-col-80, .xl-col-80 {
  width: 80%;
  }

.s-col-70, .m-col-70, .xl-col-70 {
  width: 70%;
  }

.s-col-75, .m-col-75, .xl-col-75 {
  width: 75%;
  }

.s-col-66, .m-col-66, .xl-col-66 {
  width: calc(100% / 3 * 2);
  }


.s-col-60, .m-col-60, .xl-col-60 {
  width: 50%;
  }

.s-col-50, .m-col-50, .xl-col-50 {
  width: 50%;
  }

.s-col-40, .m-col-40, .xl-col-40 {
  width: 40%;
  }

.s-col-33, .m-col-33, .xl-col-33 {
  width: calc(100% / 3);
  }

.s-col-30, .m-col-30, .xl-col-30 {
  width: 30%;
  }

.s-col-25, .m-col-25, .xl-col-25 {
  width: 25%;
  }

.s-col-20, .m-col-20, .xl-col-20 {
  width: 20%;
  }

.s-col-10, .m-col-10, .xl-col-10 {
  width: 10%;
  }

.s-col-5, .m-col-5, .xl-col-5 {
  width: 5%;
  }

/*L is default, so override previous by default.*/
.l-col-100 {
  width: 100%;
  }

.l-col-90 {
  width: 90%;
  }

.l-col-85 {
  width: 85%;
  }

.l-col-80 {
  width: 80%;
  }

.l-col-75 {
  width: 75%;
  }

.l-col-70 {
  width: 70%;
  }

.l-col-66 {
  width: calc(100% / 3 * 2);
  }

.l-col-60 {
  width: 60%;

  }

.l-col-50 {
  width: 50%;
  }

.l-col-40 {
  width: 40%;
  }

.l-col-33 {
  width: calc(100% / 3);

  }

.l-col-25 {
  width: 25%;

  }

.l-col-20 {
  width: 20%;

  }

.l-col-10 {
  width: 10%;
  }

.hidden {
  display: none;
  }

.visible {
  display: block;
  }

.column.noPad {
  padding: 0;
  }

/*Media queries*/
@media only screen and (max-width: 1023px), screen and (max-device-width: 1023px) {
  .container {
    width: 100%;
    }

  .m-col-100 {
    width: 100%;
    }

  .m-col-90 {
    width: 90%;
    }

  .m-col-85 {
    width: 85%;
    }

  .m-col-80 {
    width: 80%;
    }

  .m-col-75 {
    width: 75%;
    }

  .m-col-70 {
    width: 70%;
    }

  .m-col-66 {
    width: calc(100% / 3 * 2);
    }

  .m-col-60 {
    width: 60%;
    }

  .m-col-40 {
    width: 40%;
    }

  .m-col-33 {
    width: calc(100% / 3);
    }

  .m-col-25 {
    width: 25%;
    }

  .m-col-20 {
    width: 20%;
    }

  .m-col-10 {
    width: 10%;
    }
  }

@media only screen and (max-width: 767px), screen and (max-device-width: 767px) {
  .s-col-100 {
    width: 100%;
    }

  .s-col-90 {
    width: 90%;
    }

  .s-col-85 {
    width: 85%;
    }

  .s-col-80 {
    width: 80%;
    }

  .s-col-75 {
    width: 75%;
    }

  .s-col-70 {
    width: 70%;
    }

  .s-col-66 {
    width: calc(100% / 3 * 2);
    }

  .s-col-60 {
    width: 60%;
    }


  .s-col-50 {
    width: 50%;
    }

  .s-col-40 {
    width: 40%;
    }

  .s-col-33 {
    width: calc(100% / 3);
    }

  .s-col-25 {
    width: 25%;
    }

  .s-col-20 {
    width: 20%;
    }

  .s-col-10 {
    width: 10%;
    }
  }

@media only screen and (min-width: 1200px), screen and (min-device-width: 1200px) {
  .xl-col-100 {
    width: 100%;
    }

  .xl-col-90 {
    width: 90%;
    }

  .xl-col-85 {
    width: 85%;
    }

  .xl-col-80 {
    width: 80%;
    }

  .xl-col-75 {
    width: 75%;
    }

  .xl-col-70 {
    width: 70%;
    }

  .xl-col-66 {
    width: calc(100% / 3 * 2);
    }

  .xl-col-60 {
    width: 60%;
    }

  .xl-col-50 {
    width: 50%;
    }

  .xl-col-40 {
    width: 40%;
    }

  .xl-col-33 {
    width: calc(100% / 3);
    }

  .xl-col-25 {
    width: 25%;
    }

  .xl-col-20 {
    width: 20%;
    }

  .xl-col-10 {
    width: 10%;
    }
  }

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  }

/**start flex handlers**/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  }

.flex-row {
  flex-direction: row;
  flex-flow: row wrap;
  }

.flex-column {
  flex-direction: column;
  flex-flow: column wrap;
  }

.flex-item {
  display: flex;
  flex: auto;
  }

/**end flex handlers **/