@charset "UTF-8";
/*
	SITE - RESPONSIVE
*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,900|Roboto&display=swap");
/* LAYOUT */
/* BREAK POINTS */
/*
	VARIABLES
*/
/* FONTS */
/* vender/werkbot/framewerk/_framewerk_variables.scss - overide these if necessary */
/*
  VERTICAL ALIGN
  requires the parent container to have a set height
*/
/*
  HORIZONTAL ALIGN
*/
/*
  HORIZONTAL VERICAL ALIGN
*/
/*
  FONT SIZE
*/
/* COLORS */
/* line 1, ../../../../vendor/werkbot/framewerk/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 22, ../../../../vendor/werkbot/framewerk/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 26, ../../../../vendor/werkbot/framewerk/_reset.scss */
body {
  line-height: 1;
}

/* line 29, ../../../../vendor/werkbot/framewerk/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 32, ../../../../vendor/werkbot/framewerk/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 35, ../../../../vendor/werkbot/framewerk/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 40, ../../../../vendor/werkbot/framewerk/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
  FLEX BOX
  Flex Container - all flex items should be wrapped with .flex-container
*/
/* line 5, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
}

/* line 15, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-item {
  /* DEPRECIATED - Never used, should be handled by a custom class */
  align-self: flex-start;
}

/* line 18, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-image {
  width: 100%;
  height: auto;
}

/* line 22, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-half {
  /* DEPRECIATED - replaced with breakpoint specific */
  width: 0.5%;
  min-height: 1px;
}

/* line 26, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-iframe {
  width: 100%;
}
/* line 28, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-iframe iframe {
  width: 100%;
}

/* line 32, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-vertical-top {
  align-items: flex-start;
}

/* line 35, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-vertical-center {
  align-items: center;
}

/* line 38, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-vertical-bottom {
  align-items: flex-end;
}

/* line 41, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-vertical-stretch {
  align-items: stretch;
}

/* line 44, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-horizontal-left {
  justify-content: flex-start;
}

/* line 47, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-horizontal-center {
  justify-content: center;
}

/* line 50, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-horizontal-right {
  justify-content: flex-end;
}

/*
  SPACING
  $spacing variable is defined in _framewerk_variables.scss
*/
/* line 58, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space {
  padding: 20px;
}
/* line 60, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.double {
  padding: 40px;
}
/* line 63, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.triple {
  padding: 60px;
}
/* line 66, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.one-forth {
  padding: 5px;
}
/* line 69, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.half {
  padding: 10px;
}
/* line 72, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.three-forths {
  padding: 15px;
}
/* line 75, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.noleft {
  padding-left: 0;
}
/* line 78, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.noright {
  padding-right: 0;
}
/* line 81, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.halfleft {
  padding-left: 10px;
}
/* line 84, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.halfright {
  padding-right: 10px;
}
/* line 87, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.notop {
  padding-top: 0;
}
/* line 90, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.nobottom {
  padding-bottom: 0;
}
/* line 93, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.halftop {
  padding-top: 10px;
}
/* line 96, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.space.halfbottom {
  padding-bottom: 10px;
}

/*
  DEFAULT DESKTOP
  If no breakpoints are defined, these will be the fallback width percentages
*/
/* line 104, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-half {
  width: 0.5%;
  min-height: 1px;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-1 {
  width: 1%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-2 {
  width: 2%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-3 {
  width: 3%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-4 {
  width: 4%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-5 {
  width: 5%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-6 {
  width: 6%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-7 {
  width: 7%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-8 {
  width: 8%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-9 {
  width: 9%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-10 {
  width: 10%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-11 {
  width: 11%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-12 {
  width: 12%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-13 {
  width: 13%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-14 {
  width: 14%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-15 {
  width: 15%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-16 {
  width: 16%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-17 {
  width: 17%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-18 {
  width: 18%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-19 {
  width: 19%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-20 {
  width: 20%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-21 {
  width: 21%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-22 {
  width: 22%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-23 {
  width: 23%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-24 {
  width: 24%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-25 {
  width: 25%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-26 {
  width: 26%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-27 {
  width: 27%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-28 {
  width: 28%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-29 {
  width: 29%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-30 {
  width: 30%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-31 {
  width: 31%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-32 {
  width: 32%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-33 {
  width: 33%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-34 {
  width: 34%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-35 {
  width: 35%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-36 {
  width: 36%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-37 {
  width: 37%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-38 {
  width: 38%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-39 {
  width: 39%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-40 {
  width: 40%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-41 {
  width: 41%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-42 {
  width: 42%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-43 {
  width: 43%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-44 {
  width: 44%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-45 {
  width: 45%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-46 {
  width: 46%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-47 {
  width: 47%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-48 {
  width: 48%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-49 {
  width: 49%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-50 {
  width: 50%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-51 {
  width: 51%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-52 {
  width: 52%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-53 {
  width: 53%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-54 {
  width: 54%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-55 {
  width: 55%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-56 {
  width: 56%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-57 {
  width: 57%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-58 {
  width: 58%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-59 {
  width: 59%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-60 {
  width: 60%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-61 {
  width: 61%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-62 {
  width: 62%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-63 {
  width: 63%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-64 {
  width: 64%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-65 {
  width: 65%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-66 {
  width: 66%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-67 {
  width: 67%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-68 {
  width: 68%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-69 {
  width: 69%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-70 {
  width: 70%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-71 {
  width: 71%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-72 {
  width: 72%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-73 {
  width: 73%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-74 {
  width: 74%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-75 {
  width: 75%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-76 {
  width: 76%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-77 {
  width: 77%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-78 {
  width: 78%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-79 {
  width: 79%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-80 {
  width: 80%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-81 {
  width: 81%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-82 {
  width: 82%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-83 {
  width: 83%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-84 {
  width: 84%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-85 {
  width: 85%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-86 {
  width: 86%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-87 {
  width: 87%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-88 {
  width: 88%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-89 {
  width: 89%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-90 {
  width: 90%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-91 {
  width: 91%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-92 {
  width: 92%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-93 {
  width: 93%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-94 {
  width: 94%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-95 {
  width: 95%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-96 {
  width: 96%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-97 {
  width: 97%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-98 {
  width: 98%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-99 {
  width: 99%;
}

/* line 109, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-100 {
  width: 100%;
}

/* line 113, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-hide {
  display: none;
}

/* line 116, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-auto {
  width: auto;
}

/* line 119, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.desktop-show {
  display: inherit;
}

/* line 123, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-container.desktop-ltr {
  flex-direction: row;
}
/* line 126, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-container.desktop-rtl {
  flex-direction: row-reverse;
}
/* line 129, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-container.desktop-ttb {
  flex-direction: column;
}
/* line 132, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
.flex-container.desktop-btt {
  flex-direction: column-reverse;
}

/*
  DESKTOP BREAKPOINTS
  Loop through each desktop defined breakpoint
*/
@media screen and (min-width: 1366px) {
  /* line 142, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-half {
    width: 0.5%;
    min-height: 1px;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-1 {
    width: 1%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-2 {
    width: 2%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-3 {
    width: 3%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-4 {
    width: 4%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-5 {
    width: 5%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-6 {
    width: 6%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-7 {
    width: 7%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-8 {
    width: 8%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-9 {
    width: 9%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-10 {
    width: 10%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-11 {
    width: 11%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-12 {
    width: 12%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-13 {
    width: 13%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-14 {
    width: 14%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-15 {
    width: 15%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-16 {
    width: 16%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-17 {
    width: 17%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-18 {
    width: 18%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-19 {
    width: 19%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-20 {
    width: 20%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-21 {
    width: 21%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-22 {
    width: 22%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-23 {
    width: 23%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-24 {
    width: 24%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-25 {
    width: 25%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-26 {
    width: 26%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-27 {
    width: 27%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-28 {
    width: 28%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-29 {
    width: 29%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-30 {
    width: 30%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-31 {
    width: 31%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-32 {
    width: 32%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-33 {
    width: 33%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-34 {
    width: 34%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-35 {
    width: 35%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-36 {
    width: 36%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-37 {
    width: 37%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-38 {
    width: 38%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-39 {
    width: 39%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-40 {
    width: 40%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-41 {
    width: 41%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-42 {
    width: 42%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-43 {
    width: 43%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-44 {
    width: 44%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-45 {
    width: 45%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-46 {
    width: 46%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-47 {
    width: 47%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-48 {
    width: 48%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-49 {
    width: 49%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-50 {
    width: 50%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-51 {
    width: 51%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-52 {
    width: 52%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-53 {
    width: 53%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-54 {
    width: 54%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-55 {
    width: 55%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-56 {
    width: 56%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-57 {
    width: 57%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-58 {
    width: 58%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-59 {
    width: 59%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-60 {
    width: 60%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-61 {
    width: 61%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-62 {
    width: 62%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-63 {
    width: 63%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-64 {
    width: 64%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-65 {
    width: 65%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-66 {
    width: 66%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-67 {
    width: 67%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-68 {
    width: 68%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-69 {
    width: 69%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-70 {
    width: 70%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-71 {
    width: 71%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-72 {
    width: 72%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-73 {
    width: 73%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-74 {
    width: 74%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-75 {
    width: 75%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-76 {
    width: 76%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-77 {
    width: 77%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-78 {
    width: 78%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-79 {
    width: 79%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-80 {
    width: 80%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-81 {
    width: 81%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-82 {
    width: 82%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-83 {
    width: 83%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-84 {
    width: 84%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-85 {
    width: 85%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-86 {
    width: 86%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-87 {
    width: 87%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-88 {
    width: 88%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-89 {
    width: 89%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-90 {
    width: 90%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-91 {
    width: 91%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-92 {
    width: 92%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-93 {
    width: 93%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-94 {
    width: 94%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-95 {
    width: 95%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-96 {
    width: 96%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-97 {
    width: 97%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-98 {
    width: 98%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-99 {
    width: 99%;
  }

  /* line 147, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-100 {
    width: 100%;
  }

  /* line 151, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-auto {
    width: auto;
  }

  /* line 154, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-hide {
    display: none;
  }

  /* line 157, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .desktop-show {
    display: inherit;
  }

  /* Flex Container Direction */
  /* line 162, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .flex-container.desktop-ltr {
    flex-direction: row;
  }
  /* line 165, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .flex-container.desktop-rtl {
    flex-direction: row-reverse;
  }
  /* line 168, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .flex-container.desktop-ttb {
    flex-direction: column;
  }
  /* line 171, ../../../../vendor/werkbot/framewerk/_framewerk.scss */
  .flex-container.desktop-btt {
    flex-direction: column-reverse;
  }
}
/*
  RESPONSIVE BREAKPOINTS
  Simply out puts classes with a width set from 1-100 for each breakpoint defined.
*/
@media handheld, only screen and (max-width: 1366px) {
  /* line 7, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-half {
    width: 0.5%;
    min-height: 1px;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-1 {
    width: 1%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-2 {
    width: 2%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-3 {
    width: 3%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-4 {
    width: 4%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-5 {
    width: 5%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-6 {
    width: 6%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-7 {
    width: 7%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-8 {
    width: 8%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-9 {
    width: 9%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-10 {
    width: 10%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-11 {
    width: 11%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-12 {
    width: 12%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-13 {
    width: 13%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-14 {
    width: 14%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-15 {
    width: 15%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-16 {
    width: 16%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-17 {
    width: 17%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-18 {
    width: 18%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-19 {
    width: 19%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-20 {
    width: 20%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-21 {
    width: 21%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-22 {
    width: 22%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-23 {
    width: 23%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-24 {
    width: 24%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-25 {
    width: 25%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-26 {
    width: 26%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-27 {
    width: 27%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-28 {
    width: 28%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-29 {
    width: 29%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-30 {
    width: 30%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-31 {
    width: 31%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-32 {
    width: 32%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-33 {
    width: 33%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-34 {
    width: 34%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-35 {
    width: 35%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-36 {
    width: 36%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-37 {
    width: 37%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-38 {
    width: 38%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-39 {
    width: 39%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-40 {
    width: 40%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-41 {
    width: 41%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-42 {
    width: 42%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-43 {
    width: 43%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-44 {
    width: 44%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-45 {
    width: 45%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-46 {
    width: 46%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-47 {
    width: 47%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-48 {
    width: 48%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-49 {
    width: 49%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-50 {
    width: 50%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-51 {
    width: 51%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-52 {
    width: 52%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-53 {
    width: 53%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-54 {
    width: 54%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-55 {
    width: 55%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-56 {
    width: 56%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-57 {
    width: 57%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-58 {
    width: 58%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-59 {
    width: 59%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-60 {
    width: 60%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-61 {
    width: 61%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-62 {
    width: 62%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-63 {
    width: 63%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-64 {
    width: 64%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-65 {
    width: 65%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-66 {
    width: 66%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-67 {
    width: 67%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-68 {
    width: 68%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-69 {
    width: 69%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-70 {
    width: 70%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-71 {
    width: 71%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-72 {
    width: 72%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-73 {
    width: 73%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-74 {
    width: 74%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-75 {
    width: 75%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-76 {
    width: 76%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-77 {
    width: 77%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-78 {
    width: 78%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-79 {
    width: 79%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-80 {
    width: 80%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-81 {
    width: 81%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-82 {
    width: 82%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-83 {
    width: 83%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-84 {
    width: 84%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-85 {
    width: 85%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-86 {
    width: 86%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-87 {
    width: 87%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-88 {
    width: 88%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-89 {
    width: 89%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-90 {
    width: 90%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-91 {
    width: 91%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-92 {
    width: 92%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-93 {
    width: 93%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-94 {
    width: 94%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-95 {
    width: 95%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-96 {
    width: 96%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-97 {
    width: 97%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-98 {
    width: 98%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-99 {
    width: 99%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-100 {
    width: 100%;
  }

  /* line 16, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-auto {
    width: auto;
  }

  /* line 19, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-hide {
    display: none;
  }

  /* line 22, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .desktopsmall-show {
    display: inherit;
  }

  /* Flex Container Direction */
  /* line 27, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.desktopsmall-ltr {
    flex-direction: row;
  }
  /* line 30, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.desktopsmall-rtl {
    flex-direction: row-reverse;
  }
  /* line 33, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.desktopsmall-ttb {
    flex-direction: column;
  }
  /* line 36, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.desktopsmall-btt {
    flex-direction: column-reverse;
  }

  /* SPACING RESET */
  /* line 42, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .space.desktopsmall-space-reset {
    padding: 20px;
  }
}
@media handheld, only screen and (max-width: 1024px) {
  /* line 7, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-half {
    width: 0.5%;
    min-height: 1px;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-1 {
    width: 1%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-2 {
    width: 2%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-3 {
    width: 3%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-4 {
    width: 4%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-5 {
    width: 5%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-6 {
    width: 6%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-7 {
    width: 7%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-8 {
    width: 8%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-9 {
    width: 9%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-10 {
    width: 10%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-11 {
    width: 11%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-12 {
    width: 12%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-13 {
    width: 13%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-14 {
    width: 14%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-15 {
    width: 15%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-16 {
    width: 16%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-17 {
    width: 17%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-18 {
    width: 18%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-19 {
    width: 19%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-20 {
    width: 20%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-21 {
    width: 21%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-22 {
    width: 22%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-23 {
    width: 23%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-24 {
    width: 24%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-25 {
    width: 25%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-26 {
    width: 26%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-27 {
    width: 27%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-28 {
    width: 28%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-29 {
    width: 29%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-30 {
    width: 30%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-31 {
    width: 31%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-32 {
    width: 32%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-33 {
    width: 33%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-34 {
    width: 34%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-35 {
    width: 35%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-36 {
    width: 36%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-37 {
    width: 37%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-38 {
    width: 38%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-39 {
    width: 39%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-40 {
    width: 40%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-41 {
    width: 41%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-42 {
    width: 42%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-43 {
    width: 43%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-44 {
    width: 44%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-45 {
    width: 45%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-46 {
    width: 46%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-47 {
    width: 47%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-48 {
    width: 48%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-49 {
    width: 49%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-50 {
    width: 50%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-51 {
    width: 51%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-52 {
    width: 52%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-53 {
    width: 53%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-54 {
    width: 54%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-55 {
    width: 55%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-56 {
    width: 56%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-57 {
    width: 57%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-58 {
    width: 58%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-59 {
    width: 59%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-60 {
    width: 60%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-61 {
    width: 61%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-62 {
    width: 62%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-63 {
    width: 63%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-64 {
    width: 64%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-65 {
    width: 65%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-66 {
    width: 66%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-67 {
    width: 67%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-68 {
    width: 68%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-69 {
    width: 69%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-70 {
    width: 70%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-71 {
    width: 71%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-72 {
    width: 72%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-73 {
    width: 73%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-74 {
    width: 74%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-75 {
    width: 75%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-76 {
    width: 76%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-77 {
    width: 77%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-78 {
    width: 78%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-79 {
    width: 79%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-80 {
    width: 80%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-81 {
    width: 81%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-82 {
    width: 82%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-83 {
    width: 83%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-84 {
    width: 84%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-85 {
    width: 85%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-86 {
    width: 86%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-87 {
    width: 87%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-88 {
    width: 88%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-89 {
    width: 89%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-90 {
    width: 90%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-91 {
    width: 91%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-92 {
    width: 92%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-93 {
    width: 93%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-94 {
    width: 94%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-95 {
    width: 95%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-96 {
    width: 96%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-97 {
    width: 97%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-98 {
    width: 98%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-99 {
    width: 99%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-100 {
    width: 100%;
  }

  /* line 16, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-auto {
    width: auto;
  }

  /* line 19, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-hide {
    display: none;
  }

  /* line 22, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .tablet-show {
    display: inherit;
  }

  /* Flex Container Direction */
  /* line 27, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.tablet-ltr {
    flex-direction: row;
  }
  /* line 30, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.tablet-rtl {
    flex-direction: row-reverse;
  }
  /* line 33, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.tablet-ttb {
    flex-direction: column;
  }
  /* line 36, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.tablet-btt {
    flex-direction: column-reverse;
  }

  /* SPACING RESET */
  /* line 42, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .space.tablet-space-reset {
    padding: 20px;
  }
}
@media handheld, only screen and (max-width: 600px) {
  /* line 7, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-half {
    width: 0.5%;
    min-height: 1px;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-1 {
    width: 1%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-2 {
    width: 2%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-3 {
    width: 3%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-4 {
    width: 4%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-5 {
    width: 5%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-6 {
    width: 6%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-7 {
    width: 7%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-8 {
    width: 8%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-9 {
    width: 9%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-10 {
    width: 10%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-11 {
    width: 11%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-12 {
    width: 12%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-13 {
    width: 13%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-14 {
    width: 14%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-15 {
    width: 15%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-16 {
    width: 16%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-17 {
    width: 17%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-18 {
    width: 18%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-19 {
    width: 19%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-20 {
    width: 20%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-21 {
    width: 21%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-22 {
    width: 22%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-23 {
    width: 23%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-24 {
    width: 24%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-25 {
    width: 25%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-26 {
    width: 26%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-27 {
    width: 27%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-28 {
    width: 28%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-29 {
    width: 29%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-30 {
    width: 30%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-31 {
    width: 31%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-32 {
    width: 32%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-33 {
    width: 33%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-34 {
    width: 34%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-35 {
    width: 35%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-36 {
    width: 36%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-37 {
    width: 37%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-38 {
    width: 38%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-39 {
    width: 39%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-40 {
    width: 40%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-41 {
    width: 41%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-42 {
    width: 42%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-43 {
    width: 43%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-44 {
    width: 44%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-45 {
    width: 45%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-46 {
    width: 46%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-47 {
    width: 47%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-48 {
    width: 48%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-49 {
    width: 49%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-50 {
    width: 50%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-51 {
    width: 51%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-52 {
    width: 52%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-53 {
    width: 53%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-54 {
    width: 54%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-55 {
    width: 55%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-56 {
    width: 56%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-57 {
    width: 57%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-58 {
    width: 58%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-59 {
    width: 59%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-60 {
    width: 60%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-61 {
    width: 61%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-62 {
    width: 62%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-63 {
    width: 63%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-64 {
    width: 64%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-65 {
    width: 65%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-66 {
    width: 66%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-67 {
    width: 67%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-68 {
    width: 68%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-69 {
    width: 69%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-70 {
    width: 70%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-71 {
    width: 71%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-72 {
    width: 72%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-73 {
    width: 73%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-74 {
    width: 74%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-75 {
    width: 75%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-76 {
    width: 76%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-77 {
    width: 77%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-78 {
    width: 78%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-79 {
    width: 79%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-80 {
    width: 80%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-81 {
    width: 81%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-82 {
    width: 82%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-83 {
    width: 83%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-84 {
    width: 84%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-85 {
    width: 85%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-86 {
    width: 86%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-87 {
    width: 87%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-88 {
    width: 88%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-89 {
    width: 89%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-90 {
    width: 90%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-91 {
    width: 91%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-92 {
    width: 92%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-93 {
    width: 93%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-94 {
    width: 94%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-95 {
    width: 95%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-96 {
    width: 96%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-97 {
    width: 97%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-98 {
    width: 98%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-99 {
    width: 99%;
  }

  /* line 12, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-100 {
    width: 100%;
  }

  /* line 16, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-auto {
    width: auto;
  }

  /* line 19, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-hide {
    display: none;
  }

  /* line 22, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .phone-show {
    display: inherit;
  }

  /* Flex Container Direction */
  /* line 27, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.phone-ltr {
    flex-direction: row;
  }
  /* line 30, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.phone-rtl {
    flex-direction: row-reverse;
  }
  /* line 33, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.phone-ttb {
    flex-direction: column;
  }
  /* line 36, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .flex-container.phone-btt {
    flex-direction: column-reverse;
  }

  /* SPACING RESET */
  /* line 42, ../../../../vendor/werkbot/framewerk/_framewerk-responsive.scss */
  .space.phone-space-reset {
    padding: 20px;
  }
}
/* Elements */
/* line 1, ../../../../source/sass/elements/body/_body.scss */
body {
  background: #080808;
}

