﻿/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
@font-face {
  font-family: "OpenSans-Bold";
  src: url("Font/OpenSans-ExtraBold.ttf") format("truetype");
}

/* TYPOGRAFI */
html, body {
  font-size: 16px;
  min-height: 500px;
}
@media (max-width: 767px) {
  html, body {
    font-size: 14px;
  }
}

body {
  position: relative;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  body {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  body.open {
    overflow: hidden;
    overflow-y: hidden;
  }
}
body.active {
  overflow: hidden;
  overflow-y: hidden;
}

h1, h2, h3, h4 {
  color: #363e42;
}

h1, .headlineCenter, .bannerHeadline {
  font-family: "Arial", "OpenSans-Bold", sans-serif;
  font-size: 2.5rem;
  /*font-style: normal;
     font-variant: normal;
     font-weight: 400;*/
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
  color: #363e42;
}

h2 {
  font-family: "Arial", "OpenSans-Bold", sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  h2 {
    text-align: left;
  }
}
@media (max-width: 767px) {
  h2.headlineCenter {
    text-align: left;
  }
}
h2 .black {
  color: #000000;
  font-family: "Arial", "OpenSans-Bold", sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  text-transform: uppercase;
}

h3 {
  font-family: "Arial", "OpenSans-Bold", sans-serif;
  font-size: 1.125rem;
  /*font-style: normal;
     font-variant: normal;
     font-weight: 400;*/
  line-height: 1.25;
  text-transform: uppercase;
}

h4 {
  font-family: "Arial", "OpenSans-Bold", sans-serif;
  font-size: 1rem;
  /*font-style: normal;
     font-variant: normal;
     font-weight: 400;*/
  line-height: 1;
  text-transform: uppercase;
}

p {
  padding-bottom: 15px;
}

p, span, li {
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 28px;
  color: #363e42;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  p, span, li {
    line-height: 22px;
  }
}

a {
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 28px;
  color: #72b1d2;
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
}
a span {
  color: #72b1d2;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
  border: none;
}

strong, bold {
  font-weight: 700;
}
strong a, strong p, strong span, bold a, bold p, bold span {
  font-weight: 700;
}

sup, sub {
  font-size: 0.75rem;
}

ul.custom-ul {
  margin: 0;
  padding: 0;
}
ul.custom-ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-text, .breadCrumb ul li a {
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  line-height: 26px;
}

.reserved {
  font-family: "Open Sans";
  font-size: 10px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 16px;
}

a .link:after {
  content: "";
  background-image: url("Svg/arrow-taglineBlue.svg");
  margin-left: 7px;
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
a:hover .link:after {
  -webkit-animation: toRightFromLeft 0.5s forwards;
  -moz-animation: toRightFromLeft 0.5s forwards;
  animation: toRightFromLeft 0.5s forwards;
}
a:hover {
  color: #72b1d2;
}

.link:after {
  content: "";
  background-image: url("Svg/arrow-taglineBlue.svg");
  margin-left: 6px;
  display: inline-block;
  width: 18px;
  height: 19px;
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
.link:hover:after {
  -webkit-animation: toRightFromLeft 0.5s forwards;
  -moz-animation: toRightFromLeft 0.5s forwards;
  animation: toRightFromLeft 0.5s forwards;
}
.link a {
  color: #72b1d2;
}
.link a:hover {
  color: #72b1d2;
}

hr {
  border-top: 1px solid #333333;
  width: 70px;
  margin: 20px 0;
  text-align: left;
}
hr.headlineCenterBorder {
  margin: 20px auto 0;
}

img {
  width: 100%;
}

[data-cookie-button] {
  border: none;
  display: inline-block;
  background-color: transparent;
  text-decoration: underline;
  font-size: 1rem;
  padding: 0;
}

/* BORDERS*/
.content-border-frame {
  padding: 70px 30px 0;
}
@media (max-width: 767px) {
  .content-border-frame {
    padding: 55px 10px 0;
  }
}

#borders .border {
  position: fixed;
  z-index: 3;
  background: #ffffff;
}
#borders .border.hor {
  left: 0;
  width: 100%;
  height: 30px;
}
@media (max-width: 767px) {
  #borders .border.hor {
    height: 10px;
  }
}
#borders .border.vert {
  top: 0;
  width: 30px;
  height: 100%;
}
@media (max-width: 767px) {
  #borders .border.vert {
    width: 10px;
  }
}
#borders .border.bot {
  bottom: 0;
}
#borders .border.left {
  left: 0;
}
#borders .border.right {
  right: 0;
}

/* Load overlay */
.load-effect {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  z-index: 4000;
}

/* SECTIONS */
section {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 20px;
  }
}

