@charset "UTF-8";
html{overflow-y:scroll}.loadmask{z-index:1002;position:absolute;top:0;left:0;background-image:url('../../multimedia/imagem/load_overlay_bg.png');width:100%;height:100%;zoom:1}.loadmask-msg{z-index:20001;position:absolute;top:0;left:0;height:32px;width:32px;padding:2px}.loadmask-msg div{background-image:url('../../multimedia/imagem/load_overlay_loader.gif');background-repeat:no-repeat;height:32px;width:32px;cursor:wait}.masked{}.masked-relative{position:relative!important}.masked-hidden{visibility:hidden!important}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {

    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



.jello{
    -webkit-animation-name:jello;
            animation-name:jello;
    -webkit-transform-origin: center;

            transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;width:100%;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;-o-transition-property:transform,height;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,0.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,0.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,0.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,0.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,0.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,0.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,0.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,0.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-prev,.swiper-button-next{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{opacity:0.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:300ms opacity;-o-transition:300ms opacity;transition:300ms opacity;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-container-horizontal>.swiper-pagination-bullets{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:0.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:200ms top,200ms -webkit-transform;transition:200ms top,200ms -webkit-transform;-o-transition:200ms transform,200ms top;transition:200ms transform,200ms top;transition:200ms transform,200ms top,200ms -webkit-transform}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms left,200ms -webkit-transform;transition:200ms left,200ms -webkit-transform;-o-transition:200ms transform,200ms left;transition:200ms transform,200ms left;transition:200ms transform,200ms left,200ms -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms right,200ms -webkit-transform;transition:200ms right,200ms -webkit-transform;-o-transition:200ms transform,200ms right;transition:200ms transform,200ms right;transition:200ms transform,200ms right,200ms -webkit-transform}.swiper-pagination-progressbar{background:rgba(0,0,0,0.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progressbar,.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:4px;height:100%;left:0;top:0}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255,255,255,0.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,0.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,0.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,0.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.swiper-zoom-container>img,.swiper-zoom-container>svg,.swiper-zoom-container>canvas{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:'';width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-prev,.swiper-container-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:0.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}.notie-container{font-size:1.6rem;height:auto;left:0;position:fixed;text-align:center;width:100%;z-index:2147483647;box-sizing:border-box;-o-box-shadow:0 0 5px 0 rgba(0,0,0,0.5);-ms-box-shadow:0 0 5px 0 rgba(0,0,0,0.5);-moz-box-shadow:0 0 5px 0 rgba(0,0,0,0.5);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,0.5);box-shadow:0 0 5px 0 rgba(0,0,0,0.5)}@media screen and (max-width:900px){.notie-container{font-size:1.4rem}}@media screen and (max-width:750px){.notie-container{font-size:1.2rem}}@media screen and (max-width:400px){.notie-container{font-size:1rem}}.notie-background-success{background-color:#66bb6a}.notie-background-warning{background-color:#ffa726}.notie-background-error{background-color:#ef5350}.notie-background-info{background-color:#26c6da}.notie-background-neutral{background-color:#A0A0A0}.notie-background-overlay{background-color:#FFF}.notie-textbox{color:#FFF;padding:20px}.notie-textbox-inner{margin:0 auto;max-width:900px}.notie-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;width:100%;z-index:2147483646}.notie-button{color:#FFF;padding:10px;cursor:pointer}.notie-element{color:#FFF;padding:10px}.notie-element-half{display:inline-block;width:50%;box-sizing:border-box}.notie-element-third{display:inline-block;width:33.3333%;box-sizing:border-box}.notie-alert{cursor:pointer}.notie-input-field{background-color:#FFF;border:0;font-family:inherit;font-size:inherit;outline:0;padding:10px;text-align:center;width:100%;box-sizing:border-box}.notie-select-choice-repeated{border-bottom:1px solid rgba(255,255,255,0.2);box-sizing:border-box}.notie-date-selector-inner{margin:0 auto;max-width:900px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.notie-date-selector-inner [contenteditable],.notie-date-selector-inner [contenteditable]:focus{outline:0 solid transparent}.notie-date-selector-up{transform:rotate(180deg)}meta.foundation-version{font-family:"/{{VERSION}}/"}meta.foundation-mq-small{font-family:"/only screen/";width:0}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 640px)/";width:0}meta.foundation-mq-medium{font-family:"/only screen and (min-width:641px)/";width:641px}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:641px) and (max-width:1024px)/";width:641px}meta.foundation-mq-large{font-family:"/only screen and (min-width:1025px)/";width:1025px}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:1025px) and (max-width:1440px)/";width:1025px}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:1441px)/";width:1441px}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:1441px) and (max-width:1920px)/";width:1441px}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:1921px)/";width:1921px}meta.foundation-data-attribute-namespace{font-family:false}html,body{height:100%}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html,body{font-size:16px}body{background:#fff;color:#000;padding:0;margin:0;font-family:"Roboto",sans-serif;font-weight:normal;font-style:normal;line-height:1.5;position:relative;cursor:auto}a:hover{cursor:pointer}img{max-width:100%;height:auto}img{-ms-interpolation-mode:bicubic}#map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object{max-width:none!important}.left{float:left!important}.right{float:right!important}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.hide{display:none!important;visibility:hidden}.invisible{visibility:hidden}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;vertical-align:middle}textarea{height:auto;min-height:50px}select{width:100%}.accordion{margin-bottom:0}.accordion:before,.accordion:after{content:" ";display:table}.accordion:after{clear:both}.accordion .accordion-navigation,.accordion dd{display:block;margin-bottom:0!important}.accordion .accordion-navigation.active>a,.accordion dd.active>a{background:#e8e8e8}.accordion .accordion-navigation>a,.accordion dd>a{background:#EFEFEF;color:#222;padding:1rem;display:block;font-family:"Roboto",sans-serif;font-size:1rem}.accordion .accordion-navigation>a:hover,.accordion dd>a:hover{background:#e3e3e3}.accordion .accordion-navigation>.content,.accordion dd>.content{display:none;padding:0.9375rem}.accordion .accordion-navigation>.content.active,.accordion dd>.content.active{display:block;background:#FFF}[class*="block-grid-"]{display:block;padding:0;margin:0 -0.625rem}[class*="block-grid-"]:before,[class*="block-grid-"]:after{content:" ";display:table}[class*="block-grid-"]:after{clear:both}[class*="block-grid-"]>li{display:block;height:auto;float:left;padding:0 0.625rem 1.25rem}@media only screen{.small-block-grid-1>li{width:100%;list-style:none}.small-block-grid-1>li:nth-of-type(1n){clear:none}.small-block-grid-1>li:nth-of-type(1n+1){clear:both}.small-block-grid-2>li{width:50%;list-style:none}.small-block-grid-2>li:nth-of-type(1n){clear:none}.small-block-grid-2>li:nth-of-type(2n+1){clear:both}.small-block-grid-3>li{width:33.33333%;list-style:none}.small-block-grid-3>li:nth-of-type(1n){clear:none}.small-block-grid-3>li:nth-of-type(3n+1){clear:both}.small-block-grid-4>li{width:25%;list-style:none}.small-block-grid-4>li:nth-of-type(1n){clear:none}.small-block-grid-4>li:nth-of-type(4n+1){clear:both}.small-block-grid-5>li{width:20%;list-style:none}.small-block-grid-5>li:nth-of-type(1n){clear:none}.small-block-grid-5>li:nth-of-type(5n+1){clear:both}.small-block-grid-6>li{width:16.66667%;list-style:none}.small-block-grid-6>li:nth-of-type(1n){clear:none}.small-block-grid-6>li:nth-of-type(6n+1){clear:both}.small-block-grid-7>li{width:14.28571%;list-style:none}.small-block-grid-7>li:nth-of-type(1n){clear:none}.small-block-grid-7>li:nth-of-type(7n+1){clear:both}.small-block-grid-8>li{width:12.5%;list-style:none}.small-block-grid-8>li:nth-of-type(1n){clear:none}.small-block-grid-8>li:nth-of-type(8n+1){clear:both}.small-block-grid-9>li{width:11.11111%;list-style:none}.small-block-grid-9>li:nth-of-type(1n){clear:none}.small-block-grid-9>li:nth-of-type(9n+1){clear:both}.small-block-grid-10>li{width:10%;list-style:none}.small-block-grid-10>li:nth-of-type(1n){clear:none}.small-block-grid-10>li:nth-of-type(10n+1){clear:both}.small-block-grid-11>li{width:9.09091%;list-style:none}.small-block-grid-11>li:nth-of-type(1n){clear:none}.small-block-grid-11>li:nth-of-type(11n+1){clear:both}.small-block-grid-12>li{width:8.33333%;list-style:none}.small-block-grid-12>li:nth-of-type(1n){clear:none}.small-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width:641px){.medium-block-grid-1>li{width:100%;list-style:none}.medium-block-grid-1>li:nth-of-type(1n){clear:none}.medium-block-grid-1>li:nth-of-type(1n+1){clear:both}.medium-block-grid-2>li{width:50%;list-style:none}.medium-block-grid-2>li:nth-of-type(1n){clear:none}.medium-block-grid-2>li:nth-of-type(2n+1){clear:both}.medium-block-grid-3>li{width:33.33333%;list-style:none}.medium-block-grid-3>li:nth-of-type(1n){clear:none}.medium-block-grid-3>li:nth-of-type(3n+1){clear:both}.medium-block-grid-4>li{width:25%;list-style:none}.medium-block-grid-4>li:nth-of-type(1n){clear:none}.medium-block-grid-4>li:nth-of-type(4n+1){clear:both}.medium-block-grid-5>li{width:20%;list-style:none}.medium-block-grid-5>li:nth-of-type(1n){clear:none}.medium-block-grid-5>li:nth-of-type(5n+1){clear:both}.medium-block-grid-6>li{width:16.66667%;list-style:none}.medium-block-grid-6>li:nth-of-type(1n){clear:none}.medium-block-grid-6>li:nth-of-type(6n+1){clear:both}.medium-block-grid-7>li{width:14.28571%;list-style:none}.medium-block-grid-7>li:nth-of-type(1n){clear:none}.medium-block-grid-7>li:nth-of-type(7n+1){clear:both}.medium-block-grid-8>li{width:12.5%;list-style:none}.medium-block-grid-8>li:nth-of-type(1n){clear:none}.medium-block-grid-8>li:nth-of-type(8n+1){clear:both}.medium-block-grid-9>li{width:11.11111%;list-style:none}.medium-block-grid-9>li:nth-of-type(1n){clear:none}.medium-block-grid-9>li:nth-of-type(9n+1){clear:both}.medium-block-grid-10>li{width:10%;list-style:none}.medium-block-grid-10>li:nth-of-type(1n){clear:none}.medium-block-grid-10>li:nth-of-type(10n+1){clear:both}.medium-block-grid-11>li{width:9.09091%;list-style:none}.medium-block-grid-11>li:nth-of-type(1n){clear:none}.medium-block-grid-11>li:nth-of-type(11n+1){clear:both}.medium-block-grid-12>li{width:8.33333%;list-style:none}.medium-block-grid-12>li:nth-of-type(1n){clear:none}.medium-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width:1025px){.large-block-grid-1>li{width:100%;list-style:none}.large-block-grid-1>li:nth-of-type(1n){clear:none}.large-block-grid-1>li:nth-of-type(1n+1){clear:both}.large-block-grid-2>li{width:50%;list-style:none}.large-block-grid-2>li:nth-of-type(1n){clear:none}.large-block-grid-2>li:nth-of-type(2n+1){clear:both}.large-block-grid-3>li{width:33.33333%;list-style:none}.large-block-grid-3>li:nth-of-type(1n){clear:none}.large-block-grid-3>li:nth-of-type(3n+1){clear:both}.large-block-grid-4>li{width:25%;list-style:none}.large-block-grid-4>li:nth-of-type(1n){clear:none}.large-block-grid-4>li:nth-of-type(4n+1){clear:both}.large-block-grid-5>li{width:20%;list-style:none}.large-block-grid-5>li:nth-of-type(1n){clear:none}.large-block-grid-5>li:nth-of-type(5n+1){clear:both}.large-block-grid-6>li{width:16.66667%;list-style:none}.large-block-grid-6>li:nth-of-type(1n){clear:none}.large-block-grid-6>li:nth-of-type(6n+1){clear:both}.large-block-grid-7>li{width:14.28571%;list-style:none}.large-block-grid-7>li:nth-of-type(1n){clear:none}.large-block-grid-7>li:nth-of-type(7n+1){clear:both}.large-block-grid-8>li{width:12.5%;list-style:none}.large-block-grid-8>li:nth-of-type(1n){clear:none}.large-block-grid-8>li:nth-of-type(8n+1){clear:both}.large-block-grid-9>li{width:11.11111%;list-style:none}.large-block-grid-9>li:nth-of-type(1n){clear:none}.large-block-grid-9>li:nth-of-type(9n+1){clear:both}.large-block-grid-10>li{width:10%;list-style:none}.large-block-grid-10>li:nth-of-type(1n){clear:none}.large-block-grid-10>li:nth-of-type(10n+1){clear:both}.large-block-grid-11>li{width:9.09091%;list-style:none}.large-block-grid-11>li:nth-of-type(1n){clear:none}.large-block-grid-11>li:nth-of-type(11n+1){clear:both}.large-block-grid-12>li{width:8.33333%;list-style:none}.large-block-grid-12>li:nth-of-type(1n){clear:none}.large-block-grid-12>li:nth-of-type(12n+1){clear:both}}button,.button{border-style:solid;border-width:0;cursor:pointer;font-family:"Roboto",sans-serif;font-weight:normal;line-height:normal;margin:0 0 1.25rem;position:relative;text-decoration:none;text-align:center;-webkit-appearance:none;border-radius:0;display:inline-block;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-size:1rem;background-color:#1794c7;border-color:#12769f;color:#FFF;transition:background-color 300ms ease-out}button:hover,button:focus,.button:hover,.button:focus{background-color:#12769f}button:hover,button:focus,.button:hover,.button:focus{color:#FFF}button.secondary,.button.secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{background-color:#b9b9b9}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{color:#333}button.success,.button.success{background-color:#43AC6A;border-color:#368a55;color:#FFF}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{background-color:#368a55}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{color:#FFF}button.alert,.button.alert{background-color:#f04124;border-color:#cf2a0e;color:#FFF}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{background-color:#cf2a0e}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{color:#FFF}button.warning,.button.warning{background-color:#f08a24;border-color:#cf6e0e;color:#FFF}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{background-color:#cf6e0e}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{color:#FFF}button.info,.button.info{background-color:#a0d3e8;border-color:#61b6d9;color:#333}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{background-color:#61b6d9}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{color:#FFF}button.large,.button.large{padding-top:1.125rem;padding-right:2.25rem;padding-bottom:1.1875rem;padding-left:2.25rem;font-size:1.25rem}button.small,.button.small{padding-top:0.875rem;padding-right:1.75rem;padding-bottom:0.9375rem;padding-left:1.75rem;font-size:0.8125rem}button.tiny,.button.tiny{padding-top:0.625rem;padding-right:1.25rem;padding-bottom:0.6875rem;padding-left:1.25rem;font-size:0.6875rem}button.expand,.button.expand{padding-right:0;padding-left:0;width:100%}button.left-align,.button.left-align{text-align:left;text-indent:0.75rem}button.right-align,.button.right-align{text-align:right;padding-right:0.75rem}button.radius,.button.radius{border-radius:3px}button.round,.button.round{border-radius:1000px}button.disabled,button[disabled],.button.disabled,.button[disabled]{background-color:#1794c7;border-color:#12769f;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#12769f}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{color:#FFF}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#1794c7}button.disabled.secondary,button[disabled].secondary,.button.disabled.secondary,.button[disabled].secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333;cursor:default;opacity:0.7;box-shadow:none}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#b9b9b9}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{color:#333}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#e7e7e7}button.disabled.success,button[disabled].success,.button.disabled.success,.button[disabled].success{background-color:#43AC6A;border-color:#368a55;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#368a55}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{color:#FFF}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#43AC6A}button.disabled.alert,button[disabled].alert,.button.disabled.alert,.button[disabled].alert{background-color:#f04124;border-color:#cf2a0e;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#cf2a0e}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{color:#FFF}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#f04124}button.disabled.warning,button[disabled].warning,.button.disabled.warning,.button[disabled].warning{background-color:#f08a24;border-color:#cf6e0e;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#cf6e0e}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{color:#FFF}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#f08a24}button.disabled.info,button[disabled].info,.button.disabled.info,.button[disabled].info{background-color:#a0d3e8;border-color:#61b6d9;color:#333;cursor:default;opacity:0.7;box-shadow:none}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#61b6d9}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{color:#FFF}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#a0d3e8}button::-moz-focus-inner{border:0;padding:0}@media only screen and (min-width:641px){button,.button{display:inline-block}}.button-group{list-style:none;margin:0;left:0}.button-group:before,.button-group:after{content:" ";display:table}.button-group:after{clear:both}.button-group>li{margin:0 -2px;display:inline-block}.button-group>li>button,.button-group>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group>li:first-child button,.button-group>li:first-child .button{border-left:0}.button-group.stack>li{margin:0 -2px;display:inline-block;display:block;margin:0;float:none}.button-group.stack>li>button,.button-group.stack>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack>li:first-child button,.button-group.stack>li:first-child .button{border-left:0}.button-group.stack>li>button,.button-group.stack>li .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.stack>li>button{width:100%}.button-group.stack>li:first-child button,.button-group.stack>li:first-child .button{border-top:0}.button-group.stack-for-small>li{margin:0 -2px;display:inline-block}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-left:0}@media only screen and (max-width:640px){.button-group.stack-for-small>li{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-left:0}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.stack-for-small>li>button{width:100%}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-top:0}}.button-group.radius>*{margin:0 -2px;display:inline-block}.button-group.radius>*>button,.button-group.radius>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius>*:first-child button,.button-group.radius>*:first-child .button{border-left:0}.button-group.radius>*,.button-group.radius>*>a,.button-group.radius>*>button,.button-group.radius>*>.button{border-radius:0}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.button-group.radius.stack>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.radius.stack>*>button,.button-group.radius.stack>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack>*:first-child button,.button-group.radius.stack>*:first-child .button{border-left:0}.button-group.radius.stack>*>button,.button-group.radius.stack>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.radius.stack>*>button{width:100%}.button-group.radius.stack>*:first-child button,.button-group.radius.stack>*:first-child .button{border-top:0}.button-group.radius.stack>*,.button-group.radius.stack>*>a,.button-group.radius.stack>*>button,.button-group.radius.stack>*>.button{border-radius:0}.button-group.radius.stack>*:first-child,.button-group.radius.stack>*:first-child>a,.button-group.radius.stack>*:first-child>button,.button-group.radius.stack>*:first-child>.button{-webkit-top-left-radius:3px;-webkit-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.button-group.radius.stack>*:last-child,.button-group.radius.stack>*:last-child>a,.button-group.radius.stack>*:last-child>button,.button-group.radius.stack>*:last-child>.button{-webkit-bottom-left-radius:3px;-webkit-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}@media only screen and (min-width:641px){.button-group.radius.stack-for-small>*{margin:0 -2px;display:inline-block}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-left:0}.button-group.radius.stack-for-small>*,.button-group.radius.stack-for-small>*>a,.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>*>.button{border-radius:0}.button-group.radius.stack-for-small>*:first-child,.button-group.radius.stack-for-small>*:first-child>a,.button-group.radius.stack-for-small>*:first-child>button,.button-group.radius.stack-for-small>*:first-child>.button{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius.stack-for-small>*:last-child,.button-group.radius.stack-for-small>*:last-child>a,.button-group.radius.stack-for-small>*:last-child>button,.button-group.radius.stack-for-small>*:last-child>.button{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}}@media only screen and (max-width:640px){.button-group.radius.stack-for-small>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-left:0}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.radius.stack-for-small>*>button{width:100%}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-top:0}.button-group.radius.stack-for-small>*,.button-group.radius.stack-for-small>*>a,.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>*>.button{border-radius:0}.button-group.radius.stack-for-small>*:first-child,.button-group.radius.stack-for-small>*:first-child>a,.button-group.radius.stack-for-small>*:first-child>button,.button-group.radius.stack-for-small>*:first-child>.button{-webkit-top-left-radius:3px;-webkit-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.button-group.radius.stack-for-small>*:last-child,.button-group.radius.stack-for-small>*:last-child>a,.button-group.radius.stack-for-small>*:last-child>button,.button-group.radius.stack-for-small>*:last-child>.button{-webkit-bottom-left-radius:3px;-webkit-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}}.button-group.round>*{margin:0 -2px;display:inline-block}.button-group.round>*>button,.button-group.round>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round>*:first-child button,.button-group.round>*:first-child .button{border-left:0}.button-group.round>*,.button-group.round>*>a,.button-group.round>*>button,.button-group.round>*>.button{border-radius:0}.button-group.round>*:first-child,.button-group.round>*:first-child>a,.button-group.round>*:first-child>button,.button-group.round>*:first-child>.button{-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round>*:last-child,.button-group.round>*:last-child>a,.button-group.round>*:last-child>button,.button-group.round>*:last-child>.button{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}.button-group.round.stack>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.round.stack>*>button,.button-group.round.stack>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack>*:first-child button,.button-group.round.stack>*:first-child .button{border-left:0}.button-group.round.stack>*>button,.button-group.round.stack>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.round.stack>*>button{width:100%}.button-group.round.stack>*:first-child button,.button-group.round.stack>*:first-child .button{border-top:0}.button-group.round.stack>*,.button-group.round.stack>*>a,.button-group.round.stack>*>button,.button-group.round.stack>*>.button{border-radius:0}.button-group.round.stack>*:first-child,.button-group.round.stack>*:first-child>a,.button-group.round.stack>*:first-child>button,.button-group.round.stack>*:first-child>.button{-webkit-top-left-radius:1rem;-webkit-top-right-radius:1rem;border-top-left-radius:1rem;border-top-right-radius:1rem}.button-group.round.stack>*:last-child,.button-group.round.stack>*:last-child>a,.button-group.round.stack>*:last-child>button,.button-group.round.stack>*:last-child>.button{-webkit-bottom-left-radius:1rem;-webkit-bottom-right-radius:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}@media only screen and (min-width:641px){.button-group.round.stack-for-small>*{margin:0 -2px;display:inline-block}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-left:0}.button-group.round.stack-for-small>*,.button-group.round.stack-for-small>*>a,.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>*>.button{border-radius:0}.button-group.round.stack-for-small>*:first-child,.button-group.round.stack-for-small>*:first-child>a,.button-group.round.stack-for-small>*:first-child>button,.button-group.round.stack-for-small>*:first-child>.button{-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round.stack-for-small>*:last-child,.button-group.round.stack-for-small>*:last-child>a,.button-group.round.stack-for-small>*:last-child>button,.button-group.round.stack-for-small>*:last-child>.button{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}}@media only screen and (max-width:640px){.button-group.round.stack-for-small>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-left:0}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.round.stack-for-small>*>button{width:100%}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-top:0}.button-group.round.stack-for-small>*,.button-group.round.stack-for-small>*>a,.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>*>.button{border-radius:0}.button-group.round.stack-for-small>*:first-child,.button-group.round.stack-for-small>*:first-child>a,.button-group.round.stack-for-small>*:first-child>button,.button-group.round.stack-for-small>*:first-child>.button{-webkit-top-left-radius:1rem;-webkit-top-right-radius:1rem;border-top-left-radius:1rem;border-top-right-radius:1rem}.button-group.round.stack-for-small>*:last-child,.button-group.round.stack-for-small>*:last-child>a,.button-group.round.stack-for-small>*:last-child>button,.button-group.round.stack-for-small>*:last-child>.button{-webkit-bottom-left-radius:1rem;-webkit-bottom-right-radius:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}}.button-group.even-2 li{margin:0 -2px;display:inline-block;width:50%}.button-group.even-2 li>button,.button-group.even-2 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-2 li:first-child button,.button-group.even-2 li:first-child .button{border-left:0}.button-group.even-2 li button,.button-group.even-2 li .button{width:100%}.button-group.even-3 li{margin:0 -2px;display:inline-block;width:33.33333%}.button-group.even-3 li>button,.button-group.even-3 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-3 li:first-child button,.button-group.even-3 li:first-child .button{border-left:0}.button-group.even-3 li button,.button-group.even-3 li .button{width:100%}.button-group.even-4 li{margin:0 -2px;display:inline-block;width:25%}.button-group.even-4 li>button,.button-group.even-4 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-4 li:first-child button,.button-group.even-4 li:first-child .button{border-left:0}.button-group.even-4 li button,.button-group.even-4 li .button{width:100%}.button-group.even-5 li{margin:0 -2px;display:inline-block;width:20%}.button-group.even-5 li>button,.button-group.even-5 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-5 li:first-child button,.button-group.even-5 li:first-child .button{border-left:0}.button-group.even-5 li button,.button-group.even-5 li .button{width:100%}.button-group.even-6 li{margin:0 -2px;display:inline-block;width:16.66667%}.button-group.even-6 li>button,.button-group.even-6 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-6 li:first-child button,.button-group.even-6 li:first-child .button{border-left:0}.button-group.even-6 li button,.button-group.even-6 li .button{width:100%}.button-group.even-7 li{margin:0 -2px;display:inline-block;width:14.28571%}.button-group.even-7 li>button,.button-group.even-7 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-7 li:first-child button,.button-group.even-7 li:first-child .button{border-left:0}.button-group.even-7 li button,.button-group.even-7 li .button{width:100%}.button-group.even-8 li{margin:0 -2px;display:inline-block;width:12.5%}.button-group.even-8 li>button,.button-group.even-8 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-8 li:first-child button,.button-group.even-8 li:first-child .button{border-left:0}.button-group.even-8 li button,.button-group.even-8 li .button{width:100%}.button-bar:before,.button-bar:after{content:" ";display:table}.button-bar:after{clear:both}.button-bar .button-group{float:left;margin-right:0.625rem}.button-bar .button-group div{overflow:hidden}button,.button{border-style:solid;border-width:0;cursor:pointer;font-family:"Roboto",sans-serif;font-weight:normal;line-height:normal;margin:0 0 1.25rem;position:relative;text-decoration:none;text-align:center;-webkit-appearance:none;border-radius:0;display:inline-block;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-size:1rem;background-color:#1794c7;border-color:#12769f;color:#FFF;transition:background-color 300ms ease-out}button:hover,button:focus,.button:hover,.button:focus{background-color:#12769f}button:hover,button:focus,.button:hover,.button:focus{color:#FFF}button.secondary,.button.secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{background-color:#b9b9b9}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{color:#333}button.success,.button.success{background-color:#43AC6A;border-color:#368a55;color:#FFF}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{background-color:#368a55}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{color:#FFF}button.alert,.button.alert{background-color:#f04124;border-color:#cf2a0e;color:#FFF}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{background-color:#cf2a0e}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{color:#FFF}button.warning,.button.warning{background-color:#f08a24;border-color:#cf6e0e;color:#FFF}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{background-color:#cf6e0e}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{color:#FFF}button.info,.button.info{background-color:#a0d3e8;border-color:#61b6d9;color:#333}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{background-color:#61b6d9}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{color:#FFF}button.large,.button.large{padding-top:1.125rem;padding-right:2.25rem;padding-bottom:1.1875rem;padding-left:2.25rem;font-size:1.25rem}button.small,.button.small{padding-top:0.875rem;padding-right:1.75rem;padding-bottom:0.9375rem;padding-left:1.75rem;font-size:0.8125rem}button.tiny,.button.tiny{padding-top:0.625rem;padding-right:1.25rem;padding-bottom:0.6875rem;padding-left:1.25rem;font-size:0.6875rem}button.expand,.button.expand{padding-right:0;padding-left:0;width:100%}button.left-align,.button.left-align{text-align:left;text-indent:0.75rem}button.right-align,.button.right-align{text-align:right;padding-right:0.75rem}button.radius,.button.radius{border-radius:3px}button.round,.button.round{border-radius:1000px}button.disabled,button[disabled],.button.disabled,.button[disabled]{background-color:#1794c7;border-color:#12769f;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#12769f}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{color:#FFF}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#1794c7}button.disabled.secondary,button[disabled].secondary,.button.disabled.secondary,.button[disabled].secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333;cursor:default;opacity:0.7;box-shadow:none}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#b9b9b9}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{color:#333}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#e7e7e7}button.disabled.success,button[disabled].success,.button.disabled.success,.button[disabled].success{background-color:#43AC6A;border-color:#368a55;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#368a55}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{color:#FFF}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#43AC6A}button.disabled.alert,button[disabled].alert,.button.disabled.alert,.button[disabled].alert{background-color:#f04124;border-color:#cf2a0e;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#cf2a0e}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{color:#FFF}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#f04124}button.disabled.warning,button[disabled].warning,.button.disabled.warning,.button[disabled].warning{background-color:#f08a24;border-color:#cf6e0e;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#cf6e0e}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{color:#FFF}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#f08a24}button.disabled.info,button[disabled].info,.button.disabled.info,.button[disabled].info{background-color:#a0d3e8;border-color:#61b6d9;color:#333;cursor:default;opacity:0.7;box-shadow:none}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#61b6d9}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{color:#FFF}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#a0d3e8}button::-moz-focus-inner{border:0;padding:0}@media only screen and (min-width:641px){button,.button{display:inline-block}}.dropdown.button,button.dropdown{position:relative;outline:none;padding-right:3.5625rem}.dropdown.button::after,button.dropdown::after{position:absolute;content:"";width:0;height:0;display:block;border-style:solid;border-color:#FFF transparent transparent transparent;top:50%}.dropdown.button::after,button.dropdown::after{border-width:0.375rem;right:1.40625rem;margin-top:-0.15625rem}.dropdown.button::after,button.dropdown::after{border-color:#FFF transparent transparent transparent}.dropdown.button.tiny,button.dropdown.tiny{padding-right:2.625rem}.dropdown.button.tiny:after,button.dropdown.tiny:after{border-width:0.375rem;right:1.125rem;margin-top:-0.125rem}.dropdown.button.tiny::after,button.dropdown.tiny::after{border-color:#FFF transparent transparent transparent}.dropdown.button.small,button.dropdown.small{padding-right:3.0625rem}.dropdown.button.small::after,button.dropdown.small::after{border-width:0.4375rem;right:1.3125rem;margin-top:-0.15625rem}.dropdown.button.small::after,button.dropdown.small::after{border-color:#FFF transparent transparent transparent}.dropdown.button.large,button.dropdown.large{padding-right:3.625rem}.dropdown.button.large::after,button.dropdown.large::after{border-width:0.3125rem;right:1.71875rem;margin-top:-0.15625rem}.dropdown.button.large::after,button.dropdown.large::after{border-color:#FFF transparent transparent transparent}.dropdown.button.secondary:after,button.dropdown.secondary:after{border-color:#333 transparent transparent transparent}.f-dropdown{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#FFF;border:solid 1px #ccc;font-size:0.875rem;z-index:89;margin-top:2px;max-width:200px}.f-dropdown>*:first-child{margin-top:0}.f-dropdown>*:last-child{margin-bottom:0}.f-dropdown:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent #FFF transparent;border-bottom-style:solid;position:absolute;top:-12px;left:10px;z-index:89}.f-dropdown:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent #ccc transparent;border-bottom-style:solid;position:absolute;top:-14px;left:9px;z-index:88}.f-dropdown.right:before{left:auto;right:10px}.f-dropdown.right:after{left:auto;right:9px}.f-dropdown.drop-right{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#FFF;border:solid 1px #ccc;font-size:0.875rem;z-index:89;margin-top:0;margin-left:2px;max-width:200px}.f-dropdown.drop-right>*:first-child{margin-top:0}.f-dropdown.drop-right>*:last-child{margin-bottom:0}.f-dropdown.drop-right:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent #FFF transparent transparent;border-right-style:solid;position:absolute;top:10px;left:-12px;z-index:89}.f-dropdown.drop-right:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent #ccc transparent transparent;border-right-style:solid;position:absolute;top:9px;left:-14px;z-index:88}.f-dropdown.drop-left{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#FFF;border:solid 1px #ccc;font-size:0.875rem;z-index:89;margin-top:0;margin-left:-2px;max-width:200px}.f-dropdown.drop-left>*:first-child{margin-top:0}.f-dropdown.drop-left>*:last-child{margin-bottom:0}.f-dropdown.drop-left:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent transparent #FFF;border-left-style:solid;position:absolute;top:10px;right:-12px;left:auto;z-index:89}.f-dropdown.drop-left:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent transparent #ccc;border-left-style:solid;position:absolute;top:9px;right:-14px;left:auto;z-index:88}.f-dropdown.drop-top{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#FFF;border:solid 1px #ccc;font-size:0.875rem;z-index:89;margin-top:-2px;margin-left:0;max-width:200px}.f-dropdown.drop-top>*:first-child{margin-top:0}.f-dropdown.drop-top>*:last-child{margin-bottom:0}.f-dropdown.drop-top:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:#FFF transparent transparent transparent;border-top-style:solid;position:absolute;top:auto;bottom:-12px;left:10px;right:auto;z-index:89}.f-dropdown.drop-top:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:#ccc transparent transparent transparent;border-top-style:solid;position:absolute;top:auto;bottom:-14px;left:9px;right:auto;z-index:88}.f-dropdown li{font-size:0.875rem;cursor:pointer;line-height:1.125rem;margin:0}.f-dropdown li:hover,.f-dropdown li:focus{background:#EEE}.f-dropdown li.radius{border-radius:3px}.f-dropdown li a{display:block;padding:0.5rem;color:#555}.f-dropdown.content{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;padding:1.25rem;width:100%;height:auto;max-height:none;background:#FFF;border:solid 1px #ccc;font-size:0.875rem;z-index:89;max-width:200px}.f-dropdown.content>*:first-child{margin-top:0}.f-dropdown.content>*:last-child{margin-bottom:0}.f-dropdown.tiny{max-width:200px}.f-dropdown.small{max-width:300px}.f-dropdown.medium{max-width:500px}.f-dropdown.large{max-width:800px}.f-dropdown.mega{width:100%!important;max-width:100%!important}.f-dropdown.mega.open{left:0!important}button,.button{border-style:solid;border-width:0;cursor:pointer;font-family:"Roboto",sans-serif;font-weight:normal;line-height:normal;margin:0 0 1.25rem;position:relative;text-decoration:none;text-align:center;-webkit-appearance:none;border-radius:0;display:inline-block;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-size:1rem;background-color:#1794c7;border-color:#12769f;color:#FFF;transition:background-color 300ms ease-out}button:hover,button:focus,.button:hover,.button:focus{background-color:#12769f}button:hover,button:focus,.button:hover,.button:focus{color:#FFF}button.secondary,.button.secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{background-color:#b9b9b9}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{color:#333}button.success,.button.success{background-color:#43AC6A;border-color:#368a55;color:#FFF}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{background-color:#368a55}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{color:#FFF}button.alert,.button.alert{background-color:#f04124;border-color:#cf2a0e;color:#FFF}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{background-color:#cf2a0e}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{color:#FFF}button.warning,.button.warning{background-color:#f08a24;border-color:#cf6e0e;color:#FFF}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{background-color:#cf6e0e}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{color:#FFF}button.info,.button.info{background-color:#a0d3e8;border-color:#61b6d9;color:#333}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{background-color:#61b6d9}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{color:#FFF}button.large,.button.large{padding-top:1.125rem;padding-right:2.25rem;padding-bottom:1.1875rem;padding-left:2.25rem;font-size:1.25rem}button.small,.button.small{padding-top:0.875rem;padding-right:1.75rem;padding-bottom:0.9375rem;padding-left:1.75rem;font-size:0.8125rem}button.tiny,.button.tiny{padding-top:0.625rem;padding-right:1.25rem;padding-bottom:0.6875rem;padding-left:1.25rem;font-size:0.6875rem}button.expand,.button.expand{padding-right:0;padding-left:0;width:100%}button.left-align,.button.left-align{text-align:left;text-indent:0.75rem}button.right-align,.button.right-align{text-align:right;padding-right:0.75rem}button.radius,.button.radius{border-radius:3px}button.round,.button.round{border-radius:1000px}button.disabled,button[disabled],.button.disabled,.button[disabled]{background-color:#1794c7;border-color:#12769f;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#12769f}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{color:#FFF}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#1794c7}button.disabled.secondary,button[disabled].secondary,.button.disabled.secondary,.button[disabled].secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333;cursor:default;opacity:0.7;box-shadow:none}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#b9b9b9}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{color:#333}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#e7e7e7}button.disabled.success,button[disabled].success,.button.disabled.success,.button[disabled].success{background-color:#43AC6A;border-color:#368a55;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#368a55}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{color:#FFF}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#43AC6A}button.disabled.alert,button[disabled].alert,.button.disabled.alert,.button[disabled].alert{background-color:#f04124;border-color:#cf2a0e;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#cf2a0e}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{color:#FFF}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#f04124}button.disabled.warning,button[disabled].warning,.button.disabled.warning,.button[disabled].warning{background-color:#f08a24;border-color:#cf6e0e;color:#FFF;cursor:default;opacity:0.7;box-shadow:none}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#cf6e0e}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{color:#FFF}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#f08a24}button.disabled.info,button[disabled].info,.button.disabled.info,.button[disabled].info{background-color:#a0d3e8;border-color:#61b6d9;color:#333;cursor:default;opacity:0.7;box-shadow:none}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#61b6d9}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{color:#FFF}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#a0d3e8}button::-moz-focus-inner{border:0;padding:0}@media only screen and (min-width:641px){button,.button{display:inline-block}}form{margin:0 0 1rem}form .row .row{margin:0 -0.5rem}form .row .row .column,form .row .row .columns{padding:0 0.5rem}form .row .row.collapse{margin:0}form .row .row.collapse .column,form .row .row.collapse .columns{padding:0}form .row .row.collapse input{-webkit-border-bottom-right-radius:0;-webkit-border-top-right-radius:0;border-bottom-right-radius:0;border-top-right-radius:0}form .row input.column,form .row input.columns,form .row textarea.column,form .row textarea.columns{padding-left:0.5rem}label{font-size:0.875rem;color:#4d4d4d;cursor:pointer;display:block;font-weight:normal;line-height:1.5;margin-bottom:0}label.right{float:none!important;text-align:right}label.inline{margin:0 0 1rem 0;padding:0.5625rem 0}label small{text-transform:capitalize;color:#676767}.prefix,.postfix{display:block;position:relative;z-index:2;text-align:center;width:100%;padding-top:0;padding-bottom:0;border-style:solid;border-width:1px;overflow:hidden;font-size:0.875rem;height:2.4375rem;line-height:2.4375rem}.postfix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;border:none}.prefix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;border:none}.prefix.button.radius{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.postfix.button.radius{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.prefix.button.round{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.postfix.button.round{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}span.prefix,label.prefix{background:#f2f2f2;border-right:none;color:#333;border-color:#ccc}span.postfix,label.postfix{background:#f2f2f2;border-left:none;color:#333;border-color:#ccc}input[type="text"],input[type="password"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="week"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="time"],input[type="url"],input[type="color"],textarea{-webkit-appearance:none;border-radius:0;background-color:#FFF;font-family:inherit;border-style:solid;border-width:1px;border-color:#ccc;box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);color:#000;display:block;font-size:1rem;margin:0 0 1rem 0;padding:0.5rem;height:2.4375rem;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:box-shadow 0.45s,border-color 0.45s ease-in-out}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,input[type="color"]:focus,textarea:focus{box-shadow:0 0 5px #999;border-color:#999}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,input[type="color"]:focus,textarea:focus{background:#fafafa;border-color:#999;outline:none}input[type="text"]:disabled,input[type="password"]:disabled,input[type="date"]:disabled,input[type="datetime"]:disabled,input[type="datetime-local"]:disabled,input[type="month"]:disabled,input[type="week"]:disabled,input[type="email"]:disabled,input[type="number"]:disabled,input[type="search"]:disabled,input[type="tel"]:disabled,input[type="time"]:disabled,input[type="url"]:disabled,input[type="color"]:disabled,textarea:disabled{background-color:#DDD;cursor:default}input[type="text"][disabled],input[type="text"][readonly],fieldset[disabled] input[type="text"],input[type="password"][disabled],input[type="password"][readonly],fieldset[disabled] input[type="password"],input[type="date"][disabled],input[type="date"][readonly],fieldset[disabled] input[type="date"],input[type="datetime"][disabled],input[type="datetime"][readonly],fieldset[disabled] input[type="datetime"],input[type="datetime-local"][disabled],input[type="datetime-local"][readonly],fieldset[disabled] input[type="datetime-local"],input[type="month"][disabled],input[type="month"][readonly],fieldset[disabled] input[type="month"],input[type="week"][disabled],input[type="week"][readonly],fieldset[disabled] input[type="week"],input[type="email"][disabled],input[type="email"][readonly],fieldset[disabled] input[type="email"],input[type="number"][disabled],input[type="number"][readonly],fieldset[disabled] input[type="number"],input[type="search"][disabled],input[type="search"][readonly],fieldset[disabled] input[type="search"],input[type="tel"][disabled],input[type="tel"][readonly],fieldset[disabled] input[type="tel"],input[type="time"][disabled],input[type="time"][readonly],fieldset[disabled] input[type="time"],input[type="url"][disabled],input[type="url"][readonly],fieldset[disabled] input[type="url"],input[type="color"][disabled],input[type="color"][readonly],fieldset[disabled] input[type="color"],textarea[disabled],textarea[readonly],fieldset[disabled] textarea{background-color:#DDD;cursor:default}input[type="text"].radius,input[type="password"].radius,input[type="date"].radius,input[type="datetime"].radius,input[type="datetime-local"].radius,input[type="month"].radius,input[type="week"].radius,input[type="email"].radius,input[type="number"].radius,input[type="search"].radius,input[type="tel"].radius,input[type="time"].radius,input[type="url"].radius,input[type="color"].radius,textarea.radius{border-radius:3px}form .row .prefix-radius.row.collapse input,form .row .prefix-radius.row.collapse textarea,form .row .prefix-radius.row.collapse select{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}form .row .prefix-radius.row.collapse .prefix{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}form .row .postfix-radius.row.collapse input,form .row .postfix-radius.row.collapse textarea,form .row .postfix-radius.row.collapse select{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}form .row .postfix-radius.row.collapse .postfix{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}form .row .prefix-round.row.collapse input,form .row .prefix-round.row.collapse textarea,form .row .prefix-round.row.collapse select{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}form .row .prefix-round.row.collapse .prefix{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}form .row .postfix-round.row.collapse input,form .row .postfix-round.row.collapse textarea,form .row .postfix-round.row.collapse select{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}form .row .postfix-round.row.collapse .postfix{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}input[type="submit"]{-webkit-appearance:none;border-radius:0}textarea[rows]{height:auto}textarea{max-width:100%}select{-webkit-appearance:none!important;border-radius:0;background-color:#FAFAFA;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);background-position:100% center;background-repeat:no-repeat;border-style:solid;border-width:1px;border-color:#ccc;padding:0.5rem;font-size:1rem;font-family:"Roboto",sans-serif;color:#000;line-height:normal;border-radius:0;height:2.4375rem}select::-ms-expand{display:none}select.radius{border-radius:3px}select:hover{background-color:#f3f3f3;border-color:#999}select:disabled{background-color:#DDD;cursor:default}input[type="file"],input[type="checkbox"],input[type="radio"],select{margin:0 0 1rem 0}input[type="checkbox"]+label,input[type="radio"]+label{display:inline-block;margin-left:0.5rem;margin-right:1rem;margin-bottom:0;vertical-align:baseline}input[type="file"]{width:100%}fieldset{border:1px solid #DDD;padding:1.25rem;margin:1.125rem 0}fieldset legend{font-weight:bold;background:#FFF;padding:0 0.1875rem;margin:0;margin-left:-0.1875rem}[data-abide] .error small.error,[data-abide] .error span.error,[data-abide] span.error,[data-abide] small.error{display:block;padding:0.375rem 0.5625rem 0.5625rem;margin-top:-1px;margin-bottom:1rem;font-size:0.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#FFF}[data-abide] span.error,[data-abide] small.error{display:none}span.error,small.error{display:block;padding:0.375rem 0.5625rem 0.5625rem;margin-top:-1px;margin-bottom:1rem;font-size:0.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#FFF}.error input,.error textarea,.error select{margin-bottom:0}.error input[type="checkbox"],.error input[type="radio"]{margin-bottom:1rem}.error label,.error label.error{color:#f04124}.error small.error{display:block;padding:0.375rem 0.5625rem 0.5625rem;margin-top:-1px;margin-bottom:1rem;font-size:0.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#FFF}.error>label>small{color:#676767;background:transparent;padding:0;text-transform:capitalize;font-style:normal;font-size:60%;margin:0;display:inline}.error span.error-message{display:block}input.error,textarea.error,select.error{margin-bottom:0}label.error{color:#f04124}.row{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:75rem}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row.collapse>.column,.row.collapse>.columns{padding-left:0;padding-right:0}.row.collapse .row{margin-left:0;margin-right:0}.row .row{width:auto;margin-left:-0.9375rem;margin-right:-0.9375rem;margin-top:0;margin-bottom:0;max-width:none}.row .row:before,.row .row:after{content:" ";display:table}.row .row:after{clear:both}.row .row.collapse{width:auto;margin:0;max-width:none}.row .row.collapse:before,.row .row.collapse:after{content:" ";display:table}.row .row.collapse:after{clear:both}.column,.columns{padding-left:0.9375rem;padding-right:0.9375rem;width:100%;float:left}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}@media only screen{.small-push-0{position:relative;left:0;right:auto}.small-pull-0{position:relative;right:0;left:auto}.small-push-1{position:relative;left:8.33333%;right:auto}.small-pull-1{position:relative;right:8.33333%;left:auto}.small-push-2{position:relative;left:16.66667%;right:auto}.small-pull-2{position:relative;right:16.66667%;left:auto}.small-push-3{position:relative;left:25%;right:auto}.small-pull-3{position:relative;right:25%;left:auto}.small-push-4{position:relative;left:33.33333%;right:auto}.small-pull-4{position:relative;right:33.33333%;left:auto}.small-push-5{position:relative;left:41.66667%;right:auto}.small-pull-5{position:relative;right:41.66667%;left:auto}.small-push-6{position:relative;left:50%;right:auto}.small-pull-6{position:relative;right:50%;left:auto}.small-push-7{position:relative;left:58.33333%;right:auto}.small-pull-7{position:relative;right:58.33333%;left:auto}.small-push-8{position:relative;left:66.66667%;right:auto}.small-pull-8{position:relative;right:66.66667%;left:auto}.small-push-9{position:relative;left:75%;right:auto}.small-pull-9{position:relative;right:75%;left:auto}.small-push-10{position:relative;left:83.33333%;right:auto}.small-pull-10{position:relative;right:83.33333%;left:auto}.small-push-11{position:relative;left:91.66667%;right:auto}.small-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.small-1{width:8.33333%}.small-2{width:16.66667%}.small-3{width:25%}.small-4{width:33.33333%}.small-5{width:41.66667%}.small-6{width:50%}.small-7{width:58.33333%}.small-8{width:66.66667%}.small-9{width:75%}.small-10{width:83.33333%}.small-11{width:91.66667%}.small-12{width:100%}.small-offset-0{margin-left:0!important}.small-offset-1{margin-left:8.33333%!important}.small-offset-2{margin-left:16.66667%!important}.small-offset-3{margin-left:25%!important}.small-offset-4{margin-left:33.33333%!important}.small-offset-5{margin-left:41.66667%!important}.small-offset-6{margin-left:50%!important}.small-offset-7{margin-left:58.33333%!important}.small-offset-8{margin-left:66.66667%!important}.small-offset-9{margin-left:75%!important}.small-offset-10{margin-left:83.33333%!important}.small-offset-11{margin-left:91.66667%!important}.small-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.small-centered,.columns.small-centered{margin-left:auto;margin-right:auto;float:none}.column.small-uncentered,.columns.small-uncentered{margin-left:0;margin-right:0;float:left}.column.small-centered:last-child,.columns.small-centered:last-child{float:none}.column.small-uncentered:last-child,.columns.small-uncentered:last-child{float:left}.column.small-uncentered.opposite,.columns.small-uncentered.opposite{float:right}.row.small-collapse>.column,.row.small-collapse>.columns{padding-left:0;padding-right:0}.row.small-collapse .row{margin-left:0;margin-right:0}.row.small-uncollapse>.column,.row.small-uncollapse>.columns{padding-left:0.9375rem;padding-right:0.9375rem;float:left}}@media only screen and (min-width:641px){.medium-push-0{position:relative;left:0;right:auto}.medium-pull-0{position:relative;right:0;left:auto}.medium-push-1{position:relative;left:8.33333%;right:auto}.medium-pull-1{position:relative;right:8.33333%;left:auto}.medium-push-2{position:relative;left:16.66667%;right:auto}.medium-pull-2{position:relative;right:16.66667%;left:auto}.medium-push-3{position:relative;left:25%;right:auto}.medium-pull-3{position:relative;right:25%;left:auto}.medium-push-4{position:relative;left:33.33333%;right:auto}.medium-pull-4{position:relative;right:33.33333%;left:auto}.medium-push-5{position:relative;left:41.66667%;right:auto}.medium-pull-5{position:relative;right:41.66667%;left:auto}.medium-push-6{position:relative;left:50%;right:auto}.medium-pull-6{position:relative;right:50%;left:auto}.medium-push-7{position:relative;left:58.33333%;right:auto}.medium-pull-7{position:relative;right:58.33333%;left:auto}.medium-push-8{position:relative;left:66.66667%;right:auto}.medium-pull-8{position:relative;right:66.66667%;left:auto}.medium-push-9{position:relative;left:75%;right:auto}.medium-pull-9{position:relative;right:75%;left:auto}.medium-push-10{position:relative;left:83.33333%;right:auto}.medium-pull-10{position:relative;right:83.33333%;left:auto}.medium-push-11{position:relative;left:91.66667%;right:auto}.medium-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.medium-1{width:8.33333%}.medium-2{width:16.66667%}.medium-3{width:25%}.medium-4{width:33.33333%}.medium-5{width:41.66667%}.medium-6{width:50%}.medium-7{width:58.33333%}.medium-8{width:66.66667%}.medium-9{width:75%}.medium-10{width:83.33333%}.medium-11{width:91.66667%}.medium-12{width:100%}.medium-offset-0{margin-left:0!important}.medium-offset-1{margin-left:8.33333%!important}.medium-offset-2{margin-left:16.66667%!important}.medium-offset-3{margin-left:25%!important}.medium-offset-4{margin-left:33.33333%!important}.medium-offset-5{margin-left:41.66667%!important}.medium-offset-6{margin-left:50%!important}.medium-offset-7{margin-left:58.33333%!important}.medium-offset-8{margin-left:66.66667%!important}.medium-offset-9{margin-left:75%!important}.medium-offset-10{margin-left:83.33333%!important}.medium-offset-11{margin-left:91.66667%!important}.medium-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.medium-centered,.columns.medium-centered{margin-left:auto;margin-right:auto;float:none}.column.medium-uncentered,.columns.medium-uncentered{margin-left:0;margin-right:0;float:left}.column.medium-centered:last-child,.columns.medium-centered:last-child{float:none}.column.medium-uncentered:last-child,.columns.medium-uncentered:last-child{float:left}.column.medium-uncentered.opposite,.columns.medium-uncentered.opposite{float:right}.row.medium-collapse>.column,.row.medium-collapse>.columns{padding-left:0;padding-right:0}.row.medium-collapse .row{margin-left:0;margin-right:0}.row.medium-uncollapse>.column,.row.medium-uncollapse>.columns{padding-left:0.9375rem;padding-right:0.9375rem;float:left}.push-0{position:relative;left:0;right:auto}.pull-0{position:relative;right:0;left:auto}.push-1{position:relative;left:8.33333%;right:auto}.pull-1{position:relative;right:8.33333%;left:auto}.push-2{position:relative;left:16.66667%;right:auto}.pull-2{position:relative;right:16.66667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.33333%;right:auto}.pull-4{position:relative;right:33.33333%;left:auto}.push-5{position:relative;left:41.66667%;right:auto}.pull-5{position:relative;right:41.66667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.33333%;right:auto}.pull-7{position:relative;right:58.33333%;left:auto}.push-8{position:relative;left:66.66667%;right:auto}.pull-8{position:relative;right:66.66667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.33333%;right:auto}.pull-10{position:relative;right:83.33333%;left:auto}.push-11{position:relative;left:91.66667%;right:auto}.pull-11{position:relative;right:91.66667%;left:auto}}@media only screen and (min-width:1025px){.large-push-0{position:relative;left:0;right:auto}.large-pull-0{position:relative;right:0;left:auto}.large-push-1{position:relative;left:8.33333%;right:auto}.large-pull-1{position:relative;right:8.33333%;left:auto}.large-push-2{position:relative;left:16.66667%;right:auto}.large-pull-2{position:relative;right:16.66667%;left:auto}.large-push-3{position:relative;left:25%;right:auto}.large-pull-3{position:relative;right:25%;left:auto}.large-push-4{position:relative;left:33.33333%;right:auto}.large-pull-4{position:relative;right:33.33333%;left:auto}.large-push-5{position:relative;left:41.66667%;right:auto}.large-pull-5{position:relative;right:41.66667%;left:auto}.large-push-6{position:relative;left:50%;right:auto}.large-pull-6{position:relative;right:50%;left:auto}.large-push-7{position:relative;left:58.33333%;right:auto}.large-pull-7{position:relative;right:58.33333%;left:auto}.large-push-8{position:relative;left:66.66667%;right:auto}.large-pull-8{position:relative;right:66.66667%;left:auto}.large-push-9{position:relative;left:75%;right:auto}.large-pull-9{position:relative;right:75%;left:auto}.large-push-10{position:relative;left:83.33333%;right:auto}.large-pull-10{position:relative;right:83.33333%;left:auto}.large-push-11{position:relative;left:91.66667%;right:auto}.large-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.large-1{width:8.33333%}.large-2{width:16.66667%}.large-3{width:25%}.large-4{width:33.33333%}.large-5{width:41.66667%}.large-6{width:50%}.large-7{width:58.33333%}.large-8{width:66.66667%}.large-9{width:75%}.large-10{width:83.33333%}.large-11{width:91.66667%}.large-12{width:100%}.large-offset-0{margin-left:0!important}.large-offset-1{margin-left:8.33333%!important}.large-offset-2{margin-left:16.66667%!important}.large-offset-3{margin-left:25%!important}.large-offset-4{margin-left:33.33333%!important}.large-offset-5{margin-left:41.66667%!important}.large-offset-6{margin-left:50%!important}.large-offset-7{margin-left:58.33333%!important}.large-offset-8{margin-left:66.66667%!important}.large-offset-9{margin-left:75%!important}.large-offset-10{margin-left:83.33333%!important}.large-offset-11{margin-left:91.66667%!important}.large-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.large-centered,.columns.large-centered{margin-left:auto;margin-right:auto;float:none}.column.large-uncentered,.columns.large-uncentered{margin-left:0;margin-right:0;float:left}.column.large-centered:last-child,.columns.large-centered:last-child{float:none}.column.large-uncentered:last-child,.columns.large-uncentered:last-child{float:left}.column.large-uncentered.opposite,.columns.large-uncentered.opposite{float:right}.row.large-collapse>.column,.row.large-collapse>.columns{padding-left:0;padding-right:0}.row.large-collapse .row{margin-left:0;margin-right:0}.row.large-uncollapse>.column,.row.large-uncollapse>.columns{padding-left:0.9375rem;padding-right:0.9375rem;float:left}.push-0{position:relative;left:0;right:auto}.pull-0{position:relative;right:0;left:auto}.push-1{position:relative;left:8.33333%;right:auto}.pull-1{position:relative;right:8.33333%;left:auto}.push-2{position:relative;left:16.66667%;right:auto}.pull-2{position:relative;right:16.66667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.33333%;right:auto}.pull-4{position:relative;right:33.33333%;left:auto}.push-5{position:relative;left:41.66667%;right:auto}.pull-5{position:relative;right:41.66667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.33333%;right:auto}.pull-7{position:relative;right:58.33333%;left:auto}.push-8{position:relative;left:66.66667%;right:auto}.pull-8{position:relative;right:66.66667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.33333%;right:auto}.pull-10{position:relative;right:83.33333%;left:auto}.push-11{position:relative;left:91.66667%;right:auto}.pull-11{position:relative;right:91.66667%;left:auto}}.label{font-weight:normal;font-family:"Roboto",sans-serif;text-align:center;text-decoration:none;line-height:1;white-space:nowrap;display:inline-block;position:relative;margin-bottom:auto;padding:0.25rem 0.5rem 0.25rem;font-size:0.6875rem;background-color:#1794c7;color:#FFF}.label.radius{border-radius:3px}.label.round{border-radius:1000px}.label.alert{background-color:#f04124;color:#FFF}.label.warning{background-color:#f08a24;color:#FFF}.label.success{background-color:#43AC6A;color:#FFF}.label.secondary{background-color:#e7e7e7;color:#333}.label.info{background-color:#a0d3e8;color:#333}.panel{border-style:solid;border-width:1px;border-color:#d8d8d8;margin-bottom:1.25rem;padding:1.25rem;background:#f2f2f2;color:#333}.panel>:first-child{margin-top:0}.panel>:last-child{margin-bottom:0}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6,.panel p,.panel li,.panel dl{color:#333}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{line-height:1;margin-bottom:0.625rem}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{line-height:1.4}.panel.callout{border-style:solid;border-width:1px;border-color:#bfe7f8;margin-bottom:1.25rem;padding:1.25rem;background:#f0f9fd;color:#333}.panel.callout>:first-child{margin-top:0}.panel.callout>:last-child{margin-bottom:0}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6,.panel.callout p,.panel.callout li,.panel.callout dl{color:#333}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6{line-height:1;margin-bottom:0.625rem}.panel.callout h1.subheader,.panel.callout h2.subheader,.panel.callout h3.subheader,.panel.callout h4.subheader,.panel.callout h5.subheader,.panel.callout h6.subheader{line-height:1.4}.panel.callout a:not(.button){color:#1794c7}.panel.callout a:not(.button):hover,.panel.callout a:not(.button):focus{color:#147fab}.panel.radius{border-radius:3px}table{background:#FFF;margin-bottom:1.25rem;border:solid 1px #DDD;table-layout:auto}table caption{background:transparent;color:#222;font-size:1rem;font-weight:bold}table thead{background:#F5F5F5}table thead tr th,table thead tr td{padding:0.5rem 0.625rem 0.625rem;font-size:0.875rem;font-weight:bold;color:#222}table tfoot{background:#F5F5F5}table tfoot tr th,table tfoot tr td{padding:0.5rem 0.625rem 0.625rem;font-size:0.875rem;font-weight:bold;color:#222}table tr th,table tr td{padding:0.5625rem 0.625rem;font-size:0.875rem;color:#222;text-align:left}table tr.even,table tr.alt,table tr:nth-of-type(even){background:#F9F9F9}table thead tr th,table tfoot tr th,table tfoot tr td,table tbody tr th,table tbody tr td,table tr td{display:table-cell;line-height:1.125rem}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-justify{text-align:justify!important}@media only screen and (max-width:640px){.small-only-text-left{text-align:left!important}.small-only-text-right{text-align:right!important}.small-only-text-center{text-align:center!important}.small-only-text-justify{text-align:justify!important}}@media only screen{.small-text-left{text-align:left!important}.small-text-right{text-align:right!important}.small-text-center{text-align:center!important}.small-text-justify{text-align:justify!important}}@media only screen and (min-width:641px) and (max-width:1024px){.medium-only-text-left{text-align:left!important}.medium-only-text-right{text-align:right!important}.medium-only-text-center{text-align:center!important}.medium-only-text-justify{text-align:justify!important}}@media only screen and (min-width:641px){.medium-text-left{text-align:left!important}.medium-text-right{text-align:right!important}.medium-text-center{text-align:center!important}.medium-text-justify{text-align:justify!important}}@media only screen and (min-width:1025px) and (max-width:1440px){.large-only-text-left{text-align:left!important}.large-only-text-right{text-align:right!important}.large-only-text-center{text-align:center!important}.large-only-text-justify{text-align:justify!important}}@media only screen and (min-width:1025px){.large-text-left{text-align:left!important}.large-text-right{text-align:right!important}.large-text-center{text-align:center!important}.large-text-justify{text-align:justify!important}}@media only screen and (min-width:1441px) and (max-width:1920px){.xlarge-only-text-left{text-align:left!important}.xlarge-only-text-right{text-align:right!important}.xlarge-only-text-center{text-align:center!important}.xlarge-only-text-justify{text-align:justify!important}}@media only screen and (min-width:1441px){.xlarge-text-left{text-align:left!important}.xlarge-text-right{text-align:right!important}.xlarge-text-center{text-align:center!important}.xlarge-text-justify{text-align:justify!important}}@media only screen and (min-width:1921px) and (max-width:999999px){.xxlarge-only-text-left{text-align:left!important}.xxlarge-only-text-right{text-align:right!important}.xxlarge-only-text-center{text-align:center!important}.xxlarge-only-text-justify{text-align:justify!important}}@media only screen and (min-width:1921px){.xxlarge-text-left{text-align:left!important}.xxlarge-text-right{text-align:right!important}.xxlarge-text-center{text-align:center!important}.xxlarge-text-justify{text-align:justify!important}}div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0}a{color:#1794c7;text-decoration:none;line-height:inherit}a:hover,a:focus{color:#147fab}a img{border:none}p{font-family:inherit;font-weight:normal;font-size:1rem;line-height:1.6;margin-bottom:1.25rem;text-rendering:optimizeLegibility}p.lead{font-size:1.21875rem;line-height:1.6}p aside{font-size:0.875rem;line-height:1.35;font-style:italic}h1,h2,h3,h4,h5,h6{font-family:"Roboto",sans-serif;font-weight:normal;font-style:normal;color:#000;text-rendering:optimizeLegibility;margin-top:0.2rem;margin-bottom:0.5rem;line-height:1.4}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:60%;color:#595959;line-height:0}h1{font-size:3.08793rem}h2{font-size:2.2311rem}h3{font-size:1.8845rem}h4{font-size:1.3775rem}h5{font-size:1.3rem}h6{font-size:1rem}.subheader{line-height:1.4;color:#595959;font-weight:normal;margin-top:0.2rem;margin-bottom:0.5rem}hr{border:solid #DDD;border-width:2px 0 0;clear:both;margin:1.25rem 0 1.125rem;height:0}em,i{font-style:italic;line-height:inherit}strong,b{font-weight:bold;line-height:inherit}small{font-size:60%;line-height:inherit}code{font-family:Consolas,"Liberation Mono",Courier,monospace;font-weight:normal;color:#333;background-color:#f8f8f8;border-width:1px;border-style:solid;border-color:#dfdfdf;padding:0.125rem 0.3125rem 0.0625rem}ul,ol,dl{font-size:1rem;line-height:1.6;margin-bottom:1.25rem;list-style-position:outside;font-family:inherit}ul{margin-left:1.1rem}ul.no-bullet{margin-left:0}ul.no-bullet li ul,ul.no-bullet li ol{margin-left:1.25rem;margin-bottom:0;list-style:none}ul li ul,ul li ol{margin-left:1.25rem;margin-bottom:0}ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}ul.square{list-style-type:square;margin-left:1.1rem}ul.circle{list-style-type:circle;margin-left:1.1rem}ul.disc{list-style-type:disc;margin-left:1.1rem}ul.no-bullet{list-style:none}ol{margin-left:1.4rem}ol li ul,ol li ol{margin-left:1.25rem;margin-bottom:0}dl dt{margin-bottom:0.3rem;font-weight:bold}dl dd{margin-bottom:0.75rem}abbr,acronym{text-transform:uppercase;font-size:90%;color:#000;cursor:help}abbr{text-transform:none}abbr[title]{border-bottom:1px dotted #DDD}blockquote{margin:0 0 1.25rem;padding:0.5625rem 1.25rem 0 1.1875rem;border-left:1px solid #DDD}blockquote cite{display:block;font-size:0.8125rem;color:#3b3b3b}blockquote cite:before{content:"\2014 \0020"}blockquote cite a,blockquote cite a:visited{color:#3b3b3b}blockquote,blockquote p{line-height:1.6;color:#595959}.vcard{display:inline-block;margin:0 0 1.25rem 0;border:1px solid #DDD;padding:0.625rem 0.75rem}.vcard li{margin:0;display:block}.vcard .fn{font-weight:bold;font-size:0.9375rem}.vevent .summary{font-weight:bold}.vevent abbr{cursor:default;text-decoration:none;font-weight:bold;border:none;padding:0 0.0625rem}@media only screen and (min-width:641px){h1,h2,h3,h4,h5,h6{line-height:1.4}h1{font-size:3.71293rem}h2{font-size:2.8561rem}h3{font-size:2.197rem}h4{font-size:1.69rem}h5{font-size:1.3rem}h6{font-size:1rem}}.print-only{display:none!important}@media print{*{background:transparent!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.hide-on-print{display:none!important}.print-only{display:block!important}.hide-for-print{display:none!important}.show-for-print{display:inherit!important}}@media only screen{.show-for-small-only,.show-for-small-up,.show-for-small,.show-for-small-down,.hide-for-medium-only,.hide-for-medium-up,.hide-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit!important}.hide-for-small-only,.hide-for-small-up,.hide-for-small,.hide-for-small-down,.show-for-medium-only,.show-for-medium-up,.show-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none!important}.visible-for-small-only,.visible-for-small-up,.visible-for-small,.visible-for-small-down,.hidden-for-medium-only,.hidden-for-medium-up,.hidden-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static!important;height:auto;width:auto;overflow:visible;clip:auto}.hidden-for-small-only,.hidden-for-small-up,.hidden-for-small,.hidden-for-small-down,.visible-for-medium-only,.visible-for-medium-up,.visible-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}table.show-for-small-only,table.show-for-small-up,table.show-for-small,table.show-for-small-down,table.hide-for-medium-only,table.hide-for-medium-up,table.hide-for-medium,table.show-for-medium-down,table.hide-for-large-only,table.hide-for-large-up,table.hide-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table!important}thead.show-for-small-only,thead.show-for-small-up,thead.show-for-small,thead.show-for-small-down,thead.hide-for-medium-only,thead.hide-for-medium-up,thead.hide-for-medium,thead.show-for-medium-down,thead.hide-for-large-only,thead.hide-for-large-up,thead.hide-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group!important}tbody.show-for-small-only,tbody.show-for-small-up,tbody.show-for-small,tbody.show-for-small-down,tbody.hide-for-medium-only,tbody.hide-for-medium-up,tbody.hide-for-medium,tbody.show-for-medium-down,tbody.hide-for-large-only,tbody.hide-for-large-up,tbody.hide-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group!important}tr.show-for-small-only,tr.show-for-small-up,tr.show-for-small,tr.show-for-small-down,tr.hide-for-medium-only,tr.hide-for-medium-up,tr.hide-for-medium,tr.show-for-medium-down,tr.hide-for-large-only,tr.hide-for-large-up,tr.hide-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row!important}th.show-for-small-only,td.show-for-small-only,th.show-for-small-up,td.show-for-small-up,th.show-for-small,td.show-for-small,th.show-for-small-down,td.show-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.hide-for-medium-up,td.hide-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.show-for-medium-down,td.show-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.hide-for-large-up,td.hide-for-large-up,th.hide-for-large,td.hide-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell!important}}@media only screen and (min-width:641px){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.show-for-medium-only,.show-for-medium-up,.show-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit!important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.hide-for-medium-only,.hide-for-medium-up,.hide-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none!important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.visible-for-medium-only,.visible-for-medium-up,.visible-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static!important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.hidden-for-medium-only,.hidden-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.show-for-medium-only,table.show-for-medium-up,table.show-for-medium,table.show-for-medium-down,table.hide-for-large-only,table.hide-for-large-up,table.hide-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table!important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.show-for-medium-only,thead.show-for-medium-up,thead.show-for-medium,thead.show-for-medium-down,thead.hide-for-large-only,thead.hide-for-large-up,thead.hide-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group!important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.show-for-medium-only,tbody.show-for-medium-up,tbody.show-for-medium,tbody.show-for-medium-down,tbody.hide-for-large-only,tbody.hide-for-large-up,tbody.hide-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group!important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.show-for-medium-only,tr.show-for-medium-up,tr.show-for-medium,tr.show-for-medium-down,tr.hide-for-large-only,tr.hide-for-large-up,tr.hide-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row!important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.show-for-medium-only,td.show-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.show-for-medium,td.show-for-medium,th.show-for-medium-down,td.show-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.hide-for-large-up,td.hide-for-large-up,th.hide-for-large,td.hide-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell!important}}@media only screen and (min-width:1025px){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit!important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none!important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static!important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.show-for-large-only,table.show-for-large-up,table.show-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table!important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.show-for-large-only,thead.show-for-large-up,thead.show-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group!important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.show-for-large-only,tbody.show-for-large-up,tbody.show-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group!important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.show-for-large-only,tr.show-for-large-up,tr.show-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row!important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.show-for-large-only,td.show-for-large-only,th.show-for-large-up,td.show-for-large-up,th.show-for-large,td.show-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell!important}}@media only screen and (min-width:1441px){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.hide-for-large-only,.show-for-large-up,.hide-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit!important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.show-for-large-only,.hide-for-large-up,.show-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none!important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.hidden-for-large-only,.visible-for-large-up,.hidden-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static!important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.visible-for-large-only,.hidden-for-large-up,.visible-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-large-only,table.show-for-large-up,table.hide-for-large,table.hide-for-large-down,table.show-for-xlarge-only,table.show-for-xlarge-up,table.show-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table!important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-large-only,thead.show-for-large-up,thead.hide-for-large,thead.hide-for-large-down,thead.show-for-xlarge-only,thead.show-for-xlarge-up,thead.show-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group!important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-large-only,tbody.show-for-large-up,tbody.hide-for-large,tbody.hide-for-large-down,tbody.show-for-xlarge-only,tbody.show-for-xlarge-up,tbody.show-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group!important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-large-only,tr.show-for-large-up,tr.hide-for-large,tr.hide-for-large-down,tr.show-for-xlarge-only,tr.show-for-xlarge-up,tr.show-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row!important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.show-for-large-up,td.show-for-large-up,th.hide-for-large,td.hide-for-large,th.hide-for-large-down,td.hide-for-large-down,th.show-for-xlarge-only,td.show-for-xlarge-only,th.show-for-xlarge-up,td.show-for-xlarge-up,th.show-for-xlarge,td.show-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell!important}}@media only screen and (min-width:1921px){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.hide-for-large-only,.show-for-large-up,.hide-for-large,.hide-for-large-down,.hide-for-xlarge-only,.show-for-xlarge-up,.hide-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.show-for-xxlarge-down{display:inherit!important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.show-for-large-only,.hide-for-large-up,.show-for-large,.show-for-large-down,.show-for-xlarge-only,.hide-for-xlarge-up,.show-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.hide-for-xxlarge-down{display:none!important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.hidden-for-large-only,.visible-for-large-up,.hidden-for-large,.hidden-for-large-down,.hidden-for-xlarge-only,.visible-for-xlarge-up,.hidden-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.visible-for-xxlarge-down{position:static!important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.visible-for-large-only,.hidden-for-large-up,.visible-for-large,.visible-for-large-down,.visible-for-xlarge-only,.hidden-for-xlarge-up,.visible-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.hidden-for-xxlarge-down{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-large-only,table.show-for-large-up,table.hide-for-large,table.hide-for-large-down,table.hide-for-xlarge-only,table.show-for-xlarge-up,table.hide-for-xlarge,table.hide-for-xlarge-down,table.show-for-xxlarge-only,table.show-for-xxlarge-up,table.show-for-xxlarge,table.show-for-xxlarge-down{display:table!important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-large-only,thead.show-for-large-up,thead.hide-for-large,thead.hide-for-large-down,thead.hide-for-xlarge-only,thead.show-for-xlarge-up,thead.hide-for-xlarge,thead.hide-for-xlarge-down,thead.show-for-xxlarge-only,thead.show-for-xxlarge-up,thead.show-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group!important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-large-only,tbody.show-for-large-up,tbody.hide-for-large,tbody.hide-for-large-down,tbody.hide-for-xlarge-only,tbody.show-for-xlarge-up,tbody.hide-for-xlarge,tbody.hide-for-xlarge-down,tbody.show-for-xxlarge-only,tbody.show-for-xxlarge-up,tbody.show-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group!important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-large-only,tr.show-for-large-up,tr.hide-for-large,tr.hide-for-large-down,tr.hide-for-xlarge-only,tr.show-for-xlarge-up,tr.hide-for-xlarge,tr.hide-for-xlarge-down,tr.show-for-xxlarge-only,tr.show-for-xxlarge-up,tr.show-for-xxlarge,tr.show-for-xxlarge-down{display:table-row!important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.show-for-large-up,td.show-for-large-up,th.hide-for-large,td.hide-for-large,th.hide-for-large-down,td.hide-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.show-for-xlarge-up,td.show-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.hide-for-xlarge-down,td.hide-for-xlarge-down,th.show-for-xxlarge-only,td.show-for-xxlarge-only,th.show-for-xxlarge-up,td.show-for-xxlarge-up,th.show-for-xxlarge,td.show-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell!important}}.show-for-landscape,.hide-for-portrait{display:inherit!important}.hide-for-landscape,.show-for-portrait{display:none!important}table.hide-for-landscape,table.show-for-portrait{display:table!important}thead.hide-for-landscape,thead.show-for-portrait{display:table-header-group!important}tbody.hide-for-landscape,tbody.show-for-portrait{display:table-row-group!important}tr.hide-for-landscape,tr.show-for-portrait{display:table-row!important}td.hide-for-landscape,td.show-for-portrait,th.hide-for-landscape,th.show-for-portrait{display:table-cell!important}@media only screen and (orientation:landscape){.show-for-landscape,.hide-for-portrait{display:inherit!important}.hide-for-landscape,.show-for-portrait{display:none!important}table.show-for-landscape,table.hide-for-portrait{display:table!important}thead.show-for-landscape,thead.hide-for-portrait{display:table-header-group!important}tbody.show-for-landscape,tbody.hide-for-portrait{display:table-row-group!important}tr.show-for-landscape,tr.hide-for-portrait{display:table-row!important}td.show-for-landscape,td.hide-for-portrait,th.show-for-landscape,th.hide-for-portrait{display:table-cell!important}}@media only screen and (orientation:portrait){.show-for-portrait,.hide-for-landscape{display:inherit!important}.hide-for-portrait,.show-for-landscape{display:none!important}table.show-for-portrait,table.hide-for-landscape{display:table!important}thead.show-for-portrait,thead.hide-for-landscape{display:table-header-group!important}tbody.show-for-portrait,tbody.hide-for-landscape{display:table-row-group!important}tr.show-for-portrait,tr.hide-for-landscape{display:table-row!important}td.show-for-portrait,td.hide-for-landscape,th.show-for-portrait,th.hide-for-landscape{display:table-cell!important}}.show-for-touch{display:none!important}.hide-for-touch{display:inherit!important}.touch .show-for-touch{display:inherit!important}.touch .hide-for-touch{display:none!important}table.hide-for-touch{display:table!important}.touch table.show-for-touch{display:table!important}thead.hide-for-touch{display:table-header-group!important}.touch thead.show-for-touch{display:table-header-group!important}tbody.hide-for-touch{display:table-row-group!important}.touch tbody.show-for-touch{display:table-row-group!important}tr.hide-for-touch{display:table-row!important}.touch tr.show-for-touch{display:table-row!important}td.hide-for-touch{display:table-cell!important}.touch td.show-for-touch{display:table-cell!important}th.hide-for-touch{display:table-cell!important}.touch th.show-for-touch{display:table-cell!important}@media print{.show-for-print{display:block}.hide-for-print{display:none}table.show-for-print{display:table!important}thead.show-for-print{display:table-header-group!important}tbody.show-for-print{display:table-row-group!important}tr.show-for-print{display:table-row!important}td.show-for-print{display:table-cell!important}th.show-for-print{display:table-cell!important}}button{outline:none}.button{border-style:solid;border-width:0;cursor:pointer;font-family:"Roboto",sans-serif;font-weight:normal;line-height:normal;margin:0 0 1.25rem;position:relative;text-decoration:none;text-align:center;-webkit-appearance:none;border-radius:0;display:inline-block;-webkit-transition:all 0.15s ease;-moz-transition:all 0.15s ease;-o-transition:all 0.15s ease;transition:all 0.15s ease;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#fff;background-color:#1794c7;border:solid 1px #1794c7;padding-top:1em;padding-right:2em;padding-bottom:1.0625em;padding-left:2em;text-decoration:none!important;will-change:transform;line-height:1.2em;vertical-align:middle;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;font-size:14px;text-transform:uppercase;border-radius:3px;font-weight:500}.button:focus{background-color:#127299;border-color:#127299;color:#f2f2f2;text-decoration:none!important}.button:hover{background-color:#1483b0;border-color:#1483b0;color:#f2f2f2;text-decoration:none!important}.button:active{background-color:#127299;border-color:#127299;color:#e6e6e6;-webkit-transform:translate3d(0,1px,0);-moz-transform:translate3d(0,1px,0);-ms-transform:translate3d(0,1px,0);-o-transform:translate3d(0,1px,0);transform:translate3d(0,1px,0)}.button.disabled,.button.disabled:focus,.button.disabled:active,.button.disabled:hover,.button[disabled],.button[disabled]:focus,.button[disabled]:active,.button[disabled]:hover{opacity:0.5;background-color:#1794c7;border-color:#1794c7;color:#fff;cursor:not-allowed;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.button.no-margin-bottom{margin-bottom:0}.button.button-ghost,.button.ghost,.button.button-open{background-color:transparent;color:#1794c7;border:solid 1px #1794c7}.button.button-ghost:focus,.button.ghost:focus,.button.button-open:focus{background-color:#127299;border-color:#127299;color:#f2f2f2;text-decoration:none!important}.button.button-ghost:focus svg,.button.ghost:focus svg,.button.button-open:focus svg{fill:#f2f2f2}.button.button-ghost:hover,.button.ghost:hover,.button.button-open:hover{background-color:#1483b0;border:solid 1px #1483b0;color:#f2f2f2;text-decoration:none!important}.button.button-ghost:hover svg,.button.ghost:hover svg,.button.button-open:hover svg{fill:#f2f2f2}.button.button-ghost.disabled,.button.button-ghost[disabled],.button.button-ghost.disabled:hover,.button.button-ghost[disabled]:hover,.button.ghost.disabled,.button.ghost[disabled],.button.ghost.disabled:hover,.button.ghost[disabled]:hover,.button.button-open.disabled,.button.button-open[disabled],.button.button-open.disabled:hover,.button.button-open[disabled]:hover{opacity:0.5;background-color:transparent;color:#1794c7;border:solid 1px #1794c7}.button.button-link{background-color:transparent;color:#1794c7;border:solid 1px transparent}.button.button-link:focus{background-color:#127299;border-color:#127299;color:#f2f2f2;text-decoration:none!important}.button.button-link:hover{background-color:#1483b0;border:solid 1px #1483b0;color:#f2f2f2;text-decoration:none!important}.button.button-link.disabled,.button.button-link[disabled],.button.button-link.disabled:hover,.button.button-link[disabled]:hover{opacity:0.5;background-color:transparent;color:#1794c7;border:solid 1px transparent}.button.simple{border-color:transparent}.button.button-round{line-height:1.2em;padding:1em}.button.button-round .icon{width:1.2em;height:1.2em;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center}.button.button-round.small{line-height:1em;padding:0.7em}.button.button-round.x-small{padding:0.5em}.button.small{padding-top:0.7em;padding-right:1.2em;padding-bottom:0.7em;padding-left:1.2em;font-size:0.8125rem}.button.x-small{padding-top:0.5em;padding-right:1.2em;padding-bottom:0.5em;padding-left:1.2em;font-size:0.7rem}.button .icon{display:inline-block;width:1em;height:1em;vertical-align:middle;position:relative}.button .icon+*:not(.ripple){margin-left:5px}.button .icon svg{position:absolute;top:0;left:0;width:100%;height:100%}.button span{vertical-align:middle}.button:hover,.button:focus{color:#fff;outline:none;background-color:#1794c7;box-shadow:1px 1px #0f6182,2px 2px #0f6182,3px 3px #0f6182;transform:translateX(-2px)}.button.ghost{background-color:transparent}.button.ghost:hover,.button.ghost:focus{color:#1794c7;background-color:transparent}.button.btn-white{background-color:white;color:#1794c7!important}.button.btn-white:hover,.button.btn-white:focus{color:#1794c7;background-color:white!important;background-color:transparent}input[type="text"]::-webkit-input-placeholder,input[type="password"]::-webkit-input-placeholder,input[type="date"]::-webkit-input-placeholder,input[type="datetime"]::-webkit-input-placeholder,input[type="datetime-local"]::-webkit-input-placeholder,input[type="month"]::-webkit-input-placeholder,input[type="week"]::-webkit-input-placeholder,input[type="email"]::-webkit-input-placeholder,input[type="number"]::-webkit-input-placeholder,input[type="search"]::-webkit-input-placeholder,input[type="tel"]::-webkit-input-placeholder,input[type="time"]::-webkit-input-placeholder,input[type="url"]::-webkit-input-placeholder,input[type="color"]::-webkit-input-placeholder,textarea::-webkit-input-placeholder,select::-webkit-input-placeholder{color:#CCC}input[type="text"]:-moz-placeholder,input[type="password"]:-moz-placeholder,input[type="date"]:-moz-placeholder,input[type="datetime"]:-moz-placeholder,input[type="datetime-local"]:-moz-placeholder,input[type="month"]:-moz-placeholder,input[type="week"]:-moz-placeholder,input[type="email"]:-moz-placeholder,input[type="number"]:-moz-placeholder,input[type="search"]:-moz-placeholder,input[type="tel"]:-moz-placeholder,input[type="time"]:-moz-placeholder,input[type="url"]:-moz-placeholder,input[type="color"]:-moz-placeholder,textarea:-moz-placeholder,select:-moz-placeholder{color:#CCC}input[type="text"]:-ms-input-placeholder,input[type="password"]:-ms-input-placeholder,input[type="date"]:-ms-input-placeholder,input[type="datetime"]:-ms-input-placeholder,input[type="datetime-local"]:-ms-input-placeholder,input[type="month"]:-ms-input-placeholder,input[type="week"]:-ms-input-placeholder,input[type="email"]:-ms-input-placeholder,input[type="number"]:-ms-input-placeholder,input[type="search"]:-ms-input-placeholder,input[type="tel"]:-ms-input-placeholder,input[type="time"]:-ms-input-placeholder,input[type="url"]:-ms-input-placeholder,input[type="color"]:-ms-input-placeholder,textarea:-ms-input-placeholder,select:-ms-input-placeholder{color:#CCC}input[type="text"]::placeholder,input[type="password"]::placeholder,input[type="date"]::placeholder,input[type="datetime"]::placeholder,input[type="datetime-local"]::placeholder,input[type="month"]::placeholder,input[type="week"]::placeholder,input[type="email"]::placeholder,input[type="number"]::placeholder,input[type="search"]::placeholder,input[type="tel"]::placeholder,input[type="time"]::placeholder,input[type="url"]::placeholder,input[type="color"]::placeholder,textarea::placeholder,select::placeholder{color:#CCC}select{padding-right:30px}label{font-weight:bold;margin-bottom:5px}label small{text-transform:none}small.error,div.error{text-align:left;background-color:transparent;color:#FF544C;padding:5px 0 0 0}.captcha img{width:100%;margin-bottom:16px}label.custom-switch{position:relative;display:inline-block;height:34px;margin:0 0 1rem 0}label.custom-switch input{opacity:0;width:0;height:0;position:absolute}label.custom-switch .text-label{padding-left:70px;height:34px;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}label.custom-switch .text-label span{display:inline-block}label.custom-switch .text-label:before{width:60px;content:'';display:block;position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.4s;transition:.4s}label.custom-switch .text-label:after{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:white;-webkit-transition:.4s;transition:.4s}label.custom-switch input:checked+.text-label:before{background-color:#1794c7}label.custom-switch input:focus+.text-label{}label.custom-switch input:checked+.text-label:after{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px)}label.custom-switch input+.text-label .off{opacity:1;visibility:visible;width:auto;height:auto;float:left;-webkit-transition:opacity 0.1s linear,visibilty 0s linear,width 0s linear,height 0s linear;-webkit-transition-delay:0.1s,0.2s,0.2s,0.2s;-moz-transition:opacity 0.1s linear 0.1s,visibilty 0s linear 0.2s,width 0s linear 0.2s,height 0s linear 0.2s;-o-transition:opacity 0.1s linear 0.1s,visibilty 0s linear 0.2s,width 0s linear 0.2s,height 0s linear 0.2s;transition:opacity 0.1s linear 0.1s,visibilty 0s linear 0.2s,width 0s linear 0.2s,height 0s linear 0.2s}label.custom-switch input+.text-label .on{opacity:0;visibility:hidden;width:0;height:0;overflow:hidden;float:left;-webkit-transition:opacity 0.1s,visibilty 0s linear,width 0s linear,height 0s linear;-webkit-transition-delay:0s,0.1s,0.1s,0.1s;-moz-transition:opacity 0.1s,visibilty 0s linear 0.1s,width 0s linear 0.1s,height 0s linear 0.1s;-o-transition:opacity 0.1s,visibilty 0s linear 0.1s,width 0s linear 0.1s,height 0s linear 0.1s;transition:opacity 0.1s,visibilty 0s linear 0.1s,width 0s linear 0.1s,height 0s linear 0.1s}label.custom-switch input:checked+.text-label .on{opacity:1;visibility:visible;width:auto;height:auto;-webkit-transition:opacity 0.1s linear,visibilty 0s linear,width 0s linear,height 0s linear;-webkit-transition-delay:0.1s,0.2s,0.2s,0.2s;-moz-transition:opacity 0.1s linear 0.1s,visibilty 0s linear 0.2s,width 0s linear 0.2s,height 0s linear 0.2s;-o-transition:opacity 0.1s linear 0.1s,visibilty 0s linear 0.2s,width 0s linear 0.2s,height 0s linear 0.2s;transition:opacity 0.1s linear 0.1s,visibilty 0s linear 0.2s,width 0s linear 0.2s,height 0s linear 0.2s}label.custom-switch input:checked+.text-label .off{opacity:0;visibility:hidden;width:0;height:0;overflow:hidden;-webkit-transition:opacity 0.1s,visibilty 0s linear,width 0s linear,height 0s linear;-webkit-transition-delay:0s,0.1s,0.1s,0.1s;-moz-transition:opacity 0.1s,visibilty 0s linear 0.1s,width 0s linear 0.1s,height 0s linear 0.1s;-o-transition:opacity 0.1s,visibilty 0s linear 0.1s,width 0s linear 0.1s,height 0s linear 0.1s;transition:opacity 0.1s,visibilty 0s linear 0.1s,width 0s linear 0.1s,height 0s linear 0.1s}label.custom-switch .text-label:before{box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}label.custom-switch.round .text-label:before{border-radius:34px}label.custom-switch.round .text-label:after{border-radius:50%}input.custom-checkbox{float:left;opacity:0;margin:0;height:1px;width:1px}input.custom-checkbox~label{position:relative;padding-left:30px;margin-bottom:1em;margin-left:0}input.custom-checkbox~label.error{margin-bottom:4px}input.custom-checkbox~label:before{display:block;position:absolute;content:'';border:solid 2px #1794c7;height:20px;width:20px;left:0;top:50%;margin-top:-10px;border-radius:2px;-webkit-transition:0.28s ease;-moz-transition:0.28s ease;-o-transition:0.28s ease;transition:0.28s ease}input.custom-checkbox~label:after{-webkit-transform:scale3d(0,0,0) rotate(-45deg);-moz-transform:scale3d(0,0,0) rotate(-45deg);-ms-transform:scale3d(0,0,0) rotate(-45deg);-o-transform:scale3d(0,0,0) rotate(-45deg);transform:scale3d(0,0,0) rotate(-45deg);display:block;position:absolute;content:'';height:8px;width:14px;left:3px;top:50%;margin-top:-6px;color:white;border:3px solid white;border-width:0 0 3px 3px;color:white;-webkit-transition:0.28s ease;-moz-transition:0.28s ease;-o-transition:0.28s ease;transition:0.28s ease}input.custom-checkbox:focus~label:before{box-shadow:0 0 0 4px rgba(0,0,0,0.1)}input.custom-checkbox:checked~label:before{background-color:#1794c7;border-color:#1794c7}input.custom-checkbox:checked~label:after{-webkit-transform:scale3d(1,1,1) rotate(-45deg);-moz-transform:scale3d(1,1,1) rotate(-45deg);-ms-transform:scale3d(1,1,1) rotate(-45deg);-o-transform:scale3d(1,1,1) rotate(-45deg);transform:scale3d(1,1,1) rotate(-45deg)}input.custom-checkbox:disabled~label:before{cursor:not-allowed;opacity:0.2}input.custom-checkbox:disabled~label:after{cursor:not-allowed;opacity:0.8}input.custom-radiobutton{float:left;opacity:0;margin:0;height:1px;width:1px}input.custom-radiobutton~label{position:relative;padding-left:30px;margin-bottom:1em;margin-left:0}input.custom-radiobutton~label.error{margin-bottom:4px}input.custom-radiobutton~label:before{display:block;position:absolute;content:'';border:solid 2px #1794c7;height:20px;width:20px;left:0;top:50%;margin-top:-10px;border-radius:2px;-webkit-transition:0.28s ease;-moz-transition:0.28s ease;-o-transition:0.28s ease;transition:0.28s ease}input.custom-radiobutton~label:after{-webkit-transform:scale3d(0,0,0) rotate(-45deg);-moz-transform:scale3d(0,0,0) rotate(-45deg);-ms-transform:scale3d(0,0,0) rotate(-45deg);-o-transform:scale3d(0,0,0) rotate(-45deg);transform:scale3d(0,0,0) rotate(-45deg);display:block;position:absolute;content:'';height:8px;width:14px;left:3px;top:50%;margin-top:-6px;color:white;border:3px solid white;border-width:0 0 3px 3px;color:white;-webkit-transition:0.28s ease;-moz-transition:0.28s ease;-o-transition:0.28s ease;transition:0.28s ease}input.custom-radiobutton:focus~label:before{box-shadow:0 0 0 4px rgba(0,0,0,0.1)}input.custom-radiobutton:checked~label:before{background-color:#1794c7;border-color:#1794c7}input.custom-radiobutton:checked~label:after{-webkit-transform:scale3d(1,1,1) rotate(-45deg);-moz-transform:scale3d(1,1,1) rotate(-45deg);-ms-transform:scale3d(1,1,1) rotate(-45deg);-o-transform:scale3d(1,1,1) rotate(-45deg);transform:scale3d(1,1,1) rotate(-45deg)}input.custom-radiobutton:disabled~label:before{cursor:not-allowed;opacity:0.2}input.custom-radiobutton:disabled~label:after{cursor:not-allowed;opacity:0.8}input.custom-radiobutton~label:before{border-radius:50%}input.custom-radiobutton~label:after{border:none;border-radius:50%;width:14px;height:14px;top:50%;margin-top:-7px;border:solid 3px white}#accept-cookies{position:fixed;z-index:100;bottom:10px;right:10px;padding:20px 30px;background:white;width:calc(100% - 20px);max-width:400px;border:1px solid #1794c7;box-shadow:rgba(0,0,0,0.2) 0 10px 13px -6px,rgba(0,0,0,0.137255) 0 20px 31px 3px,rgba(0,0,0,0.117647) 0 8px 38px 7px;opacity:0;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-transform:translate3d(0,100%,0);-moz-transform:translate3d(0,100%,0);-ms-transform:translate3d(0,100%,0);-o-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#accept-cookies.show{opacity:1;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}#accept-cookies .cookies-title-wrapper{text-align:center}#accept-cookies .cookies-title-wrapper>._title{color:#1794c7}#accept-cookies .cookies-content-wrapper{text-align:center}#accept-cookies .cookies-button-container{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#accept-cookies .accept-cookies-policy{margin-right:15px;margin-bottom:0}@media only screen and (min-width:1025px){#accept-cookies .cookies-title-wrapper{text-align:right}#accept-cookies .cookies-content-wrapper{text-align:left;padding-top:6px}}#main-container[data-wrapper-area="conta"],#main-container[data-wrapper-area="subscricoes"]{background-color:#fAfAfA}#area-conta .linha-morada{border:solid 1px #e2e2e2;padding:15px 15px;margin-bottom:15px;background-color:white}#area-conta .linha-morada p{padding-right:50px}#area-conta .linha-morada span.linha-morada-icones{position:absolute;top:0;right:15px}#area-conta .linha-morada span.linha-morada-icones span:not(.icon){display:inline-block;vertical-align:middle}#area-conta .linha-morada span.linha-morada-icones span:not(.icon):last-of-type svg{width:24px;height:24px}#area-conta .linha-morada span.linha-morada-icones span:not(.icon) svg{width:20px;height:20px}#area-conta .dados-utilizador{margin:0 auto}@media only screen and (max-width:1024px){#area-conta .dados-utilizador{padding-right:0}}#area-conta .moradas{margin:0 auto}#remover-morada .morada-wrapper{padding:15px;border-left:solid 2px #e2e2e2}#remover-morada .button:last-child{margin-right:0}@media only screen and (max-width:1024px){#remover-morada .button{width:100%;margin-right:0}}.conta-titulo-pagina-wrapper{margin-bottom:30px}#area-conta-menu-lateral{padding-right:15px;position:relative}#area-conta-menu-lateral .area-conta-menu-lateral__titulo{font-weight:normal;padding:0 0 15px 0;font-size:1.1em;vertical-align:middle;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#area-conta-menu-lateral .area-conta-menu-lateral__titulo .area-conta-menu-lateral__titulo__badge{width:55px;height:55px;margin-right:10px;color:#000;background-color:#fff;text-align:center;border-radius:5px;border:solid 1px #eee;box-shadow:0 2px 8px rgba(0,0,0,0.08);display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center;-webkit-box-flex:0;-webkit-flex:0 0 55px;-moz-box-flex:0;-moz-flex:0 0 55px;-ms-flex:0 0 55px;flex:0 0 55px}#area-conta-menu-lateral .area-conta-menu-lateral__titulo .area-conta-menu-lateral__titulo__badge span{display:inline-block;width:30px;height:30px;vertical-align:middle}#area-conta-menu-lateral .area-conta-menu-lateral__titulo .area-conta-menu-lateral__titulo__badge svg{height:30px;width:30px;display:inline-block}#area-conta-menu-lateral .area-conta-menu-lateral__titulo .area-conta-menu-lateral__titulo__badge svg *{fill:currentColor}#area-conta-menu-lateral .area-conta-menu-lateral__titulo .area-conta-menu-lateral__titulo__message{display:inline-block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-moz-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;max-width:calc(100% - 65px)}#area-conta-menu-lateral .area-conta-menu-lateral__titulo .area-conta-menu-lateral__titulo__message .area-conta-menu-lateral__titulo__nome{display:block;font-weight:600;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#area-conta-menu-lateral .area-conta-menu-lateral__nav{list-style:none;padding:0;margin:0;padding-bottom:15px}#area-conta-menu-lateral .area-conta-menu-lateral__nav li{display:block;padding:2px 0}#area-conta-menu-lateral .area-conta-menu-lateral__nav li.area-conta-menu-latera__logout-wrapper{margin-top:30px}#area-conta-menu-lateral .area-conta-menu-lateral__nav li a{text-decoration:none}#area-conta-menu-lateral .area-conta-menu-lateral__nav li.active>a{border-left-color:#1794c7;font-weight:500;background-color:#EEE}#area-conta-menu-lateral .area-conta-menu-lateral__nav li.active>a:hover{background-color:#EEE;border-left-color:#1794c7}#area-conta-menu-lateral .area-conta-menu-lateral__nav li>a{border-left:solid 3px transparent;color:#000;display:block;padding:4px 15px 4px 12px;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#area-conta-menu-lateral .area-conta-menu-lateral__nav li>a:hover{background-color:rgba(238,238,238,0.5);border-color:rgba(238,238,238,0.5)}#area-conta-menu-lateral .area-conta-menu-lateral__nav li>a .icon{display:inline-block;vertical-align:middle;height:24px;width:24px;margin-right:10px;text-align:center}#area-conta-menu-lateral .area-conta-menu-lateral__nav li>a .icon svg{height:22px;width:22px}#area-conta-menu-lateral .area-conta-menu-lateral__nav li>a .icon svg *{fill:currentColor}#area-conta-menu-lateral .area-conta-menu-lateral__chevron__wrapper{display:none}@media only screen and (max-width:1024px){#area-conta-menu-lateral{padding:15px;background-color:#F6F6F6;padding-bottom:0;margin-bottom:30px;border:solid 1px #EEE}#area-conta-menu-lateral .area-conta-menu-lateral__nav{display:none}#area-conta-menu-lateral .area-conta-menu-lateral__chevron__wrapper{display:block;position:absolute;top:35px;right:15px;pointer-events:none;text-align:center}#area-conta-menu-lateral .area-conta-menu-lateral__chevron__wrapper .area-conta-menu-lateral__chevron{height:20px;width:20px;display:inline-block}#area-conta-menu-lateral.active .area-conta-menu-lateral__nav{display:block}#area-conta-menu-lateral.active .area-conta-menu-lateral__chevron{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}}@media only screen and (max-width:1024px){header #header-bottom-cart-mobile-wrapper{-webkit-box-ordinal-group:4;-webkit-order:3;-moz-order:3;-ms-flex-order:3;order:3;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}header #header-bottom-cart-mobile-wrapper .my-cart-wrapper>a{width:auto;height:100%}header #header-bottom-cart-mobile-wrapper .my-cart-wrapper>a svg,header #header-bottom-cart-mobile-wrapper .my-cart-wrapper>a img{display:inline-block;vertical-align:sub;height:100%;width:22px}header #menu-handle,header .menu-mobile__close-button,header .menu-mobile__submenu__close-button{background:transparent;border:none;width:30px;max-width:30px;height:24px;padding:0;outline:none;position:relative;z-index:1001;margin-bottom:0}header #menu-handle::before,header #menu-handle::after,header #menu-handle span,header .menu-mobile__close-button::before,header .menu-mobile__close-button::after,header .menu-mobile__close-button span,header .menu-mobile__submenu__close-button::before,header .menu-mobile__submenu__close-button::after,header .menu-mobile__submenu__close-button span{background:#000}header #menu-handle::before,header #menu-handle::after,header .menu-mobile__close-button::before,header .menu-mobile__close-button::after,header .menu-mobile__submenu__close-button::before,header .menu-mobile__submenu__close-button::after{content:'';position:absolute;height:2px;width:100%;left:0;top:calc(50% - 1px);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0.15s,0.15s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;-webkit-transition-delay:0.35s;-moz-transition-delay:0.35s;-o-transition-delay:0.35s;transition-delay:0.35s}header #menu-handle span,header .menu-mobile__close-button span,header .menu-mobile__submenu__close-button span{position:absolute;width:100%;height:2px;left:0;overflow:hidden;text-indent:200%;-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0.15s,0.15s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;-webkit-transform:translate3d(0,-1px,0);-moz-transform:translate3d(0,-1px,0);-ms-transform:translate3d(0,-1px,0);-o-transform:translate3d(0,-1px,0);transform:translate3d(0,-1px,0);-webkit-transition-delay:0.25s;-moz-transition-delay:0.25s;-o-transition-delay:0.25s;transition-delay:0.25s}header #menu-handle::before,header .menu-mobile__close-button::before,header .menu-mobile__submenu__close-button::before{-webkit-transform:translate3d(0,-11px,0);-moz-transform:translate3d(0,-11px,0);-ms-transform:translate3d(0,-11px,0);-o-transform:translate3d(0,-11px,0);transform:translate3d(0,-11px,0)}header #menu-handle::after,header .menu-mobile__close-button::after,header .menu-mobile__submenu__close-button::after{-webkit-transform:translate3d(0,11px,0);-moz-transform:translate3d(0,11px,0);-ms-transform:translate3d(0,11px,0);-o-transform:translate3d(0,11px,0);transform:translate3d(0,11px,0)}header #menu-handle{height:100%}header #menu-large{display:none}header #menu-mobile{display:block;position:fixed;visibility:hidden;overflow:hidden;top:0;left:0;right:0;bottom:0;z-index:1002;-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s,visibility 0.15s cubic-bezier(0.785,0.135,0.15,0.86);-webkit-transition-delay:0.15s,0.15s,0.15s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s,visibility 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s,visibility 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s,visibility 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s}header #menu-mobile.menu--has-submenu-open #menu-mobile__inner-wrapper .menu-mobile__header [data-item-to-animate-first-level],header #menu-mobile.menu--has-submenu-open #menu-mobile__inner-wrapper .menu-mobile__footer [data-item-to-animate-first-level]{opacity:0;pointer-events:none;-webkit-transform:translate3d(20px,0,0);-moz-transform:translate3d(20px,0,0);-ms-transform:translate3d(20px,0,0);-o-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0);-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0s,0s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s}header #menu-mobile.menu--has-submenu-open #menu-mobile__inner-wrapper .menu-mobile__first-level>.menu__item>a{opacity:0;-webkit-transform:translate3d(20px,0,0);-moz-transform:translate3d(20px,0,0);-ms-transform:translate3d(20px,0,0);-o-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0);-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0s,0s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s}header #menu-mobile .menu-mobile__close-button{position:relative;height:60px;left:0;top:0}header #menu-mobile .menu-mobile__close-button:before,header #menu-mobile .menu-mobile__close-button:after{width:60%;-webkit-transform:rotate3d(0,0,1,0);-moz-transform:rotate3d(0,0,1,0);-ms-transform:rotate3d(0,0,1,0);-o-transform:rotate3d(0,0,1,0);transform:rotate3d(0,0,1,0);-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0.15s,0.15s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s}header #menu-mobile .menu-mobile__close-button span{opacity:0}html.menu-opened header #menu-mobile #menu-handle:before,html.menu-opened header #menu-mobile #menu-handle:after,html.menu-opened header #menu-mobile .menu-mobile__close-button:before,html.menu-opened header #menu-mobile .menu-mobile__close-button:after{-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0s,0s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;transition-delay:0.4s,0s}html.menu-opened header #menu-mobile #menu-handle span,html.menu-opened header #menu-mobile .menu-mobile__close-button span{opacity:0}html.menu-opened header #menu-mobile #menu-handle::before,html.menu-opened header #menu-mobile .menu-mobile__close-button::before{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg)}html.menu-opened header #menu-mobile #menu-handle::after,html.menu-opened header #menu-mobile .menu-mobile__close-button::after{-webkit-transform:rotate3d(0,0,1,135deg);transform:rotate3d(0,0,1,135deg)}header #menu-mobile .menu__item--has-submenu.opened>.menu__submenu .menu-mobile__submenu__close-button span{width:50%}header #menu-mobile .menu__item--has-submenu.opened>.menu__submenu .menu-mobile__submenu__close-button:before,header #menu-mobile .menu__item--has-submenu.opened>.menu__submenu .menu-mobile__submenu__close-button:after{width:30%}header #menu-mobile .menu__item--has-submenu.opened>.menu__submenu .menu-mobile__submenu__close-button::before{-webkit-transform:rotate3d(0,0,1,45deg);-moz-transform:rotate3d(0,0,1,45deg);-ms-transform:rotate3d(0,0,1,45deg);-o-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);width:30%}header #menu-mobile .menu__item--has-submenu.opened>.menu__submenu .menu-mobile__submenu__close-button::after{-webkit-transform:rotate3d(0,0,1,-45deg);-moz-transform:rotate3d(0,0,1,-45deg);-ms-transform:rotate3d(0,0,1,-45deg);-o-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);width:30%}header #menu-mobile button.menu-mobile__submenu__close-button{height:60px;left:15px;top:0}header #menu-mobile button.menu-mobile__submenu__close-button span{opacity:1;margin-left:1px;width:10%}header #menu-mobile button.menu-mobile__submenu__close-button:before,header #menu-mobile button.menu-mobile__submenu__close-button:after{-webkit-transform-origin:0;transform-origin:0;width:10%}header #menu-mobile button.menu-mobile__submenu__close-button::before{-webkit-transform:rotate3d(0,0,1,45deg);-moz-transform:rotate3d(0,0,1,45deg);-ms-transform:rotate3d(0,0,1,45deg);-o-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg)}header #menu-mobile button.menu-mobile__submenu__close-button::after{-webkit-transform:rotate3d(0,0,1,-45deg);-moz-transform:rotate3d(0,0,1,-45deg);-ms-transform:rotate3d(0,0,1,-45deg);-o-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg)}header #menu-mobile #menu-mobile__inner-wrapper{z-index:1004;list-style:none;margin:0;-webkit-transform:translate3d(-100%,0,0);-moz-transform:translate3d(-100%,0,0);-ms-transform:translate3d(-100%,0,0);-o-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);-webkit-transition:-webkit-transform 0.3s cubic-bezier(0.785,0.135,0.15,0.86);-moz-transition:-moz-transform 0.3s cubic-bezier(0.785,0.135,0.15,0.86);-o-transition:-o-transform 0.3s cubic-bezier(0.785,0.135,0.15,0.86);transition:transform 0.3s cubic-bezier(0.785,0.135,0.15,0.86);position:fixed;top:0;left:0;bottom:0;background-color:#FFF;height:100%;max-width:300px;width:100%;overflow-x:hidden;overflow-y:auto}header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__header{cursor:pointer;height:60px;padding:0;padding-left:15px;top:0;left:0;right:0;background-color:rgba(0,0,0,0.02);display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between}header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__header .menu-header-spacer{-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-moz-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}header #menu-mobile #menu-mobile__inner-wrapper .lang-wrapper-mobile>a>span{text-transform:uppercase}header #menu-mobile #menu-mobile__inner-wrapper .lang-wrapper-mobile .menu__submenu{text-transform:uppercase}header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__header,header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__footer{font-size:0.75rem;font-weight:500}header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__header>.menu__items>.menu__item>a,header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__footer>.menu__items>.menu__item>a{font-size:0.75rem}header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__header [data-item-to-animate-first-level],header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__footer [data-item-to-animate-first-level]{opacity:1;-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none;-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0.15s,0.15s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s}header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__footer{padding-top:40px}header #menu-mobile #menu-mobile__inner-wrapper ul{list-style:none;margin:0;padding-top:10px;padding-bottom:10px}header #menu-mobile #menu-mobile__inner-wrapper .menu__items{font-size:0.9rem;font-weight:500}header #menu-mobile #menu-mobile__inner-wrapper .menu__items>.menu__item{padding:0}header #menu-mobile #menu-mobile__inner-wrapper .menu__items>.menu__item>a{display:block;padding:10px 15px;-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0.15s,0.15s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86) 0.15s,visibility 0s 0.15s}header #menu-mobile #menu-mobile__inner-wrapper .menu__items>.menu__item.menu__item--active>a{background-color:rgba(23,79,112,0.1);color:#174f70}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu-open>*>a{opacity:0;-webkit-transform:translate3d(20px,0,0);-moz-transform:translate3d(20px,0,0);-ms-transform:translate3d(20px,0,0);-o-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0);-webkit-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s;-webkit-transition-delay:0s,0s;-moz-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;-o-transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s;transition:all 0.15s cubic-bezier(0.785,0.135,0.15,0.86),visibility 0s 0s}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu{position:static;z-index:1002}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu>a{position:relative;padding-right:30px}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu>a:after{content:'';position:absolute;top:50%;right:15px;width:8px;height:8px;box-sizing:border-box;border-top:2px solid currentColor;border-left:2px solid currentColor;transform-origin:center;-webkit-transform:translate(-50%,-50%) rotate(135deg);-moz-transform:translate(-50%,-50%) rotate(135deg);-ms-transform:translate(-50%,-50%) rotate(135deg);-o-transform:translate(-50%,-50%) rotate(135deg);transform:translate(-50%,-50%) rotate(135deg)}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu.opened>.menu__submenu{visibility:visible;opacity:1;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:all 0.15s ease-out,visibility 0s;-webkit-transition-delay:0.15s,0s;-moz-transition:all 0.15s ease-out 0.15s,visibility 0s;-o-transition:all 0.15s ease-out 0.15s,visibility 0s;transition:all 0.15s ease-out 0.15s,visibility 0s}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu.opened>.menu__submenu>.menu-mobile__submenu__header{visibility:visible;opacity:1;-webkit-transition:all 0.15s ease-out,visibility 0s;-webkit-transition-delay:0.15s,0s;-moz-transition:all 0.15s ease-out 0.15s,visibility 0s;-o-transition:all 0.15s ease-out 0.15s,visibility 0s;transition:all 0.15s ease-out 0.15s,visibility 0s}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu .menu__submenu{padding-top:60px;display:block;visibility:hidden;position:fixed;opacity:0;top:0;bottom:0;right:0;left:0;z-index:1003;background-color:#FFF;-webkit-transition:all 0.15s ease-out,visibility 0s;-webkit-transition-delay:0s,0.15s;-moz-transition:all 0.15s ease-out,visibility 0s 0.15s;-o-transition:all 0.15s ease-out,visibility 0s 0.15s;transition:all 0.15s ease-out,visibility 0s 0.15s;-webkit-transform:translate3d(-20px,0,0);-moz-transform:translate3d(-20px,0,0);-ms-transform:translate3d(-20px,0,0);-o-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0);font-size:0.9rem;font-weight:bold}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu .menu__submenu>a{position:relative}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu .menu__submenu>.menu-mobile__submenu__header{position:absolute;cursor:pointer;height:60px;padding:0 15px;top:0;left:0;right:0;visibility:hidden;opacity:0;background-color:rgba(0,0,0,0.02);-webkit-transition:all 0.15s ease-out,visibility 0s;-webkit-transition-delay:0s,0.15s;-moz-transition:all 0.15s ease-out,visibility 0s 0.15s;-o-transition:all 0.15s ease-out,visibility 0s 0.15s;transition:all 0.15s ease-out,visibility 0s 0.15s;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;opacity:1}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu .menu__submenu>.menu-mobile__submenu__header .menu-mobile__submenu__close-button{left:0;-webkit-box-flex:0;-webkit-flex:0 0 auto;-moz-box-flex:0;-moz-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}header #menu-mobile #menu-mobile__inner-wrapper .menu__item--has-submenu .menu__submenu>.menu-mobile__submenu__header .menu-mobile__submenu__title{text-overflow:ellipsis;white-space:nowrap;text-transform:uppercase;font-size:0.9em;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1 0 0;-moz-box-flex:1;-moz-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0}header #menu-mobile #menu-mobile__inner-wrapper .menu-mobile__first-level{position:static}header #menu-mobile #menu-mobile__inner-wrapper a{display:inline-block;color:#000}header #menu-mobile #menu-mobile__overlay{z-index:1003;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);opacity:0;visibility:hidden;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;transition:all 0.2s ease-out}header #menu-mobile__swipe-handle{position:fixed;z-index:1000;top:0;left:0;bottom:0;width:15px}html.menu-opened header #menu-large{display:none}html.menu-opened header #menu-mobile{display:block;visibility:visible;opacity:1;-webkit-transition:opacity 0s,visibility 0s;-moz-transition:opacity 0s,visibility 0s;-o-transition:opacity 0s,visibility 0s;transition:opacity 0s,visibility 0s}html.menu-opened header #menu-mobile #menu-mobile__inner-wrapper{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 0.5s cubic-bezier(0.785,0.135,0.15,0.86);-moz-transition:-moz-transform 0.5s cubic-bezier(0.785,0.135,0.15,0.86);-o-transition:-o-transform 0.5s cubic-bezier(0.785,0.135,0.15,0.86);transition:transform 0.5s cubic-bezier(0.785,0.135,0.15,0.86)}html.menu-opened header #menu-mobile #menu-mobile__overlay{visibility:visible;opacity:1}}@media only screen and (min-width:1025px){header #header-bottom-cart-mobile-wrapper{display:none}header #menu-handle,header #menu-close{display:none}header .menu-mobile__submenu__header{display:none}header #menu-mobile{display:none}header #menu-large{display:block;opacity:1;z-index:1000;visibility:visible!important;position:relative;overflow:visible}header #menu-large #menu-mobile__overlay{display:none}header #menu-large #menu-login-mobile{display:none}header #menu-large .menu-mobile__submenu__header{display:none}header #menu-large #menu-large__inner-wrapper{position:relative;position:relative;overflow:visible;max-width:none;padding-top:0;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}header #menu-large #menu-large__inner-wrapper ul{list-style:none;margin:0;padding:0;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}header #menu-large #menu-large__inner-wrapper li{list-style:none;position:relative}header #menu-large #menu-large__inner-wrapper .menu-large__first-level{position:relative;height:auto;max-width:none;width:auto}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item:last-child:not(.menu__item--has-submenu){padding-right:0}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item{display:inline-block;position:relative;padding-left:12px;padding-right:12px;vertical-align:middle}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item.my-cart-wrapper{padding-left:0}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item.my-cart-wrapper>a{width:auto;height:100%}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item.my-cart-wrapper>a svg,header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item.my-cart-wrapper>a img{display:inline-block;vertical-align:sub;height:100%;width:22px}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item.menu__item--active{color:#174f70}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item.menu__item--active>a{color:inherit;border-bottom:currentColor solid 2px}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item.menu__item--has-submenu:after{content:'';color:inherit;position:absolute;right:2px;top:50%;margin-top:-3px;border:solid 4px currentColor;border-color:currentColor transparent transparent transparent}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item>a{padding-left:0;padding-right:0;display:inline-block;color:inherit;border-bottom:transparent 2px solid;color:#000}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item>a:hover{color:#174f70}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item .menu__submenu{opacity:0;visibility:hidden}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item .menu__submenu a{display:block;white-space:nowrap}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item .menu__submenu a:hover{color:#174f70}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item .menu__submenu .menu__item--active{color:#174f70}header #menu-large #menu-large__inner-wrapper .menu-large__first-level>.menu__item .menu__submenu .menu__item--active a{color:inherit}header #menu-large #menu-large__inner-wrapper .menu__item--has-submenu:hover>.menu__submenu{opacity:1;visibility:visible}header #menu-large #menu-large__inner-wrapper .menu__submenu{position:absolute;background-color:#FFF;box-shadow:0 4px 12px rgba(0,0,0,0.2);min-width:100%;left:0;top:auto;bottom:auto;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;transition:all 0.2s ease-out}header #menu-large #menu-large__inner-wrapper .menu__submenu .menu__item a{display:block;padding:7px 12px}header #menu-large #menu-large__inner-wrapper .menu__submenu .menu__submenu{left:100%;top:100%}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper{position:relative;display:inline-block}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper:not(.my-dropdown--on-click):hover{z-index:2}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper:not(.my-dropdown--on-click):hover .my-dropdown{opacity:1;visibility:visible;-webkit-transition:opacity 0.2s ease,visibility 0s ease,-webkit-transform 0.2s ease;-webkit-transition-delay:0s,0s,0s;-moz-transition:opacity 0.2s ease,visibility 0s ease 0s,-moz-transform 0.2s ease;-o-transition:opacity 0.2s ease,visibility 0s ease 0s,-o-transform 0.2s ease;transition:opacity 0.2s ease,visibility 0s ease 0s,transform 0.2s ease;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--on-click{outline:none}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--on-click .my-dropdown{-webkit-transition:opacity 0.2s ease,visibility 0.2s ease,-webkit-transform 0.2s ease,box-shadow 0.2s ease;-moz-transition:opacity 0.2s ease,visibility 0.2s ease,-moz-transform 0.2s ease,box-shadow 0.2s ease;-o-transition:opacity 0.2s ease,visibility 0.2s ease,-o-transform 0.2s ease,box-shadow 0.2s ease;transition:opacity 0.2s ease,visibility 0.2s ease,transform 0.2s ease,box-shadow 0.2s ease}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--on-click.active .my-dropdown{opacity:1;visibility:visible;-webkit-transition:opacity 0.2s ease,visibility 0s ease,-webkit-transform 0.2s ease;-webkit-transition-delay:0s,0s,0s;-moz-transition:opacity 0.2s ease,visibility 0s ease 0s,-moz-transform 0.2s ease;-o-transition:opacity 0.2s ease,visibility 0s ease 0s,-o-transform 0.2s ease;transition:opacity 0.2s ease,visibility 0s ease 0s,transform 0.2s ease;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown-trigger:after{display:inline-block;content:'';border:solid 4px;border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown{opacity:0;visibility:hidden;-webkit-transition:opacity 0.2s ease,visibility 0s ease,-webkit-transform 0.2s ease;-webkit-transition-delay:0.2s,0.4s,0.2s;-moz-transition:opacity 0.2s ease 0.2s,visibility 0s ease 0.4s,-moz-transform 0.2s ease 0.2s;-o-transition:opacity 0.2s ease 0.2s,visibility 0s ease 0.4s,-o-transform 0.2s ease 0.2s;transition:opacity 0.2s ease 0.2s,visibility 0s ease 0.4s,transform 0.2s ease 0.2s;-webkit-transform:translate3d(0,-22px,0);-moz-transform:translate3d(0,-22px,0);-ms-transform:translate3d(0,-22px,0);-o-transform:translate3d(0,-22px,0);transform:translate3d(0,-22px,0);position:absolute;padding-top:10px;min-width:120%;min-width:calc(100% + 34px)}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown-inner{position:relative;list-style:none;margin:0;padding:8px 0;background-color:white;display:block;box-shadow:0 12px 15px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);box-shadow:0 13px 27px -5px rgba(0,0,0,0.25),0 8px 16px -8px rgba(0,0,0,0.2);border-radius:2px}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown-inner:before{content:'';display:block;position:absolute;top:-10px;left:8px;border:12px solid transparent;border-bottom-width:12px;border-bottom-color:white;border-top-color:transparent;border-top-width:0}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown-inner li{text-align:left}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown-inner li a{padding:3px 15px;text-decoration:none;display:block;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;color:#1794c7;background-color:transparent;white-space:nowrap}}@media only screen and (min-width:1025px) and (max-width:1024px){header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown-inner li a{padding-top:8px;padding-bottom:8px}}@media only screen and (min-width:1025px){header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown-inner li a:hover{background-color:#174f70;color:white}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .my-dropdown-inner li a .icon{display:inline-block;margin-right:10px}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--right .my-dropdown{right:0;transform-origin:calc(100% - 20px) -9px}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--right .my-dropdown .my-dropdown-inner:before{left:auto;right:8px}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--no-arrow .my-dropdown .my-dropdown-inner:before{display:none}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger{margin:0;color:#000}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger:hover,header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger:focus,header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger:active{background-color:#EEE;border-color:#EEE}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger:after{display:none}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--options-dropdown.my-dropdown--right .my-dropdown{right:0}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown{padding-top:0}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown .my-dropdown-inner:before{display:none}header #menu-large #menu-large__inner-wrapper .my-dropdown-wrapper .icon{margin-right:10px}header #menu-large #menu-large__inner-wrapper .lang-wrapper-mobile{display:none!important}}.dialog.dialog-error{width:100%;background:#FFF;text-align:left;max-width:500px;position:relative}.dialog.dialog-error .buttons-wrapper{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between;padding-top:20px}.dialog.dialog-error .buttons-wrapper .button{max-width:50%;margin-right:2px;margin-left:2px;-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0;padding-left:10px;padding-right:10px}@media only screen and (max-width:640px){.dialog.dialog-error .buttons-wrapper .button{width:100%}}.dialog.dialog-error h4{color:#DE4440;font-size:1.69rem;text-align:center}.dialog.dialog-success{width:100%;background:#FFF;text-align:left;max-width:500px;position:relative;text-align:center}.dialog.dialog-success .buttons-wrapper{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between;padding-top:20px}.dialog.dialog-success .buttons-wrapper .button{max-width:50%;margin-right:2px;margin-left:2px;-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0;padding-left:10px;padding-right:10px}@media only screen and (max-width:640px){.dialog.dialog-success .buttons-wrapper .button{width:100%}}.dialog.dialog-success h4{color:#000;font-size:1.69rem}.dialog{position:relative;min-height:200px;width:100%;max-width:650px;background:#fff;padding:30px 15px!important;text-align:left;margin:0 auto;opacity:0;will-change:transform,opacity;-webkit-box-shadow:0 50px 100px rgba(50,50,50,0.1),0 15px 35px rgba(50,50,50,0.15),0 5px 15px rgba(0,0,0,0.1);-moz-box-shadow:0 50px 100px rgba(50,50,50,0.1),0 15px 35px rgba(50,50,50,0.15),0 5px 15px rgba(0,0,0,0.1);box-shadow:0 50px 100px rgba(50,50,50,0.1),0 15px 35px rgba(50,50,50,0.15),0 5px 15px rgba(0,0,0,0.1);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;-webkit-transform:scale3d(0.8,0.8,0.8);-moz-transform:scale3d(0.8,0.8,0.8);-ms-transform:scale3d(0.8,0.8,0.8);-o-transform:scale3d(0.8,0.8,0.8);transform:scale3d(0.8,0.8,0.8)}.fancybox-container--ready .dialog{-webkit-transform:scale3d(1,1,1);-moz-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);-o-transform:scale3d(1,1,1);transform:scale3d(1,1,1);opacity:1}.dialog .fancybox-close-small{background-color:#ddd;outline:none!important;height:30px;position:absolute;top:0;-webkit-transition:background-color 0.15s ease,color 0.15s ease;-moz-transition:background-color 0.15s ease,color 0.15s ease;-o-transition:background-color 0.15s ease,color 0.15s ease;transition:background-color 0.15s ease,color 0.15s ease}.dialog .fancybox-close-small:hover{background-color:#e04343;color:#fff}.dialog .fancybox-close-small:hover:after{color:#fff;background:transparent}.dialog .fancybox-close-small:after{color:#222;top:0;right:0;width:100%;height:100%;border-radius:0;line-height:30px;background:transparent;outline:none!important}.dialog .button{margin-bottom:4px}.dialog h3{margin-bottom:20px}.dialog.ajax-dialog .dialog-content{backface-visibility:hidden;will-change:max-height,opacity;-webkit-transition:max-height 300ms ease-out,opacity 300ms ease-out;-moz-transition:max-height 300ms ease-out,opacity 300ms ease-out;-o-transition:max-height 300ms ease-out,opacity 300ms ease-out;transition:max-height 300ms ease-out,opacity 300ms ease-out}.dialog .dialog-content{padding:px}.dialog.dialog-4{max-width:400px}.dialog.dialog-6{max-width:520px}.dialog.dialog-8{max-width:640px}.my-dropdown-wrapper{position:relative;display:inline-block}.my-dropdown-wrapper:not(.my-dropdown--on-click):hover{z-index:2}.my-dropdown-wrapper:not(.my-dropdown--on-click):hover .my-dropdown{opacity:1;visibility:visible;-webkit-transition:opacity 0.2s ease,visibility 0s ease,-webkit-transform 0.2s ease;-webkit-transition-delay:0s,0s,0s;-moz-transition:opacity 0.2s ease,visibility 0s ease 0s,-moz-transform 0.2s ease;-o-transition:opacity 0.2s ease,visibility 0s ease 0s,-o-transform 0.2s ease;transition:opacity 0.2s ease,visibility 0s ease 0s,transform 0.2s ease;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.my-dropdown-wrapper.my-dropdown--on-click{outline:none}.my-dropdown-wrapper.my-dropdown--on-click .my-dropdown{-webkit-transition:opacity 0.2s ease,visibility 0.2s ease,-webkit-transform 0.2s ease,box-shadow 0.2s ease;-moz-transition:opacity 0.2s ease,visibility 0.2s ease,-moz-transform 0.2s ease,box-shadow 0.2s ease;-o-transition:opacity 0.2s ease,visibility 0.2s ease,-o-transform 0.2s ease,box-shadow 0.2s ease;transition:opacity 0.2s ease,visibility 0.2s ease,transform 0.2s ease,box-shadow 0.2s ease}.my-dropdown-wrapper.my-dropdown--on-click.active .my-dropdown{opacity:1;visibility:visible;-webkit-transition:opacity 0.2s ease,visibility 0s ease,-webkit-transform 0.2s ease;-webkit-transition-delay:0s,0s,0s;-moz-transition:opacity 0.2s ease,visibility 0s ease 0s,-moz-transform 0.2s ease;-o-transition:opacity 0.2s ease,visibility 0s ease 0s,-o-transform 0.2s ease;transition:opacity 0.2s ease,visibility 0s ease 0s,transform 0.2s ease;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.my-dropdown-wrapper .my-dropdown-trigger:after{display:inline-block;content:'';border:solid 4px;border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent}.my-dropdown-wrapper .my-dropdown{opacity:0;visibility:hidden;-webkit-transition:opacity 0.2s ease,visibility 0s ease,-webkit-transform 0.2s ease;-webkit-transition-delay:0.2s,0.4s,0.2s;-moz-transition:opacity 0.2s ease 0.2s,visibility 0s ease 0.4s,-moz-transform 0.2s ease 0.2s;-o-transition:opacity 0.2s ease 0.2s,visibility 0s ease 0.4s,-o-transform 0.2s ease 0.2s;transition:opacity 0.2s ease 0.2s,visibility 0s ease 0.4s,transform 0.2s ease 0.2s;-webkit-transform:translate3d(0,-22px,0);-moz-transform:translate3d(0,-22px,0);-ms-transform:translate3d(0,-22px,0);-o-transform:translate3d(0,-22px,0);transform:translate3d(0,-22px,0);position:absolute;padding-top:10px;min-width:120%;min-width:calc(100% + 34px)}.my-dropdown-wrapper .my-dropdown-inner{position:relative;list-style:none;margin:0;padding:8px 0;background-color:white;display:block;box-shadow:0 12px 15px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);box-shadow:0 13px 27px -5px rgba(0,0,0,0.25),0 8px 16px -8px rgba(0,0,0,0.2);border-radius:2px}.my-dropdown-wrapper .my-dropdown-inner:before{content:'';display:block;position:absolute;top:-10px;left:8px;border:12px solid transparent;border-bottom-width:12px;border-bottom-color:white;border-top-color:transparent;border-top-width:0}.my-dropdown-wrapper .my-dropdown-inner li{text-align:left}.my-dropdown-wrapper .my-dropdown-inner li a{padding:3px 15px;text-decoration:none;display:block;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;color:#1794c7;background-color:transparent;white-space:nowrap}@media only screen and (max-width:1024px){.my-dropdown-wrapper .my-dropdown-inner li a{padding-top:8px;padding-bottom:8px}}.my-dropdown-wrapper .my-dropdown-inner li a:hover{background-color:#174f70;color:white}.my-dropdown-wrapper .my-dropdown-inner li a .icon{display:inline-block;margin-right:10px}.my-dropdown-wrapper.my-dropdown--right .my-dropdown{right:0;transform-origin:calc(100% - 20px) -9px}.my-dropdown-wrapper.my-dropdown--right .my-dropdown .my-dropdown-inner:before{left:auto;right:8px}.my-dropdown-wrapper.my-dropdown--no-arrow .my-dropdown .my-dropdown-inner:before{display:none}.my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger{margin:0;color:#000}.my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger:hover,.my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger:focus,.my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger:active{background-color:#EEE;border-color:#EEE}.my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown-trigger:after{display:none}.my-dropdown-wrapper.my-dropdown--options-dropdown.my-dropdown--right .my-dropdown{right:0}.my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown{padding-top:0}.my-dropdown-wrapper.my-dropdown--options-dropdown .my-dropdown .my-dropdown-inner:before{display:none}.top-content-inner .slider-item .slider-item-outer-content-wrapper.slider-item-video{position:absolute;top:50%;width:100%;text-align:center;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.top-content-inner .slider-item .slider-item-outer-content-wrapper.slider-item-video button.link-video{padding:0;background-color:transparent;border-color:transparent;width:60px;height:60px}.top-content-inner .slider-item .slider-item-outer-content-wrapper.slider-item-video button.link-video svg{width:60px;height:60px}.slide-item{outline:none}div.slider-dots,.slider-container>div.slider-dots{padding:0;margin-left:0;bottom:0;margin-bottom:10px;position:absolute;text-align:center;z-index:10}div.slider-dots .slider-dot,.slider-container>div.slider-dots .slider-dot{width:12px;height:12px;display:inline-block;margin:2px 5px 5px 3px;outline:none;border-radius:50%;cursor:pointer;background-color:transparent;box-shadow:inset 0 0 0 2px #fff;-webkit-transition:box-shadow 0.3s ease,-webkit-transform 0.3s ease;-moz-transition:box-shadow 0.3s ease,-moz-transform 0.3s ease;-o-transition:box-shadow 0.3s ease,-o-transform 0.3s ease;transition:box-shadow 0.3s ease,transform 0.3s ease}div.slider-dots .slider-dot.slider-dot-active,.slider-container>div.slider-dots .slider-dot.slider-dot-active{-webkit-transform:scale3d(1.3,1.3,1.3);-moz-transform:scale3d(1.3,1.3,1.3);-ms-transform:scale3d(1.3,1.3,1.3);-o-transform:scale3d(1.3,1.3,1.3);transform:scale3d(1.3,1.3,1.3);box-shadow:inset 0 0 0 8px #fff}.conteudo-slider p{color:#fff}.conteudo-slider .titulo{font-size:60px;line-height:1.1;margin-bottom:5px;font-weight:300}.conteudo-slider a.botao,.conteudo-slider .button{background-color:#fff;color:#1794c7}.conteudo-slider a.botao:hover,.conteudo-slider a.botao:focus,.conteudo-slider .button:hover,.conteudo-slider .button:focus{background-color:#fff}.conteudo-slider .texto-branco{color:#FFF}.slider-item-outer-content-wrapper{position:absolute;top:80px;width:100%}.slider-item-outer-content-wrapper .slider-item-content-wrapper h1,.slider-item-outer-content-wrapper .slider-item-content-wrapper h2,.slider-item-outer-content-wrapper .slider-item-content-wrapper h3,.slider-item-outer-content-wrapper .slider-item-content-wrapper h4{color:white}.slider-item-outer-content-wrapper .slider-item-content-wrapper .titulo{font-weight:400}.slider-item-outer-content-wrapper .slider-item-content-wrapper .subtitulo{font-size:30px;margin-bottom:20px}.separador-ou{display:block;position:relative;text-align:center;margin-bottom:10px;margin-top:10px}.separador-ou span{background-color:white;display:inline-block;padding:0 10px;padding-bottom:4px;z-index:1;position:relative}.separador-ou:after{position:absolute;content:'';display:block;height:1px;width:100%;top:50%;margin-top:-1px;background-color:#DDD}#login-tabs-container #login-tabs-header{text-align:center;overflow:hidden}#login-tabs-container #login-tabs-header a{text-decoration:none;width:50%;display:block;float:left;font-size:20px;padding:10px 0;color:#000;border-bottom:solid 2px #CCC;-webkit-transition:all 0.2s ease;-moz-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease}#login-tabs-container #login-tabs-header a.active{border-bottom-color:#000}#login-tabs-container #login-tabs-header a:hover{background-color:#F4F4F4}#login-tabs-container #login-tabs-body .login-tabs-body-item{display:none;padding-top:30px}#login-tabs-container #login-tabs-body .login-tabs-body-item.active{display:block}.button.facebook-button{background-color:#3b5998;border-color:#3b5998;padding:10px 0}.button.facebook-button *{vertical-align:middle}.button.facebook-button i{margin-right:10px}.button.facebook-button:hover{background-color:#4264aa;border-color:#4264aa}.button.facebook-button:focus{background-color:#4c70ba;border-color:#4264aa}#area-carrinho label{cursor:default}#area-carrinho label[for]{cursor:pointer}#area-carrinho .checkout-padded-container{padding:20px 15px}#area-carrinho .checkout-padded-container>label>a{text-decoration:none}#area-carrinho .checkout-padded-container+.checkout-padded-container{padding-top:0}#area-carrinho .checkout-continuar-wrapper{padding:20px 15px;background-color:#eee}#area-carrinho .checkout-continuar-wrapper .button{margin:0}@media only screen and (max-width:640px){#area-carrinho .checkout-continuar-wrapper.fixed{padding:20px 15px;background-color:#FFF;position:fixed;bottom:0;left:0;right:0;z-index:1000;box-shadow:0 -5px 20px rgba(0,0,0,0.1)}#area-carrinho .checkout-continuar-wrapper.fixed .button{display:block}}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-erro{background-color:rgba(217,30,24,0.2);color:#D91E18;display:inline-block;padding:8px 10px}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-erro *{color:inherit}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-erro a{font-weight:bold;text-decoration:underline}#area-carrinho #area-carrinho-inner,#area-carrinho #area-checkout-inner{max-width:1024px;margin:0 auto}#area-carrinho #carrinho-vazio{text-align:center}@media only screen and (max-width:640px){#area-carrinho #carrinho-left-column{margin-bottom:30px}}#area-carrinho #carrinho-left-column>div:last-child .checkout-passo{margin-bottom:0}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper{background-color:white;border:solid 1px #eee}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-button-checkout-wrapper{padding:15px;margin-top:0}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-button-checkout-wrapper button{width:100%;margin-bottom:0}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion{border-bottom:solid 1px #eee}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger{display:block;color:inherit;position:relative;text-decoration:none;background-color:#F5F5F5;padding:15px;padding-right:30px;font-size:0.9rem;font-weight:500}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger.open .chevron{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger:hover{background-color:#F0F0F0}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger .chevron{position:absolute;display:block;width:16px;height:16px;right:15px;top:50%;margin-top:-8px;-webkit-transition:-webkit-transform 0.2s ease;-moz-transition:-moz-transform 0.2s ease;-o-transition:-o-transform 0.2s ease;transition:transform 0.2s ease}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger .chevron svg{position:absolute;top:0;left:0;width:100%;height:auto}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-content{overflow:hidden;padding:15px}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-oferta-wrapper .carrinho-resumo-oferta-label{font-weight:normal}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-oferta-wrapper .carrinho-resumo-oferta-label .icon{display:inline-block;line-height:20px;width:20px;text-align:center;border-radius:10px;background-color:#F89406;color:white}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .carrinho-resumo-voucher-input-wrapper{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .carrinho-resumo-voucher-input-wrapper input{-webkit-box-flex:2;-webkit-flex:2 1 auto;-moz-box-flex:2;-moz-flex:2 1 auto;-ms-flex:2 1 auto;flex:2 1 auto;margin-bottom:5px}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .carrinho-resumo-voucher-input-wrapper button{font-size:0.8rem;padding:5px 10px;height:2.4375rem;margin:0;margin-left:5px;-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-moz-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state{font-size:0.9rem;vertical-align:middle;line-height:18px;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state.valid{color:#66bb6a}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state.invalid{color:#D91E18}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state span{display:inline-block}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state .icon{display:inline-block;height:16px;width:16px;margin-right:5px}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state .icon svg{height:100%;width:100%;fill:currentColor}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state .icon svg *{fill:currentColor}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda{border-bottom:solid 1px #eee;font-size:0.85rem}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table{width:100%;border:none;margin-bottom:0;font-size:1em}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr{background-color:transparent;font-size:1em}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr td{font-size:1em;line-height:1.4em;padding:0;padding-bottom:10px;background-color:transparent}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr td:nth-child(1){font-weight:bold}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr td:nth-child(2){text-align:right}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.valor-total-wrapper td{font-size:1rem;font-weight:bold}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.valor-total-wrapper td #valor-total{font-size:1.5rem}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.iva-incluido-wrapper{border-bottom:none;font-style:italic}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.iva-incluido-wrapper td{border-bottom:none;padding-bottom:0}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.iva-incluido-wrapper span{font-weight:normal;font-size:0.8em}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-valores-wrapper{padding:15px;padding-top:30px;padding-bottom:30px}#area-carrinho #carrinho-right-column #carrinho-resumo-wrapper label{cursor:default}#area-carrinho #conteudo-carrinho{border:solid 1px #eee;margin-bottom:30px;font-size:0.9rem}#area-carrinho #conteudo-carrinho .carrinho-item{padding:15px;position:relative;font-size:1em;border-bottom:solid 1px #eee;background-color:#FFF;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}#area-carrinho #conteudo-carrinho .carrinho-item:last-child{border-bottom:none}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper{max-width:120px;max-height:120px;-webkit-box-flex:0;-webkit-flex:0 0 20%;-moz-box-flex:0;-moz-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;text-align:center}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper a{display:inline-block;height:100%}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper a img{max-height:100%}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo{position:relative;padding-left:10px;padding-right:32px;-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .my-dropdown--options-dropdown{position:absolute;top:-5px;right:0}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-label{font-weight:600}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-artigo-nome{font-weight:600;font-size:1.2em;line-height:1.2em;margin-bottom:2px}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-artigo-nome a{font-size:1em;text-decoration:none}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-descricao{margin-bottom:0}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-opcoes{display:block;margin-bottom:5px}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-qtd-wrapper .qtd{display:inline-block;background-color:white;width:auto;padding-right:20px;height:auto;padding-bottom:4px;padding-top:4px;margin-bottom:0}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-conteudo-linha{margin-bottom:8px}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-sub-total{font-size:1.2rem;font-weight:600;display:inline-block;text-align:right}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-remover{position:absolute;top:10px;right:10px;height:26px;width:26px;padding:5px;margin:0;background-color:transparent;color:inherit}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-remover svg{width:16px;height:16px;color:inherit}#area-carrinho #conteudo-carrinho .carrinho-item .carrinho-item-remover svg path{fill:currentColor}#area-carrinho #conteudo-carrinho .carrinho-item.changed span.sub-total{display:none}#area-carrinho #conteudo-carrinho .carrinho-item.changed button.refresh-line{display:block}#area-carrinho #conteudo-carrinho .carrinho-item .preco-antigo{font-size:0.8em;text-decoration:line-through;opacity:0.8}#area-carrinho #conteudo-carrinho .carrinho-item button.refresh-line{display:none;margin:0;color:white;line-height:20px;padding:2px 10px;font-size:13px}#area-carrinho .adicionar-morada{margin-bottom:0}#area-carrinho .checkout-passo{margin-bottom:30px}#area-carrinho .checkout-passo#checkout-passo-finalizar-wrapper{margin-bottom:0}@media only screen and (max-width:640px){#area-carrinho .checkout-passo#checkout-passo-finalizar-wrapper{margin-bottom:30px}}#area-carrinho .checkout-passo .checkout-passo-titulo{position:relative}#area-carrinho .checkout-passo .checkout-passo-titulo a{margin-bottom:0;font-size:0.7rem;float:right}#area-carrinho .checkout-passo .checkout-passo-titulo a span.icon{margin-right:3px}#area-carrinho .checkout-passo .checkout-passo-titulo .icon-check{display:inline-block;height:1.2em;line-height:1.2em;width:1.2em;color:#66bb6a;background-color:currentColor;vertical-align:middle;text-align:center;margin-right:5px;margin-left:5px}#area-carrinho .checkout-passo .checkout-passo-titulo .icon-check svg{display:inline-block;text-align:center;height:1.2em;color:currentColor;color:white}#area-carrinho .checkout-passo .checkout-passo-titulo .icon-check svg *{fill:currentColor}#area-carrinho .checkout-passo .checkout-passo-inner-wrapper{background-color:#FFF;border:solid 1px #eee;position:relative;-webkit-transition:box-shadow 0.3s ease-out;-moz-transition:box-shadow 0.3s ease-out;-o-transition:box-shadow 0.3s ease-out;transition:box-shadow 0.3s ease-out}#area-carrinho .checkout-passo .checkout-passo-inner-wrapper.active{border-color:#DDD;z-index:20;box-shadow:0 8px 11px -5px rgba(0,0,0,0.12),0 17px 26px 2px rgba(0,0,0,0.08),0 6px 32px 5px rgba(0,0,0,0.06)}#area-carrinho .checkout-passo .checkout-tabs{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex}#area-carrinho .checkout-passo .checkout-tabs>div{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0}#area-carrinho .checkout-passo .checkout-tabs>div input{opacity:0;position:absolute;top:0;z-index:-1}#area-carrinho .checkout-passo .checkout-tabs>div input:checked~label{background-color:#FFF}#area-carrinho .checkout-passo .checkout-tabs>div input:checked~label span{opacity:1}#area-carrinho .checkout-passo .checkout-tabs>div label{margin:0;height:100%;width:100%;padding:15px;background-color:#eee;font-size:1rem;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#area-carrinho .checkout-passo .checkout-tabs>div label:hover{background-color:#e9e9e9}#area-carrinho .checkout-passo .checkout-tabs>div label span{opacity:0.5;-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-moz-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;display:inline-block;vertical-align:middle}#area-carrinho .checkout-passo .checkout-tabs>div label span svg{float:left}#area-carrinho .checkout-passo .checkout-tabs>div label span svg *{fill:currentColor}#area-carrinho .checkout-passo .checkout-tabs>div label span.checkout-tab-icon{max-width:32px;margin-right:10px}@media only screen and (max-width:640px){#area-carrinho .checkout-passo .checkout-tabs>div label{font-size:13px;line-height:1.5em;-webkit-box-direction:normal;-webkit-box-orient:vertical;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;justify-content:flex-start;text-align:center}#area-carrinho .checkout-passo .checkout-tabs>div label span.checkout-tab-icon{-webkit-box-flex:0;-webkit-flex:0 0 0;-moz-box-flex:0;-moz-flex:0 0 0;-ms-flex:0 0 0;flex:0 0 0;margin-right:0}#area-carrinho .checkout-passo .checkout-tabs>div label span.checkout-tab-icon svg{width:24px;height:auto}}#area-carrinho .checkout-passo a .icon{display:inline-block;vertical-align:middle}#area-carrinho .checkout-passo a .icon svg{width:0.9em;height:0.9em}#area-carrinho .checkout-passo .adicionar-morada{position:relative;vertical-align:middle}#area-carrinho .checkout-passo .adicionar-morada span{display:inline-block;vertical-align:middle}#area-carrinho .checkout-passo .adicionar-morada .icon{width:1em;height:1em;text-align:center;display:inline-block;position:absolute}#area-carrinho .checkout-passo .adicionar-morada .icon svg{width:100%;height:100%;position:absolute;top:0;left:0}#area-carrinho .checkout-passo .checkout-passo-descricao-wrapper .checkout-passo-descricao-icon-wrapper{float:left;width:32px;min-height:1px}#area-carrinho .checkout-passo .checkout-passo-descricao-wrapper .checkout-passo-descricao{margin-left:47px}#area-carrinho .icon svg *{fill:currentColor}#area-carrinho .metodos-expedicao-inexistentes .checkout-metodo-item{vertical-align:middle}#area-carrinho .metodos-expedicao-inexistentes span{vertical-align:middle}#area-carrinho .metodos-expedicao-inexistentes .icon{display:inline-block;width:24px;height:24px;vertical-align:middle;line-height:1.2em}#area-carrinho .metodos-expedicao-inexistentes .icon svg{width:100%;height:100%}#area-carrinho .metodos-expedicao-inexistentes .icon svg *{fill:currentColor}#area-carrinho #checkout-facturacao-moradas,#area-carrinho #checkout-expedicao-moradas{margin-bottom:10px}#area-carrinho .checkout-expedicao-morada-item,#area-carrinho .checkout-facturacao-morada-item{padding:10px 0;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex}#area-carrinho .checkout-expedicao-morada-item+.checkout-expedicao-morada-item,#area-carrinho .checkout-expedicao-morada-item+.checkout-facturacao-morada-item,#area-carrinho .checkout-facturacao-morada-item+.checkout-expedicao-morada-item,#area-carrinho .checkout-facturacao-morada-item+.checkout-facturacao-morada-item{border-top:solid 1px #eee}#area-carrinho .checkout-expedicao-morada-item>div,#area-carrinho .checkout-facturacao-morada-item>div{-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0;width:calc(100% - 100px)}#area-carrinho .checkout-expedicao-morada-item>.button-editar-morada,#area-carrinho .checkout-facturacao-morada-item>.button-editar-morada{min-width:50px;font-size:0.9rem}#area-carrinho .checkout-expedicao-morada-item label,#area-carrinho .checkout-facturacao-morada-item label{display:block;font-weight:normal;margin-bottom:0}#area-carrinho .checkout-expedicao-morada-item label span,#area-carrinho .checkout-facturacao-morada-item label span{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#area-carrinho #area-checkout{padding-bottom:100px}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #resumo-valores-encomenda{border-top:solid 1px #eee}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #conteudo-carrinho{border:none;margin-bottom:0;font-size:0.8rem}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item{padding-left:0;padding-right:0}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-img-wrapper{width:50px;-webkit-box-flex:1;-webkit-flex:1 0 50px;-moz-box-flex:1;-moz-flex:1 0 50px;-ms-flex:1 0 50px;flex:1 0 50px;max-width:50px;min-width:50px}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-img-wrapper img{margin-bottom:8px}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-erro{background-color:rgba(217,30,24,0.2);color:#D91E18;display:inline-block;padding:8px 10px}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-erro *{color:inherit}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-erro a{font-weight:bold;text-decoration:underline}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-conteudo select,#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-conteudo input{font-size:1.2em}#area-carrinho #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-conteudo .carrinho-item-sub-total{font-size:1.2em}#area-carrinho #area-checkout .checkout-finalizar-aviso{padding-top:10px;display:block;font-size:0.8em}#area-carrinho .checkout-finalizar-pagamento-info{font-size:0.85rem;border-top:solid 1px #eee;padding-top:20px}#area-carrinho .checkout-finalizar-pagamento-info *{font-size:1em}#area-carrinho .checkout-finalizar-pagamento-info p{margin-bottom:1.25em}#area-carrinho .checkout-finalizar-pagamento-info p:last-child{margin-bottom:0}#area-carrinho .checkout-finalizar-pagamento-info .checkout-finalizar-pagamento-info-logo{height:30px;width:auto;margin-bottom:10px}#area-carrinho #checkout-expedicao-metodos-wrapper fieldset,#area-carrinho #checkout-pagamento-metodos-wrapper fieldset,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper fieldset{padding-bottom:4px}#area-carrinho #checkout-expedicao-metodos-wrapper .checkout-metodo-item,#area-carrinho #checkout-pagamento-metodos-wrapper .checkout-metodo-item,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .checkout-metodo-item{padding:10px 0}#area-carrinho #checkout-expedicao-metodos-wrapper .checkout-metodo-item label,#area-carrinho #checkout-pagamento-metodos-wrapper .checkout-metodo-item label,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .checkout-metodo-item label{margin:0}#area-carrinho #checkout-expedicao-metodos-wrapper .checkout-metodo-item+.checkout-metodo-item,#area-carrinho #checkout-pagamento-metodos-wrapper .checkout-metodo-item+.checkout-metodo-item,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .checkout-metodo-item+.checkout-metodo-item{border-top:solid 1px #eee}#area-carrinho #checkout-expedicao-metodos-wrapper input:checked~.metodo-item-info-adicional,#area-carrinho #checkout-pagamento-metodos-wrapper input:checked~.metodo-item-info-adicional,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper input:checked~.metodo-item-info-adicional{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}@media only screen and (max-width:640px){#area-carrinho #checkout-expedicao-metodos-wrapper input:checked~.metodo-item-info-adicional,#area-carrinho #checkout-pagamento-metodos-wrapper input:checked~.metodo-item-info-adicional,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper input:checked~.metodo-item-info-adicional{display:block}#area-carrinho #checkout-expedicao-metodos-wrapper input:checked~.metodo-item-info-adicional .metodo-item-info-adicional-coluna,#area-carrinho #checkout-pagamento-metodos-wrapper input:checked~.metodo-item-info-adicional .metodo-item-info-adicional-coluna,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper input:checked~.metodo-item-info-adicional .metodo-item-info-adicional-coluna{width:100%}}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-item-info-adicional,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-item-info-adicional,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-item-info-adicional{display:none;padding-left:30px;font-size:0.8rem}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna{padding-top:5px;padding-bottom:10px;padding-right:5px;width:50%}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna .metodo-item-info-adicional-titulo,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna .metodo-item-info-adicional-titulo,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna .metodo-item-info-adicional-titulo{font-weight:600}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna-full,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna-full,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna-full{width:100%}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-descricao,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-descricao,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-descricao .icone,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-descricao .icone,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .icone{max-width:30px;margin-right:8px;display:inline-block}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-descricao .metodo-descricao-top,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-descricao .metodo-descricao-top,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .metodo-descricao-top{font-weight:normal}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-descricao .metodo-descricao-top.metodo-descricao-top-bold,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-descricao .metodo-descricao-top.metodo-descricao-top-bold,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .metodo-descricao-top.metodo-descricao-top-bold{font-weight:600}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-descricao .metodo-descricao-bottom,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-descricao .metodo-descricao-bottom,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .metodo-descricao-bottom{font-size:0.9em;color:#888;font-weight:normal}#area-carrinho #checkout-expedicao-metodos-wrapper .metodo-descricao .metodo-descricao-bottom span,#area-carrinho #checkout-pagamento-metodos-wrapper .metodo-descricao .metodo-descricao-bottom span,#area-carrinho #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .metodo-descricao-bottom span{margin-left:0}#area-subscricoes label{cursor:default}#area-subscricoes label[for]{cursor:pointer}#area-subscricoes .checkout-padded-container{padding:20px 15px}#area-subscricoes .checkout-padded-container>label>a{text-decoration:none}#area-subscricoes .checkout-padded-container+.checkout-padded-container{padding-top:0}#area-subscricoes .checkout-continuar-wrapper{padding:20px 15px;background-color:#eee}#area-subscricoes .checkout-continuar-wrapper .button{margin:0}@media only screen and (max-width:640px){#area-subscricoes .checkout-continuar-wrapper.fixed{padding:20px 15px;background-color:#FFF;position:fixed;bottom:0;left:0;right:0;z-index:1000;box-shadow:0 -5px 20px rgba(0,0,0,0.1)}#area-subscricoes .checkout-continuar-wrapper.fixed .button{display:block}}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-erro{background-color:rgba(217,30,24,0.2);color:#D91E18;display:inline-block;padding:8px 10px}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-erro *{color:inherit}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-erro a{font-weight:bold;text-decoration:underline}#area-subscricoes #area-carrinho-inner,#area-subscricoes #area-checkout-inner{max-width:1024px;margin:0 auto}#area-subscricoes #carrinho-vazio{text-align:center}@media only screen and (max-width:640px){#area-subscricoes #carrinho-left-column{margin-bottom:30px}}#area-subscricoes #carrinho-left-column>div:last-child .checkout-passo{margin-bottom:0}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper{background-color:white;border:solid 1px #eee}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-button-checkout-wrapper{padding:15px;margin-top:0}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-button-checkout-wrapper button{width:100%;margin-bottom:0}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion{border-bottom:solid 1px #eee}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger{display:block;color:inherit;position:relative;text-decoration:none;background-color:#F5F5F5;padding:15px;padding-right:30px;font-size:0.9rem;font-weight:500}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger.open .chevron{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger:hover{background-color:#F0F0F0}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger .chevron{position:absolute;display:block;width:16px;height:16px;right:15px;top:50%;margin-top:-8px;-webkit-transition:-webkit-transform 0.2s ease;-moz-transition:-moz-transform 0.2s ease;-o-transition:-o-transform 0.2s ease;transition:transform 0.2s ease}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-trigger .chevron svg{position:absolute;top:0;left:0;width:100%;height:auto}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-accordion .carrinho-resumo-accordion-content{overflow:hidden;padding:15px}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-oferta-wrapper .carrinho-resumo-oferta-label{font-weight:normal}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-oferta-wrapper .carrinho-resumo-oferta-label .icon{display:inline-block;line-height:20px;width:20px;text-align:center;border-radius:10px;background-color:#F89406;color:white}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .carrinho-resumo-voucher-input-wrapper{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .carrinho-resumo-voucher-input-wrapper input{-webkit-box-flex:2;-webkit-flex:2 1 auto;-moz-box-flex:2;-moz-flex:2 1 auto;-ms-flex:2 1 auto;flex:2 1 auto;margin-bottom:5px}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .carrinho-resumo-voucher-input-wrapper button{font-size:0.8rem;padding:5px 10px;height:2.4375rem;margin:0;margin-left:5px;-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-moz-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state{font-size:0.9rem;vertical-align:middle;line-height:18px;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state.valid{color:#66bb6a}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state.invalid{color:#D91E18}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state span{display:inline-block}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state .icon{display:inline-block;height:16px;width:16px;margin-right:5px}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state .icon svg{height:100%;width:100%;fill:currentColor}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-voucher-wrapper .voucher-state .icon svg *{fill:currentColor}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda{border-bottom:solid 1px #eee;font-size:0.85rem}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table{width:100%;border:none;margin-bottom:0;font-size:1em}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr{background-color:transparent;font-size:1em}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr td{font-size:1em;line-height:1.4em;padding:0;padding-bottom:10px;background-color:transparent}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr td:nth-child(1){font-weight:bold}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr td:nth-child(2){text-align:right}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.valor-total-wrapper td{font-size:1rem;font-weight:bold}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.valor-total-wrapper td #valor-total{font-size:1.5rem}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.iva-incluido-wrapper{border-bottom:none;font-style:italic}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.iva-incluido-wrapper td{border-bottom:none;padding-bottom:0}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper #resumo-valores-encomenda table tr.iva-incluido-wrapper span{font-weight:normal;font-size:0.8em}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper .carrinho-resumo-valores-wrapper{padding:15px;padding-top:30px;padding-bottom:30px}#area-subscricoes #carrinho-right-column #carrinho-resumo-wrapper label{cursor:default}#area-subscricoes #conteudo-carrinho{border:solid 1px #eee;margin-bottom:30px;font-size:0.9rem}#area-subscricoes #conteudo-carrinho .carrinho-item{padding:15px;position:relative;font-size:1em;border-bottom:solid 1px #eee;background-color:#FFF;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}#area-subscricoes #conteudo-carrinho .carrinho-item:last-child{border-bottom:none}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper{max-width:120px;max-height:120px;-webkit-box-flex:0;-webkit-flex:0 0 20%;-moz-box-flex:0;-moz-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;text-align:center}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper a{display:inline-block;height:100%}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper a img{max-height:100%}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo{position:relative;padding-left:10px;padding-right:32px;-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .my-dropdown--options-dropdown{position:absolute;top:-5px;right:0}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-label{font-weight:600}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-artigo-nome{font-weight:600;font-size:1.2em;line-height:1.2em;margin-bottom:2px}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-artigo-nome a{font-size:1em;text-decoration:none}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-descricao{margin-bottom:0}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-opcoes{display:block;margin-bottom:5px}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-qtd-wrapper .qtd{display:inline-block;background-color:white;width:auto;padding-right:20px;height:auto;padding-bottom:4px;padding-top:4px;margin-bottom:0}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-conteudo-linha{margin-bottom:8px}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-sub-total{font-size:1.2rem;font-weight:600;display:inline-block;text-align:right}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-remover{position:absolute;top:10px;right:10px;height:26px;width:26px;padding:5px;margin:0;background-color:transparent;color:inherit}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-remover svg{width:16px;height:16px;color:inherit}#area-subscricoes #conteudo-carrinho .carrinho-item .carrinho-item-remover svg path{fill:currentColor}#area-subscricoes #conteudo-carrinho .carrinho-item.changed span.sub-total{display:none}#area-subscricoes #conteudo-carrinho .carrinho-item.changed button.refresh-line{display:block}#area-subscricoes #conteudo-carrinho .carrinho-item .preco-antigo{font-size:0.8em;text-decoration:line-through;opacity:0.8}#area-subscricoes #conteudo-carrinho .carrinho-item button.refresh-line{display:none;margin:0;color:white;line-height:20px;padding:2px 10px;font-size:13px}#area-subscricoes .adicionar-morada{margin-bottom:0}#area-subscricoes .checkout-passo{margin-bottom:30px}#area-subscricoes .checkout-passo#checkout-passo-finalizar-wrapper{margin-bottom:0}@media only screen and (max-width:640px){#area-subscricoes .checkout-passo#checkout-passo-finalizar-wrapper{margin-bottom:30px}}#area-subscricoes .checkout-passo .checkout-passo-titulo{position:relative}#area-subscricoes .checkout-passo .checkout-passo-titulo a{margin-bottom:0;font-size:0.7rem;float:right}#area-subscricoes .checkout-passo .checkout-passo-titulo a span.icon{margin-right:3px}#area-subscricoes .checkout-passo .checkout-passo-titulo .icon-check{display:inline-block;height:1.2em;line-height:1.2em;width:1.2em;color:#66bb6a;background-color:currentColor;vertical-align:middle;text-align:center;margin-right:5px;margin-left:5px}#area-subscricoes .checkout-passo .checkout-passo-titulo .icon-check svg{display:inline-block;text-align:center;height:1.2em;color:currentColor;color:white}#area-subscricoes .checkout-passo .checkout-passo-titulo .icon-check svg *{fill:currentColor}#area-subscricoes .checkout-passo .checkout-passo-inner-wrapper{background-color:#FFF;border:solid 1px #eee;position:relative;-webkit-transition:box-shadow 0.3s ease-out;-moz-transition:box-shadow 0.3s ease-out;-o-transition:box-shadow 0.3s ease-out;transition:box-shadow 0.3s ease-out}#area-subscricoes .checkout-passo .checkout-passo-inner-wrapper.active{border-color:#DDD;z-index:20;box-shadow:0 8px 11px -5px rgba(0,0,0,0.12),0 17px 26px 2px rgba(0,0,0,0.08),0 6px 32px 5px rgba(0,0,0,0.06)}#area-subscricoes .checkout-passo .checkout-tabs{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex}#area-subscricoes .checkout-passo .checkout-tabs>div{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0}#area-subscricoes .checkout-passo .checkout-tabs>div input{opacity:0;position:absolute;top:0;z-index:-1}#area-subscricoes .checkout-passo .checkout-tabs>div input:checked~label{background-color:#FFF}#area-subscricoes .checkout-passo .checkout-tabs>div input:checked~label span{opacity:1}#area-subscricoes .checkout-passo .checkout-tabs>div label{margin:0;height:100%;width:100%;padding:15px;background-color:#eee;font-size:1rem;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#area-subscricoes .checkout-passo .checkout-tabs>div label:hover{background-color:#e9e9e9}#area-subscricoes .checkout-passo .checkout-tabs>div label span{opacity:0.5;-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-moz-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;display:inline-block;vertical-align:middle}#area-subscricoes .checkout-passo .checkout-tabs>div label span svg{float:left}#area-subscricoes .checkout-passo .checkout-tabs>div label span svg *{fill:currentColor}#area-subscricoes .checkout-passo .checkout-tabs>div label span.checkout-tab-icon{max-width:32px;margin-right:10px}@media only screen and (max-width:640px){#area-subscricoes .checkout-passo .checkout-tabs>div label{font-size:13px;line-height:1.5em;-webkit-box-direction:normal;-webkit-box-orient:vertical;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;justify-content:flex-start;text-align:center}#area-subscricoes .checkout-passo .checkout-tabs>div label span.checkout-tab-icon{-webkit-box-flex:0;-webkit-flex:0 0 0;-moz-box-flex:0;-moz-flex:0 0 0;-ms-flex:0 0 0;flex:0 0 0;margin-right:0}#area-subscricoes .checkout-passo .checkout-tabs>div label span.checkout-tab-icon svg{width:24px;height:auto}}#area-subscricoes .checkout-passo a .icon{display:inline-block;vertical-align:middle}#area-subscricoes .checkout-passo a .icon svg{width:0.9em;height:0.9em}#area-subscricoes .checkout-passo .adicionar-morada{position:relative;vertical-align:middle}#area-subscricoes .checkout-passo .adicionar-morada span{display:inline-block;vertical-align:middle}#area-subscricoes .checkout-passo .adicionar-morada .icon{width:1em;height:1em;text-align:center;display:inline-block;position:absolute}#area-subscricoes .checkout-passo .adicionar-morada .icon svg{width:100%;height:100%;position:absolute;top:0;left:0}#area-subscricoes .checkout-passo .checkout-passo-descricao-wrapper .checkout-passo-descricao-icon-wrapper{float:left;width:32px;min-height:1px}#area-subscricoes .checkout-passo .checkout-passo-descricao-wrapper .checkout-passo-descricao{margin-left:47px}#area-subscricoes .icon svg *{fill:currentColor}#area-subscricoes .metodos-expedicao-inexistentes .checkout-metodo-item{vertical-align:middle}#area-subscricoes .metodos-expedicao-inexistentes span{vertical-align:middle}#area-subscricoes .metodos-expedicao-inexistentes .icon{display:inline-block;width:24px;height:24px;vertical-align:middle;line-height:1.2em}#area-subscricoes .metodos-expedicao-inexistentes .icon svg{width:100%;height:100%}#area-subscricoes .metodos-expedicao-inexistentes .icon svg *{fill:currentColor}#area-subscricoes #checkout-facturacao-moradas,#area-subscricoes #checkout-expedicao-moradas{margin-bottom:10px}#area-subscricoes .checkout-expedicao-morada-item,#area-subscricoes .checkout-facturacao-morada-item{padding:10px 0;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex}#area-subscricoes .checkout-expedicao-morada-item+.checkout-expedicao-morada-item,#area-subscricoes .checkout-expedicao-morada-item+.checkout-facturacao-morada-item,#area-subscricoes .checkout-facturacao-morada-item+.checkout-expedicao-morada-item,#area-subscricoes .checkout-facturacao-morada-item+.checkout-facturacao-morada-item{border-top:solid 1px #eee}#area-subscricoes .checkout-expedicao-morada-item>div,#area-subscricoes .checkout-facturacao-morada-item>div{-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0;width:calc(100% - 100px)}#area-subscricoes .checkout-expedicao-morada-item>.button-editar-morada,#area-subscricoes .checkout-facturacao-morada-item>.button-editar-morada{min-width:50px;font-size:0.9rem}#area-subscricoes .checkout-expedicao-morada-item label,#area-subscricoes .checkout-facturacao-morada-item label{display:block;font-weight:normal;margin-bottom:0}#area-subscricoes .checkout-expedicao-morada-item label span,#area-subscricoes .checkout-facturacao-morada-item label span{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#area-subscricoes #area-checkout{padding-bottom:100px}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #resumo-valores-encomenda{border-top:solid 1px #eee}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #conteudo-carrinho{border:none;margin-bottom:0;font-size:0.8rem}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item{padding-left:0;padding-right:0}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-img-wrapper{width:50px;-webkit-box-flex:1;-webkit-flex:1 0 50px;-moz-box-flex:1;-moz-flex:1 0 50px;-ms-flex:1 0 50px;flex:1 0 50px;max-width:50px;min-width:50px}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-img-wrapper img{margin-bottom:8px}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-erro{background-color:rgba(217,30,24,0.2);color:#D91E18;display:inline-block;padding:8px 10px}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-erro *{color:inherit}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-erro a{font-weight:bold;text-decoration:underline}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-conteudo select,#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-conteudo input{font-size:1.2em}#area-subscricoes #area-checkout #carrinho-conteudo-wrapper #carrinho-resumo-wrapper #checkout-conteudo-carrinho-wrapper .carrinho-item .carrinho-item-conteudo .carrinho-item-sub-total{font-size:1.2em}#area-subscricoes #area-checkout .checkout-finalizar-aviso{padding-top:10px;display:block;font-size:0.8em}#area-subscricoes .checkout-finalizar-pagamento-info{font-size:0.85rem;border-top:solid 1px #eee;padding-top:20px}#area-subscricoes .checkout-finalizar-pagamento-info *{font-size:1em}#area-subscricoes .checkout-finalizar-pagamento-info p{margin-bottom:1.25em}#area-subscricoes .checkout-finalizar-pagamento-info p:last-child{margin-bottom:0}#area-subscricoes .checkout-finalizar-pagamento-info .checkout-finalizar-pagamento-info-logo{height:30px;width:auto;margin-bottom:10px}#area-subscricoes #checkout-expedicao-metodos-wrapper fieldset,#area-subscricoes #checkout-pagamento-metodos-wrapper fieldset,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper fieldset{padding-bottom:4px}#area-subscricoes #checkout-expedicao-metodos-wrapper .checkout-metodo-item,#area-subscricoes #checkout-pagamento-metodos-wrapper .checkout-metodo-item,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .checkout-metodo-item{padding:10px 0}#area-subscricoes #checkout-expedicao-metodos-wrapper .checkout-metodo-item label,#area-subscricoes #checkout-pagamento-metodos-wrapper .checkout-metodo-item label,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .checkout-metodo-item label{margin:0}#area-subscricoes #checkout-expedicao-metodos-wrapper .checkout-metodo-item+.checkout-metodo-item,#area-subscricoes #checkout-pagamento-metodos-wrapper .checkout-metodo-item+.checkout-metodo-item,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .checkout-metodo-item+.checkout-metodo-item{border-top:solid 1px #eee}#area-subscricoes #checkout-expedicao-metodos-wrapper input:checked~.metodo-item-info-adicional,#area-subscricoes #checkout-pagamento-metodos-wrapper input:checked~.metodo-item-info-adicional,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper input:checked~.metodo-item-info-adicional{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}@media only screen and (max-width:640px){#area-subscricoes #checkout-expedicao-metodos-wrapper input:checked~.metodo-item-info-adicional,#area-subscricoes #checkout-pagamento-metodos-wrapper input:checked~.metodo-item-info-adicional,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper input:checked~.metodo-item-info-adicional{display:block}#area-subscricoes #checkout-expedicao-metodos-wrapper input:checked~.metodo-item-info-adicional .metodo-item-info-adicional-coluna,#area-subscricoes #checkout-pagamento-metodos-wrapper input:checked~.metodo-item-info-adicional .metodo-item-info-adicional-coluna,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper input:checked~.metodo-item-info-adicional .metodo-item-info-adicional-coluna{width:100%}}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-item-info-adicional,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-item-info-adicional,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-item-info-adicional{display:none;padding-left:30px;font-size:0.8rem}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna{padding-top:5px;padding-bottom:10px;padding-right:5px;width:50%}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna .metodo-item-info-adicional-titulo,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna .metodo-item-info-adicional-titulo,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna .metodo-item-info-adicional-titulo{font-weight:600}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna-full,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna-full,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-item-info-adicional .metodo-item-info-adicional-coluna-full{width:100%}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-descricao,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-descricao,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-descricao .icone,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-descricao .icone,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .icone{max-width:30px;margin-right:8px;display:inline-block}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-descricao .metodo-descricao-top,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-descricao .metodo-descricao-top,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .metodo-descricao-top{font-weight:normal}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-descricao .metodo-descricao-top.metodo-descricao-top-bold,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-descricao .metodo-descricao-top.metodo-descricao-top-bold,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .metodo-descricao-top.metodo-descricao-top-bold{font-weight:600}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-descricao .metodo-descricao-bottom,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-descricao .metodo-descricao-bottom,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .metodo-descricao-bottom{font-size:0.9em;color:#888;font-weight:normal}#area-subscricoes #checkout-expedicao-metodos-wrapper .metodo-descricao .metodo-descricao-bottom span,#area-subscricoes #checkout-pagamento-metodos-wrapper .metodo-descricao .metodo-descricao-bottom span,#area-subscricoes #checkout-expedicao-metodos-levantamento-wrapper .metodo-descricao .metodo-descricao-bottom span{margin-left:0}#area-conta-cupoes .cupao-outer-wrapper{display:inline-block}#area-conta-cupoes .cupao-outer-wrapper .cupao-wrapper{border-width:1px;border-style:solid;position:relative;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;width:auto;outline:none}#area-conta-cupoes .cupao-outer-wrapper .cupao-wrapper .cupao-icone{padding:8px 18px;width:70px;max-height:50px;text-align:center;background-color:#174f70;border-right:1px solid;line-height:1}#area-conta-cupoes .cupao-outer-wrapper .cupao-wrapper .cupao-icone svg{fill:#FFF}#area-conta-cupoes .cupao-outer-wrapper .cupao-wrapper .cupao-codigo{width:auto;padding:10px 20px;line-height:1}#area-conta-cupoes #tabela-cupoes{width:100%}#area-conta-cupoes #tabela-cupoes .titulo-label{display:none}@media only screen and (min-width:641px){#area-conta-cupoes #tabela-cupoes th:first-child,#area-conta-cupoes #tabela-cupoes td:first-child{padding-left:15px}#area-conta-cupoes #tabela-cupoes th:last-child,#area-conta-cupoes #tabela-cupoes td:last-child{padding-right:15px}}#area-conta-cupoes #tabela-cupoes th{text-align:left;font-size:1rem;line-height:1.5em}#area-conta-cupoes #tabela-cupoes td{font-size:1rem}#area-conta-cupoes #tabela-cupoes td.td-codigo,#area-conta-cupoes #tabela-cupoes td.td-data{white-space:nowrap}#area-conta-cupoes #tabela-cupoes td.td-img{width:120px}#area-conta-cupoes #tabela-cupoes td.td-img img{max-width:100px}#area-conta-cupoes #tabela-cupoes td .artigo-nome{font-size:1rem;display:inline-block;text-decoration:none}#area-conta-cupoes #tabela-cupoes td .opcoes{color:#888;display:inline-block;padding-left:10px;margin-top:5px;font-size:0.8rem}#area-conta-cupoes #tabela-cupoes td button.remover-linha{background-color:transparent;border:none;padding:0;margin:0;width:20px;height:20px;color:#CCC;line-height:20px;font-size:20px;cursor:pointer;text-align:center}#area-conta-cupoes #tabela-cupoes td button.remover-linha:hover{color:#1794c7}#area-conta-cupoes #tabela-cupoes td .span-label{display:none}#area-conta-cupoes #tabela-cupoes tr.changed span.sub-total{display:none}#area-conta-cupoes #tabela-cupoes tr.changed button.refresh-line{display:block}#area-conta-cupoes #tabela-cupoes tr button.refresh-line{display:none;margin:0;color:white;line-height:20px;padding:2px 10px;font-size:13px}#area-conta-cupoes #tabela-cupoes tr button.more,#area-conta-cupoes #tabela-cupoes tr button.less{background-color:transparent;border:none;color:#000;font-weight:300;padding:0;margin:0;height:37px}#area-conta-cupoes #tabela-cupoes tr button.more:hover,#area-conta-cupoes #tabela-cupoes tr button.more:focus,#area-conta-cupoes #tabela-cupoes tr button.less:hover,#area-conta-cupoes #tabela-cupoes tr button.less:focus{color:#1794c7}#area-conta-cupoes #tabela-cupoes tr .qtd{padding:0;height:37px;width:37px;display:inline-block;text-align:center;margin:0 4px}#area-conta-cupoes #tabela-cupoes tr button,#area-conta-cupoes #tabela-cupoes tr input{display:inline-block}#area-conta-cupoes #tabela-cupoes tr input{padding:0;height:37px;width:37px;text-align:center}#area-conta-cupoes #tabela-cupoes tr.tr-erro{border-top:none}#area-conta-cupoes #tabela-cupoes tr.tr-erro td{padding:10px!important}#area-conta-cupoes #tabela-cupoes tr.tr-erro td span{display:block;padding:10px;background-color:#E26666;color:white;text-align:center;position:relative}#area-conta-cupoes #tabela-cupoes tr.tr-erro td span:after{display:block;content:'';position:absolute;top:-5px;left:50%;margin-left:-5px;border:solid 5px transparent;border-bottom-color:#E26666;border-top:0}#area-conta-cupoes #tabela-cupoes tr.tr-erro td span a{color:darkred}#area-conta-cupoes #tabela-cupoes tr.tr-com-erro{border-bottom:none}@media only screen and (max-width:640px){#area-conta-cupoes #tabela-cupoes td{padding-top:0}#area-conta-cupoes #tabela-cupoes .td-quantidade,#area-conta-cupoes #tabela-cupoes .td-controls,#area-conta-cupoes #tabela-cupoes .td-valor-unitario,#area-conta-cupoes #tabela-cupoes .td-valor-total{padding-top:0}#area-conta-cupoes #tabela-cupoes .titulo-label{font-weight:bold;display:inline-block}}@media (max-width:640px){#area-conta-cupoes #tabela-cupoes thead{display:none}#area-conta-cupoes #tabela-cupoes tr{text-align:left;display:block;padding-left:110px;padding-right:40px;padding-top:20px;padding-bottom:20px;position:relative}#area-conta-cupoes #tabela-cupoes#tabela-historico-encomendas tr{padding-left:10px;padding-right:10px}#area-conta-cupoes #tabela-cupoes td{display:block;text-align:left}#area-conta-cupoes #tabela-cupoes td.td-img{width:110px!important;display:inline-block;position:absolute;top:20px;left:0;padding-left:0}#area-conta-cupoes #tabela-cupoes td.td-img a{display:inline-block}#area-conta-cupoes #tabela-cupoes td.td-img img{max-width:100%!important}#area-conta-cupoes #tabela-cupoes td.td-descricao{width:100%;display:inline-block}#area-conta-cupoes #tabela-cupoes td .opcoes{padding-left:0}#area-conta-cupoes #tabela-cupoes td.td-remover{text-align:right;padding:0}#area-conta-cupoes #tabela-cupoes td.td-remover .remover-linha{padding:5px 8px;width:auto;height:auto;-webkit-border-radius:6px;-moz-border-radius:6px;-ms-border-radius:6px;-o-border-radius:6px;border-radius:6px}#area-conta-cupoes #tabela-cupoes td.td-valor-unitario{display:none}#area-conta-cupoes #tabela-cupoes td.td-controls,#area-conta-cupoes #tabela-cupoes td.td-quantidade,#area-conta-cupoes #tabela-cupoes td.td-valor-total{display:inline-block}#area-conta-cupoes #tabela-cupoes td.td-codigo,#area-conta-cupoes #tabela-cupoes td.td-data{display:inline-block}#area-conta-cupoes #tabela-cupoes td .remover-linha span{display:none!important}#area-conta-cupoes #tabela-cupoes td .span-label{display:inline-block;font-weight:bold}#area-conta-cupoes #tabela-cupoes tbody tr{position:relative}#area-conta-cupoes #tabela-cupoes tbody tr .td-remover{top:15px;right:0;position:absolute}}#area-conta-cupoes #tabela-cupoes tr{padding-left:10px;padding-right:10px}#area-conta-cupoes #tabela-cupoes tr td.td-info{min-width:30px}#area-conta-cupoes #tabela-cupoes tr td.td-info span.icon{font-size:25px}#area-conta-cupoes #tabela-cupoes tr td.td-info span.descricao{font-size:0.8rem}#area-conta-cupoes #tabela-cupoes .estado-utilizacao{position:relative;padding:5px 15px;border:1px solid transparent;border-radius:5px;display:inline-block;vertical-align:middle}#area-conta-cupoes #tabela-cupoes .estado-utilizacao.utilizado{color:#155724;background-color:#d4edda;border-color:#c3e6cb}#area-conta-cupoes #tabela-cupoes .estado-utilizacao.pendente{color:#856404;background-color:#fff3cd;border-color:#ffeeba}#area-conta-cupoes .cupao-outer-wrapper .cupao-wrapper{box-shadow:0 10px 50px 0 rgba(0,0,0,0.1);border:solid 1px #ddd;border-radius:10px;overflow:hidden;margin-bottom:25px}#area-conta-cupoes .cupao-outer-wrapper .cupao-wrapper .cupao-icone{text-align:center;border-right:none}#area-conta-cupoes .cupao-outer-wrapper .cupao-wrapper .cupao-codigo{width:auto;line-height:1}#area-historico-encomendas .alerta-pagamento{position:relative;padding:5px 15px;border:1px solid transparent;border-radius:5px;display:inline-block;vertical-align:middle}#area-historico-encomendas .alerta-pagamento.concluida{color:#155724;background-color:#d4edda;border-color:#c3e6cb}#area-historico-encomendas .alerta-pagamento.anulada{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}#area-historico-encomendas .alerta-pagamento.pendente{color:#856404;background-color:#fff3cd;border-color:#ffeeba}#area-historico-encomendas #tabela-historico-encomendas{width:100%}#area-historico-encomendas #tabela-historico-encomendas .titulo-label{display:none}@media only screen and (min-width:641px){#area-historico-encomendas #tabela-historico-encomendas th:first-child,#area-historico-encomendas #tabela-historico-encomendas td:first-child{padding-left:15px}#area-historico-encomendas #tabela-historico-encomendas th:last-child,#area-historico-encomendas #tabela-historico-encomendas td:last-child{padding-right:15px}}#area-historico-encomendas #tabela-historico-encomendas th{text-align:left;font-size:1rem;line-height:1.5em}#area-historico-encomendas #tabela-historico-encomendas td{font-size:1rem}#area-historico-encomendas #tabela-historico-encomendas td.td-codigo,#area-historico-encomendas #tabela-historico-encomendas td.td-data{white-space:nowrap}#area-historico-encomendas #tabela-historico-encomendas td.td-img{width:120px}#area-historico-encomendas #tabela-historico-encomendas td.td-img img{max-width:100px}#area-historico-encomendas #tabela-historico-encomendas td .artigo-nome{font-size:1rem;display:inline-block;text-decoration:none}#area-historico-encomendas #tabela-historico-encomendas td .opcoes{color:#888;display:inline-block;padding-left:10px;margin-top:5px;font-size:0.8rem}#area-historico-encomendas #tabela-historico-encomendas td button.remover-linha{background-color:transparent;border:none;padding:0;margin:0;width:20px;height:20px;color:#CCC;line-height:20px;font-size:20px;cursor:pointer;text-align:center}#area-historico-encomendas #tabela-historico-encomendas td button.remover-linha:hover{color:#1794c7}#area-historico-encomendas #tabela-historico-encomendas td .span-label{display:none}#area-historico-encomendas #tabela-historico-encomendas tr.changed span.sub-total{display:none}#area-historico-encomendas #tabela-historico-encomendas tr.changed button.refresh-line{display:block}#area-historico-encomendas #tabela-historico-encomendas tr button.refresh-line{display:none;margin:0;color:white;line-height:20px;padding:2px 10px;font-size:13px}#area-historico-encomendas #tabela-historico-encomendas tr button.more,#area-historico-encomendas #tabela-historico-encomendas tr button.less{background-color:transparent;border:none;color:#000;font-weight:300;padding:0;margin:0;height:37px}#area-historico-encomendas #tabela-historico-encomendas tr button.more:hover,#area-historico-encomendas #tabela-historico-encomendas tr button.more:focus,#area-historico-encomendas #tabela-historico-encomendas tr button.less:hover,#area-historico-encomendas #tabela-historico-encomendas tr button.less:focus{color:#1794c7}#area-historico-encomendas #tabela-historico-encomendas tr .qtd{padding:0;height:37px;width:37px;display:inline-block;text-align:center;margin:0 4px}#area-historico-encomendas #tabela-historico-encomendas tr button,#area-historico-encomendas #tabela-historico-encomendas tr input{display:inline-block}#area-historico-encomendas #tabela-historico-encomendas tr input{padding:0;height:37px;width:37px;text-align:center}#area-historico-encomendas #tabela-historico-encomendas tr.tr-erro{border-top:none}#area-historico-encomendas #tabela-historico-encomendas tr.tr-erro td{padding:10px!important}#area-historico-encomendas #tabela-historico-encomendas tr.tr-erro td span{display:block;padding:10px;background-color:#E26666;color:white;text-align:center;position:relative}#area-historico-encomendas #tabela-historico-encomendas tr.tr-erro td span:after{display:block;content:'';position:absolute;top:-5px;left:50%;margin-left:-5px;border:solid 5px transparent;border-bottom-color:#E26666;border-top:0}#area-historico-encomendas #tabela-historico-encomendas tr.tr-erro td span a{color:darkred}#area-historico-encomendas #tabela-historico-encomendas tr.tr-com-erro{border-bottom:none}@media only screen and (max-width:640px){#area-historico-encomendas #tabela-historico-encomendas td{padding-top:0}#area-historico-encomendas #tabela-historico-encomendas .td-quantidade,#area-historico-encomendas #tabela-historico-encomendas .td-controls,#area-historico-encomendas #tabela-historico-encomendas .td-valor-unitario,#area-historico-encomendas #tabela-historico-encomendas .td-valor-total{padding-top:0}#area-historico-encomendas #tabela-historico-encomendas .titulo-label{font-weight:bold;display:inline-block}}@media (max-width:640px){#area-historico-encomendas #tabela-historico-encomendas thead{display:none}#area-historico-encomendas #tabela-historico-encomendas tr{text-align:left;display:block;padding-left:110px;padding-right:40px;padding-top:20px;padding-bottom:20px;position:relative}#area-historico-encomendas #tabela-historico-encomendas#tabela-historico-encomendas tr{padding-left:10px;padding-right:10px}#area-historico-encomendas #tabela-historico-encomendas td{display:block;text-align:left}#area-historico-encomendas #tabela-historico-encomendas td.td-img{width:110px!important;display:inline-block;position:absolute;top:20px;left:0;padding-left:0}#area-historico-encomendas #tabela-historico-encomendas td.td-img a{display:inline-block}#area-historico-encomendas #tabela-historico-encomendas td.td-img img{max-width:100%!important}#area-historico-encomendas #tabela-historico-encomendas td.td-descricao{width:100%;display:inline-block}#area-historico-encomendas #tabela-historico-encomendas td .opcoes{padding-left:0}#area-historico-encomendas #tabela-historico-encomendas td.td-remover{text-align:right;padding:0}#area-historico-encomendas #tabela-historico-encomendas td.td-remover .remover-linha{padding:5px 8px;width:auto;height:auto;-webkit-border-radius:6px;-moz-border-radius:6px;-ms-border-radius:6px;-o-border-radius:6px;border-radius:6px}#area-historico-encomendas #tabela-historico-encomendas td.td-valor-unitario{display:none}#area-historico-encomendas #tabela-historico-encomendas td.td-controls,#area-historico-encomendas #tabela-historico-encomendas td.td-quantidade,#area-historico-encomendas #tabela-historico-encomendas td.td-valor-total{display:inline-block}#area-historico-encomendas #tabela-historico-encomendas td.td-codigo,#area-historico-encomendas #tabela-historico-encomendas td.td-data{display:inline-block}#area-historico-encomendas #tabela-historico-encomendas td .remover-linha span{display:none!important}#area-historico-encomendas #tabela-historico-encomendas td .span-label{display:inline-block;font-weight:bold}#area-historico-encomendas #tabela-historico-encomendas tbody tr{position:relative}#area-historico-encomendas #tabela-historico-encomendas tbody tr .td-remover{top:15px;right:0;position:absolute}}#area-historico-encomendas #tabela-historico-encomendas .button{margin:2px 0}#area-consultar-encomenda{margin-bottom:0;border:none}#area-consultar-encomenda .alerta-pagamento{position:relative;padding:5px 15px;border:1px solid transparent;border-radius:5px;display:inline-block;vertical-align:middle}#area-consultar-encomenda .alerta-pagamento.concluida{color:#155724;background-color:#d4edda;border-color:#c3e6cb}#area-consultar-encomenda .alerta-pagamento.anulada{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}#area-consultar-encomenda .alerta-pagamento.pendente{color:#856404;background-color:#fff3cd;border-color:#ffeeba}#area-consultar-encomenda .conta-titulo-pagina{vertical-align:middle}#area-consultar-encomenda .conta-titulo-pagina span{display:inline-block;vertical-align:middle;margin-right:10px}#area-consultar-encomenda .conta-titulo-pagina span~span{margin-right:0}#area-consultar-encomenda .conta-titulo-pagina .alerta-pagamento{font-size:0.5em}#area-consultar-encomenda .flex-row{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}#area-consultar-encomenda .flex-row .columns{float:none}#area-consultar-encomenda .encomenda-info-container{border:solid 1px #eee;background-color:white;padding:15px;box-shadow:0 2px 8px rgba(0,0,0,0.08);height:100%}#area-consultar-encomenda .encomenda-info-container h5{margin-bottom:16px}#area-consultar-encomenda .encomenda-info-container :last-child{margin-bottom:0}#area-consultar-encomenda table tr.valores-totais-tr{background-color:transparent}#area-consultar-encomenda table tr.valores-totais-tr.valor-total-wrapper{border-top:dotted 1px #CCC}#area-consultar-encomenda table tr.valores-totais-tr.valor-total-wrapper td{padding-top:20px;padding-bottom:20px}#area-consultar-encomenda table tr.valores-totais-tr.valor-total-wrapper *{font-size:1.2em!important}#area-consultar-encomenda table tr.valores-totais-tr.iva-incluido-wrapper *{font-size:0.9em!important}#area-consultar-encomenda #tabela-conteudo-encomenda{width:100%}#area-consultar-encomenda #tabela-conteudo-encomenda .titulo-label{display:none}@media only screen and (min-width:641px){#area-consultar-encomenda #tabela-conteudo-encomenda th:first-child,#area-consultar-encomenda #tabela-conteudo-encomenda td:first-child{padding-left:15px}#area-consultar-encomenda #tabela-conteudo-encomenda th:last-child,#area-consultar-encomenda #tabela-conteudo-encomenda td:last-child{padding-right:15px}}#area-consultar-encomenda #tabela-conteudo-encomenda th{text-align:left;font-size:1rem;line-height:1.5em}#area-consultar-encomenda #tabela-conteudo-encomenda td{font-size:1rem}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-codigo,#area-consultar-encomenda #tabela-conteudo-encomenda td.td-data{white-space:nowrap}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-img{width:120px}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-img img{max-width:100px}#area-consultar-encomenda #tabela-conteudo-encomenda td .artigo-nome{font-size:1rem;display:inline-block;text-decoration:none}#area-consultar-encomenda #tabela-conteudo-encomenda td .opcoes{color:#888;display:inline-block;padding-left:10px;margin-top:5px;font-size:0.8rem}#area-consultar-encomenda #tabela-conteudo-encomenda td button.remover-linha{background-color:transparent;border:none;padding:0;margin:0;width:20px;height:20px;color:#CCC;line-height:20px;font-size:20px;cursor:pointer;text-align:center}#area-consultar-encomenda #tabela-conteudo-encomenda td button.remover-linha:hover{color:#1794c7}#area-consultar-encomenda #tabela-conteudo-encomenda td .span-label{display:none}#area-consultar-encomenda #tabela-conteudo-encomenda tr.changed span.sub-total{display:none}#area-consultar-encomenda #tabela-conteudo-encomenda tr.changed button.refresh-line{display:block}#area-consultar-encomenda #tabela-conteudo-encomenda tr button.refresh-line{display:none;margin:0;color:white;line-height:20px;padding:2px 10px;font-size:13px}#area-consultar-encomenda #tabela-conteudo-encomenda tr button.more,#area-consultar-encomenda #tabela-conteudo-encomenda tr button.less{background-color:transparent;border:none;color:#000;font-weight:300;padding:0;margin:0;height:37px}#area-consultar-encomenda #tabela-conteudo-encomenda tr button.more:hover,#area-consultar-encomenda #tabela-conteudo-encomenda tr button.more:focus,#area-consultar-encomenda #tabela-conteudo-encomenda tr button.less:hover,#area-consultar-encomenda #tabela-conteudo-encomenda tr button.less:focus{color:#1794c7}#area-consultar-encomenda #tabela-conteudo-encomenda tr .qtd{padding:0;height:37px;width:37px;display:inline-block;text-align:center;margin:0 4px}#area-consultar-encomenda #tabela-conteudo-encomenda tr button,#area-consultar-encomenda #tabela-conteudo-encomenda tr input{display:inline-block}#area-consultar-encomenda #tabela-conteudo-encomenda tr input{padding:0;height:37px;width:37px;text-align:center}#area-consultar-encomenda #tabela-conteudo-encomenda tr.tr-erro{border-top:none}#area-consultar-encomenda #tabela-conteudo-encomenda tr.tr-erro td{padding:10px!important}#area-consultar-encomenda #tabela-conteudo-encomenda tr.tr-erro td span{display:block;padding:10px;background-color:#E26666;color:white;text-align:center;position:relative}#area-consultar-encomenda #tabela-conteudo-encomenda tr.tr-erro td span:after{display:block;content:'';position:absolute;top:-5px;left:50%;margin-left:-5px;border:solid 5px transparent;border-bottom-color:#E26666;border-top:0}#area-consultar-encomenda #tabela-conteudo-encomenda tr.tr-erro td span a{color:darkred}#area-consultar-encomenda #tabela-conteudo-encomenda tr.tr-com-erro{border-bottom:none}@media only screen and (max-width:640px){#area-consultar-encomenda #tabela-conteudo-encomenda td{padding-top:0}#area-consultar-encomenda #tabela-conteudo-encomenda .td-quantidade,#area-consultar-encomenda #tabela-conteudo-encomenda .td-controls,#area-consultar-encomenda #tabela-conteudo-encomenda .td-valor-unitario,#area-consultar-encomenda #tabela-conteudo-encomenda .td-valor-total{padding-top:0}#area-consultar-encomenda #tabela-conteudo-encomenda .titulo-label{font-weight:bold;display:inline-block}}@media (max-width:640px){#area-consultar-encomenda #tabela-conteudo-encomenda thead{display:none}#area-consultar-encomenda #tabela-conteudo-encomenda tr{text-align:left;display:block;padding-left:110px;padding-right:40px;padding-top:20px;padding-bottom:20px;position:relative}#area-consultar-encomenda #tabela-conteudo-encomenda#tabela-historico-encomendas tr{padding-left:10px;padding-right:10px}#area-consultar-encomenda #tabela-conteudo-encomenda td{display:block;text-align:left}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-img{width:110px!important;display:inline-block;position:absolute;top:20px;left:0;padding-left:0}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-img a{display:inline-block}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-img img{max-width:100%!important}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-descricao{width:100%;display:inline-block}#area-consultar-encomenda #tabela-conteudo-encomenda td .opcoes{padding-left:0}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-remover{text-align:right;padding:0}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-remover .remover-linha{padding:5px 8px;width:auto;height:auto;-webkit-border-radius:6px;-moz-border-radius:6px;-ms-border-radius:6px;-o-border-radius:6px;border-radius:6px}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-valor-unitario{display:none}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-controls,#area-consultar-encomenda #tabela-conteudo-encomenda td.td-quantidade,#area-consultar-encomenda #tabela-conteudo-encomenda td.td-valor-total{display:inline-block}#area-consultar-encomenda #tabela-conteudo-encomenda td.td-codigo,#area-consultar-encomenda #tabela-conteudo-encomenda td.td-data{display:inline-block}#area-consultar-encomenda #tabela-conteudo-encomenda td .remover-linha span{display:none!important}#area-consultar-encomenda #tabela-conteudo-encomenda td .span-label{display:inline-block;font-weight:bold}#area-consultar-encomenda #tabela-conteudo-encomenda tbody tr{position:relative}#area-consultar-encomenda #tabela-conteudo-encomenda tbody tr .td-remover{top:15px;right:0;position:absolute}}#area-consultar-encomenda #resumo-valores-encomenda{border-bottom:solid 1px #eee;font-size:0.85rem}#area-consultar-encomenda #resumo-valores-encomenda table{width:100%;border:none;margin-bottom:0;font-size:1em}#area-consultar-encomenda #resumo-valores-encomenda table tr{background-color:transparent;font-size:1em}#area-consultar-encomenda #resumo-valores-encomenda table tr td{font-size:1em;line-height:1.4em;padding:0;padding-bottom:10px;background-color:transparent}#area-consultar-encomenda #resumo-valores-encomenda table tr td:nth-child(1){font-weight:bold}#area-consultar-encomenda #resumo-valores-encomenda table tr td:nth-child(2){text-align:right}#area-consultar-encomenda #resumo-valores-encomenda table tr.valor-total-wrapper td{font-size:1rem;font-weight:bold}#area-consultar-encomenda #resumo-valores-encomenda table tr.valor-total-wrapper td #valor-total{font-size:1.5rem}#area-consultar-encomenda #resumo-valores-encomenda table tr.iva-incluido-wrapper{border-bottom:none;font-style:italic}#area-consultar-encomenda #resumo-valores-encomenda table tr.iva-incluido-wrapper td{border-bottom:none;padding-bottom:0}#area-consultar-encomenda #resumo-valores-encomenda table tr.iva-incluido-wrapper span{font-weight:normal;font-size:0.8em}#area-consultar-encomenda #resumo-valores-encomenda{height:auto}#area-consultar-encomenda #conteudo-encomenda{border:solid 1px #eee;margin-bottom:30px;font-size:0.9rem;margin-bottom:0;border:none}#area-consultar-encomenda #conteudo-encomenda .encomenda-item{padding:15px;position:relative;font-size:1em;border-bottom:solid 1px #eee;background-color:#FFF;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}#area-consultar-encomenda #conteudo-encomenda .encomenda-item:last-child{border-bottom:none}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-img-wrapper{max-width:120px;max-height:120px;-webkit-box-flex:0;-webkit-flex:0 0 20%;-moz-box-flex:0;-moz-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;text-align:center}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-img-wrapper a{display:inline-block;height:100%}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-img-wrapper a img{max-height:100%}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo{position:relative;padding-left:10px;padding-right:32px;-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .my-dropdown--options-dropdown{position:absolute;top:-5px;right:0}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .encomenda-item-label{font-weight:600}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .encomenda-item-artigo-nome{font-weight:600;font-size:1.2em;line-height:1.2em;margin-bottom:2px}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .encomenda-item-artigo-nome a{font-size:1em;text-decoration:none}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .encomenda-item-descricao{margin-bottom:0}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .encomenda-item-opcoes{display:block;margin-bottom:5px}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .encomenda-item-qtd-wrapper .qtd{display:inline-block;background-color:white;width:auto;padding-right:20px;height:auto;padding-bottom:4px;padding-top:4px;margin-bottom:0}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .encomenda-item-conteudo-linha{margin-bottom:8px}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-conteudo .encomenda-item-sub-total{font-size:1.2rem;font-weight:600;display:inline-block;text-align:right}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-remover{position:absolute;top:10px;right:10px;height:26px;width:26px;padding:5px;margin:0;background-color:transparent;color:inherit}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-remover svg{width:16px;height:16px;color:inherit}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .encomenda-item-remover svg path{fill:currentColor}#area-consultar-encomenda #conteudo-encomenda .encomenda-item.changed span.sub-total{display:none}#area-consultar-encomenda #conteudo-encomenda .encomenda-item.changed button.refresh-line{display:block}#area-consultar-encomenda #conteudo-encomenda .encomenda-item .preco-antigo{font-size:0.8em;text-decoration:line-through;opacity:0.8}#area-consultar-encomenda #conteudo-encomenda .encomenda-item button.refresh-line{display:none;margin:0;color:white;line-height:20px;padding:2px 10px;font-size:13px}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-logo-wrapper{height:60px;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;justify-content:flex-start}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-logo-wrapper img{max-height:100%}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper{height:60px}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout{height:100%}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout img{max-height:100%}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout img,#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout a{display:inline-block;vertical-align:middle;line-height:1}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout a{text-transform:uppercase;margin-top:5px;margin-right:20px}@media only screen and (max-width:640px){#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout a{display:none}}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout a span{font-size:0.85rem;line-height:1.2;display:inline-block}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout a span.need-help-titulo{font-weight:bold;color:#000}#template-carrinho-wrapper #header-bottom #header-bottom-inner-wrapper #header-bottom-checkout-wrapper #header-checkout a span.need-help-contacto{font-weight:normal;font-size:0.8rem;color:#000}#carrinho-sidebar #carrinho-sidebar-overlay{z-index:1003;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);opacity:0;visibility:hidden;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;transition:all 0.2s ease-out}#carrinho-sidebar #carrinho-sidebar-content{padding:30px;z-index:1004;list-style:none;margin:0;-webkit-transform:translate3d(100%,0,0);-moz-transform:translate3d(100%,0,0);-ms-transform:translate3d(100%,0,0);-o-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform 0.2s ease-out;-moz-transition:-moz-transform 0.2s ease-out;-o-transition:-o-transform 0.2s ease-out;transition:transform 0.2s ease-out;position:fixed;top:0;right:0;bottom:0;background-color:white;height:100%;max-width:440px;width:90%;overflow:auto}#carrinho-sidebar.opened{display:block;visibility:visible;opacity:1;-webkit-transition:opacity 0s ease-out,visibility 0s ease-out;-moz-transition:opacity 0s ease-out,visibility 0s ease-out;-o-transition:opacity 0s ease-out,visibility 0s ease-out;transition:opacity 0s ease-out,visibility 0s ease-out}#carrinho-sidebar.opened #carrinho-sidebar-overlay{visibility:visible;opacity:1}#carrinho-sidebar.opened #carrinho-sidebar-content{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 0.2s ease-out;-moz-transition:-moz-transform 0.2s ease-out;-o-transition:-o-transform 0.2s ease-out;transition:transform 0.2s ease-out}#carrinho-sidebar #carrinho-sidebar-header{position:relative;margin-bottom:30px}#carrinho-sidebar #carrinho-sidebar-header #carrinho-sidebar-btn-close{position:absolute;top:0;right:0;padding:5px;margin:0;background-color:transparent;color:inherit}#carrinho-sidebar #carrinho-sidebar-header #carrinho-sidebar-btn-close svg{width:16px;height:16px;color:inherit}#carrinho-sidebar #carrinho-sidebar-header #carrinho-sidebar-btn-close svg path{color:inherit;fill:currentColor}#carrinho-sidebar #carrinho-sidebar-btn-checkout{width:100%}#carrinho-sidebar #carrinho-sidebar-totais{margin-bottom:40px}#carrinho-sidebar #conteudo-carrinho{border:solid 1px #eee;margin-bottom:30px;font-size:0.9rem}#carrinho-sidebar #conteudo-carrinho .carrinho-item{padding:15px;position:relative;font-size:1em;border-bottom:solid 1px #eee;background-color:#FFF;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}#carrinho-sidebar #conteudo-carrinho .carrinho-item:last-child{border-bottom:none}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper{max-width:120px;max-height:120px;-webkit-box-flex:0;-webkit-flex:0 0 20%;-moz-box-flex:0;-moz-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;text-align:center}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper a{display:inline-block;height:100%}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-img-wrapper a img{max-height:100%}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo{position:relative;padding-left:10px;padding-right:32px;-webkit-box-flex:1;-webkit-flex:1 1 0;-moz-box-flex:1;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .my-dropdown--options-dropdown{position:absolute;top:-5px;right:0}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-label{font-weight:600}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-artigo-nome{font-weight:600;font-size:1.2em;line-height:1.2em;margin-bottom:2px}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-artigo-nome a{font-size:1em;text-decoration:none}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-descricao{margin-bottom:0}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-opcoes{display:block;margin-bottom:5px}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-qtd-wrapper .qtd{display:inline-block;background-color:white;width:auto;padding-right:20px;height:auto;padding-bottom:4px;padding-top:4px;margin-bottom:0}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-conteudo-linha{margin-bottom:8px}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-conteudo .carrinho-item-sub-total{font-size:1.2rem;font-weight:600;display:inline-block;text-align:right}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-remover{position:absolute;top:10px;right:10px;height:26px;width:26px;padding:5px;margin:0;background-color:transparent;color:inherit}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-remover svg{width:16px;height:16px;color:inherit}#carrinho-sidebar #conteudo-carrinho .carrinho-item .carrinho-item-remover svg path{fill:currentColor}#carrinho-sidebar #conteudo-carrinho .carrinho-item.changed span.sub-total{display:none}#carrinho-sidebar #conteudo-carrinho .carrinho-item.changed button.refresh-line{display:block}#carrinho-sidebar #conteudo-carrinho .carrinho-item .preco-antigo{font-size:0.8em;text-decoration:line-through;opacity:0.8}#carrinho-sidebar #conteudo-carrinho .carrinho-item button.refresh-line{display:none;margin:0;color:white;line-height:20px;padding:2px 10px;font-size:13px}.texto-vermelho{color:#D91E18}.texto-azul{color:#66bb6a}.teaxto-laranj{color:#F89406}#area-produto .produto-columns{margin:0 -15px;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex}#area-produto .produto-columns .coluna-1{width:100px;min-width:100px;padding:0 15px}#area-produto .produto-columns .coluna-2,#area-produto .produto-columns .coluna-3{width:calc(50% - 50px);min-width:100px;padding:0 15px}#area-produto .coluna-3{position:relative}#area-produto .coluna-3 h1{padding-right:40px}#area-produto .coluna-3 button.wishlist-button{position:absolute;top:15px;right:15px}#area-produto .coluna-3 button.wishlist-button>span .icon{transition:none;width:2rem;height:2rem}#area-produto .produto-galeria-wrapper{position:relative;padding-bottom:50px}#area-produto .produto-galeria-wrapper .produto-galeria .slider-item-img-wrapper{display:inline-block;position:relative}#area-produto .produto-galeria-wrapper .produto-galeria .slider-arrow{font-family:"Roboto",sans-serif;z-index:1;height:40px;width:20px;position:absolute;z-index:10;top:50%;margin-top:-10px;outline:none;cursor:pointer;background-repeat:no-repeat;background-position:center center;background-color:rgba(0,0,0,0.1)}#area-produto .produto-galeria-wrapper .produto-galeria .slider-arrow:focus{outline:none}#area-produto .produto-galeria-wrapper .produto-galeria .slider-arrow:before{content:""}#area-produto .produto-galeria-wrapper .produto-galeria .slider-arrow.slider-arrow-prev{left:0;background-image:url("../../multimedia/imagem/left-arrow.svg")}#area-produto .produto-galeria-wrapper .produto-galeria .slider-arrow.slider-arrow-next{right:0;background-image:url("../../multimedia/imagem/right-arrow.svg")}#area-produto .produto-galeria-wrapper .produto-galeria .zoom-wrapper{position:absolute;top:0;left:0;right:0;bottom:0;height:auto!important}#area-produto .produto-galeria-wrapper .produto-galeria .zoom-wrapper .zoom-target{opacity:1;height:100%;width:100%;cursor:url("../../multimedia/imagem/cursor.png"),auto}#area-produto .produto-galeria-wrapper .produto-galeria .zoom-wrapper .zoom-target>div{position:absolute;top:0;left:0;right:0;bottom:0;background-repeat:no-repeat;background-position:top center;background-size:contain}#area-produto .produto-galeria-wrapper .produto-galeria .zoom-wrapper .zoom-target .zoom-img{display:none;position:absolute;top:0;right:0;left:0;backface-visibility:hidden}#area-produto .produto-galeria-wrapper .produto-galeria .zoom-wrapper .zoom-target.zoomed .zoom-img{display:block}#area-produto .produto-galeria-wrapper .slider-dots{position:absolute;bottom:0;left:0;right:0;text-align:center;margin-bottom:0}#area-produto .produto-galeria-wrapper .slider-dots .slider-dot{height:10px;width:10px;display:inline-block;box-shadow:inset 0 0 0 1px #000}#area-produto .produto-galeria-wrapper .slider-dots .slider-dot.slider-dot-active{-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none;box-shadow:inset 0 0 0 8px #000}#area-produto .produto-galeria-thumbs{max-height:calc(4 * 80px);height:100%}#area-produto .produto-galeria-thumbs .thumb-item{cursor:pointer}#area-produto .produto-galeria-thumbs,#area-produto .produto-galeria{opacity:0;-webkit-transition:opacity 0.2s ease;-moz-transition:opacity 0.2s ease;-o-transition:opacity 0.2s ease;transition:opacity 0.2s ease}@media only screen and (min-width:1025px){#area-produto .area-produto-wrapper .produto-columns .coluna-1 .thumb-item{margin-bottom:10px}#area-produto .area-produto-wrapper .produto-columns .coluna-2,#area-produto .area-produto-wrapper .produto-columns .coluna-3{width:calc(50% - 50px);min-width:100px;padding:0 15px}}@media only screen and (max-width:1024px){#area-produto .area-produto-wrapper .produto-columns{-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}#area-produto .area-produto-wrapper .produto-columns .coluna-1{-webkit-box-ordinal-group:3;-webkit-order:2;-moz-order:2;-ms-flex-order:2;order:2}#area-produto .area-produto-wrapper .produto-columns .coluna-1 .thumb-item{display:inline-block}#area-produto .area-produto-wrapper .produto-columns .coluna-2{width:calc(100% - 100px)}#area-produto .area-produto-wrapper .produto-columns .coluna-3{width:100%;-webkit-box-ordinal-group:4;-webkit-order:3;-moz-order:3;-ms-flex-order:3;order:3}#area-produto .produto-galeria .slider-item .img{width:100%}}@media only screen and (max-width:640px){#area-produto .area-produto-wrapper .produto-columns{-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}#area-produto .area-produto-wrapper .produto-columns .coluna-1{display:none}#area-produto .area-produto-wrapper .produto-columns .coluna-2{width:100%;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-order:1;-ms-flex-order:1;order:1}#area-produto .area-produto-wrapper .produto-columns .coluna-3{width:100%;-webkit-box-ordinal-group:4;-webkit-order:3;-moz-order:3;-ms-flex-order:3;order:3}}#area-produto .produto-titulo{text-align:left}#area-produto .preco-antigo{font-size:0.8em;text-decoration:line-through}#area-produto .qtd-wrapper{display:inline-block}#area-produto .qtd-wrapper button,#area-produto .qtd-wrapper input{display:inline-block}#area-produto .qtd-wrapper input{max-width:50px}#area-produto .stock-unavailable{display:inline-block;color:#FF544C}.produto-item-wrapper{margin-bottom:20px}.produto-item-wrapper .produto-item{text-align:center;position:relative;display:block}.produto-item-wrapper .produto-item a{text-decoration:none;text-align:center}.produto-item-wrapper .produto-item a:hover,.produto-item-wrapper .produto-item a:focus{color:inherit}.produto-item-wrapper .produto-item .img-outer-wrapper{position:relative;display:block}.produto-item-wrapper .produto-item .img-outer-wrapper .wishlist-button{position:absolute;bottom:5px;right:5px;margin-bottom:0;padding:10px 8px 4px 8px}.produto-item-wrapper .produto-item .img-outer-wrapper .spacer{padding-top:100%}.produto-item-wrapper .produto-item .img-outer-wrapper .img-wrapper{display:block;overflow:hidden;padding-top:100%;position:relative}.produto-item-wrapper .produto-item .img-outer-wrapper .img-wrapper img{position:absolute;top:0;left:0;width:100%;filter:blur(8px);-webkit-transition:filter 0.2s ease;-moz-transition:filter 0.2s ease;-o-transition:filter 0.2s ease;transition:filter 0.2s ease}.produto-item-wrapper .produto-item .img-outer-wrapper .img-wrapper img.lazy-loaded{filter:none}.produto-item-wrapper .produto-item .esgotado{color:#1794c7;display:inline-block;padding:5px 10px;line-height:1;margin-left:8px;position:absolute;top:5px;right:5px;background-color:#948f8f;color:#FFF;text-transform:uppercase;font-weight:600;font-size:13px}.produto-item-wrapper .produto-item .novo{position:absolute;top:5px;right:5px;color:#1794c7;display:inline-block;background-color:#1794c7;color:#FFF;padding:5px 10px;line-height:1;margin-left:8px;font-weight:400;text-transform:uppercase;font-weight:600;font-size:13px}.produto-item-wrapper .produto-item h4{margin-bottom:5px;text-align:center;line-height:1.2;padding-left:5px;padding-right:5px}.produto-item-wrapper .produto-item .preco-wrapper{display:inline-block;text-align:center;font-size:15px}.produto-item-wrapper .produto-item .preco-wrapper .preco-antigo{text-decoration:line-through;margin-right:3px;font-size:0.8em}.produto-item-wrapper .produto-item .preco-wrapper .preco-novo{margin-left:3px}.produto-item-wrapper .produto-item .preco-wrapper .desde{font-weight:300;font-size:0.8em;color:#888}button.wishlist-button{background-color:transparent;border-color:transparent;color:#1794c7;padding:0;margin-bottom:0}button.wishlist-button:hover,button.wishlist-button:focus{background-color:transparent;border-color:transparent;color:#1794c7}button.wishlist-button.add-to-wishlist .remove-from-wishlist-icon{display:none}button.wishlist-button.remove-from-wishlist .add-to-wishlist-icon{display:none}button.wishlist-button.loading{opacity:0.6}button.wishlist-button .icon{transition:none;width:1.5rem;height:1.5rem}.wrapper-pagamento-cancelado{margin-top:30px}#area-shop-inner #filtragem label{font-weight:normal}#area-shop-inner #filtragem ul{list-style:none;padding-left:0;margin-left:0}#area-shop-inner #filtragem .filtragem-subtitulo{position:relative}#area-shop-inner #filtragem .remover-filtro{text-decoration:none;display:block;position:absolute;right:0;top:50%;margin-top:-14px}#area-shop-inner #filtragem .remover-filtro span{vertical-align:middle;text-transform:uppercase;font-size:12px;display:inline-block;color:#BBB}#area-shop-inner #filtragem .remover-filtro .icon{margin-left:3px}#area-shop-inner #filtragem .remover-filtro .icon svg{height:10px;width:10px;color:#397a9a}#area-shop-inner #filtragem .remover-filtro .icon svg g,#area-shop-inner #filtragem .remover-filtro .icon svg path{fill:#397a9a}@media only screen and (max-width:1024px){#area-shop-inner #filtragem #abrir-filtragem-mobile{z-index:1;position:relative;left:0;top:0;margin-bottom:10px;display:inline-block;text-decoration:none;float:right}#area-shop-inner #filtragem #abrir-filtragem-mobile.has-filters:before{content:attr(data-num-filters);display:block;position:absolute;top:-3px;left:-5px;width:12px;height:12px;line-height:12px;border-radius:12px;background-color:#1794c7;color:white;z-index:10;font-size:8px;padding:1px;text-align:center}#area-shop-inner #filtragem #abrir-filtragem-mobile .icon{display:inline-block;cursor:pointer;width:24px;height:24px}#area-shop-inner #filtragem #abrir-filtragem-mobile .icon img{position:absolute}#area-shop-inner #filtragem #abrir-filtragem-mobile .icon svg{fill:#86d2f1}#area-shop-inner #filtragem #container-filtragem .filtragem-titulo{font-size:28px}#area-shop-inner #filtragem #container-filtragem #filtragem-container-footer{position:absolute;bottom:0;z-index:10;padding:15px;right:0;left:0;background-color:white}#area-shop-inner #filtragem #container-filtragem #filtragem-container-footer button{margin-bottom:0}#area-shop-inner #filtragem #container-filtragem #filtragem-overlay{z-index:1003;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);opacity:0;visibility:hidden;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;transition:all 0.2s ease-out}#area-shop-inner #filtragem #container-filtragem .container-filtragem-inner{padding:50px 20px 20px;position:fixed;background-color:#FFF;top:0;right:0;bottom:0;z-index:1000000;max-width:300px;width:100%;-webkit-transition:-webkit-transform 0.2s ease-out;-moz-transition:-moz-transform 0.2s ease-out;-o-transition:-o-transform 0.2s ease-out;transition:transform 0.2s ease-out;-webkit-transform:translate3d(100%,0,0);-moz-transform:translate3d(100%,0,0);-ms-transform:translate3d(100%,0,0);-o-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}#area-shop-inner #filtragem #container-filtragem .container-filtragem-inner ._close{opacity:0;visibility:hidden;position:absolute;top:10px;right:20px;display:block;color:#000;width:30px;height:30px;padding:0;margin:0;background:transparent}#area-shop-inner #filtragem #container-filtragem .container-filtragem-inner ._close:before,#area-shop-inner #filtragem #container-filtragem .container-filtragem-inner ._close:after{background-color:#000;content:'';position:absolute;height:2px;width:100%;left:0;top:50%;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;transition:transform 0.25s}#area-shop-inner #filtragem #container-filtragem .container-filtragem-inner ._close:before{-webkit-transform:rotate3d(0,0,1,45deg);-moz-transform:rotate3d(0,0,1,45deg);-ms-transform:rotate3d(0,0,1,45deg);-o-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg)}#area-shop-inner #filtragem #container-filtragem .container-filtragem-inner ._close:after{-webkit-transform:rotate3d(0,0,1,-45deg);-moz-transform:rotate3d(0,0,1,-45deg);-ms-transform:rotate3d(0,0,1,-45deg);-o-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg)}#area-shop-inner #filtragem #container-filtragem .container-filtragem-inner .filtragem-inner-wrapper{overflow:auto;position:absolute;top:50px;bottom:76px;right:0;left:0;padding-left:20px;padding-right:20px}#area-shop-inner #filtragem #container-filtragem.open #filtragem-overlay{opacity:1;visibility:visible}#area-shop-inner #filtragem #container-filtragem.open .container-filtragem-inner{opacity:1;visibility:visible;-webkit-transition:opacity 0s ease-out,visibility 0s ease-out,-webkit-transform 0.3s ease-out;-webkit-transition-delay:0s,0s,0s;-moz-transition:opacity 0s ease-out 0s,visibility 0s ease-out 0s,-moz-transform 0.3s ease-out 0s;-o-transition:opacity 0s ease-out 0s,visibility 0s ease-out 0s,-o-transform 0.3s ease-out 0s;transition:opacity 0s ease-out 0s,visibility 0s ease-out 0s,transform 0.3s ease-out 0s;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}#area-shop-inner #filtragem #container-filtragem.open .container-filtragem-inner ._close{opacity:1;visibility:visible}}@media only screen and (min-width:1025px){#area-shop-inner #filtragem #filtrar-produtos{display:none}#area-shop-inner #filtragem ._close{display:none}#area-shop-inner #filtragem #abrir-filtragem-mobile,#area-shop-inner #filtragem #container-filtragem-mobile{display:none}}.my-cart-link{vertical-align:middle}.my-cart-link .my-cart{display:inline-block;vertical-align:middle;position:relative;width:10px;height:19px}.my-cart-link .my-cart .my-cart__count-wrapper{position:absolute;top:-9.5px;right:0;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;vertical-align:middle;min-width:19px;height:19px;line-height:19px;border-radius:60px;background-color:#1794c7;color:#FFF;display:inline-block;text-align:center;font-size:0.8em}.my-cart-link:hover .my-cart .my-cart__count-wrapper{background-color:rgba(23,148,199,0.9);color:#FFF}body{font-family:"Roboto",sans-serif;height:100%;-webkit-font-smoothing:antialiased}h1,.h1{font-size:2.488rem}h2,.h2{font-size:2.074rem}h3,.h3{font-size:1.728rem}h4,.h4{font-size:1.44rem}h5,.h5{font-size:1.2rem}h6,.h6{font-size:1rem}@media only screen and (min-width:641px){h1,.h1{font-size:3.052rem}h2,.h2{font-size:2.441rem}h3,.h3{font-size:1.953rem}h4,.h4{font-size:1.563rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}}@media only screen and (min-width:1025px){h1,.h1{font-size:3.713rem}h2,.h2{font-size:2.856rem}h3,.h3{font-size:2.197rem}h4,.h4{font-size:1.69rem}h5,.h5{font-size:1.3rem}h6,.h6{font-size:1rem}}.foundation-data-attribute-namespace{font-family:false}article,aside,footer,header,hgroup,main,nav,section{display:block}.clear{clear:both}.relative{position:relative}.centered,.text-center,.center{text-align:center}.text-align-right{text-align:right}.text-align-left{text-align:left}.display-block{display:block}.hidden{display:none}.width-100perc{width:100%}.valign-middle{vertical-align:middle}.float-left{float:left}.float-right{float:right}a{color:#1794c7}a:hover{color:#1aa5de}.noscriptMessage{font-family:sans-serif;font-size:13px;text-align:center;padding:8px 0;background-color:#FFF9D7;color:#000;font-weight:bold}.noscriptMessage a{text-decoration:none;color:#3B5998}.icon{display:inline-block;display:inline-block;width:1em;height:1em;min-width:1em;position:relative}.icon svg{position:absolute;top:0;left:0;width:100%;height:100%}.icon svg *{fill:currentColor}.notie-container .notie-textbox-inner a{color:#fff}.margin-top-0{margin-top:0}.margin-bottom-0{margin-bottom:0}.margin-right-0{margin-right:0}.margin-left-0{margin-left:0}.padding-top-0{padding-top:0}.padding-bottom-0{padding-bottom:0}.padding-right-0{padding-right:0}.padding-left-0{padding-left:0}.margin-top-5{margin-top:5px}.margin-bottom-5{margin-bottom:5px}.margin-right-5{margin-right:5px}.margin-left-5{margin-left:5px}.padding-top-5{padding-top:5px}.padding-bottom-5{padding-bottom:5px}.padding-right-5{padding-right:5px}.padding-left-5{padding-left:5px}.margin-top-10{margin-top:10px}.margin-bottom-10{margin-bottom:10px}.margin-right-10{margin-right:10px}.margin-left-10{margin-left:10px}.padding-top-10{padding-top:10px}.padding-bottom-10{padding-bottom:10px}.padding-right-10{padding-right:10px}.padding-left-10{padding-left:10px}.margin-top-15{margin-top:15px}.margin-bottom-15{margin-bottom:15px}.margin-right-15{margin-right:15px}.margin-left-15{margin-left:15px}.padding-top-15{padding-top:15px}.padding-bottom-15{padding-bottom:15px}.padding-right-15{padding-right:15px}.padding-left-15{padding-left:15px}.margin-top-20{margin-top:20px}.margin-bottom-20{margin-bottom:20px}.margin-right-20{margin-right:20px}.margin-left-20{margin-left:20px}.padding-top-20{padding-top:20px}.padding-bottom-20{padding-bottom:20px}.padding-right-20{padding-right:20px}.padding-left-20{padding-left:20px}.margin-top-25{margin-top:25px}.margin-bottom-25{margin-bottom:25px}.margin-right-25{margin-right:25px}.margin-left-25{margin-left:25px}.padding-top-25{padding-top:25px}.padding-bottom-25{padding-bottom:25px}.padding-right-25{padding-right:25px}.padding-left-25{padding-left:25px}.margin-top-30{margin-top:30px}.margin-bottom-30{margin-bottom:30px}.margin-right-30{margin-right:30px}.margin-left-30{margin-left:30px}.padding-top-30{padding-top:30px}.padding-bottom-30{padding-bottom:30px}.padding-right-30{padding-right:30px}.padding-left-30{padding-left:30px}.margin-top-35{margin-top:35px}.margin-bottom-35{margin-bottom:35px}.margin-right-35{margin-right:35px}.margin-left-35{margin-left:35px}.padding-top-35{padding-top:35px}.padding-bottom-35{padding-bottom:35px}.padding-right-35{padding-right:35px}.padding-left-35{padding-left:35px}.margin-top-40{margin-top:40px}.margin-bottom-40{margin-bottom:40px}.margin-right-40{margin-right:40px}.margin-left-40{margin-left:40px}.padding-top-40{padding-top:40px}.padding-bottom-40{padding-bottom:40px}.padding-right-40{padding-right:40px}.padding-left-40{padding-left:40px}.margin-top-45{margin-top:45px}.margin-bottom-45{margin-bottom:45px}.margin-right-45{margin-right:45px}.margin-left-45{margin-left:45px}.padding-top-45{padding-top:45px}.padding-bottom-45{padding-bottom:45px}.padding-right-45{padding-right:45px}.padding-left-45{padding-left:45px}.margin-top-50{margin-top:50px}.margin-bottom-50{margin-bottom:50px}.margin-right-50{margin-right:50px}.margin-left-50{margin-left:50px}.padding-top-50{padding-top:50px}.padding-bottom-50{padding-bottom:50px}.padding-right-50{padding-right:50px}.padding-left-50{padding-left:50px}.margin-top-55{margin-top:55px}.margin-bottom-55{margin-bottom:55px}.margin-right-55{margin-right:55px}.margin-left-55{margin-left:55px}.padding-top-55{padding-top:55px}.padding-bottom-55{padding-bottom:55px}.padding-right-55{padding-right:55px}.padding-left-55{padding-left:55px}.margin-top-60{margin-top:60px}.margin-bottom-60{margin-bottom:60px}.margin-right-60{margin-right:60px}.margin-left-60{margin-left:60px}.padding-top-60{padding-top:60px}.padding-bottom-60{padding-bottom:60px}.padding-right-60{padding-right:60px}.padding-left-60{padding-left:60px}.margin-top-65{margin-top:65px}.margin-bottom-65{margin-bottom:65px}.margin-right-65{margin-right:65px}.margin-left-65{margin-left:65px}.padding-top-65{padding-top:65px}.padding-bottom-65{padding-bottom:65px}.padding-right-65{padding-right:65px}.padding-left-65{padding-left:65px}.margin-top-70{margin-top:70px}.margin-bottom-70{margin-bottom:70px}.margin-right-70{margin-right:70px}.margin-left-70{margin-left:70px}.padding-top-70{padding-top:70px}.padding-bottom-70{padding-bottom:70px}.padding-right-70{padding-right:70px}.padding-left-70{padding-left:70px}.margin-top-75{margin-top:75px}.margin-bottom-75{margin-bottom:75px}.margin-right-75{margin-right:75px}.margin-left-75{margin-left:75px}.padding-top-75{padding-top:75px}.padding-bottom-75{padding-bottom:75px}.padding-right-75{padding-right:75px}.padding-left-75{padding-left:75px}.margin-top-80{margin-top:80px}.margin-bottom-80{margin-bottom:80px}.margin-right-80{margin-right:80px}.margin-left-80{margin-left:80px}.padding-top-80{padding-top:80px}.padding-bottom-80{padding-bottom:80px}.padding-right-80{padding-right:80px}.padding-left-80{padding-left:80px}.margin-top-85{margin-top:85px}.margin-bottom-85{margin-bottom:85px}.margin-right-85{margin-right:85px}.margin-left-85{margin-left:85px}.padding-top-85{padding-top:85px}.padding-bottom-85{padding-bottom:85px}.padding-right-85{padding-right:85px}.padding-left-85{padding-left:85px}.margin-top-90{margin-top:90px}.margin-bottom-90{margin-bottom:90px}.margin-right-90{margin-right:90px}.margin-left-90{margin-left:90px}.padding-top-90{padding-top:90px}.padding-bottom-90{padding-bottom:90px}.padding-right-90{padding-right:90px}.padding-left-90{padding-left:90px}.margin-top-95{margin-top:95px}.margin-bottom-95{margin-bottom:95px}.margin-right-95{margin-right:95px}.margin-left-95{margin-left:95px}.padding-top-95{padding-top:95px}.padding-bottom-95{padding-bottom:95px}.padding-right-95{padding-right:95px}.padding-left-95{padding-left:95px}.margin-top-100{margin-top:100px}.margin-bottom-100{margin-bottom:100px}.margin-right-100{margin-right:100px}.margin-left-100{margin-left:100px}.padding-top-100{padding-top:100px}.padding-bottom-100{padding-bottom:100px}.padding-right-100{padding-right:100px}.padding-left-100{padding-left:100px}.margin-top-150{margin-top:150px}.margin-bottom-150{margin-bottom:150px}.margin-right-150{margin-right:150px}.margin-left-150{margin-left:150px}.padding-top-150{padding-top:150px}.padding-bottom-150{padding-bottom:150px}.padding-right-150{padding-right:150px}.padding-left-150{padding-left:150px}.margin-top-200{margin-top:200px}.margin-bottom-200{margin-bottom:200px}.margin-right-200{margin-right:200px}.margin-left-200{margin-left:200px}.padding-top-200{padding-top:200px}.padding-bottom-200{padding-bottom:200px}.padding-right-200{padding-right:200px}.padding-left-200{padding-left:200px}.margin-top-300{margin-top:300px}.margin-bottom-300{margin-bottom:300px}.margin-right-300{margin-right:300px}.margin-left-300{margin-left:300px}.padding-top-300{padding-top:300px}.padding-bottom-300{padding-bottom:300px}.padding-right-300{padding-right:300px}.padding-left-300{padding-left:300px}html,body{margin:0;height:auto}html ::-webkit-scrollbar,body ::-webkit-scrollbar{width:17px;border-radius:50px}html ::-webkit-scrollbar-track,body ::-webkit-scrollbar-track{background:#efefef}html ::-webkit-scrollbar-thumb,body ::-webkit-scrollbar-thumb{background:#127299}html ::-webkit-scrollbar-thumb:hover,body ::-webkit-scrollbar-thumb:hover{background:#0c506c;transition:0.3s}html{overflow-x:hidden;scroll-behavior:smooth}h1,h2,h3,h4,h5{font-weight:300;color:#1794c7;text-transform:uppercase}h1{}h2{}h5{font-weight:400}h5>span.small{font-size:0.8em}a{color:#5d5d5d;text-decoration:underline}a.azul{color:#1794c7!important}a:hover{color:#174f70}ul li{color:#343434}.azul{color:#1794c7}.tresdways{font-weight:400;font-size:20px}p{color:#343434}p.destaque{}p.destaque.azul{color:#1794c7}.font-size-20{font-size:20px}.font-weight-400{font-weight:400}.font-weight-500{font-weight:400}.alerta{position:relative;padding:5px 15px;border:1px solid transparent;border-radius:5px;vertical-align:middle}.alerta.padding-large{padding:15px 15px}.alerta.alerta-grey{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alerta.alerta-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alerta.alerta-error{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alerta.alerta-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}span.alerta{display:inline-block}.pagination{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;vertical-align:middle}.pagination>a{display:inline-block;line-height:1em;min-width:1em;text-decoration:none;text-align:center;vertical-align:middle;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center}.pagination>a>span.icon{width:0.7em;height:0.7em;vertical-align:middle;display:inline-block}.pagination>span{display:inline-block;line-height:1em;min-width:1em;text-align:center;vertical-align:middle}.pagination>span.current{color:#1794c7}#page-loader{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center;position:fixed;z-index:999999;top:0;left:0;height:100vh;width:100vw;background:#EEE;-webkit-animation-delay:.25s;animation-delay:.25s;-webkit-animation-duration:600ms;animation-duration:600ms;-webkit-animation-timing-function:cubic-bezier(0.19,1,0.22,1);animation-timing-function:cubic-bezier(0.19,1,0.22,1);-webkit-animation-name:pageLoaderAnimationOut;animation-name:pageLoaderAnimationOut;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-backface-visibility:hidden;backface-visibility:hidden}#page-loader.initial-state{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-animation-name:none;animation-name:none}#page-loader.initial-state #page-loader-logo-bg{opacity:1}#page-loader.initial-state~#header #header-inner{opacity:0;-webkit-transform:translate3d(0,-52px,0);-moz-transform:translate3d(0,-52px,0);-ms-transform:translate3d(0,-52px,0);-o-transform:translate3d(0,-52px,0);transform:translate3d(0,-52px,0)}#page-loader.is-active{-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-name:pageLoaderAnimationIn;animation-name:pageLoaderAnimationIn}#page-loader.is-active~#header #header-inner{opacity:0;-webkit-transition:all 0s ease;-webkit-transition-delay:0.5s;-moz-transition:all 0s ease 0.5s;-o-transition:all 0s ease 0.5s;transition:all 0s ease 0.5s;-webkit-transform:translate3d(0,-52px,0);-moz-transform:translate3d(0,-52px,0);-ms-transform:translate3d(0,-52px,0);-o-transform:translate3d(0,-52px,0);transform:translate3d(0,-52px,0)}#page-loader.is-active #page-loader-logo-bg{opacity:1;-webkit-transition:opacity 0.3s linear;-webkit-transition-delay:0.2s;-moz-transition:opacity 0.3s linear 0.2s;-o-transition:opacity 0.3s linear 0.2s;transition:opacity 0.3s linear 0.2s}header#header{background-color:#FFF}header#header #header-inner{transition:transform 0.2s ease;background-color:#FFF;position:relative;z-index:900;width:100%;left:0;top:0}header#header.header-with-headroom #header-inner{position:fixed}header#header a{text-decoration:none}header#header #header-top{padding-top:5px;padding-bottom:5px;background-color:#DDD;position:relative;z-index:2}header#header #header-top #header-top-right{text-align:right}header#header #header-bottom{min-height:90px;position:relative;z-index:1}header#header #header-bottom #header-bottom-inner-wrapper{width:100%;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between}header#header #header-bottom #header-bottom-inner-wrapper #header-bottom-logo-wrapper{}header#header #header-bottom #header-bottom-inner-wrapper #header-bottom-logo-wrapper #logo{display:inline-block;max-width:250px}header#header.headroom--not-top #header-bottom{box-shadow:0 0 12px rgba(0,0,0,0.2)}header#header.headroom--pinned #header-inner{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}header#header.headroom--pinned.headroom--not-top #header-inner{min-height:1px!important;z-index:1000;position:fixed;top:0;left:0;right:0}header#header.headroom--unpinned #header-inner{}header#header .btn-style-2{background-color:#1794c7;color:white!important;padding-top:10px;padding-bottom:10px;padding-left:15px!important;padding-right:15px!important;margin-bottom:0}.texto-branco{color:white}.dialog{max-width:800px}.dialog .fancybox-close-small{background-color:transparent}.dialog .fancybox-close-small:hover{background-color:transparent}.dialog .fancybox-close-small:hover:after{color:black!important;background:transparent}.dialog-solicitar-mascaras{padding:60px 0 0 0;padding-top:0;padding-bottom:0;width:90%;height:83%;margin-bottom:0!important;margin-top:0!important;overflow:hidden!important}.dialog-solicitar-mascaras .fancybox-close-small{background-color:transparent}.dialog-solicitar-mascaras .fancybox-close-small:hover{background-color:transparent}.dialog-solicitar-mascaras .fancybox-close-small:hover:after{color:black!important;background:transparent}.dialog-solicitar-mascaras iframe{border:0;width:100%;height:100%}.row-flex{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#main-container{min-height:300px}#main-container .template-editable a:not(.button){color:#5d5d5d;text-decoration:underline;transition:0.2s ease}#main-container .template-editable a:not(.button):hover{color:#1794c7;text-decoration:underline}#main-container .w1920{max-width:1850px;margin-left:auto;margin-right:auto}#main-container .content-outer-wrapper{padding-bottom:20px}#main-container #home-wrapper .top-content-inner{margin-bottom:0}#main-container .swiper-pagination{display:inline-block;text-align:left}#main-container .swiper-pagination .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{width:10px;height:10px}#main-container .swiper-pagination .swiper-pagination-bullet{width:13px;height:13px;background:#1794c7}#main-container .swiper-pagination .swiper-pagination-bullet-active-next{margin-left:2px;transform:scale(0.75)}#main-container .swiper-pagination .swiper-pagination-bullet-active-prev{margin-right:2px;transform:scale(0.75)}#main-container .swiper-pagination .swiper-pagination-bullet-active-next-next,#main-container .swiper-pagination .swiper-pagination-bullet-active-prev-prev{transform:scale(0.5)}#main-container .wrapper-btn-saber-mais{position:absolute;text-align:center;bottom:0;right:0;left:0}#main-container #area-home{}#main-container #area-home .section{padding:100px 0;text-align:center}#main-container #area-home .wrapper-texto-topo{margin-top:15px;width:100%;margin:0;display:inline-block;text-align:center}#main-container #area-home .wrapper-pessoas-solidarias{background-color:#f7f8fb}#main-container #area-home .wrapper-pessoas-solidarias ul{margin-top:20px;margin-bottom:20px;margin-left:auto;margin-right:auto;max-width:880px;text-align:center;list-style:none}#main-container #area-home .wrapper-pessoas-solidarias ul li{padding-bottom:7px}#main-container #area-home .wrapper-pessoas-solidarias .button{margin-top:10px}#main-container #area-home .wrapper-numero-mascaras{padding:60px 0;background-color:#1794c7;z-index:0;position:relative;display:block;width:100%;margin:0;display:inline-block;text-align:center}#main-container #area-home .wrapper-numero-mascaras:after{opacity:0.5;top:0;left:0;bottom:0;right:0;position:absolute;z-index:-1;content:"";background-image:#1794c7;background-size:cover;background-position:center center;background-repeat:no-repeat}#main-container #area-home .wrapper-numero-mascaras strong,#main-container #area-home .wrapper-numero-mascaras b{font-weight:500}#main-container #area-home .wrapper-numero-mascaras .wrapper-data-ultima-alteracao p{margin-top:40px;text-transform:uppercase;margin-bottom:0;color:white}#main-container #area-home .wrapper-numero-mascaras img{max-width:130px}#main-container #area-home .wrapper-numero-mascaras h3,#main-container #area-home .wrapper-numero-mascaras h4,#main-container #area-home .wrapper-numero-mascaras h5,#main-container #area-home .wrapper-numero-mascaras h2{color:white}#main-container #area-home .wrapper-numero-mascaras h5{font-weight:300;text-align:left}#main-container #area-home .wrapper-numero-mascaras .numero-mascaras .counting{font-size:105px}#main-container #area-home .wrapper-numero-mascaras .counting,#main-container #area-home .wrapper-numero-mascaras .capacidade-producao-atual{color:white;font-size:80px;font-weight:500}#main-container #area-home .wrapper-numero-mascaras .button.ghost{color:#FFF;border-color:#FFF}#main-container #area-home .wrapper-numero-mascaras .button.ghost:hover,#main-container #area-home .wrapper-numero-mascaras .button.ghost:focus{background-color:#FFF;color:#1794c7}#main-container #area-home .wrapper-empresas{text-align:center;margin-top:80px;margin-bottom:20px}#main-container #area-home .wrapper-empresas ul li img{filter:url("data:image/svg+xml;utf8,<svg><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);filter:grayscale(100%);filter:gray}#main-container #area-home .wrapper-empresas ul li img:hover{-webkit-filter:none;-moz-filter:none;-ms-filter:none;filter:none}#main-container #area-home .wrapper-empresas .wrapper-logo-empresas{max-width:1550px;margin-right:auto;margin-left:auto}#main-container #area-home .content-outer-wrapper{padding-top:0}#main-container #area-home .testemunho-wrapper{width:100%}#main-container #area-home .testemunho-wrapper h2,#main-container #area-home .testemunho-wrapper h3,#main-container #area-home .testemunho-wrapper h4{}#main-container #area-home .testemunho-wrapper .span-nome-testemunho{margin-bottom:0;color:black;font-size:25px;font-weight:500;margin-top:10px}#main-container #area-home .testemunho-wrapper .span-funcao-testemunho{color:black}#main-container #area-home .testemunho-wrapper .slider-testemunhos{}#main-container #area-home .testemunho-wrapper .slider-testemunhos .swiper-slide-duplicate-prev,#main-container #area-home .testemunho-wrapper .slider-testemunhos .swiper-slide-duplicate-next{display:none}#main-container #area-home .testemunho-wrapper .slider-testemunhos .swiper-slide{padding:10px 0}#main-container #area-home .testemunho-wrapper .row-slider{position:relative}#main-container #area-home .testemunho-wrapper .row-slider .coluna-setas-slider{position:absolute;top:calc(50% + 35px)}#main-container #area-home .testemunho-wrapper .row-slider .swiper-pagination{margin-top:10px;left:calc(50% - 30px)}#main-container #area-home .testemunho-wrapper .row-slider .wrapper-botoes-slider{position:relative;width:100%;height:47px}#main-container #area-home .testemunho-wrapper .row-slider .wrapper-botoes-slider .swiper-button-prev,#main-container #area-home .testemunho-wrapper .row-slider .wrapper-botoes-slider .swiper-button-next{background-size:cover}#main-container #area-home .testemunho-wrapper .row-slider .wrapper-botoes-slider .swiper-button-prev{background-image:url("../../multimedia/imagem/back.svg")}#main-container #area-home .testemunho-wrapper .row-slider .wrapper-botoes-slider .swiper-button-next{background-image:url("../../multimedia/imagem/next.svg")}#main-container #area-home .wrapper-molde *{color:#fff}#main-container #area-home .wrapper-molde .button.ghost{color:#FFF;border-color:#FFF}#main-container #area-home .wrapper-molde .button.ghost:hover,#main-container #area-home .wrapper-molde .button.ghost:focus{background-color:#FFF;color:#1794c7}#main-container #area-home .wrapper-molde .info-square{padding:20px;border-radius:3px;border:1px solid #5dbae1}@media only screen and (max-width:640px){#main-container #area-home .wrapper-molde .info-square{margin-top:20px}}#main-container #area-home .wrapper-molde .numero-viseiras span.numero{display:block;font-size:90px;line-height:100px}#main-container #area-home .wrapper-molde .numero-viseiras span.viseiras{display:inline-block;font-size:19px}#main-container #area-home .wrapper-molde .impressao-3d{text-transform:uppercase;font-weight:500;font-size:29px;line-height:1.2}#main-container #area-home .botao-parceiro{min-width:150px;max-width:150px;display:inline-block;text-decoration:none}#main-container #area-home .botao-parceiro .icone{padding-top:100%;border:1px solid #1794c7;background-repeat:no-repeat;background-position:center 45px;-o-background-size:75% auto;-webkit-background-size:75% auto;-moz-background-size:75% auto;background-size:75% auto;transition:0.1s linear}#main-container #area-home .botao-parceiro.link:hover{color:#1794c7}#main-container #area-home .botao-parceiro.link:hover .icone{box-shadow:1px 1px #0f6182,2px 2px #0f6182,3px 3px #0f6182;transform:translateX(-2px)}#main-container #area-home .botao-parceiro .info{margin-top:10px}#main-container #area-home .botao-parceiro .info .titulo{margin-bottom:10px;font-weight:500;line-height:1.2;text-transform:uppercase}#main-container #area-home .botao-parceiro .info .preco-antigo{font-size:0.8rem;text-decoration:line-through;margin-right:10px}#main-container #area-home .botao-parceiro .info .especial{font-size:0.8rem}#main-container #area-home .botao-parceiro .titulo{color:#5d5d5d}#main-container #area-home .borda-azul{border:1px solid #c5e4f1;padding:60px;margin-top:50px}#main-container #area-home .videos-wrapper .row-slider{position:relative}#main-container #area-home .videos-wrapper .row-slider .coluna-setas-slider{position:absolute;top:calc(50% - 22px)}#main-container #area-home .videos-wrapper .row-slider .swiper-pagination{margin-top:10px;left:calc(50% - 30px)}#main-container #area-home .videos-wrapper .row-slider .wrapper-botoes-slider{position:relative;width:100%;height:47px}#main-container #area-home .videos-wrapper .row-slider .wrapper-botoes-slider .swiper-button-prev,#main-container #area-home .videos-wrapper .row-slider .wrapper-botoes-slider .swiper-button-next{background-size:cover}#main-container #area-home .videos-wrapper .row-slider .wrapper-botoes-slider .swiper-button-prev{background-image:url("../../multimedia/imagem/back.svg")}#main-container #area-home .videos-wrapper .row-slider .wrapper-botoes-slider .swiper-button-next{background-image:url("../../multimedia/imagem/next.svg")}#main-container #area-home .videos-wrapper .video-fancy{left:0;right:0;bottom:0;top:0;position:absolute;opacity:1}#main-container #area-home .videos-wrapper .video-fancy:hover:after{transform:scale(1.2)}#main-container #area-home .videos-wrapper .video-fancy:after{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-ms-transition:transform 0.2s;-o-transition:transform 0.2s;transition:transform 0.2s;content:'';position:absolute;z-index:999;width:70px;height:70px;top:50%;margin-top:-35px;left:50%;margin-left:-35px;display:block;background-image:url(../../multimedia/imagem/play-button.svg)}#main-container #area-home .wrapper-galeria .wrapper-galeria{position:relative}#main-container #area-home .wrapper-galeria .gradient-bottom{background-image:linear-gradient(to bottom,transparent,#fff);bottom:0;z-index:99;left:0;right:0;height:195px;position:absolute}#main-container #area-home .wrapper-galeria .moretext{display:none!important}#main-container #area-home .time-line{width:100%}#main-container #area-home .time-line img{max-width:100%}#main-container #area-home .wrapper-botoes-fornecedores{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center}#main-container #area-contactos #mapa-wrapper{min-height:300px;margin-bottom:30px}#main-container #area-comunidade .section{padding:100px 0;text-align:center}#main-container #area-comunidade .section-padding-reduzido{padding:100px 0}#main-container #area-comunidade #wrapper-mapa-comunidade{position:relative}#main-container #area-comunidade #wrapper-mapa-comunidade .gradiente-mapa{pointer-events:none;position:absolute;top:0;bottom:0;left:0;z-index:1;right:0;background:white;background:-moz-linear-gradient(90deg,white 5%,rgba(255,255,255,0.190914) 31%);background:-webkit-linear-gradient(90deg,white 5%,rgba(255,255,255,0.190914) 31%);background:linear-gradient(90deg,white 5%,rgba(255,255,255,0.190914) 31%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1)}#main-container #area-comunidade #wrapper-mapa-comunidade .titulo-mapa{text-align:left;top:0;bottom:0;max-width:562px;height:100%;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}#main-container #area-comunidade #wrapper-mapa-comunidade .titulo-mapa h3{margin-left:40px}#main-container #area-comunidade .voluntarios{background-color:#f7f8fb}#main-container #area-politica-de-privacidade ol.principal{list-style:none;counter-reset:my-awesome-counter;margin-left:0}#main-container #area-politica-de-privacidade ol.principal>li{counter-increment:my-awesome-counter;margin-bottom:40px}#main-container #area-politica-de-privacidade ol.principal>li h3,#main-container #area-politica-de-privacidade ol.principal>li h4,#main-container #area-politica-de-privacidade ol.principal>li .h4{max-width:96%;display:inline-block}#main-container #area-politica-de-privacidade ol.principal>li::before{content:counter(my-awesome-counter) ". ";font-weight:300;color:#1794c7;text-transform:uppercase;font-size:27px;vertical-align:top}#main-container .large-block-grid-5>li{width:19.9%;list-style:none}footer#footer{padding-bottom:25px;background-color:#f7f8fb}footer#footer a{text-decoration:none}footer#footer .footer-top{background-color:#1794c7;padding:40px 0}footer#footer .footer-top .titulo{margin-bottom:30px;color:white;display:block}footer#footer .footer-top ul{text-align:cneter}footer#footer .footer-top ul li{float:none;display:inline-block}footer#footer .footer-top ul li>div{color:white;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center}footer#footer .footer-top ul li>div .logo-social-footer{margin-right:10px;width:30px}footer#footer .footer-top ul li>div a{color:white}footer#footer #footer-bottom{padding-top:20px}footer#footer #footer-bottom span{color:#5d5d5d}footer#footer .menu-footer-legal{list-style-type:none;margin-left:0;margin-bottom:0}footer#footer .menu-footer-legal li{display:inline-block;margin-right:10px}footer#footer .centro-footer{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center}footer#footer .centro-footer .menu-footer-legal,footer#footer .centro-footer span{display:inline-block}footer#footer .centro-footer .menu-footer-legal{margin-left:4px}.custom-cluster{height:37px;line-height:26px;width:37px;padding:.6em;text-align:center;cursor:pointer;color:#fff;position:absolute;font-size:1em;font-weight:bold;background:url("../../multimedia/imagem/m2.png") no-repeat;background-position:center center;background-size:contain}@media only screen and (max-width:640px){footer#footer{margin-bottom:48px}footer#footer .separador{display:none!important}#main-container .btn-viseiras-mobile{margin-top:-30px;margin-bottom:40px;display:inline-block!important}.wrapper-empresas .swiper-slide{text-align:center}}@media (max-width:500px){#main-container .testemunho-wrapper .coluna-setas-slider{position:absolute;top:calc(60% + 20px)!important}}@media (max-width:980px){footer#footer{margin-bottom:48px}}@media only screen and (max-width:1024px){.time-line-large{display:none}#main-container #area-comunidade #wrapper-mapa-comunidade{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:wrap;-moz-flex-flow:wrap;-ms-flex-flow:wrap;flex-flow:wrap}#main-container #area-comunidade #wrapper-mapa-comunidade .gradiente-mapa{position:relative;background:none;order:2}#main-container #area-comunidade #wrapper-mapa-comunidade .gradiente-mapa .titulo-mapa{max-width:100%;margin-top:20px}#main-container #area-comunidade #wrapper-mapa-comunidade .gradiente-mapa .titulo-mapa h3{margin:0;text-align:center}#main-container #area-comunidade #wrapper-mapa-comunidade #mapa-comunidade{order:1}#main-container #area-comunidade #wrapper-mapa-comunidade .time-line-mobile{display:none}.numero-mascaras .counting{font-size:70px!important}header#header{position:relative;z-index:2;height:60px}header#header #header-inner{height:60px}header#header #header-top{display:none}header#header #header-bottom{height:100%;min-height:60px}header#header #header-bottom #header-bottom-inner-wrapper{height:60px;-webkit-box-align:stretch;-ms-flex-align:stretch;-webkit-align-items:stretch;-moz-align-items:stretch;align-items:stretch;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center}header#header #header-bottom #header-bottom-inner-wrapper #header-bottom-logo-wrapper{text-align:center;-webkit-box-ordinal-group:3;-webkit-order:2;-moz-order:2;-ms-flex-order:2;order:2;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-positive:1;flex-grow:1;display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;justify-content:center}header#header #header-bottom #header-bottom-inner-wrapper #header-bottom-logo-wrapper img{max-height:60px}header#header #header-bottom #header-bottom-inner-wrapper #header-bottom-menu-wrapper{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-order:1;-ms-flex-order:1;order:1;height:100%;mine-height:30px}header#header .lang-wrapper-large{display:none}header#header .currency-wrapper-large{display:none}footer#footer .footer-top ul li div{margin:auto}footer#footer .menu-footer-legal li{margin-left:5px;margin-right:5px}}@media only screen and (min-width:1025px){.time-line-mobile{display:none}header#header.header-with-headroom{height:90px}header#header.header-with-headroom #header-inner{height:90px;transition:height 0.3s ease}header#header.header-with-headroom #header-inner #header-bottom{backface-visibility:hidden;padding-bottom:0;padding-top:9px;padding-bottom:6px;transition:min-height 0.3s ease,padding-top 0.3s ease,padding-bottom 0.3s ease}header#header.header-with-headroom.headroom--not-top #header-inner{height:70px}header#header.header-with-headroom.headroom--not-top #header-inner #header-bottom{padding-top:0;min-height:70px;padding-bottom:0}header#header #header-top #header-top-right{text-align:right}header#header #header-bottom{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center;padding-top:15px;padding-bottom:7px}header#header .lang-wrapper-large{display:inline-block;text-transform:uppercase;margin-left:5px}header#header .lang-wrapper-large a{display:inline-block}header#header .lang-wrapper-large a.active{font-weight:bold}header#header .currency-wrapper-large{margin-left:5px}footer#footer #footer-bottom .row{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;-webkit-align-items:flex-end;-moz-align-items:flex-end;align-items:flex-end}}@media (min-width:1335px){#main-container .testemunho-wrapper .swiper-button-prev{left:-80px}#main-container .testemunho-wrapper .swiper-button-next{right:-80px}}@media (min-width:1024px) and (max-width:1200px){#area-home .wrapper-numero-mascaras .numero-mascaras .counting{font-size:95px!important}}#main-container .top-content-inner{margin-bottom:100px}#main-container .top-content-inner .slider-item{width:100%;display:inline-block;min-height:30vh;background-color:#1794c7}#main-container .top-content-inner .slider-item .slider-item-bg-portrait,#main-container .top-content-inner .slider-item .slider-item-bg-landscape{position:absolute;top:0;bottom:0;right:0;left:0;background-repeat:no-repeat;background-size:cover;background-position:center bottom;display:none;pointer-events:none}#main-container .top-content-inner .slider-item .slider-item-bg-portrait{background-size:contain}#main-container .top-content-inner .slider-item .slider-item-bg-landscape{display:block}@media (max-width:1024px) and (orientation:portrait){#main-container .top-content-inner{margin-bottom:80px}#main-container .top-content-inner .slider-item{width:100%;display:inline-block;padding-top:50vh}#main-container .top-content-inner .slider-item .slider-item-bg-portrait{display:block}#main-container .top-content-inner .slider-item .slider-item-bg-landscape{display:none}#main-container #area-home .top-content-inner .slider-item{padding-top:70vh;min-height:570px}}@media (min-width:1024px),(orientation:landscape){#main-container .top-content-inner{margin-bottom:100px}#main-container .top-content-inner .slider-item{width:100%;display:inline-block;min-height:30vh}#main-container .top-content-inner .slider-item .slider-item-bg-portrait{display:none}#main-container .top-content-inner .slider-item .slider-item-bg-landscape{display:block}#main-container #area-home .top-content-inner .slider-item{min-height:70vh;max-height:623px;min-height:600px}}@media (max-height:700px),(min-width:1024px){#main-container #area-home .top-content-inner .slider-item{min-height:70vh;max-height:623px;min-height:510px}}@media (max-width:640px){#main-container #area-home .top-content-inner .slider-item{min-height:601px}}@charset "UTF-8";.fancybox-enabled{overflow:hidden}.fancybox-enabled body{overflow:visible;height:100%}.fancybox-container{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99993;-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox-container~.fancybox-container{z-index:99992}.fancybox-bg{position:absolute;top:0;right:0;bottom:0;left:0;background:#0f0f11;opacity:0;transition-timing-function:cubic-bezier(.55,.06,.68,.19);-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox-container--ready .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-controls{position:absolute;top:0;left:0;right:0;text-align:center;opacity:0;z-index:99994;transition:opacity .2s;pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;direction:ltr}.fancybox-show-controls .fancybox-controls{opacity:1}.fancybox-infobar{display:none}.fancybox-show-infobar .fancybox-infobar{display:inline-block;pointer-events:all}.fancybox-infobar__body{display:inline-block;width:70px;line-height:44px;font-size:13px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;text-align:center;color:#ddd;background-color:rgba(30,30,30,.7);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-font-smoothing:subpixel-antialiased}.fancybox-buttons{position:absolute;top:0;right:0;display:none;pointer-events:all}.fancybox-show-buttons .fancybox-buttons{display:block}.fancybox-slider-wrap{overflow:hidden;direction:ltr}.fancybox-slider,.fancybox-slider-wrap{position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;z-index:99993;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-tap-highlight-color:transparent}.fancybox-slide{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;overflow:auto;outline:none;white-space:normal;box-sizing:border-box;text-align:center;z-index:99994;-webkit-overflow-scrolling:touch}.fancybox-slide:before{content:"";height:100%;width:0}.fancybox-slide:before,.fancybox-slide>*{display:inline-block;vertical-align:middle}.fancybox-slide>*{position:relative;padding:24px;margin:44px 0;border-width:0;text-align:left;background-color:#fff;overflow:auto;box-sizing:border-box}.fancybox-slide--image{overflow:hidden}.fancybox-slide--image:before{display:none}.fancybox-content{display:inline-block;position:relative;margin:44px auto;padding:0;border:0;width:80%;height:calc(100% - 88px);vertical-align:middle;line-height:normal;text-align:left;white-space:normal;outline:none;font-size:16px;font-family:Arial,sans-serif;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-overflow-scrolling:touch}.fancybox-iframe{display:block;margin:0;padding:0;border:0;width:100%;height:100%;background:#fff}.fancybox-slide--video .fancybox-content,.fancybox-slide--video .fancybox-iframe{background:transparent}.fancybox-placeholder{z-index:99995;background:transparent;cursor:default;overflow:visible;-webkit-transform-origin:top left;transform-origin:top left;background-size:100% 100%;background-repeat:no-repeat;-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox-image,.fancybox-placeholder,.fancybox-spaceball{position:absolute;top:0;left:0;margin:0;padding:0;border:0}.fancybox-image,.fancybox-spaceball{width:100%;height:100%;max-width:none;max-height:none;background:transparent;background-size:100% 100%}.fancybox-controls--canzoomOut .fancybox-placeholder{cursor:zoom-out}.fancybox-controls--canzoomIn .fancybox-placeholder{cursor:zoom-in}.fancybox-controls--canGrab .fancybox-placeholder{cursor:-webkit-grab;cursor:grab}.fancybox-controls--isGrabbing .fancybox-placeholder{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-spaceball{z-index:1}.fancybox-tmp{position:absolute;top:-9999px;left:-9999px;visibility:hidden}.fancybox-error{position:absolute;margin:0;padding:40px;top:50%;left:50%;width:380px;max-width:100%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#fff;cursor:default}.fancybox-error p{margin:0;padding:0;color:#444;font:16px/20px Helvetica Neue,Helvetica,Arial,sans-serif}.fancybox-close-small{position:absolute;top:0;right:0;width:44px;height:44px;padding:0;margin:0;border:0;border-radius:0;outline:none;background:transparent;z-index:10;cursor:pointer}.fancybox-close-small:after{content:"×";position:absolute;top:5px;right:5px;width:30px;height:30px;font:20px/30px Arial,Helvetica Neue,Helvetica,sans-serif;color:#888;font-weight:300;text-align:center;border-radius:50%;border-width:0;background:#fff;transition:background .2s;box-sizing:border-box;z-index:2}.fancybox-close-small:focus:after{outline:1px dotted #888}.fancybox-slide--video .fancybox-close-small{top:-36px;right:-36px;background:transparent}.fancybox-close-small:hover:after{color:#555;background:#eee}.fancybox-caption-wrap{position:absolute;bottom:0;left:0;right:0;padding:60px 30px 0;z-index:99998;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box;background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8));opacity:0;transition:opacity .2s;pointer-events:none}.fancybox-show-caption .fancybox-caption-wrap{opacity:1}.fancybox-caption{padding:30px 0;border-top:1px solid hsla(0,0%,100%,.4);font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#fff;line-height:20px;-webkit-text-size-adjust:none}.fancybox-caption a,.fancybox-caption button{pointer-events:all}.fancybox-caption a{color:#fff;text-decoration:underline}.fancybox-button{display:inline-block;position:relative;width:44px;height:44px;line-height:44px;margin:0;padding:0;border:0;border-radius:0;cursor:pointer;background:transparent;color:#fff;box-sizing:border-box;vertical-align:top;outline:none}.fancybox-button--disabled{cursor:default;pointer-events:none}.fancybox-button,.fancybox-infobar__body{background:rgba(30,30,30,.6)}.fancybox-button:hover{background:rgba(0,0,0,.8)}.fancybox-button:after,.fancybox-button:before{content:"";pointer-events:none;position:absolute;border-color:#fff;background-color:currentColor;color:currentColor;opacity:.9;box-sizing:border-box;display:inline-block}.fancybox-button--disabled:after,.fancybox-button--disabled:before{opacity:.5}.fancybox-button--left:after{left:20px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.fancybox-button--left:after,.fancybox-button--right:after{top:18px;width:6px;height:6px;background:transparent;border-top:2px solid currentColor;border-right:2px solid currentColor}.fancybox-button--right:after{right:20px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.fancybox-button--left{border-bottom-left-radius:5px}.fancybox-button--right{border-bottom-right-radius:5px}.fancybox-button--close{float:right}.fancybox-button--close:after,.fancybox-button--close:before{content:"";display:inline-block;position:absolute;height:2px;width:16px;top:calc(50% - 1px);left:calc(50% - 8px)}.fancybox-button--close:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.fancybox-button--close:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.fancybox-loading{border:6px solid hsla(0,0%,39%,.4);border-top:6px solid hsla(0,0%,100%,.6);border-radius:100%;height:50px;width:50px;-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;position:absolute;top:50%;left:50%;margin-top:-25px;margin-left:-25px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@media (max-width:800px){.fancybox-controls{text-align:left}.fancybox-button--left,.fancybox-button--right,.fancybox-buttons button:not(.fancybox-button--close){display:none!important}.fancybox-caption{padding:20px 0;margin:0}}.fancybox-button--fullscreen:before{width:15px;height:11px;left:15px;top:16px;border:2px solid;background:none}.fancybox-button--play:before{top:16px;left:18px;width:0;height:0;border-top:6px inset transparent;border-bottom:6px inset transparent;border-left:10px solid;border-radius:1px;background:transparent}.fancybox-button--pause:before{top:16px;left:18px;width:7px;height:11px;border-style:solid;border-width:0 2px;background:transparent}.fancybox-button--thumbs span{font-size:23px}.fancybox-button--thumbs:before{top:20px;left:21px;width:3px;height:3px;box-shadow:0 -4px 0,-4px -4px 0,4px -4px 0,inset 0 0 0 32px,-4px 0 0,4px 0 0,0 4px 0,-4px 4px 0,4px 4px 0}.fancybox-container--thumbs .fancybox-caption-wrap,.fancybox-container--thumbs .fancybox-controls,.fancybox-container--thumbs .fancybox-slider-wrap{right:220px}.fancybox-thumbs{position:absolute;top:0;right:0;bottom:0;left:auto;width:220px;margin:0;padding:5px 5px 0 0;background:#fff;z-index:99993;word-break:normal;-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:transparent;box-sizing:border-box}.fancybox-thumbs>ul{list-style:none;position:absolute;position:relative;width:100%;height:100%;margin:0;padding:0;overflow-x:hidden;overflow-y:auto;font-size:0}.fancybox-thumbs>ul>li{float:left;overflow:hidden;max-width:50%;padding:0;margin:0;width:105px;height:75px;position:relative;cursor:pointer;outline:none;border:5px solid #fff;border-top-width:0;border-right-width:0;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box}li.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li>img{position:absolute;top:0;left:0;min-width:100%;min-height:100%;max-width:none;max-height:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-thumbs>ul>li:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:2px;border:4px solid #4ea7f9;z-index:99991;opacity:0;transition:all .2s cubic-bezier(.25,.46,.45,.94)}.fancybox-thumbs>ul>li.fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{display:none!important}.fancybox-container--thumbs .fancybox-caption-wrap,.fancybox-container--thumbs .fancybox-controls,.fancybox-container--thumbs .fancybox-slider-wrap{right:0}}@charset "UTF-8";
/***********************************************
*              Compass Includes                *
************************************************/
/***********************************************
*                  Variáveis                   *
***********************************************/
/**
*   ATENCAO: Funcao não mixin.
*/
/***********************************************
*         Placeholder pseudo-elements          *
************************************************/
/***********************************************
*               Background RGBA                *
************************************************/
/**
* Para ellipsize de texto
*/
/**
* Para ajudar a criar os estilos base de um pseudo elemento
*/
/**
* Para ajudar a gerar um elemento com racio responsive.
*
*   EXEMPLO:
*
*    div {
*       @include responsive-ratio(16,9);
*    }
*/
/*$loadmask-spinner-cor: $cor-2 !default;*/
@-webkit-keyframes loadmaskBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes loadmaskBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes loadmaskBounce {
  /* line 90, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  /* line 94, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes loadmaskBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/* line 18, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
.loadmask {
  background-image: none;
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 22, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
.loadmask.fixed {
  position: fixed;
}

/* line 26, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
.loadmask.fixed + .loadmask-msg {
  position: fixed;
}

/* override do icon a usar na loadmask publica */
/* line 33, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
.loadmask-msg {
  z-index: 1003;
  position: absolute;
  height: 44px;
  width: 44px;
  top: 50% !important;
  left: 50% !important;
  margin-top: -22px;
  margin-left: -22px;
  padding: 2px;
}

/* line 44, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
.loadmask-msg div {
  background: none;
  width: 40px;
  height: 40px;
  cursor: wait;
  position: relative;
  margin: 0px auto 0px auto;
}

/* line 58, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
.loadmask-msg div:before, .loadmask-msg div:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #1794c7;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loadmaskBounce 2s infinite ease-in-out;
  -moz-animation: loadmaskBounce 2s infinite ease-in-out;
  -ms-animation: loadmaskBounce 2s infinite ease-in-out;
  -o-animation: loadmaskBounce 2s infinite ease-in-out;
  animation: loadmaskBounce 2s infinite ease-in-out;
}

/* line 73, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base/_loadmask_base.scss */
.loadmask-msg div:after {
  -webkit-animation-delay: -1s;
  -moz-animation-delay: -1s;
  -ms-animation-delay: -1s;
  -o-animation-delay: -1s;
  animation-delay: -1s;
}

/* RIPPLE EFFECT */
/* line 20, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
.ripple {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  border-radius: inherit;
  pointer-events: none;
}

/* line 33, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
.rippleWave {
  backface-visibility: hidden;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
  background: white;
  opacity: 0.45;
  animation: ripple 2s forwards;
  -webkit-animation: ripple 2s forwards;
}

@-webkit-keyframes ripple {
  to {
    transform: scale(24);
    opacity: 0;
  }
}

@-moz-keyframes ripple {
  to {
    transform: scale(24);
    opacity: 0;
  }
}

@-ms-keyframes ripple {
  /* line 49, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  to {
    transform: scale(24);
    opacity: 0;
  }
}

@keyframes ripple {
  to {
    transform: scale(24);
    opacity: 0;
  }
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-ms-keyframes slideInUp {
  /* line 59, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  /* line 64, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-moz-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-ms-keyframes slideOutUp {
  /* line 71, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  /* line 76, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 100%;
  }
}

@-moz-keyframes gradient {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 100%;
  }
}

@-ms-keyframes gradient {
  /* line 83, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  0% {
    background-position: 50% 0%;
  }
  /* line 87, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  100% {
    background-position: 50% 100%;
  }
}

@keyframes gradient {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 100%;
  }
}

@-webkit-keyframes fromBlur {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }
  100% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -moz-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    -o-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    filter: blur(0);
    -webkit-filter: blur(0px);
  }
}

@-moz-keyframes fromBlur {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }
  100% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -moz-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    -o-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    filter: blur(0);
    -webkit-filter: blur(0px);
  }
}

@-ms-keyframes fromBlur {
  /* line 94, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }
  /* line 101, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  100% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -moz-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    -o-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    filter: blur(0);
    -webkit-filter: blur(0px);
  }
}

@keyframes fromBlur {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }
  100% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -moz-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    -o-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    filter: blur(0);
    -webkit-filter: blur(0px);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-ms-keyframes fadeInUp {
  /* line 110, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  /* line 116, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-ms-keyframes fadeInDown {
  /* line 125, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  /* line 131, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes pageLoaderAnimationIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-moz-keyframes pageLoaderAnimationIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-ms-keyframes pageLoaderAnimationIn {
  /* line 140, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  0% {
    opacity: 0;
    visibility: hidden;
  }
  /* line 146, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes pageLoaderAnimationIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes pageLoaderAnimationOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-moz-keyframes pageLoaderAnimationOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-ms-keyframes pageLoaderAnimationOut {
  /* line 153, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  0% {
    opacity: 1;
    visibility: visible;
  }
  /* line 158, C:/wamp64/www/soscovid/ficheiros/estaticos/publico/scss/base_nao_minificacao.scss */
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pageLoaderAnimationOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
