@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
/* line 8, node_modules/animate.css/animate.css */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

/* line 13, node_modules/animate.css/animate.css */
.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

/* line 21, node_modules/animate.css/animate.css */
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

/* line 25, node_modules/animate.css/animate.css */
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

/* line 31, node_modules/animate.css/animate.css */
.animate__animated.animate__repeat-2 {
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

/* line 37, node_modules/animate.css/animate.css */
.animate__animated.animate__repeat-3 {
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

/* line 43, node_modules/animate.css/animate.css */
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

/* line 49, node_modules/animate.css/animate.css */
.animate__animated.animate__delay-2s {
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

/* line 55, node_modules/animate.css/animate.css */
.animate__animated.animate__delay-3s {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

/* line 61, node_modules/animate.css/animate.css */
.animate__animated.animate__delay-4s {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

/* line 67, node_modules/animate.css/animate.css */
.animate__animated.animate__delay-5s {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

/* line 73, node_modules/animate.css/animate.css */
.animate__animated.animate__faster {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

/* line 79, node_modules/animate.css/animate.css */
.animate__animated.animate__fast {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

/* line 85, node_modules/animate.css/animate.css */
.animate__animated.animate__slow {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

/* line 91, node_modules/animate.css/animate.css */
.animate__animated.animate__slower {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  /* line 98, node_modules/animate.css/animate.css */
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  /* line 107, node_modules/animate.css/animate.css */
  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}

/* Attention seekers  */

@keyframes bounce {
  from,
20%,
53%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

/* line 188, node_modules/animate.css/animate.css */
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from,
50%,
to {
    opacity: 1;
  }
  25%,
75% {
    opacity: 0;
  }
}

/* line 218, node_modules/animate.css/animate.css */
.animate__flash {
  animation-name: flash;
}

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

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 255, node_modules/animate.css/animate.css */
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 333, node_modules/animate.css/animate.css */
.animate__rubberBand {
  animation-name: rubberBand;
}

@keyframes shakeX {
  from,
to {
    transform: translate3d(0, 0, 0);
  }
  10%,
30%,
50%,
70%,
90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
40%,
60%,
80% {
    transform: translate3d(10px, 0, 0);
  }
}

/* line 385, node_modules/animate.css/animate.css */
.animate__shakeX {
  animation-name: shakeX;
}

@keyframes shakeY {
  from,
to {
    transform: translate3d(0, 0, 0);
  }
  10%,
30%,
50%,
70%,
90% {
    transform: translate3d(0, -10px, 0);
  }
  20%,
40%,
60%,
80% {
    transform: translate3d(0, 10px, 0);
  }
}

/* line 437, node_modules/animate.css/animate.css */
.animate__shakeY {
  animation-name: shakeY;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

/* line 503, node_modules/animate.css/animate.css */
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

/* line 561, node_modules/animate.css/animate.css */
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
50%,
70%,
90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
60%,
80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 631, node_modules/animate.css/animate.css */
.animate__tada {
  animation-name: tada;
}

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

@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 708, node_modules/animate.css/animate.css */
.animate__wobble {
  animation-name: wobble;
}

@keyframes jello {
  from,
11.1%,
to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

/* line 798, node_modules/animate.css/animate.css */
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

/* line 856, node_modules/animate.css/animate.css */
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

/* Back entrances */

@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 905, node_modules/animate.css/animate.css */
.animate__backInDown {
  animation-name: backInDown;
}

@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 947, node_modules/animate.css/animate.css */
.animate__backInLeft {
  animation-name: backInLeft;
}

@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 989, node_modules/animate.css/animate.css */
.animate__backInRight {
  animation-name: backInRight;
}

@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 1031, node_modules/animate.css/animate.css */
.animate__backInUp {
  animation-name: backInUp;
}

/* Back exits */

@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}

/* line 1074, node_modules/animate.css/animate.css */
.animate__backOutDown {
  animation-name: backOutDown;
}

@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}

/* line 1116, node_modules/animate.css/animate.css */
.animate__backOutLeft {
  animation-name: backOutLeft;
}

@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

/* line 1158, node_modules/animate.css/animate.css */
.animate__backOutRight {
  animation-name: backOutRight;
}

@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

/* line 1200, node_modules/animate.css/animate.css */
.animate__backOutUp {
  animation-name: backOutUp;
}

/* Bouncing entrances  */

@keyframes bounceIn {
  from,
20%,
40%,
60%,
80%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/* line 1293, node_modules/animate.css/animate.css */
.animate__bounceIn {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from,
60%,
75%,
90%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1375, node_modules/animate.css/animate.css */
.animate__bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from,
60%,
75%,
90%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1453, node_modules/animate.css/animate.css */
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from,
60%,
75%,
90%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1531, node_modules/animate.css/animate.css */
.animate__bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from,
60%,
75%,
90%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1609, node_modules/animate.css/animate.css */
.animate__bounceInUp {
  animation-name: bounceInUp;
}

/* Bouncing exits  */

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 1652, node_modules/animate.css/animate.css */
.animate__bounceOut {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}

/* line 1698, node_modules/animate.css/animate.css */
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}

/* line 1728, node_modules/animate.css/animate.css */
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

/* line 1758, node_modules/animate.css/animate.css */
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}

/* line 1800, node_modules/animate.css/animate.css */
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

/* Fading entrances  */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 1823, node_modules/animate.css/animate.css */
.animate__fadeIn {
  animation-name: fadeIn;
}

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

/* line 1853, node_modules/animate.css/animate.css */
.animate__fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1883, node_modules/animate.css/animate.css */
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1913, node_modules/animate.css/animate.css */
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1943, node_modules/animate.css/animate.css */
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1973, node_modules/animate.css/animate.css */
.animate__fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 2003, node_modules/animate.css/animate.css */
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 2033, node_modules/animate.css/animate.css */
.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 2063, node_modules/animate.css/animate.css */
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 2091, node_modules/animate.css/animate.css */
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 2119, node_modules/animate.css/animate.css */
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}

@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 2147, node_modules/animate.css/animate.css */
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}

@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 2175, node_modules/animate.css/animate.css */
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

/* Fading exits */

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 2198, node_modules/animate.css/animate.css */
.animate__fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 2224, node_modules/animate.css/animate.css */
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 2250, node_modules/animate.css/animate.css */
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 2276, node_modules/animate.css/animate.css */
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 2302, node_modules/animate.css/animate.css */
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 2328, node_modules/animate.css/animate.css */
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 2354, node_modules/animate.css/animate.css */
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

/* line 2380, node_modules/animate.css/animate.css */
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 2406, node_modules/animate.css/animate.css */
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}

/* line 2434, node_modules/animate.css/animate.css */
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}

@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}

/* line 2462, node_modules/animate.css/animate.css */
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}

@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}

/* line 2490, node_modules/animate.css/animate.css */
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}

@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}

/* line 2518, node_modules/animate.css/animate.css */
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

/* Flippers */

@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}

/* line 2607, node_modules/animate.css/animate.css */
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

/* line 2677, node_modules/animate.css/animate.css */
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

/* line 2747, node_modules/animate.css/animate.css */
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

/* line 2789, node_modules/animate.css/animate.css */
.animate__flipOutX {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

/* line 2835, node_modules/animate.css/animate.css */
.animate__flipOutY {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

/* Lightspeed */

@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 2892, node_modules/animate.css/animate.css */
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 2944, node_modules/animate.css/animate.css */
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 2972, node_modules/animate.css/animate.css */
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}

@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

/* line 3000, node_modules/animate.css/animate.css */
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}

/* Rotating entrances */

@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 3033, node_modules/animate.css/animate.css */
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}

@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 3065, node_modules/animate.css/animate.css */
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}

@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 3097, node_modules/animate.css/animate.css */
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}

@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 3129, node_modules/animate.css/animate.css */
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}

@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 3161, node_modules/animate.css/animate.css */
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

/* Rotating exits */

@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

/* line 3190, node_modules/animate.css/animate.css */
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

/* line 3218, node_modules/animate.css/animate.css */
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}

@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 3246, node_modules/animate.css/animate.css */
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}

@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 3274, node_modules/animate.css/animate.css */
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}

@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

/* line 3302, node_modules/animate.css/animate.css */
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

/* Specials */

@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%,
60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }
  40%,
80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 3367, node_modules/animate.css/animate.css */
.animate__hinge {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* line 3427, node_modules/animate.css/animate.css */
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

/* line 3458, node_modules/animate.css/animate.css */
.animate__rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

/* line 3485, node_modules/animate.css/animate.css */
.animate__rollOut {
  animation-name: rollOut;
}

/* Zooming entrances */

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* line 3512, node_modules/animate.css/animate.css */
.animate__zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3550, node_modules/animate.css/animate.css */
.animate__zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3588, node_modules/animate.css/animate.css */
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3626, node_modules/animate.css/animate.css */
.animate__zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3664, node_modules/animate.css/animate.css */
.animate__zoomInUp {
  animation-name: zoomInUp;
}

/* Zooming exits */

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

/* line 3699, node_modules/animate.css/animate.css */
.animate__zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3737, node_modules/animate.css/animate.css */
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}

/* line 3769, node_modules/animate.css/animate.css */
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}

/* line 3801, node_modules/animate.css/animate.css */
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3841, node_modules/animate.css/animate.css */
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}

/* Sliding entrances */

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

/* line 3872, node_modules/animate.css/animate.css */
.animate__slideInDown {
  animation-name: slideInDown;
}

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

/* line 3900, node_modules/animate.css/animate.css */
.animate__slideInLeft {
  animation-name: slideInLeft;
}

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

/* line 3928, node_modules/animate.css/animate.css */
.animate__slideInRight {
  animation-name: slideInRight;
}

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

/* line 3956, node_modules/animate.css/animate.css */
.animate__slideInUp {
  animation-name: slideInUp;
}

/* Sliding exits */

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 3985, node_modules/animate.css/animate.css */
.animate__slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 4013, node_modules/animate.css/animate.css */
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 4041, node_modules/animate.css/animate.css */
.animate__slideOutRight {
  animation-name: slideOutRight;
}

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

/* line 4069, node_modules/animate.css/animate.css */
.animate__slideOutUp {
  animation-name: slideOutUp;
}

@keyframes vex-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes vex-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes vex-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/* line 41, node_modules/vex-js/dist/css/vex.css */
.vex, .vex *, .vex *:before, .vex *:after {
  box-sizing: border-box;
}

/* line 45, node_modules/vex-js/dist/css/vex.css */
.vex {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1111;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* line 55, node_modules/vex-js/dist/css/vex.css */
.vex-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

/* line 62, node_modules/vex-js/dist/css/vex.css */
.vex-overlay {
  animation: vex-fadein .5s;
  position: fixed;
  z-index: 1111;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* line 73, node_modules/vex-js/dist/css/vex.css */
.vex-overlay.vex-closing {
  animation: vex-fadeout .5s forwards;
}

/* line 77, node_modules/vex-js/dist/css/vex.css */
.vex-content {
  animation: vex-fadein .5s;
  background: #fff;
}

/* line 82, node_modules/vex-js/dist/css/vex.css */
.vex.vex-closing .vex-content {
  animation: vex-fadeout .5s forwards;
}

/* line 86, node_modules/vex-js/dist/css/vex.css */
.vex-close:before {
  font-family: Arial, sans-serif;
  content: "\00D7";
}

/* line 90, node_modules/vex-js/dist/css/vex.css */
.vex-dialog-form {
  margin: 0;
}

/* line 93, node_modules/vex-js/dist/css/vex.css */
.vex-dialog-button {
  text-rendering: optimizeLegibility;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* line 101, node_modules/vex-js/dist/css/vex.css */
.vex-loading-spinner {
  animation: vex-rotation .7s linear infinite;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 1112;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2em;
  width: 2em;
  background: #fff;
}

/* line 116, node_modules/vex-js/dist/css/vex.css */
body.vex-open {
  overflow: hidden;
}

@keyframes vex-pulse {
  0% {
    box-shadow: inset 0 0 0 300px transparent;
  }
  70% {
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
  }
  100% {
    box-shadow: inset 0 0 0 300px transparent;
  }
}

/* line 17, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain {
  padding-top: 160px;
  padding-bottom: 160px;
}

/* line 20, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-content {
  font-family: "Helvetica Neue", sans-serif;
  background: #fff;
  color: #444;
  padding: 1em;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  width: 450px;
  font-size: 1.1em;
  line-height: 1.5em;
}

/* line 31, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-content h1, .vex.vex-theme-plain .vex-content h2, .vex.vex-theme-plain .vex-content h3, .vex.vex-theme-plain .vex-content h4, .vex.vex-theme-plain .vex-content h5, .vex.vex-theme-plain .vex-content h6, .vex.vex-theme-plain .vex-content p, .vex.vex-theme-plain .vex-content ul, .vex.vex-theme-plain .vex-content li {
  color: inherit;
}

/* line 33, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

/* line 38, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-close:before {
  position: absolute;
  content: "\00D7";
  font-size: 26px;
  font-weight: normal;
  line-height: 31px;
  height: 30px;
  width: 30px;
  text-align: center;
  top: 3px;
  right: 3px;
  color: #bbb;
  background: transparent;
}

/* line 51, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-close:hover:before, .vex.vex-theme-plain .vex-close:active:before {
  color: #777;
  background: #e0e0e0;
}

/* line 54, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-message {
  margin-bottom: .5em;
}

/* line 56, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input {
  margin-bottom: 1em;
}

/* line 58, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"] {
  background: #f0f0f0;
  width: 100%;
  padding: .25em .67em;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  min-height: 2.5em;
  margin: 0 0 .25em;
}

/* line 68, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  outline: none;
}

/* line 71, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons {
  *zoom: 1;
}

/* line 73, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons:after {
  content: "";
  display: table;
  clear: both;
}

/* line 77, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-button {
  border-radius: 0;
  border: 0;
  float: right;
  margin: 0 0 0 .5em;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8em;
  line-height: 1em;
  padding: .75em 2em;
}

/* line 88, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-button.vex-last {
  margin-left: 0;
}

/* line 90, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-button:focus {
  animation: vex-pulse 1.1s infinite;
  outline: none;
}

@media (max-width: 568px) {
  /* line 95, node_modules/vex-js/dist/css/vex-theme-plain.css */
  .vex.vex-theme-plain .vex-dialog-button:focus {
    animation: none;
  }
}

/* line 98, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-primary {
  background: #3288e6;
  color: #fff;
}

/* line 101, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-secondary {
  background: #e0e0e0;
  color: #777;
}

/* line 105, node_modules/vex-js/dist/css/vex-theme-plain.css */
.vex-loading-spinner.vex-theme-plain {
  height: 2.5em;
  width: 2.5em;
}

/* Slider */
/* line 2, app/assets/stylesheets/slick.css */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 21, app/assets/stylesheets/slick.css */
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* line 31, app/assets/stylesheets/slick.css */
.slick-list:focus {
  outline: none;
}

/* line 35, app/assets/stylesheets/slick.css */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 41, app/assets/stylesheets/slick.css */
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

/* line 51, app/assets/stylesheets/slick.css */
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 61, app/assets/stylesheets/slick.css */
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

/* line 68, app/assets/stylesheets/slick.css */
.slick-track:after {
  clear: both;
}

/* line 72, app/assets/stylesheets/slick.css */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 77, app/assets/stylesheets/slick.css */
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

/* line 85, app/assets/stylesheets/slick.css */
[dir='rtl'] .slick-slide {
  float: right;
}

/* line 89, app/assets/stylesheets/slick.css */
.slick-slide img {
  display: block;
}

/* line 93, app/assets/stylesheets/slick.css */
.slick-slide.slick-loading img {
  display: none;
}

/* line 97, app/assets/stylesheets/slick.css */
.slick-slide.dragging img {
  pointer-events: none;
}

/* line 101, app/assets/stylesheets/slick.css */
.slick-initialized .slick-slide {
  display: block;
}

/* line 105, app/assets/stylesheets/slick.css */
.slick-loading .slick-slide {
  visibility: hidden;
}

/* line 109, app/assets/stylesheets/slick.css */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 117, app/assets/stylesheets/slick.css */
.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* line 3, app/assets/stylesheets/slick-theme.css */
.slick-loading .slick-list {
  background: #fff url(/slick/ajax-loader.gif) center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url(/slick/fonts/slick.eot);
  src: url(/slick/fonts/slick.eot?#iefix) format("embedded-opentype"), url(/slick/fonts/slick.woff) format("woff"), url(/slick/fonts/slick.ttf) format("truetype"), url(/slick/fonts/slick.svg#slick) format("svg");
}

/* Arrows */
/* line 19, app/assets/stylesheets/slick-theme.css */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

/* line 44, app/assets/stylesheets/slick-theme.css */
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

/* line 53, app/assets/stylesheets/slick-theme.css */
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

/* line 60, app/assets/stylesheets/slick-theme.css */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

/* line 66, app/assets/stylesheets/slick-theme.css */
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 80, app/assets/stylesheets/slick-theme.css */
.slick-prev {
  left: -25px;
}

/* line 84, app/assets/stylesheets/slick-theme.css */
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

/* line 89, app/assets/stylesheets/slick-theme.css */
.slick-prev:before {
  content: '←';
}

/* line 93, app/assets/stylesheets/slick-theme.css */
[dir='rtl'] .slick-prev:before {
  content: '→';
}

/* line 98, app/assets/stylesheets/slick-theme.css */
.slick-next {
  right: -25px;
}

/* line 102, app/assets/stylesheets/slick-theme.css */
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

/* line 107, app/assets/stylesheets/slick-theme.css */
.slick-next:before {
  content: '→';
}

/* line 111, app/assets/stylesheets/slick-theme.css */
[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
/* line 117, app/assets/stylesheets/slick-theme.css */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

/* line 122, app/assets/stylesheets/slick-theme.css */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

/* line 137, app/assets/stylesheets/slick-theme.css */
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

/* line 150, app/assets/stylesheets/slick-theme.css */
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

/* line 168, app/assets/stylesheets/slick-theme.css */
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

/* line 173, app/assets/stylesheets/slick-theme.css */
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

/* line 178, app/assets/stylesheets/slick-theme.css */
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 200, app/assets/stylesheets/slick-theme.css */
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/* Fonts ------------------------------------------ */
/* line 7, app/assets/stylesheets/braiform.scss */
.fancybox-enabled {
  overflow: hidden;
}

/* line 10, app/assets/stylesheets/braiform.scss */
.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

/* line 14, app/assets/stylesheets/braiform.scss */
.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

/* line 20, app/assets/stylesheets/braiform.scss */
.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Make sure that the first one is on the top */
/* line 35, app/assets/stylesheets/braiform.scss */
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

/* line 38, app/assets/stylesheets/braiform.scss */
.fancybox-outer, .fancybox-inner, .fancybox-bg, .fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* line 45, app/assets/stylesheets/braiform.scss */
.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 49, app/assets/stylesheets/braiform.scss */
.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

/* line 59, app/assets/stylesheets/braiform.scss */
.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* line 64, app/assets/stylesheets/braiform.scss */
.fancybox-infobar, .fancybox-toolbar, .fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility 0s linear .25s;
  box-sizing: border-box;
}

/* line 75, app/assets/stylesheets/braiform.scss */
.fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar, .fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s, visibility 0s;
}

/* line 81, app/assets/stylesheets/braiform.scss */
.fancybox-infobar {
  top: 0;
  left: 50%;
  margin-left: -79px;
}

/* line 86, app/assets/stylesheets/braiform.scss */
.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, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

/* line 104, app/assets/stylesheets/braiform.scss */
.fancybox-toolbar {
  top: 0;
  right: 0;
}

/* line 108, app/assets/stylesheets/braiform.scss */
.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 114, app/assets/stylesheets/braiform.scss */
.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;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: transform, opacity;
  transform-style: preserve-3d;
}

/* line 140, app/assets/stylesheets/braiform.scss */
.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

/* line 147, app/assets/stylesheets/braiform.scss */
.fancybox-is-sliding .fancybox-slide, .fancybox-slide--previous, .fancybox-slide--current, .fancybox-slide--next {
  display: block;
}

/* line 150, app/assets/stylesheets/braiform.scss */
.fancybox-slide--image {
  overflow: visible;
}

/* line 153, app/assets/stylesheets/braiform.scss */
.fancybox-slide--image::before {
  display: none;
}

/* line 156, app/assets/stylesheets/braiform.scss */
.fancybox-slide--video .fancybox-content, .fancybox-slide--video iframe {
  background: #000;
}

/* line 159, app/assets/stylesheets/braiform.scss */
.fancybox-slide--map .fancybox-content, .fancybox-slide--map iframe {
  background: #E5E3DF;
}

/* line 162, app/assets/stylesheets/braiform.scss */
.fancybox-slide--next {
  z-index: 99995;
}

/* line 165, app/assets/stylesheets/braiform.scss */
.fancybox-slide > div {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

/* line 178, app/assets/stylesheets/braiform.scss */
.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 200, app/assets/stylesheets/braiform.scss */
.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: zoom-out;
}

/* line 204, app/assets/stylesheets/braiform.scss */
.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: zoom-in;
}

/* line 208, app/assets/stylesheets/braiform.scss */
.fancybox-can-drag .fancybox-image-wrap {
  cursor: grab;
}

/* line 212, app/assets/stylesheets/braiform.scss */
.fancybox-is-dragging .fancybox-image-wrap {
  cursor: grabbing;
}

/* line 216, app/assets/stylesheets/braiform.scss */
.fancybox-image, .fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 232, app/assets/stylesheets/braiform.scss */
.fancybox-spaceball {
  z-index: 1;
}

/* line 235, app/assets/stylesheets/braiform.scss */
.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff;
}

/* line 244, app/assets/stylesheets/braiform.scss */
.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

/* line 253, app/assets/stylesheets/braiform.scss */
.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default;
}

/* line 261, app/assets/stylesheets/braiform.scss */
.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* line 267, app/assets/stylesheets/braiform.scss */
.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;
}

/* line 282, app/assets/stylesheets/braiform.scss */
.fancybox-close-small:after {
  content: '\D7';
  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 .25s;
  box-sizing: border-box;
  z-index: 2;
}

/* line 302, app/assets/stylesheets/braiform.scss */
.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

/* line 305, app/assets/stylesheets/braiform.scss */
.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

/* line 309, app/assets/stylesheets/braiform.scss */
.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px;
}

/* line 313, app/assets/stylesheets/braiform.scss */
.fancybox-slide--iframe .fancybox-close-small:after {
  background: transparent;
  font-size: 35px;
  color: #aaa;
}

/* line 318, app/assets/stylesheets/braiform.scss */
.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
}

/* Caption */
/* line 323, app/assets/stylesheets/braiform.scss */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

/* line 332, app/assets/stylesheets/braiform.scss */
.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

/* line 341, app/assets/stylesheets/braiform.scss */
.fancybox-caption a, .fancybox-caption button, .fancybox-caption select {
  pointer-events: all;
}

/* line 344, app/assets/stylesheets/braiform.scss */
.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Buttons */
/* line 350, app/assets/stylesheets/braiform.scss */
.fancybox-button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: transparent;
  color: #ddd;
  border-radius: 0;
  cursor: pointer;
  vertical-align: top;
  outline: none;
}

/* line 367, app/assets/stylesheets/braiform.scss */
.fancybox-button[disabled] {
  cursor: default;
  pointer-events: none;
}

/* line 371, app/assets/stylesheets/braiform.scss */
.fancybox-infobar__body, .fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}

/* line 374, app/assets/stylesheets/braiform.scss */
.fancybox-button:hover:not([disabled]) {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}

/* line 378, app/assets/stylesheets/braiform.scss */
.fancybox-button::before, .fancybox-button::after {
  content: '';
  pointer-events: none;
  position: absolute;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}

/* line 389, app/assets/stylesheets/braiform.scss */
.fancybox-button[disabled]::before, .fancybox-button[disabled]::after {
  opacity: 0.3;
}

/* line 392, app/assets/stylesheets/braiform.scss */
.fancybox-button--left::after, .fancybox-button--right::after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
}

/* line 400, app/assets/stylesheets/braiform.scss */
.fancybox-button--left::after {
  left: 20px;
  transform: rotate(-135deg);
}

/* line 405, app/assets/stylesheets/braiform.scss */
.fancybox-button--right::after {
  right: 20px;
  transform: rotate(45deg);
}

/* line 410, app/assets/stylesheets/braiform.scss */
.fancybox-button--left {
  border-bottom-left-radius: 5px;
}

/* line 413, app/assets/stylesheets/braiform.scss */
.fancybox-button--right {
  border-bottom-right-radius: 5px;
}

/* line 416, app/assets/stylesheets/braiform.scss */
.fancybox-button--close::before, .fancybox-button--close::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}

/* line 425, app/assets/stylesheets/braiform.scss */
.fancybox-button--close::before {
  transform: rotate(45deg);
}

/* line 429, app/assets/stylesheets/braiform.scss */
.fancybox-button--close::after {
  transform: rotate(-45deg);
}

/* Navigation arrows */
/* line 435, app/assets/stylesheets/braiform.scss */
.fancybox-arrow {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  height: 100px;
  width: 54px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 99995;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: opacity .25s;
}

/* line 455, app/assets/stylesheets/braiform.scss */
.fancybox-arrow::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 44px;
  height: 44px;
  background-color: rgba(30, 30, 30, 0.8);
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px;
}

/* line 467, app/assets/stylesheets/braiform.scss */
.fancybox-arrow--right {
  right: 0;
}

/* line 470, app/assets/stylesheets/braiform.scss */
.fancybox-arrow--left {
  left: 0;
  transform: scaleX(-1);
}

/* line 475, app/assets/stylesheets/braiform.scss */
.fancybox-arrow--right::after, .fancybox-arrow--left::after {
  left: 0;
}

/* line 478, app/assets/stylesheets/braiform.scss */
.fancybox-show-nav .fancybox-arrow {
  opacity: 0.6;
}

/* line 481, app/assets/stylesheets/braiform.scss */
.fancybox-show-nav .fancybox-arrow[disabled] {
  opacity: 0.3;
}

/* Loading indicator */
/* line 486, app/assets/stylesheets/braiform.scss */
.fancybox-slide > .fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* Transition effects */
/* line 520, app/assets/stylesheets/braiform.scss */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
/* line 526, app/assets/stylesheets/braiform.scss */
.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

/* line 531, app/assets/stylesheets/braiform.scss */
.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

/* line 536, app/assets/stylesheets/braiform.scss */
.fancybox-fx-slide.fancybox-slide--current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: fade */
/* line 543, app/assets/stylesheets/braiform.scss */
.fancybox-fx-fade.fancybox-slide--previous, .fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 548, app/assets/stylesheets/braiform.scss */
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
/* line 553, app/assets/stylesheets/braiform.scss */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
}

/* line 558, app/assets/stylesheets/braiform.scss */
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
}

/* line 563, app/assets/stylesheets/braiform.scss */
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

/* transitionEffect: rotate */
/* line 570, app/assets/stylesheets/braiform.scss */
.fancybox-fx-rotate.fancybox-slide--previous {
  transform: rotate(-360deg);
  opacity: 0;
}

/* line 575, app/assets/stylesheets/braiform.scss */
.fancybox-fx-rotate.fancybox-slide--next {
  transform: rotate(360deg);
  opacity: 0;
}

/* line 580, app/assets/stylesheets/braiform.scss */
.fancybox-fx-rotate.fancybox-slide--current {
  transform: rotate(0deg);
  opacity: 1;
}

/* transitionEffect: circular */
/* line 587, app/assets/stylesheets/braiform.scss */
.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
}

/* line 592, app/assets/stylesheets/braiform.scss */
.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
}

/* line 597, app/assets/stylesheets/braiform.scss */
.fancybox-fx-circular.fancybox-slide--current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: tube */
/* line 604, app/assets/stylesheets/braiform.scss */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

/* line 608, app/assets/stylesheets/braiform.scss */
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

/* line 612, app/assets/stylesheets/braiform.scss */
.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  /* line 619, app/assets/stylesheets/braiform.scss */
  .fancybox-infobar {
    left: 0;
    margin-left: 0;
  }
  /* line 622, app/assets/stylesheets/braiform.scss */
  .fancybox-button--left, .fancybox-button--right {
    display: none !important;
  }
  /* line 624, app/assets/stylesheets/braiform.scss */
  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}

/* Fullscreen  */
/* line 630, app/assets/stylesheets/braiform.scss */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: calc(50% - 7px);
  top: calc(50% - 6px);
  border: 2px solid;
  background: none;
}

/* Slideshow button */
/* line 640, app/assets/stylesheets/braiform.scss */
.fancybox-button--play::before, .fancybox-button--pause::before {
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  background: transparent;
}

/* line 645, app/assets/stylesheets/braiform.scss */
.fancybox-button--play::before {
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
}

/* line 653, app/assets/stylesheets/braiform.scss */
.fancybox-button--pause::before {
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
}

/* Thumbs */
/* line 661, app/assets/stylesheets/braiform.scss */
.fancybox-thumbs {
  display: none;
}

/* line 664, app/assets/stylesheets/braiform.scss */
.fancybox-button--thumbs {
  display: none;
}

@media all and (min-width: 800px) {
  /* line 668, app/assets/stylesheets/braiform.scss */
  .fancybox-button--thumbs {
    display: inline-block;
  }
  /* line 670, app/assets/stylesheets/braiform.scss */
  .fancybox-button--thumbs span {
    font-size: 23px;
  }
  /* line 672, app/assets/stylesheets/braiform.scss */
  .fancybox-button--thumbs::before {
    width: 3px;
    height: 3px;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
  }
  /* line 679, app/assets/stylesheets/braiform.scss */
  .fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    word-break: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995;
  }
  /* line 696, app/assets/stylesheets/braiform.scss */
  .fancybox-show-thumbs .fancybox-thumbs {
    display: block;
  }
  /* line 698, app/assets/stylesheets/braiform.scss */
  .fancybox-show-thumbs .fancybox-inner {
    right: 220px;
  }
  /* line 700, app/assets/stylesheets/braiform.scss */
  .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;
  }
  /* line 711, app/assets/stylesheets/braiform.scss */
  .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 transparent;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
  }
  /* line 730, app/assets/stylesheets/braiform.scss */
  li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1);
  }
  /* line 732, app/assets/stylesheets/braiform.scss */
  .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;
    user-select: none;
  }
  /* line 745, app/assets/stylesheets/braiform.scss */
  .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 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  /* line 758, app/assets/stylesheets/braiform.scss */
  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1;
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
/* line 771, app/assets/stylesheets/braiform.scss */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* line 778, app/assets/stylesheets/braiform.scss */
.animated.infinite {
  animation-iteration-count: infinite;
}

/* line 783, app/assets/stylesheets/braiform.scss */
.animated.hinge {
  animation-duration: 2s;
}

/* line 788, app/assets/stylesheets/braiform.scss */
.animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

/* line 849, app/assets/stylesheets/braiform.scss */
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* line 876, app/assets/stylesheets/braiform.scss */
.flash {
  animation-name: flash;
}

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

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 917, app/assets/stylesheets/braiform.scss */
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 996, app/assets/stylesheets/braiform.scss */
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

/* line 1035, app/assets/stylesheets/braiform.scss */
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

/* line 1104, app/assets/stylesheets/braiform.scss */
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

/* line 1165, app/assets/stylesheets/braiform.scss */
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 1226, app/assets/stylesheets/braiform.scss */
.tada {
  animation-name: tada;
}

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

@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}

/* line 1307, app/assets/stylesheets/braiform.scss */
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

/* line 1396, app/assets/stylesheets/braiform.scss */
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/* line 1483, app/assets/stylesheets/braiform.scss */
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

/* line 1556, app/assets/stylesheets/braiform.scss */
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

/* line 1629, app/assets/stylesheets/braiform.scss */
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

/* line 1702, app/assets/stylesheets/braiform.scss */
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1775, app/assets/stylesheets/braiform.scss */
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 1818, app/assets/stylesheets/braiform.scss */
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1861, app/assets/stylesheets/braiform.scss */
.bounceOutDown {
  animation-name: bounceOutDown;
}

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

/* line 1894, app/assets/stylesheets/braiform.scss */
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

/* line 1927, app/assets/stylesheets/braiform.scss */
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1970, app/assets/stylesheets/braiform.scss */
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 1995, app/assets/stylesheets/braiform.scss */
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 2028, app/assets/stylesheets/braiform.scss */
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 2061, app/assets/stylesheets/braiform.scss */
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 2094, app/assets/stylesheets/braiform.scss */
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 2127, app/assets/stylesheets/braiform.scss */
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 2160, app/assets/stylesheets/braiform.scss */
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 2193, app/assets/stylesheets/braiform.scss */
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 2226, app/assets/stylesheets/braiform.scss */
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line 2259, app/assets/stylesheets/braiform.scss */
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 2284, app/assets/stylesheets/braiform.scss */
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 2313, app/assets/stylesheets/braiform.scss */
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 2342, app/assets/stylesheets/braiform.scss */
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 2371, app/assets/stylesheets/braiform.scss */
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 2400, app/assets/stylesheets/braiform.scss */
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 2429, app/assets/stylesheets/braiform.scss */
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 2458, app/assets/stylesheets/braiform.scss */
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

/* line 2487, app/assets/stylesheets/braiform.scss */
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 2516, app/assets/stylesheets/braiform.scss */
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

/* line 2595, app/assets/stylesheets/braiform.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

/* line 2668, app/assets/stylesheets/braiform.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

/* line 2741, app/assets/stylesheets/braiform.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

/* line 2786, app/assets/stylesheets/braiform.scss */
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

/* line 2831, app/assets/stylesheets/braiform.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

/* line 2890, app/assets/stylesheets/braiform.scss */
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 2921, app/assets/stylesheets/braiform.scss */
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

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

/* line 2964, app/assets/stylesheets/braiform.scss */
.rotateIn {
  animation-name: rotateIn;
}

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

/* line 3005, app/assets/stylesheets/braiform.scss */
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

/* line 3046, app/assets/stylesheets/braiform.scss */
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

/* line 3087, app/assets/stylesheets/braiform.scss */
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

/* line 3128, app/assets/stylesheets/braiform.scss */
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

/* line 3165, app/assets/stylesheets/braiform.scss */
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

/* line 3202, app/assets/stylesheets/braiform.scss */
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 3239, app/assets/stylesheets/braiform.scss */
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 3276, app/assets/stylesheets/braiform.scss */
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

/* line 3313, app/assets/stylesheets/braiform.scss */
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 3386, app/assets/stylesheets/braiform.scss */
.hinge {
  animation-name: hinge;
}

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

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

/* line 3421, app/assets/stylesheets/braiform.scss */
.rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

/* line 3452, app/assets/stylesheets/braiform.scss */
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* line 3481, app/assets/stylesheets/braiform.scss */
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3522, app/assets/stylesheets/braiform.scss */
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3563, app/assets/stylesheets/braiform.scss */
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3604, app/assets/stylesheets/braiform.scss */
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3645, app/assets/stylesheets/braiform.scss */
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

/* line 3682, app/assets/stylesheets/braiform.scss */
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3727, app/assets/stylesheets/braiform.scss */
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

/* line 3764, app/assets/stylesheets/braiform.scss */
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

/* line 3801, app/assets/stylesheets/braiform.scss */
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3846, app/assets/stylesheets/braiform.scss */
.zoomOutUp {
  animation-name: zoomOutUp;
}

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

/* line 3877, app/assets/stylesheets/braiform.scss */
.slideInDown {
  animation-name: slideInDown;
}

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

/* line 3908, app/assets/stylesheets/braiform.scss */
.slideInLeft {
  animation-name: slideInLeft;
}

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

/* line 3939, app/assets/stylesheets/braiform.scss */
.slideInRight {
  animation-name: slideInRight;
}

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

/* line 3970, app/assets/stylesheets/braiform.scss */
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 4001, app/assets/stylesheets/braiform.scss */
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 4032, app/assets/stylesheets/braiform.scss */
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 4063, app/assets/stylesheets/braiform.scss */
.slideOutRight {
  animation-name: slideOutRight;
}

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

/* line 4094, app/assets/stylesheets/braiform.scss */
.slideOutUp {
  animation-name: slideOutUp;
}

/*!
    Title: Vertical-Timeline
    Version: 2.0.0
    Last Change: 04/30/17
    Author: Ryan Fitzgerald
    Repo: https://github.com/RyanFitzgerald/vertical-timeline
    Issues: https://github.com/RyanFitzgerald/vertical-timeline/issues
	LICENSE: MIT
*/
/* line 4109, app/assets/stylesheets/braiform.scss */
.vtimeline {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

/* line 4114, app/assets/stylesheets/braiform.scss */
.vtimeline:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background: white;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* line 4126, app/assets/stylesheets/braiform.scss */
.vtimeline-point {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

/* line 4131, app/assets/stylesheets/braiform.scss */
.vtimeline-icon {
  position: absolute;
  display: none;
  top: 10px;
  height: 25px;
  width: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  background: #000;
}

/* line 4143, app/assets/stylesheets/braiform.scss */
.vtimeline-block {
  width: 45%;
  margin: 0;
  transition: 0.5s ease all;
}

/* line 4149, app/assets/stylesheets/braiform.scss */
.vtimeline-block:after {
  content: '';
  position: absolute;
  top: 13px;
  left: 45%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #eee;
  border-right: none;
}

/* line 4161, app/assets/stylesheets/braiform.scss */
.vtimeline-right {
  margin-left: 55%;
}

/* line 4164, app/assets/stylesheets/braiform.scss */
.vtimeline-right.vt-animate-slide .vtimeline-content {
  transform: translateX(100%);
}

/* line 4168, app/assets/stylesheets/braiform.scss */
.vtimeline-right:after {
  left: auto;
  right: 45%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: none;
  border-right: 10px solid #eee;
}

/* line 4176, app/assets/stylesheets/braiform.scss */
.vtimeline-date {
  position: relative;
}

/* line 4180, app/assets/stylesheets/braiform.scss */
.vtimeline-content {
  color: white;
  font-size: 0.85rem;
  transition: 0.5s ease all;
}

/* line 4186, app/assets/stylesheets/braiform.scss */
.vt-animate-fade {
  opacity: 0;
}

/* line 4189, app/assets/stylesheets/braiform.scss */
.vt-animate-slide {
  opacity: 0;
}

/* line 4192, app/assets/stylesheets/braiform.scss */
.vt-animate-slide .vtimeline-content {
  transform: translateX(-100%);
}

/* line 4196, app/assets/stylesheets/braiform.scss */
.vt-noarrows:after {
  content: none;
}

@media only screen and (max-width: 992px) {
  /* line 4200, app/assets/stylesheets/braiform.scss */
  .vtimeline:before {
    left: 30px;
    right: auto;
    margin: 0;
  }
  /* line 4204, app/assets/stylesheets/braiform.scss */
  .vtimeline-icon {
    left: -10px;
    right: auto;
    margin: 0;
  }
  /* line 4208, app/assets/stylesheets/braiform.scss */
  .vtimeline-block {
    width: 85%;
    margin-left: 9%;
  }
  /* line 4211, app/assets/stylesheets/braiform.scss */
  .vtimeline-block:after {
    left: auto;
    right: 85%;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: none;
    border-right: 10px solid #eee;
  }
  /* line 4218, app/assets/stylesheets/braiform.scss */
  .vtimeline-date {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: auto;
  }
  /* line 4225, app/assets/stylesheets/braiform.scss */
  .vtimeline-right .vtimeline-date {
    right: auto;
  }
  /* line 4227, app/assets/stylesheets/braiform.scss */
  .vtimeline.basic .vtimeline-date {
    padding: 10px 10px 0 10px;
  }
  /* line 4229, app/assets/stylesheets/braiform.scss */
  .vt-animate-slide .vtimeline-content {
    transform: translateX(100%);
  }
}

/* line 4233, app/assets/stylesheets/braiform.scss */
h1 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

/* line 4242, app/assets/stylesheets/braiform.scss */
h2 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

/* line 4251, app/assets/stylesheets/braiform.scss */
h3 {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

/* line 4260, app/assets/stylesheets/braiform.scss */
h4 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

/* line 4269, app/assets/stylesheets/braiform.scss */
a {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: normal;
  font-style: normal;
}

/* line 4278, app/assets/stylesheets/braiform.scss */
a.with-icon {
  display: inline-flex;
  height: 100%;
  align-items: center;
}

/* line 4288, app/assets/stylesheets/braiform.scss */
a.with-icon .ic {
  margin-right: 20px;
}

/* Basics ------------------------------------------ */
/* Buttons ------------------------------------------ */
/* line 4296, app/assets/stylesheets/braiform.scss */
.btn {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  box-shadow: 0px 42px 54px rgba(0, 0, 0, 0.1);
  border-radius: 3px !important;
  padding: 1rem 0.9rem !important;
}

/* line 4305, app/assets/stylesheets/braiform.scss */
.btn.with-icon {
  align-items: center;
}

/* line 4311, app/assets/stylesheets/braiform.scss */
.btn.with-icon .ic {
  width: 16px;
  background-position: center center;
  height: 11px;
  min-width: 16px;
  min-height: 11px;
  margin-right: 10px;
  margin-left: 20px;
}

/* Colours ------------------------------------------ */
/*!
 * Bootstrap v4.0.0-beta (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@media print {
  /* line 4331, app/assets/stylesheets/braiform.scss */
  *, *::before, *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  /* line 4337, app/assets/stylesheets/braiform.scss */
  a, a:visited {
    text-decoration: underline;
  }
  /* line 4341, app/assets/stylesheets/braiform.scss */
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /* line 4345, app/assets/stylesheets/braiform.scss */
  pre {
    white-space: pre-wrap !important;
  }
  /* line 4349, app/assets/stylesheets/braiform.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 4354, app/assets/stylesheets/braiform.scss */
  thead {
    display: table-header-group;
  }
  /* line 4358, app/assets/stylesheets/braiform.scss */
  tr, img {
    page-break-inside: avoid;
  }
  /* line 4362, app/assets/stylesheets/braiform.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 4367, app/assets/stylesheets/braiform.scss */
  h2, h3 {
    page-break-after: avoid;
  }
  /* line 4371, app/assets/stylesheets/braiform.scss */
  .navbar {
    display: none;
  }
  /* line 4375, app/assets/stylesheets/braiform.scss */
  .badge {
    border: 1px solid #000;
  }
  /* line 4379, app/assets/stylesheets/braiform.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 4383, app/assets/stylesheets/braiform.scss */
  .table td, .table th {
    background-color: #fff !important;
  }
  /* line 4387, app/assets/stylesheets/braiform.scss */
  .table-bordered th, .table-bordered td {
    border: 1px solid #ddd !important;
  }
}

/* line 4392, app/assets/stylesheets/braiform.scss */
*, *::before, *::after {
  box-sizing: border-box;
}

/* line 4397, app/assets/stylesheets/braiform.scss */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

/* line 4410, app/assets/stylesheets/braiform.scss */
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* line 4414, app/assets/stylesheets/braiform.scss */
body {
  margin: 0;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

/* line 4426, app/assets/stylesheets/braiform.scss */
[tabindex="-1"]:focus {
  outline: none !important;
}

/* line 4430, app/assets/stylesheets/braiform.scss */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/* line 4437, app/assets/stylesheets/braiform.scss */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

/* line 4442, app/assets/stylesheets/braiform.scss */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 4447, app/assets/stylesheets/braiform.scss */
abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

/* line 4455, app/assets/stylesheets/braiform.scss */
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 4461, app/assets/stylesheets/braiform.scss */
ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 4466, app/assets/stylesheets/braiform.scss */
ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}

/* line 4470, app/assets/stylesheets/braiform.scss */
dt {
  font-weight: bold;
}

/* line 4474, app/assets/stylesheets/braiform.scss */
dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 4479, app/assets/stylesheets/braiform.scss */
blockquote {
  margin: 0 0 1rem;
}

/* line 4483, app/assets/stylesheets/braiform.scss */
dfn {
  font-style: italic;
}

/* line 4487, app/assets/stylesheets/braiform.scss */
b, strong {
  font-weight: bolder;
}

/* line 4491, app/assets/stylesheets/braiform.scss */
small {
  font-size: 80%;
}

/* line 4495, app/assets/stylesheets/braiform.scss */
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 4502, app/assets/stylesheets/braiform.scss */
sub {
  bottom: -.25em;
}

/* line 4506, app/assets/stylesheets/braiform.scss */
sup {
  top: -.5em;
}

/* line 4510, app/assets/stylesheets/braiform.scss */
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/* line 4517, app/assets/stylesheets/braiform.scss */
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* line 4522, app/assets/stylesheets/braiform.scss */
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* line 4527, app/assets/stylesheets/braiform.scss */
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

/* line 4532, app/assets/stylesheets/braiform.scss */
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

/* line 4536, app/assets/stylesheets/braiform.scss */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 4541, app/assets/stylesheets/braiform.scss */
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

/* line 4547, app/assets/stylesheets/braiform.scss */
figure {
  margin: 0 0 1rem;
}

/* line 4551, app/assets/stylesheets/braiform.scss */
img {
  vertical-align: middle;
  border-style: none;
}

/* line 4556, app/assets/stylesheets/braiform.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 4560, app/assets/stylesheets/braiform.scss */
a, area, button, [role="button"], input, label, select, summary, textarea {
  touch-action: manipulation;
}

/* line 4565, app/assets/stylesheets/braiform.scss */
table {
  border-collapse: collapse;
}

/* line 4569, app/assets/stylesheets/braiform.scss */
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom;
}

/* line 4577, app/assets/stylesheets/braiform.scss */
th {
  text-align: inherit;
}

/* line 4581, app/assets/stylesheets/braiform.scss */
label {
  display: inline-block;
  margin-bottom: .5rem;
}

/* line 4586, app/assets/stylesheets/braiform.scss */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/* line 4591, app/assets/stylesheets/braiform.scss */
input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 4598, app/assets/stylesheets/braiform.scss */
button, input {
  overflow: visible;
}

/* line 4602, app/assets/stylesheets/braiform.scss */
button, select {
  text-transform: none;
}

/* line 4606, app/assets/stylesheets/braiform.scss */
button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

/* line 4610, app/assets/stylesheets/braiform.scss */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* line 4615, app/assets/stylesheets/braiform.scss */
input[type="radio"], input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 4621, app/assets/stylesheets/braiform.scss */
input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  -webkit-appearance: listbox;
}

/* line 4625, app/assets/stylesheets/braiform.scss */
textarea {
  overflow: auto;
  resize: vertical;
}

/* line 4630, app/assets/stylesheets/braiform.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 4637, app/assets/stylesheets/braiform.scss */
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

/* line 4649, app/assets/stylesheets/braiform.scss */
progress {
  vertical-align: baseline;
}

/* line 4653, app/assets/stylesheets/braiform.scss */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 4657, app/assets/stylesheets/braiform.scss */
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

/* line 4662, app/assets/stylesheets/braiform.scss */
[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 4666, app/assets/stylesheets/braiform.scss */
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 4671, app/assets/stylesheets/braiform.scss */
output {
  display: inline-block;
}

/* line 4675, app/assets/stylesheets/braiform.scss */
summary {
  display: list-item;
}

/* line 4679, app/assets/stylesheets/braiform.scss */
template {
  display: none;
}

/* line 4683, app/assets/stylesheets/braiform.scss */
[hidden] {
  display: none !important;
}

/* line 4687, app/assets/stylesheets/braiform.scss */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 4695, app/assets/stylesheets/braiform.scss */
h1, .h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}

/* line 4700, app/assets/stylesheets/braiform.scss */
h2, .h2 {
  font-size: 2rem;
  line-height: 1.3;
}

/* line 4705, app/assets/stylesheets/braiform.scss */
h3, .h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

/* line 4710, app/assets/stylesheets/braiform.scss */
h4, .h4 {
  font-size: 1.5rem;
}

/* line 4714, app/assets/stylesheets/braiform.scss */
h5, .h5 {
  font-size: 1.25rem;
}

/* line 4718, app/assets/stylesheets/braiform.scss */
h6, .h6 {
  font-size: 1rem;
}

/* line 4722, app/assets/stylesheets/braiform.scss */
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* line 4727, app/assets/stylesheets/braiform.scss */
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.1;
}

/* line 4733, app/assets/stylesheets/braiform.scss */
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.1;
}

/* line 4739, app/assets/stylesheets/braiform.scss */
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
}

/* line 4745, app/assets/stylesheets/braiform.scss */
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
}

/* line 4751, app/assets/stylesheets/braiform.scss */
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 4758, app/assets/stylesheets/braiform.scss */
small, .small {
  font-size: 80%;
  font-weight: normal;
}

/* line 4763, app/assets/stylesheets/braiform.scss */
mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

/* line 4768, app/assets/stylesheets/braiform.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 4773, app/assets/stylesheets/braiform.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 4778, app/assets/stylesheets/braiform.scss */
.list-inline-item {
  display: inline-block;
}

/* line 4782, app/assets/stylesheets/braiform.scss */
.list-inline-item:not(:last-child) {
  margin-right: 5px;
}

/* line 4786, app/assets/stylesheets/braiform.scss */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 4791, app/assets/stylesheets/braiform.scss */
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* line 4796, app/assets/stylesheets/braiform.scss */
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #868e96;
}

/* line 4802, app/assets/stylesheets/braiform.scss */
.blockquote-footer::before {
  content: "\2014   \A0";
}

/* line 4806, app/assets/stylesheets/braiform.scss */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* line 4811, app/assets/stylesheets/braiform.scss */
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0rem;
  transition: all 0.2s ease-in-out;
  max-width: 100%;
  height: auto;
}

/* line 4822, app/assets/stylesheets/braiform.scss */
.figure {
  display: inline-block;
}

/* line 4826, app/assets/stylesheets/braiform.scss */
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* line 4831, app/assets/stylesheets/braiform.scss */
.figure-caption {
  font-size: 90%;
  color: #868e96;
}

/* line 4836, app/assets/stylesheets/braiform.scss */
code, kbd, pre, samp {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* line 4840, app/assets/stylesheets/braiform.scss */
code {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f8f9fa;
  border-radius: 0rem;
}

/* line 4848, app/assets/stylesheets/braiform.scss */
a > code {
  padding: 0;
  color: inherit;
  background-color: inherit;
}

/* line 4854, app/assets/stylesheets/braiform.scss */
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #fff;
  background-color: #212529;
  border-radius: 0rem;
}

/* line 4862, app/assets/stylesheets/braiform.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
}

/* line 4868, app/assets/stylesheets/braiform.scss */
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  color: #212529;
}

/* line 4876, app/assets/stylesheets/braiform.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

/* line 4884, app/assets/stylesheets/braiform.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 4889, app/assets/stylesheets/braiform.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

@media (min-width: 576px) {
  /* line 4898, app/assets/stylesheets/braiform.scss */
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 4904, app/assets/stylesheets/braiform.scss */
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 4910, app/assets/stylesheets/braiform.scss */
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 4916, app/assets/stylesheets/braiform.scss */
  .container {
    max-width: 1140px;
  }
}

/* line 4921, app/assets/stylesheets/braiform.scss */
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

/* line 4930, app/assets/stylesheets/braiform.scss */
.row {
  display: flex;
  flex-wrap: wrap;
  /* margin-right: -15px; */
  /* margin-left: -15px; */
}

/* line 4940, app/assets/stylesheets/braiform.scss */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 4945, app/assets/stylesheets/braiform.scss */
.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 4950, app/assets/stylesheets/braiform.scss */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 4958, app/assets/stylesheets/braiform.scss */
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

/* line 4967, app/assets/stylesheets/braiform.scss */
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

/* line 4975, app/assets/stylesheets/braiform.scss */
.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

/* line 4982, app/assets/stylesheets/braiform.scss */
.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

/* line 4989, app/assets/stylesheets/braiform.scss */
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 4996, app/assets/stylesheets/braiform.scss */
.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

/* line 5003, app/assets/stylesheets/braiform.scss */
.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

/* line 5010, app/assets/stylesheets/braiform.scss */
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 5017, app/assets/stylesheets/braiform.scss */
.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

/* line 5024, app/assets/stylesheets/braiform.scss */
.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

/* line 5031, app/assets/stylesheets/braiform.scss */
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

/* line 5038, app/assets/stylesheets/braiform.scss */
.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

/* line 5045, app/assets/stylesheets/braiform.scss */
.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

/* line 5052, app/assets/stylesheets/braiform.scss */
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 5059, app/assets/stylesheets/braiform.scss */
.order-1 {
  order: 1;
}

/* line 5065, app/assets/stylesheets/braiform.scss */
.order-2 {
  order: 2;
}

/* line 5071, app/assets/stylesheets/braiform.scss */
.order-3 {
  order: 3;
}

/* line 5077, app/assets/stylesheets/braiform.scss */
.order-4 {
  order: 4;
}

/* line 5083, app/assets/stylesheets/braiform.scss */
.order-5 {
  order: 5;
}

/* line 5089, app/assets/stylesheets/braiform.scss */
.order-6 {
  order: 6;
}

/* line 5095, app/assets/stylesheets/braiform.scss */
.order-7 {
  order: 7;
}

/* line 5101, app/assets/stylesheets/braiform.scss */
.order-8 {
  order: 8;
}

/* line 5107, app/assets/stylesheets/braiform.scss */
.order-9 {
  order: 9;
}

/* line 5113, app/assets/stylesheets/braiform.scss */
.order-10 {
  order: 10;
}

/* line 5119, app/assets/stylesheets/braiform.scss */
.order-11 {
  order: 11;
}

/* line 5125, app/assets/stylesheets/braiform.scss */
.order-12 {
  order: 12;
}

@media (min-width: 576px) {
  /* line 5132, app/assets/stylesheets/braiform.scss */
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 5141, app/assets/stylesheets/braiform.scss */
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  /* line 5149, app/assets/stylesheets/braiform.scss */
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 5156, app/assets/stylesheets/braiform.scss */
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 5163, app/assets/stylesheets/braiform.scss */
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 5170, app/assets/stylesheets/braiform.scss */
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 5177, app/assets/stylesheets/braiform.scss */
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 5184, app/assets/stylesheets/braiform.scss */
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 5191, app/assets/stylesheets/braiform.scss */
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 5198, app/assets/stylesheets/braiform.scss */
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 5205, app/assets/stylesheets/braiform.scss */
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 5212, app/assets/stylesheets/braiform.scss */
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 5219, app/assets/stylesheets/braiform.scss */
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 5226, app/assets/stylesheets/braiform.scss */
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 5233, app/assets/stylesheets/braiform.scss */
  .order-sm-1 {
    order: 1;
  }
  /* line 5239, app/assets/stylesheets/braiform.scss */
  .order-sm-2 {
    order: 2;
  }
  /* line 5245, app/assets/stylesheets/braiform.scss */
  .order-sm-3 {
    order: 3;
  }
  /* line 5251, app/assets/stylesheets/braiform.scss */
  .order-sm-4 {
    order: 4;
  }
  /* line 5257, app/assets/stylesheets/braiform.scss */
  .order-sm-5 {
    order: 5;
  }
  /* line 5263, app/assets/stylesheets/braiform.scss */
  .order-sm-6 {
    order: 6;
  }
  /* line 5269, app/assets/stylesheets/braiform.scss */
  .order-sm-7 {
    order: 7;
  }
  /* line 5275, app/assets/stylesheets/braiform.scss */
  .order-sm-8 {
    order: 8;
  }
  /* line 5281, app/assets/stylesheets/braiform.scss */
  .order-sm-9 {
    order: 9;
  }
  /* line 5287, app/assets/stylesheets/braiform.scss */
  .order-sm-10 {
    order: 10;
  }
  /* line 5293, app/assets/stylesheets/braiform.scss */
  .order-sm-11 {
    order: 11;
  }
  /* line 5299, app/assets/stylesheets/braiform.scss */
  .order-sm-12 {
    order: 12;
  }
}

@media (min-width: 768px) {
  /* line 5307, app/assets/stylesheets/braiform.scss */
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 5316, app/assets/stylesheets/braiform.scss */
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  /* line 5324, app/assets/stylesheets/braiform.scss */
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 5331, app/assets/stylesheets/braiform.scss */
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 5338, app/assets/stylesheets/braiform.scss */
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 5345, app/assets/stylesheets/braiform.scss */
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 5352, app/assets/stylesheets/braiform.scss */
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 5359, app/assets/stylesheets/braiform.scss */
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 5366, app/assets/stylesheets/braiform.scss */
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 5373, app/assets/stylesheets/braiform.scss */
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 5380, app/assets/stylesheets/braiform.scss */
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 5387, app/assets/stylesheets/braiform.scss */
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 5394, app/assets/stylesheets/braiform.scss */
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 5401, app/assets/stylesheets/braiform.scss */
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 5408, app/assets/stylesheets/braiform.scss */
  .order-md-1 {
    order: 1;
  }
  /* line 5414, app/assets/stylesheets/braiform.scss */
  .order-md-2 {
    order: 2;
  }
  /* line 5420, app/assets/stylesheets/braiform.scss */
  .order-md-3 {
    order: 3;
  }
  /* line 5426, app/assets/stylesheets/braiform.scss */
  .order-md-4 {
    order: 4;
  }
  /* line 5432, app/assets/stylesheets/braiform.scss */
  .order-md-5 {
    order: 5;
  }
  /* line 5438, app/assets/stylesheets/braiform.scss */
  .order-md-6 {
    order: 6;
  }
  /* line 5444, app/assets/stylesheets/braiform.scss */
  .order-md-7 {
    order: 7;
  }
  /* line 5450, app/assets/stylesheets/braiform.scss */
  .order-md-8 {
    order: 8;
  }
  /* line 5456, app/assets/stylesheets/braiform.scss */
  .order-md-9 {
    order: 9;
  }
  /* line 5462, app/assets/stylesheets/braiform.scss */
  .order-md-10 {
    order: 10;
  }
  /* line 5468, app/assets/stylesheets/braiform.scss */
  .order-md-11 {
    order: 11;
  }
  /* line 5474, app/assets/stylesheets/braiform.scss */
  .order-md-12 {
    order: 12;
  }
}

@media (min-width: 992px) {
  /* line 5482, app/assets/stylesheets/braiform.scss */
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 5491, app/assets/stylesheets/braiform.scss */
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  /* line 5499, app/assets/stylesheets/braiform.scss */
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 5506, app/assets/stylesheets/braiform.scss */
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 5513, app/assets/stylesheets/braiform.scss */
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 5520, app/assets/stylesheets/braiform.scss */
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 5527, app/assets/stylesheets/braiform.scss */
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 5534, app/assets/stylesheets/braiform.scss */
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 5541, app/assets/stylesheets/braiform.scss */
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 5548, app/assets/stylesheets/braiform.scss */
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 5555, app/assets/stylesheets/braiform.scss */
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 5562, app/assets/stylesheets/braiform.scss */
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 5569, app/assets/stylesheets/braiform.scss */
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 5576, app/assets/stylesheets/braiform.scss */
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 5583, app/assets/stylesheets/braiform.scss */
  .order-lg-1 {
    order: 1;
  }
  /* line 5589, app/assets/stylesheets/braiform.scss */
  .order-lg-2 {
    order: 2;
  }
  /* line 5595, app/assets/stylesheets/braiform.scss */
  .order-lg-3 {
    order: 3;
  }
  /* line 5601, app/assets/stylesheets/braiform.scss */
  .order-lg-4 {
    order: 4;
  }
  /* line 5607, app/assets/stylesheets/braiform.scss */
  .order-lg-5 {
    order: 5;
  }
  /* line 5613, app/assets/stylesheets/braiform.scss */
  .order-lg-6 {
    order: 6;
  }
  /* line 5619, app/assets/stylesheets/braiform.scss */
  .order-lg-7 {
    order: 7;
  }
  /* line 5625, app/assets/stylesheets/braiform.scss */
  .order-lg-8 {
    order: 8;
  }
  /* line 5631, app/assets/stylesheets/braiform.scss */
  .order-lg-9 {
    order: 9;
  }
  /* line 5637, app/assets/stylesheets/braiform.scss */
  .order-lg-10 {
    order: 10;
  }
  /* line 5643, app/assets/stylesheets/braiform.scss */
  .order-lg-11 {
    order: 11;
  }
  /* line 5649, app/assets/stylesheets/braiform.scss */
  .order-lg-12 {
    order: 12;
  }
}

@media (min-width: 1200px) {
  /* line 5657, app/assets/stylesheets/braiform.scss */
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 5666, app/assets/stylesheets/braiform.scss */
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  /* line 5674, app/assets/stylesheets/braiform.scss */
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 5681, app/assets/stylesheets/braiform.scss */
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 5688, app/assets/stylesheets/braiform.scss */
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 5695, app/assets/stylesheets/braiform.scss */
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 5702, app/assets/stylesheets/braiform.scss */
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 5709, app/assets/stylesheets/braiform.scss */
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 5716, app/assets/stylesheets/braiform.scss */
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 5723, app/assets/stylesheets/braiform.scss */
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 5730, app/assets/stylesheets/braiform.scss */
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 5737, app/assets/stylesheets/braiform.scss */
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 5744, app/assets/stylesheets/braiform.scss */
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 5751, app/assets/stylesheets/braiform.scss */
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 5758, app/assets/stylesheets/braiform.scss */
  .order-xl-1 {
    order: 1;
  }
  /* line 5764, app/assets/stylesheets/braiform.scss */
  .order-xl-2 {
    order: 2;
  }
  /* line 5770, app/assets/stylesheets/braiform.scss */
  .order-xl-3 {
    order: 3;
  }
  /* line 5776, app/assets/stylesheets/braiform.scss */
  .order-xl-4 {
    order: 4;
  }
  /* line 5782, app/assets/stylesheets/braiform.scss */
  .order-xl-5 {
    order: 5;
  }
  /* line 5788, app/assets/stylesheets/braiform.scss */
  .order-xl-6 {
    order: 6;
  }
  /* line 5794, app/assets/stylesheets/braiform.scss */
  .order-xl-7 {
    order: 7;
  }
  /* line 5800, app/assets/stylesheets/braiform.scss */
  .order-xl-8 {
    order: 8;
  }
  /* line 5806, app/assets/stylesheets/braiform.scss */
  .order-xl-9 {
    order: 9;
  }
  /* line 5812, app/assets/stylesheets/braiform.scss */
  .order-xl-10 {
    order: 10;
  }
  /* line 5818, app/assets/stylesheets/braiform.scss */
  .order-xl-11 {
    order: 11;
  }
  /* line 5824, app/assets/stylesheets/braiform.scss */
  .order-xl-12 {
    order: 12;
  }
}

/* line 5831, app/assets/stylesheets/braiform.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

/* line 5838, app/assets/stylesheets/braiform.scss */
.table th, .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e9ecef;
}

/* line 5844, app/assets/stylesheets/braiform.scss */
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e9ecef;
}

/* line 5849, app/assets/stylesheets/braiform.scss */
.table tbody + tbody {
  border-top: 2px solid #e9ecef;
}

/* line 5853, app/assets/stylesheets/braiform.scss */
.table .table {
  background-color: #fff;
}

/* line 5857, app/assets/stylesheets/braiform.scss */
.table-sm th, .table-sm td {
  padding: 0.3rem;
}

/* line 5861, app/assets/stylesheets/braiform.scss */
.table-bordered {
  border: 1px solid #e9ecef;
}

/* line 5865, app/assets/stylesheets/braiform.scss */
.table-bordered th, .table-bordered td {
  border: 1px solid #e9ecef;
}

/* line 5869, app/assets/stylesheets/braiform.scss */
.table-bordered thead th, .table-bordered thead td {
  border-bottom-width: 2px;
}

/* line 5873, app/assets/stylesheets/braiform.scss */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 5877, app/assets/stylesheets/braiform.scss */
.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 5881, app/assets/stylesheets/braiform.scss */
.table-primary, .table-primary > th, .table-primary > td {
  background-color: #b8daff;
}

/* line 5885, app/assets/stylesheets/braiform.scss */
.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

/* line 5889, app/assets/stylesheets/braiform.scss */
.table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

/* line 5893, app/assets/stylesheets/braiform.scss */
.table-secondary, .table-secondary > th, .table-secondary > td {
  background-color: #dddfe2;
}

/* line 5897, app/assets/stylesheets/braiform.scss */
.table-hover .table-secondary:hover {
  background-color: #cfd2d6;
}

/* line 5901, app/assets/stylesheets/braiform.scss */
.table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th {
  background-color: #cfd2d6;
}

/* line 5905, app/assets/stylesheets/braiform.scss */
.table-success, .table-success > th, .table-success > td {
  background-color: #d8ecc8;
}

/* line 5909, app/assets/stylesheets/braiform.scss */
.table-hover .table-success:hover {
  background-color: #cbe5b5;
}

/* line 5913, app/assets/stylesheets/braiform.scss */
.table-hover .table-success:hover > td, .table-hover .table-success:hover > th {
  background-color: #cbe5b5;
}

/* line 5917, app/assets/stylesheets/braiform.scss */
.table-info, .table-info > th, .table-info > td {
  background-color: #bee5eb;
}

/* line 5921, app/assets/stylesheets/braiform.scss */
.table-hover .table-info:hover {
  background-color: #abdde5;
}

/* line 5925, app/assets/stylesheets/braiform.scss */
.table-hover .table-info:hover > td, .table-hover .table-info:hover > th {
  background-color: #abdde5;
}

/* line 5929, app/assets/stylesheets/braiform.scss */
.table-warning, .table-warning > th, .table-warning > td {
  background-color: #ffeeba;
}

/* line 5933, app/assets/stylesheets/braiform.scss */
.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

/* line 5937, app/assets/stylesheets/braiform.scss */
.table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

/* line 5941, app/assets/stylesheets/braiform.scss */
.table-danger, .table-danger > th, .table-danger > td {
  background-color: #f4cfd4;
}

/* line 5945, app/assets/stylesheets/braiform.scss */
.table-hover .table-danger:hover {
  background-color: #efbac1;
}

/* line 5949, app/assets/stylesheets/braiform.scss */
.table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {
  background-color: #efbac1;
}

/* line 5953, app/assets/stylesheets/braiform.scss */
.table-light, .table-light > th, .table-light > td {
  background-color: #fdfdfe;
}

/* line 5957, app/assets/stylesheets/braiform.scss */
.table-hover .table-light:hover {
  background-color: #ececf6;
}

/* line 5961, app/assets/stylesheets/braiform.scss */
.table-hover .table-light:hover > td, .table-hover .table-light:hover > th {
  background-color: #ececf6;
}

/* line 5965, app/assets/stylesheets/braiform.scss */
.table-dark, .table-dark > th, .table-dark > td {
  background-color: #c6c8ca;
}

/* line 5969, app/assets/stylesheets/braiform.scss */
.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

/* line 5973, app/assets/stylesheets/braiform.scss */
.table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

/* line 5977, app/assets/stylesheets/braiform.scss */
.table-active, .table-active > th, .table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 5981, app/assets/stylesheets/braiform.scss */
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 5985, app/assets/stylesheets/braiform.scss */
.table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 5989, app/assets/stylesheets/braiform.scss */
.thead-inverse th {
  color: #fff;
  background-color: #212529;
}

/* line 5994, app/assets/stylesheets/braiform.scss */
.thead-default th {
  color: #495057;
  background-color: #e9ecef;
}

/* line 5999, app/assets/stylesheets/braiform.scss */
.table-inverse {
  color: #fff;
  background-color: #212529;
}

/* line 6004, app/assets/stylesheets/braiform.scss */
.table-inverse th, .table-inverse td, .table-inverse thead th {
  border-color: #32383e;
}

/* line 6008, app/assets/stylesheets/braiform.scss */
.table-inverse.table-bordered {
  border: 0;
}

/* line 6012, app/assets/stylesheets/braiform.scss */
.table-inverse.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 6016, app/assets/stylesheets/braiform.scss */
.table-inverse.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 991px) {
  /* line 6021, app/assets/stylesheets/braiform.scss */
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  /* line 6028, app/assets/stylesheets/braiform.scss */
  .table-responsive.table-bordered {
    border: 0;
  }
}

/* line 6033, app/assets/stylesheets/braiform.scss */
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 6051, app/assets/stylesheets/braiform.scss */
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 6056, app/assets/stylesheets/braiform.scss */
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: none;
}

/* line 6063, app/assets/stylesheets/braiform.scss */
.form-control::-webkit-input-placeholder {
  color: #868e96;
  opacity: 1;
}

/* line 6068, app/assets/stylesheets/braiform.scss */
.form-control:-ms-input-placeholder {
  color: #868e96;
  opacity: 1;
}

/* line 6073, app/assets/stylesheets/braiform.scss */
.form-control::-moz-placeholder {
  color: #868e96;
  opacity: 1;
}
.form-control::placeholder {
  color: #868e96;
  opacity: 1;
}

/* line 6078, app/assets/stylesheets/braiform.scss */
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* line 6083, app/assets/stylesheets/braiform.scss */
select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

/* line 6087, app/assets/stylesheets/braiform.scss */
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* line 6092, app/assets/stylesheets/braiform.scss */
.form-control-file, .form-control-range {
  display: block;
}

/* line 6096, app/assets/stylesheets/braiform.scss */
.col-form-label {
  padding-top: calc(0.5rem - 1px * 2);
  padding-bottom: calc(0.5rem - 1px * 2);
  margin-bottom: 0;
}

/* line 6102, app/assets/stylesheets/braiform.scss */
.col-form-label-lg {
  padding-top: calc(0.5rem - 1px * 2);
  padding-bottom: calc(0.5rem - 1px * 2);
  font-size: 1.25rem;
}

/* line 6108, app/assets/stylesheets/braiform.scss */
.col-form-label-sm {
  padding-top: calc(0.25rem - 1px * 2);
  padding-bottom: calc(0.25rem - 1px * 2);
  font-size: 0.875rem;
}

/* line 6114, app/assets/stylesheets/braiform.scss */
.col-form-legend {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  font-size: 1rem;
}

/* line 6121, app/assets/stylesheets/braiform.scss */
.form-control-plaintext {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  line-height: 1.25;
  border: solid transparent;
  border-width: 1px 0;
}

/* line 6130, app/assets/stylesheets/braiform.scss */
.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, .input-group-sm > .form-control-plaintext.input-group-addon, .input-group-sm > .input-group-btn > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, .input-group-lg > .form-control-plaintext.input-group-addon, .input-group-lg > .input-group-btn > .form-control-plaintext.btn {
  padding-right: 0;
  padding-left: 0;
}

/* line 6135, app/assets/stylesheets/braiform.scss */
.form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0rem;
}

/* line 6142, app/assets/stylesheets/braiform.scss */
select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), .input-group-sm > select.input-group-addon:not([size]):not([multiple]), .input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}

/* line 6146, app/assets/stylesheets/braiform.scss */
.form-control-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0rem;
}

/* line 6153, app/assets/stylesheets/braiform.scss */
select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), .input-group-lg > select.input-group-addon:not([size]):not([multiple]), .input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px);
}

/* line 6157, app/assets/stylesheets/braiform.scss */
.form-group {
  margin-bottom: 1rem;
}

/* line 6161, app/assets/stylesheets/braiform.scss */
.form-text {
  display: block;
  margin-top: 0.25rem;
}

/* line 6166, app/assets/stylesheets/braiform.scss */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

/* line 6176, app/assets/stylesheets/braiform.scss */
.form-row > .col, .form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

/* line 6181, app/assets/stylesheets/braiform.scss */
.form-check {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
}

/* line 6187, app/assets/stylesheets/braiform.scss */
.form-check.disabled .form-check-label {
  color: #868e96;
}

/* line 6191, app/assets/stylesheets/braiform.scss */
.form-check-label {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

/* line 6196, app/assets/stylesheets/braiform.scss */
.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -1.25rem;
}

/* line 6202, app/assets/stylesheets/braiform.scss */
.form-check-inline {
  display: inline-block;
}

/* line 6206, app/assets/stylesheets/braiform.scss */
.form-check-inline .form-check-label {
  vertical-align: middle;
}

/* line 6210, app/assets/stylesheets/braiform.scss */
.form-check-inline + .form-check-inline {
  margin-left: 0.75rem;
}

/* line 6214, app/assets/stylesheets/braiform.scss */
.invalid-feedback {
  display: none;
  margin-top: .25rem;
  font-size: .875rem;
  color: #D75466;
}

/* line 6221, app/assets/stylesheets/braiform.scss */
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  width: 250px;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(215, 84, 102, 0.8);
  border-radius: .2rem;
}

/* line 6236, app/assets/stylesheets/braiform.scss */
.was-validated .form-control:valid, .form-control.is-valid, .was-validated
.custom-select:valid, .custom-select.is-valid {
  border-color: #72BA3A;
}

/* line 6241, app/assets/stylesheets/braiform.scss */
.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
.custom-select:valid:focus, .custom-select.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(114, 186, 58, 0.25);
}

/* line 6247, app/assets/stylesheets/braiform.scss */
.was-validated .form-control:valid ~ .invalid-feedback, .was-validated .form-control:valid ~ .invalid-tooltip, .form-control.is-valid ~ .invalid-feedback, .form-control.is-valid ~ .invalid-tooltip, .was-validated
.custom-select:valid ~ .invalid-feedback, .was-validated
.custom-select:valid ~ .invalid-tooltip, .custom-select.is-valid ~ .invalid-feedback, .custom-select.is-valid ~ .invalid-tooltip {
  display: block;
}

/* line 6253, app/assets/stylesheets/braiform.scss */
.was-validated .form-check-input:valid + .form-check-label, .form-check-input.is-valid + .form-check-label {
  color: #72BA3A;
}

/* line 6257, app/assets/stylesheets/braiform.scss */
.was-validated .custom-control-input:valid ~ .custom-control-indicator, .custom-control-input.is-valid ~ .custom-control-indicator {
  background-color: rgba(114, 186, 58, 0.25);
}

/* line 6261, app/assets/stylesheets/braiform.scss */
.was-validated .custom-control-input:valid ~ .custom-control-description, .custom-control-input.is-valid ~ .custom-control-description {
  color: #72BA3A;
}

/* line 6265, app/assets/stylesheets/braiform.scss */
.was-validated .custom-file-input:valid ~ .custom-file-control, .custom-file-input.is-valid ~ .custom-file-control {
  border-color: #72BA3A;
}

/* line 6269, app/assets/stylesheets/braiform.scss */
.was-validated .custom-file-input:valid ~ .custom-file-control::before, .custom-file-input.is-valid ~ .custom-file-control::before {
  border-color: inherit;
}

/* line 6273, app/assets/stylesheets/braiform.scss */
.was-validated .custom-file-input:valid:focus, .custom-file-input.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(114, 186, 58, 0.25);
}

/* line 6278, app/assets/stylesheets/braiform.scss */
.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid, .custom-select.is-invalid {
  border-color: #D75466;
}

/* line 6283, app/assets/stylesheets/braiform.scss */
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
.custom-select:invalid:focus, .custom-select.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 84, 102, 0.25);
}

/* line 6289, app/assets/stylesheets/braiform.scss */
.was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, .was-validated
.custom-select:invalid ~ .invalid-feedback, .was-validated
.custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 6295, app/assets/stylesheets/braiform.scss */
.was-validated .form-check-input:invalid + .form-check-label, .form-check-input.is-invalid + .form-check-label {
  color: #D75466;
}

/* line 6299, app/assets/stylesheets/braiform.scss */
.was-validated .custom-control-input:invalid ~ .custom-control-indicator, .custom-control-input.is-invalid ~ .custom-control-indicator {
  background-color: rgba(215, 84, 102, 0.25);
}

/* line 6303, app/assets/stylesheets/braiform.scss */
.was-validated .custom-control-input:invalid ~ .custom-control-description, .custom-control-input.is-invalid ~ .custom-control-description {
  color: #D75466;
}

/* line 6307, app/assets/stylesheets/braiform.scss */
.was-validated .custom-file-input:invalid ~ .custom-file-control, .custom-file-input.is-invalid ~ .custom-file-control {
  border-color: #D75466;
}

/* line 6311, app/assets/stylesheets/braiform.scss */
.was-validated .custom-file-input:invalid ~ .custom-file-control::before, .custom-file-input.is-invalid ~ .custom-file-control::before {
  border-color: inherit;
}

/* line 6315, app/assets/stylesheets/braiform.scss */
.was-validated .custom-file-input:invalid:focus, .custom-file-input.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 84, 102, 0.25);
}

/* line 6320, app/assets/stylesheets/braiform.scss */
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/* line 6333, app/assets/stylesheets/braiform.scss */
.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  /* line 6338, app/assets/stylesheets/braiform.scss */
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  /* line 6351, app/assets/stylesheets/braiform.scss */
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  /* line 6368, app/assets/stylesheets/braiform.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 6374, app/assets/stylesheets/braiform.scss */
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  /* line 6378, app/assets/stylesheets/braiform.scss */
  .form-inline .input-group {
    width: auto;
  }
  /* line 6382, app/assets/stylesheets/braiform.scss */
  .form-inline .form-control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 6387, app/assets/stylesheets/braiform.scss */
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  /* line 6402, app/assets/stylesheets/braiform.scss */
  .form-inline .form-check-label {
    padding-left: 0;
  }
  /* line 6406, app/assets/stylesheets/braiform.scss */
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  /* line 6413, app/assets/stylesheets/braiform.scss */
  .form-inline .custom-control {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
  }
  /* line 6426, app/assets/stylesheets/braiform.scss */
  .form-inline .custom-control-indicator {
    position: static;
    display: inline-block;
    margin-right: 0.25rem;
    vertical-align: text-bottom;
  }
  /* line 6433, app/assets/stylesheets/braiform.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 6438, app/assets/stylesheets/braiform.scss */
.btn {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: 0rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* line 6459, app/assets/stylesheets/braiform.scss */
.btn:focus, .btn:hover {
  text-decoration: none;
}

/* line 6463, app/assets/stylesheets/braiform.scss */
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* line 6469, app/assets/stylesheets/braiform.scss */
.btn.disabled, .btn:disabled {
  opacity: .65;
}

/* line 6473, app/assets/stylesheets/braiform.scss */
.btn:active, .btn.active {
  background-image: none;
}

/* line 6477, app/assets/stylesheets/braiform.scss */
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 6481, app/assets/stylesheets/braiform.scss */
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 6487, app/assets/stylesheets/braiform.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

/* line 6493, app/assets/stylesheets/braiform.scss */
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

/* line 6498, app/assets/stylesheets/braiform.scss */
.btn-primary.disabled, .btn-primary:disabled {
  background-color: #007bff;
  border-color: #007bff;
}

/* line 6503, app/assets/stylesheets/braiform.scss */
.btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  background-color: #0069d9;
  background-image: none;
  border-color: #0062cc;
}

/* line 6509, app/assets/stylesheets/braiform.scss */
.btn-secondary {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

/* line 6515, app/assets/stylesheets/braiform.scss */
.btn-secondary:hover {
  color: #fff;
  background-color: #727b84;
  border-color: #6c757d;
}

/* line 6521, app/assets/stylesheets/braiform.scss */
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
}

/* line 6526, app/assets/stylesheets/braiform.scss */
.btn-secondary.disabled, .btn-secondary:disabled {
  background-color: #868e96;
  border-color: #868e96;
}

/* line 6531, app/assets/stylesheets/braiform.scss */
.btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  background-color: #727b84;
  background-image: none;
  border-color: #6c757d;
}

/* line 6537, app/assets/stylesheets/braiform.scss */
.btn-success {
  color: #fff;
  background-color: #72BA3A;
  border-color: #72BA3A;
}

/* line 6543, app/assets/stylesheets/braiform.scss */
.btn-success:hover {
  color: #fff;
  background-color: #609d31;
  border-color: #5a932e;
}

/* line 6549, app/assets/stylesheets/braiform.scss */
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 3px rgba(114, 186, 58, 0.5);
}

/* line 6554, app/assets/stylesheets/braiform.scss */
.btn-success.disabled, .btn-success:disabled {
  background-color: #72BA3A;
  border-color: #72BA3A;
}

/* line 6559, app/assets/stylesheets/braiform.scss */
.btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  background-color: #609d31;
  background-image: none;
  border-color: #5a932e;
}

/* line 6565, app/assets/stylesheets/braiform.scss */
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 6571, app/assets/stylesheets/braiform.scss */
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

/* line 6577, app/assets/stylesheets/braiform.scss */
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

/* line 6582, app/assets/stylesheets/braiform.scss */
.btn-info.disabled, .btn-info:disabled {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 6587, app/assets/stylesheets/braiform.scss */
.btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  background-color: #138496;
  background-image: none;
  border-color: #117a8b;
}

/* line 6593, app/assets/stylesheets/braiform.scss */
.btn-warning {
  color: #111;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 6599, app/assets/stylesheets/braiform.scss */
.btn-warning:hover {
  color: #111;
  background-color: #e0a800;
  border-color: #d39e00;
}

/* line 6605, app/assets/stylesheets/braiform.scss */
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
}

/* line 6610, app/assets/stylesheets/braiform.scss */
.btn-warning.disabled, .btn-warning:disabled {
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 6615, app/assets/stylesheets/braiform.scss */
.btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  background-color: #e0a800;
  background-image: none;
  border-color: #d39e00;
}

/* line 6621, app/assets/stylesheets/braiform.scss */
.btn-danger {
  color: #fff;
  background-color: #D75466;
  border-color: #D75466;
}

/* line 6627, app/assets/stylesheets/braiform.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #d0354a;
  border-color: #c92f44;
}

/* line 6633, app/assets/stylesheets/braiform.scss */
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 3px rgba(215, 84, 102, 0.5);
}

/* line 6638, app/assets/stylesheets/braiform.scss */
.btn-danger.disabled, .btn-danger:disabled {
  background-color: #D75466;
  border-color: #D75466;
}

/* line 6643, app/assets/stylesheets/braiform.scss */
.btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  background-color: #d0354a;
  background-image: none;
  border-color: #c92f44;
}

/* line 6649, app/assets/stylesheets/braiform.scss */
.btn-light {
  color: #111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 6655, app/assets/stylesheets/braiform.scss */
.btn-light:hover {
  color: #111;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

/* line 6661, app/assets/stylesheets/braiform.scss */
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}

/* line 6666, app/assets/stylesheets/braiform.scss */
.btn-light.disabled, .btn-light:disabled {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 6671, app/assets/stylesheets/braiform.scss */
.btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  background-color: #e2e6ea;
  background-image: none;
  border-color: #dae0e5;
}

/* line 6677, app/assets/stylesheets/braiform.scss */
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 6683, app/assets/stylesheets/braiform.scss */
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

/* line 6689, app/assets/stylesheets/braiform.scss */
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
}

/* line 6694, app/assets/stylesheets/braiform.scss */
.btn-dark.disabled, .btn-dark:disabled {
  background-color: #343a40;
  border-color: #343a40;
}

/* line 6699, app/assets/stylesheets/braiform.scss */
.btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  background-color: #23272b;
  background-image: none;
  border-color: #1d2124;
}

/* line 6705, app/assets/stylesheets/braiform.scss */
.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}

/* line 6712, app/assets/stylesheets/braiform.scss */
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 6718, app/assets/stylesheets/braiform.scss */
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

/* line 6723, app/assets/stylesheets/braiform.scss */
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

/* line 6728, app/assets/stylesheets/braiform.scss */
.btn-outline-primary:active, .btn-outline-primary.active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 6734, app/assets/stylesheets/braiform.scss */
.btn-outline-secondary {
  color: #868e96;
  background-color: transparent;
  background-image: none;
  border-color: #868e96;
}

/* line 6741, app/assets/stylesheets/braiform.scss */
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

/* line 6747, app/assets/stylesheets/braiform.scss */
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
}

/* line 6752, app/assets/stylesheets/braiform.scss */
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #868e96;
  background-color: transparent;
}

/* line 6757, app/assets/stylesheets/braiform.scss */
.btn-outline-secondary:active, .btn-outline-secondary.active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

/* line 6763, app/assets/stylesheets/braiform.scss */
.btn-outline-success {
  color: #72BA3A;
  background-color: transparent;
  background-image: none;
  border-color: #72BA3A;
}

/* line 6770, app/assets/stylesheets/braiform.scss */
.btn-outline-success:hover {
  color: #fff;
  background-color: #72BA3A;
  border-color: #72BA3A;
}

/* line 6776, app/assets/stylesheets/braiform.scss */
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 3px rgba(114, 186, 58, 0.5);
}

/* line 6781, app/assets/stylesheets/braiform.scss */
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #72BA3A;
  background-color: transparent;
}

/* line 6786, app/assets/stylesheets/braiform.scss */
.btn-outline-success:active, .btn-outline-success.active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #72BA3A;
  border-color: #72BA3A;
}

/* line 6792, app/assets/stylesheets/braiform.scss */
.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

/* line 6799, app/assets/stylesheets/braiform.scss */
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 6805, app/assets/stylesheets/braiform.scss */
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

/* line 6810, app/assets/stylesheets/braiform.scss */
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

/* line 6815, app/assets/stylesheets/braiform.scss */
.btn-outline-info:active, .btn-outline-info.active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 6821, app/assets/stylesheets/braiform.scss */
.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

/* line 6828, app/assets/stylesheets/braiform.scss */
.btn-outline-warning:hover {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 6834, app/assets/stylesheets/braiform.scss */
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
}

/* line 6839, app/assets/stylesheets/braiform.scss */
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

/* line 6844, app/assets/stylesheets/braiform.scss */
.btn-outline-warning:active, .btn-outline-warning.active, .show > .btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 6850, app/assets/stylesheets/braiform.scss */
.btn-outline-danger {
  color: #D75466;
  background-color: transparent;
  background-image: none;
  border-color: #D75466;
}

/* line 6857, app/assets/stylesheets/braiform.scss */
.btn-outline-danger:hover {
  color: #fff;
  background-color: #D75466;
  border-color: #D75466;
}

/* line 6863, app/assets/stylesheets/braiform.scss */
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 3px rgba(215, 84, 102, 0.5);
}

/* line 6868, app/assets/stylesheets/braiform.scss */
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #D75466;
  background-color: transparent;
}

/* line 6873, app/assets/stylesheets/braiform.scss */
.btn-outline-danger:active, .btn-outline-danger.active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #D75466;
  border-color: #D75466;
}

/* line 6879, app/assets/stylesheets/braiform.scss */
.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

/* line 6886, app/assets/stylesheets/braiform.scss */
.btn-outline-light:hover {
  color: #fff;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 6892, app/assets/stylesheets/braiform.scss */
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}

/* line 6897, app/assets/stylesheets/braiform.scss */
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

/* line 6902, app/assets/stylesheets/braiform.scss */
.btn-outline-light:active, .btn-outline-light.active, .show > .btn-outline-light.dropdown-toggle {
  color: #fff;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 6908, app/assets/stylesheets/braiform.scss */
.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

/* line 6915, app/assets/stylesheets/braiform.scss */
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 6921, app/assets/stylesheets/braiform.scss */
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
}

/* line 6926, app/assets/stylesheets/braiform.scss */
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

/* line 6931, app/assets/stylesheets/braiform.scss */
.btn-outline-dark:active, .btn-outline-dark.active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 6937, app/assets/stylesheets/braiform.scss */
.btn-link {
  font-weight: normal;
  color: #007bff;
  border-radius: 0;
}

/* line 6943, app/assets/stylesheets/braiform.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
  background-color: transparent;
}

/* line 6947, app/assets/stylesheets/braiform.scss */
.btn-link, .btn-link:focus, .btn-link:active {
  border-color: transparent;
  box-shadow: none;
}

/* line 6953, app/assets/stylesheets/braiform.scss */
.btn-link:hover {
  border-color: transparent;
}

/* line 6957, app/assets/stylesheets/braiform.scss */
.btn-link:focus, .btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
}

/* line 6963, app/assets/stylesheets/braiform.scss */
.btn-link:disabled {
  color: #868e96;
}

/* line 6967, app/assets/stylesheets/braiform.scss */
.btn-link:disabled:focus, .btn-link:disabled:hover {
  text-decoration: none;
}

/* line 6971, app/assets/stylesheets/braiform.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0rem;
}

/* line 6978, app/assets/stylesheets/braiform.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0rem;
}

/* line 6985, app/assets/stylesheets/braiform.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 6990, app/assets/stylesheets/braiform.scss */
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

/* line 6994, app/assets/stylesheets/braiform.scss */
input.btn-block[type="submit"], input.btn-block[type="reset"], input.btn-block[type="button"] {
  width: 100%;
}

/* line 6998, app/assets/stylesheets/braiform.scss */
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

/* line 7004, app/assets/stylesheets/braiform.scss */
.fade.show {
  opacity: 1;
}

/* line 7008, app/assets/stylesheets/braiform.scss */
.collapse {
  display: none;
}

/* line 7012, app/assets/stylesheets/braiform.scss */
.collapse.show {
  display: block;
}

/* line 7016, app/assets/stylesheets/braiform.scss */
tr.collapse.show {
  display: table-row;
}

/* line 7020, app/assets/stylesheets/braiform.scss */
tbody.collapse.show {
  display: table-row-group;
}

/* line 7024, app/assets/stylesheets/braiform.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

/* line 7032, app/assets/stylesheets/braiform.scss */
.dropup, .dropdown {
  position: relative;
}

/* line 7036, app/assets/stylesheets/braiform.scss */
.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

/* line 7048, app/assets/stylesheets/braiform.scss */
.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 7052, app/assets/stylesheets/braiform.scss */
.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0.125rem;
}

/* line 7057, app/assets/stylesheets/braiform.scss */
.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid;
}

/* line 7062, app/assets/stylesheets/braiform.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0rem;
}

/* line 7082, app/assets/stylesheets/braiform.scss */
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

/* line 7089, app/assets/stylesheets/braiform.scss */
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: normal;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0;
}

/* line 7102, app/assets/stylesheets/braiform.scss */
.dropdown-item:focus, .dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 7108, app/assets/stylesheets/braiform.scss */
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

/* line 7114, app/assets/stylesheets/braiform.scss */
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #868e96;
  background-color: transparent;
}

/* line 7119, app/assets/stylesheets/braiform.scss */
.show > a {
  outline: 0;
}

/* line 7123, app/assets/stylesheets/braiform.scss */
.dropdown-menu.show {
  display: block;
}

/* line 7127, app/assets/stylesheets/braiform.scss */
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #868e96;
  white-space: nowrap;
}

/* line 7136, app/assets/stylesheets/braiform.scss */
.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

/* line 7144, app/assets/stylesheets/braiform.scss */
.btn-group > .btn, .btn-group-vertical > .btn {
  position: relative;
  flex: 0 1 auto;
  margin-bottom: 0;
}

/* line 7152, app/assets/stylesheets/braiform.scss */
.btn-group > .btn:hover, .btn-group-vertical > .btn:hover {
  z-index: 2;
}

/* line 7156, app/assets/stylesheets/braiform.scss */
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 7160, app/assets/stylesheets/braiform.scss */
.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 7164, app/assets/stylesheets/braiform.scss */
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* line 7175, app/assets/stylesheets/braiform.scss */
.btn-toolbar .input-group {
  width: auto;
}

/* line 7179, app/assets/stylesheets/braiform.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 7183, app/assets/stylesheets/braiform.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 7187, app/assets/stylesheets/braiform.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 7192, app/assets/stylesheets/braiform.scss */
.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 7197, app/assets/stylesheets/braiform.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 7201, app/assets/stylesheets/braiform.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 7205, app/assets/stylesheets/braiform.scss */
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 7210, app/assets/stylesheets/braiform.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 7215, app/assets/stylesheets/braiform.scss */
.btn + .dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

/* line 7220, app/assets/stylesheets/braiform.scss */
.btn + .dropdown-toggle-split::after {
  margin-left: 0;
}

/* line 7224, app/assets/stylesheets/braiform.scss */
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

/* line 7229, app/assets/stylesheets/braiform.scss */
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* line 7234, app/assets/stylesheets/braiform.scss */
.btn-group-vertical {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* line 7250, app/assets/stylesheets/braiform.scss */
.btn-group-vertical .btn, .btn-group-vertical .btn-group {
  width: 100%;
}

/* line 7254, app/assets/stylesheets/braiform.scss */
.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 7259, app/assets/stylesheets/braiform.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 7263, app/assets/stylesheets/braiform.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 7268, app/assets/stylesheets/braiform.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 7273, app/assets/stylesheets/braiform.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 7277, app/assets/stylesheets/braiform.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 7282, app/assets/stylesheets/braiform.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 7287, app/assets/stylesheets/braiform.scss */
[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7293, app/assets/stylesheets/braiform.scss */
.input-group {
  position: relative;
  display: flex;
  width: 100%;
}

/* line 7301, app/assets/stylesheets/braiform.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

/* line 7311, app/assets/stylesheets/braiform.scss */
.input-group .form-control:focus, .input-group .form-control:active, .input-group .form-control:hover {
  z-index: 3;
}

/* line 7315, app/assets/stylesheets/braiform.scss */
.input-group-addon, .input-group-btn, .input-group .form-control {
  display: flex;
  align-items: center;
}

/* line 7324, app/assets/stylesheets/braiform.scss */
.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 7328, app/assets/stylesheets/braiform.scss */
.input-group-addon, .input-group-btn {
  white-space: nowrap;
  vertical-align: middle;
}

/* line 7333, app/assets/stylesheets/braiform.scss */
.input-group-addon {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.25;
  color: #495057;
  text-align: center;
  background-color: #e9ecef;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0rem;
}

/* line 7347, app/assets/stylesheets/braiform.scss */
.input-group-addon.form-control-sm, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0rem;
}

/* line 7353, app/assets/stylesheets/braiform.scss */
.input-group-addon.form-control-lg, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0rem;
}

/* line 7359, app/assets/stylesheets/braiform.scss */
.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 7363, app/assets/stylesheets/braiform.scss */
.input-group .form-control:not(:last-child), .input-group-addon:not(:last-child), .input-group-btn:not(:last-child) > .btn, .input-group-btn:not(:last-child) > .btn-group > .btn, .input-group-btn:not(:last-child) > .dropdown-toggle, .input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 7368, app/assets/stylesheets/braiform.scss */
.input-group-addon:not(:last-child) {
  border-right: 0;
}

/* line 7372, app/assets/stylesheets/braiform.scss */
.input-group .form-control:not(:first-child), .input-group-addon:not(:first-child), .input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .btn-group > .btn, .input-group-btn:not(:first-child) > .dropdown-toggle, .input-group-btn:not(:last-child) > .btn:not(:first-child), .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 7377, app/assets/stylesheets/braiform.scss */
.form-control + .input-group-addon:not(:first-child) {
  border-left: 0;
}

/* line 7381, app/assets/stylesheets/braiform.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 7387, app/assets/stylesheets/braiform.scss */
.input-group-btn > .btn {
  position: relative;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* line 7393, app/assets/stylesheets/braiform.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 7397, app/assets/stylesheets/braiform.scss */
.input-group-btn > .btn:focus, .input-group-btn > .btn:active, .input-group-btn > .btn:hover {
  z-index: 3;
}

/* line 7401, app/assets/stylesheets/braiform.scss */
.input-group-btn:not(:last-child) > .btn, .input-group-btn:not(:last-child) > .btn-group {
  margin-right: -1px;
}

/* line 7405, app/assets/stylesheets/braiform.scss */
.input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 7410, app/assets/stylesheets/braiform.scss */
.input-group-btn:not(:first-child) > .btn:focus, .input-group-btn:not(:first-child) > .btn:active, .input-group-btn:not(:first-child) > .btn:hover, .input-group-btn:not(:first-child) > .btn-group:focus, .input-group-btn:not(:first-child) > .btn-group:active, .input-group-btn:not(:first-child) > .btn-group:hover {
  z-index: 3;
}

/* line 7414, app/assets/stylesheets/braiform.scss */
.custom-control {
  position: relative;
  display: inline-flex;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  margin-right: 1rem;
}

/* line 7424, app/assets/stylesheets/braiform.scss */
.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* line 7430, app/assets/stylesheets/braiform.scss */
.custom-control-input:checked ~ .custom-control-indicator {
  color: #fff;
  background-color: #007bff;
}

/* line 7435, app/assets/stylesheets/braiform.scss */
.custom-control-input:focus ~ .custom-control-indicator {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007bff;
}

/* line 7440, app/assets/stylesheets/braiform.scss */
.custom-control-input:active ~ .custom-control-indicator {
  color: #fff;
  background-color: #b3d7ff;
}

/* line 7445, app/assets/stylesheets/braiform.scss */
.custom-control-input:disabled ~ .custom-control-indicator {
  background-color: #e9ecef;
}

/* line 7449, app/assets/stylesheets/braiform.scss */
.custom-control-input:disabled ~ .custom-control-description {
  color: #868e96;
}

/* line 7453, app/assets/stylesheets/braiform.scss */
.custom-control-indicator {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/* line 7471, app/assets/stylesheets/braiform.scss */
.custom-checkbox .custom-control-indicator {
  border-radius: 0rem;
}

/* line 7475, app/assets/stylesheets/braiform.scss */
.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

/* line 7479, app/assets/stylesheets/braiform.scss */
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
  background-color: #007bff;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

/* line 7484, app/assets/stylesheets/braiform.scss */
.custom-radio .custom-control-indicator {
  border-radius: 50%;
}

/* line 7488, app/assets/stylesheets/braiform.scss */
.custom-radio .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

/* line 7492, app/assets/stylesheets/braiform.scss */
.custom-controls-stacked {
  display: flex;
  flex-direction: column;
}

/* line 7502, app/assets/stylesheets/braiform.scss */
.custom-controls-stacked .custom-control {
  margin-bottom: 0.25rem;
}

/* line 7506, app/assets/stylesheets/braiform.scss */
.custom-controls-stacked .custom-control + .custom-control {
  margin-left: 0;
}

/* line 7510, app/assets/stylesheets/braiform.scss */
.custom-select {
  display: inline-block;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.25;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-clip: padding-box;
  background-size: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 7528, app/assets/stylesheets/braiform.scss */
.custom-select:focus {
  border-color: #80bdff;
  outline: none;
}

/* line 7533, app/assets/stylesheets/braiform.scss */
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* line 7538, app/assets/stylesheets/braiform.scss */
.custom-select:disabled {
  color: #868e96;
  background-color: #e9ecef;
}

/* line 7543, app/assets/stylesheets/braiform.scss */
.custom-select::-ms-expand {
  opacity: 0;
}

/* line 7547, app/assets/stylesheets/braiform.scss */
.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

/* line 7554, app/assets/stylesheets/braiform.scss */
.custom-file {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

/* line 7562, app/assets/stylesheets/braiform.scss */
.custom-file-input {
  min-width: 14rem;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}

/* line 7570, app/assets/stylesheets/braiform.scss */
.custom-file-input:focus ~ .custom-file-control {
  box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #007bff;
}

/* line 7575, app/assets/stylesheets/braiform.scss */
.custom-file-control {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: calc(2.25rem + 2px);
  padding: 0.5rem 0.75rem;
  overflow: hidden;
  line-height: 1.25;
  color: #495057;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0rem;
}

/* line 7597, app/assets/stylesheets/braiform.scss */
.custom-file-control:lang(en):empty::after {
  content: "Choose file...";
}

/* line 7601, app/assets/stylesheets/braiform.scss */
.custom-file-control::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 6;
  display: block;
  height: calc(2.25rem + 2px);
  padding: 0.5rem 0.75rem;
  line-height: 1.25;
  color: #495057;
  background-color: #e9ecef;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

/* line 7615, app/assets/stylesheets/braiform.scss */
.custom-file-control:lang(en)::before {
  content: "Browse";
}

/* line 7619, app/assets/stylesheets/braiform.scss */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 7630, app/assets/stylesheets/braiform.scss */
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

/* line 7635, app/assets/stylesheets/braiform.scss */
.nav-link:focus, .nav-link:hover {
  text-decoration: none;
}

/* line 7639, app/assets/stylesheets/braiform.scss */
.nav-link.disabled {
  color: #868e96;
}

/* line 7643, app/assets/stylesheets/braiform.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 7647, app/assets/stylesheets/braiform.scss */
.nav-tabs .nav-item {
  margin-bottom: -1px;
}

/* line 7651, app/assets/stylesheets/braiform.scss */
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
}

/* line 7657, app/assets/stylesheets/braiform.scss */
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #ddd;
}

/* line 7661, app/assets/stylesheets/braiform.scss */
.nav-tabs .nav-link.disabled {
  color: #868e96;
  background-color: transparent;
  border-color: transparent;
}

/* line 7667, app/assets/stylesheets/braiform.scss */
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #ddd #ddd #fff;
}

/* line 7673, app/assets/stylesheets/braiform.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 7679, app/assets/stylesheets/braiform.scss */
.nav-pills .nav-link {
  border-radius: 0rem;
}

/* line 7683, app/assets/stylesheets/braiform.scss */
.nav-pills .nav-link.active, .show > .nav-pills .nav-link {
  color: #fff;
  background-color: #007bff;
}

/* line 7688, app/assets/stylesheets/braiform.scss */
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

/* line 7695, app/assets/stylesheets/braiform.scss */
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

/* line 7704, app/assets/stylesheets/braiform.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 7708, app/assets/stylesheets/braiform.scss */
.tab-content > .active {
  display: block;
}

/* line 7712, app/assets/stylesheets/braiform.scss */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

/* line 7728, app/assets/stylesheets/braiform.scss */
.navbar > .container, .navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* line 7742, app/assets/stylesheets/braiform.scss */
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

/* line 7752, app/assets/stylesheets/braiform.scss */
.navbar-brand:focus, .navbar-brand:hover {
  text-decoration: none;
}

/* line 7756, app/assets/stylesheets/braiform.scss */
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 7769, app/assets/stylesheets/braiform.scss */
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

/* line 7774, app/assets/stylesheets/braiform.scss */
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

/* line 7779, app/assets/stylesheets/braiform.scss */
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 7785, app/assets/stylesheets/braiform.scss */
.navbar-collapse {
  flex-basis: 100%;
  align-items: center;
}

/* line 7793, app/assets/stylesheets/braiform.scss */
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0rem;
}

/* line 7802, app/assets/stylesheets/braiform.scss */
.navbar-toggler:focus, .navbar-toggler:hover {
  text-decoration: none;
}

/* line 7806, app/assets/stylesheets/braiform.scss */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575px) {
  /* line 7817, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  /* line 7824, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 7836, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  /* line 7843, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 7847, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  /* line 7852, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  /* line 7857, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  /* line 7862, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
  }
  /* line 7868, app/assets/stylesheets/braiform.scss */
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767px) {
  /* line 7874, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  /* line 7881, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 7893, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  /* line 7900, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 7904, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  /* line 7909, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  /* line 7914, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }
  /* line 7919, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
  }
  /* line 7925, app/assets/stylesheets/braiform.scss */
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991px) {
  /* line 7931, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  /* line 7938, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 7950, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  /* line 7957, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 7961, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  /* line 7966, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  /* line 7971, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  /* line 7976, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
  /* line 7982, app/assets/stylesheets/braiform.scss */
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199px) {
  /* line 7988, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 7995, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 8007, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  /* line 8014, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 8018, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  /* line 8023, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  /* line 8028, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }
  /* line 8033, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
  }
  /* line 8039, app/assets/stylesheets/braiform.scss */
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

/* line 8044, app/assets/stylesheets/braiform.scss */
.navbar-expand {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

/* line 8056, app/assets/stylesheets/braiform.scss */
.navbar-expand > .container, .navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

/* line 8061, app/assets/stylesheets/braiform.scss */
.navbar-expand .navbar-nav {
  flex-direction: row;
}

/* line 8068, app/assets/stylesheets/braiform.scss */
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

/* line 8072, app/assets/stylesheets/braiform.scss */
.navbar-expand .navbar-nav .dropdown-menu-right {
  right: 0;
  left: auto;
}

/* line 8077, app/assets/stylesheets/braiform.scss */
.navbar-expand .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}

/* line 8082, app/assets/stylesheets/braiform.scss */
.navbar-expand > .container, .navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}

/* line 8087, app/assets/stylesheets/braiform.scss */
.navbar-expand .navbar-collapse {
  display: flex !important;
}

/* line 8093, app/assets/stylesheets/braiform.scss */
.navbar-expand .navbar-toggler {
  display: none;
}

/* line 8097, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

/* line 8101, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

/* line 8105, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

/* line 8109, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

/* line 8113, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

/* line 8117, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

/* line 8121, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 8126, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* line 8130, app/assets/stylesheets/braiform.scss */
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

/* line 8134, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-brand {
  color: white;
}

/* line 8138, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
  color: white;
}

/* line 8142, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

/* line 8146, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* line 8150, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

/* line 8154, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active {
  color: white;
}

/* line 8158, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 8163, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* line 8167, app/assets/stylesheets/braiform.scss */
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

/* line 8171, app/assets/stylesheets/braiform.scss */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
}

/* line 8188, app/assets/stylesheets/braiform.scss */
.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

/* line 8195, app/assets/stylesheets/braiform.scss */
.card-title {
  margin-bottom: 0.75rem;
}

/* line 8199, app/assets/stylesheets/braiform.scss */
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

/* line 8204, app/assets/stylesheets/braiform.scss */
.card-text:last-child {
  margin-bottom: 0;
}

/* line 8208, app/assets/stylesheets/braiform.scss */
.card-link:hover {
  text-decoration: none;
}

/* line 8212, app/assets/stylesheets/braiform.scss */
.card-link + .card-link {
  margin-left: 1.25rem;
}

/* line 8216, app/assets/stylesheets/braiform.scss */
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
}

/* line 8221, app/assets/stylesheets/braiform.scss */
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

/* line 8226, app/assets/stylesheets/braiform.scss */
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 8233, app/assets/stylesheets/braiform.scss */
.card-header:first-child {
  border-radius: calc(0rem - 1px) calc(0rem - 1px) 0 0;
}

/* line 8237, app/assets/stylesheets/braiform.scss */
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 8243, app/assets/stylesheets/braiform.scss */
.card-footer:last-child {
  border-radius: 0 0 calc(0rem - 1px) calc(0rem - 1px);
}

/* line 8247, app/assets/stylesheets/braiform.scss */
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

/* line 8254, app/assets/stylesheets/braiform.scss */
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

/* line 8259, app/assets/stylesheets/braiform.scss */
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

/* line 8268, app/assets/stylesheets/braiform.scss */
.card-img {
  width: 100%;
  border-radius: calc(0rem - 1px);
}

/* line 8273, app/assets/stylesheets/braiform.scss */
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0rem - 1px);
  border-top-right-radius: calc(0rem - 1px);
}

/* line 8279, app/assets/stylesheets/braiform.scss */
.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0rem - 1px);
  border-bottom-left-radius: calc(0rem - 1px);
}

@media (min-width: 576px) {
  /* line 8286, app/assets/stylesheets/braiform.scss */
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  /* line 8298, app/assets/stylesheets/braiform.scss */
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 576px) {
  /* line 8315, app/assets/stylesheets/braiform.scss */
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  /* line 8325, app/assets/stylesheets/braiform.scss */
  .card-group .card {
    flex: 1 0 0%;
  }
  /* line 8331, app/assets/stylesheets/braiform.scss */
  .card-group .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  /* line 8336, app/assets/stylesheets/braiform.scss */
  .card-group .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* line 8341, app/assets/stylesheets/braiform.scss */
  .card-group .card:first-child .card-img-top {
    border-top-right-radius: 0;
  }
  /* line 8345, app/assets/stylesheets/braiform.scss */
  .card-group .card:first-child .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  /* line 8349, app/assets/stylesheets/braiform.scss */
  .card-group .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  /* line 8354, app/assets/stylesheets/braiform.scss */
  .card-group .card:last-child .card-img-top {
    border-top-left-radius: 0;
  }
  /* line 8358, app/assets/stylesheets/braiform.scss */
  .card-group .card:last-child .card-img-bottom {
    border-bottom-left-radius: 0;
  }
  /* line 8362, app/assets/stylesheets/braiform.scss */
  .card-group .card:not(:first-child):not(:last-child) {
    border-radius: 0;
  }
  /* line 8366, app/assets/stylesheets/braiform.scss */
  .card-group .card:not(:first-child):not(:last-child) .card-img-top, .card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
    border-radius: 0;
  }
}

/* line 8371, app/assets/stylesheets/braiform.scss */
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  /* line 8376, app/assets/stylesheets/braiform.scss */
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  /* line 8383, app/assets/stylesheets/braiform.scss */
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/* line 8389, app/assets/stylesheets/braiform.scss */
.breadcrumb {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0rem;
}

/* line 8397, app/assets/stylesheets/braiform.scss */
.breadcrumb::after {
  display: block;
  clear: both;
  content: "";
}

/* line 8403, app/assets/stylesheets/braiform.scss */
.breadcrumb-item {
  float: left;
}

/* line 8407, app/assets/stylesheets/braiform.scss */
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #868e96;
  content: "/";
}

/* line 8415, app/assets/stylesheets/braiform.scss */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

/* line 8419, app/assets/stylesheets/braiform.scss */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

/* line 8423, app/assets/stylesheets/braiform.scss */
.breadcrumb-item.active {
  color: #868e96;
}

/* line 8427, app/assets/stylesheets/braiform.scss */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0rem;
}

/* line 8436, app/assets/stylesheets/braiform.scss */
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

/* line 8442, app/assets/stylesheets/braiform.scss */
.page-item:last-child .page-link {
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 0rem;
}

/* line 8447, app/assets/stylesheets/braiform.scss */
.page-item.active .page-link {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 8454, app/assets/stylesheets/braiform.scss */
.page-item.disabled .page-link {
  color: #868e96;
  pointer-events: none;
  background-color: #fff;
  border-color: #ddd;
}

/* line 8461, app/assets/stylesheets/braiform.scss */
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 8472, app/assets/stylesheets/braiform.scss */
.page-link:focus, .page-link:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #ddd;
}

/* line 8479, app/assets/stylesheets/braiform.scss */
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 8485, app/assets/stylesheets/braiform.scss */
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

/* line 8490, app/assets/stylesheets/braiform.scss */
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 0rem;
}

/* line 8495, app/assets/stylesheets/braiform.scss */
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 8501, app/assets/stylesheets/braiform.scss */
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

/* line 8506, app/assets/stylesheets/braiform.scss */
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 0rem;
}

/* line 8511, app/assets/stylesheets/braiform.scss */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0rem;
}

/* line 8524, app/assets/stylesheets/braiform.scss */
.badge:empty {
  display: none;
}

/* line 8528, app/assets/stylesheets/braiform.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 8533, app/assets/stylesheets/braiform.scss */
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

/* line 8539, app/assets/stylesheets/braiform.scss */
.badge-primary {
  color: #fff;
  background-color: #007bff;
}

/* line 8544, app/assets/stylesheets/braiform.scss */
.badge-primary[href]:focus, .badge-primary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}

/* line 8550, app/assets/stylesheets/braiform.scss */
.badge-secondary {
  color: #fff;
  background-color: #868e96;
}

/* line 8555, app/assets/stylesheets/braiform.scss */
.badge-secondary[href]:focus, .badge-secondary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #6c757d;
}

/* line 8561, app/assets/stylesheets/braiform.scss */
.badge-success {
  color: #fff;
  background-color: #72BA3A;
}

/* line 8566, app/assets/stylesheets/braiform.scss */
.badge-success[href]:focus, .badge-success[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #5a932e;
}

/* line 8572, app/assets/stylesheets/braiform.scss */
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

/* line 8577, app/assets/stylesheets/braiform.scss */
.badge-info[href]:focus, .badge-info[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

/* line 8583, app/assets/stylesheets/braiform.scss */
.badge-warning {
  color: #111;
  background-color: #ffc107;
}

/* line 8588, app/assets/stylesheets/braiform.scss */
.badge-warning[href]:focus, .badge-warning[href]:hover {
  color: #111;
  text-decoration: none;
  background-color: #d39e00;
}

/* line 8594, app/assets/stylesheets/braiform.scss */
.badge-danger {
  color: #fff;
  background-color: #D75466;
}

/* line 8599, app/assets/stylesheets/braiform.scss */
.badge-danger[href]:focus, .badge-danger[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #c92f44;
}

/* line 8605, app/assets/stylesheets/braiform.scss */
.badge-light {
  color: #111;
  background-color: #f8f9fa;
}

/* line 8610, app/assets/stylesheets/braiform.scss */
.badge-light[href]:focus, .badge-light[href]:hover {
  color: #111;
  text-decoration: none;
  background-color: #dae0e5;
}

/* line 8616, app/assets/stylesheets/braiform.scss */
.badge-dark {
  color: #fff;
  background-color: #343a40;
}

/* line 8621, app/assets/stylesheets/braiform.scss */
.badge-dark[href]:focus, .badge-dark[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

/* line 8627, app/assets/stylesheets/braiform.scss */
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0rem;
}

@media (min-width: 576px) {
  /* line 8635, app/assets/stylesheets/braiform.scss */
  .jumbotron {
    padding: 4rem 2rem;
  }
}

/* line 8640, app/assets/stylesheets/braiform.scss */
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

/* line 8646, app/assets/stylesheets/braiform.scss */
.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0rem;
}

/* line 8653, app/assets/stylesheets/braiform.scss */
.alert-heading {
  color: inherit;
}

/* line 8657, app/assets/stylesheets/braiform.scss */
.alert-link {
  font-weight: bold;
}

/* line 8661, app/assets/stylesheets/braiform.scss */
.alert-dismissible .close {
  position: relative;
  top: -0.75rem;
  right: -1.25rem;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

/* line 8669, app/assets/stylesheets/braiform.scss */
.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

/* line 8675, app/assets/stylesheets/braiform.scss */
.alert-primary hr {
  border-top-color: #9fcdff;
}

/* line 8679, app/assets/stylesheets/braiform.scss */
.alert-primary .alert-link {
  color: #002752;
}

/* line 8683, app/assets/stylesheets/braiform.scss */
.alert-secondary {
  color: #464a4e;
  background-color: #e7e8ea;
  border-color: #dddfe2;
}

/* line 8689, app/assets/stylesheets/braiform.scss */
.alert-secondary hr {
  border-top-color: #cfd2d6;
}

/* line 8693, app/assets/stylesheets/braiform.scss */
.alert-secondary .alert-link {
  color: #2e3133;
}

/* line 8697, app/assets/stylesheets/braiform.scss */
.alert-success {
  color: #3b611e;
  background-color: #e3f1d8;
  border-color: #d8ecc8;
}

/* line 8703, app/assets/stylesheets/braiform.scss */
.alert-success hr {
  border-top-color: #cbe5b5;
}

/* line 8707, app/assets/stylesheets/braiform.scss */
.alert-success .alert-link {
  color: #233a12;
}

/* line 8711, app/assets/stylesheets/braiform.scss */
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* line 8717, app/assets/stylesheets/braiform.scss */
.alert-info hr {
  border-top-color: #abdde5;
}

/* line 8721, app/assets/stylesheets/braiform.scss */
.alert-info .alert-link {
  color: #062c33;
}

/* line 8725, app/assets/stylesheets/braiform.scss */
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

/* line 8731, app/assets/stylesheets/braiform.scss */
.alert-warning hr {
  border-top-color: #ffe8a1;
}

/* line 8735, app/assets/stylesheets/braiform.scss */
.alert-warning .alert-link {
  color: #533f03;
}

/* line 8739, app/assets/stylesheets/braiform.scss */
.alert-danger {
  color: #702c35;
  background-color: #f7dde0;
  border-color: #f4cfd4;
}

/* line 8745, app/assets/stylesheets/braiform.scss */
.alert-danger hr {
  border-top-color: #efbac1;
}

/* line 8749, app/assets/stylesheets/braiform.scss */
.alert-danger .alert-link {
  color: #4b1e24;
}

/* line 8753, app/assets/stylesheets/braiform.scss */
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

/* line 8759, app/assets/stylesheets/braiform.scss */
.alert-light hr {
  border-top-color: #ececf6;
}

/* line 8763, app/assets/stylesheets/braiform.scss */
.alert-light .alert-link {
  color: #686868;
}

/* line 8767, app/assets/stylesheets/braiform.scss */
.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

/* line 8773, app/assets/stylesheets/braiform.scss */
.alert-dark hr {
  border-top-color: #b9bbbe;
}

/* line 8777, app/assets/stylesheets/braiform.scss */
.alert-dark .alert-link {
  color: #040505;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 8801, app/assets/stylesheets/braiform.scss */
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0rem;
}

/* line 8812, app/assets/stylesheets/braiform.scss */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #007bff;
}

/* line 8826, app/assets/stylesheets/braiform.scss */
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

/* line 8831, app/assets/stylesheets/braiform.scss */
.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

/* line 8836, app/assets/stylesheets/braiform.scss */
.media {
  display: flex;
  align-items: flex-start;
}

/* line 8845, app/assets/stylesheets/braiform.scss */
.media-body {
  flex: 1;
}

/* line 8851, app/assets/stylesheets/braiform.scss */
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

/* line 8863, app/assets/stylesheets/braiform.scss */
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

/* line 8869, app/assets/stylesheets/braiform.scss */
.list-group-item-action:focus, .list-group-item-action:hover {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 8875, app/assets/stylesheets/braiform.scss */
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

/* line 8880, app/assets/stylesheets/braiform.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 8889, app/assets/stylesheets/braiform.scss */
.list-group-item:first-child {
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
}

/* line 8894, app/assets/stylesheets/braiform.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

/* line 8900, app/assets/stylesheets/braiform.scss */
.list-group-item:focus, .list-group-item:hover {
  text-decoration: none;
}

/* line 8904, app/assets/stylesheets/braiform.scss */
.list-group-item.disabled, .list-group-item:disabled {
  color: #868e96;
  background-color: #fff;
}

/* line 8909, app/assets/stylesheets/braiform.scss */
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 8916, app/assets/stylesheets/braiform.scss */
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

/* line 8922, app/assets/stylesheets/braiform.scss */
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

/* line 8926, app/assets/stylesheets/braiform.scss */
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

/* line 8930, app/assets/stylesheets/braiform.scss */
.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

/* line 8935, app/assets/stylesheets/braiform.scss */
a.list-group-item-primary, button.list-group-item-primary {
  color: #004085;
}

/* line 8939, app/assets/stylesheets/braiform.scss */
a.list-group-item-primary:focus, a.list-group-item-primary:hover, button.list-group-item-primary:focus, button.list-group-item-primary:hover {
  color: #004085;
  background-color: #9fcdff;
}

/* line 8944, app/assets/stylesheets/braiform.scss */
a.list-group-item-primary.active, button.list-group-item-primary.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

/* line 8950, app/assets/stylesheets/braiform.scss */
.list-group-item-secondary {
  color: #464a4e;
  background-color: #dddfe2;
}

/* line 8955, app/assets/stylesheets/braiform.scss */
a.list-group-item-secondary, button.list-group-item-secondary {
  color: #464a4e;
}

/* line 8959, app/assets/stylesheets/braiform.scss */
a.list-group-item-secondary:focus, a.list-group-item-secondary:hover, button.list-group-item-secondary:focus, button.list-group-item-secondary:hover {
  color: #464a4e;
  background-color: #cfd2d6;
}

/* line 8964, app/assets/stylesheets/braiform.scss */
a.list-group-item-secondary.active, button.list-group-item-secondary.active {
  color: #fff;
  background-color: #464a4e;
  border-color: #464a4e;
}

/* line 8970, app/assets/stylesheets/braiform.scss */
.list-group-item-success {
  color: #3b611e;
  background-color: #d8ecc8;
}

/* line 8975, app/assets/stylesheets/braiform.scss */
a.list-group-item-success, button.list-group-item-success {
  color: #3b611e;
}

/* line 8979, app/assets/stylesheets/braiform.scss */
a.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:focus, button.list-group-item-success:hover {
  color: #3b611e;
  background-color: #cbe5b5;
}

/* line 8984, app/assets/stylesheets/braiform.scss */
a.list-group-item-success.active, button.list-group-item-success.active {
  color: #fff;
  background-color: #3b611e;
  border-color: #3b611e;
}

/* line 8990, app/assets/stylesheets/braiform.scss */
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

/* line 8995, app/assets/stylesheets/braiform.scss */
a.list-group-item-info, button.list-group-item-info {
  color: #0c5460;
}

/* line 8999, app/assets/stylesheets/braiform.scss */
a.list-group-item-info:focus, a.list-group-item-info:hover, button.list-group-item-info:focus, button.list-group-item-info:hover {
  color: #0c5460;
  background-color: #abdde5;
}

/* line 9004, app/assets/stylesheets/braiform.scss */
a.list-group-item-info.active, button.list-group-item-info.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

/* line 9010, app/assets/stylesheets/braiform.scss */
.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

/* line 9015, app/assets/stylesheets/braiform.scss */
a.list-group-item-warning, button.list-group-item-warning {
  color: #856404;
}

/* line 9019, app/assets/stylesheets/braiform.scss */
a.list-group-item-warning:focus, a.list-group-item-warning:hover, button.list-group-item-warning:focus, button.list-group-item-warning:hover {
  color: #856404;
  background-color: #ffe8a1;
}

/* line 9024, app/assets/stylesheets/braiform.scss */
a.list-group-item-warning.active, button.list-group-item-warning.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

/* line 9030, app/assets/stylesheets/braiform.scss */
.list-group-item-danger {
  color: #702c35;
  background-color: #f4cfd4;
}

/* line 9035, app/assets/stylesheets/braiform.scss */
a.list-group-item-danger, button.list-group-item-danger {
  color: #702c35;
}

/* line 9039, app/assets/stylesheets/braiform.scss */
a.list-group-item-danger:focus, a.list-group-item-danger:hover, button.list-group-item-danger:focus, button.list-group-item-danger:hover {
  color: #702c35;
  background-color: #efbac1;
}

/* line 9044, app/assets/stylesheets/braiform.scss */
a.list-group-item-danger.active, button.list-group-item-danger.active {
  color: #fff;
  background-color: #702c35;
  border-color: #702c35;
}

/* line 9050, app/assets/stylesheets/braiform.scss */
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

/* line 9055, app/assets/stylesheets/braiform.scss */
a.list-group-item-light, button.list-group-item-light {
  color: #818182;
}

/* line 9059, app/assets/stylesheets/braiform.scss */
a.list-group-item-light:focus, a.list-group-item-light:hover, button.list-group-item-light:focus, button.list-group-item-light:hover {
  color: #818182;
  background-color: #ececf6;
}

/* line 9064, app/assets/stylesheets/braiform.scss */
a.list-group-item-light.active, button.list-group-item-light.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

/* line 9070, app/assets/stylesheets/braiform.scss */
.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

/* line 9075, app/assets/stylesheets/braiform.scss */
a.list-group-item-dark, button.list-group-item-dark {
  color: #1b1e21;
}

/* line 9079, app/assets/stylesheets/braiform.scss */
a.list-group-item-dark:focus, a.list-group-item-dark:hover, button.list-group-item-dark:focus, button.list-group-item-dark:hover {
  color: #1b1e21;
  background-color: #b9bbbe;
}

/* line 9084, app/assets/stylesheets/braiform.scss */
a.list-group-item-dark.active, button.list-group-item-dark.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

/* line 9090, app/assets/stylesheets/braiform.scss */
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

/* line 9100, app/assets/stylesheets/braiform.scss */
.close:focus, .close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

/* line 9106, app/assets/stylesheets/braiform.scss */
button.close {
  padding: 0;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 9113, app/assets/stylesheets/braiform.scss */
.modal-open {
  overflow: hidden;
}

/* line 9117, app/assets/stylesheets/braiform.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

/* line 9129, app/assets/stylesheets/braiform.scss */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}

/* line 9138, app/assets/stylesheets/braiform.scss */
.modal.show .modal-dialog {
  transform: translate(0, 0);
}

/* line 9143, app/assets/stylesheets/braiform.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 9148, app/assets/stylesheets/braiform.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 9154, app/assets/stylesheets/braiform.scss */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0rem;
  outline: 0;
}

/* line 9170, app/assets/stylesheets/braiform.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 9180, app/assets/stylesheets/braiform.scss */
.modal-backdrop.fade {
  opacity: 0;
}

/* line 9184, app/assets/stylesheets/braiform.scss */
.modal-backdrop.show {
  opacity: 0.5;
}

/* line 9188, app/assets/stylesheets/braiform.scss */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
}

/* line 9202, app/assets/stylesheets/braiform.scss */
.modal-header .close {
  margin-left: auto;
}

/* line 9206, app/assets/stylesheets/braiform.scss */
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 9211, app/assets/stylesheets/braiform.scss */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 15px;
}

/* line 9219, app/assets/stylesheets/braiform.scss */
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #e9ecef;
}

/* line 9233, app/assets/stylesheets/braiform.scss */
.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

/* line 9237, app/assets/stylesheets/braiform.scss */
.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

/* line 9241, app/assets/stylesheets/braiform.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  /* line 9250, app/assets/stylesheets/braiform.scss */
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto;
  }
  /* line 9255, app/assets/stylesheets/braiform.scss */
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 9261, app/assets/stylesheets/braiform.scss */
  .modal-lg {
    max-width: 800px;
  }
}

/* line 9266, app/assets/stylesheets/braiform.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

/* line 9290, app/assets/stylesheets/braiform.scss */
.tooltip.show {
  opacity: 0.9;
}

/* line 9294, app/assets/stylesheets/braiform.scss */
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
}

/* line 9301, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-top, .tooltip.bs-tooltip-auto[x-placement^="top"] {
  padding: 5px 0;
}

/* line 9305, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-top .arrow, .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

/* line 9309, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-top .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 9316, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-right, .tooltip.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 5px;
}

/* line 9320, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-right .arrow, .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
}

/* line 9324, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-right .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  margin-top: -3px;
  content: "";
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 9331, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-bottom, .tooltip.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 5px 0;
}

/* line 9335, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-bottom .arrow, .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

/* line 9339, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-bottom .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 9346, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-left, .tooltip.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 5px;
}

/* line 9350, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-left .arrow, .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
}

/* line 9354, app/assets/stylesheets/braiform.scss */
.tooltip.bs-tooltip-left .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  right: 0;
  margin-top: -3px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 9362, app/assets/stylesheets/braiform.scss */
.tooltip .arrow::before {
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

/* line 9368, app/assets/stylesheets/braiform.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0rem;
}

/* line 9377, app/assets/stylesheets/braiform.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  padding: 1px;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0rem;
}

/* line 9407, app/assets/stylesheets/braiform.scss */
.popover .arrow {
  position: absolute;
  display: block;
  width: 10px;
  height: 5px;
}

/* line 9414, app/assets/stylesheets/braiform.scss */
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  border-color: transparent;
  border-style: solid;
}

/* line 9421, app/assets/stylesheets/braiform.scss */
.popover .arrow::before {
  content: "";
  border-width: 11px;
}

/* line 9426, app/assets/stylesheets/braiform.scss */
.popover .arrow::after {
  content: "";
  border-width: 11px;
}

/* line 9431, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-top, .popover.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 10px;
}

/* line 9435, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-top .arrow, .popover.bs-popover-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

/* line 9439, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-top .arrow::before, .popover.bs-popover-auto[x-placement^="top"] .arrow::before, .popover.bs-popover-top .arrow::after, .popover.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-bottom-width: 0;
}

/* line 9443, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-top .arrow::before, .popover.bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: -11px;
  margin-left: -6px;
  border-top-color: rgba(0, 0, 0, 0.25);
}

/* line 9449, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-top .arrow::after, .popover.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: -10px;
  margin-left: -6px;
  border-top-color: #fff;
}

/* line 9455, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-right, .popover.bs-popover-auto[x-placement^="right"] {
  margin-left: 10px;
}

/* line 9459, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-right .arrow, .popover.bs-popover-auto[x-placement^="right"] .arrow {
  left: 0;
}

/* line 9463, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-right .arrow::before, .popover.bs-popover-auto[x-placement^="right"] .arrow::before, .popover.bs-popover-right .arrow::after, .popover.bs-popover-auto[x-placement^="right"] .arrow::after {
  margin-top: -8px;
  border-left-width: 0;
}

/* line 9468, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-right .arrow::before, .popover.bs-popover-auto[x-placement^="right"] .arrow::before {
  left: -11px;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 9473, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-right .arrow::after, .popover.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: -10px;
  border-right-color: #fff;
}

/* line 9478, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-bottom, .popover.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 10px;
}

/* line 9482, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-bottom .arrow, .popover.bs-popover-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

/* line 9486, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-bottom .arrow::before, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::before, .popover.bs-popover-bottom .arrow::after, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  margin-left: -7px;
  border-top-width: 0;
}

/* line 9491, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-bottom .arrow::before, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: -11px;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 9496, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-bottom .arrow::after, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: -10px;
  border-bottom-color: #fff;
}

/* line 9501, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-bottom .popover-header::before, .popover.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 20px;
  margin-left: -10px;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

/* line 9512, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-left, .popover.bs-popover-auto[x-placement^="left"] {
  margin-right: 10px;
}

/* line 9516, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-left .arrow, .popover.bs-popover-auto[x-placement^="left"] .arrow {
  right: 0;
}

/* line 9520, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-left .arrow::before, .popover.bs-popover-auto[x-placement^="left"] .arrow::before, .popover.bs-popover-left .arrow::after, .popover.bs-popover-auto[x-placement^="left"] .arrow::after {
  margin-top: -8px;
  border-right-width: 0;
}

/* line 9525, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-left .arrow::before, .popover.bs-popover-auto[x-placement^="left"] .arrow::before {
  right: -11px;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 9530, app/assets/stylesheets/braiform.scss */
.popover.bs-popover-left .arrow::after, .popover.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: -10px;
  border-left-color: #fff;
}

/* line 9535, app/assets/stylesheets/braiform.scss */
.popover-header {
  padding: 8px 14px;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0rem - 1px);
  border-top-right-radius: calc(0rem - 1px);
}

/* line 9546, app/assets/stylesheets/braiform.scss */
.popover-header:empty {
  display: none;
}

/* line 9550, app/assets/stylesheets/braiform.scss */
.popover-body {
  padding: 9px 14px;
  color: #212529;
}

/* line 9555, app/assets/stylesheets/braiform.scss */
.carousel {
  position: relative;
}

/* line 9559, app/assets/stylesheets/braiform.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 9565, app/assets/stylesheets/braiform.scss */
.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  transition: transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* line 9582, app/assets/stylesheets/braiform.scss */
.carousel-item.active, .carousel-item-next, .carousel-item-prev {
  display: block;
}

/* line 9586, app/assets/stylesheets/braiform.scss */
.carousel-item-next, .carousel-item-prev {
  position: absolute;
  top: 0;
}

/* line 9591, app/assets/stylesheets/braiform.scss */
.carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  /* line 9597, app/assets/stylesheets/braiform.scss */
  .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}

/* line 9603, app/assets/stylesheets/braiform.scss */
.carousel-item-next, .active.carousel-item-right {
  transform: translateX(100%);
}

@supports (transform-style: preserve-3d) {
  /* line 9609, app/assets/stylesheets/braiform.scss */
  .carousel-item-next, .active.carousel-item-right {
    transform: translate3d(100%, 0, 0);
  }
}

/* line 9615, app/assets/stylesheets/braiform.scss */
.carousel-item-prev, .active.carousel-item-left {
  transform: translateX(-100%);
}

@supports (transform-style: preserve-3d) {
  /* line 9621, app/assets/stylesheets/braiform.scss */
  .carousel-item-prev, .active.carousel-item-left {
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 9627, app/assets/stylesheets/braiform.scss */
.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

/* line 9646, app/assets/stylesheets/braiform.scss */
.carousel-control-prev:focus, .carousel-control-prev:hover, .carousel-control-next:focus, .carousel-control-next:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

/* line 9653, app/assets/stylesheets/braiform.scss */
.carousel-control-prev {
  left: 0;
}

/* line 9657, app/assets/stylesheets/braiform.scss */
.carousel-control-next {
  right: 0;
}

/* line 9661, app/assets/stylesheets/braiform.scss */
.carousel-control-prev-icon, .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

/* line 9669, app/assets/stylesheets/braiform.scss */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

/* line 9673, app/assets/stylesheets/braiform.scss */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* line 9677, app/assets/stylesheets/braiform.scss */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

/* line 9695, app/assets/stylesheets/braiform.scss */
.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 9708, app/assets/stylesheets/braiform.scss */
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

/* line 9718, app/assets/stylesheets/braiform.scss */
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

/* line 9728, app/assets/stylesheets/braiform.scss */
.carousel-indicators .active {
  background-color: #fff;
}

/* line 9732, app/assets/stylesheets/braiform.scss */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

/* line 9744, app/assets/stylesheets/braiform.scss */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 9748, app/assets/stylesheets/braiform.scss */
.align-top {
  vertical-align: top !important;
}

/* line 9752, app/assets/stylesheets/braiform.scss */
.align-middle {
  vertical-align: middle !important;
}

/* line 9756, app/assets/stylesheets/braiform.scss */
.align-bottom {
  vertical-align: bottom !important;
}

/* line 9760, app/assets/stylesheets/braiform.scss */
.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 9764, app/assets/stylesheets/braiform.scss */
.align-text-top {
  vertical-align: text-top !important;
}

/* line 9768, app/assets/stylesheets/braiform.scss */
.bg-primary {
  background-color: #007bff !important;
}

/* line 9772, app/assets/stylesheets/braiform.scss */
a.bg-primary:focus, a.bg-primary:hover {
  background-color: #0062cc !important;
}

/* line 9776, app/assets/stylesheets/braiform.scss */
.bg-secondary {
  background-color: #868e96 !important;
}

/* line 9780, app/assets/stylesheets/braiform.scss */
a.bg-secondary:focus, a.bg-secondary:hover {
  background-color: #6c757d !important;
}

/* line 9784, app/assets/stylesheets/braiform.scss */
.bg-success {
  background-color: #72BA3A !important;
}

/* line 9788, app/assets/stylesheets/braiform.scss */
a.bg-success:focus, a.bg-success:hover {
  background-color: #5a932e !important;
}

/* line 9792, app/assets/stylesheets/braiform.scss */
.bg-info {
  background-color: #17a2b8 !important;
}

/* line 9796, app/assets/stylesheets/braiform.scss */
a.bg-info:focus, a.bg-info:hover {
  background-color: #117a8b !important;
}

/* line 9800, app/assets/stylesheets/braiform.scss */
.bg-warning {
  background-color: #ffc107 !important;
}

/* line 9804, app/assets/stylesheets/braiform.scss */
a.bg-warning:focus, a.bg-warning:hover {
  background-color: #d39e00 !important;
}

/* line 9808, app/assets/stylesheets/braiform.scss */
.bg-danger {
  background-color: #D75466 !important;
}

/* line 9812, app/assets/stylesheets/braiform.scss */
a.bg-danger:focus, a.bg-danger:hover {
  background-color: #c92f44 !important;
}

/* line 9816, app/assets/stylesheets/braiform.scss */
.bg-light {
  background-color: #f8f9fa !important;
}

/* line 9820, app/assets/stylesheets/braiform.scss */
a.bg-light:focus, a.bg-light:hover {
  background-color: #dae0e5 !important;
}

/* line 9824, app/assets/stylesheets/braiform.scss */
.bg-dark {
  background-color: #343a40 !important;
}

/* line 9828, app/assets/stylesheets/braiform.scss */
a.bg-dark:focus, a.bg-dark:hover {
  background-color: #1d2124 !important;
}

/* line 9832, app/assets/stylesheets/braiform.scss */
.bg-white {
  background-color: #fff !important;
}

/* line 9836, app/assets/stylesheets/braiform.scss */
.bg-transparent {
  background-color: transparent !important;
}

/* line 9840, app/assets/stylesheets/braiform.scss */
.border {
  border: 1px solid #e9ecef !important;
}

/* line 9844, app/assets/stylesheets/braiform.scss */
.border-0 {
  border: 0 !important;
}

/* line 9848, app/assets/stylesheets/braiform.scss */
.border-top-0 {
  border-top: 0 !important;
}

/* line 9852, app/assets/stylesheets/braiform.scss */
.border-right-0 {
  border-right: 0 !important;
}

/* line 9856, app/assets/stylesheets/braiform.scss */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 9860, app/assets/stylesheets/braiform.scss */
.border-left-0 {
  border-left: 0 !important;
}

/* line 9864, app/assets/stylesheets/braiform.scss */
.border-primary {
  border-color: #007bff !important;
}

/* line 9868, app/assets/stylesheets/braiform.scss */
.border-secondary {
  border-color: #868e96 !important;
}

/* line 9872, app/assets/stylesheets/braiform.scss */
.border-success {
  border-color: #72BA3A !important;
}

/* line 9876, app/assets/stylesheets/braiform.scss */
.border-info {
  border-color: #17a2b8 !important;
}

/* line 9880, app/assets/stylesheets/braiform.scss */
.border-warning {
  border-color: #ffc107 !important;
}

/* line 9884, app/assets/stylesheets/braiform.scss */
.border-danger {
  border-color: #D75466 !important;
}

/* line 9888, app/assets/stylesheets/braiform.scss */
.border-light {
  border-color: #f8f9fa !important;
}

/* line 9892, app/assets/stylesheets/braiform.scss */
.border-dark {
  border-color: #343a40 !important;
}

/* line 9896, app/assets/stylesheets/braiform.scss */
.border-white {
  border-color: #fff !important;
}

/* line 9900, app/assets/stylesheets/braiform.scss */
.rounded {
  border-radius: 0rem !important;
}

/* line 9904, app/assets/stylesheets/braiform.scss */
.rounded-top {
  border-top-left-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
}

/* line 9909, app/assets/stylesheets/braiform.scss */
.rounded-right {
  border-top-right-radius: 0rem !important;
  border-bottom-right-radius: 0rem !important;
}

/* line 9914, app/assets/stylesheets/braiform.scss */
.rounded-bottom {
  border-bottom-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
}

/* line 9919, app/assets/stylesheets/braiform.scss */
.rounded-left {
  border-top-left-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
}

/* line 9924, app/assets/stylesheets/braiform.scss */
.rounded-circle {
  border-radius: 50%;
}

/* line 9928, app/assets/stylesheets/braiform.scss */
.rounded-0 {
  border-radius: 0;
}

/* line 9932, app/assets/stylesheets/braiform.scss */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 9938, app/assets/stylesheets/braiform.scss */
.d-none {
  display: none !important;
}

/* line 9942, app/assets/stylesheets/braiform.scss */
.d-inline {
  display: inline !important;
}

/* line 9946, app/assets/stylesheets/braiform.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 9950, app/assets/stylesheets/braiform.scss */
.d-block {
  display: block !important;
}

/* line 9954, app/assets/stylesheets/braiform.scss */
.d-table {
  display: table !important;
}

/* line 9958, app/assets/stylesheets/braiform.scss */
.d-table-cell {
  display: table-cell !important;
}

/* line 9962, app/assets/stylesheets/braiform.scss */
.d-flex {
  display: flex !important;
}

/* line 9968, app/assets/stylesheets/braiform.scss */
.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  /* line 9975, app/assets/stylesheets/braiform.scss */
  .d-sm-none {
    display: none !important;
  }
  /* line 9979, app/assets/stylesheets/braiform.scss */
  .d-sm-inline {
    display: inline !important;
  }
  /* line 9983, app/assets/stylesheets/braiform.scss */
  .d-sm-inline-block {
    display: inline-block !important;
  }
  /* line 9987, app/assets/stylesheets/braiform.scss */
  .d-sm-block {
    display: block !important;
  }
  /* line 9991, app/assets/stylesheets/braiform.scss */
  .d-sm-table {
    display: table !important;
  }
  /* line 9995, app/assets/stylesheets/braiform.scss */
  .d-sm-table-cell {
    display: table-cell !important;
  }
  /* line 9999, app/assets/stylesheets/braiform.scss */
  .d-sm-flex {
    display: flex !important;
  }
  /* line 10005, app/assets/stylesheets/braiform.scss */
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  /* line 10013, app/assets/stylesheets/braiform.scss */
  .d-md-none {
    display: none !important;
  }
  /* line 10017, app/assets/stylesheets/braiform.scss */
  .d-md-inline {
    display: inline !important;
  }
  /* line 10021, app/assets/stylesheets/braiform.scss */
  .d-md-inline-block {
    display: inline-block !important;
  }
  /* line 10025, app/assets/stylesheets/braiform.scss */
  .d-md-block {
    display: block !important;
  }
  /* line 10029, app/assets/stylesheets/braiform.scss */
  .d-md-table {
    display: table !important;
  }
  /* line 10033, app/assets/stylesheets/braiform.scss */
  .d-md-table-cell {
    display: table-cell !important;
  }
  /* line 10037, app/assets/stylesheets/braiform.scss */
  .d-md-flex {
    display: flex !important;
  }
  /* line 10043, app/assets/stylesheets/braiform.scss */
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  /* line 10051, app/assets/stylesheets/braiform.scss */
  .d-lg-none {
    display: none !important;
  }
  /* line 10055, app/assets/stylesheets/braiform.scss */
  .d-lg-inline {
    display: inline !important;
  }
  /* line 10059, app/assets/stylesheets/braiform.scss */
  .d-lg-inline-block {
    display: inline-block !important;
  }
  /* line 10063, app/assets/stylesheets/braiform.scss */
  .d-lg-block {
    display: block !important;
  }
  /* line 10067, app/assets/stylesheets/braiform.scss */
  .d-lg-table {
    display: table !important;
  }
  /* line 10071, app/assets/stylesheets/braiform.scss */
  .d-lg-table-cell {
    display: table-cell !important;
  }
  /* line 10075, app/assets/stylesheets/braiform.scss */
  .d-lg-flex {
    display: flex !important;
  }
  /* line 10081, app/assets/stylesheets/braiform.scss */
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  /* line 10089, app/assets/stylesheets/braiform.scss */
  .d-xl-none {
    display: none !important;
  }
  /* line 10093, app/assets/stylesheets/braiform.scss */
  .d-xl-inline {
    display: inline !important;
  }
  /* line 10097, app/assets/stylesheets/braiform.scss */
  .d-xl-inline-block {
    display: inline-block !important;
  }
  /* line 10101, app/assets/stylesheets/braiform.scss */
  .d-xl-block {
    display: block !important;
  }
  /* line 10105, app/assets/stylesheets/braiform.scss */
  .d-xl-table {
    display: table !important;
  }
  /* line 10109, app/assets/stylesheets/braiform.scss */
  .d-xl-table-cell {
    display: table-cell !important;
  }
  /* line 10113, app/assets/stylesheets/braiform.scss */
  .d-xl-flex {
    display: flex !important;
  }
  /* line 10119, app/assets/stylesheets/braiform.scss */
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

/* line 10126, app/assets/stylesheets/braiform.scss */
.d-print-block {
  display: none !important;
}

@media print {
  /* line 10131, app/assets/stylesheets/braiform.scss */
  .d-print-block {
    display: block !important;
  }
}

/* line 10136, app/assets/stylesheets/braiform.scss */
.d-print-inline {
  display: none !important;
}

@media print {
  /* line 10141, app/assets/stylesheets/braiform.scss */
  .d-print-inline {
    display: inline !important;
  }
}

/* line 10146, app/assets/stylesheets/braiform.scss */
.d-print-inline-block {
  display: none !important;
}

@media print {
  /* line 10151, app/assets/stylesheets/braiform.scss */
  .d-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 10157, app/assets/stylesheets/braiform.scss */
  .d-print-none {
    display: none !important;
  }
}

/* line 10162, app/assets/stylesheets/braiform.scss */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

/* line 10170, app/assets/stylesheets/braiform.scss */
.embed-responsive::before {
  display: block;
  content: "";
}

/* line 10175, app/assets/stylesheets/braiform.scss */
.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 10185, app/assets/stylesheets/braiform.scss */
.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

/* line 10189, app/assets/stylesheets/braiform.scss */
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

/* line 10193, app/assets/stylesheets/braiform.scss */
.embed-responsive-4by3::before {
  padding-top: 75%;
}

/* line 10197, app/assets/stylesheets/braiform.scss */
.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* line 10201, app/assets/stylesheets/braiform.scss */
.flex-row {
  flex-direction: row !important;
}

/* line 10208, app/assets/stylesheets/braiform.scss */
.flex-column {
  flex-direction: column !important;
}

/* line 10215, app/assets/stylesheets/braiform.scss */
.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* line 10222, app/assets/stylesheets/braiform.scss */
.flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* line 10229, app/assets/stylesheets/braiform.scss */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* line 10234, app/assets/stylesheets/braiform.scss */
.flex-nowrap {
  flex-wrap: nowrap !important;
}

/* line 10239, app/assets/stylesheets/braiform.scss */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* line 10244, app/assets/stylesheets/braiform.scss */
.justify-content-start {
  justify-content: flex-start !important;
}

/* line 10250, app/assets/stylesheets/braiform.scss */
.justify-content-end {
  justify-content: flex-end !important;
}

/* line 10256, app/assets/stylesheets/braiform.scss */
.justify-content-center {
  justify-content: center !important;
}

/* line 10262, app/assets/stylesheets/braiform.scss */
.justify-content-between {
  justify-content: space-between !important;
}

/* line 10268, app/assets/stylesheets/braiform.scss */
.justify-content-around {
  justify-content: space-around !important;
}

/* line 10273, app/assets/stylesheets/braiform.scss */
.align-items-start {
  align-items: flex-start !important;
}

/* line 10279, app/assets/stylesheets/braiform.scss */
.align-items-end {
  align-items: flex-end !important;
}

/* line 10285, app/assets/stylesheets/braiform.scss */
.align-items-center {
  align-items: center !important;
}

/* line 10291, app/assets/stylesheets/braiform.scss */
.align-items-baseline {
  align-items: baseline !important;
}

/* line 10297, app/assets/stylesheets/braiform.scss */
.align-items-stretch {
  align-items: stretch !important;
}

/* line 10303, app/assets/stylesheets/braiform.scss */
.align-content-start {
  align-content: flex-start !important;
}

/* line 10308, app/assets/stylesheets/braiform.scss */
.align-content-end {
  align-content: flex-end !important;
}

/* line 10313, app/assets/stylesheets/braiform.scss */
.align-content-center {
  align-content: center !important;
}

/* line 10318, app/assets/stylesheets/braiform.scss */
.align-content-between {
  align-content: space-between !important;
}

/* line 10323, app/assets/stylesheets/braiform.scss */
.align-content-around {
  align-content: space-around !important;
}

/* line 10328, app/assets/stylesheets/braiform.scss */
.align-content-stretch {
  align-content: stretch !important;
}

/* line 10333, app/assets/stylesheets/braiform.scss */
.align-self-auto {
  align-self: auto !important;
}

/* line 10338, app/assets/stylesheets/braiform.scss */
.align-self-start {
  align-self: flex-start !important;
}

/* line 10343, app/assets/stylesheets/braiform.scss */
.align-self-end {
  align-self: flex-end !important;
}

/* line 10348, app/assets/stylesheets/braiform.scss */
.align-self-center {
  align-self: center !important;
}

/* line 10353, app/assets/stylesheets/braiform.scss */
.align-self-baseline {
  align-self: baseline !important;
}

/* line 10358, app/assets/stylesheets/braiform.scss */
.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  /* line 10364, app/assets/stylesheets/braiform.scss */
  .flex-sm-row {
    flex-direction: row !important;
  }
  /* line 10371, app/assets/stylesheets/braiform.scss */
  .flex-sm-column {
    flex-direction: column !important;
  }
  /* line 10378, app/assets/stylesheets/braiform.scss */
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 10385, app/assets/stylesheets/braiform.scss */
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 10392, app/assets/stylesheets/braiform.scss */
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  /* line 10397, app/assets/stylesheets/braiform.scss */
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 10402, app/assets/stylesheets/braiform.scss */
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 10407, app/assets/stylesheets/braiform.scss */
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  /* line 10413, app/assets/stylesheets/braiform.scss */
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  /* line 10419, app/assets/stylesheets/braiform.scss */
  .justify-content-sm-center {
    justify-content: center !important;
  }
  /* line 10425, app/assets/stylesheets/braiform.scss */
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  /* line 10431, app/assets/stylesheets/braiform.scss */
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  /* line 10436, app/assets/stylesheets/braiform.scss */
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  /* line 10442, app/assets/stylesheets/braiform.scss */
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  /* line 10448, app/assets/stylesheets/braiform.scss */
  .align-items-sm-center {
    align-items: center !important;
  }
  /* line 10454, app/assets/stylesheets/braiform.scss */
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  /* line 10460, app/assets/stylesheets/braiform.scss */
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  /* line 10466, app/assets/stylesheets/braiform.scss */
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  /* line 10471, app/assets/stylesheets/braiform.scss */
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  /* line 10476, app/assets/stylesheets/braiform.scss */
  .align-content-sm-center {
    align-content: center !important;
  }
  /* line 10481, app/assets/stylesheets/braiform.scss */
  .align-content-sm-between {
    align-content: space-between !important;
  }
  /* line 10486, app/assets/stylesheets/braiform.scss */
  .align-content-sm-around {
    align-content: space-around !important;
  }
  /* line 10491, app/assets/stylesheets/braiform.scss */
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  /* line 10496, app/assets/stylesheets/braiform.scss */
  .align-self-sm-auto {
    align-self: auto !important;
  }
  /* line 10501, app/assets/stylesheets/braiform.scss */
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  /* line 10506, app/assets/stylesheets/braiform.scss */
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  /* line 10511, app/assets/stylesheets/braiform.scss */
  .align-self-sm-center {
    align-self: center !important;
  }
  /* line 10516, app/assets/stylesheets/braiform.scss */
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  /* line 10521, app/assets/stylesheets/braiform.scss */
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  /* line 10528, app/assets/stylesheets/braiform.scss */
  .flex-md-row {
    flex-direction: row !important;
  }
  /* line 10535, app/assets/stylesheets/braiform.scss */
  .flex-md-column {
    flex-direction: column !important;
  }
  /* line 10542, app/assets/stylesheets/braiform.scss */
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 10549, app/assets/stylesheets/braiform.scss */
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 10556, app/assets/stylesheets/braiform.scss */
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  /* line 10561, app/assets/stylesheets/braiform.scss */
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 10566, app/assets/stylesheets/braiform.scss */
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 10571, app/assets/stylesheets/braiform.scss */
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  /* line 10577, app/assets/stylesheets/braiform.scss */
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  /* line 10583, app/assets/stylesheets/braiform.scss */
  .justify-content-md-center {
    justify-content: center !important;
  }
  /* line 10589, app/assets/stylesheets/braiform.scss */
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  /* line 10595, app/assets/stylesheets/braiform.scss */
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  /* line 10600, app/assets/stylesheets/braiform.scss */
  .align-items-md-start {
    align-items: flex-start !important;
  }
  /* line 10606, app/assets/stylesheets/braiform.scss */
  .align-items-md-end {
    align-items: flex-end !important;
  }
  /* line 10612, app/assets/stylesheets/braiform.scss */
  .align-items-md-center {
    align-items: center !important;
  }
  /* line 10618, app/assets/stylesheets/braiform.scss */
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  /* line 10624, app/assets/stylesheets/braiform.scss */
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  /* line 10630, app/assets/stylesheets/braiform.scss */
  .align-content-md-start {
    align-content: flex-start !important;
  }
  /* line 10635, app/assets/stylesheets/braiform.scss */
  .align-content-md-end {
    align-content: flex-end !important;
  }
  /* line 10640, app/assets/stylesheets/braiform.scss */
  .align-content-md-center {
    align-content: center !important;
  }
  /* line 10645, app/assets/stylesheets/braiform.scss */
  .align-content-md-between {
    align-content: space-between !important;
  }
  /* line 10650, app/assets/stylesheets/braiform.scss */
  .align-content-md-around {
    align-content: space-around !important;
  }
  /* line 10655, app/assets/stylesheets/braiform.scss */
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  /* line 10660, app/assets/stylesheets/braiform.scss */
  .align-self-md-auto {
    align-self: auto !important;
  }
  /* line 10665, app/assets/stylesheets/braiform.scss */
  .align-self-md-start {
    align-self: flex-start !important;
  }
  /* line 10670, app/assets/stylesheets/braiform.scss */
  .align-self-md-end {
    align-self: flex-end !important;
  }
  /* line 10675, app/assets/stylesheets/braiform.scss */
  .align-self-md-center {
    align-self: center !important;
  }
  /* line 10680, app/assets/stylesheets/braiform.scss */
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  /* line 10685, app/assets/stylesheets/braiform.scss */
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  /* line 10692, app/assets/stylesheets/braiform.scss */
  .flex-lg-row {
    flex-direction: row !important;
  }
  /* line 10699, app/assets/stylesheets/braiform.scss */
  .flex-lg-column {
    flex-direction: column !important;
  }
  /* line 10706, app/assets/stylesheets/braiform.scss */
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 10713, app/assets/stylesheets/braiform.scss */
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 10720, app/assets/stylesheets/braiform.scss */
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  /* line 10725, app/assets/stylesheets/braiform.scss */
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 10730, app/assets/stylesheets/braiform.scss */
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 10735, app/assets/stylesheets/braiform.scss */
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  /* line 10741, app/assets/stylesheets/braiform.scss */
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  /* line 10747, app/assets/stylesheets/braiform.scss */
  .justify-content-lg-center {
    justify-content: center !important;
  }
  /* line 10753, app/assets/stylesheets/braiform.scss */
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  /* line 10759, app/assets/stylesheets/braiform.scss */
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  /* line 10764, app/assets/stylesheets/braiform.scss */
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  /* line 10770, app/assets/stylesheets/braiform.scss */
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  /* line 10776, app/assets/stylesheets/braiform.scss */
  .align-items-lg-center {
    align-items: center !important;
  }
  /* line 10782, app/assets/stylesheets/braiform.scss */
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  /* line 10788, app/assets/stylesheets/braiform.scss */
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  /* line 10794, app/assets/stylesheets/braiform.scss */
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  /* line 10799, app/assets/stylesheets/braiform.scss */
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  /* line 10804, app/assets/stylesheets/braiform.scss */
  .align-content-lg-center {
    align-content: center !important;
  }
  /* line 10809, app/assets/stylesheets/braiform.scss */
  .align-content-lg-between {
    align-content: space-between !important;
  }
  /* line 10814, app/assets/stylesheets/braiform.scss */
  .align-content-lg-around {
    align-content: space-around !important;
  }
  /* line 10819, app/assets/stylesheets/braiform.scss */
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  /* line 10824, app/assets/stylesheets/braiform.scss */
  .align-self-lg-auto {
    align-self: auto !important;
  }
  /* line 10829, app/assets/stylesheets/braiform.scss */
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  /* line 10834, app/assets/stylesheets/braiform.scss */
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  /* line 10839, app/assets/stylesheets/braiform.scss */
  .align-self-lg-center {
    align-self: center !important;
  }
  /* line 10844, app/assets/stylesheets/braiform.scss */
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  /* line 10849, app/assets/stylesheets/braiform.scss */
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  /* line 10856, app/assets/stylesheets/braiform.scss */
  .flex-xl-row {
    flex-direction: row !important;
  }
  /* line 10863, app/assets/stylesheets/braiform.scss */
  .flex-xl-column {
    flex-direction: column !important;
  }
  /* line 10870, app/assets/stylesheets/braiform.scss */
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 10877, app/assets/stylesheets/braiform.scss */
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 10884, app/assets/stylesheets/braiform.scss */
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 10889, app/assets/stylesheets/braiform.scss */
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 10894, app/assets/stylesheets/braiform.scss */
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 10899, app/assets/stylesheets/braiform.scss */
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  /* line 10905, app/assets/stylesheets/braiform.scss */
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  /* line 10911, app/assets/stylesheets/braiform.scss */
  .justify-content-xl-center {
    justify-content: center !important;
  }
  /* line 10917, app/assets/stylesheets/braiform.scss */
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  /* line 10923, app/assets/stylesheets/braiform.scss */
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  /* line 10928, app/assets/stylesheets/braiform.scss */
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  /* line 10934, app/assets/stylesheets/braiform.scss */
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  /* line 10940, app/assets/stylesheets/braiform.scss */
  .align-items-xl-center {
    align-items: center !important;
  }
  /* line 10946, app/assets/stylesheets/braiform.scss */
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  /* line 10952, app/assets/stylesheets/braiform.scss */
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  /* line 10958, app/assets/stylesheets/braiform.scss */
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  /* line 10963, app/assets/stylesheets/braiform.scss */
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  /* line 10968, app/assets/stylesheets/braiform.scss */
  .align-content-xl-center {
    align-content: center !important;
  }
  /* line 10973, app/assets/stylesheets/braiform.scss */
  .align-content-xl-between {
    align-content: space-between !important;
  }
  /* line 10978, app/assets/stylesheets/braiform.scss */
  .align-content-xl-around {
    align-content: space-around !important;
  }
  /* line 10983, app/assets/stylesheets/braiform.scss */
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  /* line 10988, app/assets/stylesheets/braiform.scss */
  .align-self-xl-auto {
    align-self: auto !important;
  }
  /* line 10993, app/assets/stylesheets/braiform.scss */
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  /* line 10998, app/assets/stylesheets/braiform.scss */
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  /* line 11003, app/assets/stylesheets/braiform.scss */
  .align-self-xl-center {
    align-self: center !important;
  }
  /* line 11008, app/assets/stylesheets/braiform.scss */
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  /* line 11013, app/assets/stylesheets/braiform.scss */
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

/* line 11019, app/assets/stylesheets/braiform.scss */
.float-left {
  float: left !important;
}

/* line 11023, app/assets/stylesheets/braiform.scss */
.float-right {
  float: right !important;
}

/* line 11027, app/assets/stylesheets/braiform.scss */
.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  /* line 11032, app/assets/stylesheets/braiform.scss */
  .float-sm-left {
    float: left !important;
  }
  /* line 11036, app/assets/stylesheets/braiform.scss */
  .float-sm-right {
    float: right !important;
  }
  /* line 11040, app/assets/stylesheets/braiform.scss */
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  /* line 11046, app/assets/stylesheets/braiform.scss */
  .float-md-left {
    float: left !important;
  }
  /* line 11050, app/assets/stylesheets/braiform.scss */
  .float-md-right {
    float: right !important;
  }
  /* line 11054, app/assets/stylesheets/braiform.scss */
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  /* line 11060, app/assets/stylesheets/braiform.scss */
  .float-lg-left {
    float: left !important;
  }
  /* line 11064, app/assets/stylesheets/braiform.scss */
  .float-lg-right {
    float: right !important;
  }
  /* line 11068, app/assets/stylesheets/braiform.scss */
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 11074, app/assets/stylesheets/braiform.scss */
  .float-xl-left {
    float: left !important;
  }
  /* line 11078, app/assets/stylesheets/braiform.scss */
  .float-xl-right {
    float: right !important;
  }
  /* line 11082, app/assets/stylesheets/braiform.scss */
  .float-xl-none {
    float: none !important;
  }
}

/* line 11087, app/assets/stylesheets/braiform.scss */
.position-static {
  position: static !important;
}

/* line 11091, app/assets/stylesheets/braiform.scss */
.position-relative {
  position: relative !important;
}

/* line 11095, app/assets/stylesheets/braiform.scss */
.position-absolute {
  position: absolute !important;
}

/* line 11099, app/assets/stylesheets/braiform.scss */
.position-fixed {
  position: fixed !important;
}

/* line 11103, app/assets/stylesheets/braiform.scss */
.position-sticky {
  position: sticky !important;
}

/* line 11108, app/assets/stylesheets/braiform.scss */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 11116, app/assets/stylesheets/braiform.scss */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  /* line 11125, app/assets/stylesheets/braiform.scss */
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* line 11133, app/assets/stylesheets/braiform.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}

/* line 11146, app/assets/stylesheets/braiform.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
  clip-path: none;
}

/* line 11157, app/assets/stylesheets/braiform.scss */
.w-25 {
  width: 25% !important;
}

/* line 11161, app/assets/stylesheets/braiform.scss */
.w-50 {
  width: 50% !important;
}

/* line 11165, app/assets/stylesheets/braiform.scss */
.w-75 {
  width: 75% !important;
}

/* line 11169, app/assets/stylesheets/braiform.scss */
.w-100 {
  width: 100% !important;
}

/* line 11173, app/assets/stylesheets/braiform.scss */
.h-25 {
  height: 25% !important;
}

/* line 11177, app/assets/stylesheets/braiform.scss */
.h-50 {
  height: 50% !important;
}

/* line 11181, app/assets/stylesheets/braiform.scss */
.h-75 {
  height: 75% !important;
}

/* line 11185, app/assets/stylesheets/braiform.scss */
.h-100 {
  height: 100% !important;
}

/* line 11189, app/assets/stylesheets/braiform.scss */
.mw-100 {
  max-width: 100% !important;
}

/* line 11193, app/assets/stylesheets/braiform.scss */
.mh-100 {
  max-height: 100% !important;
}

/* line 11197, app/assets/stylesheets/braiform.scss */
.m-0 {
  margin: 0 !important;
}

/* line 11201, app/assets/stylesheets/braiform.scss */
.mt-0, .my-0 {
  margin-top: 0 !important;
}

/* line 11205, app/assets/stylesheets/braiform.scss */
.mr-0, .mx-0 {
  margin-right: 0 !important;
}

/* line 11209, app/assets/stylesheets/braiform.scss */
.mb-0, .my-0 {
  margin-bottom: 0 !important;
}

/* line 11213, app/assets/stylesheets/braiform.scss */
.ml-0, .mx-0 {
  margin-left: 0 !important;
}

/* line 11217, app/assets/stylesheets/braiform.scss */
.m-1 {
  margin: 0.25rem !important;
}

/* line 11221, app/assets/stylesheets/braiform.scss */
.mt-1, .my-1 {
  margin-top: 0.25rem !important;
}

/* line 11225, app/assets/stylesheets/braiform.scss */
.mr-1, .mx-1 {
  margin-right: 0.25rem !important;
}

/* line 11229, app/assets/stylesheets/braiform.scss */
.mb-1, .my-1 {
  margin-bottom: 0.25rem !important;
}

/* line 11233, app/assets/stylesheets/braiform.scss */
.ml-1, .mx-1 {
  margin-left: 0.25rem !important;
}

/* line 11237, app/assets/stylesheets/braiform.scss */
.m-2 {
  margin: 0.5rem !important;
}

/* line 11241, app/assets/stylesheets/braiform.scss */
.mt-2, .my-2 {
  margin-top: 0.5rem !important;
}

/* line 11245, app/assets/stylesheets/braiform.scss */
.mr-2, .mx-2 {
  margin-right: 0.5rem !important;
}

/* line 11249, app/assets/stylesheets/braiform.scss */
.mb-2, .my-2 {
  margin-bottom: 0.5rem !important;
}

/* line 11253, app/assets/stylesheets/braiform.scss */
.ml-2, .mx-2 {
  margin-left: 0.5rem !important;
}

/* line 11257, app/assets/stylesheets/braiform.scss */
.m-3 {
  margin: 1rem !important;
}

/* line 11261, app/assets/stylesheets/braiform.scss */
.mt-3, .my-3 {
  margin-top: 1rem !important;
}

/* line 11265, app/assets/stylesheets/braiform.scss */
.mr-3, .mx-3 {
  margin-right: 1rem !important;
}

/* line 11269, app/assets/stylesheets/braiform.scss */
.mb-3, .my-3 {
  margin-bottom: 1rem !important;
}

/* line 11273, app/assets/stylesheets/braiform.scss */
.ml-3, .mx-3 {
  margin-left: 1rem !important;
}

/* line 11277, app/assets/stylesheets/braiform.scss */
.m-4 {
  margin: 1.5rem !important;
}

/* line 11281, app/assets/stylesheets/braiform.scss */
.mt-4, .my-4 {
  margin-top: 1.5rem !important;
}

/* line 11285, app/assets/stylesheets/braiform.scss */
.mr-4, .mx-4 {
  margin-right: 1.5rem !important;
}

/* line 11289, app/assets/stylesheets/braiform.scss */
.mb-4, .my-4 {
  margin-bottom: 1.5rem !important;
}

/* line 11293, app/assets/stylesheets/braiform.scss */
.ml-4, .mx-4 {
  margin-left: 1.5rem !important;
}

/* line 11297, app/assets/stylesheets/braiform.scss */
.m-5 {
  margin: 3rem !important;
}

/* line 11301, app/assets/stylesheets/braiform.scss */
.mt-5, .my-5 {
  margin-top: 3rem !important;
}

/* line 11305, app/assets/stylesheets/braiform.scss */
.mr-5, .mx-5 {
  margin-right: 3rem !important;
}

/* line 11309, app/assets/stylesheets/braiform.scss */
.mb-5, .my-5 {
  margin-bottom: 3rem !important;
}

/* line 11313, app/assets/stylesheets/braiform.scss */
.ml-5, .mx-5 {
  margin-left: 3rem !important;
}

/* line 11317, app/assets/stylesheets/braiform.scss */
.p-0 {
  padding: 0 !important;
}

/* line 11321, app/assets/stylesheets/braiform.scss */
.pt-0, .py-0 {
  padding-top: 0 !important;
}

/* line 11325, app/assets/stylesheets/braiform.scss */
.pr-0, .px-0 {
  padding-right: 0 !important;
}

/* line 11329, app/assets/stylesheets/braiform.scss */
.pb-0, .py-0 {
  padding-bottom: 0 !important;
}

/* line 11333, app/assets/stylesheets/braiform.scss */
.pl-0, .px-0 {
  padding-left: 0 !important;
}

/* line 11337, app/assets/stylesheets/braiform.scss */
.p-1 {
  padding: 0.25rem !important;
}

/* line 11341, app/assets/stylesheets/braiform.scss */
.pt-1, .py-1 {
  padding-top: 0.25rem !important;
}

/* line 11345, app/assets/stylesheets/braiform.scss */
.pr-1, .px-1 {
  padding-right: 0.25rem !important;
}

/* line 11349, app/assets/stylesheets/braiform.scss */
.pb-1, .py-1 {
  padding-bottom: 0.25rem !important;
}

/* line 11353, app/assets/stylesheets/braiform.scss */
.pl-1, .px-1 {
  padding-left: 0.25rem !important;
}

/* line 11357, app/assets/stylesheets/braiform.scss */
.p-2 {
  padding: 0.5rem !important;
}

/* line 11361, app/assets/stylesheets/braiform.scss */
.pt-2, .py-2 {
  padding-top: 0.5rem !important;
}

/* line 11365, app/assets/stylesheets/braiform.scss */
.pr-2, .px-2 {
  padding-right: 0.5rem !important;
}

/* line 11369, app/assets/stylesheets/braiform.scss */
.pb-2, .py-2 {
  padding-bottom: 0.5rem !important;
}

/* line 11373, app/assets/stylesheets/braiform.scss */
.pl-2, .px-2 {
  padding-left: 0.5rem !important;
}

/* line 11377, app/assets/stylesheets/braiform.scss */
.p-3 {
  padding: 1rem !important;
}

/* line 11381, app/assets/stylesheets/braiform.scss */
.pt-3, .py-3 {
  padding-top: 1rem !important;
}

/* line 11385, app/assets/stylesheets/braiform.scss */
.pr-3, .px-3 {
  padding-right: 1rem !important;
}

/* line 11389, app/assets/stylesheets/braiform.scss */
.pb-3, .py-3 {
  padding-bottom: 1rem !important;
}

/* line 11393, app/assets/stylesheets/braiform.scss */
.pl-3, .px-3 {
  padding-left: 1rem !important;
}

/* line 11397, app/assets/stylesheets/braiform.scss */
.p-4 {
  padding: 1.5rem !important;
}

/* line 11401, app/assets/stylesheets/braiform.scss */
.pt-4, .py-4 {
  padding-top: 1.5rem !important;
}

/* line 11405, app/assets/stylesheets/braiform.scss */
.pr-4, .px-4 {
  padding-right: 1.5rem !important;
}

/* line 11409, app/assets/stylesheets/braiform.scss */
.pb-4, .py-4 {
  padding-bottom: 1.5rem !important;
}

/* line 11413, app/assets/stylesheets/braiform.scss */
.pl-4, .px-4 {
  padding-left: 1.5rem !important;
}

/* line 11417, app/assets/stylesheets/braiform.scss */
.p-5 {
  padding: 3rem !important;
}

/* line 11421, app/assets/stylesheets/braiform.scss */
.pt-5, .py-5 {
  padding-top: 3rem !important;
}

/* line 11425, app/assets/stylesheets/braiform.scss */
.pr-5, .px-5 {
  padding-right: 3rem !important;
}

/* line 11429, app/assets/stylesheets/braiform.scss */
.pb-5, .py-5 {
  padding-bottom: 3rem !important;
}

/* line 11433, app/assets/stylesheets/braiform.scss */
.pl-5, .px-5 {
  padding-left: 3rem !important;
}

/* line 11437, app/assets/stylesheets/braiform.scss */
.m-auto {
  margin: auto !important;
}

/* line 11441, app/assets/stylesheets/braiform.scss */
.mt-auto, .my-auto {
  margin-top: auto !important;
}

/* line 11445, app/assets/stylesheets/braiform.scss */
.mr-auto, .mx-auto {
  margin-right: auto !important;
}

/* line 11449, app/assets/stylesheets/braiform.scss */
.mb-auto, .my-auto {
  margin-bottom: auto !important;
}

/* line 11453, app/assets/stylesheets/braiform.scss */
.ml-auto, .mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  /* line 11458, app/assets/stylesheets/braiform.scss */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* line 11462, app/assets/stylesheets/braiform.scss */
  .mt-sm-0, .my-sm-0 {
    margin-top: 0 !important;
  }
  /* line 11466, app/assets/stylesheets/braiform.scss */
  .mr-sm-0, .mx-sm-0 {
    margin-right: 0 !important;
  }
  /* line 11470, app/assets/stylesheets/braiform.scss */
  .mb-sm-0, .my-sm-0 {
    margin-bottom: 0 !important;
  }
  /* line 11474, app/assets/stylesheets/braiform.scss */
  .ml-sm-0, .mx-sm-0 {
    margin-left: 0 !important;
  }
  /* line 11478, app/assets/stylesheets/braiform.scss */
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  /* line 11482, app/assets/stylesheets/braiform.scss */
  .mt-sm-1, .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  /* line 11486, app/assets/stylesheets/braiform.scss */
  .mr-sm-1, .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  /* line 11490, app/assets/stylesheets/braiform.scss */
  .mb-sm-1, .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 11494, app/assets/stylesheets/braiform.scss */
  .ml-sm-1, .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11498, app/assets/stylesheets/braiform.scss */
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  /* line 11502, app/assets/stylesheets/braiform.scss */
  .mt-sm-2, .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  /* line 11506, app/assets/stylesheets/braiform.scss */
  .mr-sm-2, .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  /* line 11510, app/assets/stylesheets/braiform.scss */
  .mb-sm-2, .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 11514, app/assets/stylesheets/braiform.scss */
  .ml-sm-2, .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11518, app/assets/stylesheets/braiform.scss */
  .m-sm-3 {
    margin: 1rem !important;
  }
  /* line 11522, app/assets/stylesheets/braiform.scss */
  .mt-sm-3, .my-sm-3 {
    margin-top: 1rem !important;
  }
  /* line 11526, app/assets/stylesheets/braiform.scss */
  .mr-sm-3, .mx-sm-3 {
    margin-right: 1rem !important;
  }
  /* line 11530, app/assets/stylesheets/braiform.scss */
  .mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  /* line 11534, app/assets/stylesheets/braiform.scss */
  .ml-sm-3, .mx-sm-3 {
    margin-left: 1rem !important;
  }
  /* line 11538, app/assets/stylesheets/braiform.scss */
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  /* line 11542, app/assets/stylesheets/braiform.scss */
  .mt-sm-4, .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  /* line 11546, app/assets/stylesheets/braiform.scss */
  .mr-sm-4, .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  /* line 11550, app/assets/stylesheets/braiform.scss */
  .mb-sm-4, .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 11554, app/assets/stylesheets/braiform.scss */
  .ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11558, app/assets/stylesheets/braiform.scss */
  .m-sm-5 {
    margin: 3rem !important;
  }
  /* line 11562, app/assets/stylesheets/braiform.scss */
  .mt-sm-5, .my-sm-5 {
    margin-top: 3rem !important;
  }
  /* line 11566, app/assets/stylesheets/braiform.scss */
  .mr-sm-5, .mx-sm-5 {
    margin-right: 3rem !important;
  }
  /* line 11570, app/assets/stylesheets/braiform.scss */
  .mb-sm-5, .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  /* line 11574, app/assets/stylesheets/braiform.scss */
  .ml-sm-5, .mx-sm-5 {
    margin-left: 3rem !important;
  }
  /* line 11578, app/assets/stylesheets/braiform.scss */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* line 11582, app/assets/stylesheets/braiform.scss */
  .pt-sm-0, .py-sm-0 {
    padding-top: 0 !important;
  }
  /* line 11586, app/assets/stylesheets/braiform.scss */
  .pr-sm-0, .px-sm-0 {
    padding-right: 0 !important;
  }
  /* line 11590, app/assets/stylesheets/braiform.scss */
  .pb-sm-0, .py-sm-0 {
    padding-bottom: 0 !important;
  }
  /* line 11594, app/assets/stylesheets/braiform.scss */
  .pl-sm-0, .px-sm-0 {
    padding-left: 0 !important;
  }
  /* line 11598, app/assets/stylesheets/braiform.scss */
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  /* line 11602, app/assets/stylesheets/braiform.scss */
  .pt-sm-1, .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  /* line 11606, app/assets/stylesheets/braiform.scss */
  .pr-sm-1, .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  /* line 11610, app/assets/stylesheets/braiform.scss */
  .pb-sm-1, .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 11614, app/assets/stylesheets/braiform.scss */
  .pl-sm-1, .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11618, app/assets/stylesheets/braiform.scss */
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  /* line 11622, app/assets/stylesheets/braiform.scss */
  .pt-sm-2, .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  /* line 11626, app/assets/stylesheets/braiform.scss */
  .pr-sm-2, .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  /* line 11630, app/assets/stylesheets/braiform.scss */
  .pb-sm-2, .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 11634, app/assets/stylesheets/braiform.scss */
  .pl-sm-2, .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11638, app/assets/stylesheets/braiform.scss */
  .p-sm-3 {
    padding: 1rem !important;
  }
  /* line 11642, app/assets/stylesheets/braiform.scss */
  .pt-sm-3, .py-sm-3 {
    padding-top: 1rem !important;
  }
  /* line 11646, app/assets/stylesheets/braiform.scss */
  .pr-sm-3, .px-sm-3 {
    padding-right: 1rem !important;
  }
  /* line 11650, app/assets/stylesheets/braiform.scss */
  .pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  /* line 11654, app/assets/stylesheets/braiform.scss */
  .pl-sm-3, .px-sm-3 {
    padding-left: 1rem !important;
  }
  /* line 11658, app/assets/stylesheets/braiform.scss */
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  /* line 11662, app/assets/stylesheets/braiform.scss */
  .pt-sm-4, .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  /* line 11666, app/assets/stylesheets/braiform.scss */
  .pr-sm-4, .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  /* line 11670, app/assets/stylesheets/braiform.scss */
  .pb-sm-4, .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 11674, app/assets/stylesheets/braiform.scss */
  .pl-sm-4, .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11678, app/assets/stylesheets/braiform.scss */
  .p-sm-5 {
    padding: 3rem !important;
  }
  /* line 11682, app/assets/stylesheets/braiform.scss */
  .pt-sm-5, .py-sm-5 {
    padding-top: 3rem !important;
  }
  /* line 11686, app/assets/stylesheets/braiform.scss */
  .pr-sm-5, .px-sm-5 {
    padding-right: 3rem !important;
  }
  /* line 11690, app/assets/stylesheets/braiform.scss */
  .pb-sm-5, .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  /* line 11694, app/assets/stylesheets/braiform.scss */
  .pl-sm-5, .px-sm-5 {
    padding-left: 3rem !important;
  }
  /* line 11698, app/assets/stylesheets/braiform.scss */
  .m-sm-auto {
    margin: auto !important;
  }
  /* line 11702, app/assets/stylesheets/braiform.scss */
  .mt-sm-auto, .my-sm-auto {
    margin-top: auto !important;
  }
  /* line 11706, app/assets/stylesheets/braiform.scss */
  .mr-sm-auto, .mx-sm-auto {
    margin-right: auto !important;
  }
  /* line 11710, app/assets/stylesheets/braiform.scss */
  .mb-sm-auto, .my-sm-auto {
    margin-bottom: auto !important;
  }
  /* line 11714, app/assets/stylesheets/braiform.scss */
  .ml-sm-auto, .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  /* line 11720, app/assets/stylesheets/braiform.scss */
  .m-md-0 {
    margin: 0 !important;
  }
  /* line 11724, app/assets/stylesheets/braiform.scss */
  .mt-md-0, .my-md-0 {
    margin-top: 0 !important;
  }
  /* line 11728, app/assets/stylesheets/braiform.scss */
  .mr-md-0, .mx-md-0 {
    margin-right: 0 !important;
  }
  /* line 11732, app/assets/stylesheets/braiform.scss */
  .mb-md-0, .my-md-0 {
    margin-bottom: 0 !important;
  }
  /* line 11736, app/assets/stylesheets/braiform.scss */
  .ml-md-0, .mx-md-0 {
    margin-left: 0 !important;
  }
  /* line 11740, app/assets/stylesheets/braiform.scss */
  .m-md-1 {
    margin: 0.25rem !important;
  }
  /* line 11744, app/assets/stylesheets/braiform.scss */
  .mt-md-1, .my-md-1 {
    margin-top: 0.25rem !important;
  }
  /* line 11748, app/assets/stylesheets/braiform.scss */
  .mr-md-1, .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  /* line 11752, app/assets/stylesheets/braiform.scss */
  .mb-md-1, .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 11756, app/assets/stylesheets/braiform.scss */
  .ml-md-1, .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11760, app/assets/stylesheets/braiform.scss */
  .m-md-2 {
    margin: 0.5rem !important;
  }
  /* line 11764, app/assets/stylesheets/braiform.scss */
  .mt-md-2, .my-md-2 {
    margin-top: 0.5rem !important;
  }
  /* line 11768, app/assets/stylesheets/braiform.scss */
  .mr-md-2, .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  /* line 11772, app/assets/stylesheets/braiform.scss */
  .mb-md-2, .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 11776, app/assets/stylesheets/braiform.scss */
  .ml-md-2, .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11780, app/assets/stylesheets/braiform.scss */
  .m-md-3 {
    margin: 1rem !important;
  }
  /* line 11784, app/assets/stylesheets/braiform.scss */
  .mt-md-3, .my-md-3 {
    margin-top: 1rem !important;
  }
  /* line 11788, app/assets/stylesheets/braiform.scss */
  .mr-md-3, .mx-md-3 {
    margin-right: 1rem !important;
  }
  /* line 11792, app/assets/stylesheets/braiform.scss */
  .mb-md-3, .my-md-3 {
    margin-bottom: 1rem !important;
  }
  /* line 11796, app/assets/stylesheets/braiform.scss */
  .ml-md-3, .mx-md-3 {
    margin-left: 1rem !important;
  }
  /* line 11800, app/assets/stylesheets/braiform.scss */
  .m-md-4 {
    margin: 1.5rem !important;
  }
  /* line 11804, app/assets/stylesheets/braiform.scss */
  .mt-md-4, .my-md-4 {
    margin-top: 1.5rem !important;
  }
  /* line 11808, app/assets/stylesheets/braiform.scss */
  .mr-md-4, .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  /* line 11812, app/assets/stylesheets/braiform.scss */
  .mb-md-4, .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 11816, app/assets/stylesheets/braiform.scss */
  .ml-md-4, .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11820, app/assets/stylesheets/braiform.scss */
  .m-md-5 {
    margin: 3rem !important;
  }
  /* line 11824, app/assets/stylesheets/braiform.scss */
  .mt-md-5, .my-md-5 {
    margin-top: 3rem !important;
  }
  /* line 11828, app/assets/stylesheets/braiform.scss */
  .mr-md-5, .mx-md-5 {
    margin-right: 3rem !important;
  }
  /* line 11832, app/assets/stylesheets/braiform.scss */
  .mb-md-5, .my-md-5 {
    margin-bottom: 3rem !important;
  }
  /* line 11836, app/assets/stylesheets/braiform.scss */
  .ml-md-5, .mx-md-5 {
    margin-left: 3rem !important;
  }
  /* line 11840, app/assets/stylesheets/braiform.scss */
  .p-md-0 {
    padding: 0 !important;
  }
  /* line 11844, app/assets/stylesheets/braiform.scss */
  .pt-md-0, .py-md-0 {
    padding-top: 0 !important;
  }
  /* line 11848, app/assets/stylesheets/braiform.scss */
  .pr-md-0, .px-md-0 {
    padding-right: 0 !important;
  }
  /* line 11852, app/assets/stylesheets/braiform.scss */
  .pb-md-0, .py-md-0 {
    padding-bottom: 0 !important;
  }
  /* line 11856, app/assets/stylesheets/braiform.scss */
  .pl-md-0, .px-md-0 {
    padding-left: 0 !important;
  }
  /* line 11860, app/assets/stylesheets/braiform.scss */
  .p-md-1 {
    padding: 0.25rem !important;
  }
  /* line 11864, app/assets/stylesheets/braiform.scss */
  .pt-md-1, .py-md-1 {
    padding-top: 0.25rem !important;
  }
  /* line 11868, app/assets/stylesheets/braiform.scss */
  .pr-md-1, .px-md-1 {
    padding-right: 0.25rem !important;
  }
  /* line 11872, app/assets/stylesheets/braiform.scss */
  .pb-md-1, .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 11876, app/assets/stylesheets/braiform.scss */
  .pl-md-1, .px-md-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11880, app/assets/stylesheets/braiform.scss */
  .p-md-2 {
    padding: 0.5rem !important;
  }
  /* line 11884, app/assets/stylesheets/braiform.scss */
  .pt-md-2, .py-md-2 {
    padding-top: 0.5rem !important;
  }
  /* line 11888, app/assets/stylesheets/braiform.scss */
  .pr-md-2, .px-md-2 {
    padding-right: 0.5rem !important;
  }
  /* line 11892, app/assets/stylesheets/braiform.scss */
  .pb-md-2, .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 11896, app/assets/stylesheets/braiform.scss */
  .pl-md-2, .px-md-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11900, app/assets/stylesheets/braiform.scss */
  .p-md-3 {
    padding: 1rem !important;
  }
  /* line 11904, app/assets/stylesheets/braiform.scss */
  .pt-md-3, .py-md-3 {
    padding-top: 1rem !important;
  }
  /* line 11908, app/assets/stylesheets/braiform.scss */
  .pr-md-3, .px-md-3 {
    padding-right: 1rem !important;
  }
  /* line 11912, app/assets/stylesheets/braiform.scss */
  .pb-md-3, .py-md-3 {
    padding-bottom: 1rem !important;
  }
  /* line 11916, app/assets/stylesheets/braiform.scss */
  .pl-md-3, .px-md-3 {
    padding-left: 1rem !important;
  }
  /* line 11920, app/assets/stylesheets/braiform.scss */
  .p-md-4 {
    padding: 1.5rem !important;
  }
  /* line 11924, app/assets/stylesheets/braiform.scss */
  .pt-md-4, .py-md-4 {
    padding-top: 1.5rem !important;
  }
  /* line 11928, app/assets/stylesheets/braiform.scss */
  .pr-md-4, .px-md-4 {
    padding-right: 1.5rem !important;
  }
  /* line 11932, app/assets/stylesheets/braiform.scss */
  .pb-md-4, .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 11936, app/assets/stylesheets/braiform.scss */
  .pl-md-4, .px-md-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11940, app/assets/stylesheets/braiform.scss */
  .p-md-5 {
    padding: 3rem !important;
  }
  /* line 11944, app/assets/stylesheets/braiform.scss */
  .pt-md-5, .py-md-5 {
    padding-top: 3rem !important;
  }
  /* line 11948, app/assets/stylesheets/braiform.scss */
  .pr-md-5, .px-md-5 {
    padding-right: 3rem !important;
  }
  /* line 11952, app/assets/stylesheets/braiform.scss */
  .pb-md-5, .py-md-5 {
    padding-bottom: 3rem !important;
  }
  /* line 11956, app/assets/stylesheets/braiform.scss */
  .pl-md-5, .px-md-5 {
    padding-left: 3rem !important;
  }
  /* line 11960, app/assets/stylesheets/braiform.scss */
  .m-md-auto {
    margin: auto !important;
  }
  /* line 11964, app/assets/stylesheets/braiform.scss */
  .mt-md-auto, .my-md-auto {
    margin-top: auto !important;
  }
  /* line 11968, app/assets/stylesheets/braiform.scss */
  .mr-md-auto, .mx-md-auto {
    margin-right: auto !important;
  }
  /* line 11972, app/assets/stylesheets/braiform.scss */
  .mb-md-auto, .my-md-auto {
    margin-bottom: auto !important;
  }
  /* line 11976, app/assets/stylesheets/braiform.scss */
  .ml-md-auto, .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  /* line 11982, app/assets/stylesheets/braiform.scss */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* line 11986, app/assets/stylesheets/braiform.scss */
  .mt-lg-0, .my-lg-0 {
    margin-top: 0 !important;
  }
  /* line 11990, app/assets/stylesheets/braiform.scss */
  .mr-lg-0, .mx-lg-0 {
    margin-right: 0 !important;
  }
  /* line 11994, app/assets/stylesheets/braiform.scss */
  .mb-lg-0, .my-lg-0 {
    margin-bottom: 0 !important;
  }
  /* line 11998, app/assets/stylesheets/braiform.scss */
  .ml-lg-0, .mx-lg-0 {
    margin-left: 0 !important;
  }
  /* line 12002, app/assets/stylesheets/braiform.scss */
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  /* line 12006, app/assets/stylesheets/braiform.scss */
  .mt-lg-1, .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  /* line 12010, app/assets/stylesheets/braiform.scss */
  .mr-lg-1, .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  /* line 12014, app/assets/stylesheets/braiform.scss */
  .mb-lg-1, .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 12018, app/assets/stylesheets/braiform.scss */
  .ml-lg-1, .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  /* line 12022, app/assets/stylesheets/braiform.scss */
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  /* line 12026, app/assets/stylesheets/braiform.scss */
  .mt-lg-2, .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  /* line 12030, app/assets/stylesheets/braiform.scss */
  .mr-lg-2, .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  /* line 12034, app/assets/stylesheets/braiform.scss */
  .mb-lg-2, .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 12038, app/assets/stylesheets/braiform.scss */
  .ml-lg-2, .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  /* line 12042, app/assets/stylesheets/braiform.scss */
  .m-lg-3 {
    margin: 1rem !important;
  }
  /* line 12046, app/assets/stylesheets/braiform.scss */
  .mt-lg-3, .my-lg-3 {
    margin-top: 1rem !important;
  }
  /* line 12050, app/assets/stylesheets/braiform.scss */
  .mr-lg-3, .mx-lg-3 {
    margin-right: 1rem !important;
  }
  /* line 12054, app/assets/stylesheets/braiform.scss */
  .mb-lg-3, .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  /* line 12058, app/assets/stylesheets/braiform.scss */
  .ml-lg-3, .mx-lg-3 {
    margin-left: 1rem !important;
  }
  /* line 12062, app/assets/stylesheets/braiform.scss */
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  /* line 12066, app/assets/stylesheets/braiform.scss */
  .mt-lg-4, .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  /* line 12070, app/assets/stylesheets/braiform.scss */
  .mr-lg-4, .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  /* line 12074, app/assets/stylesheets/braiform.scss */
  .mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 12078, app/assets/stylesheets/braiform.scss */
  .ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  /* line 12082, app/assets/stylesheets/braiform.scss */
  .m-lg-5 {
    margin: 3rem !important;
  }
  /* line 12086, app/assets/stylesheets/braiform.scss */
  .mt-lg-5, .my-lg-5 {
    margin-top: 3rem !important;
  }
  /* line 12090, app/assets/stylesheets/braiform.scss */
  .mr-lg-5, .mx-lg-5 {
    margin-right: 3rem !important;
  }
  /* line 12094, app/assets/stylesheets/braiform.scss */
  .mb-lg-5, .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  /* line 12098, app/assets/stylesheets/braiform.scss */
  .ml-lg-5, .mx-lg-5 {
    margin-left: 3rem !important;
  }
  /* line 12102, app/assets/stylesheets/braiform.scss */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* line 12106, app/assets/stylesheets/braiform.scss */
  .pt-lg-0, .py-lg-0 {
    padding-top: 0 !important;
  }
  /* line 12110, app/assets/stylesheets/braiform.scss */
  .pr-lg-0, .px-lg-0 {
    padding-right: 0 !important;
  }
  /* line 12114, app/assets/stylesheets/braiform.scss */
  .pb-lg-0, .py-lg-0 {
    padding-bottom: 0 !important;
  }
  /* line 12118, app/assets/stylesheets/braiform.scss */
  .pl-lg-0, .px-lg-0 {
    padding-left: 0 !important;
  }
  /* line 12122, app/assets/stylesheets/braiform.scss */
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  /* line 12126, app/assets/stylesheets/braiform.scss */
  .pt-lg-1, .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  /* line 12130, app/assets/stylesheets/braiform.scss */
  .pr-lg-1, .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  /* line 12134, app/assets/stylesheets/braiform.scss */
  .pb-lg-1, .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 12138, app/assets/stylesheets/braiform.scss */
  .pl-lg-1, .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  /* line 12142, app/assets/stylesheets/braiform.scss */
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  /* line 12146, app/assets/stylesheets/braiform.scss */
  .pt-lg-2, .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  /* line 12150, app/assets/stylesheets/braiform.scss */
  .pr-lg-2, .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  /* line 12154, app/assets/stylesheets/braiform.scss */
  .pb-lg-2, .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 12158, app/assets/stylesheets/braiform.scss */
  .pl-lg-2, .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  /* line 12162, app/assets/stylesheets/braiform.scss */
  .p-lg-3 {
    padding: 1rem !important;
  }
  /* line 12166, app/assets/stylesheets/braiform.scss */
  .pt-lg-3, .py-lg-3 {
    padding-top: 1rem !important;
  }
  /* line 12170, app/assets/stylesheets/braiform.scss */
  .pr-lg-3, .px-lg-3 {
    padding-right: 1rem !important;
  }
  /* line 12174, app/assets/stylesheets/braiform.scss */
  .pb-lg-3, .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  /* line 12178, app/assets/stylesheets/braiform.scss */
  .pl-lg-3, .px-lg-3 {
    padding-left: 1rem !important;
  }
  /* line 12182, app/assets/stylesheets/braiform.scss */
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  /* line 12186, app/assets/stylesheets/braiform.scss */
  .pt-lg-4, .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  /* line 12190, app/assets/stylesheets/braiform.scss */
  .pr-lg-4, .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  /* line 12194, app/assets/stylesheets/braiform.scss */
  .pb-lg-4, .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 12198, app/assets/stylesheets/braiform.scss */
  .pl-lg-4, .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  /* line 12202, app/assets/stylesheets/braiform.scss */
  .p-lg-5 {
    padding: 3rem !important;
  }
  /* line 12206, app/assets/stylesheets/braiform.scss */
  .pt-lg-5, .py-lg-5 {
    padding-top: 3rem !important;
  }
  /* line 12210, app/assets/stylesheets/braiform.scss */
  .pr-lg-5, .px-lg-5 {
    padding-right: 3rem !important;
  }
  /* line 12214, app/assets/stylesheets/braiform.scss */
  .pb-lg-5, .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  /* line 12218, app/assets/stylesheets/braiform.scss */
  .pl-lg-5, .px-lg-5 {
    padding-left: 3rem !important;
  }
  /* line 12222, app/assets/stylesheets/braiform.scss */
  .m-lg-auto {
    margin: auto !important;
  }
  /* line 12226, app/assets/stylesheets/braiform.scss */
  .mt-lg-auto, .my-lg-auto {
    margin-top: auto !important;
  }
  /* line 12230, app/assets/stylesheets/braiform.scss */
  .mr-lg-auto, .mx-lg-auto {
    margin-right: auto !important;
  }
  /* line 12234, app/assets/stylesheets/braiform.scss */
  .mb-lg-auto, .my-lg-auto {
    margin-bottom: auto !important;
  }
  /* line 12238, app/assets/stylesheets/braiform.scss */
  .ml-lg-auto, .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  /* line 12244, app/assets/stylesheets/braiform.scss */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* line 12248, app/assets/stylesheets/braiform.scss */
  .mt-xl-0, .my-xl-0 {
    margin-top: 0 !important;
  }
  /* line 12252, app/assets/stylesheets/braiform.scss */
  .mr-xl-0, .mx-xl-0 {
    margin-right: 0 !important;
  }
  /* line 12256, app/assets/stylesheets/braiform.scss */
  .mb-xl-0, .my-xl-0 {
    margin-bottom: 0 !important;
  }
  /* line 12260, app/assets/stylesheets/braiform.scss */
  .ml-xl-0, .mx-xl-0 {
    margin-left: 0 !important;
  }
  /* line 12264, app/assets/stylesheets/braiform.scss */
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  /* line 12268, app/assets/stylesheets/braiform.scss */
  .mt-xl-1, .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 12272, app/assets/stylesheets/braiform.scss */
  .mr-xl-1, .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 12276, app/assets/stylesheets/braiform.scss */
  .mb-xl-1, .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 12280, app/assets/stylesheets/braiform.scss */
  .ml-xl-1, .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 12284, app/assets/stylesheets/braiform.scss */
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  /* line 12288, app/assets/stylesheets/braiform.scss */
  .mt-xl-2, .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 12292, app/assets/stylesheets/braiform.scss */
  .mr-xl-2, .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 12296, app/assets/stylesheets/braiform.scss */
  .mb-xl-2, .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 12300, app/assets/stylesheets/braiform.scss */
  .ml-xl-2, .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 12304, app/assets/stylesheets/braiform.scss */
  .m-xl-3 {
    margin: 1rem !important;
  }
  /* line 12308, app/assets/stylesheets/braiform.scss */
  .mt-xl-3, .my-xl-3 {
    margin-top: 1rem !important;
  }
  /* line 12312, app/assets/stylesheets/braiform.scss */
  .mr-xl-3, .mx-xl-3 {
    margin-right: 1rem !important;
  }
  /* line 12316, app/assets/stylesheets/braiform.scss */
  .mb-xl-3, .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 12320, app/assets/stylesheets/braiform.scss */
  .ml-xl-3, .mx-xl-3 {
    margin-left: 1rem !important;
  }
  /* line 12324, app/assets/stylesheets/braiform.scss */
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  /* line 12328, app/assets/stylesheets/braiform.scss */
  .mt-xl-4, .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 12332, app/assets/stylesheets/braiform.scss */
  .mr-xl-4, .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 12336, app/assets/stylesheets/braiform.scss */
  .mb-xl-4, .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 12340, app/assets/stylesheets/braiform.scss */
  .ml-xl-4, .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 12344, app/assets/stylesheets/braiform.scss */
  .m-xl-5 {
    margin: 3rem !important;
  }
  /* line 12348, app/assets/stylesheets/braiform.scss */
  .mt-xl-5, .my-xl-5 {
    margin-top: 3rem !important;
  }
  /* line 12352, app/assets/stylesheets/braiform.scss */
  .mr-xl-5, .mx-xl-5 {
    margin-right: 3rem !important;
  }
  /* line 12356, app/assets/stylesheets/braiform.scss */
  .mb-xl-5, .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 12360, app/assets/stylesheets/braiform.scss */
  .ml-xl-5, .mx-xl-5 {
    margin-left: 3rem !important;
  }
  /* line 12364, app/assets/stylesheets/braiform.scss */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* line 12368, app/assets/stylesheets/braiform.scss */
  .pt-xl-0, .py-xl-0 {
    padding-top: 0 !important;
  }
  /* line 12372, app/assets/stylesheets/braiform.scss */
  .pr-xl-0, .px-xl-0 {
    padding-right: 0 !important;
  }
  /* line 12376, app/assets/stylesheets/braiform.scss */
  .pb-xl-0, .py-xl-0 {
    padding-bottom: 0 !important;
  }
  /* line 12380, app/assets/stylesheets/braiform.scss */
  .pl-xl-0, .px-xl-0 {
    padding-left: 0 !important;
  }
  /* line 12384, app/assets/stylesheets/braiform.scss */
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  /* line 12388, app/assets/stylesheets/braiform.scss */
  .pt-xl-1, .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 12392, app/assets/stylesheets/braiform.scss */
  .pr-xl-1, .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 12396, app/assets/stylesheets/braiform.scss */
  .pb-xl-1, .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 12400, app/assets/stylesheets/braiform.scss */
  .pl-xl-1, .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 12404, app/assets/stylesheets/braiform.scss */
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  /* line 12408, app/assets/stylesheets/braiform.scss */
  .pt-xl-2, .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 12412, app/assets/stylesheets/braiform.scss */
  .pr-xl-2, .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 12416, app/assets/stylesheets/braiform.scss */
  .pb-xl-2, .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 12420, app/assets/stylesheets/braiform.scss */
  .pl-xl-2, .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 12424, app/assets/stylesheets/braiform.scss */
  .p-xl-3 {
    padding: 1rem !important;
  }
  /* line 12428, app/assets/stylesheets/braiform.scss */
  .pt-xl-3, .py-xl-3 {
    padding-top: 1rem !important;
  }
  /* line 12432, app/assets/stylesheets/braiform.scss */
  .pr-xl-3, .px-xl-3 {
    padding-right: 1rem !important;
  }
  /* line 12436, app/assets/stylesheets/braiform.scss */
  .pb-xl-3, .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 12440, app/assets/stylesheets/braiform.scss */
  .pl-xl-3, .px-xl-3 {
    padding-left: 1rem !important;
  }
  /* line 12444, app/assets/stylesheets/braiform.scss */
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  /* line 12448, app/assets/stylesheets/braiform.scss */
  .pt-xl-4, .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 12452, app/assets/stylesheets/braiform.scss */
  .pr-xl-4, .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 12456, app/assets/stylesheets/braiform.scss */
  .pb-xl-4, .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 12460, app/assets/stylesheets/braiform.scss */
  .pl-xl-4, .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 12464, app/assets/stylesheets/braiform.scss */
  .p-xl-5 {
    padding: 3rem !important;
  }
  /* line 12468, app/assets/stylesheets/braiform.scss */
  .pt-xl-5, .py-xl-5 {
    padding-top: 3rem !important;
  }
  /* line 12472, app/assets/stylesheets/braiform.scss */
  .pr-xl-5, .px-xl-5 {
    padding-right: 3rem !important;
  }
  /* line 12476, app/assets/stylesheets/braiform.scss */
  .pb-xl-5, .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 12480, app/assets/stylesheets/braiform.scss */
  .pl-xl-5, .px-xl-5 {
    padding-left: 3rem !important;
  }
  /* line 12484, app/assets/stylesheets/braiform.scss */
  .m-xl-auto {
    margin: auto !important;
  }
  /* line 12488, app/assets/stylesheets/braiform.scss */
  .mt-xl-auto, .my-xl-auto {
    margin-top: auto !important;
  }
  /* line 12492, app/assets/stylesheets/braiform.scss */
  .mr-xl-auto, .mx-xl-auto {
    margin-right: auto !important;
  }
  /* line 12496, app/assets/stylesheets/braiform.scss */
  .mb-xl-auto, .my-xl-auto {
    margin-bottom: auto !important;
  }
  /* line 12500, app/assets/stylesheets/braiform.scss */
  .ml-xl-auto, .mx-xl-auto {
    margin-left: auto !important;
  }
}

/* line 12505, app/assets/stylesheets/braiform.scss */
.text-justify {
  text-align: justify !important;
}

/* line 12509, app/assets/stylesheets/braiform.scss */
.text-nowrap {
  white-space: nowrap !important;
}

/* line 12513, app/assets/stylesheets/braiform.scss */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 12519, app/assets/stylesheets/braiform.scss */
.text-left {
  text-align: left !important;
}

/* line 12523, app/assets/stylesheets/braiform.scss */
.text-right {
  text-align: right !important;
}

/* line 12527, app/assets/stylesheets/braiform.scss */
.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  /* line 12532, app/assets/stylesheets/braiform.scss */
  .text-sm-left {
    text-align: left !important;
  }
  /* line 12536, app/assets/stylesheets/braiform.scss */
  .text-sm-right {
    text-align: right !important;
  }
  /* line 12540, app/assets/stylesheets/braiform.scss */
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* line 12546, app/assets/stylesheets/braiform.scss */
  .text-md-left {
    text-align: left !important;
  }
  /* line 12550, app/assets/stylesheets/braiform.scss */
  .text-md-right {
    text-align: right !important;
  }
  /* line 12554, app/assets/stylesheets/braiform.scss */
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  /* line 12560, app/assets/stylesheets/braiform.scss */
  .text-lg-left {
    text-align: left !important;
  }
  /* line 12564, app/assets/stylesheets/braiform.scss */
  .text-lg-right {
    text-align: right !important;
  }
  /* line 12568, app/assets/stylesheets/braiform.scss */
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 12574, app/assets/stylesheets/braiform.scss */
  .text-xl-left {
    text-align: left !important;
  }
  /* line 12578, app/assets/stylesheets/braiform.scss */
  .text-xl-right {
    text-align: right !important;
  }
  /* line 12582, app/assets/stylesheets/braiform.scss */
  .text-xl-center {
    text-align: center !important;
  }
}

/* line 12587, app/assets/stylesheets/braiform.scss */
.text-lowercase {
  text-transform: lowercase !important;
}

/* line 12591, app/assets/stylesheets/braiform.scss */
.text-uppercase {
  text-transform: uppercase !important;
}

/* line 12595, app/assets/stylesheets/braiform.scss */
.text-capitalize {
  text-transform: capitalize !important;
}

/* line 12599, app/assets/stylesheets/braiform.scss */
.font-weight-light {
  font-weight: 300 !important;
}

/* line 12603, app/assets/stylesheets/braiform.scss */
.font-weight-normal {
  font-weight: normal !important;
}

/* line 12607, app/assets/stylesheets/braiform.scss */
.font-weight-bold {
  font-weight: bold !important;
}

/* line 12611, app/assets/stylesheets/braiform.scss */
.font-italic {
  font-style: italic !important;
}

/* line 12615, app/assets/stylesheets/braiform.scss */
.text-white {
  color: #fff !important;
}

/* line 12619, app/assets/stylesheets/braiform.scss */
.text-primary {
  color: #007bff !important;
}

/* line 12623, app/assets/stylesheets/braiform.scss */
a.text-primary:focus, a.text-primary:hover {
  color: #0062cc !important;
}

/* line 12627, app/assets/stylesheets/braiform.scss */
.text-secondary {
  color: #868e96 !important;
}

/* line 12631, app/assets/stylesheets/braiform.scss */
a.text-secondary:focus, a.text-secondary:hover {
  color: #6c757d !important;
}

/* line 12635, app/assets/stylesheets/braiform.scss */
.text-success {
  color: #72BA3A !important;
}

/* line 12639, app/assets/stylesheets/braiform.scss */
a.text-success:focus, a.text-success:hover {
  color: #5a932e !important;
}

/* line 12643, app/assets/stylesheets/braiform.scss */
.text-info {
  color: #17a2b8 !important;
}

/* line 12647, app/assets/stylesheets/braiform.scss */
a.text-info:focus, a.text-info:hover {
  color: #117a8b !important;
}

/* line 12651, app/assets/stylesheets/braiform.scss */
.text-warning {
  color: #ffc107 !important;
}

/* line 12655, app/assets/stylesheets/braiform.scss */
a.text-warning:focus, a.text-warning:hover {
  color: #d39e00 !important;
}

/* line 12659, app/assets/stylesheets/braiform.scss */
.text-danger {
  color: #D75466 !important;
}

/* line 12663, app/assets/stylesheets/braiform.scss */
a.text-danger:focus, a.text-danger:hover {
  color: #c92f44 !important;
}

/* line 12667, app/assets/stylesheets/braiform.scss */
.text-light {
  color: #f8f9fa !important;
}

/* line 12671, app/assets/stylesheets/braiform.scss */
a.text-light:focus, a.text-light:hover {
  color: #dae0e5 !important;
}

/* line 12675, app/assets/stylesheets/braiform.scss */
.text-dark {
  color: #343a40 !important;
}

/* line 12679, app/assets/stylesheets/braiform.scss */
a.text-dark:focus, a.text-dark:hover {
  color: #1d2124 !important;
}

/* line 12683, app/assets/stylesheets/braiform.scss */
.text-muted {
  color: #868e96 !important;
}

/* line 12687, app/assets/stylesheets/braiform.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 12695, app/assets/stylesheets/braiform.scss */
.visible {
  visibility: visible !important;
}

/* line 12699, app/assets/stylesheets/braiform.scss */
.invisible {
  visibility: hidden !important;
}

/* line 12703, app/assets/stylesheets/braiform.scss */
#wrapper {
  max-width: 1800px;
  margin: 0px auto;
  position: relative;
  /*overflow-x: hidden;*/
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* line 12712, app/assets/stylesheets/braiform.scss */
body {
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* line 12718, app/assets/stylesheets/braiform.scss */
.scene {
  width: 100%;
  height: calc(100vh - 31px);
  min-height: 720px;
  max-height: 800px;
}

/* line 12725, app/assets/stylesheets/braiform.scss */
.scene .text-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
}

/* line 12735, app/assets/stylesheets/braiform.scss */
.slick-prev {
  background-color: white !important;
  position: absolute !important;
  width: 70px !important;
  left: 0px !important;
  bottom: 0px !important;
  height: 70px !important;
  color: white !important;
  top: auto !important;
  z-index: 9999 !important;
  transform: none !important;
}

/* line 12749, app/assets/stylesheets/braiform.scss */
.slick-prev:before {
  width: 15px;
  height: 18px;
  content: "" !important;
  background: url(/images/arrow-left.svg);
  background-size: 11px 18px;
  position: absolute;
  background-repeat: no-repeat;
  left: 50%;
  margin-left: -7px;
  top: 50%;
  margin-top: -9px;
  z-index: 9999 !important;
  opacity: 1 !important;
  font-size: auto !important;
}

/* line 12766, app/assets/stylesheets/braiform.scss */
.slick-next {
  background-color: white !important;
  width: 70px !important;
  height: 70px !important;
  left: 70px !important;
  position: absolute;
  bottom: 0px !important;
  top: auto !important;
  color: white !important;
  z-index: 9999 !important;
  transform: none !important;
}

/* line 12780, app/assets/stylesheets/braiform.scss */
.slick-next:before {
  width: 15px;
  height: 18px;
  content: "" !important;
  background: url(/images/arrow-right.svg);
  background-size: 11px 18px;
  position: absolute;
  background-repeat: no-repeat;
  right: 50%;
  margin-right: -7px;
  top: 50%;
  margin-top: -9px;
  z-index: 9999 !important;
  opacity: 1 !important;
  font-size: auto !important;
}

/* line 12797, app/assets/stylesheets/braiform.scss */
.ic {
  display: inline-block;
  min-width: 24px;
  min-height: 24px;
  background-position: center center;
  background-size: 100% auto !important;
  background-repeat: no-repeat !important;
}

/* line 12806, app/assets/stylesheets/braiform.scss */
.ic-mobile-menu {
  background: url(/images/icons/ic-mobile-menu.png);
}

/* line 12810, app/assets/stylesheets/braiform.scss */
.ic-user--white {
  background: url(/images/icons/ic-user-white.svg);
}

/* line 12814, app/assets/stylesheets/braiform.scss */
.ic-arrow-down--white {
  background: url(/images/icons/ic-arrow-down-white.svg);
}

/* line 12818, app/assets/stylesheets/braiform.scss */
.ic-arrow-right--white {
  background: url(/images/icons/ic-arrow-right-white.svg);
}

/* line 12822, app/assets/stylesheets/braiform.scss */
.ic-arrow-down2--white {
  background: url(/images/icons/ic-arrow-down2-white.svg);
}

/* line 12826, app/assets/stylesheets/braiform.scss */
.ic-check--green {
  background: url(/images/icons/ic-check-green.svg);
}

/* line 12830, app/assets/stylesheets/braiform.scss */
.ic-play--white {
  background: url(/images/icons/ic-play-white.svg);
}

/* line 12834, app/assets/stylesheets/braiform.scss */
.ic-envelope--white {
  background: url(/images/icons/ic-envelope-white.svg);
}

/* line 12838, app/assets/stylesheets/braiform.scss */
.ic-closed--white {
  background: url(/images/icons/ic-closed-white.png);
}

/* line 12842, app/assets/stylesheets/braiform.scss */
.ic-recycle--white {
  background: url(/images/icons/ic-recycle-white.svg);
}

/* line 12846, app/assets/stylesheets/braiform.scss */
#top-bar-appear {
  position: fixed;
  z-index: 9999;
  width: 100%;
  max-width: 1800px;
  top: 0px;
  animation: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 920px) {
  /* line 12859, app/assets/stylesheets/braiform.scss */
  #top-bar-appear {
    display: none;
  }
}

/* line 12864, app/assets/stylesheets/braiform.scss */
#top-bar-appear .login-link {
  background: #72BA3A;
  padding-left: 40px;
  padding-right: 40px;
  height: 31px;
  z-index: 5;
}

@media (max-width: 991px) {
  /* line 12873, app/assets/stylesheets/braiform.scss */
  #top-bar-appear .login-link {
    padding-left: 25px;
    padding-right: 25px;
    height: 40px;
  }
}

/* line 12880, app/assets/stylesheets/braiform.scss */
#top-bar-appear .login-link a {
  color: white !important;
  font-size: 0.8rem;
}

/* line 12885, app/assets/stylesheets/braiform.scss */
#top-bar-appear .login-link .ic {
  width: 16px;
  height: 16px;
  min-height: 10px;
  min-width: 10px;
}

@media (max-width: 991px) {
  /* line 12893, app/assets/stylesheets/braiform.scss */
  #top-bar-appear .login-link .ic {
    margin-right: 0px;
  }
}

/* line 12898, app/assets/stylesheets/braiform.scss */
#top-bar-appear.nav-up {
  top: -40px;
  opacity: 0;
}

/* line 12903, app/assets/stylesheets/braiform.scss */
#top-bar-appear nav {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
  padding-top: 5px;
}

/* line 12910, app/assets/stylesheets/braiform.scss */
#top-bar-appear nav a {
  color: white;
  margin-right: 15px;
  text-transform: none;
  letter-spacing: normal;
}

/* line 12917, app/assets/stylesheets/braiform.scss */
#top-bar, #top-bar-appear {
  height: 31px;
  background-color: #283355;
  color: white;
  z-index: 9999;
}

@media (max-width: 868px) {
  /* line 12925, app/assets/stylesheets/braiform.scss */
  #top-bar, #top-bar-appear {
    position: fixed;
    height: 40px;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999 !important;
    opacity: 1;
  }
}

/* line 12936, app/assets/stylesheets/braiform.scss */
#top-bar .link-row, #top-bar-appear .link-row {
  height: 100%;
}

/* line 12940, app/assets/stylesheets/braiform.scss */
#top-bar .mobile-logo, #top-bar-appear .mobile-logo {
  align-items: center;
  display: none;
}

@media (max-width: 868px) {
  /* line 12948, app/assets/stylesheets/braiform.scss */
  #top-bar .mobile-logo, #top-bar-appear .mobile-logo {
    display: block;
  }
}

/* line 12953, app/assets/stylesheets/braiform.scss */
#top-bar .mobile-logo img, #top-bar-appear .mobile-logo img {
  margin-top: 8px;
}

/* line 12957, app/assets/stylesheets/braiform.scss */
#top-bar .dropdown, #top-bar-appear .dropdown {
  display: inline-flex;
  position: relative;
}

/* line 12964, app/assets/stylesheets/braiform.scss */
#top-bar .dropdown .dropdown-menu, #top-bar-appear .dropdown .dropdown-menu {
  position: absolute;
  width: 100%;
  height: auto;
  background: #283355;
  z-index: 110;
  border-radius: 0px;
  margin-top: 0px;
  border: 0px;
  padding: 20px;
  margin-right: -6px;
}

/* line 12977, app/assets/stylesheets/braiform.scss */
#top-bar .dropdown .dropdown-menu a, #top-bar-appear .dropdown .dropdown-menu a {
  color: white;
  text-transform: none;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid white;
}

/* line 12985, app/assets/stylesheets/braiform.scss */
#top-bar .dropdown .dropdown-menu a:last-of-type, #top-bar-appear .dropdown .dropdown-menu a:last-of-type {
  border-bottom: 0px;
}

/* line 12989, app/assets/stylesheets/braiform.scss */
#top-bar .dropdown .dropdown-menu a:hover, #top-bar-appear .dropdown .dropdown-menu a:hover {
  background: #5263c6;
}

/* line 12993, app/assets/stylesheets/braiform.scss */
#top-bar .slogan, #top-bar-appear .slogan {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 0.85rem;
  line-height: 31px;
}

@media (max-width: 868px) {
  /* line 13001, app/assets/stylesheets/braiform.scss */
  #top-bar .slogan, #top-bar-appear .slogan {
    display: none;
  }
}

/* line 13006, app/assets/stylesheets/braiform.scss */
#top-bar .login-link, #top-bar-appear .login-link {
  background: #72BA3A;
  padding-left: 40px;
  padding-right: 40px;
  height: 31px;
  z-index: 5;
}

@media (max-width: 868px) {
  /* line 13015, app/assets/stylesheets/braiform.scss */
  #top-bar .login-link, #top-bar-appear .login-link {
    padding-left: 25px;
    padding-right: 25px;
    height: 40px;
  }
}

/* line 13022, app/assets/stylesheets/braiform.scss */
#top-bar .login-link a, #top-bar-appear .login-link a {
  color: white !important;
  font-size: 0.8rem;
}

/* line 13027, app/assets/stylesheets/braiform.scss */
#top-bar .login-link .ic, #top-bar-appear .login-link .ic {
  width: 16px;
  height: 16px;
  min-height: 10px;
  min-width: 10px;
}

@media (max-width: 868px) {
  /* line 13035, app/assets/stylesheets/braiform.scss */
  #top-bar .login-link .ic, #top-bar-appear .login-link .ic {
    margin-right: 0px;
  }
}

@media (max-width: 360px) {
  /* line 13041, app/assets/stylesheets/braiform.scss */
  #top-bar .login-link,
#top-bar-appear .login-link {
    padding: 0 15px;
  }
  /* line 13046, app/assets/stylesheets/braiform.scss */
  #top-bar .login-link .text,
#top-bar-appear .login-link .text {
    font-size: .6rem;
  }
}

/* line 13052, app/assets/stylesheets/braiform.scss */
#top-bar .more-link, #top-bar-appear .more-link {
  padding-left: 30px !important;
  padding-right: 36px !important;
  z-index: 5;
  color: white !important;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: normal;
  font-style: normal;
  background: #283355;
  align-items: center;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  outline: none;
  border: none;
  border-radius: 0;
  /* -webkit-transform: translateX(6px); */
  /* transform: translateX(6px); */
  height: 31px;
}

@media (max-width: 868px) {
  /* line 13079, app/assets/stylesheets/braiform.scss */
  #top-bar .more-link, #top-bar-appear .more-link {
    padding-left: 16px !important;
    padding-right: 26px !important;
    height: 40px;
  }
}

/* line 13086, app/assets/stylesheets/braiform.scss */
#top-bar .more-link:after, #top-bar-appear .more-link:after {
  display: none;
}

/* line 13090, app/assets/stylesheets/braiform.scss */
#top-bar .more-link .ic, #top-bar-appear .more-link .ic {
  width: 11px;
  height: 11px;
  margin-left: 5px;
  margin-right: 0px;
  min-height: 10px;
  min-width: 10px;
}

@media (max-width: 868px) {
  /* line 13100, app/assets/stylesheets/braiform.scss */
  #top-bar #desktop-menu.more-link, #top-bar-appear #desktop-menu.more-link {
    display: none;
  }
}

/* line 13105, app/assets/stylesheets/braiform.scss */
#top-bar #main-menu-mobile.more-link, #top-bar-appear #main-menu-mobile.more-link {
  display: none;
}

/* line 13109, app/assets/stylesheets/braiform.scss */
#top-bar #main-menu-mobile.more-link .ic, #top-bar-appear #main-menu-mobile.more-link .ic {
  width: 16px !important;
  height: 14px !important;
  margin-left: 0px;
}

@media (max-width: 868px) {
  /* line 13116, app/assets/stylesheets/braiform.scss */
  #top-bar #main-menu-mobile.more-link, #top-bar-appear #main-menu-mobile.more-link {
    display: block;
  }
}

/* line 13121, app/assets/stylesheets/braiform.scss */
#header {
  position: absolute;
  top: 31px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 100;
}

@media (max-width: 868px) {
  /* line 13131, app/assets/stylesheets/braiform.scss */
  #header {
    display: none;
  }
}

/* line 13136, app/assets/stylesheets/braiform.scss */
#header .container-fluid {
  align-items: center;
}

/* line 13142, app/assets/stylesheets/braiform.scss */
#header .main-menu li a {
  color: white;
  text-transform: none;
}

/* line 13147, app/assets/stylesheets/braiform.scss */
#header .main-menu li a:hover {
  text-decoration: underline;
}

/* line 13151, app/assets/stylesheets/braiform.scss */
#main-footer {
  background: #283355;
  z-index: 10;
  position: relative;
}

/* line 13157, app/assets/stylesheets/braiform.scss */
#main-footer .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

/* line 13162, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top {
  width: 100%;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  height: 125px;
  color: white;
}

@media (max-width: 767px) {
  /* line 13171, app/assets/stylesheets/braiform.scss */
  #main-footer .footer-top {
    display: none;
  }
}

/* line 13176, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top .container-fluid {
  height: 100%;
}

/* line 13180, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top .row {
  height: 100%;
}

/* line 13184, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top .row .col {
  align-items: center;
  display: flex;
}

/* line 13193, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top .social {
  justify-content: flex-end;
}

/* line 13199, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top .social a {
  margin-left: 20px;
}

/* line 13203, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top .social a:hover {
  opacity: 0.7;
}

/* line 13207, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top .btn {
  color: white;
  display: flex;
  font-size: 0.9rem;
  align-items: center;
  padding-left: 0px !important;
}

/* line 13219, app/assets/stylesheets/braiform.scss */
#main-footer .footer-top .btn .ic {
  margin-right: 15px;
}

/* line 13223, app/assets/stylesheets/braiform.scss */
#main-footer .footer-mid {
  padding-top: 70px;
  padding-bottom: 30px;
}

/*@media (max-width: 991px) {
  #main-footer .footer-mid {
    padding-left: 5px;
  }
}*/
/*@media (max-width: 767px) {
  #main-footer .footer-mid .logo-block {
    padding-left: 30px;
  }
}*/
/* line 13240, app/assets/stylesheets/braiform.scss */
#main-footer .footer-mid ul li a {
  color: white;
  text-transform: none;
  letter-spacing: normal;
}

/* line 13246, app/assets/stylesheets/braiform.scss */
#main-footer .footer-mid ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  /* line 13251, app/assets/stylesheets/braiform.scss */
  #main-footer .footer-mid ul {
    display: block;
    margin-top: 30px;
  }
}

/* line 13257, app/assets/stylesheets/braiform.scss */
#main-footer .footer-lower {
  padding-top: 30px;
  padding-bottom: 30px;
  color: white;
}

@media (max-width: 991px) {
  /* line 13264, app/assets/stylesheets/braiform.scss */
  #main-footer .footer-lower {
    padding-left: 5px;
  }
}

/* line 13269, app/assets/stylesheets/braiform.scss */
#main-footer .footer-lower .border-top {
  border-top: 1px solid #5263c6;
  padding-top: 25px;
  padding-bottom: 25px;
}

/* line 13275, app/assets/stylesheets/braiform.scss */
#main-footer .footer-lower .border-top .row .col.first > span:first-child {
  margin-right: 15px;
}

/* line 13279, app/assets/stylesheets/braiform.scss */
#main-footer .footer-lower .border-top .row a {
  color: white;
  text-transform: none !important;
  margin-right: 15px;
  letter-spacing: normal;
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  /* line 13289, app/assets/stylesheets/braiform.scss */
  #main-footer .footer-lower .border-top .row {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
  }
  /* line 13295, app/assets/stylesheets/braiform.scss */
  #main-footer .footer-lower .border-top .row .col {
    padding-right: 0px;
    margin-bottom: 7px;
    text-align: left;
    justify-content: flex-start !important;
  }
  /* line 13304, app/assets/stylesheets/braiform.scss */
  #main-footer .footer-lower .border-top .row .col a {
    display: block;
    width: 100%;
    margin-top: 8px;
    margin-left: 0px;
    margin-bottom: 8px;
    font-size: 0.8rem;
  }
  /* line 13313, app/assets/stylesheets/braiform.scss */
  #main-footer .footer-lower .border-top .row .ic {
    width: 14px;
    min-width: 14px;
    min-height: 14px;
    height: 14px;
    margin-right: 5px !important;
  }
}

/* line 13322, app/assets/stylesheets/braiform.scss */
.scene--contact-mini {
  background: #5263c6;
  min-height: 400px;
  height: auto;
}

/* line 13328, app/assets/stylesheets/braiform.scss */
.scene--contact-mini .container-fluid {
  height: inherit !important;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  /* line 13339, app/assets/stylesheets/braiform.scss */
  .scene--contact-mini .container-fluid {
    padding-left: 25px;
  }
}

/* line 13344, app/assets/stylesheets/braiform.scss */
.scene--contact-mini .row {
  width: 100%;
  height: 400px;
}

/* line 13349, app/assets/stylesheets/braiform.scss */
.scene--contact-mini .row .block {
  color: white;
}

/* line 13353, app/assets/stylesheets/braiform.scss */
.scene--contact-mini .row .block .title {
  font-size: 1.9rem;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 25px;
}

/* line 13362, app/assets/stylesheets/braiform.scss */
.scene--contact-mini .row .block p {
  margin-bottom: 35px;
}

/* line 13366, app/assets/stylesheets/braiform.scss */
.scene--contact-mini .row .block a {
  color: white;
  padding-left: 0px !important;
}

/* line 13371, app/assets/stylesheets/braiform.scss */
#mobile-menu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #5263c6;
  z-index: 9999;
  max-width: 500px;
  display: flex;
  transform: translateX(-100vw);
  transition: all 0.5s ease;
  animation: all 0.5s ease;
}

/* line 13391, app/assets/stylesheets/braiform.scss */
#mobile-menu.open {
  transform: translateX(0px);
}

/* line 13396, app/assets/stylesheets/braiform.scss */
#mobile-menu .menu-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  width: auto;
  flex: 1;
  flex-shrink: 0;
  position: relative;
}

/* line 13420, app/assets/stylesheets/braiform.scss */
#mobile-menu .menu-wrapper nav {
  margin-top: -45px;
  margin-left: 40px;
}

/* line 13425, app/assets/stylesheets/braiform.scss */
#mobile-menu .menu-wrapper nav a {
  color: white;
  width: 100%;
  display: block;
  text-transform: none;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* line 13434, app/assets/stylesheets/braiform.scss */
#mobile-menu .menu-wrapper .login-link {
  background: #72BA3A;
  padding-left: 40px;
  padding-right: 40px;
  height: 45px;
  width: 100%;
  z-index: 5;
  justify-self: flex-end;
  position: absolute;
  bottom: 0px;
}

@media (max-width: 767px) {
  /* line 13447, app/assets/stylesheets/braiform.scss */
  #mobile-menu .menu-wrapper .login-link {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* line 13453, app/assets/stylesheets/braiform.scss */
#mobile-menu .menu-wrapper .login-link a {
  color: white !important;
  font-size: 0.8rem;
}

/* line 13458, app/assets/stylesheets/braiform.scss */
#mobile-menu .menu-wrapper .login-link .ic {
  width: 16px;
  height: 16px;
  min-height: 10px;
  min-width: 10px;
}

/* line 13465, app/assets/stylesheets/braiform.scss */
#mobile-menu #close {
  width: 65px;
  flex-shrink: 0;
  background: #283355;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 13483, app/assets/stylesheets/braiform.scss */
.scene--home-top {
  background-color: #5263c6;
  background-size: auto 100%;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 95px) !important;
  min-height: 500px;
}

@media (max-width: 1199px) {
  /* line 13495, app/assets/stylesheets/braiform.scss */
  .scene--home-top {
    background-position: 60% 0%;
    background-size: cover !important;
    height: 85vh;
    min-height: 700px;
  }
}

/* line 13503, app/assets/stylesheets/braiform.scss */
.scene--home-top #globe {
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 60%;
  height: auto;
}

/* line 13511, app/assets/stylesheets/braiform.scss */
.scene--home-top .text {
  max-width: 730px;
  color: white;
  padding-left: 60px;
}

@media (max-width: 1199px) {
  /* line 13518, app/assets/stylesheets/braiform.scss */
  .scene--home-top .text {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1199px) {
  /* line 13525, app/assets/stylesheets/braiform.scss */
  .scene--home-top .text h1 {
    font-size: 2.2rem;
  }
}

/* line 13530, app/assets/stylesheets/braiform.scss */
.scene--home-top .text .sub {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  /* line 13536, app/assets/stylesheets/braiform.scss */
  .scene--home-top .text .sub {
    font-size: 1rem;
  }
}

/* line 13541, app/assets/stylesheets/braiform.scss */
.scene--home-top .text .btn {
  background: #72BA3A;
}

/* line 13545, app/assets/stylesheets/braiform.scss */
.home-scenes::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 1199px) {
  /* line 13552, app/assets/stylesheets/braiform.scss */
  .home-scenes {
    display: block;
  }
}

/* line 13557, app/assets/stylesheets/braiform.scss */
.home-scenes .scroll-side {
  background-image: linear-gradient(-180deg, #5867C3 16%, #92539D 32%, #92539D 48%, #273455 64%, #273455 80%, #5867C3 100%);
  max-width: 280px;
  padding: 0px;
}

@media (max-width: 1199px) {
  /* line 13565, app/assets/stylesheets/braiform.scss */
  .home-scenes .scroll-side {
    width: 100%;
    height: 70px;
    max-width: none;
  }
}

/* line 13572, app/assets/stylesheets/braiform.scss */
.home-scenes .scroll-side .header {
  height: 70px;
  background: #283355;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.9rem;
  padding-left: 35px;
  padding-right: 20px;
}

@media (max-width: 1199px) {
  /* line 13593, app/assets/stylesheets/braiform.scss */
  .home-scenes .scroll-side .header {
    justify-content: space-between;
  }
}

/* line 13600, app/assets/stylesheets/braiform.scss */
.home-scenes .scroll-side .header a {
  color: white;
}

/* line 13604, app/assets/stylesheets/braiform.scss */
.home-scenes .scroll-side .header .ic {
  width: 13px;
  min-width: 13px;
  margin-left: 20px;
  margin-right: 20px;
}

/* line 13611, app/assets/stylesheets/braiform.scss */
.home-scenes .scroll-side nav {
  padding-left: 35px;
  padding-right: 20px;
  font-size: 0.9rem;
  padding-top: 45px;
  position: relative;
  width: 100%;
}

@media (max-width: 1199px) {
  /* line 13621, app/assets/stylesheets/braiform.scss */
  .home-scenes .scroll-side nav {
    display: none;
  }
}

/* line 13626, app/assets/stylesheets/braiform.scss */
.home-scenes .scroll-side nav a {
  color: white;
  border-bottom: 1px solid white;
  padding-left: 0px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  transition: all 0.3s ease;
}

/* line 13636, app/assets/stylesheets/braiform.scss */
.home-scenes .scroll-side nav a:last-child {
  border: 0px;
}

/* line 13640, app/assets/stylesheets/braiform.scss */
.home-scenes .scroll-side nav a.active {
  text-shadow: 0px 2px 7px rgba(0, 0, 0, 0.5);
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 600;
  font-style: normal;
}

/* line 13648, app/assets/stylesheets/braiform.scss */
.home-scenes .scenes {
  position: relative;
  box-shadow: 0px 13px 13px rgba(0, 0, 0, 0.5);
  padding-left: 0px;
  z-index: 5;
  max-width: calc(100vw - 260px);
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

@media (max-width: 1199px) {
  /* line 13662, app/assets/stylesheets/braiform.scss */
  .home-scenes .scenes {
    max-width: calc(100vw + 20px);
  }
}

@media screen and (min-width: 1800px) {
  /* line 13668, app/assets/stylesheets/braiform.scss */
  .home-scenes .scenes {
    max-width: calc(1800px - 260px);
  }
}

/* line 13673, app/assets/stylesheets/braiform.scss */
.home-scenes .scenes .header {
  width: 100%;
  border-bottom: 1px solid #5263c6;
  height: 70px;
  margin-left: 0px;
  margin-right: 0px;
  background: #ebecee;
}

@media (max-width: 1199px) {
  /* line 13683, app/assets/stylesheets/braiform.scss */
  .home-scenes .scenes .header {
    display: block;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* line 13691, app/assets/stylesheets/braiform.scss */
.home-scenes .scenes .header .col {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  /* line 13704, app/assets/stylesheets/braiform.scss */
  .home-scenes .scenes .header .col {
    width: 100%;
    justify-content: flex-start;
    padding-left: 35px;
    padding-right: 25px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

/* line 13716, app/assets/stylesheets/braiform.scss */
.home-scenes .scenes .header .col .ic {
  margin-right: 20px;
}

/* line 13720, app/assets/stylesheets/braiform.scss */
.home-scenes .scenes .inner-scene {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  max-height: 1000px;
  background: white;
}

@media (max-width: 1199px) {
  /* line 13729, app/assets/stylesheets/braiform.scss */
  .home-scenes .scenes .inner-scene {
    height: auto;
    max-height: 7000px;
  }
}

/* line 13735, app/assets/stylesheets/braiform.scss */
.home-scenes .scenes .inner-scene .row.main {
  height: 100%;
}

/* line 13739, app/assets/stylesheets/braiform.scss */
#reuse {
  min-height: 600px;
}

/* line 13743, app/assets/stylesheets/braiform.scss */
#reuse .row.main {
  min-height: 600px;
}

/* line 13747, app/assets/stylesheets/braiform.scss */
#reuse .left {
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  /* line 13757, app/assets/stylesheets/braiform.scss */
  #reuse .left {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  /* line 13763, app/assets/stylesheets/braiform.scss */
  #reuse .left {
    padding-bottom: 200px;
  }
}

@media (max-width: 575px) {
  /* line 13769, app/assets/stylesheets/braiform.scss */
  #reuse .left {
    padding-bottom: 100px;
  }
}

/* line 13774, app/assets/stylesheets/braiform.scss */
#reuse .left .text {
  max-width: 480px;
  width: 100%;
}

@media (max-width: 1199px) {
  /* line 13780, app/assets/stylesheets/braiform.scss */
  #reuse .left .text {
    padding: 20px 20px 20px 35px;
  }
}

@media (max-width: 767px) {
  /* line 13786, app/assets/stylesheets/braiform.scss */
  #reuse .left .text {
    margin-top: 180px;
  }
}

@media (max-width: 575px) {
  /* line 13792, app/assets/stylesheets/braiform.scss */
  #reuse .left .text {
    margin-top: 100px;
  }
}

/* line 13797, app/assets/stylesheets/braiform.scss */
#reuse .left .text h2 {
  color: #283355;
}

/* line 13801, app/assets/stylesheets/braiform.scss */
#reuse .left .text p {
  color: #3C3D40;
}

/* line 13805, app/assets/stylesheets/braiform.scss */
#reuse .right {
  background-color: #253254;
  overflow: hidden;
  position: relative;
  padding: 0px;
  /* height: 100%; */
}

@media (max-width: 1199px) {
  /* line 13814, app/assets/stylesheets/braiform.scss */
  #reuse .right {
    align-items: flex-start;
  }
}

/* line 13821, app/assets/stylesheets/braiform.scss */
#reuse .right img.desktop {
  width: 100%;
  height: auto;
  margin-top: -100px;
}

@media (max-width: 1199px) {
  /* line 13828, app/assets/stylesheets/braiform.scss */
  #reuse .right img.desktop {
    display: none;
  }
}

/* line 13833, app/assets/stylesheets/braiform.scss */
#reuse .right img.mobile {
  display: none;
  width: 100%;
  height: auto;
  padding-bottom: 70px;
}

@media (max-width: 1199px) {
  /* line 13841, app/assets/stylesheets/braiform.scss */
  #reuse .right img.mobile {
    display: block;
  }
}

/* line 13846, app/assets/stylesheets/braiform.scss */
#reuse a[data-fancybox] {
  display: block;
  width: 100%;
  height: 70px;
  background-color: #5263c6;
  /*position: absolute;
  bottom: 0px;
  left: 0px;*/
  color: white;
}

/* line 13857, app/assets/stylesheets/braiform.scss */
#reuse a[data-fancybox] div {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* line 13871, app/assets/stylesheets/braiform.scss */
#reuse a[data-fancybox] .ic {
  margin-right: 30px;
}

/* line 13875, app/assets/stylesheets/braiform.scss */
#why-work {
  height: auto;
}

@media (max-width: 991px) {
  /* line 13880, app/assets/stylesheets/braiform.scss */
  #why-work {
    max-height: 1600px;
    height: auto;
  }
}

/* line 13886, app/assets/stylesheets/braiform.scss */
#why-work .row.main {
  background: #ebecee;
  margin-bottom: 70px;
}

@media (max-width: 1199px) {
  /* line 13892, app/assets/stylesheets/braiform.scss */
  #why-work .row.main {
    margin-bottom: 0px;
  }
}

/* line 13897, app/assets/stylesheets/braiform.scss */
#why-work h2 {
  color: #283355;
  margin-top: 60px !important;
  font-size: 3rem;
  margin-left: 60px;
}

@media (max-width: 1199px) {
  /* line 13905, app/assets/stylesheets/braiform.scss */
  #why-work h2 {
    margin-left: 50px;
    font-size: 2rem;
  }
}

/* line 13911, app/assets/stylesheets/braiform.scss */
#why-work .box {
  width: 80%;
  height: 80%;
  margin-left: 15%;
  margin-top: 0%;
  display: flex;
  background-color: #5263c6;
  background-image: url(/images/globe-mini.svg);
  background-size: 517px 415px;
  background-position: -20% 170%;
  background-repeat: no-repeat;
  border-radius: 4px;
  padding-left: 50px;
  padding-top: 50px;
  padding-bottom: 100px;
  padding-right: 50px;
  max-height: 700px;
}

@media (max-width: 991px) {
  /* line 13933, app/assets/stylesheets/braiform.scss */
  #why-work .box {
    padding: 30px 30px 100px 30px !important;
    flex-direction: column;
    margin-left: 12%;
    margin-top: 0%;
    height: auto;
    max-height: none;
  }
  /* line 13945, app/assets/stylesheets/braiform.scss */
  #why-work .box::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* line 13952, app/assets/stylesheets/braiform.scss */
#why-work .box .column {
  width: 50%;
  padding-right: 25px;
}

@media (max-width: 1199px) {
  /* line 13958, app/assets/stylesheets/braiform.scss */
  #why-work .box .column {
    width: 100%;
    padding-right: 0px;
  }
  /* line 13963, app/assets/stylesheets/braiform.scss */
  #why-work .box .column::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* line 13970, app/assets/stylesheets/braiform.scss */
#why-work .box .column .item {
  color: white;
  margin-bottom: 30px;
}

/* line 13975, app/assets/stylesheets/braiform.scss */
#why-work .box .column .item .title {
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  /* line 13985, app/assets/stylesheets/braiform.scss */
  #why-work .box .column .item .title {
    font-size: 1.2rem;
  }
}

/* line 13990, app/assets/stylesheets/braiform.scss */
.splitter {
  width: 100%;
  height: auto;
  background-color: white !important;
  padding-top: 30px;
}

/* line 13997, app/assets/stylesheets/braiform.scss */
.splitter.homepage-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

/* line 14010, app/assets/stylesheets/braiform.scss */
.splitter.homepage-logos img {
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 30px;
}

@media (min-width: 1500px) {
  /* line 14017, app/assets/stylesheets/braiform.scss */
  .splitter.homepage-logos {
    height: auto;
  }
}

/* line 14022, app/assets/stylesheets/braiform.scss */
#experience {
  background-color: white;
  background-image: url(/images/50years.jpg);
  background-size: cover !important;
  background-repeat: no-repeat;
  border-top: 50px solid white;
}

@media (max-width: 1199px) {
  /* line 14031, app/assets/stylesheets/braiform.scss */
  #experience {
    background-size: auto 100% !important;
    background-position: 20% center;
    min-height: 500px;
  }
}

/* line 14038, app/assets/stylesheets/braiform.scss */
#experience .title {
  font-size: 9rem;
  color: #283355;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  line-height: 130px;
  padding-left: 10%;
}

@media (max-width: 1199px) {
  /* line 14050, app/assets/stylesheets/braiform.scss */
  #experience .title {
    font-size: 4rem;
    line-height: 70px;
  }
}

@media (max-width: 767px) {
  /* line 14057, app/assets/stylesheets/braiform.scss */
  #experience .title {
    font-size: 2.9rem;
    line-height: 40px;
    padding-left: 50px;
  }
}

/* line 14064, app/assets/stylesheets/braiform.scss */
#experience .text {
  width: 70%;
  float: right;
  font-size: 1.3rem;
  padding: 40px 200px 40px 80px;
  max-width: 1000px;
}

@media (max-width: 1199px) {
  /* line 14073, app/assets/stylesheets/braiform.scss */
  #experience .text {
    width: 80%;
    font-size: 1.1rem;
    padding: 20px 20px 20px 40px;
  }
}

@media (max-width: 991px) {
  /* line 14081, app/assets/stylesheets/braiform.scss */
  #experience .text {
    width: 100%;
    font-size: 1.1rem;
    padding: 20px 20px 20px 10%;
  }
}

/* line 14088, app/assets/stylesheets/braiform.scss */
#working-with-you {
  padding-top: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 14103, app/assets/stylesheets/braiform.scss */
#working-with-you h2 {
  margin: 40px 40px 100px !important;
  font-size: 2.5rem;
  color: #283355;
}

@media (max-width: 1199px) {
  /* line 14110, app/assets/stylesheets/braiform.scss */
  #working-with-you h2 {
    font-size: 2rem;
    margin: 0 40px 40px !important;
  }
}

/* line 14116, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes {
  background: #ebecee;
  height: auto;
  min-height: 70%;
  padding: 50px;
}

/* line 14123, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box {
  transform: translateY(-100px);
  position: relative;
  transition: all ease 0.5s;
}

@media (max-width: 1199px) {
  /* line 14132, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box {
    padding-left: 1px !important;
    padding-right: 10px !important;
    transform: translateY(0px);
  }
}

/* line 14140, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box.flipped {
  transform: translateY(-130px);
}

@media (max-width: 1199px) {
  /* line 14146, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box.flipped {
    transform: translateY(0px);
  }
}

/* line 14152, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner {
  padding: 0px;
  text-align: center;
  transform-style: preserve-3d;
  height: 360px;
  position: relative;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: all ease 0.5s;
  perspective: 800px;
}

@media (max-width: 1199px) {
  /* line 14168, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner {
    height: 50px;
  }
  /* line 14172, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner.expanded {
    height: 350px;
  }
  /* line 14176, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner.expanded .more {
    display: block;
  }
  /* line 14180, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner.expanded p {
    display: block;
  }
}

/* line 14185, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .flip {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all ease 0.5s;
}

/* line 14207, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner .flip::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 1199px) {
  /* line 14214, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner .flip {
    padding: 10px 20px;
  }
}

/* line 14219, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .flip.front {
  border: 1px solid #5263c6;
  border-radius: 3px;
  background: white;
  transform: rotateY(0deg);
}

/* line 14227, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .flip.back {
  transform: rotateY(-180deg);
  border-radius: 3px;
  background: #5263c6;
  color: white;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3);
}

/* line 14237, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box.flipped .front {
  transform: rotateY(180deg);
}

/* line 14242, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box.flipped .back {
  transform: rotateY(0deg);
}

/* line 14247, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner .flip.back a.more {
  color: white;
}

/* line 14251, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner .flip.back > a.more {
  font-size: 1.2rem;
}

/* line 14255, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner .title {
  font-size: 1.5rem;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #283355;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  /* line 14266, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner .title {
    font-size: 1.1rem;
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
  }
}

/* line 14278, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner .title .mobile-open {
  display: none;
}

@media (max-width: 1199px) {
  /* line 14283, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner .title .mobile-open {
    display: block;
  }
}

/* line 14288, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner p {
  font-size: 0.9rem;
}

@media (max-width: 1199px) {
  /* line 14293, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner p {
    display: none;
  }
}

/* line 14298, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner .more {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.8rem;
}

@media (max-width: 1199px) {
  /* line 14305, app/assets/stylesheets/braiform.scss */
  #working-with-you .boxes .box .inner .more {
    display: none;
  }
}

/* line 14310, app/assets/stylesheets/braiform.scss */
#working-with-you .boxes .box .inner .more.close-it {
  background-size: 30px 30px !important;
}

@media (max-width: 1199px) {
  /* line 14315, app/assets/stylesheets/braiform.scss */
  #design-styles {
    max-height: 650px;
  }
  /* line 14319, app/assets/stylesheets/braiform.scss */
  #design-styles .row.main {
    max-height: 650px;
  }
}

@media (max-width: 991px) {
  /* line 14325, app/assets/stylesheets/braiform.scss */
  #design-styles {
    max-height: none;
  }
  /* line 14329, app/assets/stylesheets/braiform.scss */
  #design-styles .row.main {
    max-height: none;
  }
}

/* line 14334, app/assets/stylesheets/braiform.scss */
#design-styles .left {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-left: 0;
  padding-right: 0px;
  position: relative;
}

@media (max-width: 991px) {
  /* line 14349, app/assets/stylesheets/braiform.scss */
  #design-styles .left {
    padding-right: 20px;
  }
}

/* line 14354, app/assets/stylesheets/braiform.scss */
#design-styles .left .btn {
  position: absolute;
  height: 60px;
  top: 50%;
  margin-top: -30px !important;
  left: 50px;
}

@media (max-width: 1199px) {
  /* line 14363, app/assets/stylesheets/braiform.scss */
  #design-styles .left .btn {
    position: relative;
    margin-top: 25px !important;
    left: 35px;
    width: 75%;
    margin-bottom: 25px;
    max-width: 250px;
  }
}

/* line 14373, app/assets/stylesheets/braiform.scss */
#design-styles .left .block {
  height: 50%;
}

/*#design-styles .left .block.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 35px;
  padding-right: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}*/
/* line 14395, app/assets/stylesheets/braiform.scss */
#design-styles .left .block.top .btn {
  height: 60px;
  margin-bottom: -40px;
}

@media (max-width: 1199px) {
  /* line 14401, app/assets/stylesheets/braiform.scss */
  #design-styles .left .block.top {
    background-image: url(/images/hand.png);
    background-position: left top;
    padding-top: 0px;
    overflow-y: visible;
    height: auto;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}

@media (max-width: 1199px) {
  /* line 14413, app/assets/stylesheets/braiform.scss */
  #design-styles .left .block.top {
    padding-bottom: 30px;
    padding-top: 270px !important;
  }
}

/* line 14419, app/assets/stylesheets/braiform.scss */
#design-styles .left .block.top h2 {
  color: #283355;
}

@media (max-width: 1199px) {
  /* line 14424, app/assets/stylesheets/braiform.scss */
  #design-styles .left .block.top h2 {
    font-size: 1.4rem;
  }
}

/* line 14429, app/assets/stylesheets/braiform.scss */
#design-styles .left .block.top p {
  max-width: 500px;
}

/* line 14433, app/assets/stylesheets/braiform.scss */
#design-styles .left .block.bottom {
  background-color: #ebecee;
  background-image: url(/images/hand.png);
  background-size: 85% auto;
  background-position: left center;
  background-repeat: no-repeat;
}

@media (max-width: 1199px) {
  /* line 14442, app/assets/stylesheets/braiform.scss */
  #design-styles .left .block.bottom {
    display: none;
  }
}

/* line 14447, app/assets/stylesheets/braiform.scss */
#design-styles .right {
  padding-left: 0px;
  /* height: 100%; */
}

@media (max-width: 991px) {
  /* line 14453, app/assets/stylesheets/braiform.scss */
  #design-styles .right {
    height: auto;
    /* padding-left: 30px; */
  }
}

/* line 14459, app/assets/stylesheets/braiform.scss */
#design-styles .right #carousel {
  width: 100%;
  overflow: hidden;
  /* height: inherit; */
  /* min-height: 400px; */
  height: 100%;
  /* max-height: 650px; */
}

@media (min-width: 1200px) {
  /* line 14469, app/assets/stylesheets/braiform.scss */
  #design-styles .right #carousel {
    max-height: 1000px;
  }
}

@media (max-width: 991px) {
  /* line 14475, app/assets/stylesheets/braiform.scss */
  #design-styles .right #carousel {
    max-height: 650px;
  }
  /* line 14479, app/assets/stylesheets/braiform.scss */
  #design-styles .right .carousel {
    position: relative !important;
  }
}

/* line 14484, app/assets/stylesheets/braiform.scss */
#design-styles .right #carousel .owl-carousel, #design-styles .right #carousel .owl-stage-outer, #design-styles .right #carousel .owl-stage, #design-styles .right #carousel .item {
  /* min-height: 550px; */
  /* height: 100vh; */
  background-size: cover !important;
}

@media (max-width: 1199px) {
  /* line 14491, app/assets/stylesheets/braiform.scss */
  #design-styles .right #carousel .owl-carousel, #design-styles .right #carousel .owl-stage-outer, #design-styles .right #carousel .owl-stage, #design-styles .right #carousel .item {
    max-height: 650px;
  }
}

@media (min-width: 1200px) {
  /* line 14497, app/assets/stylesheets/braiform.scss */
  #design-styles .right #carousel .owl-carousel, #design-styles .right #carousel .owl-stage-outer, #design-styles .right #carousel .owl-stage, #design-styles .right #carousel .item {
    max-height: 1000px;
  }
}

@media (max-width: 991px) {
  /* line 14503, app/assets/stylesheets/braiform.scss */
  #design-styles .right #carousel .owl-carousel, #design-styles .right #carousel .owl-stage-outer, #design-styles .right #carousel .owl-stage, #design-styles .right #carousel .item {
    height: 550px;
    min-height: 550px;
  }
}

@media (max-width: 767px) {
  /* line 14510, app/assets/stylesheets/braiform.scss */
  #design-styles .right #carousel .owl-carousel, #design-styles .right #carousel .owl-stage-outer, #design-styles .right #carousel .owl-stage, #design-styles .right #carousel .item {
    height: 400px;
    min-height: 400px;
  }
}

/* line 14516, app/assets/stylesheets/braiform.scss */
#contact {
  background: #5263c6;
}

@media (max-width: 1199px) {
  /* line 14521, app/assets/stylesheets/braiform.scss */
  #contact {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

/* line 14527, app/assets/stylesheets/braiform.scss */
#contact .row.main {
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  /* line 14537, app/assets/stylesheets/braiform.scss */
  #contact .row.main {
    margin: 0px !important;
    width: 100%;
  }
}

/* line 14543, app/assets/stylesheets/braiform.scss */
#contact .row.main .col {
  max-width: 600px;
  color: white;
  font-size: 1.2rem;
}

@media (max-width: 1199px) {
  /* line 14550, app/assets/stylesheets/braiform.scss */
  #contact .row.main .col {
    padding: 35px;
    font-size: 1rem;
  }
}

/* line 14556, app/assets/stylesheets/braiform.scss */
#contact .row.main .col a {
  color: white;
  padding-left: 0px !important;
}

/* line 14561, app/assets/stylesheets/braiform.scss */
.scene--green-top {
  background: url(/images/green-header-bg.jpg);
  background-size: cover;
  background-position: center center;
  z-index: 10;
  position: relative;
}

@media (max-width: 991px) {
  /* line 14570, app/assets/stylesheets/braiform.scss */
  .scene--green-top {
    max-height: 560px;
    min-height: 560px;
  }
}

/* line 14576, app/assets/stylesheets/braiform.scss */
.scene--green-top .text {
  height: 100%;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: white;
  text-align: center;
}

/* line 14586, app/assets/stylesheets/braiform.scss */
.scene--green-top .text .top {
  font-size: 2.5rem;
}

/* line 14590, app/assets/stylesheets/braiform.scss */
.scene--green-top .text .number {
  font-size: 6rem;
}

/* line 14594, app/assets/stylesheets/braiform.scss */
.scene--green-top .text .bottom {
  font-size: 1.9rem;
}

@media (max-width: 991px) {
  /* line 14599, app/assets/stylesheets/braiform.scss */
  .scene--green-top .text .top {
    font-size: 1.6rem;
  }
  /* line 14603, app/assets/stylesheets/braiform.scss */
  .scene--green-top .text .number {
    font-size: 3rem;
  }
  /* line 14607, app/assets/stylesheets/braiform.scss */
  .scene--green-top .text .bottom {
    font-size: 1.1rem;
  }
}

/* line 14612, app/assets/stylesheets/braiform.scss */
.scene--green-two {
  background: url(/images/radius-pattern.png);
  background-size: cover;
  background-color: white;
  background-position: center top;
  z-index: 5;
  position: relative;
}

/* line 14621, app/assets/stylesheets/braiform.scss */
.scene--green-two .container-fluid {
  height: 100%;
}

/* line 14625, app/assets/stylesheets/braiform.scss */
.scene--green-two .row {
  height: 100%;
}

/* line 14629, app/assets/stylesheets/braiform.scss */
.scene--green-two .row .left {
  color: #5263c6;
}

/* line 14633, app/assets/stylesheets/braiform.scss */
.scene--green-two .row .left .number {
  font-size: 7rem;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 991px) {
  /* line 14640, app/assets/stylesheets/braiform.scss */
  .scene--green-two .row .left .number {
    font-size: 5rem;
  }
}

/* line 14645, app/assets/stylesheets/braiform.scss */
.scene--green-two .row .left .text {
  font-size: 1.8rem;
  max-width: 400px;
  text-align: center;
}

@media (max-width: 991px) {
  /* line 14652, app/assets/stylesheets/braiform.scss */
  .scene--green-two .row .left .text {
    font-size: 1.5rem;
  }
}

/* line 14657, app/assets/stylesheets/braiform.scss */
.scene--green-two .row .right .box {
  background: #5263c6;
  width: 100%;
  padding: 60px;
  border-radius: 4px;
  color: white;
  margin-right: 45px;
}

@media (max-width: 991px) {
  /* line 14667, app/assets/stylesheets/braiform.scss */
  .scene--green-two .row .right .box {
    padding: 25px;
    margin-right: 0px;
  }
}

/* line 14673, app/assets/stylesheets/braiform.scss */
.scene--green-two .row .right .box .block {
  margin-bottom: 25px;
}

/* line 14677, app/assets/stylesheets/braiform.scss */
.scene--green-two .row .right .box .block .title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 991px) {
  /* line 14687, app/assets/stylesheets/braiform.scss */
  .scene--green-two .row .right .box .block .title {
    font-size: 1.15rem;
  }
}

/* line 14692, app/assets/stylesheets/braiform.scss */
.scene--green-two .row .right .box .block p {
  font-size: 1rem;
}

@media (max-width: 991px) {
  /* line 14697, app/assets/stylesheets/braiform.scss */
  .scene--green-two .row .right .box .block p {
    font-size: 0.9rem;
  }
}

/* line 14702, app/assets/stylesheets/braiform.scss */
.scene--green-three {
  background-color: #5263c6;
  background-image: url(/images/blue-line.png);
  background-size: auto 100%;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  padding-bottom: 150px;
  padding-top: 60px;
}

@media (max-width: 991px) {
  /* line 14713, app/assets/stylesheets/braiform.scss */
  .scene--green-three {
    margin-top: 100px;
    padding-top: 60px;
    height: auto !important;
    background-position: 80% 0%;
  }
}

/* line 14721, app/assets/stylesheets/braiform.scss */
.scene--green-three .container-fluid {
  height: 100%;
}

/* line 14725, app/assets/stylesheets/braiform.scss */
.scene--green-three .container-fluid .row {
  height: 100%;
}

/* line 14729, app/assets/stylesheets/braiform.scss */
.scene--green-three .text {
  padding-left: 70px;
  color: white;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
}

/* line 14744, app/assets/stylesheets/braiform.scss */
.scene--green-three .text::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 991px) {
  /* line 14751, app/assets/stylesheets/braiform.scss */
  .scene--green-three .text {
    padding-left: 25px;
  }
}

/* line 14756, app/assets/stylesheets/braiform.scss */
.scene--green-three .text h2 {
  margin-bottom: 45px !important;
}

/* line 14760, app/assets/stylesheets/braiform.scss */
.scene--green-three .text .block {
  margin-bottom: 45px;
}

/* line 14764, app/assets/stylesheets/braiform.scss */
.scene--green-three .text .block .title {
  font-size: 1.3rem;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 25px;
}

/* line 14773, app/assets/stylesheets/braiform.scss */
.scene--green-three .text .block p {
  font-size: 1rem;
}

/* line 14777, app/assets/stylesheets/braiform.scss */
.awards-bg {
  background: #ebecee;
  padding-bottom: 20px;
}

/* line 14782, app/assets/stylesheets/braiform.scss */
.green-awards {
  margin: 0px auto 0px auto;
  transform: translateY(-90px);
  padding: 30px;
  width: 90%;
  background: white;
  box-shadow: 0px 2px 26px rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}

@media (max-width: 991px) {
  /* line 14795, app/assets/stylesheets/braiform.scss */
  .green-awards {
    transform: translateY(-40px);
  }
}

/* line 14801, app/assets/stylesheets/braiform.scss */
.green-awards h2 {
  text-align: center;
  margin-bottom: 30px !important;
  color: #283355;
}

/* line 14807, app/assets/stylesheets/braiform.scss */
.green-awards .award-boxes .award {
  display: flex;
}

@media (max-width: 991px) {
  /* line 14814, app/assets/stylesheets/braiform.scss */
  .green-awards .award-boxes .award {
    margin-bottom: 20px;
  }
}

/* line 14819, app/assets/stylesheets/braiform.scss */
.green-awards .award-boxes .award .wrapper {
  border: 1px solid #5263c6;
  border-radius: 3px;
  width: 100%;
}

/* line 14825, app/assets/stylesheets/braiform.scss */
.green-awards .award-boxes .award .image {
  border-bottom: 1px solid #5263c6;
  text-align: center;
  padding: 30px;
}

/* line 14831, app/assets/stylesheets/braiform.scss */
.green-awards .award-boxes .award .image img {
  max-height: 110px;
}

@media (max-width: 991px) {
  /* line 14836, app/assets/stylesheets/braiform.scss */
  .green-awards .award-boxes .award .image img {
    max-height: 100px;
    width: 80%;
  }
}

/* line 14842, app/assets/stylesheets/braiform.scss */
.green-awards .award-boxes .award .text {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* line 14848, app/assets/stylesheets/braiform.scss */
.scene--about-top {
  background: url(/images/about-bg.jpg);
  background-color: #9d4fa2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 10;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  /* line 14860, app/assets/stylesheets/braiform.scss */
  .scene--about-top {
    padding-bottom: 150px;
    background-size: 100% auto;
    background-position: center bottom;
  }
}

/* line 14867, app/assets/stylesheets/braiform.scss */
.scene--about-top .container-fluid {
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
}

@media (max-width: 991px) {
  /* line 14879, app/assets/stylesheets/braiform.scss */
  .scene--about-top .container-fluid {
    align-items: flex-start;
    padding-top: 80px;
  }
}

/* line 14887, app/assets/stylesheets/braiform.scss */
.scene--about-top .container-fluid .text {
  padding-left: 60px;
}

/* line 14891, app/assets/stylesheets/braiform.scss */
.scene--about-top .container-fluid .text p {
  font-size: 1.4rem;
}

@media (max-width: 1199px) {
  /* line 14896, app/assets/stylesheets/braiform.scss */
  .scene--about-top .container-fluid .text {
    padding-left: 30px;
  }
  /* line 14900, app/assets/stylesheets/braiform.scss */
  .scene--about-top .container-fluid .text h1 {
    font-size: 2rem;
  }
  /* line 14904, app/assets/stylesheets/braiform.scss */
  .scene--about-top .container-fluid .text p {
    font-size: 1.1rem;
  }
}

/* line 14909, app/assets/stylesheets/braiform.scss */
.scene--about-top #vector {
  position: absolute;
  right: -3%;
  bottom: -3%;
  width: 50%;
  height: auto;
}

@media (max-width: 991px) {
  /* line 14918, app/assets/stylesheets/braiform.scss */
  .scene--about-top #vector {
    width: 95%;
  }
}

@media (max-width: 1199px) {
  /* line 14924, app/assets/stylesheets/braiform.scss */
  .scene--about-two {
    height: auto;
    max-height: none;
  }
}

/* line 14930, app/assets/stylesheets/braiform.scss */
.scene--about-two .row {
  min-height: 720px;
  height: calc(100vh - 31px);
  max-height: 800px;
}

@media (max-width: 991px) {
  /* line 14937, app/assets/stylesheets/braiform.scss */
  .scene--about-two .row {
    max-height: none;
    height: auto;
  }
}

/* line 14943, app/assets/stylesheets/braiform.scss */
.scene--about-two .block {
  max-width: 400px;
}

/* line 14947, app/assets/stylesheets/braiform.scss */
.scene--about-two .block .title {
  font-size: 1.3rem;
  padding-bottom: 20px;
  color: #283355;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

/* line 14957, app/assets/stylesheets/braiform.scss */
.scene--about-two .block p {
  font-size: 1rem;
}

/* line 14961, app/assets/stylesheets/braiform.scss */
.scene--about-two .left {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  background-image: url(/images/radius-pattern-2.jpg);
  background-size: cover;
  background-position: right top;
  z-index: 10;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 1199px) {
  /* line 14982, app/assets/stylesheets/braiform.scss */
  .scene--about-two .left {
    padding-bottom: 170px;
    padding-left: 35px;
  }
}

@media (max-width: 991px) {
  /* line 14989, app/assets/stylesheets/braiform.scss */
  .scene--about-two .left {
    padding-right: 25px;
  }
}

/* line 14994, app/assets/stylesheets/braiform.scss */
.scene--about-two .left .block {
  padding-top: 170px;
}

/* line 14998, app/assets/stylesheets/braiform.scss */
.scene--about-two .right {
  background-color: #ebecee;
  background-image: url(/images/radius-pattern-3.png);
  background-size: cover;
  background-position: left top;
  z-index: 5;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 1199px) {
  /* line 15017, app/assets/stylesheets/braiform.scss */
  .scene--about-two .right {
    padding-top: 170px;
    padding-left: 35px;
  }
}

@media (max-width: 991px) {
  /* line 15024, app/assets/stylesheets/braiform.scss */
  .scene--about-two .right {
    padding-right: 25px;
  }
}

/* line 15029, app/assets/stylesheets/braiform.scss */
.scene--about-two .right .block {
  padding-bottom: 170px;
}

/* line 15033, app/assets/stylesheets/braiform.scss */
.scene--about-three {
  background: url(/images/timeline-bg.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: repeat-y;
  max-height: none !important;
  height: auto !important;
  padding-bottom: 150px;
}

/* line 15043, app/assets/stylesheets/braiform.scss */
.scene--about-three .title {
  color: white;
  font-size: 1.8rem;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;
}

/* line 15055, app/assets/stylesheets/braiform.scss */
.scene--about-three .vtimeline-date {
  color: white;
  font-size: 1.4rem;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

/* line 15064, app/assets/stylesheets/braiform.scss */
.client-list {
  background: #ebecee;
  padding-bottom: 20px;
}

/* line 15069, app/assets/stylesheets/braiform.scss */
.clients {
  margin: 0px auto 0px auto;
  padding: 30px;
  width: 90%;
  background: white;
  box-shadow: 0px 2px 26px rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}

/* line 15079, app/assets/stylesheets/braiform.scss */
.clients h2 {
  text-align: center;
  margin-bottom: 30px !important;
  color: #283355;
}

/* line 15085, app/assets/stylesheets/braiform.scss */
.clients .award-boxes .award {
  display: flex;
}

@media (max-width: 991px) {
  /* line 15092, app/assets/stylesheets/braiform.scss */
  .clients .award-boxes .award {
    margin-bottom: 20px;
  }
}

/* line 15097, app/assets/stylesheets/braiform.scss */
.clients .award-boxes .award .wrapper {
  border: 1px solid #5263c6;
  border-radius: 3px;
  width: 100%;
  height: 110px;
}

/* line 15104, app/assets/stylesheets/braiform.scss */
.clients .award-boxes .award .image {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  text-align: center;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 10px;
}

/* line 15122, app/assets/stylesheets/braiform.scss */
.clients .award-boxes .award .text {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* line 15128, app/assets/stylesheets/braiform.scss */
.scene--rs-top {
  background-image: url(/images/blue-line.png);
  background-color: #5263c6;
  background-size: auto 100%;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  z-index: 10;
  position: relative;
  overflow: hidden;
}

/* line 15139, app/assets/stylesheets/braiform.scss */
.scene--rs-top .container-fluid {
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
}

@media (max-width: 991px) {
  /* line 15151, app/assets/stylesheets/braiform.scss */
  .scene--rs-top .container-fluid {
    align-items: flex-start;
    padding-top: 100px;
  }
}

/* line 15159, app/assets/stylesheets/braiform.scss */
.scene--rs-top .container-fluid .text {
  padding-left: 60px;
}

@media (max-width: 991px) {
  /* line 15164, app/assets/stylesheets/braiform.scss */
  .scene--rs-top .container-fluid .text {
    padding-left: 10px;
  }
}

/* line 15169, app/assets/stylesheets/braiform.scss */
.scene--rs-top .container-fluid .text p {
  font-size: 1.4rem;
}

/* line 15173, app/assets/stylesheets/braiform.scss */
.scene--rs-top #vector {
  position: absolute;
  right: -3%;
  bottom: -3%;
  width: 50%;
  height: auto;
}

@media (max-width: 991px) {
  /* line 15182, app/assets/stylesheets/braiform.scss */
  .scene--rs-top #vector {
    width: 95%;
  }
}

/* line 15187, app/assets/stylesheets/braiform.scss */
#packaging {
  max-height: 650px;
  position: relative;
  z-index: 400;
}

@media (max-width: 991px) {
  /* line 15194, app/assets/stylesheets/braiform.scss */
  #packaging {
    max-height: none;
  }
}

/* line 15199, app/assets/stylesheets/braiform.scss */
#packaging .left {
  align-items: flex-start;
  padding: 70px;
}

@media (max-width: 991px) {
  /* line 15207, app/assets/stylesheets/braiform.scss */
  #packaging .left {
    padding: 35px;
  }
}

/* line 15212, app/assets/stylesheets/braiform.scss */
#packaging .left h2 {
  color: #283355;
}

/* line 15216, app/assets/stylesheets/braiform.scss */
#packaging .right {
  padding-left: 0px;
  height: 100%;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

/* line 15223, app/assets/stylesheets/braiform.scss */
#packaging .right #carousel {
  width: 100%;
  height: 100%;
  min-height: 400px;
  height: 650px;
}

@media (max-width: 991px) {
  /* line 15231, app/assets/stylesheets/braiform.scss */
  #packaging .right #carousel {
    height: 400px;
  }
}

/* line 15236, app/assets/stylesheets/braiform.scss */
#packaging .right #carousel .owl-carousel, #packaging .right #carousel .owl-stage-outer, #packaging .right #carousel .owl-stage, #packaging .right #carousel .item {
  min-height: 550px;
  height: 100vh;
  background-size: cover !important;
}

@media (max-width: 1199px) {
  /* line 15243, app/assets/stylesheets/braiform.scss */
  #packaging .right #carousel .owl-carousel, #packaging .right #carousel .owl-stage-outer, #packaging .right #carousel .owl-stage, #packaging .right #carousel .item {
    max-height: 650px;
  }
}

@media (min-width: 1200px) {
  /* line 15249, app/assets/stylesheets/braiform.scss */
  #packaging .right #carousel .owl-carousel, #packaging .right #carousel .owl-stage-outer, #packaging .right #carousel .owl-stage, #packaging .right #carousel .item {
    max-height: 1000px;
  }
}

@media (max-width: 767px) {
  /* line 15255, app/assets/stylesheets/braiform.scss */
  #packaging .right #carousel .owl-carousel, #packaging .right #carousel .owl-stage-outer, #packaging .right #carousel .owl-stage, #packaging .right #carousel .item {
    height: 400px;
    min-height: 400px;
  }
}

/* line 15261, app/assets/stylesheets/braiform.scss */
.list-section {
  background: white;
  position: relative;
  z-index: 500;
}

/* line 15267, app/assets/stylesheets/braiform.scss */
.list-section .left {
  align-items: flex-start;
  padding: 70px;
}

@media (max-width: 991px) {
  /* line 15275, app/assets/stylesheets/braiform.scss */
  .list-section .left {
    padding: 35px;
  }
}

/* line 15280, app/assets/stylesheets/braiform.scss */
.list-section .left .block {
  padding-bottom: 35px;
  border-bottom: 1px solid #5263c6;
  margin-bottom: 35px;
}

/* line 15286, app/assets/stylesheets/braiform.scss */
.list-section .left h2 {
  color: #283355;
}

/* line 15290, app/assets/stylesheets/braiform.scss */
.list-section .left ul {
  padding-left: 0px;
}

/* line 15294, app/assets/stylesheets/braiform.scss */
.list-section .left ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 6px;
}

/* line 15301, app/assets/stylesheets/braiform.scss */
.list-section .left ul li:before {
  position: absolute;
  background: url(/images/icons/ic-check-green.png);
  background-size: 15px 15px;
  left: 0px;
  top: 3px;
  width: 15px;
  height: 15px;
  content: '';
}

/* line 15312, app/assets/stylesheets/braiform.scss */
.retail-hero {
  width: 100%;
  height: 500px;
  background: url(/images/retail-hero.jpg);
  background-size: cover;
  background-position: center center;
}

@media (max-width: 991px) {
  /* line 15321, app/assets/stylesheets/braiform.scss */
  .retail-hero {
    height: 150px;
  }
}

/* line 15326, app/assets/stylesheets/braiform.scss */
.scene--ebiz-top {
  background-color: #5263c6;
  background-image: url(/images/ebiz-bg2.jpg);
  background-size: cover;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  z-index: 10;
  position: relative;
  overflow: hidden;
}

/* line 15337, app/assets/stylesheets/braiform.scss */
.scene--ebiz-top .container-fluid {
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
}

@media (max-width: 991px) {
  /* line 15349, app/assets/stylesheets/braiform.scss */
  .scene--ebiz-top .container-fluid {
    align-items: flex-start;
    padding-top: 70px;
  }
}

/* line 15357, app/assets/stylesheets/braiform.scss */
.scene--ebiz-top .container-fluid .text {
  padding-left: 60px;
}

@media (max-width: 991px) {
  /* line 15362, app/assets/stylesheets/braiform.scss */
  .scene--ebiz-top .container-fluid .text {
    padding-left: 10px;
  }
}

/* line 15367, app/assets/stylesheets/braiform.scss */
.scene--ebiz-top .container-fluid .text p {
  font-size: 1.4rem;
}

@media (max-width: 991px) {
  /* line 15372, app/assets/stylesheets/braiform.scss */
  .scene--ebiz-top .container-fluid .text p {
    font-size: 1.2rem;
  }
}

/* line 15377, app/assets/stylesheets/braiform.scss */
.scene--ebiz-top #vector {
  position: absolute;
  right: -3%;
  bottom: -3%;
  width: 50%;
  height: auto;
}

@media (max-width: 991px) {
  /* line 15386, app/assets/stylesheets/braiform.scss */
  .scene--ebiz-top #vector {
    width: 105%;
  }
}

/* line 15391, app/assets/stylesheets/braiform.scss */
#ipad {
  background: white;
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 991px) {
  /* line 15398, app/assets/stylesheets/braiform.scss */
  #ipad {
    padding-top: 50px;
    padding-bottom: 150px;
  }
}

/* line 15404, app/assets/stylesheets/braiform.scss */
#ipad .row.main {
  height: inherit !important;
}

/* line 15408, app/assets/stylesheets/braiform.scss */
#ipad img {
  max-height: 500px;
  max-width: 100%;
}

@media (max-width: 991px) {
  /* line 15414, app/assets/stylesheets/braiform.scss */
  #ipad img {
    transform: translateX(-50px);
  }
}

/* line 15420, app/assets/stylesheets/braiform.scss */
#ipad .right {
  display: flex;
  height: 100%;
  padding-top: 100px;
  align-items: center;
}

/* line 15431, app/assets/stylesheets/braiform.scss */
#ipad .block {
  max-width: 450px;
}

/* line 15435, app/assets/stylesheets/braiform.scss */
#ipad .block h2 {
  color: #283355;
}

@media (max-width: 991px) {
  /* line 15440, app/assets/stylesheets/braiform.scss */
  #ipad .block {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* line 15446, app/assets/stylesheets/braiform.scss */
#operations {
  position: relative;
  z-index: 500;
  background-image: url(/images/operations-bg.jpg);
  background-position: center center;
  background-size: cover;
}

/* line 15454, app/assets/stylesheets/braiform.scss */
#operations .left {
  align-items: flex-start;
  padding: 70px;
}

@media (max-width: 991px) {
  /* line 15462, app/assets/stylesheets/braiform.scss */
  #operations .left {
    padding: 35px;
  }
}

/* line 15467, app/assets/stylesheets/braiform.scss */
#operations .left .block {
  padding-bottom: 35px;
  border-bottom: 1px solid #5263c6;
  margin-bottom: 35px;
}

/* line 15473, app/assets/stylesheets/braiform.scss */
#operations .left h2 {
  color: #283355;
}

/* line 15477, app/assets/stylesheets/braiform.scss */
#operations .left ul {
  padding-left: 0px;
}

/* line 15481, app/assets/stylesheets/braiform.scss */
#operations .left ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 6px;
}

/* line 15488, app/assets/stylesheets/braiform.scss */
#operations .left ul li:before {
  position: absolute;
  background: url(/images/icons/ic-check-green.png);
  background-size: 15px 15px;
  left: 0px;
  top: 3px;
  width: 15px;
  height: 15px;
  content: '';
}

/* line 15499, app/assets/stylesheets/braiform.scss */
.scene--contact-top {
  max-height: 400px;
  min-height: 400px;
  padding-top: 70px;
  background-color: #5263c6;
}

/* line 15506, app/assets/stylesheets/braiform.scss */
.scene--contact-top #map {
  height: 100%;
  width: 100%;
}

@media (max-width: 767px) {
  /* line 15512, app/assets/stylesheets/braiform.scss */
  .scene--contact-top {
    padding-top: 40px;
  }
}

/* line 15517, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper {
  background-color: #ebecee;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 35px;
  padding-right: 35px;
}

@media (max-width: 1199px) {
  /* line 15526, app/assets/stylesheets/braiform.scss */
  .contact-form-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* line 15532, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper .form {
  margin-top: 40px;
}

/* line 15536, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper .form-control {
  border-color: white;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  min-height: 50px;
}

/* line 15543, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper select.form-control {
  border-radius: 0px !important;
  min-height: 50px !important;
  -webkit-appearance: none;
  position: relative;
  background-image: url(/images/arrow-down.svg) !important;
  background-position: 97% center;
  background-repeat: no-repeat;
}

/* line 15553, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper .form-group {
  margin-bottom: 1.5rem;
}

/* line 15557, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper h2, .contact-form-wrapper h4 {
  color: #283355;
}

/* line 15561, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper h2 {
  font-size: 2rem;
  /* replace with your selector */
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 50px;
}

/* line 15570, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper h4 {
  font-size: 1.3rem;
  margin-bottom: 30px !important;
}

@media (max-width: 1199px) {
  /* line 15576, app/assets/stylesheets/braiform.scss */
  .contact-form-wrapper .btn {
    width: 100%;
  }
}

/* line 15581, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper .left-column {
  border-right: 1px solid #5263c6;
}

@media (max-width: 1199px) {
  /* line 15586, app/assets/stylesheets/braiform.scss */
  .contact-form-wrapper .left-column {
    border-right: 0px;
  }
}

/* line 15591, app/assets/stylesheets/braiform.scss */
.contact-form-wrapper .left-column .left-block {
  margin-bottom: 50px;
  max-width: 300px;
}

/* line 15596, app/assets/stylesheets/braiform.scss */
.working-for-braiform {
  background-image: url(/images/contact-pattern.jpg);
  background-size: cover;
  background-color: #5263c6;
  background-position: center top;
  background-repeat: repeat-y;
  max-height: none !important;
  height: auto !important;
  padding-bottom: 150px;
  padding-top: 100px;
}

/* line 15608, app/assets/stylesheets/braiform.scss */
.working-for-braiform .row.top {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;*/
  padding-left: 35px;
  padding-right: 35px;
}

/* line 15622, app/assets/stylesheets/braiform.scss */
.working-for-braiform .row.top .text {
  color: white;
  padding-right: 150px;
}

@media (max-width: 1199px) {
  /* line 15628, app/assets/stylesheets/braiform.scss */
  .working-for-braiform .row.top .text {
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  /* line 15634, app/assets/stylesheets/braiform.scss */
  .working-for-braiform .row.top .text {
    padding-right: 0px;
  }
}

/* line 15639, app/assets/stylesheets/braiform.scss */
.working-for-braiform .row.bottom {
  margin-top: 100px;
  padding-left: 35px;
  padding-right: 35px;
}

@media (max-width: 1199px) {
  /* line 15646, app/assets/stylesheets/braiform.scss */
  .working-for-braiform .row.bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* line 15652, app/assets/stylesheets/braiform.scss */
.opportunities-and-training {
  background: #ebecee;
  border-radius: 3px;
  padding: 45px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  color: #283355;
}

@media (max-width: 767px) {
  /* line 15662, app/assets/stylesheets/braiform.scss */
  .working-for-braiform .row.bottom .block {
    font-size: 0.85rem;
    padding: 25px;
  }
  /* line 15667, app/assets/stylesheets/braiform.scss */
  .working-for-braiform .row.bottom .block h3 {
    font-size: 1.2rem;
  }
}

/* line 15672, app/assets/stylesheets/braiform.scss */
.scene--home-top .text h1 {
  max-width: 730px;
}

/* line 15676, app/assets/stylesheets/braiform.scss */
.scene--home-top .text {
  max-width: none;
}

@media (min-width: 570px) {
  /* line 15681, app/assets/stylesheets/braiform.scss */
  .scene--home-top .text .sub {
    padding-right: 50%;
  }
}

/* line 15686, app/assets/stylesheets/braiform.scss */
.scene--home-top #globe-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  height: auto;
  padding-top: 90%;
}

/* line 15695, app/assets/stylesheets/braiform.scss */
.scene--home-top #globe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(25%, 36%);
}

@media (orientation: portrait) {
  /* line 15705, app/assets/stylesheets/braiform.scss */
  .scene--home-top #globe-wrapper {
    width: 120%;
    padding-top: 120%;
  }
  /* line 15709, app/assets/stylesheets/braiform.scss */
  .scene--home-top #globe {
    transform: translate(30%, 30%);
  }
}

/* line 15714, app/assets/stylesheets/braiform.scss */
#globe rect[height="900"] {
  fill: transparent !important;
}

/* line 15718, app/assets/stylesheets/braiform.scss */
#packaging .right #carousel {
  height: auto !important;
}

/* line 15722, app/assets/stylesheets/braiform.scss */
#packaging {
  max-height: none;
}

/* line 15726, app/assets/stylesheets/braiform.scss */
.scene--generic {
  height: auto;
  min-height: 0;
  max-height: none;
  margin-top: 40px;
  padding-top: 1px;
  background-color: #fff;
}

@media (min-width: 768px) {
  /* line 15736, app/assets/stylesheets/braiform.scss */
  .scene--generic {
    margin-top: 71px;
  }
}

/* line 15741, app/assets/stylesheets/braiform.scss */
.scene--generic > .scene__inner {
  margin: 0 auto 90px;
  width: calc(100% - 60px);
  max-width: 580px;
}

/* line 15747, app/assets/stylesheets/braiform.scss */
.scene--generic h1 {
  font-size: 2.2rem;
  color: #273455;
}

/* line 15752, app/assets/stylesheets/braiform.scss */
.scene--generic h2,
.scene--generic h3,
.scene--generic h4,
.scene--generic h5,
.scene--generic h6 {
  margin-top: 2em !important;
  color: #273455;
}

/* line 15761, app/assets/stylesheets/braiform.scss */
.scene--generic table {
  margin-top: 2em;
}

/* line 15765, app/assets/stylesheets/braiform.scss */
.scene--generic table td {
  padding-right: 1em;
}

/* line 15769, app/assets/stylesheets/braiform.scss */
.scene--generic table tr td:last-child {
  padding-right: 0;
}

/* line 15773, app/assets/stylesheets/braiform.scss */
.scene--generic table tr + tr td {
  border-top: solid 1px #EBECEE;
  padding-top: 1em;
}

/* line 15778, app/assets/stylesheets/braiform.scss */
#header.header--light {
  border-bottom: solid 1px #5867C3;
}

/* line 15782, app/assets/stylesheets/braiform.scss */
#header.header--light .main-menu li a {
  color: #273455;
}

/*section#wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

section#wrapper > * {
  flex: 0 0 auto;
}*/
/* line 15796, app/assets/stylesheets/braiform.scss */
#main-footer {
  margin-top: auto;
}

@media (max-width: 767px) {
  /* line 15801, app/assets/stylesheets/braiform.scss */
  #main-footer .footer-mid ul li a {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  /* line 15807, app/assets/stylesheets/braiform.scss */
  .footer-mid .col-12 {
    padding-left: 0;
  }
}

/* line 15812, app/assets/stylesheets/braiform.scss */
.footer-mid .row {
  position: relative;
}

/* line 15816, app/assets/stylesheets/braiform.scss */
.main-footer__tagline {
  display: block;
  color: #fff;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  /* line 15823, app/assets/stylesheets/braiform.scss */
  .main-footer__tagline {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
}

/* line 15832, app/assets/stylesheets/braiform.scss */
.scene--ebiz-top h1 svg {
  width: 160px;
  height: 62px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
}

/* line 15839, app/assets/stylesheets/braiform.scss */
#contact .row.main .col {
  flex-grow: 0;
  flex-basis: auto;
}

/* line 15844, app/assets/stylesheets/braiform.scss */
.resources--top-section {
  background: white;
  margin-top: 70px;
  margin-bottom: 30px;
  z-index: 0;
  position: relative;
  border-bottom: 1px solid #5263c6;
}

@media (max-width: 767px) {
  /* line 15854, app/assets/stylesheets/braiform.scss */
  .resources--top-section {
    margin-top: 40px;
    border-top: 0px;
  }
}

/* line 15860, app/assets/stylesheets/braiform.scss */
.resources {
  background: white;
}

/* line 15864, app/assets/stylesheets/braiform.scss */
.resources #header .nav-link {
  color: #283355;
}

/* line 15868, app/assets/stylesheets/braiform.scss */
.resources .search-wrapper {
  background: white;
  transition: all 0.3s ease;
  animation: all 0.3s ease;
}

/* line 15876, app/assets/stylesheets/braiform.scss */
.resources .search-wrapper.opened {
  width: 100%;
  border-left: 0px;
}

/* line 15881, app/assets/stylesheets/braiform.scss */
.resources .search-wrapper.opened #close-search {
  display: block;
}

@media (max-width: 767px) {
  /* line 15886, app/assets/stylesheets/braiform.scss */
  .resources .search-wrapper .search-inner {
    margin-left: 0px !important;
  }
}

/* line 15891, app/assets/stylesheets/braiform.scss */
.resources .search-wrapper #close-search {
  width: 13px;
  min-height: 13px;
  min-width: 13px;
  height: 13px;
  position: absolute;
  right: 15px;
  top: 15px;
  display: none;
}

@media (max-width: 767px) {
  /* line 15903, app/assets/stylesheets/braiform.scss */
  .resources .search-wrapper {
    width: 58px;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    flex-grow: 0;
    box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.3);
    border-left: 1px solid #5263c6;
  }
  /* line 15917, app/assets/stylesheets/braiform.scss */
  .resources .search-wrapper img {
    width: 20px !important;
    height: 20px !important;
    margin-right: 20px;
    margin-left: 4px;
  }
}

/* line 15925, app/assets/stylesheets/braiform.scss */
.resources #search {
  border: 0px;
  color: #283355;
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
  position: relative;
}

/* line 15935, app/assets/stylesheets/braiform.scss */
.resources #search::-webkit-input-placeholder {
  color: #283355;
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
}

/* line 15943, app/assets/stylesheets/braiform.scss */
.resources #search:-ms-input-placeholder {
  color: #283355;
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
}

/* line 15951, app/assets/stylesheets/braiform.scss */
.resources #search::-moz-placeholder {
  color: #283355;
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
}
.resources #search::placeholder {
  color: #283355;
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
}

/* line 15959, app/assets/stylesheets/braiform.scss */
.resources .breadcrumb {
  background: white;
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  /* line 15965, app/assets/stylesheets/braiform.scss */
  .resources .breadcrumb {
    padding-left: 0px;
  }
}

/* line 15970, app/assets/stylesheets/braiform.scss */
.resources .breadcrumb .breadcrumb-item {
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 600;
  font-style: normal;
  color: #283355;
}

@media (max-width: 767px) {
  /* line 15979, app/assets/stylesheets/braiform.scss */
  .resources .breadcrumb .breadcrumb-item {
    font-size: 0.8rem;
  }
}

/* line 15984, app/assets/stylesheets/braiform.scss */
.resources .breadcrumb .breadcrumb-item:first-of-type:before {
  display: none;
}

/* line 15988, app/assets/stylesheets/braiform.scss */
.resources .breadcrumb .breadcrumb-item:before {
  content: '';
  background: url(/images/arrow-right.svg);
  width: 7px;
  height: 14px;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 7px 11px;
}

/* line 15999, app/assets/stylesheets/braiform.scss */
.resources .breadcrumb .breadcrumb-item a {
  color: #283355;
  text-transform: none;
  letter-spacing: normal;
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
}

/* line 16009, app/assets/stylesheets/braiform.scss */
.resources .categories {
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 35px;
  padding-right: 35px;
}

@media (max-width: 767px) {
  /* line 16017, app/assets/stylesheets/braiform.scss */
  .resources .categories {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* line 16023, app/assets/stylesheets/braiform.scss */
.resources .categories .categories-wrapper {
  border: 1px solid #5263c6;
  border-radius: 3px;
  display: flex;
  justify-content: space-around;
}

@media (max-width: 991px) {
  /* line 16034, app/assets/stylesheets/braiform.scss */
  .resources .categories .categories-wrapper {
    display: block;
  }
}

/* line 16039, app/assets/stylesheets/braiform.scss */
.resources .categories .categories-wrapper .block {
  border-right: 1px solid #5263c6 !important;
  padding: 25px;
  flex: 1;
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* line 16061, app/assets/stylesheets/braiform.scss */
.resources .categories .categories-wrapper .block:hover {
  background: #ebecee;
  text-decoration: none;
}

@media (max-width: 991px) {
  /* line 16067, app/assets/stylesheets/braiform.scss */
  .resources .categories .categories-wrapper .block {
    border-right: 0px !important;
    border-bottom: 1px solid #5263c6;
  }
}

/* line 16073, app/assets/stylesheets/braiform.scss */
.resources .categories .categories-wrapper .block:last-of-type {
  border-right: 0px !important;
}

@media (max-width: 991px) {
  /* line 16078, app/assets/stylesheets/braiform.scss */
  .resources .categories .categories-wrapper .block:last-of-type {
    border-bottom: 0px !important;
  }
}

/* line 16083, app/assets/stylesheets/braiform.scss */
.resources .categories .categories-wrapper .block .title {
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
  color: #283355;
  margin-bottom: 10px;
}

/* line 16093, app/assets/stylesheets/braiform.scss */
.resources .categories .categories-wrapper .block p {
  color: #3C3D40;
  font-size: 1rem;
}

/* line 16098, app/assets/stylesheets/braiform.scss */
.resources .categories .categories-wrapper .block .btn {
  height: 35px;
  padding-left: 0px !important;
  color: #283355;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: block;
  text-align: left;
  justify-content: flex-start;
}

/* line 16111, app/assets/stylesheets/braiform.scss */
.resources .categories .categories-wrapper .block .btn .ic {
  color: #283355;
}

/* line 16115, app/assets/stylesheets/braiform.scss */
.resources .faq {
  background: #ebecee;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 16121, app/assets/stylesheets/braiform.scss */
.resources .faq .container-fluid {
  padding-left: 35px;
  padding-right: 35px;
}

@media (max-width: 767px) {
  /* line 16127, app/assets/stylesheets/braiform.scss */
  .resources .faq .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* line 16133, app/assets/stylesheets/braiform.scss */
.resources .faq .container-fluid .h3 {
  margin-bottom: 50px;
}

/* line 16137, app/assets/stylesheets/braiform.scss */
.resources .faq .questions {
  display: flex;
  margin-top: 50px;
}

/* line 16144, app/assets/stylesheets/braiform.scss */
.resources .faq .questions .question {
  margin-bottom: 25px;
}

/* line 16148, app/assets/stylesheets/braiform.scss */
.resources .faq .questions .question .title {
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 25px !important;
  font-size: 1.1rem;
  color: #283355;
  display: block;
  text-transform: none;
  letter-spacing: normal;
}

/* line 16161, app/assets/stylesheets/braiform.scss */
.resources .faq .questions .question p {
  color: #3C3D40;
  font-size: 0.9rem;
}

/* line 16166, app/assets/stylesheets/braiform.scss */
.resources .resources--split .container-fluid {
  padding-left: 35px;
  padding-right: 35px;
}

@media (max-width: 991px) {
  /* line 16172, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* line 16178, app/assets/stylesheets/braiform.scss */
.resources .resources--split #article-side-nav-sticky-wrapper {
  height: auto !important;
}

/* line 16182, app/assets/stylesheets/braiform.scss */
.resources .resources--split #article-side-nav-sticky-wrapper.opened {
  height: auto !important;
}

@media (max-width: 991px) {
  /* line 16187, app/assets/stylesheets/braiform.scss */
  .resources .resources--split #article-side-nav {
    position: relative !important;
    border: 1px solid #5263c6;
    border-radius: 3px;
    padding: 10px 20px;
    position: relative;
  }
}

/* line 16196, app/assets/stylesheets/braiform.scss */
.resources .resources--split .side-nav {
  margin-bottom: 35px;
}

/* line 16200, app/assets/stylesheets/braiform.scss */
.resources .resources--split .side-nav .header {
  font-size: 1.4rem;
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px solid #5263c6;
  padding-bottom: 10px;
}

@media (max-width: 991px) {
  /* line 16211, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .side-nav .header {
    border-bottom: 0px;
    padding-bottom: 0px;
  }
  /* line 16216, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .side-nav .header:before {
    width: 15px;
    height: 15px;
    background: url(/images/arrow-left-blue.svg);
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    right: 15px;
    background-size: 13px 13px;
    top: 20px;
    transform: rotate(0deg);
  }
}

/* line 16232, app/assets/stylesheets/braiform.scss */
.resources .resources--split .side-nav .header.opened:before {
  transform: rotate(-90deg);
}

/* line 16237, app/assets/stylesheets/braiform.scss */
.resources .resources--split .side-nav .nav a {
  text-transform: none;
  color: #283355;
  letter-spacing: normal;
  border-bottom: 1px solid #5263c6;
  padding-left: 0px;
}

@media (max-width: 991px) {
  /* line 16246, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .side-nav .nav a:last-of-type {
    border-bottom: 0px;
  }
}

@media (max-width: 991px) {
  /* line 16252, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .side-nav .nav {
    display: none;
  }
  /* line 16256, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .side-nav .nav {
    display: none;
  }
}

/* line 16261, app/assets/stylesheets/braiform.scss */
.resources .resources--split .main-content {
  max-width: 700px;
  padding-left: 40px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  /* line 16268, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .main-content {
    padding-left: 15px;
  }
}

/* line 16273, app/assets/stylesheets/braiform.scss */
.resources .resources--split .main-content .block {
  padding-top: 45px;
}

/* line 16277, app/assets/stylesheets/braiform.scss */
.resources .resources--split .main-content .block:first-of-type {
  padding-top: 0px;
}

/* line 16281, app/assets/stylesheets/braiform.scss */
.resources .resources--split .main-content .block .btn {
  color: #3C3D40;
  padding-left: 0px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #283355;
}

/* line 16296, app/assets/stylesheets/braiform.scss */
.resources .resources--split .main-content .block .btn .ic {
  margin-top: -4px;
}

/* line 16300, app/assets/stylesheets/braiform.scss */
.resources .resources--split .main-content .block img {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* line 16306, app/assets/stylesheets/braiform.scss */
.resources .resources--split .main-content h1 {
  /* replace with your selector */
  font-family: "Work Sans" !important;
  font-weight: 500;
  font-style: normal;
  margin-top: 0px !important;
  color: #283355;
}

@media (max-width: 991px) {
  /* line 16316, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .main-content h1 {
    font-size: 1.7rem;
  }
}

/* line 16321, app/assets/stylesheets/braiform.scss */
.resources .resources--split .main-content h2,
.resources .resources--split .main-content h3,
.resources .resources--split .main-content h4,
.resources .resources--split .main-content h5 {
  color: #3C3D40;
}

@media (max-width: 991px) {
  /* line 16329, app/assets/stylesheets/braiform.scss */
  .resources .resources--split .main-content h2 {
    font-size: 1.4rem;
  }
}

/* line 16334, app/assets/stylesheets/braiform.scss */
.ic-arrow-right {
  background: url(/images/icons/ic-arrow-right.svg);
}

/* line 16338, app/assets/stylesheets/braiform.scss */
.bc-catalogue-thanks {
  background-color: #fff;
  margin: 0 auto 90px;
  width: calc(100% - 60px);
  max-width: 580px;
}

/* line 16345, app/assets/stylesheets/braiform.scss */
.bc-catalogue-thanks h1 {
  font-size: 2.2rem;
  color: #273455;
}

/* line 16350, app/assets/stylesheets/braiform.scss */
.scene--catalogue-thanks {
  background-color: #fff;
}

/* line 16354, app/assets/stylesheets/braiform.scss */
.scene--catalogue-thanks .row .block {
  color: #3C3D40;
}

/* line 16358, app/assets/stylesheets/braiform.scss */
.scene--catalogue-thanks .row .block .title {
  color: #283355;
}

/* line 16362, app/assets/stylesheets/braiform.scss */
.scene--catalogue-thanks .row .block a {
  color: #283355;
}

/* line 16366, app/assets/stylesheets/braiform.scss */
.scene--catalogue-thanks .ic-arrow-right--white {
  background: url(/images/icons/ic-arrow-right.svg);
}

/* line 16370, app/assets/stylesheets/braiform.scss */
.scene--catalogue-thanks .row .block a {
  padding-left: inherit !important;
}

/* line 16374, app/assets/stylesheets/braiform.scss */
.scene--catalogue-thanks .btn-success {
  color: #fff !important;
}

/* line 1, app/assets/stylesheets/products.scss */
#vue-products {
  padding-bottom: 30px;
}

@media (min-width: 700px) {
  /* line 1, app/assets/stylesheets/products.scss */
  #vue-products {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

/* line 11, app/assets/stylesheets/products.scss */
#vue-products > div:first-child {
  width: 100%;
  flex: 0 0 auto;
}

/* line 16, app/assets/stylesheets/products.scss */
.bc-products-list-header {
  display: flex;
  padding: 20px;
  justify-content: flex-end;
}

/* line 22, app/assets/stylesheets/products.scss */
.bc-products-list-header > * {
  margin: 10px;
}

/* line 26, app/assets/stylesheets/products.scss */
.bc-products-list-header .bc-filter-button {
  margin: 10px;
  margin-right: auto;
}

/* line 31, app/assets/stylesheets/products.scss */
.bc-products-list {
  width: 100%;
  flex: 1 1 1%;
  box-sizing: border-box;
}

@media (min-width: 700px) {
  /* line 31, app/assets/stylesheets/products.scss */
  .bc-products-list {
    width: 75%;
  }
}

/* line 41, app/assets/stylesheets/products.scss */
.bc-products-list.is-populated {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px;
  margin: -15px 0;
}

@media (min-width: 1200px) {
  /* line 41, app/assets/stylesheets/products.scss */
  .bc-products-list.is-populated {
    padding: 0;
    margin: -30px 0;
  }
}

/* line 54, app/assets/stylesheets/products.scss */
.bc-products-list.is-populated .bc-products-list__product {
  margin: 15px;
  flex: 0 0 auto;
  width: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

@media (min-width: 500px) and (max-width: 699px) {
  /* line 54, app/assets/stylesheets/products.scss */
  .bc-products-list.is-populated .bc-products-list__product {
    width: calc(50% - 30px);
  }
}

@media (min-width: 780px) {
  /* line 54, app/assets/stylesheets/products.scss */
  .bc-products-list.is-populated .bc-products-list__product {
    width: calc(50% - 30px);
  }
}

@media (min-width: 1024px) {
  /* line 54, app/assets/stylesheets/products.scss */
  .bc-products-list.is-populated .bc-products-list__product {
    width: calc(33.33% - 30px);
  }
}

@media (min-width: 1200px) {
  /* line 54, app/assets/stylesheets/products.scss */
  .bc-products-list.is-populated .bc-products-list__product {
    margin: 30px;
    width: calc(33.33% - 60px);
  }
}

/* line 79, app/assets/stylesheets/products.scss */
.bc-products-list.is-populated .bc-products-list__product > * {
  flex: 0 0 auto;
}

/* line 83, app/assets/stylesheets/products.scss */
.bc-products-list.is-populated .bc-products-list__product .bc-product-card__info {
  margin-bottom: auto;
}

/* line 87, app/assets/stylesheets/products.scss */
.bc-products-list.-x4 .bc-products-list__product {
  width: calc(100% - 30px);
}

@media (min-width: 500px) {
  /* line 87, app/assets/stylesheets/products.scss */
  .bc-products-list.-x4 .bc-products-list__product {
    width: calc(50% - 30px);
  }
}

@media (min-width: 1024px) {
  /* line 87, app/assets/stylesheets/products.scss */
  .bc-products-list.-x4 .bc-products-list__product {
    width: calc(25% - 30px);
  }
}

@media (min-width: 1200px) {
  /* line 87, app/assets/stylesheets/products.scss */
  .bc-products-list.-x4 .bc-products-list__product {
    width: calc(25% - 60px);
  }
}

/* line 103, app/assets/stylesheets/products.scss */
.bc-products-list.is-empty {
  text-align: center;
}

@media (min-width: 700px) {
  /* line 103, app/assets/stylesheets/products.scss */
  .bc-products-list.is-empty {
    text-align: left;
  }
}

/* line 112, app/assets/stylesheets/products.scss */
a.bc-products-list__product {
  display: block;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 499px) {
  /* line 120, app/assets/stylesheets/products.scss */
  a.bc-products-list__product + a.bc-products-list__product {
    margin-top: 30px;
  }
}

@media (min-width: 700px) and (max-width: 767px) {
  /* line 120, app/assets/stylesheets/products.scss */
  a.bc-products-list__product + a.bc-products-list__product {
    margin-top: 30px;
  }
}

@media (min-width: 780px) {
  /* line 120, app/assets/stylesheets/products.scss */
  a.bc-products-list__product + a.bc-products-list__product {
    margin-top: 0;
  }
}

/* line 134, app/assets/stylesheets/products.scss */
.bc-products-facets__close {
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* line 147, app/assets/stylesheets/products.scss */
.bc-products-facets__close path {
  fill: #273455;
}

/* line 151, app/assets/stylesheets/products.scss */
.bc-products-facets {
  padding: 0 30px 30px 30px;
  flex: 0 0 25%;
  min-width: 300px;
}

@media (max-width: 699px) {
  /* line 151, app/assets/stylesheets/products.scss */
  .bc-products-facets {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 30px;
    padding-right: 44px;
    background-color: #fff;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
  }
}

@media (max-width: 699px) {
  /* line 172, app/assets/stylesheets/products.scss */
  .bc-products-facets.is-open {
    display: block;
  }
}

/* line 178, app/assets/stylesheets/products.scss */
.bc-products-facet + .bc-products-facet {
  margin-top: 30px;
}

/* line 182, app/assets/stylesheets/products.scss */
.bc-products-facets > button {
  margin-top: 30px;
}

/* line 186, app/assets/stylesheets/products.scss */
.bc-products-facets__buttons {
  display: flex;
}

/* line 190, app/assets/stylesheets/products.scss */
.bc-products-facet button {
  padding: 0;
  margin-right: .5em;
  border: 0;
  background: transparent;
  display: inline-block;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 14px;
  color: #3C3D40;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  text-align: center;
}

/* line 204, app/assets/stylesheets/products.scss */
.bc-products-facet button.danger {
  margin-left: auto;
  color: #D65466;
}

/* line 209, app/assets/stylesheets/products.scss */
.bc-products-facet__title {
  display: block;
  font-family: "Work Sans";
  font-size: 28px;
  letter-spacing: 0.05px;
  padding-bottom: .5em;
  margin-bottom: .25em;
  border-bottom: solid 1px #5867C3;
}

/* line 219, app/assets/stylesheets/products.scss */
.bc-products-facet__main {
  padding: 7px 0 12px;
  border-bottom: solid 1px #5867C3;
  margin-bottom: .5rem;
}

/* line 225, app/assets/stylesheets/products.scss */
.bc-products-facet label {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 7px 0 12px;
  text-transform: none;
  font-family: "Work Sans";
  font-size: 16px;
  color: #3C3D40;
  letter-spacing: 0.03px;
  border-bottom: solid 1px #5867C3;
  white-space: nowrap;
}

/* line 239, app/assets/stylesheets/products.scss */
.bc-products-facet input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  margin-right: .25em;
  background-color: #fff;
  border: solid 1px #5867C3;
  border-radius: 50%;
  -moz-outline-radius: 50%;
  transform: translateY(2px);
  transition: background-color .2s;
}

/* line 252, app/assets/stylesheets/products.scss */
.bc-products-facet input[type="checkbox"]:checked {
  background-color: #5867C3;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.19);
}

/* line 264, app/assets/stylesheets/products.scss */
.bc-products-list-pagination {
  width: 100%;
  margin: 15px 15px 15px;
}

@media (min-width: 1200px) {
  /* line 264, app/assets/stylesheets/products.scss */
  .bc-products-list-pagination {
    margin: 0 30px 30px;
  }
}

/* line 273, app/assets/stylesheets/products.scss */
.bc-products-list-pagination select {
  -webkit-appearance: menulist;
     -moz-appearance: menulist;
          appearance: menulist;
}

/* line 277, app/assets/stylesheets/products.scss */
.bc-related-products {
  margin-bottom: 60px;
}

/* line 281, app/assets/stylesheets/products.scss */
.bc-related-products__header {
  display: block;
  font-size: 28px;
  color: #3C3D40;
  letter-spacing: 0.05px;
  line-height: 1.45;
  padding-bottom: .5em;
  margin: 0 30px 60px !important;
  border-bottom: solid 1px #5867C3;
}

/* line 1, app/assets/stylesheets/product.scss */
.bc-product {
  padding: 30px;
  margin: -15px 0 85px;
}

@media (min-width: 768px) {
  /* line 1, app/assets/stylesheets/product.scss */
  .bc-product {
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

/* line 14, app/assets/stylesheets/product.scss */
.bc-product-header {
  width: calc(100% + 20px);
  display: flex;
  padding-bottom: 30px;
  justify-content: flex-end;
  margin: -10px;
}

/* line 22, app/assets/stylesheets/product.scss */
.bc-product-header > * {
  margin: 10px;
}

/* line 26, app/assets/stylesheets/product.scss */
.bc-product__images {
  margin: 15px auto;
  max-width: 480px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  /* line 26, app/assets/stylesheets/product.scss */
  .bc-product__images {
    border-right: solid 15px transparent;
  }
}

/* line 39, app/assets/stylesheets/product.scss */
.bc-product__images img {
  width: 100%;
  height: auto;
}

/* line 44, app/assets/stylesheets/product.scss */
.bc-product__images__thumbs {
  display: flex;
  justify-content: space-between;
}

/* line 49, app/assets/stylesheets/product.scss */
.bc-product__image--thumb {
  flex: 0 0 auto;
  width: 100%;
  border: solid 1px #EBECEE;
}

/* line 180, node_modules/family.scss/source/src/_family.scss */
.bc-product__image--thumb:nth-last-child(n + 2), .bc-product__image--thumb:nth-last-child(n + 2) ~ .bc-product__image--thumb {
  width: calc(50% - 7.5px);
}

/* line 180, node_modules/family.scss/source/src/_family.scss */
.bc-product__image--thumb:nth-last-child(n + 3), .bc-product__image--thumb:nth-last-child(n + 3) ~ .bc-product__image--thumb {
  width: calc(33.33% - 10px);
}

/* line 180, node_modules/family.scss/source/src/_family.scss */
.bc-product__image--thumb:nth-last-child(n + 4), .bc-product__image--thumb:nth-last-child(n + 4) ~ .bc-product__image--thumb {
  width: calc(25% - 11px);
}

/* line 67, app/assets/stylesheets/product.scss */
.bc-product__images--full {
  width: 100%;
  margin-bottom: 15px;
  border: solid 1px #EBECEE;
}

/* line 73, app/assets/stylesheets/product.scss */
.bc-product__info {
  flex: 1 0 auto;
  margin: 15px 0;
  padding: 20px 40px 0;
  background-color: #EBECEE;
}

/* line 80, app/assets/stylesheets/product.scss */
.bc-product-info__button {
  display: inline-block;
  margin-top: 16px;
  transform: translateY(50%);
  padding: 1.5em 1.5em 1.4em;
  background: #72BA3A;
  box-shadow: 0 22px 54px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.73px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}

@media (min-width: 450px) {
  /* line 80, app/assets/stylesheets/product.scss */
  .bc-product-info__button {
    white-space: nowrap;
  }
}

/* line 103, app/assets/stylesheets/product.scss */
.bc-product-info__button.-remove {
  background-color: #D65466;
}

/* line 107, app/assets/stylesheets/product.scss */
.bc-product-info__header {
  margin: 0 0 .46em !important;
  font-size: 45px;
  color: #273455;
  letter-spacing: -0.84px;
}

/* line 114, app/assets/stylesheets/product.scss */
.bc-product-info__range {
  display: block;
  line-height: 1.45;
  margin-bottom: .6em;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03px;
}

/* line 123, app/assets/stylesheets/product.scss */
.bc-product-info__features {
  line-height: 1.45;
  margin: 0;
  padding: 0;
}

/* line 129, app/assets/stylesheets/product.scss */
.bc-product-info__features li {
  position: relative;
  padding-left: .8em;
  list-style: none;
  margin: 0;
}

/* line 136, app/assets/stylesheets/product.scss */
.bc-product-info__features li::before {
  content: '–';
  position: absolute;
  top: 0;
  left: 0;
}

/* line 143, app/assets/stylesheets/product.scss */
.bc-product-info__features li:first-child {
  padding-left: 0;
}

/* line 147, app/assets/stylesheets/product.scss */
.bc-product-info__features li:first-child::before {
  content: none;
}

/* line 151, app/assets/stylesheets/product.scss */
.bc-product-meta {
  width: 100%;
  margin-top: 30px;
  padding-top: 30px;
  border-top: solid 1px #BEBFC7;
  line-height: 1.45;
  display: flex;
  flex-wrap: wrap;
}

/* line 161, app/assets/stylesheets/product.scss */
.bc-product-meta__col {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 30px;
}

/* line 167, app/assets/stylesheets/product.scss */
.bc-product-meta ul {
  margin: 0;
  padding: 0;
}

/* line 172, app/assets/stylesheets/product.scss */
.bc-product-meta li {
  list-style: none;
  margin: 0;
}

/* line 182, app/assets/stylesheets/product.scss */
.bc-product-meta__header {
  font-size: inherit;
  margin: 0 0 .35em !important;
}

/* line 188, app/assets/stylesheets/product.scss */
.bc-product-card {
  display: block;
  border: solid 1px #EBECEE;
  background-color: #EBECEE;
  text-decoration: none;
  color: inherit !important;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none !important;
  cursor: pointer;
}

/* line 200, app/assets/stylesheets/product.scss */
.bc-product-card__image {
  position: relative;
  width: 100%;
  background-color: #fff;
}

/* line 206, app/assets/stylesheets/product.scss */
.bc-product-card__image::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 70.714285714%;
}

/* line 213, app/assets/stylesheets/product.scss */
.bc-product-card__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 221, app/assets/stylesheets/product.scss */
.bc-product-card__info {
  padding: 14px;
  line-height: 1.45;
}

/* line 226, app/assets/stylesheets/product.scss */
.bc-product-card__group {
  margin-bottom: .5em;
  display: block;
  font-size: 16px;
  color: #273455;
  letter-spacing: 0.03px;
  font-family: "Work Sans";
  font-weight: 500;
}

/* line 235, app/assets/stylesheets/product.scss */
.bc-product-card__feature {
  margin-bottom: .5em;
  display: block;
}

/* line 240, app/assets/stylesheets/product.scss */
.bc-product-card__sizes {
  display: block;
  padding-top: .5em;
  border-top: solid 1px #BEBFC7;
}

/* line 246, app/assets/stylesheets/product.scss */
.bc-product-card__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  color: #273455;
  letter-spacing: 1.08px;
  font-family: "Work Sans";
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  line-height: normal;
  vertical-align: middle;
}

/* line 264, app/assets/stylesheets/product.scss */
.bc-product-card__button.-added {
  color: #72BA3A;
}

/* line 268, app/assets/stylesheets/product.scss */
.bc-product-card__button.-remove {
  color: #D65466;
}

/* line 272, app/assets/stylesheets/product.scss */
.bc-product-card__button > svg {
  vertical-align: bottom;
  margin-right: 7px;
}

/* line 1, app/assets/stylesheets/wishlist.scss */
.bc-wishlist {
  padding: 50px;
}

@media (min-width: 680px) {
  /* line 5, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist.populated {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 680px) {
  /* line 12, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-products {
    width: 66.66%;
    padding-right: 50px;
  }
}

@media (min-width: 680px) {
  /* line 19, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-enquiry {
    width: 33.33%;
  }
}

/* line 25, app/assets/stylesheets/wishlist.scss */
.bc-wishlist.empty h1 {
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 28px;
  letter-spacing: 0.05px;
  line-height: 1.45;
  margin: 0 0 30px !important;
  padding-bottom: 20px;
  border-bottom: solid 1px #5867C3;
}

/* line 35, app/assets/stylesheets/wishlist.scss */
.bc-wishlist img {
  width: 100%;
  height: auto;
}

/* line 40, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-enquiry-form {
  padding: 30px 30px 0;
  background-color: #EBECEE;
  margin-top: 50px;
  margin-bottom: 40px;
}

@media (min-width: 680px) {
  /* line 40, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-enquiry-form {
    margin-top: 0;
  }
}

/* line 51, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-enquiry-form__header {
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 28px;
  letter-spacing: 0.05px;
  line-height: 1.45;
  margin: 0 0 .5em !important;
}

/* line 59, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-enquiry-form .bc-button {
  margin: 0 auto;
  transform: translateY(50%);
}

/* line 64, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-enquiry-form .bc-button span {
  display: none;
}

@media (min-width: 400px) {
  /* line 64, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-enquiry-form .bc-button span {
    display: inline;
    margin-left: .4em;
  }
}

/* line 73, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__header {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: solid 1px #5867C3;
  margin-bottom: 50px;
}

@media (min-width: 880px) {
  /* line 73, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist__header {
    display: flex;
    align-items: center;
  }
}

/* line 85, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-header__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  flex-direction: row-reverse;
  margin: -10px;
}

@media (min-width: 880px) {
  /* line 85, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-header__actions {
    flex-direction: row;
  }
}

/* line 98, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-header__actions > * {
  margin: 10px;
}

/* line 102, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__header h1 {
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: normal;
  font-size: 28px;
  color: #3C3D40;
  letter-spacing: 0.05px;
  margin: 0 0 15px !important;
  line-height: 1.45;
  flex-grow: 1;
}

@media (min-width: 880px) {
  /* line 102, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist__header h1 {
    margin-right: auto;
  }
}

/* line 117, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__header button {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #D65466;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s;
}

@media (min-width: 880px) {
  /* line 117, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist__header button {
    margin-left: -50px;
    transform: translateX(-100%);
  }
}

/* line 140, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__header button:disabled {
  color: #EBECEE;
  pointer-events: none;
}

/* line 145, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product {
  padding-bottom: 30px;
  border-bottom: solid 1px #BEBFC7;
}

@media (min-width: 380px) and (max-width: 680px) {
  /* line 145, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-product {
    display: flex;
    align-items: flex-start;
  }
}

@media (min-width: 750px) {
  /* line 145, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-product {
    display: flex;
    align-items: flex-start;
  }
}

/* line 160, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product + .bc-wishlist-product {
  margin-top: 30px;
}

/* line 164, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product__info {
  position: relative;
  width: 100%;
}

/* line 169, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product__image {
  width: 100%;
  height: auto;
  border: solid 1px #DFDFDF;
  flex: 0 0 auto;
  margin-bottom: 30px;
}

@media (min-width: 380px) and (max-width: 680px) {
  /* line 169, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-product__image {
    width: calc(50% - 30px);
    margin-bottom: 0;
    margin-right: 30px;
  }
}

@media (min-width: 750px) {
  /* line 169, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-product__image {
    width: calc(50% - 30px);
    margin-bottom: 0;
    margin-right: 30px;
  }
}

/* line 189, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: #D65466;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  margin-bottom: .5em;
  white-space: nowrap;
  cursor: pointer;
}

@media (min-width: 800px) {
  /* line 189, app/assets/stylesheets/wishlist.scss */
  .bc-wishlist-product__button {
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 0;
  }
}

/* line 211, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product__button > svg {
  vertical-align: top;
}

/* line 215, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product__group {
  margin-bottom: .5em;
  display: block;
  font-size: 16px;
  color: #273455;
  letter-spacing: 0.03px;
  font-family: "Work Sans";
  font-weight: 500;
}

/* line 224, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product__feature {
  margin-bottom: .5em;
  display: block;
}

/* line 229, app/assets/stylesheets/wishlist.scss */
.bc-wishlist-product__sizes {
  display: block;
  padding-top: .5em;
  border-top: solid 1px #BEBFC7;
}

/* line 235, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__footer {
  margin: 15px 0 -15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* line 243, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__footer > * {
  margin: 15px 0;
}

/* line 247, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__footer a {
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-size: 14px;
  color: #3C3D40;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-right: 2em;
  white-space: nowrap;
}

/* line 261, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__footer a > svg {
  flex: 0 0 auto;
  margin-right: .75em;
}

/* line 266, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__footer button {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #D65466;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s;
}

/* line 283, app/assets/stylesheets/wishlist.scss */
.bc-wishlist__footer button:disabled {
  color: #EBECEE;
  pointer-events: none;
}

/* line 1, app/assets/stylesheets/catalogue.scss */
.bc-form-label {
  display: block;
  font-family: "Work Sans";
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03px;
  margin-bottom: 0;
}

/* line 10, app/assets/stylesheets/catalogue.scss */
.bc-form-field + .bc-form-label,
.bc-form-field + .bc-form-field {
  margin-top: 20px;
}

/* line 15, app/assets/stylesheets/catalogue.scss */
.bc-form-select-wrapper {
  position: relative;
}

/* line 19, app/assets/stylesheets/catalogue.scss */
.bc-form-select-wrapper::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  width: 19px;
  height: 10px;
  transform: translateY(-50%);
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOSAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI%2BPGRlZnM%2BPHBhdGggaWQ9ImEiIGQ9Ik0wIDEwaDE5VjBIMHoiLz48L2RlZnM%2BPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI%2BPHVzZSB4bGluazpocmVmPSIjYSIvPjwvbWFzaz48cGF0aCBkPSJNMCAuNUMwIC4zNzIuMDUuMjQ0LjE0OC4xNDYuMzQyLS4wNS42Ni0uMDUuODU0LjE0Nkw5LjUgOC43OTIgMTguMTQ2LjE0NmMuMTk1LS4xOTUuNTEyLS4xOTUuNzA3IDAgLjE5NS4xOTUuMTk1LjUxMiAwIC43MDhsLTkgOWMtLjE5NS4xOTQtLjUxMi4xOTQtLjcwNyAwbC05LTlDLjA0OC43NTQgMCAuNjI3IDAgLjV6IiBmaWxsPSIjQkVCRkM3IiBtYXNrPSJ1cmwoI2IpIi8%2BPC9nPjwvc3ZnPgo%3D) center right no-repeat;
  pointer-events: none;
}

/* line 32, app/assets/stylesheets/catalogue.scss */
.bc-form-field input[type="text"],
.bc-form-field input[type="email"],
.bc-form-field select,
.bc-form-field textarea {
  display: block;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: #fff;
  line-height: 1.45;
  padding: .9em;
  border-radius: 0;
  resize: none;
}

/* line 47, app/assets/stylesheets/catalogue.scss */
.bc-form-field--checkbox label {
  display: flex;
}

/* line 51, app/assets/stylesheets/catalogue.scss */
.bc-form-field--checkbox input[type="checkbox"] {
  flex: 0 0 auto;
  margin-right: 1em;
}

/* line 56, app/assets/stylesheets/catalogue.scss */
.bc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  padding: 1.5em 1.5em 1.4em;
  background: #72BA3A;
  box-shadow: 0 22px 54px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.73px;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: normal;
}

/* line 79, app/assets/stylesheets/catalogue.scss */
a.bc-button {
  color: #fff;
  text-decoration: none;
}

/* line 84, app/assets/stylesheets/catalogue.scss */
.bc-button--neutral {
  background-color: #BEBFC7;
}

/* line 88, app/assets/stylesheets/catalogue.scss */
.bc-button--full-width {
  display: flex;
  width: 100%;
}

/* line 93, app/assets/stylesheets/catalogue.scss */
.bc-button > svg {
  margin-left: 2em;
}

/* line 97, app/assets/stylesheets/catalogue.scss */
.bc-filter-button {
  text-align: center;
  margin: 0;
  padding: 2px 1em 0;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.08px;
  line-height: normal;
  text-transform: uppercase;
  border: solid 1px #5867C3;
  cursor: pointer;
}

@media (min-width: 700px) {
  /* line 97, app/assets/stylesheets/catalogue.scss */
  .bc-filter-button {
    display: none;
  }
}

/* line 114, app/assets/stylesheets/catalogue.scss */
.bc-unit-switch {
  display: inline-flex;
  border: solid 1px #5867C3;
}

/* line 119, app/assets/stylesheets/catalogue.scss */
.bc-unit-switch > label {
  position: relative;
  width: 4em;
  text-align: center;
  margin: 0;
  padding-top: 1px;
  font-family: "Work Sans";
  font-size: 16px;
  letter-spacing: 0.03px;
  line-height: normal;
}

/* line 131, app/assets/stylesheets/catalogue.scss */
.bc-unit-switch > label.lc {
  text-transform: lowercase;
}

/* line 135, app/assets/stylesheets/catalogue.scss */
.bc-unit-switch > label + label {
  border-left: solid 1px #5867C3;
}

/* line 139, app/assets/stylesheets/catalogue.scss */
.bc-unit-switch[data-unit="cms"] > label.cms,
.bc-unit-switch[data-unit="inches"] > label.inches,
.bc-unit-switch[data-locale="en-GB"] > label.en-GB,
.bc-unit-switch[data-locale="en-US"] > label.en-US {
  font-family: "Work Sans";
  font-weight: 600;
  background-color: #EBECEE;
}

/* line 148, app/assets/stylesheets/catalogue.scss */
.bc-unit-switch > label > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  opacity: 0;
}

/* line 159, app/assets/stylesheets/catalogue.scss */
.bc-nowrap {
  white-space: nowrap;
}

/* line 1, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

@media (min-width: 600px) {
  /* line 1, app/assets/stylesheets/catalogue/departments.scss */
  .bc-departments {
    padding: 0 15px;
  }
}

/* line 11, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department {
  width: calc(100% - 60px);
  margin: 30px;
  flex: 0 1 auto;
  border: solid 1px #5867C3;
  text-transform: none;
}

@media (min-width: 600px) {
  /* line 11, app/assets/stylesheets/catalogue/departments.scss */
  .bc-departments__department {
    width: calc(50% - 30px);
    margin: 30px 15px;
  }
}

@media (min-width: 1200px) {
  /* line 11, app/assets/stylesheets/catalogue/departments.scss */
  .bc-departments__department {
    width: calc(25% - 30px);
  }
}

/* line 29, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department:hover {
  text-decoration: none;
}

/* line 33, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department > h1 {
  padding: 16px 20px;
  margin: 0 !important;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 28px;
  color: #3C3D40;
  letter-spacing: 0.05px;
}

@media (max-width: 599px) {
  /* line 33, app/assets/stylesheets/catalogue/departments.scss */
  .bc-departments__department > h1 {
    font-size: 20px;
    border-bottom: solid 1px #5867C3;
  }
}

/* line 47, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department > img {
  width: 100%;
  height: auto;
  border-top: solid 1px #5867C3;
  border-bottom: solid 1px #5867C3;
}

@media (max-width: 599px) {
  /* line 47, app/assets/stylesheets/catalogue/departments.scss */
  .bc-departments__department > img {
    display: none;
  }
}

/* line 57, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department > img:last-child {
  border-bottom: 0;
}

/* line 62, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department > ul {
  margin: 0;
  padding: 8px 20px 0;
}

/* line 67, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department > ul > li {
  list-style: none;
}

/* line 32, node_modules/family.scss/source/src/_family.scss */
.bc-departments__department > ul > li:nth-child(n + 6) {
  display: none;
}

/* line 32, node_modules/family.scss/source/src/_family.scss */
.bc-departments__department > ul.is-expanded > li:nth-child(n + 6) {
  display: block;
}

/* line 81, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department > ul > li > a {
  display: block;
  padding: 12px 0;
  padding-right: 25px;
  text-transform: none;
  font-family: "Work Sans";
  font-size: 16px;
  color: #3C3D40;
  letter-spacing: 0.03px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNiAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTUuODQ1IDQuNzVjLS4wMTUtLjE3NC0uMDgtLjM4LS4xNzQtLjQ5NEwxMi41MDQuMjk2Yy0uMzEtLjM1My0uNzktLjM4NC0xLjExNS0uMTI1LS4zMjQuMjYtLjM4My43OS0uMTIzIDEuMTE1bDIuMTM3IDIuNjc0SC43OTJjLS40MzcgMC0uNzkyLjM1NC0uNzkyLjc5IDAgLjQ0LjM1NS43OTMuNzkyLjc5M2gxMi42MWwtMi4xMzcgMi42NzRjLS4yNi4zMjQtLjE5Ljg0My4xMjMgMS4xMTQuMzQyLjI5Ni44NTUuMjAyIDEuMTE1LS4xMjNsMy4xNjgtMy45NmMuMTM2LS4xNjUuMTcyLS4yODUuMTc1LS40OTYiIGZpbGw9IiMyNzM0NTUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo%3D) center right no-repeat;
  border-bottom: solid 1px #5867C3;
}

/* line 94, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department > a {
  display: block;
  padding: 36px 20px 20px;
  text-align: center;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 14px;
  color: #273455;
  letter-spacing: 1.08px;
}

/* line 104, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department__expand {
  display: block;
  padding: 2.5em 0 1.2em;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 14px;
  color: #3C3D40;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  text-align: center;
}

/* line 115, app/assets/stylesheets/catalogue/departments.scss */
.bc-departments__department__expand:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* line 1, app/assets/stylesheets/catalogue/garment_types.scss */
.bc-garment-types-groups {
  padding: 30px;
}

/* line 5, app/assets/stylesheets/catalogue/garment_types.scss */
.bc-garment-types-groups__header {
  margin-top: 30px;
  font-family: "Work Sans";
  font-size: 28px;
  color: #3C3D40;
  letter-spacing: 0.05px;
}

/* line 13, app/assets/stylesheets/catalogue/garment_types.scss */
.bc-garment-types {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-column-gap: 45px;
}

@media (min-width: 768px) {
  /* line 13, app/assets/stylesheets/catalogue/garment_types.scss */
  .bc-garment-types {
    grid-column-gap: 90px;
  }
}

/* line 24, app/assets/stylesheets/catalogue/garment_types.scss */
.bc-garment-types__type {
  display: inline-block;
  padding: 12px 0;
  padding-right: 25px;
  text-transform: none;
  font-family: "Work Sans";
  font-size: 16px;
  color: #3C3D40 !important;
  letter-spacing: 0.03px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNiAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTUuODQ1IDQuNzVjLS4wMTUtLjE3NC0uMDgtLjM4LS4xNzQtLjQ5NEwxMi41MDQuMjk2Yy0uMzEtLjM1My0uNzktLjM4NC0xLjExNS0uMTI1LS4zMjQuMjYtLjM4My43OS0uMTIzIDEuMTE1bDIuMTM3IDIuNjc0SC43OTJjLS40MzcgMC0uNzkyLjM1NC0uNzkyLjc5IDAgLjQ0LjM1NS43OTMuNzkyLjc5M2gxMi42MWwtMi4xMzcgMi42NzRjLS4yNi4zMjQtLjE5Ljg0My4xMjMgMS4xMTQuMzQyLjI5Ni44NTUuMjAyIDEuMTE1LS4xMjNsMy4xNjgtMy45NmMuMTM2LS4xNjUuMTcyLS4yODUuMTc1LS40OTYiIGZpbGw9IiMyNzM0NTUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo%3D) center right no-repeat;
  border-top: solid 1px #5867C3;
  border-bottom: solid 1px #5867C3;
  margin-top: -1px;
}

/* line 1, app/assets/stylesheets/catalogue/nav.scss */
.bc-nav {
  position: relative;
  display: flex;
  white-space: nowrap;
  min-height: 50px;
  border-bottom: solid 1px #5867C3;
}

@media (max-width: 767px) {
  /* line 1, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav {
    position: fixed;
    z-index: 9999;
    top: 40px;
    left: 0;
    right: 0;
    background-color: #fff;
  }
}

/* line 18, app/assets/stylesheets/catalogue/nav.scss */
.bc-nav.overflowing .bc-nav__search-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  bottom: 0;
  width: 10px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

@media (max-width: 767px) {
  /* line 29, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__link--department {
    padding-left: 20px !important;
  }
  /* line 33, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__link--hanger-accessories {
    padding-right: 20px !important;
  }
}

@media (min-width: 768px) {
  /* line 39, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__link--department {
    padding-left: 30px !important;
  }
  /* line 43, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav > *:last-child {
    padding-right: 30px !important;
  }
}

/* line 48, app/assets/stylesheets/catalogue/nav.scss */
a.bc-nav__link,
.bc-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 10px;
  text-transform: none;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  color: #273455;
  letter-spacing: 0.1px;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  /* line 48, app/assets/stylesheets/catalogue/nav.scss */
  a.bc-nav__link,
.bc-nav__link {
    padding: 0 20px;
  }
}

/* line 69, app/assets/stylesheets/catalogue/nav.scss */
a.bc-nav__link--my-catalogue {
  padding-left: 30px;
}

/* line 73, app/assets/stylesheets/catalogue/nav.scss */
a.bc-nav__link:hover,
.bc-nav__link:hover {
  background-color: #f5f6f7;
}

/* line 79, app/assets/stylesheets/catalogue/nav.scss */
a.bc-nav__link.-selected,
.bc-nav__link.-selected {
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 600;
  background-color: #EBECEE;
}

/* line 86, app/assets/stylesheets/catalogue/nav.scss */
a.bc-nav__link svg,
.bc-nav__link svg,
.bc-nav__search svg {
  vertical-align: middle;
  margin-right: .5em;
  transform: translateY(-2px);
}

/* line 93, app/assets/stylesheets/catalogue/nav.scss */
a.bc-nav__link svg:only-child,
.bc-nav__link svg:only-child,
.bc-nav__search svg:only-child {
  margin-right: 0;
}

/* line 99, app/assets/stylesheets/catalogue/nav.scss */
.bc-nav__link--my-catalogue .count {
  margin-left: -.2em;
  margin-right: .5em;
  vertical-align: middle;
}

/* line 105, app/assets/stylesheets/catalogue/nav.scss */
.bc-nav__link--my-catalogue .count[data-count="0"] {
  display: none;
}

/* line 109, app/assets/stylesheets/catalogue/nav.scss */
.bc-nav__search {
  position: relative;
  margin-left: auto;
  height: 50px;
  display: none;
}

@media (min-width: 1000px) {
  /* line 109, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 999px) {
  /* line 123, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__search.is-visible {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 20px;
    background-color: #fff;
    width: 100%;
    height: 100%;
  }
  /* line 134, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__search.is-visible input {
    width: 1px;
    flex: 1 1 auto;
  }
}

@media (min-width: 1000px) {
  /* line 142, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__search::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background-color: #273455;
  }
}

/* line 153, app/assets/stylesheets/catalogue/nav.scss */
.bc-search__label {
  margin: 0;
}

/* line 157, app/assets/stylesheets/catalogue/nav.scss */
.bc-search__label span {
  display: none;
}

/* line 161, app/assets/stylesheets/catalogue/nav.scss */
.bc-search__close {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (min-width: 1000px) {
  /* line 161, app/assets/stylesheets/catalogue/nav.scss */
  .bc-search__close {
    display: none;
  }
}

/* line 175, app/assets/stylesheets/catalogue/nav.scss */
.bc-search__close path {
  fill: #273455;
}

/* line 179, app/assets/stylesheets/catalogue/nav.scss */
.bc-search__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 270px;
  height: 50px;
  color: #273455;
  font-family: "Work Sans";
  font-weight: 500;
}

/* line 2, app/assets/stylesheets/mixins.scss */
.bc-search__input::-webkit-input-placeholder {
  color: #273455;
  font-family: "Work Sans";
  font-weight: 500;
}

/* line 2, app/assets/stylesheets/mixins.scss */
.bc-search__input:-moz-placeholder {
  color: #273455;
  font-family: "Work Sans";
  font-weight: 500;
}

/* line 2, app/assets/stylesheets/mixins.scss */
.bc-search__input::-moz-placeholder {
  color: #273455;
  font-family: "Work Sans";
  font-weight: 500;
}

/* line 2, app/assets/stylesheets/mixins.scss */
.bc-search__input:-ms-input-placeholder {
  color: #273455;
  font-family: "Work Sans";
  font-weight: 500;
}

/* line 193, app/assets/stylesheets/catalogue/nav.scss */
.bc-nav__primary {
  font-size: 0;
  flex-shrink: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 200, app/assets/stylesheets/catalogue/nav.scss */
.bc-nav__search-toggle {
  flex: 0 0 58px;
  width: 58px;
  padding: 0;
  position: relative;
  margin-left: auto;
  border-left: solid 1px #273455;
}

@media (min-width: 1000px) {
  /* line 200, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__search-toggle {
    display: none;
  }
}

@media (max-width: 999px) {
  /* line 213, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__link--my-catalogue {
    border-left: solid 1px #273455;
  }
}

@media (max-width: 768px) {
  /* line 213, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__link--my-catalogue {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff !important;
    background-color: #5867C3 !important;
    border-left: 0;
  }
  /* line 228, app/assets/stylesheets/catalogue/nav.scss */
  .bc-nav__link--my-catalogue path {
    fill: #fff;
  }
}

/* line 23, app/assets/stylesheets/application.scss */
[v-cloak] {
  display: none;
}

/* line 27, app/assets/stylesheets/application.scss */
[debug] {
  font-family: monospace;
  background-color: #ffffe0;
}

/* line 32, app/assets/stylesheets/application.scss */
todo {
  color: #fff;
  background-color: red;
}

/* line 37, app/assets/stylesheets/application.scss */
*:focus {
  outline: none !important;
}

/* line 41, app/assets/stylesheets/application.scss */
body {
  background-color: #fff;
  letter-spacing: -0.02em;
}

/* line 46, app/assets/stylesheets/application.scss */
main {
  color: #3C3D40;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  margin-top: 91px;
}

@media (min-width: 768px) {
  /* line 46, app/assets/stylesheets/application.scss */
  main {
    margin-top: 71px;
  }
}

/* line 58, app/assets/stylesheets/application.scss */
.vex-overlay {
  z-index: 11111;
  background-color: rgba(255, 255, 255, 0.8);
}

/* line 63, app/assets/stylesheets/application.scss */
.vex {
  z-index: 11111;
}

/* line 67, app/assets/stylesheets/application.scss */
.vex-content {
  width: calc(100vw - 30px) !important;
  max-width: 420px !important;
}

/* line 72, app/assets/stylesheets/application.scss */
.vex.vex-theme-plain .vex-content {
  border: solid 1px #5867C3;
}

/* line 76, app/assets/stylesheets/application.scss */
.vex.vex-theme-plain .vex-close {
  top: 20px;
  right: 13px;
}

/* line 81, app/assets/stylesheets/application.scss */
.vex.vex-theme-plain .vex-close:before {
  top: 0;
  right: 0;
  color: #3C3D40;
  width: 45px;
  height: 45px;
  line-height: 44px;
}

/* line 90, app/assets/stylesheets/application.scss */
.vex.vex-theme-plain .vex-close:hover:before,
.vex.vex-theme-plain .vex-close:active:before {
  color: #3C3D40;
  background-color: transparent;
}

/* line 96, app/assets/stylesheets/application.scss */
.vex.vex-theme-plain .vex-content {
  width: 420px;
  padding: 0;
}

/* line 101, app/assets/stylesheets/application.scss */
.vex-header {
  display: block;
  padding: 30px;
  padding-right: 90px;
  font-family: "Work Sans";
  font-size: 28px;
  color: #3C3D40;
  letter-spacing: 0.05px;
}

/* line 111, app/assets/stylesheets/application.scss */
.vex-main {
  padding: 30px 30px 70px;
  background-color: #E1E0E1;
  font-family: "Work Sans";
  font-size: 16px;
  border-top: solid 1px #5867C3;
}

/* line 119, app/assets/stylesheets/application.scss */
.vex-main li + li {
  margin-top: .5em;
}

/* line 123, app/assets/stylesheets/application.scss */
.vex .bc-button {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 131, app/assets/stylesheets/application.scss */
.lazyload,
.lazyloading {
  opacity: 0;
  transition: opacity .2s;
}

/* line 137, app/assets/stylesheets/application.scss */
.lazyloaded {
  opacity: 1;
  transition: opacity .2s;
}

/* line 142, app/assets/stylesheets/application.scss */
.opportunities-and-training a {
  text-transform: none;
  letter-spacing: inherit;
}

/* line 147, app/assets/stylesheets/application.scss */
.list-section {
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

/* line 153, app/assets/stylesheets/application.scss */
.list-section .left .block,
#operations .left .block {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 160, app/assets/stylesheets/application.scss */
.list-section ul {
  padding-top: 35px;
  border-top: 1px solid #5263c6;
  margin-top: 35px;
}

/* line 166, app/assets/stylesheets/application.scss */
.retail-hero {
  background-image: none;
}

/* line 170, app/assets/stylesheets/application.scss */
.parallaxed-image {
  position: relative;
  overflow: hidden;
  padding-top: 45%;
}

/* line 178, app/assets/stylesheets/application.scss */
.parallaxed-image__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 768px) {
  /* line 190, app/assets/stylesheets/application.scss */
  .parallaxed-image {
    height: 150px;
  }
}

/* line 195, app/assets/stylesheets/application.scss */
.carousel {
  position: static;
}

@media (min-width: 768px) {
  /* line 195, app/assets/stylesheets/application.scss */
  .carousel {
    position: absolute;
    padding-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* line 208, app/assets/stylesheets/application.scss */
.slick-list,
.slick-track {
  position: absolute;
  padding-top: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 218, app/assets/stylesheets/application.scss */
.carousel-inner {
  padding-top: 100%;
}

@media (min-width: 768px) {
  /* line 218, app/assets/stylesheets/application.scss */
  .carousel-inner {
    padding-top: 0;
    height: 100%;
  }
}

/* line 227, app/assets/stylesheets/application.scss */
.carousel-inner .item {
  display: block !important;
  margin: 0;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  /* line 227, app/assets/stylesheets/application.scss */
  .carousel-inner .item {
    padding-top: 0;
    height: 100%;
  }
}

/* line 240, app/assets/stylesheets/application.scss */
.slick-slide {
  position: relative;
}

/* line 244, app/assets/stylesheets/application.scss */
.slick-slide div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 252, app/assets/stylesheets/application.scss */
.carousel.carousel--shadowed {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

/* line 256, app/assets/stylesheets/application.scss */
.award-boxes .img-fluid {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 26, app/assets/stylesheets/mixins.scss */
.form-group:before, .form-group:after {
  content: " ";
  display: table;
}

/* line 32, app/assets/stylesheets/mixins.scss */
.form-group:after {
  display: block;
  clear: both;
  height: 1px;
  margin-top: -1px;
  visibility: hidden;
}

/* line 39, app/assets/stylesheets/mixins.scss */
.form-group {
  *zoom: 1;
}

/* line 266, app/assets/stylesheets/application.scss */
.grecaptcha-badge {
  float: left;
}

@media (max-width: 1199px) {
  /* line 266, app/assets/stylesheets/application.scss */
  .grecaptcha-badge {
    margin-bottom: 20px;
  }
}

/* line 274, app/assets/stylesheets/application.scss */
#header .main-menu li a {
  text-transform: uppercase;
  font-size: .8rem;
}

/* line 279, app/assets/stylesheets/application.scss */
.no-top-margin {
  margin-top: 0 !important;
}

/* line 283, app/assets/stylesheets/application.scss */
.nav-link.-selected,
#mobile-menu .menu-wrapper nav a.-selected {
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 600;
}

/* line 289, app/assets/stylesheets/application.scss */
.scene--green-three .image {
  padding-right: 70px;
}

@media (max-width: 767px) {
  /* line 293, app/assets/stylesheets/application.scss */
  .scene--green-three {
    max-height: none;
  }
}

@media (max-width: 991px) {
  /* line 300, app/assets/stylesheets/application.scss */
  .scene--green-three .image {
    padding-right: 25px;
  }
}

/* line 305, app/assets/stylesheets/application.scss */
.working-for-braiform__header {
  position: relative;
  padding: 70px 0;
  background-color: #EBECEE;
  text-align: center;
}

/* line 312, app/assets/stylesheets/application.scss */
.working-for-braiform__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  height: 1px;
  background-color: #5867C3;
}

/* line 322, app/assets/stylesheets/application.scss */
.working-for-braiform__header > * {
  font-size: 3rem !important;
  margin: 0 !important;
  color: #273455;
}

@media (min-width: 992px) {
  /* line 328, app/assets/stylesheets/application.scss */
  .working-for-braiform .row.bottom .block {
    margin-right: 15px;
    flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* line 336, app/assets/stylesheets/application.scss */
#reuse .row.main {
  height: calc(100% - 70px);
  min-height: calc(600px - 70px);
  overflow: hidden;
}

/* line 342, app/assets/stylesheets/application.scss */
#main-footer .footer-mid ul li a {
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: 1.8px;
}

/* line 348, app/assets/stylesheets/application.scss */
#top-bar .dropdown .dropdown-menu a,
#top-bar-appear .dropdown .dropdown-menu a {
  text-transform: uppercase;
  font-size: .8rem;
}

/* line 354, app/assets/stylesheets/application.scss */
#top-bar-appear nav a {
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: 1.8px;
}

/* line 360, app/assets/stylesheets/application.scss */
.team {
  padding-top: 20px;
  background-color: #EBECEE;
}

/* line 365, app/assets/stylesheets/application.scss */
.team__header {
  margin: 0 !important;
  padding: 30px 30px 50px;
  text-align: center;
}

/* line 371, app/assets/stylesheets/application.scss */
.team .row {
  justify-content: center;
}

/* line 375, app/assets/stylesheets/application.scss */
.team__column {
  display: flex;
  width: 100%;
  flex-basis: 100%;
  padding: 0 15px;
}

@media (min-width: 600px) {
  /* line 375, app/assets/stylesheets/application.scss */
  .team__column {
    width: 50%;
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  /* line 375, app/assets/stylesheets/application.scss */
  .team__column {
    width: 25%;
    flex: 0 0 25%;
  }
}

/* line 392, app/assets/stylesheets/application.scss */
.team__inner {
  width: 90%;
  margin: 0 auto;
}

/* line 399, app/assets/stylesheets/application.scss */
.team .col {
  display: flex;
}

/* line 403, app/assets/stylesheets/application.scss */
.team__member {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

/* line 411, app/assets/stylesheets/application.scss */
.team__member .inner {
  display: flex;
  width: 100%;
  perspective: 800px;
}

/* line 417, app/assets/stylesheets/application.scss */
.team__member .front,
.team__member .back {
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  font-size: 0.9rem;
  padding: 30px;
  border-radius: 3px;
  transform-style: preserve-3d;
  transition: transform 1s, z-index 1s;
}

/* line 428, app/assets/stylesheets/application.scss */
.team__member .front {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: solid 1px #5867C3;
  transform: rotateY(0);
  display: flex;
  flex-direction: column;
}

/* line 438, app/assets/stylesheets/application.scss */
.team__member.-flipped .front {
  z-index: 1;
  transform: rotateY(-180deg);
}

/* line 443, app/assets/stylesheets/application.scss */
.team__member .front > * {
  flex: 0 0 auto;
}

/* line 447, app/assets/stylesheets/application.scss */
.team__member .front .more {
  margin-top: auto;
}

/* line 451, app/assets/stylesheets/application.scss */
.team__member .back {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  background: #5263c6;
  color: white;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* line 466, app/assets/stylesheets/application.scss */
.team__member.-flipped .back {
  z-index: 2;
  transform: rotateY(0);
}

/* line 471, app/assets/stylesheets/application.scss */
.team__member .more {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.8rem;
  color: #007bff;
  font-family: "Work Sans";
  font-weight: normal;
  font-style: normal;
  cursor: pointer;
}

/* line 482, app/assets/stylesheets/application.scss */
.team__member .less {
  cursor: pointer;
}

/* line 486, app/assets/stylesheets/application.scss */
.team__member .more:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* line 491, app/assets/stylesheets/application.scss */
.team__member__image {
  position: relative;
  z-index: 2;
  display: block;
  width: 62%;
  height: auto;
  margin: 0 auto 25px;
  border: solid 1px #5867C3;
}

/* line 502, app/assets/stylesheets/application.scss */
.team__member::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-color: #5867C3;
}

/* line 512, app/assets/stylesheets/application.scss */
.team__member__name {
  display: block;
  font-size: 1.4rem;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #283355;
  text-align: center;
}

/* line 522, app/assets/stylesheets/application.scss */
.team__member__position {
  display: block;
  font-size: 1.2rem;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #283355;
  text-align: center;
  margin-bottom: 25px;
}

/* line 533, app/assets/stylesheets/application.scss */
.btn.with-icon .ic.ic-play--white {
  display: inline-block;
  height: 16px;
  vertical-align: middle;
}

/* line 539, app/assets/stylesheets/application.scss */
.btn > span {
  vertical-align: middle;
}

/* line 543, app/assets/stylesheets/application.scss */
[data-fancybox] .ic {
  margin-right: .5em;
}

/* line 547, app/assets/stylesheets/application.scss */
.braiform-video-button {
  margin-top: 30px;
}

/* line 551, app/assets/stylesheets/application.scss */
.scene--home-top {
  background-image: url(/assets/home_bg-960cc12d2fe8296de47e3d0449926ac04ae740dd4e3b2d7b2a752c6e9368b7cc.jpg);
}

/* line 555, app/assets/stylesheets/application.scss */
.scene--catalogue-holding {
  background-color: #5263c6;
  background-size: auto 100%;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 95px) !important;
  min-height: 500px;
  background-image: url(/assets/catalogue_holding_bg-c0b4a0b63603795abcada7195182eddc2df52635a15da87e76ec95478ecf6ebf.jpg);
  color: #fff;
}

/* line 568, app/assets/stylesheets/application.scss */
.scene--catalogue-holding .text {
  max-width: 730px;
  color: white;
  padding-left: 60px;
}

@media (max-width: 1199px) {
  /* line 575, app/assets/stylesheets/application.scss */
  .scene--catalogue-holding .text {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1199px) {
  /* line 582, app/assets/stylesheets/application.scss */
  .scene--catalogue-holding .text h1 {
    font-size: 2.2rem;
  }
}

/* line 587, app/assets/stylesheets/application.scss */
.award-boxes {
  margin-bottom: -30px;
}

/* line 591, app/assets/stylesheets/application.scss */
.award-boxes [class*="col-"] {
  margin-bottom: 30px;
}

/* line 595, app/assets/stylesheets/application.scss */
.client-list {
  padding-top: 45px;
  padding-bottom: 45px;
}

/* line 600, app/assets/stylesheets/application.scss */
.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: transparent;
}

/* line 606, app/assets/stylesheets/application.scss */
#wrapper {
  height: auto;
  overflow-y: visible;
}

/* line 611, app/assets/stylesheets/application.scss */
select::-ms-expand {
  display: none;
}

/* line 615, app/assets/stylesheets/application.scss */
#design-styles .left .block.top {
  padding-top: 30px;
  box-sizing: border-box;
  max-width: 100%;
  padding-right: 20px;
  padding-left: 35px;
}

/* line 623, app/assets/stylesheets/application.scss */
.resources .section-nav {
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}

/* line 629, app/assets/stylesheets/application.scss */
.resources .section-nav li {
  list-style: none;
}

/* line 633, app/assets/stylesheets/application.scss */
.resources .section-nav a {
  display: block;
  padding: 0.5rem 1rem;
  text-transform: none;
  color: #283355;
  letter-spacing: normal;
  padding-left: 0px;
  border-bottom: 1px solid #5263c6;
  text-decoration: none !important;
}

@media (max-width: 989px) {
  /* line 645, app/assets/stylesheets/application.scss */
  .resources .section-nav a:last-child {
    border-bottom: 0;
  }
}

/* line 650, app/assets/stylesheets/application.scss */
.resources .resources--split .main-content img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

/* line 656, app/assets/stylesheets/application.scss */
.resources .resources--split .main-content a {
  text-transform: none;
  letter-spacing: inherit;
}

/* line 661, app/assets/stylesheets/application.scss */
.resources .resources--split .main-content a.file-download {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  font-size: 14px;
  color: #273455;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  padding-left: 30px;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500;
}

/* line 674, app/assets/stylesheets/application.scss */
.file-download > svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  vertical-align: middle;
}

@media (max-width: 991px) {
  /* line 684, app/assets/stylesheets/application.scss */
  .resources .resources--split .side-nav .section-nav {
    display: none;
  }
}

/* line 689, app/assets/stylesheets/application.scss */
.pagination {
  border-top: 1px solid #5366C3;
  text-align: center;
  margin-top: 2em;
  padding-top: 2em;
}

/* line 696, app/assets/stylesheets/application.scss */
.pagination * + * {
  margin-left: .5em;
}

/* line 700, app/assets/stylesheets/application.scss */
#office-details table {
  width: 100%;
}

/* line 704, app/assets/stylesheets/application.scss */
#office-details td {
  vertical-align: top;
}

/* line 708, app/assets/stylesheets/application.scss */
#office-details td:first-child {
  padding-right: .5em;
  width: 1px;
  white-space: nowrap;
}

/* line 714, app/assets/stylesheets/application.scss */
.link-block {
  position: relative;
}

@media (min-width: 500px) {
  /* line 714, app/assets/stylesheets/application.scss */
  .link-block {
    padding-right: 130px;
  }
}

/* line 722, app/assets/stylesheets/application.scss */
.link-block__ctc,
.link-block__pp {
  margin-top: 50px;
  display: inline-block;
  vertical-align: top;
}

@media (min-width: 500px) {
  /* line 722, app/assets/stylesheets/application.scss */
  .link-block__ctc,
.link-block__pp {
    margin-top: 0;
  }
}

/* line 733, app/assets/stylesheets/application.scss */
.link-block__ctc {
  margin-left: 30px;
}

@media (min-width: 500px) {
  /* line 738, app/assets/stylesheets/application.scss */
  .link-block__ctc {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  /* line 745, app/assets/stylesheets/application.scss */
  .link-block__pp {
    position: absolute;
    top: 50%;
    right: 124px;
    transform: translateY(-50%);
  }
}

/* line 753, app/assets/stylesheets/application.scss */
.link-block__pp svg {
  width: 142px;
  height: 80px;
}

/* line 758, app/assets/stylesheets/application.scss */
.scene--home-top .ctcm {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 14px 35px;
  background-color: #5867C3;
  padding-right: 440px;
}

/* line 769, app/assets/stylesheets/application.scss */
.scene--home-top .ctcm::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(0deg, #505FAF, rgba(80, 95, 175, 0));
  mix-blend-mode: darken;
}

/* line 780, app/assets/stylesheets/application.scss */
.scene--home-top .ctcm b {
  font-weight: bold;
}

/* line 784, app/assets/stylesheets/application.scss */
.scene--home-top .ctcm .ctlogo a {
  position: absolute;
  bottom: 14px;
  right: 35px;
}

/* line 790, app/assets/stylesheets/application.scss */
.scene--home-top .ctcm .telogo a {
  position: absolute;
  bottom: 14px;
  right: 120px;
}

/* line 796, app/assets/stylesheets/application.scss */
.scene--home-top .ctcm .gslogo a {
  position: absolute;
  bottom: 14px;
  right: 249px;
}

/* line 802, app/assets/stylesheets/application.scss */
.scene--home-top .ctcm .rclogo a {
  position: absolute;
  bottom: 14px;
  right: 353px;
}

/* line 808, app/assets/stylesheets/application.scss */
.notice {
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 30px;
  font-size: 0.85rem;
  line-height: 31px;
  line-height: 38px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.19);
}

/* line 823, app/assets/stylesheets/application.scss */
.notice p {
  margin: 0;
}

/* line 827, app/assets/stylesheets/application.scss */
.notice b {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #283355;
}

/* line 834, app/assets/stylesheets/application.scss */
.notice a {
  text-transform: none;
  letter-spacing: normal;
}