.render-section {
  background: white;
  padding-bottom: 30px;
}
@media (max-width: 1200px) {
  .render-section {
    margin-bottom: 210px;
  }
}
@media (max-width: 991px) {
  .render-section {
    margin-bottom: 500px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .render-section {
    margin-bottom: 250px;
  }
}
@media (max-width: 767px) {
  .render-section {
    margin-bottom: 220px;
    padding-bottom: 15px;
  }
}
@media (min-width: 320px) and (max-width: 359px) {
  .render-section {
    margin-bottom: 270px;
    padding-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .container-margin {
    margin-left: -15px;
    margin-right: -15px;
  }
}
/* FOOTER */
.footer {
  background-color: #333333;
  padding: 50px 0 30px;
  position: fixed;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 0 20px;
    left: 0;
    right: 0;
    bottom: 10px;
  }
  .footer .extra-padding {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer .logo {
  margin-bottom: 20px;
}
.footer .logo img {
  width: 200px;
}
.footer .text p {
  color: #7d8180;
  font-size: 12px;
  line-height: 18px;
}
.footer .text p a {
  padding: inherit;
}

/* CUSTOME GRID*/
.promobox .grid-section .container-fluid .column .grid-image {
  padding-bottom: 30px;
}
.promobox .grid-section .container-fluid .column .grid-content .promoHeadline {
  font-family: "Arial";
  font-size: 3.125rem;
  /*font-style: normal;
                    font-variant: normal;
                    font-weight: bold;*/
  line-height: 1;
  text-transform: uppercase;
}
.promobox .grid-section .container-fluid .column:nth-child(odd) .grid-image {
  padding-left: 0;
}
.promobox .grid-section .container-fluid .column:nth-child(even) .grid-image {
  padding-right: 0;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .promobox .grid-section .container-fluid .column .grid-content {
    margin-left: 0;
  }
  .promobox .grid-section .container-fluid .column .grid-content .promoHeadline {
    font-size: 2.8rem;
  }
}
@media (max-width: 992px) {
  .promobox .grid-section .container-fluid .column .grid-image {
    /*padding: 0 0 30px;*/
  }
  .promobox .grid-section .container-fluid .column .grid-content .promoHeadline {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .promobox .grid-section .container-fluid .column .grid-image {
    padding: 0 0 20px;
  }
  .promobox .grid-section .container-fluid .column .grid-content .promoHeadline {
    font-size: 2rem;
  }
}

.umb-grid .grid-section .column {
  margin-bottom: 40px;
}
.umb-grid .grid-section .column .text {
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .umb-grid .grid-section .column {
    margin-bottom: 30px;
  }
  .umb-grid .grid-section .column .text {
    margin-left: 0;
    margin-right: 0;
  }
}

.collapse-wrapper .more-less .more, .collapse-wrapper .more-less .less {
  position: relative;
}
.collapse-wrapper .more-less .less {
  display: none;
}
.collapse-wrapper .more-less .plus, .collapse-wrapper .more-less .minus {
  content: "";
  background-image: url("Svg/icon-plus-blue.svg");
  margin-left: 5px;
  display: inline-block;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  vertical-align: initial;
  position: absolute;
  top: 7px;
}
.collapse-wrapper .more-less .minus {
  background-image: url("Svg/icon-minus-blue.svg");
  top: 9px;
}
.collapse-wrapper .more-less[aria-expanded=true] .more {
  display: none;
}
.collapse-wrapper .more-less[aria-expanded=true] .less {
  display: inline-block;
}

/* CUSTOME BOOTSTRAP CENTERED COLUMNS STYLES */
.row-centered {
  text-align: center;
  font-size: 0;
}

.col-centered {
  display: inline-block;
  float: none;
}

/*CUSTOME BOOTSTRAP COL FOR 5 IN A ROW (20%)*/
.col-xs-5cust,
.col-sm-5cust,
.col-md-5cust,
.col-lg-5cust {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5cust {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5cust {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-5cust {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5cust {
    width: 20%;
    float: left;
  }
}
/*CUSTOME BOOTSTRAP CONTAINER FOR EXTRA STEP*/
.extra-padding {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .less-margin-xs {
    margin-left: -15px;
    margin-right: -15px;
  }
  .less-margin-phone .image {
    margin-left: -15px;
    margin-right: -15px;
  }
  .less-padding-xs {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .container {
    width: 710px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 910px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1110px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1220px;
  }
}
@media (min-width: 1366px) {
  .container {
    width: 1305px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1523px;
  }
}
@keyframes come-in {
  to {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .reveal {
    opacity: 0;
  }
  .reveal-transform, .reveal-transform-fast {
    webkit-backface-visibility: hidden;
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0) !important;
    -webkit-duration: 0.4s;
    -moz-duration: 0.4s;
    -o-duration: 0.4s;
    transition-duration: 0.4s;
    transition-delay: 0.1s;
  }
  .reveal-transform.animate, .reveal-transform-fast.animate {
    -moz-transform: scale(1, 1) !important;
    -ms-transform: scale(1, 1) !important;
    -o-transform: scale(1, 1) !important;
    transform: scale(1, 1) !important;
  }
  .reveal-transform-fast {
    transition-delay: 0s;
  }
  .animated {
    opacity: 1;
    -ms-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
    animation: come-in 0.5s ease forwards;
  }
  .animated:nth-child(2) {
    animation-duration: 0.7s;
  }
  .animated:nth-child(3) {
    animation-duration: 0.9s;
  }
  .animated:nth-child(4) {
    animation-duration: 1.1s;
  }
}
.social-media div {
  float: left;
}

.members span {
  display: block;
}

.two-col-layout .right-boxes {
  z-index: 2;
}
.two-col-layout .right-boxes .rightbox {
  padding: 25px 15px 10px;
}
.two-col-layout .right-boxes .rightbox.textbox img, .two-col-layout .right-boxes .rightbox.external-linkbox img, .two-col-layout .right-boxes .rightbox.internal-linkbox img, .two-col-layout .right-boxes .rightbox.contact-linkbox img {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .two-col-layout .right-boxes .rightbox.textbox img, .two-col-layout .right-boxes .rightbox.external-linkbox img, .two-col-layout .right-boxes .rightbox.internal-linkbox img, .two-col-layout .right-boxes .rightbox.contact-linkbox img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .two-col-layout .right-boxes .rightbox.textbox img, .two-col-layout .right-boxes .rightbox.external-linkbox img, .two-col-layout .right-boxes .rightbox.internal-linkbox img, .two-col-layout .right-boxes .rightbox.contact-linkbox img {
    width: 100%;
  }
}
.two-col-layout .right-boxes .rightbox.textbox img {
  margin-bottom: 15px;
}
.two-col-layout .right-boxes .rightbox.external-linkbox ul li, .two-col-layout .right-boxes .rightbox.internal-linkbox ul li {
  margin-bottom: 5px;
}
.two-col-layout .right-boxes .rightbox.contact-linkbox .text label {
  display: block;
}
.two-col-layout .right-boxes .rightbox.contact-linkbox .text label.name {
  font-weight: 700;
}
.two-col-layout .right-boxes .rightbox.contact-linkbox .text.top h3 {
  margin-bottom: 10px;
}
.two-col-layout .right-boxes .rightbox.contact-linkbox .member {
  margin-bottom: 50px;
}
.two-col-layout .right-boxes .rightbox .text hr {
  margin: 15px 0;
}
.two-col-layout .right-boxes .rightbox .text p {
  font-size: 0.9rem;
  line-height: 24px;
}
.two-col-layout .bg-color {
  background-color: #f8f8f8;
  position: absolute;
  right: 0;
}

@media (max-width: 1200px) {
  .two-col-layout .right-boxes .rightbox {
    padding: 25px 0 50px;
  }
  .two-col-layout .right-boxes .rightbox.textbox img {
    margin-bottom: 20px;
  }
  .two-col-layout .right-boxes .rightbox.external-linkbox ul li {
    margin-bottom: 5px;
  }
  .two-col-layout .right-boxes .rightbox.internal-linkbox ul li {
    margin-bottom: 5px;
  }
  .two-col-layout .right-boxes .rightbox.contact-linkbox .text label {
    display: block;
  }
  .two-col-layout .right-boxes .rightbox.contact-linkbox .text label.name {
    font-weight: 700;
  }
  .two-col-layout .right-boxes .rightbox.contact-linkbox .text.top {
    margin-bottom: 20px;
  }
  .two-col-layout .right-boxes .rightbox.contact-linkbox .text.top h3 {
    margin-bottom: 10px;
  }
  .two-col-layout .right-boxes .rightbox.contact-linkbox .member {
    margin-bottom: 50px;
  }
  .two-col-layout .bg-color {
    background-color: #f8f8f8;
    position: absolute;
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .two-col-layout .right-boxes .rightbox {
    padding: 0 40% 30px 0;
  }
}
@media (max-width: 767px) {
  .two-col-layout .right-boxes .rightbox {
    padding: 0 0 30px;
  }
  .two-col-layout .right-boxes .rightbox .text p {
    font-size: 0.95rem;
  }
  .two-col-layout .right-boxes .rightbox.internal-linkbox ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .two-col-layout .bg-color {
    display: none;
  }
  .two-col-layout .mobile-background {
    background: #f8f8f8;
    padding-top: 15px;
  }
}
.social-buttons {
  height: 35px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.social-buttons span {
  padding: 5px 0;
  vertical-align: top;
  display: inline-block;
  color: #7d8180;
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  .social-buttons {
    margin-left: 0;
  }
}

.social-button {
  display: inline-block;
  background-color: #f1f1f1;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin: 0 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0.99;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-button:before {
  content: "";
  background-color: #000;
  width: 120%;
  height: 120%;
  position: absolute;
  top: 90%;
  left: -110%;
  transform: rotate(45deg);
  transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-button .fa {
  font-size: 16px;
  vertical-align: middle;
  transform: scale(0.8);
  transition: all 0.1s cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-button.facebook:before {
  background-color: #3B5998;
}
.social-button.facebook .fa {
  color: #3B5998;
}
.social-button.twitter:before {
  background-color: #33ccff;
}
.social-button.twitter .fa {
  color: #33ccff;
}
.social-button.google:before {
  background-color: #DC4A38;
}
.social-button.google .fa {
  color: #DC4A38;
}
.social-button.linkedin:before {
  background-color: #0077B5;
}
.social-button.linkedin .fa {
  color: #0077B5;
}
.social-button.email:before {
  background-color: #004A66;
}
.social-button.email .fa {
  color: #004A66;
}
.social-button:hover {
  cursor: pointer;
}
.social-button:hover:before {
  top: -10%;
  left: -10%;
}
.social-button:hover .fa {
  color: #fff;
  transform: scale(1);
}

.thanks {
  display: none;
  padding-top: 10px;
}
.thanks h3, .thanks p {
  color: #ffffff;
}

select {
  line-height: 1.3;
  background-image: url("Svg/icon-down.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 21px) calc(1em + 6px), calc(100% - 16px) calc(1em + 2px), 100% 0;
  background-size: 10px 10px, 10px 10px, 2.5em 2.5em;
  background-repeat: no-repeat;
  border-radius: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input {
  line-height: 1.3;
}

button.costom[type=submit], button.costom.reset-btn {
  width: auto;
  float: right;
  background-color: transparent;
  color: #ffffff;
  text-transform: uppercase;
  padding: 30px 0;
  font-weight: 400;
  position: relative;
  border: none;
}
button.costom[type=submit] span, button.costom.reset-btn span {
  font-family: "Arial", "OpenSans-Bold";
  color: white;
  font-weight: 400;
  /*font-size: 2.143rem;*/
  font-size: 1.5rem;
  position: relative;
}
button.costom[type=submit] span.blue-arrow, button.costom.reset-btn span.blue-arrow {
  color: #022d4d;
}
button.costom[type=submit] span.blue-arrow:after, button.costom.reset-btn span.blue-arrow:after {
  background-image: url("Svg/arrow-darkblue.svg");
}
button.costom[type=submit] span:after, button.costom.reset-btn span:after {
  content: "";
  background-image: url("Svg/arrow-white.svg");
  margin-left: 12px;
  display: inline-block;
  width: 28px;
  height: 18px;
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  button.costom[type=submit] span:after, button.costom.reset-btn span:after {
    width: 26px;
    height: 17px;
  }
}
button.costom[type=submit] span.contact, button.costom.reset-btn span.contact {
  font-size: 1.5rem;
}
button.costom[type=submit] span.contact:after, button.costom.reset-btn span.contact:after {
  width: 28px;
  height: 18px;
  margin-left: 10px;
  /*@include phone {
  	width: 21px;
  	height: 18px;
  }*/
}
@media (max-width: 767px) {
  button.costom[type=submit] span.contact:after, button.costom.reset-btn span.contact:after {
    width: 26px;
    height: 16px;
  }
}
button.costom[type=submit]:hover > span:after, button.costom.reset-btn:hover > span:after {
  -webkit-animation: toRightFromLeft 0.5s forwards;
  -moz-animation: toRightFromLeft 0.5s forwards;
  animation: toRightFromLeft 0.5s forwards;
}
@media (max-width: 767px) {
  button.costom#contact-submit {
    float: left;
  }
}

::-webkit-input-placeholder {
  color: #333333;
}

:-moz-placeholder { /* Firefox 18- */
  color: #333333;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #333333;
}

:-ms-input-placeholder {
  color: #333333;
}

.field-validation-error {
  position: absolute;
  top: -5px;
  right: 20px;
}
.field-validation-error span {
  color: #ffffff;
  font-style: italic;
  font-size: 0.9rem;
}

.checkbox-area .field-validation-error {
  top: -23px;
  left: 15px;
  right: auto;
}

.accept .field-validation-error {
  /*left: 0;
  position: relative;*/
}

.custom-file-input {
  display: none;
}

.addthis_sharing_toolbox {
  position: absolute !important;
  display: none !important;
  /*left: 86px !important;
     z-index: 999 !important;*/
  /*opacity: 0 !important;
     a{
         margin-right: 15px !important;
     }
     @media (max-width: $extra-small) {
         left: 60px !important;
         a{
             margin-right: 14px !important;
         }
     }*/
}

/*SKAL JUSTERES*/
.content-border-frame {
  z-index: 2;
  position: relative;
}
.footer {
  z-index: 0;
}
.footer .text a {
  font-size: 12px;
  line-height: 18px;
  color: #7d8180;
  text-decoration: underline;
  padding: 10px 0 0;
  display: inline-block;
}

.bg-color {
  bottom: 0;
}

p span.small {
  font-size: 13px;
}
p span.small a {
  font-size: 13px;
}
p span.small a span.link {
  font-size: 13px;
}
p span.small span.link {
  font-size: 13px;
}

span.small {
  font-size: 13px;
}
span.small a {
  font-size: 13px;
}
span.small a span.link {
  font-size: 13px;
}
span.small span.link {
  font-size: 13px;
}

.btn-loader {
  display: none;
  height: 100%;
  background: inherit;
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 1;
}
.btn-loader.align-left {
  right: auto;
  left: 15px;
}
.btn-loader .loader-14 {
  border-radius: 50%;
  box-shadow: 0 1em 0 -0.2em #002d48;
  position: relative;
  animation: loader-14 0.6s ease-in-out alternate infinite;
  animation-delay: 0.32s;
  top: 1.4em;
}
.btn-loader .loader-14:after, .btn-loader .loader-14:before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  box-shadow: inherit;
  animation: inherit;
}
.btn-loader .loader-14:before {
  left: -1em;
  animation-delay: 0.48s;
}
.btn-loader .loader-14:after {
  right: -1em;
  animation-delay: 0.16s;
}
@keyframes loader-14 {
  0% {
    box-shadow: 0 1.7em 0 -0.2em #002d48;
  }
  100% {
    box-shadow: 0 1.2em 0 -0.2em #002d48;
  }
}
.btn-loader [class*=loader-] {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: #002d48;
  vertical-align: middle;
  pointer-events: none;
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
/* NAVIGATION */
.navigation-border-frame {
  padding: 0 30px;
  background-color: #ffffff;
  height: 70px;
  width: 100%;
  position: fixed;
  z-index: 999;
}
.navigation-border-frame .logo {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: inline;
  padding: 10px 0;
}
.navigation-border-frame .logo img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: auto;
  width: 180px;
  margin-top: 12px;
}
@media (max-width: 992px) {
  .navigation-border-frame.open .logo {
    /*display: none;*/
  }
}
@media (max-width: 767px) {
  .navigation-border-frame {
    padding: 0 10px;
    height: 55px;
  }
  .navigation-border-frame .logo img {
    height: auto;
    width: 120px;
    margin-top: 12px;
  }
}

#login-area .member-modal-btn {
  display: inline;
  right: 165px;
  position: fixed;
  width: 70px;
  z-index: 3000;
  border: none;
  height: 70px;
  width: 70px;
  background-color: #aebfd2;
}
#login-area .member-modal-btn span.icon {
  /*display: inline-block;
  vertical-align: middle;
  background-size: cover;
  background-position: center;*/
  background-repeat: no-repeat;
  width: 20px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#login-area .member-modal-btn span.text {
  font-size: 10px;
  position: absolute;
  bottom: 6px;
  width: 100%;
  left: 0;
  color: #002d48;
}
#login-area .member-modal-btn.login span.icon {
  background-image: url(Svg/login.svg);
}
#login-area .member-modal-btn.logout span.icon {
  background-image: url("Svg/logout.svg");
  top: 40%;
  width: 18px;
}
#login-area .member-modal-btn.active span.icon {
  background-image: url("Svg/lock-close.svg");
  top: 55%;
}
@media (max-width: 767px) {
  #login-area .member-modal-btn {
    right: 110px;
    width: 64px;
    height: 55px;
  }
  #login-area .member-modal-btn span.icon {
    width: 15px;
    height: 20px;
  }
}

#menu {
  display: inline;
  right: 30px;
  position: fixed;
  width: 135px;
  -moz-transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 3001;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
#menu.open {
  -webkit-transform: translateX(-270px);
  -moz-transform: translateX(-270px);
  -o-transform: translateX(-270px);
  transform: translateX(-270px);
}
@media (max-width: 767px) {
  #menu.open {
    width: 100%;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
}
#menu button {
  border: none;
  height: 70px;
  width: 135px;
  padding: 0;
  background-color: #002d48;
  color: #ffffff;
}
#menu button span {
  display: inline-block;
  vertical-align: middle;
}
#menu button .menu-text {
  padding: 6px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
}
#menu button .menu-icon {
  background-image: url("Svg/menu-open.svg");
  height: 25px;
  width: 25px;
  background-repeat: no-repeat;
}
#menu button .menu-icon.open {
  background-image: url("Svg/menu-close.svg");
}
@media (max-width: 767px) {
  #menu button .menu-icon {
    height: 23px;
    width: 22px;
  }
}
@media (max-width: 767px) {
  #menu {
    right: 10px;
    width: 100px;
  }
  #menu button {
    height: 55px;
    width: 100px;
  }
  #menu button .menu-text {
    padding: 6px;
    font-size: 1rem;
  }
  #menu button .menu-icon {
    background-image: url("Svg/menu-open.svg");
    height: 23px;
    width: 22px;
    background-repeat: no-repeat;
  }
  #menu button .menu-icon.open {
    background-image: url("Svg/menu-close.svg");
    height: 18px;
    width: 18px;
  }
}