/* line 1, ../../../../source/sass/elements/embed/_embed.scss */
div.embed {
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}
/* line 5, ../../../../source/sass/elements/embed/_embed.scss */
div.embed.left {
  float: left;
  padding-right: 20px;
  padding-bottom: 20px;
}
/* line 10, ../../../../source/sass/elements/embed/_embed.scss */
div.embed.right {
  float: right;
  padding-left: 20px;
  padding-bottom: 20px;
}
/* line 15, ../../../../source/sass/elements/embed/_embed.scss */
div.embed.center {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
/* line 21, ../../../../source/sass/elements/embed/_embed.scss */
div.embed.leftAlone {
  display: block;
  text-align: left;
  padding: 20px 0;
  width: 100% !important;
}
/* line 27, ../../../../source/sass/elements/embed/_embed.scss */
div.embed.rightAlone {
  display: block;
  text-align: right;
  padding: 20px 0;
  width: 100% !important;
}

@media handheld, only screen and (max-width: 1024px) {
  /* line 35, ../../../../source/sass/elements/embed/_embed.scss */
  div.embed {
    position: relative;
    overflow: hidden;
    width: auto !important;
    float: none;
  }
  /* line 40, ../../../../source/sass/elements/embed/_embed.scss */
  div.embed.leftAlone, div.embed.rightAlone, div.embed.left, div.embed.right {
    float: none;
    padding: 56.25% 0 0 0;
  }
  /* line 47, ../../../../source/sass/elements/embed/_embed.scss */
  div.embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}
/* line 1, ../../../../source/sass/elements/hr/_hr.scss */
hr {
  width: 100%;
  color: #ff7800;
}

/*
  Image
  Generic image classes
  These classes are set from silverstripe html editor
*/
/* line 7, ../../../../source/sass/elements/image/_image.scss */
img.left {
  float: left;
  padding-right: 20px;
  padding-bottom: 20px;
  max-width: 100%;
  height: auto;
}
/* line 14, ../../../../source/sass/elements/image/_image.scss */
img.right {
  float: right;
  padding-left: 20px;
  padding-bottom: 20px;
  max-width: 100%;
  height: auto;
}
/* line 21, ../../../../source/sass/elements/image/_image.scss */
img.center {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  max-width: 100%;
  height: auto;
}
/* line 29, ../../../../source/sass/elements/image/_image.scss */
img.leftAlone {
  display: block;
  text-align: left;
  padding: 20px 0;
  max-width: 100%;
  height: auto;
}

@media handheld, only screen and (max-width: 1024px) {
  /* line 38, ../../../../source/sass/elements/image/_image.scss */
  img.left, img.right, img.center, img.leftAlone {
    max-width: 100%;
    height: auto;
  }
}
@media handheld, only screen and (max-width: 600px) {
  /* line 49, ../../../../source/sass/elements/image/_image.scss */
  img.left, img.right, img.center, img.leftAlone {
    width: 100%;
    height: auto;
  }
}
/*
  Link
  Default link styles
*/
/* line 5, ../../../../source/sass/elements/link/_link.scss */
a {
  color: #ff7800;
  text-decoration: underline;
}
/* line 8, ../../../../source/sass/elements/link/_link.scss */
a:link {
  color: #ff7800;
}
/* line 11, ../../../../source/sass/elements/link/_link.scss */
a:visited {
  color: #ff7800;
}
/* line 14, ../../../../source/sass/elements/link/_link.scss */
a:hover {
  text-decoration: none;
}
/* line 17, ../../../../source/sass/elements/link/_link.scss */
a:active {
  color: #ff7800;
}
/* line 20, ../../../../source/sass/elements/link/_link.scss */
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

/* line 1, ../../../../source/sass/elements/table/_table.scss */
table {
  width: 100%;
}
/* line 3, ../../../../source/sass/elements/table/_table.scss */
table th,
table td {
  padding: 10px;
}
/* line 7, ../../../../source/sass/elements/table/_table.scss */
table thead {
  position: sticky;
  top: 0;
}
/* line 10, ../../../../source/sass/elements/table/_table.scss */
table thead tr {
  background: #ffffff;
  table-layout: fixed;
  width: 100%;
}
/* line 15, ../../../../source/sass/elements/table/_table.scss */
table thead th {
  font-family: "Roboto";
  font-weight: 700;
  text-align: left;
  color: #080808;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1em;
}
/* line 26, ../../../../source/sass/elements/table/_table.scss */
table tbody {
  table-layout: fixed;
}
/* line 29, ../../../../source/sass/elements/table/_table.scss */
table tbody tr:nth-child(odd) {
  background: #f3f3f5;
  border-radius: 3px;
  color: #080808;
}
/* line 35, ../../../../source/sass/elements/table/_table.scss */
table tbody td {
  padding: 10px 15px;
  font-family: "Roboto";
  color: #080808;
  vertical-align: middle;
}
/* line 42, ../../../../source/sass/elements/table/_table.scss */
table tfoot {
  font-size: 0.8em;
  line-height: 1em;
}
/* line 45, ../../../../source/sass/elements/table/_table.scss */
table tfoot td {
  font-family: "Roboto";
}

@media handheld, only screen and (max-width: 600px) {
  /* line 53, ../../../../source/sass/elements/table/_table.scss */
  table {
    font-size: 0.8em;
  }
  /* line 55, ../../../../source/sass/elements/table/_table.scss */
  table th,
  table td {
    padding: 5px;
  }
}
/*
	TYPOGRAPHY
	Define all basic html tags. These can be overridden in but this should be the base.
*/
/* line 5, ../../../../source/sass/elements/typography/_typography.scss */
body {
  font: 400 1rem/1rem "Roboto";
}

/* H1 */
/* line 14, ../../../../source/sass/elements/typography/_typography.scss */
h1 {
  color: #080808;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 7.75em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  /* line 14, ../../../../source/sass/elements/typography/_typography.scss */
  h1 {
    font-size: 2.5em;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  /* line 14, ../../../../source/sass/elements/typography/_typography.scss */
  h1 {
    font-size: 2.5em;
    line-height: 1;
  }
}

/* H2 */
/* line 26, ../../../../source/sass/elements/typography/_typography.scss */
h2 {
  color: #080808;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 2em;
  line-height: 1.25;
}
@media screen and (max-width: 1024px) {
  /* line 26, ../../../../source/sass/elements/typography/_typography.scss */
  h2 {
    font-size: 2em;
    line-height: 1.25;
  }
}
@media screen and (max-width: 600px) {
  /* line 26, ../../../../source/sass/elements/typography/_typography.scss */
  h2 {
    font-size: 2em;
    line-height: 1.25;
  }
}

/* H3 */
/* line 38, ../../../../source/sass/elements/typography/_typography.scss */
h3 {
  color: #080808;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 1.5em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  /* line 38, ../../../../source/sass/elements/typography/_typography.scss */
  h3 {
    font-size: 1.5em;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  /* line 38, ../../../../source/sass/elements/typography/_typography.scss */
  h3 {
    font-size: 1.5em;
    line-height: 1;
  }
}

/* H4 */
/* line 50, ../../../../source/sass/elements/typography/_typography.scss */
h4 {
  color: #080808;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  /* line 50, ../../../../source/sass/elements/typography/_typography.scss */
  h4 {
    font-size: 1.5em;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  /* line 50, ../../../../source/sass/elements/typography/_typography.scss */
  h4 {
    font-size: 1.5em;
    line-height: 1;
  }
}

/* H5 */
/* line 62, ../../../../source/sass/elements/typography/_typography.scss */
h5 {
  color: #080808;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 1.313em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  /* line 62, ../../../../source/sass/elements/typography/_typography.scss */
  h5 {
    font-size: 1.313em;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  /* line 62, ../../../../source/sass/elements/typography/_typography.scss */
  h5 {
    font-size: 1.313em;
    line-height: 1;
  }
}

/* H6 */
/* line 74, ../../../../source/sass/elements/typography/_typography.scss */
h6 {
  color: #080808;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  /* line 74, ../../../../source/sass/elements/typography/_typography.scss */
  h6 {
    font-size: 1.125em;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  /* line 74, ../../../../source/sass/elements/typography/_typography.scss */
  h6 {
    font-size: 1.125em;
    line-height: 1;
  }
}

/* P */
/* line 86, ../../../../source/sass/elements/typography/_typography.scss */
p {
  color: #555555;
  font-family: "Roboto";
  font-size: 1.125em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  /* line 86, ../../../../source/sass/elements/typography/_typography.scss */
  p {
    font-size: 1.125em;
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  /* line 86, ../../../../source/sass/elements/typography/_typography.scss */
  p {
    font-size: 1.125em;
    line-height: 1.4;
  }
}

/* UL, OL */
/* line 92, ../../../../source/sass/elements/typography/_typography.scss */
ul, ol {
  color: #555555;
  font-family: "Roboto";
  font-size: 1.125em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  /* line 92, ../../../../source/sass/elements/typography/_typography.scss */
  ul, ol {
    font-size: 1.125em;
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  /* line 92, ../../../../source/sass/elements/typography/_typography.scss */
  ul, ol {
    font-size: 1.125em;
    line-height: 1.4;
  }
}

/* line 97, ../../../../source/sass/elements/typography/_typography.scss */
ul {
  list-style: disc outside;
}

/* line 100, ../../../../source/sass/elements/typography/_typography.scss */
ol {
  list-style: decimal outside;
}

/* Form */
/* line 104, ../../../../source/sass/elements/typography/_typography.scss */
input,
select,
textarea {
  color: #080808;
  font-family: "Roboto";
  font-size: 1.125em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  /* line 104, ../../../../source/sass/elements/typography/_typography.scss */
  input,
  select,
  textarea {
    font-size: 1.125em;
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  /* line 104, ../../../../source/sass/elements/typography/_typography.scss */
  input,
  select,
  textarea {
    font-size: 1.125em;
    line-height: 1.4;
  }
}

/**/
/* line 112, ../../../../source/sass/elements/typography/_typography.scss */
strong, b {
  font-weight: 700;
}

/* line 115, ../../../../source/sass/elements/typography/_typography.scss */
em, i {
  font-style: italic;
}

/* line 118, ../../../../source/sass/elements/typography/_typography.scss */
.centered-text {
  text-align: center;
}

/* Components */
/*
  BUTTON
  Generic button class can be used as a class on an element or as a mixin in scss.
*/
/* line 49, ../../../../source/sass/components/button/_button.scss */
a.button {
  background-color: #ff7800;
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 20px 40px;
  margin: 5px 0;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.25s ease-out;
  -moz-transition: background-color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}
/* line 20, ../../../../source/sass/components/button/_button.scss */
a.button:link, a.button:visited, a.button:hover, a.button:active {
  color: #ffffff;
}
/* line 26, ../../../../source/sass/components/button/_button.scss */
a.button:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 30, ../../../../source/sass/components/button/_button.scss */
a.button.minor {
  padding: 10px 40px;
  color: #080808;
  background: #f1f1f1;
}
/* line 34, ../../../../source/sass/components/button/_button.scss */
a.button.minor:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 39, ../../../../source/sass/components/button/_button.scss */
a.button.square {
  border-radius: 0px;
  color: #080808;
  text-transform: none;
}
/* line 43, ../../../../source/sass/components/button/_button.scss */
a.button.square:hover {
  background-color: #080808;
  color: #ffffff;
}

/* line 52, ../../../../source/sass/components/button/_button.scss */
span.button {
  background-color: #ff7800;
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 20px 40px;
  margin: 5px 0;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.25s ease-out;
  -moz-transition: background-color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}
/* line 20, ../../../../source/sass/components/button/_button.scss */
span.button:link, span.button:visited, span.button:hover, span.button:active {
  color: #ffffff;
}
/* line 26, ../../../../source/sass/components/button/_button.scss */
span.button:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 30, ../../../../source/sass/components/button/_button.scss */
span.button.minor {
  padding: 10px 40px;
  color: #080808;
  background: #f1f1f1;
}
/* line 34, ../../../../source/sass/components/button/_button.scss */
span.button.minor:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 39, ../../../../source/sass/components/button/_button.scss */
span.button.square {
  border-radius: 0px;
  color: #080808;
  text-transform: none;
}
/* line 43, ../../../../source/sass/components/button/_button.scss */
span.button.square:hover {
  background-color: #080808;
  color: #ffffff;
}

/*
  CONTAINER
  Site wide generic container class. Will center all content within it's max-width
*/
/* line 5, ../../../../source/sass/components/container/_container.scss */
.container {
  max-width: 1366px;
  margin: 0 auto;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/* line 3, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
/* line 21, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger:hover {
  opacity: 0.7;
}
/* line 31, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger.is-active:hover {
  opacity: 0.7;
}
/* line 40, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ffffff;
}

/* line 48, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

/* line 55, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
/* line 60, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
/* line 73, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
/* line 79, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger-inner::before {
  top: -10px;
}
/* line 83, ../../../../source/sass/components/hamburgers/_base.scss */
.hamburger-inner::after {
  bottom: -10px;
}

/*@import "types/3dx";
@import "types/3dx-r";
@import "types/3dy";
@import "types/3dy-r";
@import "types/3dxy";
@import "types/3dxy-r";
@import "types/arrow";
@import "types/arrow-r";
@import "types/arrowalt";
@import "types/arrowalt-r";
@import "types/arrowturn";
@import "types/arrowturn-r";
@import "types/boring";
@import "types/collapse";
@import "types/collapse-r";
@import "types/elastic";
@import "types/elastic-r";
@import "types/emphatic";
@import "types/emphatic-r";
@import "types/minus";*/
/*
 * Slider
 */
/* line 6, ../../../../source/sass/components/hamburgers/types/_slider.scss */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
/* line 9, ../../../../source/sass/components/hamburgers/types/_slider.scss */
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
/* line 16, ../../../../source/sass/components/hamburgers/types/_slider.scss */
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
/* line 22, ../../../../source/sass/components/hamburgers/types/_slider.scss */
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
/* line 27, ../../../../source/sass/components/hamburgers/types/_slider.scss */
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
/* line 32, ../../../../source/sass/components/hamburgers/types/_slider.scss */
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*@import "types/slider-r";
@import "types/spin";
@import "types/spin-r";
@import "types/spring";
@import "types/spring-r";
@import "types/stand";
@import "types/stand-r";
@import "types/squeeze";
@import "types/vortex";
@import "types/vortex-r";*/
/* Notifications */
/* line 1, ../../../../source/sass/components/notification/_notification.scss */
.notification {
  position: relative;
  z-index: 2;
  background: #9A1717;
}
/* line 5, ../../../../source/sass/components/notification/_notification.scss */
.notification .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  text-align: center;
  align-items: center;
}
/* line 12, ../../../../source/sass/components/notification/_notification.scss */
.notification h1, .notification h2, .notification h3, .notification h4, .notification h5, .notification h6, .notification p {
  color: #ffffff;
}
/* line 15, ../../../../source/sass/components/notification/_notification.scss */
.notification a {
  color: inherit;
}
/* line 18, ../../../../source/sass/components/notification/_notification.scss */
.notification i {
  font-family: 'Font Awesome 6 Pro';
}

/* line 22, ../../../../source/sass/components/notification/_notification.scss */
.notifcation-content {
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}

/* line 27, ../../../../source/sass/components/notification/_notification.scss */
.notifcation-close {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #ffffff;
}

/* Header */
@keyframes rotateWord {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  2% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  22% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* line 29, ../../../../source/sass/components/header/_header.scss */
.skiptocontent a {
  padding: 10px;
  position: absolute;
  top: -40px;
  left: 0px;
  color: #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-bottom-right-radius: 8px;
  background-color: #ff7800;
  -webkit-transition: top .5s ease-out;
  transition: top .5s ease-out;
  z-index: 100;
}
/* line 42, ../../../../source/sass/components/header/_header.scss */
.skiptocontent a:focus {
  top: 0;
}

/* line 47, ../../../../source/sass/components/header/_header.scss */
.header {
  position: relative;
  z-index: 2;
}
/* line 50, ../../../../source/sass/components/header/_header.scss */
.header .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
/* line 56, ../../../../source/sass/components/header/_header.scss */
.header .header-bottom {
  position: absolute;
  width: 100%;
}
/* line 59, ../../../../source/sass/components/header/_header.scss */
.header .header-bottom:before {
  content: " ";
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: absolute;
  bottom: 0px;
  height: 100%;
  z-index: -1;
}
/* line 68, ../../../../source/sass/components/header/_header.scss */
.header .header-bottom:after {
  content: " ";
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  width: 100%;
  position: absolute;
  bottom: -1px;
  height: 100%;
  z-index: -1;
}

/* line 80, ../../../../source/sass/components/header/_header.scss */
.header-logo a {
  display: flex;
  padding: 10px;
  justify-content: flex-start;
  flex-flow: row wrap;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
}
/* line 89, ../../../../source/sass/components/header/_header.scss */
.header-logo img {
  max-width: 250px;
  height: auto;
}
/* line 93, ../../../../source/sass/components/header/_header.scss */
.header-logo .logo-subtitles {
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  left: 60px;
  top: 52px;
  font-weight: 700;
  font-size: .9rem;
}
/* line 101, ../../../../source/sass/components/header/_header.scss */
.header-logo .logo-subtitles .rotate-words {
  display: inline;
  position: relative;
}
/* line 104, ../../../../source/sass/components/header/_header.scss */
.header-logo .logo-subtitles .rotate-words span {
  animation: rotateWord 18s linear infinite 0s;
  display: block;
  position: absolute;
  opacity: 0;
  left: 6px;
  top: 2px;
  color: #ff7800;
}
/* line 114, ../../../../source/sass/components/header/_header.scss */
.header-logo .logo-subtitles .rotate-words span:nth-child(2) {
  animation-delay: 4.5s;
}
/* line 114, ../../../../source/sass/components/header/_header.scss */
.header-logo .logo-subtitles .rotate-words span:nth-child(3) {
  animation-delay: 9s;
}
/* line 114, ../../../../source/sass/components/header/_header.scss */
.header-logo .logo-subtitles .rotate-words span:nth-child(4) {
  animation-delay: 13.5s;
}

/* line 122, ../../../../source/sass/components/header/_header.scss */
.hamburger-button {
  justify-content: flex-end;
}

@media handheld, only screen and (max-width: 1024px) {
  /* line 128, ../../../../source/sass/components/header/_header.scss */
  .header .container {
    align-items: center;
  }
}
@media handheld, only screen and (max-width: 600px) {
  /* line 135, ../../../../source/sass/components/header/_header.scss */
  .header-logo .logo-subtitles {
    font-size: .75rem;
  }
  /* line 138, ../../../../source/sass/components/header/_header.scss */
  .header-logo .logo-subtitles .rotate-words span {
    top: 0;
  }
}
/* line 1, ../../../../source/sass/components/header/_header-top.scss */
.header-top {
  background: #080808;
}
/* line 3, ../../../../source/sass/components/header/_header-top.scss */
.header-top .container {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}
/* line 9, ../../../../source/sass/components/header/_header-top.scss */
.header-top ul {
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
/* line 14, ../../../../source/sass/components/header/_header-top.scss */
.header-top ul li {
  display: flex;
  align-items: center;
}
/* line 18, ../../../../source/sass/components/header/_header-top.scss */
.header-top ul li.social-icon a {
  font-size: 1.2em;
  line-height: 1;
}
/* line 25, ../../../../source/sass/components/header/_header-top.scss */
.header-top span,
.header-top a {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px;
  font-family: "Montserrat";
  font-size: 0.8em;
  line-height: 1em;
}
/* line 34, ../../../../source/sass/components/header/_header-top.scss */
.header-top span:hover,
.header-top a:hover {
  color: #ff7800;
  text-decoration: underline;
}
/* line 38, ../../../../source/sass/components/header/_header-top.scss */
.header-top span i.far,
.header-top a i.far {
  font-size: 1.2rem;
  color: #ff7800;
  padding: 10px 5px;
}
/* line 42, ../../../../source/sass/components/header/_header-top.scss */
.header-top span i.far:hover,
.header-top a i.far:hover {
  color: #ffffff;
}

/* line 48, ../../../../source/sass/components/header/_header-top.scss */
.header-top-links {
  display: flex;
}

/* line 51, ../../../../source/sass/components/header/_header-top.scss */
.header-top-cartlinks {
  justify-content: flex-end;
  display: flex;
}

@media handheld, only screen and (max-width: 600px) {
  /* line 60, ../../../../source/sass/components/header/_header-top.scss */
  .header-top ul {
    flex-wrap: wrap;
  }

  /* line 64, ../../../../source/sass/components/header/_header-top.scss */
  .header-top-links {
    justify-content: center;
  }

  /* line 67, ../../../../source/sass/components/header/_header-top.scss */
  .header-top-cartlinks {
    justify-content: center;
  }
}
/*
  Header Navigation
  - dropdown menu
  - super menu
*/
/* line 7, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  top: 50%;
  transform: translateX(100px);
}
/* line 19, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* line 24, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li {
  display: flex;
  flex-flow: row wrap;
  /* Super */
  /* DROPDOWN */
}
/* line 27, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 27px 20px;
  font-family: "Montserrat";
  font-size: 1em;
  font-weight: 600;
  line-height: 1em;
  border-bottom: 4px solid transparent;
  color: #ffffff;
}
/* line 39, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li a:hover {
  border-bottom: 4px solid #ffffff;
}
/* line 44, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li:hover > a {
  border-bottom: 4px solid #ffffff;
}
/* line 49, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.selected > a {
  border-bottom: 4px solid #ffffff;
}
/* line 55, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop .arrow-container, .header-nav ul li.hassuper .arrow-container {
  position: relative;
}
/* line 58, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop span.arrow, .header-nav ul li.hassuper span.arrow {
  display: none;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* line 65, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop span.arrow:after, .header-nav ul li.hassuper span.arrow:after {
  content: "\f2ec";
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  color: #ffffff;
}
/* line 74, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li:hover .super, .header-nav ul li:hover span.arrow, .header-nav ul li.open .super, .header-nav ul li.open span.arrow {
  display: block;
}
/* line 79, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super {
  position: absolute;
  top: 100%;
  left: 0;
  background: #f1f1f1;
  width: 100%;
  display: none;
  /* Shopping Cart Super Dropdown */
}
/* line 86, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super .container {
  align-items: flex-start;
}
/* line 89, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super .super-column {
  margin: 10px 0;
  align-self: stretch;
}
/* line 92, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super .super-column.w-bg-border {
  background: linear-gradient(90deg, 1px, rgba(127, 209, 239, 0) 0, rgba(127, 209, 239, 0) 100%);
}
/* line 96, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super ul {
  display: block;
}
/* line 98, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super ul li {
  display: block;
}
/* line 100, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super ul li a {
  display: block;
  color: #080808;
  font-weight: 400;
  padding: 10px 25px;
  margin: 0;
  text-transform: none;
  border: none;
}
/* line 108, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super ul li a.parent-level {
  font-weight: 600;
}
/* line 111, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super ul li a:hover {
  background-color: #080808;
  border: none;
  color: #ff7800;
}
/* line 118, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super ul li:hover a {
  border: none;
}
/* line 123, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super ul li ul li {
  padding-bottom: 0;
}
/* line 125, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super ul li ul li a {
  font-size: 0.9em;
  line-height: 1em;
  padding-left: 35px;
}
/* line 135, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super.shoppingcartpage {
  min-height: 400px;
}
/* line 137, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super.shoppingcartpage .container {
  flex-flow: row wrap;
  justify-content: stretch;
  max-width: 1920px;
  padding: 30px;
}
/* line 143, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super.shoppingcartpage ul {
  width: 25%;
}
/* line 146, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super.shoppingcartpage ul li a {
  font-size: 0.8em;
  font-weight: 600;
}
/* line 151, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super.shoppingcartpage ul ul {
  width: 100%;
}
/* line 154, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li .super.shoppingcartpage ul ul li a {
  font-size: 0.7em;
  font-weight: 400;
}
/* line 164, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop {
  position: relative;
}
/* line 167, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop:hover > ul, .header-nav ul li.hasdrop:hover span.arrow, .header-nav ul li.hasdrop.open > ul, .header-nav ul li.hasdrop.open span.arrow {
  display: block;
}
/* line 170, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop:hover > ul li a, .header-nav ul li.hasdrop:hover span.arrow li a, .header-nav ul li.hasdrop.open > ul li a, .header-nav ul li.hasdrop.open span.arrow li a {
  border: none;
}
/* line 176, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop ul {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0) translateZ(0);
  -ms-transform: translateX(-50%) translateY(0) translateZ(0);
  transform: translateX(-50%) translateY(0) translateZ(0);
  top: 76px;
  background: #f1f1f1;
  width: 250px;
  padding: 20px 0;
  display: none;
}
/* line 183, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop ul li {
  display: block;
}
/* line 185, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop ul li a {
  display: block;
  font-weight: 400;
  font-size: 0.8em;
  padding: 10px 25px;
  margin: 0;
  text-transform: none;
  color: #080808;
}
/* line 193, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav ul li.hasdrop ul li a:hover {
  background-color: #080808;
  border: none;
  color: #ff7800;
}

/* line 205, ../../../../source/sass/components/header/_header-nav.scss */
.header-nav-responsive-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
  display: none;
}

@media handheld, only screen and (max-width: 1024px) {
  /* line 216, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f1f1f1;
  }
  /* line 222, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul {
    display: block;
    width: 100%;
    padding: 20px 0;
  }
  /* line 226, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li {
    width: 100%;
    position: relative;
    /* Super */
  }
  /* line 229, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li a {
    padding: 16px 2%;
    width: 96%;
    border: none;
    color: #080808;
  }
  /* line 234, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li a:hover {
    border-bottom: none;
  }
  /* line 240, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li.hasdrop .arrow-container, .header-nav > ul li.hassuper .arrow-container {
    position: static;
  }
  /* line 243, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li.hasdrop span.arrow, .header-nav > ul li.hassuper span.arrow {
    transform: translateY(20px);
    padding: 0;
    position: absolute;
    top: 0;
    right: 10px;
    margin-left: auto;
    height: 48px;
    width: 48px;
    display: block;
  }
  /* line 253, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li.hasdrop span.arrow::after, .header-nav > ul li.hassuper span.arrow::after {
    color: #ff7800;
  }
  /* line 261, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li.opened.hasdrop span.arrow, .header-nav > ul li.opened.hassuper span.arrow {
    transform: translate(-28px) rotate(180deg);
  }
  /* line 269, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li.closed.hasdrop span.arrow, .header-nav > ul li.closed.hassuper span.arrow {
    transform: translateY(20px);
  }
  /* line 276, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li:hover > a, .header-nav > ul li.selected > a {
    border: none;
    padding-bottom: 16px;
  }
  /* line 282, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li:hover .super {
    display: none;
  }
  /* line 288, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li.hasdrop:hover > ul {
    display: none;
  }
  /* line 292, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li.hasdrop ul {
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    width: 100%;
    transform: none;
  }
  /* line 302, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li .super {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    /* Shopping Cart Super Dropdown */
  }
  /* line 307, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li .super .super-column {
    width: 100%;
    margin: 0;
  }
  /* line 310, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li .super .super-column .space {
    padding: 0;
  }
  /* line 316, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li .super ul li a {
    padding: 16px 25px;
    width: auto;
  }
  /* line 323, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li .super.shoppingcartpage {
    height: auto;
  }
  /* line 325, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li .super.shoppingcartpage .container {
    max-width: 1366px;
    padding: 0;
  }
  /* line 329, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav > ul li .super.shoppingcartpage ul {
    width: 100%;
  }
}
@media handheld, only screen and (max-width: 600px) {
  /* line 342, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav ul li a {
    border: none;
  }
  /* line 345, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav ul li .super {
    padding: 20px 0;
  }
  /* line 347, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav ul li .super .super-column {
    margin: 0;
  }
  /* line 349, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav ul li .super .super-column.w-bg-border {
    background: none;
  }
  /* line 352, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav ul li .super .super-column .space {
    padding: 0 5%;
    width: 90%;
  }
  /* line 361, ../../../../source/sass/components/header/_header-nav.scss */
  .header-nav ul li.hasdrop ul li a {
    padding: 16px 5%;
  }
}
/* Title */
/* line 1, ../../../../source/sass/components/title/_title.scss */
.title {
  background-color: #f1f1f1;
}
/* line 3, ../../../../source/sass/components/title/_title.scss */
.title .container {
  padding-top: 150px;
}
/* line 6, ../../../../source/sass/components/title/_title.scss */
.title h1, .title h2, .title h3, .title h4, .title h5, .title h6, .title p {
  color: #080808;
}
/* line 14, ../../../../source/sass/components/title/_title.scss */
.title h1 {
  font-size: 5.313em;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: -12px;
}
@media screen and (max-width: 1024px) {
  /* line 14, ../../../../source/sass/components/title/_title.scss */
  .title h1 {
    font-size: 4em;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  /* line 14, ../../../../source/sass/components/title/_title.scss */
  .title h1 {
    font-size: 2.5em;
    line-height: 1;
  }
}
/* line 25, ../../../../source/sass/components/title/_title.scss */
.title h2 {
  font-size: 1.875em;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  /* line 25, ../../../../source/sass/components/title/_title.scss */
  .title h2 {
    font-size: 1.8em;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  /* line 25, ../../../../source/sass/components/title/_title.scss */
  .title h2 {
    font-size: 1.4em;
    line-height: 1;
  }
}
/* line 30, ../../../../source/sass/components/title/_title.scss */
.title.wbgmedia h1, .title.wbgmedia h2, .title.wbgmedia h3, .title.wbgmedia h4, .title.wbgmedia h5, .title.wbgmedia h6, .title.wbgmedia p {
  color: #ffffff;
}

@media handheld, only screen and (max-width: 600px) {
  /* line 37, ../../../../source/sass/components/title/_title.scss */
  .title h1 {
    margin-bottom: 0;
  }
}
/* Marquee */
/* line 1, ../../../../source/sass/components/marquee/_marquee.scss */
.marquee {
  width: 100%;
  height: 800px;
  position: relative;
  z-index: 0;
  padding-bottom: 166px;
  display: flex;
}
/* line 8, ../../../../source/sass/components/marquee/_marquee.scss */
.marquee .rotate {
  height: 800px;
}
/* line 10, ../../../../source/sass/components/marquee/_marquee.scss */
.marquee .rotate .rotatee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
/* line 17, ../../../../source/sass/components/marquee/_marquee.scss */
.marquee .rotate .rotatee .container {
  height: 100%;
  align-content: center;
  align-items: center;
}
/* line 23, ../../../../source/sass/components/marquee/_marquee.scss */
.marquee .rotate .rotatee .rotatee-content h1 {
  color: #ffffff;
  font-size: 6em;
  line-height: 1;
  margin-bottom: 20px;
}
/* line 29, ../../../../source/sass/components/marquee/_marquee.scss */
.marquee .rotate .rotatee .rotatee-content p {
  color: #ffffff;
  font-size: 1.25em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

/* line 40, ../../../../source/sass/components/marquee/_marquee.scss */
.marquee-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* line 47, ../../../../source/sass/components/marquee/_marquee.scss */
.marquee-video video {
  height: auto;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media handheld, only screen and (max-width: 1366px) {
  /* line 57, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee {
    height: 720px;
  }
  /* line 62, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee .rotate .rotatee .rotatee-content h1 {
    font-size: 5em;
  }

  /* line 70, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee-video video {
    height: 100%;
    width: auto;
  }
}
@media handheld, only screen and (max-width: 1024px) {
  /* line 77, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee {
    height: 720px;
  }
  /* line 82, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee .rotate .rotatee .rotatee-content h1 {
    font-size: 4em;
  }
}
@media handheld, only screen and (max-width: 600px) {
  /* line 91, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee {
    height: 600px;
  }
  /* line 97, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee .rotate .rotatee .rotatee-content {
    justify-content: center;
  }
  /* line 99, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee .rotate .rotatee .rotatee-content h1 {
    font-size: 3em;
  }
  /* line 102, ../../../../source/sass/components/marquee/_marquee.scss */
  .marquee .rotate .rotatee .rotatee-content p {
    font-size: 1em;
  }
}
/* Content */
/* line 1, ../../../../source/sass/components/content/_content.scss */
.content {
  background: #ffffff;
}
/* line 3, ../../../../source/sass/components/content/_content.scss */
.content.content-typography-space {
  /* Spacing for content elements */
}
/* line 5, ../../../../source/sass/components/content/_content.scss */
.content.content-typography-space h1, .content.content-typography-space h2, .content.content-typography-space h3, .content.content-typography-space h4, .content.content-typography-space h5, .content.content-typography-space h6 {
  margin: 0 0 10px 0;
}
/* line 8, ../../../../source/sass/components/content/_content.scss */
.content.content-typography-space p {
  margin: 0 0 20px 0;
}
/* line 11, ../../../../source/sass/components/content/_content.scss */
.content.content-typography-space ul, .content.content-typography-space ol {
  margin: 0 0 20px 20px;
}
/* line 16, ../../../../source/sass/components/content/_content.scss */
.content.w-side-navigation .clm-content-layout {
  width: 75%;
}

/* Section */
/* line 24, ../../../../source/sass/components/content/_content.scss */
.clm-section .container {
  padding: 30px 0;
  position: relative;
}

@media handheld, only screen and (max-width: 600px) {
  /* line 33, ../../../../source/sass/components/content/_content.scss */
  .content.w-side-navigation .clm-content-layout {
    width: 100%;
  }
}
/*
  Content Side Navigation
  Side menu on secondary pages
*/
/* line 6, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav-container {
  position: relative;
}
/* line 9, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav {
  position: absolute;
  top: 0;
  left: 75%;
  background-color: #f1f1f1;
  width: 25%;
  z-index: 0;
}
/* line 16, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul {
  list-style: none;
  margin: 0;
}
/* line 19, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul li {
  margin: 5px 0;
}
/* line 21, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul li a {
  text-decoration: none;
  font-size: 1.2em;
  line-height: 1em;
  padding: 10px 10px;
  display: block;
  color: #ff7800;
}
/* line 28, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul li a:hover {
  background: #ff7800;
  color: #ffffff;
}
/* line 34, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul li.selected > a {
  background: #ff7800;
  color: #ffffff;
}
/* line 40, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul li ul li {
  margin: 0;
}
/* line 42, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul li ul li a {
  font-size: 1em;
  text-decoration: none;
  padding-left: 35px;
}
/* line 46, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul li ul li a:hover {
  text-decoration: none;
  background: #ff7800;
  color: #ffffff;
}
/* line 55, ../../../../source/sass/components/content/_content-sidenav.scss */
.content .content-sidenav ul li ul li.selected a {
  text-decoration: none;
  background: #ff7800;
  color: #ffffff;
}

@media handheld, only screen and (max-width: 600px) {
  /* line 71, ../../../../source/sass/components/content/_content-sidenav.scss */
  .content .content-sidenav {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
  }
}
/* Search */
/* line 2, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .search-form {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0) translateZ(0);
  -ms-transform: translateX(-50%) translateY(0) translateZ(0);
  transform: translateX(-50%) translateY(0) translateZ(0);
  top: 25%;
}
/* line 5, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .search-form .flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
}
/* line 11, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .search-form input {
  border: 1px solid #cccccc;
  color: #080808;
  margin: 0;
  padding: 12px 2%;
  width: 96%;
  height: 100%;
}
/* line 19, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .search-form button {
  border: none;
  width: 100%;
  background: #ff7800;
  height: 100%;
  cursor: pointer;
}
/* line 25, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .search-form button i {
  color: #ffffff;
}
/* line 30, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .easy-autocomplete {
  position: relative;
}
/* line 33, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .easy-autocomplete-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
}
/* line 39, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .easy-autocomplete-container ul {
  list-style: none;
}
/* line 43, ../../../../source/sass/components/search/_search-modal-window.scss */
.search-modal-window .eac-item {
  padding: 5px 20px;
}

/* Breadcrumbs */
/* line 1, ../../../../source/sass/components/breadcrumbs/_breadcrumbs.scss */
.breadcrumbs {
  color: #555555;
}
/* line 3, ../../../../source/sass/components/breadcrumbs/_breadcrumbs.scss */
.breadcrumbs .container {
  padding: 0;
}
/* line 6, ../../../../source/sass/components/breadcrumbs/_breadcrumbs.scss */
.breadcrumbs a,
.breadcrumbs span {
  font-size: 1.125em;
  line-height: 1em;
  color: #555555;
}
/* line 12, ../../../../source/sass/components/breadcrumbs/_breadcrumbs.scss */
.breadcrumbs a {
  color: #ff7800;
  text-decoration: none;
}
/* line 15, ../../../../source/sass/components/breadcrumbs/_breadcrumbs.scss */
.breadcrumbs a:hover {
  text-decoration: underline;
}
/* line 19, ../../../../source/sass/components/breadcrumbs/_breadcrumbs.scss */
.breadcrumbs .separator {
  color: #ff7800;
  padding: 0 5px;
}
/* line 22, ../../../../source/sass/components/breadcrumbs/_breadcrumbs.scss */
.breadcrumbs .separator:after {
  content: "\f054";
  font-family: 'Font Awesome 6 Pro';
}

/* Footer */
/* line 1, ../../../../source/sass/components/footer/_footer.scss */
.footer {
  background: #080808;
}
/* line 3, ../../../../source/sass/components/footer/_footer.scss */
.footer .container {
  position: relative;
  padding: 30px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

/* line 11, ../../../../source/sass/components/footer/_footer.scss */
.footer-logo {
  text-align: left;
}
/* line 13, ../../../../source/sass/components/footer/_footer.scss */
.footer-logo img {
  max-width: 250px;
}

/* line 17, ../../../../source/sass/components/footer/_footer.scss */
.footer-copy {
  text-align: left;
}
/* line 19, ../../../../source/sass/components/footer/_footer.scss */
.footer-copy p {
  color: #ffffff;
  padding: 10px;
}

/* line 24, ../../../../source/sass/components/footer/_footer.scss */
.footer-links {
  text-align: right;
}
/* line 26, ../../../../source/sass/components/footer/_footer.scss */
.footer-links p {
  color: #ffffff;
  padding: 10px;
}
/* line 29, ../../../../source/sass/components/footer/_footer.scss */
.footer-links p a {
  color: #ffffff;
  text-decoration: none;
  padding: 0 10px;
}
/* line 33, ../../../../source/sass/components/footer/_footer.scss */
.footer-links p a:hover {
  text-decoration: underline;
}

@media handheld, only screen and (max-width: 1024px) {
  /* line 40, ../../../../source/sass/components/footer/_footer.scss */
  .footer-logo,
  .footer-copy,
  .footer-links {
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 600px) {
  /* line 47, ../../../../source/sass/components/footer/_footer.scss */
  .footer-logo,
  .footer-copy,
  .footer-links {
    text-align: center;
  }
}
/* Form */
/*
  Form
  Default form styles, labels stacked on top of fields
*/
/* line 6, ../../../../source/sass/components/form/_default-form.scss */
.form legend,
.form label {
  color: #080808;
  font-family: "Roboto";
  margin: 8px 0 2px 0;
  display: block;
}
/* line 12, ../../../../source/sass/components/form/_default-form.scss */
.form legend.left,
.form label.left {
  display: inline-flex;
}
/* line 15, ../../../../source/sass/components/form/_default-form.scss */
.form legend.right,
.form label.right {
  display: inline-flex;
}
/* line 18, ../../../../source/sass/components/form/_default-form.scss */
.form legend.required:after,
.form label.required:after {
  content: "*";
  font-weight: bold;
  color: #cc0000;
  padding: 0 3px;
}
/* line 25, ../../../../source/sass/components/form/_default-form.scss */
.form input {
  border-radius: 0;
}
/* line 28, ../../../../source/sass/components/form/_default-form.scss */
.form .message {
  padding: 10px;
  display: block;
}
/* line 31, ../../../../source/sass/components/form/_default-form.scss */
.form .message.error, .form .message.bad {
  color: #ffffff;
  background: #cc0000;
}
/* line 36, ../../../../source/sass/components/form/_default-form.scss */
.form .message.good {
  color: #ffffff;
  background: #00cc00;
}
/* line 41, ../../../../source/sass/components/form/_default-form.scss */
.form .field {
  margin: 10px 0;
}
/* line 43, ../../../../source/sass/components/form/_default-form.scss */
.form .field input,
.form .field select,
.form .field textarea {
  border: 1px solid #cccccc;
  border-radius: 2px;
  color: #080808;
  margin: 0;
  padding: 12px 2%;
  width: 96%;
}
/* line 53, ../../../../source/sass/components/form/_default-form.scss */
.form .field select {
  width: 100%;
}
/* line 67, ../../../../source/sass/components/form/_default-form.scss */
.form .field.optionset input, .form .field.checkboxset input, .form .field.checkbox input {
  width: auto;
}
/* line 70, ../../../../source/sass/components/form/_default-form.scss */
.form .field.optionset label, .form .field.checkboxset label, .form .field.checkbox label {
  display: inline-flex;
}
/* line 75, ../../../../source/sass/components/form/_default-form.scss */
.form .field.required label:after {
  content: "*";
  font-weight: bold;
  color: #990000;
  padding: 0 3px;
}
/* line 83, ../../../../source/sass/components/form/_default-form.scss */
.form span {
  color: #080808;
  font-family: "Roboto";
  font-size: 0.9em;
  line-height: 1em;
  display: block;
  padding: 5px 0;
}
/* line 90, ../../../../source/sass/components/form/_default-form.scss */
.form span.right-title {
  font-style: italic;
}
/* line 96, ../../../../source/sass/components/form/_default-form.scss */
.form .btn-toolbar input,
.form .Actions input {
  background-color: #ff7800;
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 20px 40px;
  margin: 5px 0;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.25s ease-out;
  -moz-transition: background-color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
  color: #ffffff;
}
/* line 20, ../../../../source/sass/components/button/_button.scss */
.form .btn-toolbar input:link, .form .btn-toolbar input:visited, .form .btn-toolbar input:hover, .form .btn-toolbar input:active,
.form .Actions input:link,
.form .Actions input:visited,
.form .Actions input:hover,
.form .Actions input:active {
  color: #ffffff;
}
/* line 26, ../../../../source/sass/components/button/_button.scss */
.form .btn-toolbar input:hover,
.form .Actions input:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 30, ../../../../source/sass/components/button/_button.scss */
.form .btn-toolbar input.minor,
.form .Actions input.minor {
  padding: 10px 40px;
  color: #080808;
  background: #f1f1f1;
}
/* line 34, ../../../../source/sass/components/button/_button.scss */
.form .btn-toolbar input.minor:hover,
.form .Actions input.minor:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 39, ../../../../source/sass/components/button/_button.scss */
.form .btn-toolbar input.square,
.form .Actions input.square {
  border-radius: 0px;
  color: #080808;
  text-transform: none;
}
/* line 43, ../../../../source/sass/components/button/_button.scss */
.form .btn-toolbar input.square:hover,
.form .Actions input.square:hover {
  background-color: #080808;
  color: #ffffff;
}

/* Content Layout Module */
/* line 1, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-translate-up {
  margin-bottom: -100px;
  transform: translateY(-100px);
}

/* line 6, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-groupedtout {
  text-align: center;
  background-color: #080808;
}
/* line 9, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-groupedtout:last-of-type .groupedtout-content {
  border-right: 0;
}
/* line 13, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-groupedtout:hover .groupedtout-content i {
  transform: translateY(-10px);
}
/* line 17, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-groupedtout a {
  text-decoration: none;
}
/* line 20, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-groupedtout > div, .clm-groupedtout .groupedtout-content {
  height: 100%;
  box-sizing: border-box;
}
/* line 24, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-groupedtout .groupedtout-content {
  border-right: solid 1px #282828;
}
/* line 26, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-groupedtout .groupedtout-content i {
  color: #ff7800;
  font-family: 'Font Awesome 6 Pro';
  font-size: 3em;
  transition: transform .25s ease;
}
/* line 32, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
.clm-groupedtout .groupedtout-content .groupedtout-text p {
  font-family: "Montserrat";
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  font-size: 1.4em;
  line-height: 1.3em;
}

@media handheld, only screen and (max-width: 600px) {
  /* line 44, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
  .clm-groupedtout > .space {
    padding: 0;
  }
  /* line 48, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
  .clm-groupedtout .groupedtout-content i {
    font-size: 2em;
  }
  /* line 51, ../../../../source/sass/components/content-layouts/_clm-groupedtout.scss */
  .clm-groupedtout .groupedtout-content .groupedtout-text p {
    font-size: 1em;
  }
}
/* line 2, ../../../../source/sass/components/content-layouts/_clm-image.scss */
.clm-image a {
  text-decoration: none;
}
/* line 6, ../../../../source/sass/components/content-layouts/_clm-image.scss */
.clm-image .caption .content {
  font-size: 1.6em;
  line-height: 1;
}

/* line 3, ../../../../source/sass/components/content-layouts/_clm-embed.scss */
.clm-embed .embed.flex-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}
/* line 11, ../../../../source/sass/components/content-layouts/_clm-embed.scss */
.clm-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Shopping Cart */
/* line 2, ../../../../source/sass/components/shoppingcart/components/_addtocartform.scss */
.shoppingcart-addtocartform table.attributes {
  overflow-x: auto;
  margin-bottom: 20px;
  display: block;
}
/* line 6, ../../../../source/sass/components/shoppingcart/components/_addtocartform.scss */
.shoppingcart-addtocartform table.attributes .attributes-title {
  font-weight: 700;
  margin: 0;
}
/* line 15, ../../../../source/sass/components/shoppingcart/components/_addtocartform.scss */
.shoppingcart-addtocartform .qty-field input {
  max-width: 50px;
  text-align: center;
}

/* line 1, ../../../../source/sass/components/shoppingcart/components/_breadcrumbs.scss */
.shoppingcart-breadcrumbs {
  border-bottom: 1px solid #cccccc;
}
/* line 3, ../../../../source/sass/components/shoppingcart/components/_breadcrumbs.scss */
.shoppingcart-breadcrumbs ul {
  display: flex;
  list-style: none;
  margin: 0;
}
/* line 7, ../../../../source/sass/components/shoppingcart/components/_breadcrumbs.scss */
.shoppingcart-breadcrumbs ul li {
  color: #cccccc;
  display: flex;
  padding: 10px 20px;
}
/* line 11, ../../../../source/sass/components/shoppingcart/components/_breadcrumbs.scss */
.shoppingcart-breadcrumbs ul li.active {
  color: #080808;
}

@media handheld, only screen and (max-width: 600px) {
  /* line 20, ../../../../source/sass/components/shoppingcart/components/_breadcrumbs.scss */
  .shoppingcart-breadcrumbs ul li {
    padding: 10px;
  }
}
/* line 2, ../../../../source/sass/components/shoppingcart/components/_button.scss */
.button.shoppingcart-minor {
  padding: 10px 28px;
  background: #999999;
}
/* line 5, ../../../../source/sass/components/shoppingcart/components/_button.scss */
.button.shoppingcart-minor:hover {
  background: #cccccc;
}

/* line 1, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
.checkout-cart {
  justify-content: flex-end;
}

/* line 4, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
.checkout-sticky {
  position: sticky;
  position: -webkit-sticky;
  /* Safari */
  top: 0;
}

/* line 10, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
.checkout-cart-payment-icons img {
  width: 50px;
  height: auto;
}

/* line 17, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
table.shoppingcart-cart thead tr {
  background: #eeeeee;
}
/* line 22, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
table.shoppingcart-cart tbody td {
  vertical-align: middle;
}
/* line 24, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
table.shoppingcart-cart tbody td a {
  text-decoration: none;
  display: block;
}
/* line 30, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
table.shoppingcart-cart .product-title {
  font-weight: 700;
  display: block;
  padding: 5px;
  color: #080808;
}
/* line 36, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
table.shoppingcart-cart .product-attribute {
  font-style: italic;
  display: block;
  padding: 5px;
  color: #282828;
}
/* line 43, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
table.shoppingcart-cart .product-delete input {
  background: url("/resources/vendor/werkbot/shoppingcart/images/checkout-delete.png") no-repeat top left;
  width: 24px;
  height: 24px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-indent: -99em;
}
/* line 51, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
table.shoppingcart-cart .product-delete input:hover {
  background-position: bottom left;
}

/* line 57, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
.pay-credit {
  display: none;
}

/* line 61, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
.form .Actions input.checkout-cart-button {
  width: 100%;
  display: block;
}

/* line 65, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
.form .Actions input.checkout-cart-button-update,
.form .Actions input.checkout-cart-button-clear {
  padding: 10px 10%;
  background-color: #999999;
  color: #ffffff;
  width: 49%;
}
/* line 71, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
.form .Actions input.checkout-cart-button-update:hover,
.form .Actions input.checkout-cart-button-clear:hover {
  background-color: #cccccc;
}

@media handheld, only screen and (max-width: 600px) {
  /* Base don this example: https://css-tricks.com/responsive-data-tables/ */
  /* line 78, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart {
    display: block;
    font-size: 1em;
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  /* line 81, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart thead, table.shoppingcart-cart tbody, table.shoppingcart-cart th, table.shoppingcart-cart td, table.shoppingcart-cart tr {
    display: block;
  }
  /* line 85, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  /* line 90, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart tr {
    border: 1px solid #ccc;
    position: relative;
  }
  /* line 93, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart tr:nth-child(odd), table.shoppingcart-cart tr:nth-child(even) {
    background: #ffffff;
  }
  /* line 98, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding: 10px 10px 10px 50%;
  }
  /* line 104, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 0;
    left: 0;
    width: 40%;
    padding: 10px 5% 10px 5%;
    white-space: nowrap;
  }
  /* line 114, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td:nth-of-type(1):before {
    content: " ";
  }
  /* line 117, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td:nth-of-type(2):before {
    content: "Product";
  }
  /* line 120, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td:nth-of-type(3):before {
    content: "Price";
  }
  /* line 123, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td:nth-of-type(4):before {
    content: "Qty";
  }
  /* line 126, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td:nth-of-type(5):before {
    content: "Total";
  }
  /* line 129, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td:nth-of-type(7):before {
    content: " ";
  }
  /* line 133, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td.product-image {
    text-align: center;
    padding: 10px 0;
  }
  /* line 136, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td.product-image a {
    padding: 20px;
  }
  /* line 139, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td.product-image img {
    max-width: 300px;
  }
  /* line 143, ../../../../source/sass/components/shoppingcart/components/_cart.scss */
  table.shoppingcart-cart td.product-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 0;
  }
}
/* line 10, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.flex-container.honeycomb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 150px;
  transform: translateY(34.375px);
}

/* line 21, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category {
  display: flex;
  flex: 0 1 250px;
  max-width: 250px;
  height: 137.5px;
  margin: 65.47619px 12.5px 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 1;
}
/* line 31, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category *, .shoppingcart-category *::before, .shoppingcart-category *::after {
  box-sizing: border-box;
}
/* line 34, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category::before, .shoppingcart-category::after {
  content: '';
}
/* line 37, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category::before, .shoppingcart-category::after, .shoppingcart-category img {
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}
/* line 47, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category::before {
  background: #080808;
  transform: scale(1.055);
  transition: background 350ms;
}
/* line 52, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category::after {
  background: #282828;
  opacity: 0.5;
  transition: background 350ms;
}
/* line 57, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category img {
  object-fit: cover;
  object-position: center;
}
/* line 61, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category.placeholder {
  display: none;
  opacity: 0;
  width: 250px;
  margin: 0 12.5px;
}
/* line 67, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category .shoppingcart-category-title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  hyphens: auto;
  word-break: break-word;
  text-transform: uppercase;
}
/* line 75, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category .shoppingcart-category-title h2 {
  color: #ffffff;
  min-width: 210px;
  font-size: 1.4em;
}
/* line 80, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category .shoppingcart-category-title small {
  font-weight: 300;
  margin-top: 0.25em;
}
/* line 86, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category:hover::before {
  background: #ff7800;
}
/* line 89, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category:hover::after {
  background: #ff7800;
  opacity: 1;
}
/* line 94, ../../../../source/sass/components/shoppingcart/components/_category.scss */
.shoppingcart-category:hover .shoppingcart-category-title h2 {
  color: #080808;
}

/**/
@media (max-width: 550px) {
  /* line 102, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category {
    margin: 81.25px 25px;
  }
}
@media (min-width: 550px) and (max-width: 825px) {
  /* line 107, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category:nth-child(3n) {
    margin-right: calc(50% - 125px);
    margin-left: calc(50% - 125px);
  }

  /* line 111, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category.placeholder:nth-child(3n + 5) {
    display: block;
  }
}
@media (min-width: 825px) and (max-width: 1100px) {
  /* line 116, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category:nth-child(5n + 4) {
    margin-left: calc(50% - 275px);
  }

  /* line 119, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category:nth-child(5n + 5) {
    margin-right: calc(50% - 275px);
  }

  /* line 122, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category.placeholder:nth-child(5n), .shoppingcart-category.placeholder:nth-child(5n + 3) {
    display: block;
  }
}
@media (min-width: 1100px) {
  /* line 127, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category:nth-child(7n + 5) {
    margin-left: calc(50% - 400px);
  }

  /* line 130, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category:nth-child(7n + 7), .shoppingcart-category:nth-child(7n + 5):nth-last-child(2) {
    margin-right: calc(50% - 400px);
  }

  /* line 133, ../../../../source/sass/components/shoppingcart/components/_category.scss */
  .shoppingcart-category.placeholder:nth-child(7n + 7), .shoppingcart-category.placeholder:nth-child(7n + 9), .shoppingcart-category.placeholder:nth-child(7n + 11) {
    display: block;
  }
}
/* line 1, ../../../../source/sass/components/shoppingcart/components/_checkoutcoupon.scss */
.shoppingcart-checkoutcoupon {
  background: #eeeeee;
  border-radius: 5px;
  border: solid 1px #ddd;
  margin: 5px 0;
  font-size: 0.8em;
  line-height: 1em;
}
/* line 8, ../../../../source/sass/components/shoppingcart/components/_checkoutcoupon.scss */
.shoppingcart-checkoutcoupon .Actions input.minor {
  background: #999999;
  color: #ffffff;
}
/* line 11, ../../../../source/sass/components/shoppingcart/components/_checkoutcoupon.scss */
.shoppingcart-checkoutcoupon .Actions input.minor:hover {
  background: #cccccc;
}

/* line 1, ../../../../source/sass/components/shoppingcart/components/_checkoutordersummary.scss */
.shoppingcart-checkoutordersummary {
  background: #eeeeee;
  border-radius: 5px;
  border: solid 1px #ddd;
  margin: 5px 0;
}
/* line 7, ../../../../source/sass/components/shoppingcart/components/_checkoutordersummary.scss */
.shoppingcart-checkoutordersummary table th, .shoppingcart-checkoutordersummary table td {
  text-align: left;
}
/* line 11, ../../../../source/sass/components/shoppingcart/components/_checkoutordersummary.scss */
.shoppingcart-checkoutordersummary table tr .small-text {
  font-size: 0.8em;
}
/* line 14, ../../../../source/sass/components/shoppingcart/components/_checkoutordersummary.scss */
.shoppingcart-checkoutordersummary table tr.coupon {
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
/* line 17, ../../../../source/sass/components/shoppingcart/components/_checkoutordersummary.scss */
.shoppingcart-checkoutordersummary table tr.coupon .coupon-title {
  display: block;
  font-weight: strong;
  padding-bottom: 3px;
  font-size: 1em;
}
/* line 23, ../../../../source/sass/components/shoppingcart/components/_checkoutordersummary.scss */
.shoppingcart-checkoutordersummary table tr.coupon .coupon-description {
  display: block;
  padding-bottom: 3px;
  font-size: 0.8em;
}
/* line 28, ../../../../source/sass/components/shoppingcart/components/_checkoutordersummary.scss */
.shoppingcart-checkoutordersummary table tr.coupon button {
  border: none;
  padding: 5px 20px;
  background: #999999;
  color: #ffffff;
  font-size: 0.8em;
  line-height: 1em;
  cursor: pointer;
}

/* line 1, ../../../../source/sass/components/shoppingcart/components/_checkoutpaybycheck.scss */
.checkout-paybycheck-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}
/* line 7, ../../../../source/sass/components/shoppingcart/components/_checkoutpaybycheck.scss */
.checkout-paybycheck-container form {
  padding-right: 5px;
}

/* line 1, ../../../../source/sass/components/shoppingcart/components/_message.scss */
.shoppingcart-message {
  background-color: #fff3cd;
  border-color: #ffeeba;
}
/* line 4, ../../../../source/sass/components/shoppingcart/components/_message.scss */
.shoppingcart-message .msg {
  color: #856404;
}
/* line 7, ../../../../source/sass/components/shoppingcart/components/_message.scss */
.shoppingcart-message.error {
  background-color: #cc0000;
  border-color: #990000;
}
/* line 10, ../../../../source/sass/components/shoppingcart/components/_message.scss */
.shoppingcart-message.error .msg {
  color: #ffffff;
}
/* line 14, ../../../../source/sass/components/shoppingcart/components/_message.scss */
.shoppingcart-message.success {
  background-color: #d9534f;
  border-color: #d9534f;
}
/* line 17, ../../../../source/sass/components/shoppingcart/components/_message.scss */
.shoppingcart-message.success .msg {
  color: #ffffff;
}

/* line 1, ../../../../source/sass/components/shoppingcart/components/_productsincart.scss */
.shoppingcart-productsincart {
  background-color: #fff3cd;
  margin-left: auto;
  width: 50%;
}
/* line 5, ../../../../source/sass/components/shoppingcart/components/_productsincart.scss */
.shoppingcart-productsincart h4,
.shoppingcart-productsincart p,
.shoppingcart-productsincart ul {
  color: #856404;
}
/* line 10, ../../../../source/sass/components/shoppingcart/components/_productsincart.scss */
.shoppingcart-productsincart ul {
  margin: 0 0 0 20px;
}
/* line 13, ../../../../source/sass/components/shoppingcart/components/_productsincart.scss */
.shoppingcart-productsincart input.action {
  background-color: #ff7800;
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 20px 40px;
  margin: 5px 0;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.25s ease-out;
  -moz-transition: background-color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
  background-color: #856404;
  padding: 10px 28px;
}
/* line 20, ../../../../source/sass/components/button/_button.scss */
.shoppingcart-productsincart input.action:link, .shoppingcart-productsincart input.action:visited, .shoppingcart-productsincart input.action:hover, .shoppingcart-productsincart input.action:active {
  color: #ffffff;
}
/* line 26, ../../../../source/sass/components/button/_button.scss */
.shoppingcart-productsincart input.action:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 30, ../../../../source/sass/components/button/_button.scss */
.shoppingcart-productsincart input.action.minor {
  padding: 10px 40px;
  color: #080808;
  background: #f1f1f1;
}
/* line 34, ../../../../source/sass/components/button/_button.scss */
.shoppingcart-productsincart input.action.minor:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 39, ../../../../source/sass/components/button/_button.scss */
.shoppingcart-productsincart input.action.square {
  border-radius: 0px;
  color: #080808;
  text-transform: none;
}
/* line 43, ../../../../source/sass/components/button/_button.scss */
.shoppingcart-productsincart input.action.square:hover {
  background-color: #080808;
  color: #ffffff;
}
/* line 17, ../../../../source/sass/components/shoppingcart/components/_productsincart.scss */
.shoppingcart-productsincart input.action:hover {
  background-color: #b78905;
}

@media handheld, only screen and (max-width: 600px) {
  /* line 23, ../../../../source/sass/components/shoppingcart/components/_productsincart.scss */
  .shoppingcart-productsincart {
    width: 100%;
    margin: 100px auto 0;
  }
}
/* line 1, ../../../../source/sass/components/shoppingcart/components/_modal-window.scss */
.modal-window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 5;
  align-items: center;
  overflow-y: auto;
}
/* line 11, ../../../../source/sass/components/shoppingcart/components/_modal-window.scss */
.modal-window .bg {
  background: #999999;
  opacity: 0.8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* line 22, ../../../../source/sass/components/shoppingcart/components/_modal-window.scss */
.modal-window-content {
  background: #ffffff;
  border-radius: 20px;
  margin: 0 auto;
  height: auto;
  z-index: 1;
  position: relative;
}

/* line 30, ../../../../source/sass/components/shoppingcart/components/_modal-window.scss */
.modal-window-product-image {
  text-align: center;
}
/* line 32, ../../../../source/sass/components/shoppingcart/components/_modal-window.scss */
.modal-window-product-image img {
  max-width: 200px;
}

/* line 1, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-field-wrapper {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 16px;
}

/* line 7, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-field {
  margin-bottom: 16px;
  width: 100%;
}

/* line 12, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-field:first-child {
  margin-left: 0;
}

/* line 16, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-field:last-child {
  margin-right: 0;
}

/* line 20, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-field--in-wrapper {
  flex-grow: 1;
  margin: 0 8px;
}

/* line 25, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-label {
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* line 30, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-input {
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  transition: border-color 0.25s ease;
  width: 100%;
}

/* line 39, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-input--focus {
  background-color: #fbfdff;
}

/* line 43, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-input--error {
  background-color: #fbfdff;
}

/* line 47, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-button {
  color: #fff;
  padding: 16px;
  width: 100%;
}

/* line 53, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-button:active {
  color: #fff;
}

/* line 59, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-label {
  color: #000000;
  font-size: 14px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* line 67, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-input {
  border-color: #E0E2E3;
  border-radius: 4px;
}

/* line 72, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-input--focus {
  border-color: #4A90E2;
}

/* line 76, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-input--error {
  border-color: #e02e2f;
}

/* line 80, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-button {
  background: #4A90E2;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* line 88, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-button:active {
  background: #4A90E2;
}

/* line 91, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-wallet-divider {
  margin: 24px 0;
  position: relative;
  text-align: center;
  width: 100%;
}

/* line 98, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-wallet-divider:after, .sq-wallet-divider::after, .sq-wallet-divider:before, .sq-wallet-divider::before {
  background: #bbb;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 9px;
}

/* line 109, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-wallet-divider:after, .sq-wallet-divider::after {
  right: 65%;
}

/* line 113, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-wallet-divider:before, .sq-wallet-divider::before {
  left: 65%;
}

/* line 117, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-wallet-divider__text {
  color: #bbb;
  padding: 10px;
  text-transform: uppercase;
}

/* Indicates how Google Pay button will appear */
/* line 124, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.button-google-pay {
  width: 100%;
  min-height: 40px;
  padding: 11px 24px;
  margin-bottom: 18px;
  background-color: #000;
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%22103%22%20height%3D%2217%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M.148%202.976h3.766c.532%200%201.024.117%201.477.35.453.233.814.555%201.085.966.27.41.406.863.406%201.358%200%20.495-.124.924-.371%201.288s-.572.64-.973.826v.084c.504.177.912.471%201.225.882.313.41.469.891.469%201.442a2.6%202.6%200%200%201-.427%201.47c-.285.43-.667.763-1.148%201.001A3.5%203.5%200%200%201%204.082%2013H.148V2.976zm3.696%204.2c.448%200%20.81-.14%201.085-.42.275-.28.413-.602.413-.966s-.133-.684-.399-.959c-.266-.275-.614-.413-1.043-.413H1.716v2.758h2.128zm.238%204.368c.476%200%20.856-.15%201.141-.448.285-.299.427-.644.427-1.036%200-.401-.147-.749-.441-1.043-.294-.294-.688-.441-1.183-.441h-2.31v2.968h2.366zm5.379.903c-.453-.518-.679-1.239-.679-2.163V5.86h1.54v4.214c0%20.579.138%201.013.413%201.302.275.29.637.434%201.085.434.364%200%20.686-.096.966-.287.28-.191.495-.446.644-.763a2.37%202.37%200%200%200%20.224-1.022V5.86h1.54V13h-1.456v-.924h-.084c-.196.336-.5.611-.91.826-.41.215-.845.322-1.302.322-.868%200-1.528-.259-1.981-.777zm9.859.161L16.352%205.86h1.722l2.016%204.858h.056l1.96-4.858H23.8l-4.41%2010.164h-1.624l1.554-3.416zm8.266-6.748h1.666l1.442%205.11h.056l1.61-5.11h1.582l1.596%205.11h.056l1.442-5.11h1.638L36.392%2013h-1.624L33.13%207.876h-.042L31.464%2013h-1.596l-2.282-7.14zm12.379-1.337a1%201%200%200%201-.301-.735%201%201%200%200%201%20.301-.735%201%201%200%200%201%20.735-.301%201%201%200%200%201%20.735.301%201%201%200%200%201%20.301.735%201%201%200%200%201-.301.735%201%201%200%200%201-.735.301%201%201%200%200%201-.735-.301zM39.93%205.86h1.54V13h-1.54V5.86zm5.568%207.098a1.967%201.967%200%200%201-.686-.406c-.401-.401-.602-.947-.602-1.638V7.218h-1.246V5.86h1.246V3.844h1.54V5.86h1.736v1.358H45.75v3.36c0%20.383.075.653.224.812.14.187.383.28.728.28.159%200%20.299-.021.42-.063.121-.042.252-.11.392-.203v1.498c-.308.14-.681.21-1.12.21-.317%200-.616-.051-.896-.154zm3.678-9.982h1.54v2.73l-.07%201.092h.07c.205-.336.511-.614.917-.833.406-.22.842-.329%201.309-.329.868%200%201.53.254%201.988.763.457.509.686%201.202.686%202.079V13h-1.54V8.688c0-.541-.142-.947-.427-1.218-.285-.27-.656-.406-1.113-.406-.345%200-.656.098-.931.294a2.042%202.042%200%200%200-.651.777%202.297%202.297%200%200%200-.238%201.029V13h-1.54V2.976zm32.35-.341v4.083h2.518c.6%200%201.096-.202%201.488-.605.403-.402.605-.882.605-1.437%200-.544-.202-1.018-.605-1.422-.392-.413-.888-.62-1.488-.62h-2.518zm0%205.52v4.736h-1.504V1.198h3.99c1.013%200%201.873.337%202.582%201.012.72.675%201.08%201.497%201.08%202.466%200%20.991-.36%201.819-1.08%202.482-.697.665-1.559.996-2.583.996h-2.485v.001zm7.668%202.287c0%20.392.166.718.499.98.332.26.722.391%201.168.391.633%200%201.196-.234%201.692-.701.497-.469.744-1.019.744-1.65-.469-.37-1.123-.555-1.962-.555-.61%200-1.12.148-1.528.442-.409.294-.613.657-.613%201.093m1.946-5.815c1.112%200%201.989.297%202.633.89.642.594.964%201.408.964%202.442v4.932h-1.439v-1.11h-.065c-.622.914-1.45%201.372-2.486%201.372-.882%200-1.621-.262-2.215-.784-.594-.523-.891-1.176-.891-1.96%200-.828.313-1.486.94-1.976s1.463-.735%202.51-.735c.892%200%201.629.163%202.206.49v-.344c0-.522-.207-.966-.621-1.33a2.132%202.132%200%200%200-1.455-.547c-.84%200-1.504.353-1.995%201.062l-1.324-.834c.73-1.045%201.81-1.568%203.238-1.568m11.853.262l-5.02%2011.53H96.42l1.864-4.034-3.302-7.496h1.635l2.387%205.749h.032l2.322-5.75z%22%20fill%3D%22%23FFF%22%2F%3E%3Cpath%20d%3D%22M75.448%207.134c0-.473-.04-.93-.116-1.366h-6.344v2.588h3.634a3.11%203.11%200%200%201-1.344%202.042v1.68h2.169c1.27-1.17%202.001-2.9%202.001-4.944%22%20fill%3D%22%234285F4%22%2F%3E%3Cpath%20d%3D%22M68.988%2013.7c1.816%200%203.344-.595%204.459-1.621l-2.169-1.681c-.603.406-1.38.643-2.29.643-1.754%200-3.244-1.182-3.776-2.774h-2.234v1.731a6.728%206.728%200%200%200%206.01%203.703%22%20fill%3D%22%2334A853%22%2F%3E%3Cpath%20d%3D%22M65.212%208.267a4.034%204.034%200%200%201%200-2.572V3.964h-2.234a6.678%206.678%200%200%200-.717%203.017c0%201.085.26%202.11.717%203.017l2.234-1.731z%22%20fill%3D%22%23FABB05%22%2F%3E%3Cpath%20d%3D%22M68.988%202.921c.992%200%201.88.34%202.58%201.008v.001l1.92-1.918c-1.165-1.084-2.685-1.75-4.5-1.75a6.728%206.728%200%200%200-6.01%203.702l2.234%201.731c.532-1.592%202.022-2.774%203.776-2.774%22%20fill%3D%22%23E94235%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  background-origin: content-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  outline: 0;
  cursor: pointer;
  display: none;
}

/* line 144, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-apple-pay {
  -webkit-appearance: -apple-pay-button;
  border: none;
  height: 48px;
  margin-bottom: 12px;
  width: 100%;
  display: none;
}

/* line 152, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-masterpass {
  background-color: #000;
  background-image: url(https://masterpass.com/dyn/img/btn/global/mp_chk_btn_384x048px.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  border-radius: 5px;
  height: 42px;
  margin-bottom: 16px;
  width: 100%;
  display: none;
}

/* line 165, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
.sq-button:hover {
  cursor: pointer;
  background-color: #4281CB;
}

/* line 170, ../../../../source/sass/components/shoppingcart/components/_sq-payment-form.scss */
#error {
  width: 100%;
  margin-top: 16px;
  font-size: 14px;
  color: red;
  font-weight: 500;
  text-align: center;
  opacity: 0.8;
}

/* Product */
/* line 3, ../../../../source/sass/components/shoppingcart/components/product/_product-image-gallery.scss */
.product-image-gallery .slick-slide img {
  width: 100%;
  height: auto;
}

/* line 9, ../../../../source/sass/components/shoppingcart/components/product/_product-image-gallery.scss */
.product-image-gallery-image-caption {
  padding: 20px;
  background: #f1f1f1;
  margin: 0;
}

/* line 16, ../../../../source/sass/components/shoppingcart/components/product/_product-image-gallery.scss */
.product-image-gallery-thumbnails .slick-slide img {
  width: 100%;
  height: auto;
  border: solid 3px transparent;
}
/* line 22, ../../../../source/sass/components/shoppingcart/components/product/_product-image-gallery.scss */
.product-image-gallery-thumbnails .slick-current img {
  border: solid 3px #ff7800;
}

/* line 1, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-images {
  order: 1;
}

/* line 4, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-content {
  order: 2;
}
/* line 6, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-content .product-detail-title {
  margin: 0;
}
/* line 11, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-content .product-detail-attributes .field.checkboxset label {
  margin: 0px 0 10px 20px;
}
/* line 13, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-content .product-detail-attributes .field.checkboxset label.left {
  margin-left: 0;
}
/* line 17, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-content .product-detail-attributes .field.checkboxset input {
  position: relative;
}
/* line 23, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-content .Actions .action {
  background-color: #080808;
}
/* line 27, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-content .additional-details {
  margin: 20px 0;
}
/* line 29, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-detail-content .additional-details p {
  margin-bottom: 0;
}

/* line 34, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-cost-label {
  margin: 20px 10px 20px 0;
  display: inline-block;
}

/* line 38, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-cost-value {
  color: #ff7800;
  font-size: 1.4em;
  line-height: 1;
  font-weight: bold;
}
/* line 43, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-cost-value.prominent {
  font-size: 2em;
}

/* line 47, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-cost-group {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row;
}

/* line 54, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-cost {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-start;
}

/* line 60, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-tabs {
  order: 3;
}

/* line 63, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-icons {
  display: block;
  padding-top: 5px;
}

/* line 67, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-icon {
  position: relative;
  padding: 5px;
}
/* line 70, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.product-icon img {
  width: 30px;
  height: 30px;
}

/* Related Products */
/* line 76, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.shoppingcart-product-related {
  text-decoration: none;
}
/* line 78, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.shoppingcart-product-related .shoppingcart-product-title {
  margin: 0 0 10px 0 !important;
  text-decoration: none;
  font-weight: bold;
}
/* line 83, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.shoppingcart-product-related .price {
  font-size: 1.25em;
  font-weight: bold;
  text-decoration: none;
}

/* Related Product Slider */
/* line 91, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider {
  -moz-user-select: none;
  position: relative;
  width: 100%;
}
/* line 95, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider .slides {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 145px;
}
/* line 101, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider .slide {
  height: auto;
  position: absolute;
}
/* line 104, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider .slide .price {
  font-weight: 600;
  color: #ff7800;
  background-color: #080808;
  width: max-content;
  margin: 25px auto;
}
/* line 112, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider .arrow {
  color: #ff7800;
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  top: 0;
  font-size: 3em;
  line-height: 1;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
/* line 124, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider .arrow.left {
  left: 0;
}
/* line 126, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider .arrow.left:before {
  content: "\f053";
}
/* line 130, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider .arrow.right {
  right: 0;
}
/* line 132, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
.related-product-slider .arrow.right:before {
  content: "\f054";
}

/**/
@media handheld, only screen and (max-width: 1366px) {
  /* line 140, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
  .related-product-slider {
    display: flex;
    flex-flow: row wrap;
  }
  /* line 143, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
  .related-product-slider .slides {
    order: 3;
  }
}
@media handheld, only screen and (max-width: 600px) {
  /* line 149, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
  .product-detail-images {
    order: 2;
  }

  /* line 152, ../../../../source/sass/components/shoppingcart/components/product/_product-details.scss */
  .product-detail-content {
    order: 1;
  }
}
/* Checkout */
/* line 3, ../../../../source/sass/components/shoppingcart/components/_checkout-shipping-address.scss */
.checkout-shipping-address .field.optionset ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  margin: 0;
}
/* line 8, ../../../../source/sass/components/shoppingcart/components/_checkout-shipping-address.scss */
.checkout-shipping-address .field.optionset ul li {
  margin: 0 20px;
}
/* line 10, ../../../../source/sass/components/shoppingcart/components/_checkout-shipping-address.scss */
.checkout-shipping-address .field.optionset ul li:last-child {
  width: 100%;
  margin: 40px 0 0 0;
}

/* Featured Products */
/* line 23, ../../../../source/sass/components/shoppingcart/_shoppingcart.scss */
.featured-products .flex-container {
  align-items: flex-end;
  justify-content: center;
}
/* line 27, ../../../../source/sass/components/shoppingcart/_shoppingcart.scss */
.featured-products .product {
  text-align: center;
  text-decoration: none;
}
/* line 30, ../../../../source/sass/components/shoppingcart/_shoppingcart.scss */
.featured-products .product h4 {
  color: #282828;
}
/* line 33, ../../../../source/sass/components/shoppingcart/_shoppingcart.scss */
.featured-products .product .price {
  font-weight: 600;
  background-color: #080808;
  width: max-content;
  margin: 25px auto;
}

/* comingsoon */
/**/
/* line 9, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls {
  background-color: #f1f1f1;
  margin: 15px 0;
}
/* line 12, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
/* line 18, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls form {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  padding: 20px;
}
/* line 23, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls form div {
  display: flex;
  align-items: center;
  margin: 5px;
}
/* line 28, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls form select, .product-listing-page .controls form input {
  margin: 0 5px;
}
/* line 31, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls form ul {
  list-style: none;
}
/* line 35, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls #Form_ProductFilterForm_action_ProductFilterForm {
  display: none;
}
/* line 38, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls .control-pagination {
  width: max-content;
  margin: 0 auto;
}
/* line 41, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls .control-pagination .flex-container {
  position: relative;
  bottom: 15px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
/* line 48, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls .control-pagination a, .product-listing-page .controls .control-pagination span {
  margin: 0 10px;
}
/* line 51, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls .control-pagination a {
  text-decoration: none;
}
/* line 54, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .controls .control-pagination span {
  background: #ff7800;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 67, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .flex-container {
  align-items: center;
  justify-content: space-between;
}
/* line 70, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .flex-container p, .product-listing-page .product-listing .flex-container img, .product-listing-page .product-listing .flex-container a {
  margin: 0;
  text-align: center;
  text-decoration: none;
}
/* line 75, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .flex-container img {
  max-width: 300px;
}
/* line 79, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product-column-labels {
  padding: 5px 20px;
  border: 1px solid #ccc;
  border-right: none;
  border-left: none;
}
/* line 85, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product {
  text-decoration: none;
  padding-bottom: 20px;
  -webkit-transition: border-bottom 0.25s ease-out;
  -moz-transition: border-bottom 0.25s ease-out;
  -o-transition: border-bottom 0.25s ease-out;
  transition: border-bottom 0.25s ease-out;
  background: #ffffff;
  border-bottom: solid 1px #f1f1f1;
}
/* line 94, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product:hover {
  border-bottom: solid 1px #ff7800;
}
/* line 97, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product input {
  padding: 10px 0;
  text-align: center;
}
/* line 101, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product .button {
  border-radius: 0;
  padding: 15px 30px;
  margin: 0;
}
/* line 106, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product .product-listing-addtocartform {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  width: 100%;
}
/* line 111, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product .product-listing-addtocartform form {
  display: flex;
  justify-content: flex-end;
  flex-flow: row wrap;
  align-items: center;
}
/* line 118, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product .additional-details {
  font-size: 0.9em;
  font-style: italic;
}
/* line 127, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product form .text > label,
.product-listing-page .product-listing .product form .dropdown > label,
.product-listing-page .product-listing .product form .optionset > label,
.product-listing-page .product-listing .product form .checkboxset > label {
  display: none;
}
/* line 131, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product form .text {
  max-width: 90px;
}
/* line 135, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product form .product-option label {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-evenly;
}
/* line 142, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product form .field {
  display: inline-block;
  width: auto;
}
/* line 146, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product form .Actions {
  display: inline-block;
  width: auto;
}
/* line 149, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product form .Actions input {
  background-color: #ff7800;
  margin: 0;
  border-radius: 0;
  padding: 10px 30px;
}
/* line 154, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product form .Actions input:hover {
  background-color: #cc6000;
}
/* line 160, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
.product-listing-page .product-listing .product .coming-soon {
  font-size: 2em;
  line-height: 1.25;
}
@media screen and (max-width: 1024px) {
  /* line 160, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
  .product-listing-page .product-listing .product .coming-soon {
    font-size: 2em;
    line-height: 1.25;
  }
}
@media screen and (max-width: 600px) {
  /* line 160, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
  .product-listing-page .product-listing .product .coming-soon {
    font-size: 2em;
    line-height: 1;
  }
}

@media handheld, only screen and (max-width: 1024px) {
  /* line 170, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
  .product-listing-page .product-listing .product form {
    justify-content: center;
  }
}
@media handheld, only screen and (max-width: 750px) {
  /* line 181, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
  .product-listing-page .product-listing .product img {
    max-width: 100px;
  }
  /* line 184, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
  .product-listing-page .product-listing .product form label {
    display: block;
  }
  /* line 187, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
  .product-listing-page .product-listing .product .shoppingcart-addtocartform {
    width: 100%;
  }
  /* line 190, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
  .product-listing-page .product-listing .product .product-listing-addtocartform {
    justify-content: flex-start;
    width: 100%;
  }
  /* line 193, ../../../../source/sass/components/shoppingcart/_productlisting.scss */
  .product-listing-page .product-listing .product .product-listing-addtocartform form {
    justify-content: flex-start;
    flex-flow: column wrap;
    width: 100%;
  }
}
/* Slider */
/* line 3, ../../../../source/sass/components/slick/_slick.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 17, ../../../../source/sass/components/slick/_slick.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
/* line 24, ../../../../source/sass/components/slick/_slick.scss */
.slick-list:focus {
  outline: none;
}
/* line 28, ../../../../source/sass/components/slick/_slick.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 33, ../../../../source/sass/components/slick/_slick.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 42, ../../../../source/sass/components/slick/_slick.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* line 50, ../../../../source/sass/components/slick/_slick.scss */
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
/* line 56, ../../../../source/sass/components/slick/_slick.scss */
.slick-track:after {
  clear: both;
}
/* line 60, ../../../../source/sass/components/slick/_slick.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 64, ../../../../source/sass/components/slick/_slick.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
/* line 69, ../../../../source/sass/components/slick/_slick.scss */
[dir="rtl"] .slick-slide {
  float: right;
}
/* line 72, ../../../../source/sass/components/slick/_slick.scss */
.slick-slide img {
  display: block;
}
/* line 75, ../../../../source/sass/components/slick/_slick.scss */
.slick-slide.slick-loading img {
  display: none;
}
/* line 81, ../../../../source/sass/components/slick/_slick.scss */
.slick-slide.dragging img {
  pointer-events: none;
}
/* line 85, ../../../../source/sass/components/slick/_slick.scss */
.slick-initialized .slick-slide {
  display: block;
}
/* line 89, ../../../../source/sass/components/slick/_slick.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}
/* line 93, ../../../../source/sass/components/slick/_slick.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 99, ../../../../source/sass/components/slick/_slick.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* line 35, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-loading .slick-list {
  background: #fff url("/resources/themes/base/images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/resources/themes/base/webfonts/slick/slick.eot");
  src: url("/resources/themes/base/webfonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("/resources/themes/base/webfonts/slick/slick.woff") format("woff"), url("/resources/themes/base/webfonts/slick/slick.ttf") format("truetype"), url("/resources/themes/base/webfonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
/* line 53, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
/* line 71, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
/* line 75, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
/* line 79, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
/* line 82, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #ff7800;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 93, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-prev {
  left: -25px;
}
/* line 95, ../../../../source/sass/components/slick/_slick-theme.scss */
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
/* line 99, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-prev:before {
  content: "←";
}
/* line 101, ../../../../source/sass/components/slick/_slick-theme.scss */
[dir="rtl"] .slick-prev:before {
  content: "→";
}

/* line 107, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-next {
  right: -25px;
}
/* line 109, ../../../../source/sass/components/slick/_slick-theme.scss */
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
/* line 113, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-next:before {
  content: "→";
}
/* line 115, ../../../../source/sass/components/slick/_slick-theme.scss */
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
/* line 123, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

/* line 127, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
/* line 136, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
/* line 144, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
/* line 156, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
/* line 158, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
/* line 162, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 179, ../../../../source/sass/components/slick/_slick-theme.scss */
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Tabs */
/* CSS */
/* line 2, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs {
  position: relative;
}
/* line 4, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs .buttons {
  border-bottom: solid 1px #c2c8cf;
}
/* line 6, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs .buttons .buttons-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  width: 100%;
}
/* line 12, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs .buttons .button {
  cursor: pointer;
  padding: 15px 20px;
  position: relative;
  border-right: solid 1px #c2c8cf;
}
/* line 17, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs .buttons .button:last-child {
  border-right: none;
}
/* line 21, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs .buttons .button.selected {
  color: #ff7800;
  font-weight: 700;
}
/* line 27, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs .tabs .tab {
  padding: 20px 0;
}
/* line 31, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs .button-slide-next {
  position: absolute;
  top: 0;
  right: 0;
  background: #eaeaea;
  width: 50%;
  padding: 15px 0;
  margin: 10px 0;
  cursor: pointer;
  text-align: center;
}
/* line 41, ../../../../source/sass/components/tabs/_tabs.scss */
.content-layout-tabs .button-slide-next:after {
  content: "\f054";
  font-family: 'Font Awesome 6 Pro';
}

@media handheld, only screen and (max-width: 600px) {
  /* line 50, ../../../../source/sass/components/tabs/_tabs.scss */
  .content-layout-tabs .buttons .button {
    width: 46%;
    padding: 15px 2%;
    border: none;
  }
}
/* Cookie Banner */
/* line 1, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
.cookie-banner {
  background: #ff7800;
  bottom: 0;
  position: sticky;
}
/* line 5, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
.cookie-banner .cookie-banner-exclamation-notice {
  display: flex;
  justify-content: center;
}
/* line 8, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
.cookie-banner .cookie-banner-exclamation-notice .fa-exclamation-square {
  font-size: 6em;
}
/* line 13, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
.cookie-banner .cookie-banner-close .fa-times-circle {
  font-size: 1.5em;
}
/* line 15, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
.cookie-banner .cookie-banner-close .fa-times-circle:hover {
  cursor: pointer;
}
/* line 20, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
.cookie-banner p {
  font-size: 1em;
  color: #080808;
}
/* line 24, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
.cookie-banner a {
  color: #282828;
}
/* line 26, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
.cookie-banner a.button {
  background: #080808;
  border-radius: 0;
  color: #ffffff;
  padding: 10px 15px;
}

/**/
@media handheld, only screen and (max-width: 1024px) {
  /* line 37, ../../../../source/sass/components/cookiebanner/_cookie-banner.scss */
  .cookie-banner .cookie-banner-close {
    position: absolute;
    right: 0;
    top: 0;
  }
}
/* Territory Page */
/* line 2, ../../../../source/sass/components/territory/_territory.scss */
.territory-page ul li {
  color: #fff;
}
/* line 5, ../../../../source/sass/components/territory/_territory.scss */
.territory-page ul.legend {
  display: flex;
  list-style: none;
  padding: 20px;
  background-color: #282828;
  margin-left: 0;
}
/* line 11, ../../../../source/sass/components/territory/_territory.scss */
.territory-page ul.legend li {
  margin-left: 10px;
  color: #fff;
}
/* line 16, ../../../../source/sass/components/territory/_territory.scss */
.territory-page #map {
  margin-top: 50px;
}
/* line 19, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .agent-type-box {
  background-color: #282828;
  border: solid 2px #080808;
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0;
}
/* line 25, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .agent-type-box .flex-container > div {
  width: 100%;
}
/* line 28, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .agent-type-box h3 {
  color: #ff7800;
}
/* line 31, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .agent-type-box p, .territory-page .agent-type-box strong {
  color: #ffffff;
}
/* line 34, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .agent-type-box strong {
  min-width: 110px;
  margin-top: 10px;
  display: inline-block;
  width: 100%;
}
/* line 41, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .mobile-info {
  display: none;
}
/* line 44, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .information-block {
  position: relative;
}
/* line 47, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .face, .territory-page .face2 {
  border-radius: 50%;
  margin: 10px 0;
}
/* line 51, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .territory-of {
  white-space: pre-line;
}
/* line 54, ../../../../source/sass/components/territory/_territory.scss */
.territory-page .manager-contact-info {
  white-space: pre-line;
}

@media handheld, only screen and (max-width: 600px) {
  /* line 60, ../../../../source/sass/components/territory/_territory.scss */
  .territory-page .mobile-info {
    display: block;
  }
  /* line 63, ../../../../source/sass/components/territory/_territory.scss */
  .territory-page ul.legend {
    display: none;
  }
  /* line 66, ../../../../source/sass/components/territory/_territory.scss */
  .territory-page .map-flex {
    flex-flow: column-reverse;
  }
  /* line 69, ../../../../source/sass/components/territory/_territory.scss */
  .territory-page #map {
    margin-top: 0;
    height: 415px;
  }
}
/* Search */
/* line 1, ../../../../source/sass/components/search/_search.scss */
.search-query {
  background: #efefef;
  padding: 20px;
  margin-bottom: 20px;
  border: solid 1px #cccccc;
}
/* line 6, ../../../../source/sass/components/search/_search.scss */
.search-query h2 {
  font-size: 1.5em;
  line-height: 1;
  margin: 0;
}

/* line 12, ../../../../source/sass/components/search/_search.scss */
.search-result {
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: solid 1px #cccccc;
}
/* line 16, ../../../../source/sass/components/search/_search.scss */
.search-result mark {
  background: rgba(255, 255, 0, 0.25);
}

/* line 21, ../../../../source/sass/components/search/_search.scss */
#PageNumbers a {
  color: #080808;
  font-weight: bold;
  text-decoration: none;
}
/* line 25, ../../../../source/sass/components/search/_search.scss */
#PageNumbers a:hover {
  color: #282828;
}