#menu-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 3000;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  padding: 120px 0 40px;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  width: 360px;
}
@media (max-width: 767px) {
  #menu-content {
    padding: 100px 50px 40px;
  }
}
#menu-content.open {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media (max-width: 767px) {
  #menu-content.open {
    width: 100%;
  }
}
#menu-content .levelOne {
  padding: 0 45px;
}
@media (max-width: 767px) {
  #menu-content .levelOne {
    padding: 0;
  }
}
#menu-content .levelOne .levelOneItem {
  margin-bottom: 30px;
  opacity: 0;
  top: 20px;
  visibility: hidden;
  webkit-transition-property: top, opacity;
  -webkit-transition-duration: 0s;
  -webkit-transition-delay: 0s;
  transition-property: top, opacity;
  transition-duration: 0s;
  transition-delay: 0s;
  padding-right: 15px;
}
#menu-content .levelOne .levelOneItem span {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  font-size: 0.9rem;
  display: block;
  color: #363e42;
  line-height: 24px;
  font-weight: 400;
  font-family: "Arial", "OpenSans-Bold";
  text-transform: uppercase;
}
#menu-content .levelOne .levelOneItem span.levelOneMenu {
  position: relative;
  height: 100%;
  transition: 0.3s ease-in-out;
  display: inline-block;
}
#menu-content .levelOne .levelOneItem span.levelOneMenu:hover > .button__underline {
  transform-origin: left;
  transform: scaleX(1);
}
#menu-content .levelOne .levelOneItem span.levelOneMenu .button__underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #363e42;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s ease-in-out;
  transition-property: transform;
  z-index: -1;
}
@media (max-width: 767px) {
  #menu-content .levelOne .levelOneItem span.levelOneMenu .button__underline {
    display: none;
  }
}
#menu-content .levelOne .levelOneItem:nth-child(3n+1) {
  clear: both;
}
#menu-content .levelTwo .levelTwoItem {
  position: relative;
  opacity: 0;
  visibility: hidden;
  left: 0;
  -o-transition-property: transform, opacity;
  -o-transition-duration: 0s;
  -o-transition-delay: 0s;
  -moz-transition-property: transform, opacity;
  -moz-transition-duration: 0s;
  -moz-transition-delay: 0s;
  webkit-transition-property: transform, opacity;
  -webkit-transition-duration: 0s;
  -webkit-transition-delay: 0s;
  transition-property: transform, opacity;
  transition-duration: 0s;
  transition-delay: 0s;
  -o-transform: translate3d(-20px, 0px, 0px);
  -webkit-transform: translate3d(-20px, 0px, 0px);
  -moz-transform: translate3d(-20px, 0px, 0px);
  transform: translate3d(-20px, 0px, 0px);
}
#menu-content .levelTwo .levelTwoItem a {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 0.85rem;
  color: #72b1d2;
  line-height: 30px;
  font-weight: 400;
  position: relative;
  transition: 0.3s ease-in-out;
  display: inline-block;
}
#menu-content .levelTwo .levelTwoItem a:hover > .button__underline {
  transform-origin: left;
  transform: scaleX(1);
}
#menu-content .levelTwo .levelTwoItem a .button__underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #72b1d2;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s ease-in-out;
  transition-property: transform;
  z-index: -1;
}
@media (max-width: 767px) {
  #menu-content .levelTwo .levelTwoItem a .button__underline {
    display: none;
  }
}
#menu-content .levelTwo li p {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1rem;
  color: #72b1d2;
  line-height: 30px;
  font-weight: 400;
  position: relative;
  transition: 0.3s ease-in-out;
  display: inline-block;
  padding-bottom: 0;
}

#overlay {
  visibility: hidden;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  opacity: 0;
  -moz-transition: visibility 0s, opacity 0.35s ease-in;
  -o-transition: visibility 0s, opacity 0.35s ease-in;
  -webkit-transition: visibility 0s, opacity 0.35s ease-in;
  transition: visibility 0s, opacity 0.35s ease-in;
}
#overlay.open {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  -moz-transition: visibility 0s, opacity 0.35s ease-in;
  -o-transition: visibility 0s, opacity 0.35s ease-in;
  -webkit-transition: visibility 0s, opacity 0.35s ease-in;
  transition: visibility 0s, opacity 0.35s ease-in;
}

@media (max-width: 767px) {
  #menu-content {
    padding: 0;
    height: 100%;
  }
  #menu-content .levelOne {
    padding: 40px 15px 15px;
  }
  #menu-content .levelOne .levelOneItem {
    margin-bottom: 0;
    opacity: 0;
    top: 20px;
    position: relative;
    border-bottom: 1px solid #ededed;
    padding: 10px 20px;
  }
  #menu-content .levelOne .levelOneItem span {
    font-size: 1.28rem;
    color: #000000;
    line-height: 28px;
    font-weight: 400;
    text-transform: uppercase;
  }
  #menu-content .levelOne .levelOneItem:nth-child(3n+1) {
    clear: none;
  }
  #menu-content .levelOne .levelOneItem .icon-toggle {
    position: absolute;
    right: 10px;
    top: 18px;
    width: 50px;
    height: 25px;
    cursor: pointer;
    top: 8px;
    height: 32px;
    padding-top: 10px;
  }
  #menu-content .levelOne .levelOneItem .icon-toggle img {
    height: 12px;
    width: 12px;
    float: right;
    margin-right: 10px;
  }
  #menu-content .levelOne .levelOneItem .icon-toggle .plus-icon {
    display: block;
  }
  #menu-content .levelOne .levelOneItem .icon-toggle .plus-icon.active {
    display: none;
  }
  #menu-content .levelOne .levelOneItem .icon-toggle .minus-icon {
    display: none;
  }
  #menu-content .levelOne .levelOneItem .icon-toggle .minus-icon.active {
    display: block;
  }
  #menu-content .levelTwo {
    opacity: 0;
    max-height: 0;
    transition: all 0.3s;
  }
  #menu-content .levelTwo.active {
    opacity: 1;
    max-height: 150px;
    transition: all 0.5s;
  }
  #menu-content .levelTwo .levelTwoItem {
    position: relative;
    opacity: 1;
    visibility: visible;
    left: 0;
    padding: 5px 0;
  }
  #menu-content .levelTwo .levelTwoItem a {
    font-size: 1.1rem;
    color: #72b1d2;
    line-height: 28px;
    font-weight: 400;
  }
}
/* ANIMATION */
#menu-content.open .slideDown {
  visibility: visible;
  opacity: 1;
  top: 0;
  webkit-transition-property: opacity;
  -webkit-transition-duration: 0.6s;
  -webkit-transition-delay: 0.3s;
  transition-property: opacity;
  transition-duration: 0.6s;
  transition-delay: 0.3s;
}
@media (max-width: 767px) {
  #menu-content.open .slideDown {
    top: 20px;
  }
}
#menu-content.open .slideIn {
  visibility: visible;
  opacity: 1;
  webkit-transition-property: transform, opacity;
  -webkit-transition-duration: 0.6s;
  -webkit-transition-delay: 0.6s;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-delay: 0.5s;
  -o-transform: translate3d(0, 0px, 0px);
  -webkit-transform: translate3d(0, 0px, 0px);
  -moz-transform: translate3d(0, 0px, 0px);
  transform: translate3d(0, 0px, 0px);
}

@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toRightFromLeft {
  49% {
    -moz-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
/*TOP BANNER*/
.loginpage .topBanner .image {
  height: 300px;
}

.topBanner {
  position: relative;
}
.topBanner .image {
  height: 585px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.topBanner .banner-content {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 73, 100, 0.5);
  padding: 35px 50px 30px;
  margin: 0 15px;
  min-width: 768px;
}
@media (min-width: 992px) {
  .topBanner .banner-content {
    max-width: 75%;
  }
}
.topBanner .banner-content h1, .topBanner .banner-content p, .topBanner .banner-content span, .topBanner .banner-content a {
  color: #ffffff;
}
.topBanner .banner-content .border {
  width: 125px;
  border-top: 1px solid #ffffff;
  display: block;
  height: 30px;
  float: left;
  top: 13px;
  left: 6px;
  position: relative;
}
.topBanner .banner-content .text {
  float: left;
  width: calc(100% - 125px);
  padding-left: 30px;
  min-height: 41px;
}
.topBanner .banner-content .breadCrumb {
  clear: both;
}
.topBanner .banner-content .breadCrumb ul li {
  display: inline-block;
  text-transform: uppercase;
}
.topBanner .banner-content .breadCrumb ul li a {
  font-family: "Arial", "OpenSans-Bold";
}
.topBanner .banner-content .breadCrumb ul li a:after {
  content: "/";
  color: #ffffff;
  padding: 0 0px 0 5px;
}
.topBanner .banner-content .breadCrumb ul li:last-child a:after {
  content: none;
}
@media (max-width: 768px) {
  .topBanner .banner-content {
    margin: 0;
    min-width: 250px;
    right: 15px;
    left: 15px;
    padding: 35px 25px 28px;
  }
  .topBanner .banner-content h1 {
    margin-bottom: 10px;
  }
  .topBanner .banner-content .border {
    display: none;
  }
  .topBanner .banner-content .text {
    float: left;
    width: 100%;
    padding-left: 0;
  }
  .topBanner .banner-content .text p {
    padding-bottom: 10px;
  }
  .topBanner .banner-content .breadCrumb ul li {
    display: inline-block;
    text-transform: uppercase;
  }
  .topBanner .banner-content .breadCrumb ul li a:after {
    content: "/";
    color: #ffffff;
    padding: 0 0px 0 5px;
  }
  .topBanner .banner-content .breadCrumb ul li:last-child a:after {
    content: none;
  }
}
@media (max-width: 767px) {
  .topBanner .image {
    height: 400px;
    background-position: 70% center;
  }
  .topBanner .banner-content {
    padding: 35px 15px 10px;
    margin: 0;
    right: 0;
    left: 0;
  }
  .topBanner .banner-content h1 {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }
  .topBanner .banner-content .text {
    margin-bottom: 10px;
  }
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.box-area .box {
  position: relative;
  width: 33.33333%;
  float: left;
  padding: 0;
  height: 100%;
}
.box-area .box:nth-child(1) {
  padding-right: 5px;
}
.box-area .box:nth-child(2) {
  padding: 0 5px;
}
.box-area .box:nth-child(3) {
  padding-left: 5px;
}
.box-area .box .image {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.box-area .box .box-content {
  position: absolute;
  bottom: 0;
  padding: 0 30px;
}
.box-area .box .box-content h2 {
  margin-bottom: 10px;
}
.box-area .box .box-content h2 span {
  font-family: "Arial";
  display: block;
  line-height: 1;
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
}
.box-area .box .box-content hr {
  border-top: 2px solid #ffffff;
  margin: 10px 0;
}
.box-area .box .box-content .box-header {
  position: relative;
  transition: 0.25s ease-in-out;
}
.box-area .box .box-content .box-teaser {
  position: relative;
  top: -20px;
  transition: 0.5s ease-in-out;
  opacity: 0;
}
.box-area .box .box-content .box-teaser p, .box-area .box .box-content .box-teaser p span {
  color: white;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  padding: 0;
}
.box-area .box .box-content .box-teaser .link {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  display: block;
  padding-bottom: 20px;
}
.box-area .box .box-content .box-teaser .link:after {
  background-image: url(Svg/arrow-white.svg);
  height: 17px;
}
.box-area .box:hover .box-content .box-header {
  top: 0 !important;
  transition: 0.25s ease-in-out;
}
.box-area .box:hover .box-content .box-teaser {
  top: 0;
  opacity: 1;
}

@media (max-width: 1366px) {
  .box-area .box .box-content {
    padding: 0 20px;
  }
  .box-area .box .box-content .box-header h2 span {
    font-size: 2rem;
  }
}
@media (min-width: 800px) and (max-width: 992px) {
  .box-area .box .box-content {
    padding: 0 15px;
  }
  .box-area .box .box-content .box-header h2 span {
    font-size: 1.5rem;
  }
}
@media (max-width: 800px) {
  .box-area {
    height: 100% !important;
    overflow: auto;
  }
  .box-area .box {
    width: 100%;
    padding: 0;
    height: 220px;
    margin-bottom: 15px;
  }
  .box-area .box:nth-child(1), .box-area .box:nth-child(2), .box-area .box:nth-child(3) {
    padding: 0;
  }
  .box-area .box .image {
    background-position: center 30%;
  }
  .box-area .box .box-content {
    padding: 0 15px;
  }
  .box-area .box .box-content .box-header {
    top: 0 !important;
  }
  .box-area .box .box-content .box-header h2 span {
    font-size: 1.5rem;
  }
  .box-area .box .box-content .box-teaser {
    top: 0;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .box-area .box {
    height: 200px;
    margin-bottom: 10px;
  }
  .box-area .box .image {
    background-position: center 28%;
  }
}
/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.textpage {
  /*&.two-col-layout {
      section {
          //z-index: 9;
      }

      .grid-content {
          [class^="col-"], [class*=" col-"] {
              //z-index: 9;
          }
      }

      .right-boxes {
          z-index: 2;

          .rightbox {
              padding: 25px 30px 10px;

              &.textbox, &.external-linkbox, &.internal-linkbox, &.contact-linkbox {
                  img {
                      margin-bottom: 15px;

                      @media(max-width: $medium) {
                          width: 100%;
                      }

                      @include phone {
                          width: 100%;
                      }
                  }
              }

              &.textbox {
                  img {
                      margin-bottom: 15px;
                  }
              }

              &.external-linkbox, &.internal-linkbox {
                  ul {
                      li {
                          margin-bottom: 5px;
                      }
                  }
              }

              &.contact-linkbox {
                  .text {
                      label {
                          display: block;

                          &.name {
                              font-weight: 600;
                          }
                      }

                      &.top {


                          h3 {
                              margin-bottom: 10px;
                          }
                      }
                  }

                  .member {
                      margin-bottom: 50px;
                  }
              }

              .text {
                  padding: 0 15px;

                  hr {
                      margin: 15px 0;
                  }

                  p {
                      font-size: 0.9rem;
                      line-height: 24px;
                  }
              }
          }
      }

      .bg-color {
          background-color: #f8f8f8;
          position: absolute;
          right: 0;
      }
  }*/
  /*@media (max-width: $large) {
      .topBanner {
      }

      &.two-col-layout {

          .right-boxes {
              .rightbox {
                  padding: 25px 0 50px;

                  &.textbox {

                      img {
                          margin-bottom: 20px;
                      }
                  }

                  &.external-linkbox {
                      ul {
                          li {
                              margin-bottom: 5px;
                          }
                      }
                  }

                  &.internal-linkbox {
                      ul {
                          li {
                              margin-bottom: 5px;
                          }
                      }
                  }

                  &.contact-linkbox {
                      .text {
                          label {
                              display: block;

                              &.name {
                                  font-weight: 600;
                              }
                          }

                          &.top {
                              margin-bottom: 20px;

                              h3 {
                                  margin-bottom: 10px;
                              }
                          }
                      }

                      .member {
                          margin-bottom: 50px;
                      }
                  }

                  .text {
                      padding: 0 20px;
                  }
              }
          }

          .bg-color {
              background-color: #f8f8f8;
              position: absolute;
              right: 0;
          }
      }
  }
  @include tablet-portrait {
      &.two-col-layout {
          .right-boxes {
              .rightbox {
                  padding: 0 40% 30px 0;
              }
          }
      }
  }
  @include phone {
      &.two-col-layout {
          .right-boxes {

              .rightbox {
                  padding: 0 0 30px;
                  .text{
                      p{
                          font-size: 0.95rem;
                      }
                  }

                  &.internal-linkbox {
                      ul {
                          li {
                              margin-bottom: 5px;
                          }
                      }
                  }
              }
          }
      }
  }*/
}
.textpage .grid-section .column .text h2 {
  margin-top: 20px;
}
.textpage .brand-area {
  margin-bottom: 0;
}

/*
@media (max-width: $medium) {
    .topBanner {
    }

    &.two-col-layout {
        .bg-color {
            display: none;
        }

        .mobile-background {
            background: #f8f8f8;
            padding-top: 15px;
        }
    }
}*/
/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.videopage .videolist h3 {
  padding: 10px 20px;
}
.videopage .videolist .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 20px;
}
.videopage .videolist .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .videopage .videolist h3 {
    padding: 10px 0px;
  }
}

.gallerypage .gallery .gallery-image {
  margin-bottom: 35px;
}
.gallerypage .gallery .gallery-image h3 {
  color: initial;
  padding: 14px 20px 0px;
}
.gallerypage .gallery .gallery-image .link-download {
  background-image: url("Svg/icon-download.svg");
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: 0;
  right: 35px;
}
.gallerypage .gallery .gallery-image .link-download:hover {
  cursor: pointer;
}
@media (max-width: 767px) {
  .gallerypage .gallery .gallery-image h3 {
    color: initial;
    padding: 5px 0px 0px;
  }
  .gallerypage .gallery .gallery-image .link-download {
    right: 20px;
  }
}

.galleryListpage .gallerylist .gallery {
  margin-bottom: 20px;
}
.galleryListpage .gallerylist .gallery h3 {
  color: initial;
  padding: 15px 20px 10px;
}
.galleryListpage .gallerylist .gallery .link {
  position: absolute;
  bottom: 5px;
  right: 35px;
}
@media (max-width: 767px) {
  .galleryListpage .gallerylist .gallery {
    margin-bottom: 15px;
  }
  .galleryListpage .gallerylist .gallery h3 {
    color: initial;
    padding: 5px 0px 0px;
  }
  .galleryListpage .gallerylist .gallery .link {
    bottom: -6px;
    right: 20px;
  }
}

.img-container {
  height: 300px;
  margin-bottom: 10px;
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.topBanner.member-page .image {
  height: 300px;
}

.management .member {
  margin-bottom: 20px;
}
.management .member .text {
  padding: 10px 20px;
  color: initial;
}
.management .member .text span {
  color: initial;
  display: block;
}
@media (min-width: 768px) {
  .management .member {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 24.5%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .management .member {
    width: 32.5%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .management .member {
    width: 49.5%;
  }
}
@media (max-width: 767px) {
  .management .member .text {
    padding: 10px 0;
    color: initial;
  }
  .management .member .text span {
    color: initial;
    display: block;
  }
}

.member-list {
  background-color: #f8f8f8;
  padding: 50px 0 0;
  margin: 0 0 -30px;
}
.member-list h2 {
  margin-bottom: 30px;
}
.member-list .active .img-container {
  border: 4px solid #72b1d2;
}
.member-list .img-container {
  float: left;
  width: 120px;
  height: 120px;
  margin: 0 0px 50px 0;
}
.member-list .text {
  float: left;
  width: calc(100% - 120px);
  padding: 10px 0 0 15px;
}
.member-list .text hr {
  margin: 10px 0;
}
.member-list .text span {
  color: initial;
  display: block;
  font-size: 0.8rem;
  line-height: 20px;
}
@media (max-width: 992px) {
  .member-list {
    margin: 0px 0 -45px;
  }
}
@media (max-width: 767px) {
  .member-list {
    margin: 0px 0 -15px;
  }
  .member-list .img-container {
    height: 300px;
    width: 100%;
    margin-bottom: 10px;
    float: none;
  }
  .member-list .text {
    float: none;
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
  }
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.historypage .timeline {
  position: relative;
  margin-bottom: 100px;
}
.historypage .timeline .anchor {
  padding-top: 70px;
}
.historypage .timeline:before {
  content: "";
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: -1px;
  height: 100%;
  width: 2px;
  background: #d5d5d5;
}
.historypage .timeline .year {
  text-align: center;
  margin-bottom: 40px;
}
.historypage .timeline .year span {
  background-color: #003755;
  padding: 10px 45px;
  border-radius: 5px;
  display: inline-block;
  color: white;
  font-size: 1.1em;
  font-weight: 800;
}
.historypage .timeline .history {
  margin-bottom: 40px;
}
.historypage .timeline .history .story-left .text, .historypage .timeline .history .story-right .text {
  max-height: 95px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  -moz-transition: max-height 0.5s;
  -ms-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  transition: max-height 0.5s;
  max-width: 310px;
  margin: 0 0 5px;
}
.historypage .timeline .history .story-left .text.open, .historypage .timeline .history .story-right .text.open {
  max-height: 500px;
}
.historypage .timeline .history .story-left img, .historypage .timeline .history .story-right img {
  max-width: 310px;
}
.historypage .timeline .history .story-left .read-more, .historypage .timeline .history .story-right .read-more {
  display: none;
}
.historypage .timeline .history .story-left .read-more .more, .historypage .timeline .history .story-left .read-more .less, .historypage .timeline .history .story-right .read-more .more, .historypage .timeline .history .story-right .read-more .less {
  position: relative;
  display: block;
}
.historypage .timeline .history .story-left .read-more .more i, .historypage .timeline .history .story-left .read-more .less i, .historypage .timeline .history .story-right .read-more .more i, .historypage .timeline .history .story-right .read-more .less i {
  background-image: url("Svg/icon-plus-blue.svg");
  margin-left: 5px;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  position: absolute;
  top: 6px;
}
.historypage .timeline .history .story-left .read-more .less, .historypage .timeline .history .story-right .read-more .less {
  display: none;
}
.historypage .timeline .history .story-left .read-more .less i, .historypage .timeline .history .story-right .read-more .less i {
  background-image: url("Svg/icon-minus-blue.svg");
}
.historypage .timeline .history .story-left .read-more.open .more, .historypage .timeline .history .story-right .read-more.open .more {
  display: none;
}
.historypage .timeline .history .story-left .read-more.open .less, .historypage .timeline .history .story-right .read-more.open .less {
  display: block;
}
.historypage .timeline .history .story-left {
  padding-left: 45px;
  padding-right: 140px;
}
.historypage .timeline .history .story-left p, .historypage .timeline .history .story-left span, .historypage .timeline .history .story-left a {
  line-height: 24px;
  padding-bottom: 0;
}
.historypage .timeline .history .date-left, .historypage .timeline .history .date-right {
  font-weight: 700;
  line-height: 20px;
  color: #72b1d2;
}
.historypage .timeline .history .date-left {
  padding-right: 45px;
  text-align: right;
}
.historypage .timeline .history .story-right {
  padding-right: 45px;
  padding-left: 140px;
}
.historypage .timeline .history .story-right p, .historypage .timeline .history .story-right span, .historypage .timeline .history .story-right a {
  line-height: 24px;
  padding-bottom: 0;
}
.historypage .timeline .history .date-right {
  padding-left: 45px;
}
.historypage .timeline .history h3 {
  margin-bottom: 5px;
}
.historypage .timeline .history img {
  margin-bottom: 10px;
}
.historypage .timeline .history .bullet-outer {
  position: absolute;
  background-color: #5fa6d9;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-top: -5px;
  right: calc(50% - 15px);
}
.historypage .timeline .history .bullet-outer .bullet-inner {
  background-color: #0087c8;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  margin: 5px;
}
@media (width: 768px) {
  .historypage .timeline .history .col-sm-6 {
    width: 100%;
  }
}
.historypage .timeline .timeline-nav {
  position: fixed;
  top: 20%;
  right: 50px;
}
.historypage .timeline .timeline-nav ul {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  margin: 0;
  padding: 20px 0 20px 25px;
  border-left: 1px solid #d5d5d5;
  list-style: none;
}
.historypage .timeline .timeline-nav ul li a {
  color: #999999;
  font-size: 12px;
  line-height: 30px;
}
.historypage .timeline .timeline-nav ul li a:hover {
  color: #000000;
}
.historypage .timeline .timeline-nav ul li.active a {
  color: #000000;
}
@media (max-width: 1200px) {
  .historypage .timeline .timeline-nav {
    top: 15%;
  }
  .historypage .timeline .timeline-nav ul li a {
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .historypage .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 75px;
    margin-left: -1px;
    height: 100%;
    width: 2px;
    background: #d5d5d5;
  }
  .historypage .timeline .year {
    text-align: left;
    margin-bottom: 40px;
  }
  .historypage .timeline .history .story-left {
    padding-left: 120px;
    padding-right: 140px;
  }
  .historypage .timeline .history .date-left, .historypage .timeline .history .date-right {
    padding-right: unset;
    padding-left: 120px;
    text-align: left;
    margin-bottom: 15px;
  }
  .historypage .timeline .history .story-right {
    padding-left: 120px;
    padding-right: 140px;
  }
  .historypage .timeline .history .bullet-outer {
    position: absolute;
    right: unset;
    left: 60px;
  }
}
@media (max-width: 767px) {
  .historypage .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    margin-left: -1px;
    height: 100%;
    width: 2px;
    background: #d5d5d5;
  }
  .historypage .timeline .year span {
    padding: 5px 30px;
  }
  .historypage .timeline .history .story-left, .historypage .timeline .history .story-right {
    padding-right: 15px;
    padding-left: 95px;
  }
  .historypage .timeline .history .date-left, .historypage .timeline .history .date-right {
    padding-right: unset;
    padding-left: 95px;
  }
  .historypage .timeline .history .bullet-outer {
    position: absolute;
    left: 60px;
    background-color: #5fa6d9;
    width: 25px;
    height: 25px;
    -webkit-transform: translate(-48%, -20%);
    -moz-transform: translate(-48%, -20%);
    -o-transform: translate(-48%, -20%);
    -ms-transform: translate(-48%, -20%);
    transform: translate(-48%, -20%);
  }
  .historypage .timeline .history .bullet-outer .bullet-inner {
    background-color: #0087c8;
    width: 15px;
    height: 15px;
    position: absolute;
    margin: 5px;
  }
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.productoverviewpage .product {
  margin-bottom: 30px;
}
.productoverviewpage .product:nth-child(odd) .image {
  margin-right: 20px;
}
.productoverviewpage .product:nth-child(odd) .text {
  padding-left: 50px;
  padding-right: 70px;
}
.productoverviewpage .product:nth-child(even) {
  margin-top: 200px;
}
.productoverviewpage .product:nth-child(even) .image {
  margin-left: 20px;
}
.productoverviewpage .product:nth-child(even) .text {
  padding-left: 70px;
  padding-right: 50px;
}
.productoverviewpage .product .image {
  height: 600px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
.productoverviewpage .product .text .promoHeadline {
  font-family: "Arial", "OpenSans-Bold", sans-serif;
  font-size: 2rem;
  /*font-style: normal;
  font-variant: normal;
  font-weight: 900;*/
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 1200px) and (max-width: 1365px) {
  .productoverviewpage .product .image {
    height: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .productoverviewpage .product .image {
    height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .productoverviewpage .product {
    margin-bottom: 30px;
  }
  .productoverviewpage .product:nth-child(odd) .image {
    margin-right: 0;
    margin-left: -15px;
  }
  .productoverviewpage .product:nth-child(odd) .text {
    padding-left: 20px;
    padding-right: 15px;
    margin-left: 0;
  }
  .productoverviewpage .product:nth-child(even) .image {
    margin-left: 0;
  }
  .productoverviewpage .product:nth-child(even) .text {
    padding-left: 35px;
    padding-right: 15px;
  }
  .productoverviewpage .product .image {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .productoverviewpage .product:nth-child(odd) {
    margin: 0;
    margin-bottom: 60px;
  }
  .productoverviewpage .product:nth-child(odd) .image {
    margin-right: -15px;
    margin-left: -15px;
  }
  .productoverviewpage .product:nth-child(odd) .text {
    padding-left: 0;
    padding-right: 0;
  }
  .productoverviewpage .product:nth-child(even) {
    margin: 0;
    margin-bottom: 60px;
  }
  .productoverviewpage .product:nth-child(even) .image {
    margin-right: -15px;
    margin-left: -15px;
  }
  .productoverviewpage .product:nth-child(even) .text {
    padding-left: 0;
    padding-right: 0;
  }
  .productoverviewpage .product .image {
    height: 300px;
  }
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.newslistpage .newsfilter {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.newslistpage .newsfilter label {
  color: #363e42;
  font-weight: 700;
}
.newslistpage .newsfilter a {
  color: #7d8180;
  font-weight: 700;
}
.newslistpage .newsfilter .filter-active {
  max-width: 200px;
  overflow: hidden;
  display: inline-flex;
  overflow-y: hidden;
  max-height: 16px;
}
@media (max-width: 767px) {
  .newslistpage .newsfilter .filter-active {
    max-height: 11px;
  }
}
.newslistpage .newsfilter .filter-active.hide-label {
  max-width: 0;
}
.newslistpage .newsfilter ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  display: -webkit-inline-flex;
  max-width: 0;
  overflow: hidden;
  margin-left: -4px;
  -webkit-transition: max-width 0s;
  -moz-transition: max-width 0s;
  transition: max-width 0s;
  overflow-y: hidden;
  max-height: 28px;
}
@media (max-width: 767px) {
  .newslistpage .newsfilter ul {
    margin-left: -3px;
  }
}
.newslistpage .newsfilter ul.active {
  padding: 0 5px 0 0;
  max-width: 1000px;
  -webkit-transition: max-width 1s;
  -moz-transition: max-width 1s;
  transition: max-width 1s;
}
.newslistpage .newsfilter ul li {
  display: inline-block;
  padding: 6px 10px;
}
.newslistpage .newsfilter ul li:first-child {
  padding-left: 0;
}
.newslistpage .newsfilter ul li.active a {
  font-weight: 700;
  color: #363e42;
}
.newslistpage .newsfilter .newsfilter-btn {
  background-image: url("/Content/Svg/icon-right.svg");
  width: 20px;
  height: 16px;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
.newslistpage .newsfilter .newsfilter-btn.active {
  background-image: url("/Content/Svg/icon-left-black.svg");
}
.newslistpage .newsfilter .newsfilter-btn:hover {
  cursor: pointer;
}
.newslistpage .newslist .news {
  margin-bottom: 50px;
}
.newslistpage .newslist .news .date {
  text-transform: uppercase;
  color: #7d8180;
  margin-bottom: 5px;
  display: block;
}
.newslistpage .bg-color {
  background-color: #f8f8f8;
  position: absolute;
  right: 0;
}
@media (max-width: 992px) {
  .newslistpage.two-col-layout .bg-color {
    display: none;
  }
  .newslistpage.two-col-layout .mobile-background {
    background: #f8f8f8;
    padding-top: 15px;
  }
}

.newspage .news-top .news {
  margin-bottom: 12px;
}
.newspage .news-top .text {
  margin: 0 20px;
}
.newspage .news-top .text label {
  margin: 10px 0 20px;
}
.newspage .news-top .text .date {
  text-transform: uppercase;
  color: #7d8180;
  margin-bottom: 5px;
  display: block;
}

@media (max-width: 767px) {
  .newslistpage .left-label {
    position: absolute;
    left: 0;
    top: 15px;
  }
  .newslistpage .newsfilter {
    margin-bottom: 55px;
  }
  .newslistpage .newsfilter .filter-active {
    max-height: 15px;
    overflow: hidden;
    display: inline-flex;
    overflow-y: hidden;
    max-height: 12px;
    background: #f8f8f8;
    background-color: #f8f8f8;
    padding-bottom: 25px;
    padding-top: 14px;
    padding-left: 20px;
    width: 120px;
    position: absolute;
    left: 100px;
    top: 1px;
  }
  .newslistpage .newsfilter .filter-active.hide-label {
    color: #f8f8f8;
  }
  .newslistpage .newsfilter ul {
    display: block;
    max-height: 0;
    overflow: auto;
    margin-left: 0;
    -webkit-transition: max-height 0s;
    -moz-transition: max-height 0s;
    transition: max-height 0s;
    overflow-y: hidden;
    position: absolute;
    left: 100px;
    top: 1px;
    background: #f8f8f8;
    z-index: 8;
  }
  .newslistpage .newsfilter ul.active {
    padding: 0;
    max-height: 600px;
    -webkit-transition: max-height 1s;
    -moz-transition: max-height 1s;
    transition: max-height 1s;
  }
  .newslistpage .newsfilter ul li {
    display: block;
    padding: 6px 40px 6px 20px;
  }
  .newslistpage .newsfilter ul li:first-child {
    padding: 6px 40px 6px 20px;
  }
  .newslistpage .newsfilter ul li a {
    color: #7d7d7d;
  }
  .newslistpage .newsfilter ul li a.active a {
    color: #000000;
  }
  .newslistpage .newsfilter .newsfilter-btn {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 15px;
    left: 190px;
    transition: transform 0.1s ease-in;
    z-index: 55;
  }
  .newslistpage .newsfilter .newsfilter-btn.active {
    background-image: url("/Content/Svg/icon-right.svg");
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .newslistpage .newslist .news .date {
    text-transform: uppercase;
    color: #7d8180;
    display: block;
    margin: 0 0 5px;
  }
  .newslistpage .bg-color {
    background-color: #f8f8f8;
    position: absolute;
    right: 0;
  }
}
@media (max-width: 767px) and (max-width: 992px) {
  .newslistpage.two-col-layout .bg-color {
    display: none;
  }
  .newslistpage.two-col-layout .mobile-background {
    background: #f8f8f8;
    padding-top: 15px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .newspage .news-top .text {
    margin: 0;
  }
}
/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.joboverviewpage .job-wrapper .grid-section .text {
  margin: 0;
}
.joboverviewpage .joblist .job {
  margin-bottom: 50px;
  padding: 0;
}
.joboverviewpage .joblist .job .date {
  text-transform: uppercase;
  color: #7d8180;
  margin-bottom: 5px;
  display: block;
}
.joboverviewpage .joblist .job p {
  padding-bottom: 5px;
}
.joboverviewpage .joblist .job p span {
  color: initial;
}
.joboverviewpage .joblist .job h2 {
  color: initial;
}
.joboverviewpage .right-boxes .unsolidated {
  padding: 25px 15px 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .joboverviewpage .right-boxes .unsolidated {
    padding: 25px 0 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .joboverviewpage .right-boxes .unsolidated {
    padding: 25px 0 35px;
  }
}
@media (max-width: 767px) {
  .joboverviewpage .right-boxes .unsolidated {
    padding: 25px 20px 35px;
  }
}
.joboverviewpage .right-boxes .unsolidated .modal-btn {
  cursor: pointer;
}
.joboverviewpage .right-boxes p {
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  .job-wrapper {
    padding: 0 5px;
  }
}

.jobpage .job-top .text {
  margin: 0 20px;
}
.jobpage .job-top .text .date {
  text-transform: uppercase;
  color: #7d8180;
  margin-bottom: 5px;
  display: block;
}
@media (max-width: 767px) {
  .jobpage .job-top .text {
    margin: 0;
  }
}
.jobpage .right-boxes .applyBox {
  padding: 25px 15px 10px;
}
.jobpage .right-boxes .applyBox a {
  display: block;
  text-align: center;
}
.jobpage .right-boxes .applyBox button, .jobpage .right-boxes .applyBox a {
  border: none;
  text-transform: uppercase;
  padding: 20px 30px;
  width: 100%;
  background: #72b1d2;
}
.jobpage .right-boxes .applyBox button:hover > span::after, .jobpage .right-boxes .applyBox a:hover > span::after {
  -webkit-animation: toRightFromLeft 0.5s forwards;
  -moz-animation: toRightFromLeft 0.5s forwards;
  animation: toRightFromLeft 0.5s forwards;
}
.jobpage .right-boxes .applyBox button span, .jobpage .right-boxes .applyBox a span {
  color: white;
  font-weight: 600;
  font-size: 18px;
}
.jobpage .right-boxes .applyBox button span::after, .jobpage .right-boxes .applyBox a span::after {
  content: "";
  background-image: url("Svg/arrow-white.svg");
  margin-left: 6px;
  display: inline-block;
  width: 22px;
  height: 20px;
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
@media (max-width: 1200px) {
  .jobpage .right-boxes .applyBox {
    padding: 25px 0 10px;
  }
}
@media (max-width: 992px) {
  .jobpage .right-boxes .applyBox {
    padding: 20px 0 25px;
  }
}
@media (max-width: 767px) {
  .jobpage .right-boxes .applyBox {
    padding: 0;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .jobpage .right-boxes .applyBox button:hover > span::after {
    -moz-animation: none;
  }
  .jobpage .right-boxes .applyBox button span::after {
    height: 18px;
  }
}

/* MODAL */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow-y: auto;
}
.modal.open {
  display: block;
}

/* Modal Content/Box */
.modal-content {
  background-color: #41718A;
  border-radius: 0;
  border: 0;
  padding: 50px 20px;
  width: 100%;
}
.modal-content .no-padding-left {
  padding-left: 0;
}
.modal-content .container {
  width: 960px;
}
.modal-content h2 {
  float: left;
  color: white;
  margin-bottom: 40px;
}
.modal-content label {
  margin-bottom: 15px;
  font-size: 1rem;
  color: white;
  font-weight: 700;
}
.modal-content .accept p, .modal-content .accept a {
  font-size: 1rem;
  color: white;
  font-weight: 700;
  line-height: 22px;
}
.modal-content .accept a {
  text-decoration: underline;
}
.modal-content input, .modal-content textarea {
  width: 100%;
  padding: 20px 15px;
  border: none;
  background: white;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #000000;
  border-radius: 0;
}
.modal-content input[type=checkbox], .modal-content textarea[type=checkbox] {
  width: 15px;
  float: left;
  margin: 5px 10px 0 0;
}
.modal-content input[type=submit], .modal-content textarea[type=submit] {
  width: auto;
  float: right;
  background-color: transparent;
  color: #000000;
  text-transform: uppercase;
  padding: 30px 0;
  font-weight: 900;
  position: relative;
}
.modal-content input[type=submit]:hover > span:after, .modal-content textarea[type=submit]:hover > span:after {
  -webkit-animation: toRightFromLeft 0.5s forwards;
  -moz-animation: toRightFromLeft 0.5s forwards;
  animation: toRightFromLeft 0.5s forwards;
}
.modal-content textarea {
  height: 200px;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .modal-content .container {
    width: 860px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .modal-content .container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .modal-content {
    padding: 30px 0;
  }
  .modal-content .container {
    width: 100%;
  }
}

/* The Close Button */
.close {
  background-image: url("Svg/modal-close.svg");
  background-repeat: no-repeat;
  float: right;
  width: 30px;
  height: 30px;
  margin-top: 5px;
  opacity: 1;
}

.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  /*opacity: 0.2;*/
}

.hide-input-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer !important;
}

.field-div {
  height: 55px;
  background: white;
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
}
.field-div img {
  position: absolute;
  left: 10px;
  top: 18px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.field-div span {
  position: absolute;
  left: 60px;
  top: 14px;
  color: #000000;
  font-size: 14px;
  cursor: pointer;
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.contactpage, .partner-locatorpage {
  margin-bottom: 50px;
}
.contactpage .content img, .partner-locatorpage .content img {
  margin-bottom: 20px;
}
.contactpage .content .text, .partner-locatorpage .content .text {
  margin-left: 20px;
  margin-right: 20px;
}
.contactpage .content .text a, .partner-locatorpage .content .text a {
  color: #72b1d2;
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
}
.contactpage .content .text a span, .partner-locatorpage .content .text a span {
  color: #72b1d2;
}
.contactpage .content .text a:hover, .contactpage .content .text a:focus, .contactpage .content .text a:active, .partner-locatorpage .content .text a:hover, .partner-locatorpage .content .text a:focus, .partner-locatorpage .content .text a:active {
  text-decoration: none;
  outline: none;
  border: none;
}
.contactpage .form-bg, .partner-locatorpage .form-bg {
  background: #47687C;
  padding: 50px 20px 30px;
  min-height: 300px;
}
.contactpage .partner-locatorform-bg, .partner-locatorpage .partner-locatorform-bg {
  background: #47687C;
  padding: 50px 20px 50px;
  margin-bottom: 20px;
}
.contactpage .contactform-top h2, .contactpage .contactform-top p, .partner-locatorpage .contactform-top h2, .partner-locatorpage .contactform-top p {
  color: #ffffff;
}
.contactpage .contactform-top hr, .partner-locatorpage .contactform-top hr {
  border-color: #ffffff;
}
.contactpage .contactform .no-padding-left, .contactpage .locatorform .no-padding-left, .partner-locatorpage .contactform .no-padding-left, .partner-locatorpage .locatorform .no-padding-left {
  padding-left: 0;
}
.contactpage .contactform .no-padding-left iframe, .contactpage .locatorform .no-padding-left iframe, .partner-locatorpage .contactform .no-padding-left iframe, .partner-locatorpage .locatorform .no-padding-left iframe {
  width: 200px !important;
  border-radius: 0px 4px 8px 0px !important;
}
.contactpage .contactform .no-padding-left #reCaptchaErrorMessage, .contactpage .locatorform .no-padding-left #reCaptchaErrorMessage, .partner-locatorpage .contactform .no-padding-left #reCaptchaErrorMessage, .partner-locatorpage .locatorform .no-padding-left #reCaptchaErrorMessage {
  color: #ffffff;
  font-size: 1rem;
}
.contactpage .contactform .editor-label label, .contactpage .locatorform .editor-label label, .partner-locatorpage .contactform .editor-label label, .partner-locatorpage .locatorform .editor-label label {
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 700;
}
.contactpage .contactform label, .contactpage .locatorform label, .partner-locatorpage .contactform label, .partner-locatorpage .locatorform label {
  margin-bottom: 10px;
}
.contactpage .contactform input, .contactpage .contactform textarea, .contactpage .contactform select, .contactpage .locatorform input, .contactpage .locatorform textarea, .contactpage .locatorform select, .partner-locatorpage .contactform input, .partner-locatorpage .contactform textarea, .partner-locatorpage .contactform select, .partner-locatorpage .locatorform input, .partner-locatorpage .locatorform textarea, .partner-locatorpage .locatorform select {
  width: 100%;
  padding: 15px;
  border: none;
  background-color: #ffffff;
  margin-bottom: 25px;
  font-size: 0.9em;
  border-radius: 0;
}
.contactpage .contactform textarea, .contactpage .locatorform textarea, .partner-locatorpage .contactform textarea, .partner-locatorpage .locatorform textarea {
  height: 100px;
  margin-bottom: 15px;
}
.contactpage .contactform .accept input[type=checkbox], .contactpage .locatorform .accept input[type=checkbox], .partner-locatorpage .contactform .accept input[type=checkbox], .partner-locatorpage .locatorform .accept input[type=checkbox] {
  width: 15px;
  float: left;
  margin: 5px 10px 0 0;
  padding: 0;
}
@media (max-width: 767px) {
  .contactpage .contactform .accept input[type=checkbox], .contactpage .locatorform .accept input[type=checkbox], .partner-locatorpage .contactform .accept input[type=checkbox], .partner-locatorpage .locatorform .accept input[type=checkbox] {
    padding: 0;
  }
}
.contactpage .contactform .accept p, .contactpage .contactform .accept span, .contactpage .contactform .accept a, .contactpage .locatorform .accept p, .contactpage .locatorform .accept span, .contactpage .locatorform .accept a, .partner-locatorpage .contactform .accept p, .partner-locatorpage .contactform .accept span, .partner-locatorpage .contactform .accept a, .partner-locatorpage .locatorform .accept p, .partner-locatorpage .locatorform .accept span, .partner-locatorpage .locatorform .accept a {
  font-size: 1rem;
  color: white;
  font-weight: 700;
  line-height: 22px;
}
.contactpage .contactform .accept a label, .contactpage .locatorform .accept a label, .partner-locatorpage .contactform .accept a label, .partner-locatorpage .locatorform .accept a label {
  text-decoration: underline;
}
.contactpage .contactform .accept a label:hover, .contactpage .locatorform .accept a label:hover, .partner-locatorpage .contactform .accept a label:hover, .partner-locatorpage .locatorform .accept a label:hover {
  cursor: pointer;
}
.contactpage .contactform .accept .field-validation-error, .contactpage .locatorform .accept .field-validation-error, .partner-locatorpage .contactform .accept .field-validation-error, .partner-locatorpage .locatorform .accept .field-validation-error {
  right: 20px;
  position: absolute;
  top: 0px;
}
.contactpage .contactform .accept .field-validation-error span, .contactpage .locatorform .accept .field-validation-error span, .partner-locatorpage .contactform .accept .field-validation-error span, .partner-locatorpage .locatorform .accept .field-validation-error span {
  color: #ffffff;
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 400;
}
.contactpage .contactform #partner-locator-submit, .contactpage .locatorform #partner-locator-submit, .partner-locatorpage .contactform #partner-locator-submit, .partner-locatorpage .locatorform #partner-locator-submit {
  padding: 20px 0 0px;
}

#map {
  margin-bottom: -80px;
}
@media (max-width: 767px) {
  #map {
    margin-bottom: -65px;
  }
}

.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #72b1d2;
  border-radius: 50%;
}

.map-marker:after, .map-marker:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background: rgba(107, 0, 255, 0.6);
  border: 10px solid #41718A;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
  -webkit-animation: map-marker-pulse 4s ease-in infinite;
  animation: map-marker-pulse 4s ease-in infinite;
}

.map-marker:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@-webkit-keyframes map-marker-pulse {
  from {
    border-width: 35px;
    opacity: 0.5;
    -webkit-transform: translate3d(0, 0, 0) scale(0);
  }
  to {
    border-width: 0;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes map-marker-pulse {
  from {
    border-width: 35px;
    opacity: 0.5;
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    -ms-transform: translate3d(0, 0, 0) scale(0);
    transform: translate3d(0, 0, 0) scale(0);
  }
  to {
    border-width: 0;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    -ms-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}
/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
#dialog, #alertDialog {
  background-color: #f4f4f4;
  width: 35%;
  text-align: center;
  z-index: 999999;
  position: fixed;
  left: 0;
  right: 0;
  top: 30%;
  margin: auto;
  padding: 30px 0;
  opacity: 0;
  transition: visibility 0s, all 0.5s ease;
  /*.green {
       background-color: #82BF56;
       border-bottom: 5px solid #669644;
     }
     .blue {
      background-color: #3498DB;
      border-bottom: 5px solid #2980B9;
     }*/
}
#dialog .title, #alertDialog .title {
  padding: 10px 20px;
  color: #363e42;
}
#dialog .body, #alertDialog .body {
  padding: 0 20px;
  color: #363e42;
}
#dialog .body .text, #alertDialog .body .text {
  margin-bottom: 20px;
}
#dialog .body div, #alertDialog .body div {
  width: 100%;
}
#dialog .body p, #dialog .body span, #dialog .body li, #alertDialog .body p, #alertDialog .body span, #alertDialog .body li {
  font-size: 12px;
  line-height: 18px;
}
#dialog .body li, #alertDialog .body li {
  margin-bottom: 10px;
}
#dialog button, #alertDialog button {
  font-family: "Open Sans";
  border: none;
  text-transform: uppercase;
  padding: 15px 25px;
  margin: 0px 15px;
  background: #0095D1;
  color: white;
  font-weight: 400;
  font-size: 14px;
}
#dialog .blue, #alertDialog .blue {
  background-color: #8dc9e8;
}
#dialog .gray, #alertDialog .gray {
  background-color: #333333;
}
#dialog:not([open]), #alertDialog:not([open]) {
  visibility: hidden;
}
#dialog::backdrop, #alertDialog::backdrop {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.9);
}
#dialog.dialog-open, #alertDialog.dialog-open {
  visibility: visible;
  opacity: 1;
  top: 25%;
}
@media (max-width: 992px) {
  #dialog, #alertDialog {
    width: 80%;
  }
  #dialog button, #alertDialog button {
    margin: 0 10px;
  }
  #dialog.dialog-open, #alertDialog.dialog-open {
    top: 10%;
  }
}
#dialog.infoDialog, #alertDialog.infoDialog {
  width: 60%;
}
#dialog.infoDialog h3, #dialog.infoDialog p, #dialog.infoDialog span, #dialog.infoDialog li, #alertDialog.infoDialog h3, #alertDialog.infoDialog p, #alertDialog.infoDialog span, #alertDialog.infoDialog li {
  text-align: left;
}