/* Tippy */
/* line 1, ../../../../source/sass/components/tippy/_tippy.scss */
.tippy-content {
  color: #ffffff;
}
/* line 3, ../../../../source/sass/components/tippy/_tippy.scss */
.tippy-content p, .tippy-content ul, .tippy-content ol {
  color: #ffffff;
}

/* Fancybox */
/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
body.compensate-for-scrollbar {
  overflow: hidden;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-active {
  height: auto;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-container * {
  box-sizing: border-box;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.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 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease,visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity .25s ease 0s,visibility 0s ease 0s;
  visibility: visible;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-toolbar {
  right: 0;
  top: 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform,opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--image:before {
  display: none;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--html {
  padding: 6px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform,opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: grab;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-container [data-selectable=true] {
  cursor: text;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-spaceball {
  z-index: 1;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--video .fancybox-content {
  background: #000;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button:hover {
  color: #fff;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button:focus {
  outline: none;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button div {
  height: 100%;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
  display: none;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: 0px) {
  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-caption {
    padding: 75px 44px 25px 44px;
  }
}
/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-caption--separate {
  margin-top: -50px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-slide--image {
    padding: 6px 0;
  }

  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-close-small {
    right: -6px;
  }

  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: 0px) {
    /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
    .fancybox-caption {
      padding-left: 12px;
      padding-right: 12px;
    }
  }
}
/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share p {
  margin: 0;
  padding: 0;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button:hover {
  text-decoration: none;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button--fb {
  background: #3b5998;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button--fb:hover {
  background: #344e86;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button--pt {
  background: #bd081d;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button--pt:hover {
  background: #aa0719;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button--tw {
  background: #1da1f2;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__button svg path {
  fill: #fff;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs__list a:focus:before {
  opacity: .5;
}

/* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-thumbs {
    width: 110px;
  }

  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  /* line 1, ../../../../source/sass/components/fancybox/_fancybox.scss */
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/*# sourceMappingURL=common.css.map */