#dialogBG {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999998;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s linear;
}
#dialogBG.dialogBG-open {
  visibility: visible;
  opacity: 1;
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
body .coi-banner__wrapper .coi-banner__decline, body .coi-banner__wrapper .coi-banner__accept {
  background-color: #002d48;
  color: white;
  border: none;
  text-transform: uppercase;
}
body .coi-banner__wrapper .coi-banner__decline:hover, body .coi-banner__wrapper .coi-banner__accept:hover {
  background-color: #aebfd2;
}
body .coi-checkboxes input[type=checkbox]:checked + .checkbox-toggle {
  background-color: #002d48;
}
body #Coi-Renew .renew_path {
  fill: #002d48 !important;
}

/* COLORS */
/* Breakpoints */
/* Other */
/*
@mixin breakpoint($class) {
  @if $class == xs {
    @media (max-width: $extra-small) { @content; }
  }

  @else if $class == sm {
    @media (min-width: $small) { @content; }
  }

  @else if $class == md {
    @media (min-width: $medium) { @content; }
  }

  @else if $class == lg {
    @media (min-width: $large) { @content; }
  }

  @else if $class == xl {
    @media (min-width: $larger) { @content; }
  }

  @else if $class == xxl {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}

@mixin device($class) {
  @if $class == phone {
    @media (max-width: $extra-small){ @content; }
  }

  @else if $class == ipad-portrait {
    @media (min-width: $small) and (max-width: $medium){ @content; }
  }

  @else if $class == ipad-lanscape {
    @media (min-width: $medium) and (max-width: $large) { @content; }
  }

  @else if $class == desktop-small {
    @media (min-width: $large) and (max-width: $larger) { @content; }
  }

  @else if $class == desktop-medium {
    @media (min-width: $larger) and (max-width: $extra-large) { @content; }
  }

  @else if $class == desktop-large {
    @media (min-width: $extra-large) { @content; }
  }

  @else {
    @warn "Breakpoint mixin supports: xs, sm, md, lg";
  }
}*/
.login-area {
  position: fixed;
  z-index: 30;
  top: 70px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  width: auto;
  height: auto;
}
.login-area .login-area-content {
  height: inherit;
  background-color: #aebfd2;
  box-shadow: none;
  padding: 50px 0;
  border-radius: 0;
  border: 0;
  width: 100%;
  height: 100%;
}
.login-area .login-area-content .no-padding-left {
  padding-left: 0;
}
.login-area .login-area-content .container {
  width: 960px;
}
.login-area .login-area-content h2 {
  float: left;
  color: white;
  margin-bottom: 40px;
}
.login-area .login-area-content label {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #022d4d;
  font-weight: 700;
  text-transform: uppercase;
}
.login-area .login-area-content ul.nav li {
  display: inline-block;
}
.login-area .login-area-content ul.nav li a {
  font-family: "Arial", "OpenSans-Bold", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
  color: #7992a8;
  padding: 10px 0;
}
.login-area .login-area-content ul.nav li a:focus, .login-area .login-area-content ul.nav li a:hover {
  background: none;
}
.login-area .login-area-content ul.nav li.active a {
  color: #022d4d;
}
.login-area .login-area-content ul.nav li span {
  width: 1px;
  background-color: #363e42;
  height: 28px;
  display: block;
  margin: 0 20px;
}
.login-area .login-area-content ul.nav li[role=heading] {
  display: none;
}
.login-area .login-area-content ul.nav.reset li {
  display: none;
}
.login-area .login-area-content ul.nav.reset li[role=heading] {
  display: inline-block;
}
.login-area .login-area-content ul.nav.reset li[role=heading] a {
  color: #022d4d;
}
.login-area .login-area-content .requestResetPassword-content p {
  color: #022d4d;
  font-size: 12px;
}
.login-area .login-area-content #reset-member-submit {
  float: left;
}
.login-area .login-area-content .tab-content p, .login-area .login-area-content .tab-content a {
  font-size: 12px;
  line-height: 18px;
  color: #022d4d;
}
.login-area .login-area-content .tab-content .resetPassword {
  cursor: pointer;
  color: #022d4d;
  font-size: 12px;
}
.login-area .login-area-content .tab-content form input, .login-area .login-area-content .tab-content form textarea {
  width: 100%;
  padding: 20px 15px;
  border: none;
  background: white;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #000000;
  border-radius: 0;
}
.login-area .login-area-content .tab-content form input[type=checkbox], .login-area .login-area-content .tab-content form textarea[type=checkbox] {
  width: 15px;
  float: left;
  margin: 5px 10px 0 0;
  transform: scale(1);
  -webkit-transform: scale(1);
  max-width: 15px;
  max-height: 15px;
  padding: 0;
}
.login-area .login-area-content .tab-content form button.costom {
  width: auto;
  float: right;
  text-transform: uppercase;
  padding: 30px 0;
}
.login-area .login-area-content .tab-content form button.costom span {
  font-size: 1.5rem;
}
.login-area .login-area-content .tab-content form button.costom span:after {
  /*vertical-align: middle;*/
}
.login-area .login-area-content .tab-content form button.costom:hover > span:after {
  -webkit-animation: toRightFromLeft 0.5s forwards;
  -moz-animation: toRightFromLeft 0.5s forwards;
  animation: toRightFromLeft 0.5s forwards;
}
.login-area .login-area-content .tab-content .confirm-text p {
  color: #022d4d;
}
.login-area .login-area-content .tab-content .checkbox-area label {
  display: inline-block;
  text-transform: none;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 12px;
  margin: 0;
  padding: 0;
  vertical-align: super;
  margin-top: 6px;
  width: 90%;
}
.login-area .login-area-content .tab-content .checkbox-area label a {
  text-decoration: underline;
}
.login-area .login-area-content .requestResetPassword-content, .login-area .login-area-content .requestResetPassword-sucess {
  display: none;
}
.login-area .login-area-content .requestResetPassword-sucess .reset-btn {
  float: left;
}
.login-area .login-area-content .modal-bottom-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
}
.login-area .login-area-content .modal-bottom-wrapper .modal-footercontent {
  padding: 20px 0;
  border-top: 1px solid #022d4d;
}
.login-area .login-area-content .modal-bottom-wrapper .modal-footercontent p, .login-area .login-area-content .modal-bottom-wrapper .modal-footercontent a {
  font-size: 12px;
  line-height: 18px;
  color: #022d4d;
}

.requestResetPassword-sucess button {
  width: auto;
  float: right;
  text-transform: uppercase;
  padding: 30px 0;
}
.requestResetPassword-sucess p {
  font-size: 12px;
  line-height: 18px;
  color: #022d4d;
}

@media (max-width: 1200px) {
  .login-area .login-area-content {
    min-height: 100%;
    height: auto;
  }
  .login-area .login-area-content .container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .login-area {
    top: 55px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
  .login-area .login-area-content {
    padding: 25px 0;
  }
  .login-area .login-area-content label {
    margin-bottom: 10px;
    font-size: 0.85rem;
  }
  .login-area .login-area-content ul.nav li a {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding: 5px 0;
  }
  .login-area .login-area-content ul.nav li span {
    height: 13px;
    margin: 0 10px;
  }
  .login-area .login-area-content .tab-content form input, .login-area .login-area-content .tab-content form textarea {
    padding: 15px;
    margin-bottom: 20px;
  }
  .login-area .login-area-content .tab-content form input[type=checkbox], .login-area .login-area-content .tab-content form textarea[type=checkbox] {
    position: absolute;
  }
  .login-area .login-area-content .tab-content form button.costom {
    float: left;
    padding: 30px 0;
  }
  .login-area .login-area-content .tab-content form button.costom .btn-loader {
    right: auto;
    left: 12px;
  }
  .login-area .login-area-content .tab-content form .checkbox-area label {
    text-indent: 25px;
    line-height: 1.5;
    margin-top: 2px;
  }
  .login-area .login-area-content .tab-content .confirm-text {
    text-align: left;
    margin-bottom: 15px;
  }
  .login-area .login-area-content .tab-content p {
    padding-bottom: 20px;
  }
  .login-area .login-area-content .modal-bottom-wrapper {
    position: relative;
    bottom: auto;
    width: 100%;
    left: auto;
    right: auto;
  }
  .login-area .login-area-content .modal-bottom-wrapper .modal-footercontent {
    padding: 15px 0;
    border-top: 1px solid #022d4d;
  }
  .login-area .login-area-content .modal-bottom-wrapper .modal-footercontent p {
    padding-bottom: 0;
    font-size: 10px;
    line-height: 17px;
  }
  .checkbox-area .field-validation-error {
    top: -17px;
  }
}
@media (max-height: 660px) {
  .login-area .login-area-content {
    height: auto;
  }
  .login-area .login-area-content .modal-bottom-wrapper {
    position: relative;
    bottom: auto;
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media (min-width: 320px) and (max-width: 359px) {
  .login-area .login-area-content ul.nav li a {
    font-size: 1.2rem;
  }
}
.embed-responsive-item .fullscreen {
  display: block !important;
}
