@charset "UTF-8";
.flex-table {
  display: table;
}

.flex-table-item {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.flex-table-item-primary {
  width: 99%;
}

.container {
  width: 980px;
  margin-right: auto;
  margin-left: auto;
}
.container::before {
  display: table;
  content: "";
}
.container::after {
  display: table;
  clear: both;
  content: "";
}

.container-md {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.container-md::before {
  display: table;
  content: "";
}
.container-md::after {
  display: table;
  clear: both;
  content: "";
}

.container-lg {
  max-width: 1025px;
  margin-right: auto;
  margin-left: auto;
}
.container-lg::before {
  display: table;
  content: "";
}
.container-lg::after {
  display: table;
  clear: both;
  content: "";
}

.container-xl {
  max-width: 1460px;
  margin-right: auto;
  margin-left: auto;
}
.container-xl::before {
  display: table;
  content: "";
}
.container-xl::after {
  display: table;
  clear: both;
  content: "";
}

.columns {
  margin-right: -10px;
  margin-left: -10px;
}
.columns::before {
  display: table;
  content: "";
}
.columns::after {
  display: table;
  clear: both;
  content: "";
}

.column {
  float: left;
  padding-right: 10px;
  padding-left: 10px;
}

.one-third {
  width: 33.333333%;
}

.two-thirds {
  width: 66.666667%;
}

.one-fourth {
  width: 25%;
}

.one-half {
  width: 50%;
}

.three-fourths {
  width: 75%;
}

.one-fifth {
  width: 20%;
}

.four-fifths {
  width: 80%;
}

.single-column {
  padding-right: 10px;
  padding-left: 10px;
}

.table-column {
  display: table-cell;
  width: 1%;
  padding-right: 10px;
  padding-left: 10px;
  vertical-align: top;
}

.centered {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 600px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 800px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1460px) {
  .col-xl-1 {
    width: 8.3333333333%;
  }
  .col-xl-2 {
    width: 16.6666666667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.3333333333%;
  }
  .col-xl-5 {
    width: 41.6666666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.3333333333%;
  }
  .col-xl-8 {
    width: 66.6666666667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.3333333333%;
  }
  .col-xl-11 {
    width: 91.6666666667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}
.gut-sm {
  margin-right: -6px;
  margin-left: -6px;
}
.gut-sm > [class*=col-] {
  padding-right: 6px !important;
  padding-left: 6px !important;
}

.gut-md {
  margin-right: -12px;
  margin-left: -12px;
}
.gut-md > [class*=col-] {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.gut-lg {
  margin-right: -24px;
  margin-left: -24px;
}
.gut-lg > [class*=col-] {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.anim-fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.anim-fade-in.fast {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Fade in and slide up an element */
.anim-fade-up {
  opacity: 0;
  -webkit-animation-name: fade-up;
  animation-name: fade-up;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes fade-up {
  0% {
    opacity: 0.8;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fade-up {
  0% {
    opacity: 0.8;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Fade an element out and slide down */
.anim-fade-down {
  -webkit-animation-name: fade-down;
  animation-name: fade-down;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes fade-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes fade-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* Grow an element width from 0 to 100% */
.anim-grow-x {
  width: 0%;
  -webkit-animation-name: grow-x;
  animation-name: grow-x;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes grow-x {
  to {
    width: 100%;
  }
}

@keyframes grow-x {
  to {
    width: 100%;
  }
}
/* Shrink an element from 100% to 0% */
.anim-shrink-x {
  -webkit-animation-name: shrink-x;
  animation-name: shrink-x;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes shrink-x {
  to {
    width: 0%;
  }
}

@keyframes shrink-x {
  to {
    width: 0%;
  }
}
/* Fade in an element and scale it fast */
.anim-scale-in {
  -webkit-animation-name: scale-in;
  animation-name: scale-in;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
  animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
}

@-webkit-keyframes scale-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Pulse an element's opacity */
.anim-pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0.3;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
/* Pulse in an element */
.anim-pulse-in {
  -webkit-animation-name: pulse-in;
  animation-name: pulse-in;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

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

@keyframes pulse-in {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* Add a gray border */
.border {
  border: 1px #e5e5e5 solid !important;
}

/* Add a gray border to the top */
.border-top {
  border-top: 1px #e5e5e5 solid !important;
}

/* Add a gray border to the right */
.border-right {
  border-right: 1px #e5e5e5 solid !important;
}

/* Add a gray border to the bottom */
.border-bottom {
  border-bottom: 1px #e5e5e5 solid !important;
}

/* Add a gray border to the left */
.border-left {
  border-left: 1px #e5e5e5 solid !important;
}

/* Add a gray border to the left and right */
.border-y {
  border-top: 1px #e5e5e5 solid !important;
  border-bottom: 1px #e5e5e5 solid !important;
}

/* Use with .border to turn the border blue */
.border-blue {
  border-color: #c5d5dd !important;
}

/* Use with .border to turn the border gray-light */
.border-gray-light {
  border-color: #eee !important;
}

/* Use with .border to turn the border gray-dark */
.border-gray-dark {
  border-color: #ddd !important;
}

/* Remove all borders */
.border-0 {
  border: 0 !important;
}

/* Remove the top border */
.border-top-0 {
  border-top: 0 !important;
}

/* Remove the right border */
.border-right-0 {
  border-right: 0 !important;
}

/* Remove the bottom border */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* Remove the left border */
.border-left-0 {
  border-left: 0 !important;
}

/* Remove the border-radius */
.rounded-0 {
  border-radius: 0 !important;
}

/* Add a border-radius to all corners */
.rounded-1 {
  border-radius: 3px !important;
}

/* Add a 2x border-radius to all corners */
.rounded-2 {
  border-radius: 6px !important;
}

/* Add a box shadow */
.box-shadow {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) !important;
}

/* Add a large box shadow */
.box-shadow-large {
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important;
}

.bg-shade-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.065)), to(rgba(0, 0, 0, 0))) !important;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.065), rgba(0, 0, 0, 0)) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 200px !important;
}

/* Set the text color to $text-blue */
.text-blue {
  color: #4078c0 !important;
}

/* Set the text color to $text-red */
.text-red {
  color: #bd2c00 !important;
}

/* Set the text color to $text-gray-light */
.text-gray-light {
  color: #999 !important;
}

/* Set the text color to $text-gray */
.text-gray {
  color: #767676 !important;
}

/* Set the text color to $text-gray-dark */
.text-gray-dark {
  color: #333 !important;
}

/* Set the text color to $text-green */
.text-green {
  color: #55a532 !important;
}

/* Set the text color to $text-orange */
.text-orange {
  color: #c9510c !important;
}

/* Set the text color to $text-purple */
.text-purple {
  color: #6e5494 !important;
}

/* Set the text color to $text-white */
.text-white {
  color: #fff !important;
}

/* Set the text color to inherit */
.text-inherit {
  color: inherit !important;
}

/* Set the link color to $text-blue */
.link-blue {
  color: #4078c0 !important;
}

/* Set the link color to $text-gray-dark */
.link-gray-dark {
  color: #333 !important;
}

/* Set the link color to $text-gray */
.link-gray {
  color: #767676 !important;
}

.text-renamed {
  color: #fffa5d !important;
}

.text-pending {
  color: #cea61b !important;
}

/* Make a link $text-gray, then $text-blue on hover */
.muted-link {
  color: #767676 !important;
}
.muted-link:hover {
  color: #4078c0 !important;
  text-decoration: none;
}

/* Set position to static */
.position-static {
  position: static !important;
}

/* Set position to relative */
.position-relative {
  position: relative !important;
}

/* Set position to absolute */
.position-absolute {
  position: absolute !important;
}

/* Set position to fixed */
.position-fixed {
  position: fixed !important;
}

/* Set top 0 */
.top-0 {
  top: 0 !important;
}

/* Set right 0 */
.right-0 {
  right: 0 !important;
}

/* Set bottom 0 */
.bottom-0 {
  bottom: 0 !important;
}

/* Set left 0 */
.left-0 {
  left: 0 !important;
}

/* Vertical align middle */
.v-align-middle {
  vertical-align: middle !important;
}

/* Vertical align top */
.v-align-top {
  vertical-align: top !important;
}

/* Vertical align bottom */
.v-align-bottom {
  vertical-align: bottom !important;
}

/* Vertical align to the top of the text */
.v-align-text-top {
  vertical-align: text-top !important;
}

/* Vertical align to the bottom of the text */
.v-align-text-bottom {
  vertical-align: text-bottom !important;
}

/* Set the overflow hidden */
.overflow-hidden {
  overflow: hidden !important;
}

/* Set the overflow scroll */
.overflow-scroll {
  overflow: scroll !important;
}

/* Set the overflow auto */
.overflow-auto {
  overflow: auto !important;
}

/* Clear floats around the element */
.clearfix::before {
  display: table;
  content: "";
}
.clearfix::after {
  display: table;
  clear: both;
  content: "";
}

/* Float to the right */
.float-right {
  float: right !important;
}

/* Float to the left */
.float-left {
  float: left !important;
}

/* Don't float left or right */
.float-none {
  float: none !important;
}

@media (min-width: 600px) {
  /* Float to the left at the sm breakpoint */
  .float-sm-left {
    float: left !important;
  }
  /* Float to the right at the sm breakpoint */
  .float-sm-right {
    float: right !important;
  }
  /* No float at the sm breakpoint */
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 800px) {
  /* Float to the left at the md breakpoint */
  .float-md-left {
    float: left !important;
  }
  /* Float to the right at the md breakpoint */
  .float-md-right {
    float: right !important;
  }
  /* No float at the md breakpoint */
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1025px) {
  /* Float to the left at the lg breakpoint */
  .float-lg-left {
    float: left !important;
  }
  /* Float to the right at the lg breakpoint */
  .float-lg-right {
    float: right !important;
  }
  /* No float at the lg breakpoint */
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1460px) {
  /* Float to the left at the xl breakpoint */
  .float-xl-left {
    float: left !important;
  }
  /* Float to the right at the xl breakpoint */
  .float-xl-right {
    float: right !important;
  }
  /* No float at the xl breakpoint */
  .float-xl-none {
    float: none !important;
  }
}
/* Max width 100% */
.width-fit {
  max-width: 100% !important;
}

/* Set the width to 100% */
.width-full {
  width: 100% !important;
}

/* Set the height to 100% */
.height-full {
  height: 100% !important;
}

/* Remove min-width from element */
.min-width-0 {
  min-width: 0 !important;
}

/* Visibility hidden */
.v-hidden {
  visibility: hidden !important;
}

/* Visibility visible */
.v-visible {
  visibility: visible !important;
}

/* Set the display to table */
.d-table {
  display: table !important;
}

/* Set the display to table-cell */
.d-table-cell {
  display: table-cell !important;
}

/* Set the table-layout to fixed */
.table-fixed {
  table-layout: fixed !important;
}

/* Set the display to block */
.d-block {
  display: block !important;
}

/* Set the display to inline */
.d-inline {
  display: inline !important;
}

/* Set the display to inline-block */
.d-inline-block {
  display: inline-block !important;
}

/* Set the display to none */
.d-none {
  display: none !important;
}

@media (min-width: 600px) {
  /* Set the display to table at the sm breakpoint */
  .d-sm-table {
    display: table !important;
  }
  /* Set the display to table cell at the sm breakpoint */
  .d-sm-table-cell {
    display: table-cell !important;
  }
  /* Set the display to block at the sm breakpoint */
  .d-sm-block {
    display: block !important;
  }
  /* Set the display to inline at the sm breakpoint */
  .d-sm-inline {
    display: inline !important;
  }
  /* Set the display to inline block at the sm breakpoint */
  .d-sm-inline-block {
    display: inline-block !important;
  }
  /* Set the display to none at the sm breakpoint */
  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 800px) {
  /* Set the display to table at the md breakpoint */
  .d-md-table {
    display: table !important;
  }
  /* Set the display to table cell at the md breakpoint */
  .d-md-table-cell {
    display: table-cell !important;
  }
  /* Set the display to block at the md breakpoint */
  .d-md-block {
    display: block !important;
  }
  /* Set the display to inline at the md breakpoint */
  .d-md-inline {
    display: inline !important;
  }
  /* Set the display to inline block at the md breakpoint */
  .d-md-inline-block {
    display: inline-block !important;
  }
  /* Set the display to none at the md breakpoint */
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  /* Set the display to table at the lg breakpoint */
  .d-lg-table {
    display: table !important;
  }
  /* Set the display to table cell at the lg breakpoint */
  .d-lg-table-cell {
    display: table-cell !important;
  }
  /* Set the display to block at the lg breakpoint */
  .d-lg-block {
    display: block !important;
  }
  /* Set the display to inline at the lg breakpoint */
  .d-lg-inline {
    display: inline !important;
  }
  /* Set the display to inline block at the lg breakpoint */
  .d-lg-inline-block {
    display: inline-block !important;
  }
  /* Set the display to none at the lg breakpoint */
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1460px) {
  /* Set the display to table at the xl breakpoint */
  .d-xl-table {
    display: table !important;
  }
  /* Set the display to table cell at the xl breakpoint */
  .d-xl-table-cell {
    display: table-cell !important;
  }
  /* Set the display to block at the xl breakpoint */
  .d-xl-block {
    display: block !important;
  }
  /* Set the display to inline at the xl breakpoint */
  .d-xl-inline {
    display: inline !important;
  }
  /* Set the display to inline block at the xl breakpoint */
  .d-xl-inline-block {
    display: inline-block !important;
  }
  /* Set the display to none at the xl breakpoint */
  .d-xl-none {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .hide-sm {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 800px) {
  .hide-md {
    display: none !important;
  }
}
@media (min-width: 800px) and (max-width: 1025px) {
  .hide-lg {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .hide-xl {
    display: none !important;
  }
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-justify-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.flex-justify-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.flex-justify-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.flex-justify-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.flex-justify-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.flex-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.flex-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.flex-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.flex-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.flex-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.flex-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.flex-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.flex-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.flex-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.flex-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.flex-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.flex-auto {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.flex-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.flex-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.flex-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.flex-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.flex-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 600px) {
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-justify-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .flex-sm-justify-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .flex-sm-justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .flex-sm-justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .flex-sm-justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .flex-sm-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .flex-sm-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .flex-sm-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .flex-sm-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .flex-sm-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .flex-sm-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .flex-sm-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .flex-sm-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .flex-sm-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .flex-sm-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .flex-sm-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .flex-sm-auto {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .flex-sm-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .flex-sm-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .flex-sm-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .flex-sm-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .flex-sm-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 800px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-justify-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .flex-md-justify-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .flex-md-justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .flex-md-justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .flex-md-justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .flex-md-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .flex-md-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .flex-md-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .flex-md-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .flex-md-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .flex-md-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .flex-md-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .flex-md-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .flex-md-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .flex-md-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .flex-md-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .flex-md-auto {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .flex-md-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .flex-md-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .flex-md-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .flex-md-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .flex-md-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1025px) {
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-justify-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .flex-lg-justify-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .flex-lg-justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .flex-lg-justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .flex-lg-justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .flex-lg-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .flex-lg-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .flex-lg-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .flex-lg-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .flex-lg-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .flex-lg-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .flex-lg-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .flex-lg-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .flex-lg-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .flex-lg-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .flex-lg-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .flex-lg-auto {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .flex-lg-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .flex-lg-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .flex-lg-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .flex-lg-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .flex-lg-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1460px) {
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-justify-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .flex-xl-justify-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .flex-xl-justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .flex-xl-justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .flex-xl-justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .flex-xl-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .flex-xl-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .flex-xl-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .flex-xl-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .flex-xl-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .flex-xl-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .flex-xl-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .flex-xl-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .flex-xl-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .flex-xl-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .flex-xl-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .flex-xl-auto {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .flex-xl-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .flex-xl-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .flex-xl-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .flex-xl-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .flex-xl-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/* Set a 0 margin to all sides */
.m-0 {
  margin: 0 !important;
}

/* Set a 0 margin on the top */
.mt-0 {
  margin-top: 0 !important;
}

/* Set a 0 margin on the right */
.mr-0 {
  margin-right: 0 !important;
}

/* Set a 0 margin on the bottom */
.mb-0 {
  margin-bottom: 0 !important;
}

/* Set a 0 margin on the left */
.ml-0 {
  margin-left: 0 !important;
}

/* Set a 0 margin on the left & right */
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Set a 0 margin on the top & bottom */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Set a 4px margin to all sides */
.m-1 {
  margin: 4px !important;
}

/* Set a 4px margin on the top */
.mt-1 {
  margin-top: 4px !important;
}

/* Set a 4px margin on the right */
.mr-1 {
  margin-right: 4px !important;
}

/* Set a 4px margin on the bottom */
.mb-1 {
  margin-bottom: 4px !important;
}

/* Set a 4px margin on the left */
.ml-1 {
  margin-left: 4px !important;
}

/* Set a 4px margin on the left & right */
.mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

/* Set a 4px margin on the top & bottom */
.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

/* Set a 6px margin to all sides */
.m-2 {
  margin: 6px !important;
}

/* Set a 6px margin on the top */
.mt-2 {
  margin-top: 6px !important;
}

/* Set a 6px margin on the right */
.mr-2 {
  margin-right: 6px !important;
}

/* Set a 6px margin on the bottom */
.mb-2 {
  margin-bottom: 6px !important;
}

/* Set a 6px margin on the left */
.ml-2 {
  margin-left: 6px !important;
}

/* Set a 6px margin on the left & right */
.mx-2 {
  margin-right: 6px !important;
  margin-left: 6px !important;
}

/* Set a 6px margin on the top & bottom */
.my-2 {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

/* Set a 12px margin to all sides */
.m-3 {
  margin: 12px !important;
}

/* Set a 12px margin on the top */
.mt-3 {
  margin-top: 12px !important;
}

/* Set a 12px margin on the right */
.mr-3 {
  margin-right: 12px !important;
}

/* Set a 12px margin on the bottom */
.mb-3 {
  margin-bottom: 12px !important;
}

/* Set a 12px margin on the left */
.ml-3 {
  margin-left: 12px !important;
}

/* Set a 12px margin on the left & right */
.mx-3 {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

/* Set a 12px margin on the top & bottom */
.my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

/* Set a 24px margin to all sides */
.m-4 {
  margin: 24px !important;
}

/* Set a 24px margin on the top */
.mt-4 {
  margin-top: 24px !important;
}

/* Set a 24px margin on the right */
.mr-4 {
  margin-right: 24px !important;
}

/* Set a 24px margin on the bottom */
.mb-4 {
  margin-bottom: 24px !important;
}

/* Set a 24px margin on the left */
.ml-4 {
  margin-left: 24px !important;
}

/* Set a 24px margin on the left & right */
.mx-4 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

/* Set a 24px margin on the top & bottom */
.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/* Set a 36px margin to all sides */
.m-5 {
  margin: 36px !important;
}

/* Set a 36px margin on the top */
.mt-5 {
  margin-top: 36px !important;
}

/* Set a 36px margin on the right */
.mr-5 {
  margin-right: 36px !important;
}

/* Set a 36px margin on the bottom */
.mb-5 {
  margin-bottom: 36px !important;
}

/* Set a 36px margin on the left */
.ml-5 {
  margin-left: 36px !important;
}

/* Set a 36px margin on the left & right */
.mx-5 {
  margin-right: 36px !important;
  margin-left: 36px !important;
}

/* Set a 36px margin on the top & bottom */
.my-5 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

/* Set a 48px margin to all sides */
.m-6 {
  margin: 48px !important;
}

/* Set a 48px margin on the top */
.mt-6 {
  margin-top: 48px !important;
}

/* Set a 48px margin on the right */
.mr-6 {
  margin-right: 48px !important;
}

/* Set a 48px margin on the bottom */
.mb-6 {
  margin-bottom: 48px !important;
}

/* Set a 48px margin on the left */
.ml-6 {
  margin-left: 48px !important;
}

/* Set a 48px margin on the left & right */
.mx-6 {
  margin-right: 48px !important;
  margin-left: 48px !important;
}

/* Set a 48px margin on the top & bottom */
.my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

/* Set a 72px margin to all sides */
.m-7 {
  margin: 72px !important;
}

/* Set a 72px margin on the top */
.mt-7 {
  margin-top: 72px !important;
}

/* Set a 72px margin on the right */
.mr-7 {
  margin-right: 72px !important;
}

/* Set a 72px margin on the bottom */
.mb-7 {
  margin-bottom: 72px !important;
}

/* Set a 72px margin on the left */
.ml-7 {
  margin-left: 72px !important;
}

/* Set a 72px margin on the left & right */
.mx-7 {
  margin-right: 72px !important;
  margin-left: 72px !important;
}

/* Set a 72px margin on the top & bottom */
.my-7 {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
}

/* Set a 96px margin to all sides */
.m-8 {
  margin: 96px !important;
}

/* Set a 96px margin on the top */
.mt-8 {
  margin-top: 96px !important;
}

/* Set a 96px margin on the right */
.mr-8 {
  margin-right: 96px !important;
}

/* Set a 96px margin on the bottom */
.mb-8 {
  margin-bottom: 96px !important;
}

/* Set a 96px margin on the left */
.ml-8 {
  margin-left: 96px !important;
}

/* Set a 96px margin on the left & right */
.mx-8 {
  margin-right: 96px !important;
  margin-left: 96px !important;
}

/* Set a 96px margin on the top & bottom */
.my-8 {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

/* Set a 144px margin to all sides */
.m-9 {
  margin: 144px !important;
}

/* Set a 144px margin on the top */
.mt-9 {
  margin-top: 144px !important;
}

/* Set a 144px margin on the right */
.mr-9 {
  margin-right: 144px !important;
}

/* Set a 144px margin on the bottom */
.mb-9 {
  margin-bottom: 144px !important;
}

/* Set a 144px margin on the left */
.ml-9 {
  margin-left: 144px !important;
}

/* Set a 144px margin on the left & right */
.mx-9 {
  margin-right: 144px !important;
  margin-left: 144px !important;
}

/* Set a 144px margin on the top & bottom */
.my-9 {
  margin-top: 144px !important;
  margin-bottom: 144px !important;
}

/* Set a 216px margin to all sides */
.m-10 {
  margin: 216px !important;
}

/* Set a 216px margin on the top */
.mt-10 {
  margin-top: 216px !important;
}

/* Set a 216px margin on the right */
.mr-10 {
  margin-right: 216px !important;
}

/* Set a 216px margin on the bottom */
.mb-10 {
  margin-bottom: 216px !important;
}

/* Set a 216px margin on the left */
.ml-10 {
  margin-left: 216px !important;
}

/* Set a 216px margin on the left & right */
.mx-10 {
  margin-right: 216px !important;
  margin-left: 216px !important;
}

/* Set a 216px margin on the top & bottom */
.my-10 {
  margin-top: 216px !important;
  margin-bottom: 216px !important;
}

@media (min-width: 600px) {
  /* Set a 0 margin to all sides at the breakpoint sm */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* Set a 0 margin on the top at the breakpoint sm */
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  /* Set a 0 margin on the right at the breakpoint sm */
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  /* Set a 0 margin on the bottom at the breakpoint sm */
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  /* Set a 0 margin on the left at the breakpoint sm */
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  /* Set a 0 margin on the left & right at the breakpoint sm */
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* Set a 0 margin on the top & bottom at the breakpoint sm */
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 600px) {
  /* Set a 4px margin to all sides at the breakpoint sm */
  .m-sm-1 {
    margin: 4px !important;
  }
  /* Set a 4px margin on the top at the breakpoint sm */
  .mt-sm-1 {
    margin-top: 4px !important;
  }
  /* Set a 4px margin on the right at the breakpoint sm */
  .mr-sm-1 {
    margin-right: 4px !important;
  }
  /* Set a 4px margin on the bottom at the breakpoint sm */
  .mb-sm-1 {
    margin-bottom: 4px !important;
  }
  /* Set a 4px margin on the left at the breakpoint sm */
  .ml-sm-1 {
    margin-left: 4px !important;
  }
  /* Set a 4px margin on the left & right at the breakpoint sm */
  .mx-sm-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  /* Set a 4px margin on the top & bottom at the breakpoint sm */
  .my-sm-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 6px margin to all sides at the breakpoint sm */
  .m-sm-2 {
    margin: 6px !important;
  }
  /* Set a 6px margin on the top at the breakpoint sm */
  .mt-sm-2 {
    margin-top: 6px !important;
  }
  /* Set a 6px margin on the right at the breakpoint sm */
  .mr-sm-2 {
    margin-right: 6px !important;
  }
  /* Set a 6px margin on the bottom at the breakpoint sm */
  .mb-sm-2 {
    margin-bottom: 6px !important;
  }
  /* Set a 6px margin on the left at the breakpoint sm */
  .ml-sm-2 {
    margin-left: 6px !important;
  }
  /* Set a 6px margin on the left & right at the breakpoint sm */
  .mx-sm-2 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }
  /* Set a 6px margin on the top & bottom at the breakpoint sm */
  .my-sm-2 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 12px margin to all sides at the breakpoint sm */
  .m-sm-3 {
    margin: 12px !important;
  }
  /* Set a 12px margin on the top at the breakpoint sm */
  .mt-sm-3 {
    margin-top: 12px !important;
  }
  /* Set a 12px margin on the right at the breakpoint sm */
  .mr-sm-3 {
    margin-right: 12px !important;
  }
  /* Set a 12px margin on the bottom at the breakpoint sm */
  .mb-sm-3 {
    margin-bottom: 12px !important;
  }
  /* Set a 12px margin on the left at the breakpoint sm */
  .ml-sm-3 {
    margin-left: 12px !important;
  }
  /* Set a 12px margin on the left & right at the breakpoint sm */
  .mx-sm-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  /* Set a 12px margin on the top & bottom at the breakpoint sm */
  .my-sm-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 24px margin to all sides at the breakpoint sm */
  .m-sm-4 {
    margin: 24px !important;
  }
  /* Set a 24px margin on the top at the breakpoint sm */
  .mt-sm-4 {
    margin-top: 24px !important;
  }
  /* Set a 24px margin on the right at the breakpoint sm */
  .mr-sm-4 {
    margin-right: 24px !important;
  }
  /* Set a 24px margin on the bottom at the breakpoint sm */
  .mb-sm-4 {
    margin-bottom: 24px !important;
  }
  /* Set a 24px margin on the left at the breakpoint sm */
  .ml-sm-4 {
    margin-left: 24px !important;
  }
  /* Set a 24px margin on the left & right at the breakpoint sm */
  .mx-sm-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  /* Set a 24px margin on the top & bottom at the breakpoint sm */
  .my-sm-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 36px margin to all sides at the breakpoint sm */
  .m-sm-5 {
    margin: 36px !important;
  }
  /* Set a 36px margin on the top at the breakpoint sm */
  .mt-sm-5 {
    margin-top: 36px !important;
  }
  /* Set a 36px margin on the right at the breakpoint sm */
  .mr-sm-5 {
    margin-right: 36px !important;
  }
  /* Set a 36px margin on the bottom at the breakpoint sm */
  .mb-sm-5 {
    margin-bottom: 36px !important;
  }
  /* Set a 36px margin on the left at the breakpoint sm */
  .ml-sm-5 {
    margin-left: 36px !important;
  }
  /* Set a 36px margin on the left & right at the breakpoint sm */
  .mx-sm-5 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  /* Set a 36px margin on the top & bottom at the breakpoint sm */
  .my-sm-5 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 48px margin to all sides at the breakpoint sm */
  .m-sm-6 {
    margin: 48px !important;
  }
  /* Set a 48px margin on the top at the breakpoint sm */
  .mt-sm-6 {
    margin-top: 48px !important;
  }
  /* Set a 48px margin on the right at the breakpoint sm */
  .mr-sm-6 {
    margin-right: 48px !important;
  }
  /* Set a 48px margin on the bottom at the breakpoint sm */
  .mb-sm-6 {
    margin-bottom: 48px !important;
  }
  /* Set a 48px margin on the left at the breakpoint sm */
  .ml-sm-6 {
    margin-left: 48px !important;
  }
  /* Set a 48px margin on the left & right at the breakpoint sm */
  .mx-sm-6 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  /* Set a 48px margin on the top & bottom at the breakpoint sm */
  .my-sm-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 72px margin to all sides at the breakpoint sm */
  .m-sm-7 {
    margin: 72px !important;
  }
  /* Set a 72px margin on the top at the breakpoint sm */
  .mt-sm-7 {
    margin-top: 72px !important;
  }
  /* Set a 72px margin on the right at the breakpoint sm */
  .mr-sm-7 {
    margin-right: 72px !important;
  }
  /* Set a 72px margin on the bottom at the breakpoint sm */
  .mb-sm-7 {
    margin-bottom: 72px !important;
  }
  /* Set a 72px margin on the left at the breakpoint sm */
  .ml-sm-7 {
    margin-left: 72px !important;
  }
  /* Set a 72px margin on the left & right at the breakpoint sm */
  .mx-sm-7 {
    margin-right: 72px !important;
    margin-left: 72px !important;
  }
  /* Set a 72px margin on the top & bottom at the breakpoint sm */
  .my-sm-7 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 96px margin to all sides at the breakpoint sm */
  .m-sm-8 {
    margin: 96px !important;
  }
  /* Set a 96px margin on the top at the breakpoint sm */
  .mt-sm-8 {
    margin-top: 96px !important;
  }
  /* Set a 96px margin on the right at the breakpoint sm */
  .mr-sm-8 {
    margin-right: 96px !important;
  }
  /* Set a 96px margin on the bottom at the breakpoint sm */
  .mb-sm-8 {
    margin-bottom: 96px !important;
  }
  /* Set a 96px margin on the left at the breakpoint sm */
  .ml-sm-8 {
    margin-left: 96px !important;
  }
  /* Set a 96px margin on the left & right at the breakpoint sm */
  .mx-sm-8 {
    margin-right: 96px !important;
    margin-left: 96px !important;
  }
  /* Set a 96px margin on the top & bottom at the breakpoint sm */
  .my-sm-8 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 144px margin to all sides at the breakpoint sm */
  .m-sm-9 {
    margin: 144px !important;
  }
  /* Set a 144px margin on the top at the breakpoint sm */
  .mt-sm-9 {
    margin-top: 144px !important;
  }
  /* Set a 144px margin on the right at the breakpoint sm */
  .mr-sm-9 {
    margin-right: 144px !important;
  }
  /* Set a 144px margin on the bottom at the breakpoint sm */
  .mb-sm-9 {
    margin-bottom: 144px !important;
  }
  /* Set a 144px margin on the left at the breakpoint sm */
  .ml-sm-9 {
    margin-left: 144px !important;
  }
  /* Set a 144px margin on the left & right at the breakpoint sm */
  .mx-sm-9 {
    margin-right: 144px !important;
    margin-left: 144px !important;
  }
  /* Set a 144px margin on the top & bottom at the breakpoint sm */
  .my-sm-9 {
    margin-top: 144px !important;
    margin-bottom: 144px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 216px margin to all sides at the breakpoint sm */
  .m-sm-10 {
    margin: 216px !important;
  }
  /* Set a 216px margin on the top at the breakpoint sm */
  .mt-sm-10 {
    margin-top: 216px !important;
  }
  /* Set a 216px margin on the right at the breakpoint sm */
  .mr-sm-10 {
    margin-right: 216px !important;
  }
  /* Set a 216px margin on the bottom at the breakpoint sm */
  .mb-sm-10 {
    margin-bottom: 216px !important;
  }
  /* Set a 216px margin on the left at the breakpoint sm */
  .ml-sm-10 {
    margin-left: 216px !important;
  }
  /* Set a 216px margin on the left & right at the breakpoint sm */
  .mx-sm-10 {
    margin-right: 216px !important;
    margin-left: 216px !important;
  }
  /* Set a 216px margin on the top & bottom at the breakpoint sm */
  .my-sm-10 {
    margin-top: 216px !important;
    margin-bottom: 216px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 0 margin to all sides at the breakpoint md */
  .m-md-0 {
    margin: 0 !important;
  }
  /* Set a 0 margin on the top at the breakpoint md */
  .mt-md-0 {
    margin-top: 0 !important;
  }
  /* Set a 0 margin on the right at the breakpoint md */
  .mr-md-0 {
    margin-right: 0 !important;
  }
  /* Set a 0 margin on the bottom at the breakpoint md */
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  /* Set a 0 margin on the left at the breakpoint md */
  .ml-md-0 {
    margin-left: 0 !important;
  }
  /* Set a 0 margin on the left & right at the breakpoint md */
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* Set a 0 margin on the top & bottom at the breakpoint md */
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 800px) {
  /* Set a 4px margin to all sides at the breakpoint md */
  .m-md-1 {
    margin: 4px !important;
  }
  /* Set a 4px margin on the top at the breakpoint md */
  .mt-md-1 {
    margin-top: 4px !important;
  }
  /* Set a 4px margin on the right at the breakpoint md */
  .mr-md-1 {
    margin-right: 4px !important;
  }
  /* Set a 4px margin on the bottom at the breakpoint md */
  .mb-md-1 {
    margin-bottom: 4px !important;
  }
  /* Set a 4px margin on the left at the breakpoint md */
  .ml-md-1 {
    margin-left: 4px !important;
  }
  /* Set a 4px margin on the left & right at the breakpoint md */
  .mx-md-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  /* Set a 4px margin on the top & bottom at the breakpoint md */
  .my-md-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 6px margin to all sides at the breakpoint md */
  .m-md-2 {
    margin: 6px !important;
  }
  /* Set a 6px margin on the top at the breakpoint md */
  .mt-md-2 {
    margin-top: 6px !important;
  }
  /* Set a 6px margin on the right at the breakpoint md */
  .mr-md-2 {
    margin-right: 6px !important;
  }
  /* Set a 6px margin on the bottom at the breakpoint md */
  .mb-md-2 {
    margin-bottom: 6px !important;
  }
  /* Set a 6px margin on the left at the breakpoint md */
  .ml-md-2 {
    margin-left: 6px !important;
  }
  /* Set a 6px margin on the left & right at the breakpoint md */
  .mx-md-2 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }
  /* Set a 6px margin on the top & bottom at the breakpoint md */
  .my-md-2 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 12px margin to all sides at the breakpoint md */
  .m-md-3 {
    margin: 12px !important;
  }
  /* Set a 12px margin on the top at the breakpoint md */
  .mt-md-3 {
    margin-top: 12px !important;
  }
  /* Set a 12px margin on the right at the breakpoint md */
  .mr-md-3 {
    margin-right: 12px !important;
  }
  /* Set a 12px margin on the bottom at the breakpoint md */
  .mb-md-3 {
    margin-bottom: 12px !important;
  }
  /* Set a 12px margin on the left at the breakpoint md */
  .ml-md-3 {
    margin-left: 12px !important;
  }
  /* Set a 12px margin on the left & right at the breakpoint md */
  .mx-md-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  /* Set a 12px margin on the top & bottom at the breakpoint md */
  .my-md-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 24px margin to all sides at the breakpoint md */
  .m-md-4 {
    margin: 24px !important;
  }
  /* Set a 24px margin on the top at the breakpoint md */
  .mt-md-4 {
    margin-top: 24px !important;
  }
  /* Set a 24px margin on the right at the breakpoint md */
  .mr-md-4 {
    margin-right: 24px !important;
  }
  /* Set a 24px margin on the bottom at the breakpoint md */
  .mb-md-4 {
    margin-bottom: 24px !important;
  }
  /* Set a 24px margin on the left at the breakpoint md */
  .ml-md-4 {
    margin-left: 24px !important;
  }
  /* Set a 24px margin on the left & right at the breakpoint md */
  .mx-md-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  /* Set a 24px margin on the top & bottom at the breakpoint md */
  .my-md-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 36px margin to all sides at the breakpoint md */
  .m-md-5 {
    margin: 36px !important;
  }
  /* Set a 36px margin on the top at the breakpoint md */
  .mt-md-5 {
    margin-top: 36px !important;
  }
  /* Set a 36px margin on the right at the breakpoint md */
  .mr-md-5 {
    margin-right: 36px !important;
  }
  /* Set a 36px margin on the bottom at the breakpoint md */
  .mb-md-5 {
    margin-bottom: 36px !important;
  }
  /* Set a 36px margin on the left at the breakpoint md */
  .ml-md-5 {
    margin-left: 36px !important;
  }
  /* Set a 36px margin on the left & right at the breakpoint md */
  .mx-md-5 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  /* Set a 36px margin on the top & bottom at the breakpoint md */
  .my-md-5 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 48px margin to all sides at the breakpoint md */
  .m-md-6 {
    margin: 48px !important;
  }
  /* Set a 48px margin on the top at the breakpoint md */
  .mt-md-6 {
    margin-top: 48px !important;
  }
  /* Set a 48px margin on the right at the breakpoint md */
  .mr-md-6 {
    margin-right: 48px !important;
  }
  /* Set a 48px margin on the bottom at the breakpoint md */
  .mb-md-6 {
    margin-bottom: 48px !important;
  }
  /* Set a 48px margin on the left at the breakpoint md */
  .ml-md-6 {
    margin-left: 48px !important;
  }
  /* Set a 48px margin on the left & right at the breakpoint md */
  .mx-md-6 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  /* Set a 48px margin on the top & bottom at the breakpoint md */
  .my-md-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 72px margin to all sides at the breakpoint md */
  .m-md-7 {
    margin: 72px !important;
  }
  /* Set a 72px margin on the top at the breakpoint md */
  .mt-md-7 {
    margin-top: 72px !important;
  }
  /* Set a 72px margin on the right at the breakpoint md */
  .mr-md-7 {
    margin-right: 72px !important;
  }
  /* Set a 72px margin on the bottom at the breakpoint md */
  .mb-md-7 {
    margin-bottom: 72px !important;
  }
  /* Set a 72px margin on the left at the breakpoint md */
  .ml-md-7 {
    margin-left: 72px !important;
  }
  /* Set a 72px margin on the left & right at the breakpoint md */
  .mx-md-7 {
    margin-right: 72px !important;
    margin-left: 72px !important;
  }
  /* Set a 72px margin on the top & bottom at the breakpoint md */
  .my-md-7 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 96px margin to all sides at the breakpoint md */
  .m-md-8 {
    margin: 96px !important;
  }
  /* Set a 96px margin on the top at the breakpoint md */
  .mt-md-8 {
    margin-top: 96px !important;
  }
  /* Set a 96px margin on the right at the breakpoint md */
  .mr-md-8 {
    margin-right: 96px !important;
  }
  /* Set a 96px margin on the bottom at the breakpoint md */
  .mb-md-8 {
    margin-bottom: 96px !important;
  }
  /* Set a 96px margin on the left at the breakpoint md */
  .ml-md-8 {
    margin-left: 96px !important;
  }
  /* Set a 96px margin on the left & right at the breakpoint md */
  .mx-md-8 {
    margin-right: 96px !important;
    margin-left: 96px !important;
  }
  /* Set a 96px margin on the top & bottom at the breakpoint md */
  .my-md-8 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 144px margin to all sides at the breakpoint md */
  .m-md-9 {
    margin: 144px !important;
  }
  /* Set a 144px margin on the top at the breakpoint md */
  .mt-md-9 {
    margin-top: 144px !important;
  }
  /* Set a 144px margin on the right at the breakpoint md */
  .mr-md-9 {
    margin-right: 144px !important;
  }
  /* Set a 144px margin on the bottom at the breakpoint md */
  .mb-md-9 {
    margin-bottom: 144px !important;
  }
  /* Set a 144px margin on the left at the breakpoint md */
  .ml-md-9 {
    margin-left: 144px !important;
  }
  /* Set a 144px margin on the left & right at the breakpoint md */
  .mx-md-9 {
    margin-right: 144px !important;
    margin-left: 144px !important;
  }
  /* Set a 144px margin on the top & bottom at the breakpoint md */
  .my-md-9 {
    margin-top: 144px !important;
    margin-bottom: 144px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 216px margin to all sides at the breakpoint md */
  .m-md-10 {
    margin: 216px !important;
  }
  /* Set a 216px margin on the top at the breakpoint md */
  .mt-md-10 {
    margin-top: 216px !important;
  }
  /* Set a 216px margin on the right at the breakpoint md */
  .mr-md-10 {
    margin-right: 216px !important;
  }
  /* Set a 216px margin on the bottom at the breakpoint md */
  .mb-md-10 {
    margin-bottom: 216px !important;
  }
  /* Set a 216px margin on the left at the breakpoint md */
  .ml-md-10 {
    margin-left: 216px !important;
  }
  /* Set a 216px margin on the left & right at the breakpoint md */
  .mx-md-10 {
    margin-right: 216px !important;
    margin-left: 216px !important;
  }
  /* Set a 216px margin on the top & bottom at the breakpoint md */
  .my-md-10 {
    margin-top: 216px !important;
    margin-bottom: 216px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 0 margin to all sides at the breakpoint lg */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* Set a 0 margin on the top at the breakpoint lg */
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  /* Set a 0 margin on the right at the breakpoint lg */
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  /* Set a 0 margin on the bottom at the breakpoint lg */
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  /* Set a 0 margin on the left at the breakpoint lg */
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  /* Set a 0 margin on the left & right at the breakpoint lg */
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* Set a 0 margin on the top & bottom at the breakpoint lg */
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 4px margin to all sides at the breakpoint lg */
  .m-lg-1 {
    margin: 4px !important;
  }
  /* Set a 4px margin on the top at the breakpoint lg */
  .mt-lg-1 {
    margin-top: 4px !important;
  }
  /* Set a 4px margin on the right at the breakpoint lg */
  .mr-lg-1 {
    margin-right: 4px !important;
  }
  /* Set a 4px margin on the bottom at the breakpoint lg */
  .mb-lg-1 {
    margin-bottom: 4px !important;
  }
  /* Set a 4px margin on the left at the breakpoint lg */
  .ml-lg-1 {
    margin-left: 4px !important;
  }
  /* Set a 4px margin on the left & right at the breakpoint lg */
  .mx-lg-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  /* Set a 4px margin on the top & bottom at the breakpoint lg */
  .my-lg-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 6px margin to all sides at the breakpoint lg */
  .m-lg-2 {
    margin: 6px !important;
  }
  /* Set a 6px margin on the top at the breakpoint lg */
  .mt-lg-2 {
    margin-top: 6px !important;
  }
  /* Set a 6px margin on the right at the breakpoint lg */
  .mr-lg-2 {
    margin-right: 6px !important;
  }
  /* Set a 6px margin on the bottom at the breakpoint lg */
  .mb-lg-2 {
    margin-bottom: 6px !important;
  }
  /* Set a 6px margin on the left at the breakpoint lg */
  .ml-lg-2 {
    margin-left: 6px !important;
  }
  /* Set a 6px margin on the left & right at the breakpoint lg */
  .mx-lg-2 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }
  /* Set a 6px margin on the top & bottom at the breakpoint lg */
  .my-lg-2 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 12px margin to all sides at the breakpoint lg */
  .m-lg-3 {
    margin: 12px !important;
  }
  /* Set a 12px margin on the top at the breakpoint lg */
  .mt-lg-3 {
    margin-top: 12px !important;
  }
  /* Set a 12px margin on the right at the breakpoint lg */
  .mr-lg-3 {
    margin-right: 12px !important;
  }
  /* Set a 12px margin on the bottom at the breakpoint lg */
  .mb-lg-3 {
    margin-bottom: 12px !important;
  }
  /* Set a 12px margin on the left at the breakpoint lg */
  .ml-lg-3 {
    margin-left: 12px !important;
  }
  /* Set a 12px margin on the left & right at the breakpoint lg */
  .mx-lg-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  /* Set a 12px margin on the top & bottom at the breakpoint lg */
  .my-lg-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 24px margin to all sides at the breakpoint lg */
  .m-lg-4 {
    margin: 24px !important;
  }
  /* Set a 24px margin on the top at the breakpoint lg */
  .mt-lg-4 {
    margin-top: 24px !important;
  }
  /* Set a 24px margin on the right at the breakpoint lg */
  .mr-lg-4 {
    margin-right: 24px !important;
  }
  /* Set a 24px margin on the bottom at the breakpoint lg */
  .mb-lg-4 {
    margin-bottom: 24px !important;
  }
  /* Set a 24px margin on the left at the breakpoint lg */
  .ml-lg-4 {
    margin-left: 24px !important;
  }
  /* Set a 24px margin on the left & right at the breakpoint lg */
  .mx-lg-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  /* Set a 24px margin on the top & bottom at the breakpoint lg */
  .my-lg-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 36px margin to all sides at the breakpoint lg */
  .m-lg-5 {
    margin: 36px !important;
  }
  /* Set a 36px margin on the top at the breakpoint lg */
  .mt-lg-5 {
    margin-top: 36px !important;
  }
  /* Set a 36px margin on the right at the breakpoint lg */
  .mr-lg-5 {
    margin-right: 36px !important;
  }
  /* Set a 36px margin on the bottom at the breakpoint lg */
  .mb-lg-5 {
    margin-bottom: 36px !important;
  }
  /* Set a 36px margin on the left at the breakpoint lg */
  .ml-lg-5 {
    margin-left: 36px !important;
  }
  /* Set a 36px margin on the left & right at the breakpoint lg */
  .mx-lg-5 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  /* Set a 36px margin on the top & bottom at the breakpoint lg */
  .my-lg-5 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 48px margin to all sides at the breakpoint lg */
  .m-lg-6 {
    margin: 48px !important;
  }
  /* Set a 48px margin on the top at the breakpoint lg */
  .mt-lg-6 {
    margin-top: 48px !important;
  }
  /* Set a 48px margin on the right at the breakpoint lg */
  .mr-lg-6 {
    margin-right: 48px !important;
  }
  /* Set a 48px margin on the bottom at the breakpoint lg */
  .mb-lg-6 {
    margin-bottom: 48px !important;
  }
  /* Set a 48px margin on the left at the breakpoint lg */
  .ml-lg-6 {
    margin-left: 48px !important;
  }
  /* Set a 48px margin on the left & right at the breakpoint lg */
  .mx-lg-6 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  /* Set a 48px margin on the top & bottom at the breakpoint lg */
  .my-lg-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 72px margin to all sides at the breakpoint lg */
  .m-lg-7 {
    margin: 72px !important;
  }
  /* Set a 72px margin on the top at the breakpoint lg */
  .mt-lg-7 {
    margin-top: 72px !important;
  }
  /* Set a 72px margin on the right at the breakpoint lg */
  .mr-lg-7 {
    margin-right: 72px !important;
  }
  /* Set a 72px margin on the bottom at the breakpoint lg */
  .mb-lg-7 {
    margin-bottom: 72px !important;
  }
  /* Set a 72px margin on the left at the breakpoint lg */
  .ml-lg-7 {
    margin-left: 72px !important;
  }
  /* Set a 72px margin on the left & right at the breakpoint lg */
  .mx-lg-7 {
    margin-right: 72px !important;
    margin-left: 72px !important;
  }
  /* Set a 72px margin on the top & bottom at the breakpoint lg */
  .my-lg-7 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 96px margin to all sides at the breakpoint lg */
  .m-lg-8 {
    margin: 96px !important;
  }
  /* Set a 96px margin on the top at the breakpoint lg */
  .mt-lg-8 {
    margin-top: 96px !important;
  }
  /* Set a 96px margin on the right at the breakpoint lg */
  .mr-lg-8 {
    margin-right: 96px !important;
  }
  /* Set a 96px margin on the bottom at the breakpoint lg */
  .mb-lg-8 {
    margin-bottom: 96px !important;
  }
  /* Set a 96px margin on the left at the breakpoint lg */
  .ml-lg-8 {
    margin-left: 96px !important;
  }
  /* Set a 96px margin on the left & right at the breakpoint lg */
  .mx-lg-8 {
    margin-right: 96px !important;
    margin-left: 96px !important;
  }
  /* Set a 96px margin on the top & bottom at the breakpoint lg */
  .my-lg-8 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 144px margin to all sides at the breakpoint lg */
  .m-lg-9 {
    margin: 144px !important;
  }
  /* Set a 144px margin on the top at the breakpoint lg */
  .mt-lg-9 {
    margin-top: 144px !important;
  }
  /* Set a 144px margin on the right at the breakpoint lg */
  .mr-lg-9 {
    margin-right: 144px !important;
  }
  /* Set a 144px margin on the bottom at the breakpoint lg */
  .mb-lg-9 {
    margin-bottom: 144px !important;
  }
  /* Set a 144px margin on the left at the breakpoint lg */
  .ml-lg-9 {
    margin-left: 144px !important;
  }
  /* Set a 144px margin on the left & right at the breakpoint lg */
  .mx-lg-9 {
    margin-right: 144px !important;
    margin-left: 144px !important;
  }
  /* Set a 144px margin on the top & bottom at the breakpoint lg */
  .my-lg-9 {
    margin-top: 144px !important;
    margin-bottom: 144px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 216px margin to all sides at the breakpoint lg */
  .m-lg-10 {
    margin: 216px !important;
  }
  /* Set a 216px margin on the top at the breakpoint lg */
  .mt-lg-10 {
    margin-top: 216px !important;
  }
  /* Set a 216px margin on the right at the breakpoint lg */
  .mr-lg-10 {
    margin-right: 216px !important;
  }
  /* Set a 216px margin on the bottom at the breakpoint lg */
  .mb-lg-10 {
    margin-bottom: 216px !important;
  }
  /* Set a 216px margin on the left at the breakpoint lg */
  .ml-lg-10 {
    margin-left: 216px !important;
  }
  /* Set a 216px margin on the left & right at the breakpoint lg */
  .mx-lg-10 {
    margin-right: 216px !important;
    margin-left: 216px !important;
  }
  /* Set a 216px margin on the top & bottom at the breakpoint lg */
  .my-lg-10 {
    margin-top: 216px !important;
    margin-bottom: 216px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 0 margin to all sides at the breakpoint xl */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* Set a 0 margin on the top at the breakpoint xl */
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  /* Set a 0 margin on the right at the breakpoint xl */
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  /* Set a 0 margin on the bottom at the breakpoint xl */
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  /* Set a 0 margin on the left at the breakpoint xl */
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  /* Set a 0 margin on the left & right at the breakpoint xl */
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* Set a 0 margin on the top & bottom at the breakpoint xl */
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 4px margin to all sides at the breakpoint xl */
  .m-xl-1 {
    margin: 4px !important;
  }
  /* Set a 4px margin on the top at the breakpoint xl */
  .mt-xl-1 {
    margin-top: 4px !important;
  }
  /* Set a 4px margin on the right at the breakpoint xl */
  .mr-xl-1 {
    margin-right: 4px !important;
  }
  /* Set a 4px margin on the bottom at the breakpoint xl */
  .mb-xl-1 {
    margin-bottom: 4px !important;
  }
  /* Set a 4px margin on the left at the breakpoint xl */
  .ml-xl-1 {
    margin-left: 4px !important;
  }
  /* Set a 4px margin on the left & right at the breakpoint xl */
  .mx-xl-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  /* Set a 4px margin on the top & bottom at the breakpoint xl */
  .my-xl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 6px margin to all sides at the breakpoint xl */
  .m-xl-2 {
    margin: 6px !important;
  }
  /* Set a 6px margin on the top at the breakpoint xl */
  .mt-xl-2 {
    margin-top: 6px !important;
  }
  /* Set a 6px margin on the right at the breakpoint xl */
  .mr-xl-2 {
    margin-right: 6px !important;
  }
  /* Set a 6px margin on the bottom at the breakpoint xl */
  .mb-xl-2 {
    margin-bottom: 6px !important;
  }
  /* Set a 6px margin on the left at the breakpoint xl */
  .ml-xl-2 {
    margin-left: 6px !important;
  }
  /* Set a 6px margin on the left & right at the breakpoint xl */
  .mx-xl-2 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }
  /* Set a 6px margin on the top & bottom at the breakpoint xl */
  .my-xl-2 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 12px margin to all sides at the breakpoint xl */
  .m-xl-3 {
    margin: 12px !important;
  }
  /* Set a 12px margin on the top at the breakpoint xl */
  .mt-xl-3 {
    margin-top: 12px !important;
  }
  /* Set a 12px margin on the right at the breakpoint xl */
  .mr-xl-3 {
    margin-right: 12px !important;
  }
  /* Set a 12px margin on the bottom at the breakpoint xl */
  .mb-xl-3 {
    margin-bottom: 12px !important;
  }
  /* Set a 12px margin on the left at the breakpoint xl */
  .ml-xl-3 {
    margin-left: 12px !important;
  }
  /* Set a 12px margin on the left & right at the breakpoint xl */
  .mx-xl-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  /* Set a 12px margin on the top & bottom at the breakpoint xl */
  .my-xl-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 24px margin to all sides at the breakpoint xl */
  .m-xl-4 {
    margin: 24px !important;
  }
  /* Set a 24px margin on the top at the breakpoint xl */
  .mt-xl-4 {
    margin-top: 24px !important;
  }
  /* Set a 24px margin on the right at the breakpoint xl */
  .mr-xl-4 {
    margin-right: 24px !important;
  }
  /* Set a 24px margin on the bottom at the breakpoint xl */
  .mb-xl-4 {
    margin-bottom: 24px !important;
  }
  /* Set a 24px margin on the left at the breakpoint xl */
  .ml-xl-4 {
    margin-left: 24px !important;
  }
  /* Set a 24px margin on the left & right at the breakpoint xl */
  .mx-xl-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  /* Set a 24px margin on the top & bottom at the breakpoint xl */
  .my-xl-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 36px margin to all sides at the breakpoint xl */
  .m-xl-5 {
    margin: 36px !important;
  }
  /* Set a 36px margin on the top at the breakpoint xl */
  .mt-xl-5 {
    margin-top: 36px !important;
  }
  /* Set a 36px margin on the right at the breakpoint xl */
  .mr-xl-5 {
    margin-right: 36px !important;
  }
  /* Set a 36px margin on the bottom at the breakpoint xl */
  .mb-xl-5 {
    margin-bottom: 36px !important;
  }
  /* Set a 36px margin on the left at the breakpoint xl */
  .ml-xl-5 {
    margin-left: 36px !important;
  }
  /* Set a 36px margin on the left & right at the breakpoint xl */
  .mx-xl-5 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  /* Set a 36px margin on the top & bottom at the breakpoint xl */
  .my-xl-5 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 48px margin to all sides at the breakpoint xl */
  .m-xl-6 {
    margin: 48px !important;
  }
  /* Set a 48px margin on the top at the breakpoint xl */
  .mt-xl-6 {
    margin-top: 48px !important;
  }
  /* Set a 48px margin on the right at the breakpoint xl */
  .mr-xl-6 {
    margin-right: 48px !important;
  }
  /* Set a 48px margin on the bottom at the breakpoint xl */
  .mb-xl-6 {
    margin-bottom: 48px !important;
  }
  /* Set a 48px margin on the left at the breakpoint xl */
  .ml-xl-6 {
    margin-left: 48px !important;
  }
  /* Set a 48px margin on the left & right at the breakpoint xl */
  .mx-xl-6 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  /* Set a 48px margin on the top & bottom at the breakpoint xl */
  .my-xl-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 72px margin to all sides at the breakpoint xl */
  .m-xl-7 {
    margin: 72px !important;
  }
  /* Set a 72px margin on the top at the breakpoint xl */
  .mt-xl-7 {
    margin-top: 72px !important;
  }
  /* Set a 72px margin on the right at the breakpoint xl */
  .mr-xl-7 {
    margin-right: 72px !important;
  }
  /* Set a 72px margin on the bottom at the breakpoint xl */
  .mb-xl-7 {
    margin-bottom: 72px !important;
  }
  /* Set a 72px margin on the left at the breakpoint xl */
  .ml-xl-7 {
    margin-left: 72px !important;
  }
  /* Set a 72px margin on the left & right at the breakpoint xl */
  .mx-xl-7 {
    margin-right: 72px !important;
    margin-left: 72px !important;
  }
  /* Set a 72px margin on the top & bottom at the breakpoint xl */
  .my-xl-7 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 96px margin to all sides at the breakpoint xl */
  .m-xl-8 {
    margin: 96px !important;
  }
  /* Set a 96px margin on the top at the breakpoint xl */
  .mt-xl-8 {
    margin-top: 96px !important;
  }
  /* Set a 96px margin on the right at the breakpoint xl */
  .mr-xl-8 {
    margin-right: 96px !important;
  }
  /* Set a 96px margin on the bottom at the breakpoint xl */
  .mb-xl-8 {
    margin-bottom: 96px !important;
  }
  /* Set a 96px margin on the left at the breakpoint xl */
  .ml-xl-8 {
    margin-left: 96px !important;
  }
  /* Set a 96px margin on the left & right at the breakpoint xl */
  .mx-xl-8 {
    margin-right: 96px !important;
    margin-left: 96px !important;
  }
  /* Set a 96px margin on the top & bottom at the breakpoint xl */
  .my-xl-8 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 144px margin to all sides at the breakpoint xl */
  .m-xl-9 {
    margin: 144px !important;
  }
  /* Set a 144px margin on the top at the breakpoint xl */
  .mt-xl-9 {
    margin-top: 144px !important;
  }
  /* Set a 144px margin on the right at the breakpoint xl */
  .mr-xl-9 {
    margin-right: 144px !important;
  }
  /* Set a 144px margin on the bottom at the breakpoint xl */
  .mb-xl-9 {
    margin-bottom: 144px !important;
  }
  /* Set a 144px margin on the left at the breakpoint xl */
  .ml-xl-9 {
    margin-left: 144px !important;
  }
  /* Set a 144px margin on the left & right at the breakpoint xl */
  .mx-xl-9 {
    margin-right: 144px !important;
    margin-left: 144px !important;
  }
  /* Set a 144px margin on the top & bottom at the breakpoint xl */
  .my-xl-9 {
    margin-top: 144px !important;
    margin-bottom: 144px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 216px margin to all sides at the breakpoint xl */
  .m-xl-10 {
    margin: 216px !important;
  }
  /* Set a 216px margin on the top at the breakpoint xl */
  .mt-xl-10 {
    margin-top: 216px !important;
  }
  /* Set a 216px margin on the right at the breakpoint xl */
  .mr-xl-10 {
    margin-right: 216px !important;
  }
  /* Set a 216px margin on the bottom at the breakpoint xl */
  .mb-xl-10 {
    margin-bottom: 216px !important;
  }
  /* Set a 216px margin on the left at the breakpoint xl */
  .ml-xl-10 {
    margin-left: 216px !important;
  }
  /* Set a 216px margin on the left & right at the breakpoint xl */
  .mx-xl-10 {
    margin-right: 216px !important;
    margin-left: 216px !important;
  }
  /* Set a 216px margin on the top & bottom at the breakpoint xl */
  .my-xl-10 {
    margin-top: 216px !important;
    margin-bottom: 216px !important;
  }
}
/* Set an auto margin on left & right */
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Set a 0 padding to all sides */
.p-0 {
  padding: 0 !important;
}

/* Set a 0 padding to the top */
.pt-0 {
  padding-top: 0 !important;
}

/* Set a 0 padding to the right */
.pr-0 {
  padding-right: 0 !important;
}

/* Set a 0 padding to the bottom */
.pb-0 {
  padding-bottom: 0 !important;
}

/* Set a 0 padding to the left */
.pl-0 {
  padding-left: 0 !important;
}

/* Set a 0 padding to the left & right */
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* Set a 0 padding to the top & bottom */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Set a 4px padding to all sides */
.p-1 {
  padding: 4px !important;
}

/* Set a 4px padding to the top */
.pt-1 {
  padding-top: 4px !important;
}

/* Set a 4px padding to the right */
.pr-1 {
  padding-right: 4px !important;
}

/* Set a 4px padding to the bottom */
.pb-1 {
  padding-bottom: 4px !important;
}

/* Set a 4px padding to the left */
.pl-1 {
  padding-left: 4px !important;
}

/* Set a 4px padding to the left & right */
.px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

/* Set a 4px padding to the top & bottom */
.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

/* Set a 6px padding to all sides */
.p-2 {
  padding: 6px !important;
}

/* Set a 6px padding to the top */
.pt-2 {
  padding-top: 6px !important;
}

/* Set a 6px padding to the right */
.pr-2 {
  padding-right: 6px !important;
}

/* Set a 6px padding to the bottom */
.pb-2 {
  padding-bottom: 6px !important;
}

/* Set a 6px padding to the left */
.pl-2 {
  padding-left: 6px !important;
}

/* Set a 6px padding to the left & right */
.px-2 {
  padding-right: 6px !important;
  padding-left: 6px !important;
}

/* Set a 6px padding to the top & bottom */
.py-2 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* Set a 12px padding to all sides */
.p-3 {
  padding: 12px !important;
}

/* Set a 12px padding to the top */
.pt-3 {
  padding-top: 12px !important;
}

/* Set a 12px padding to the right */
.pr-3 {
  padding-right: 12px !important;
}

/* Set a 12px padding to the bottom */
.pb-3 {
  padding-bottom: 12px !important;
}

/* Set a 12px padding to the left */
.pl-3 {
  padding-left: 12px !important;
}

/* Set a 12px padding to the left & right */
.px-3 {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

/* Set a 12px padding to the top & bottom */
.py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* Set a 24px padding to all sides */
.p-4 {
  padding: 24px !important;
}

/* Set a 24px padding to the top */
.pt-4 {
  padding-top: 24px !important;
}

/* Set a 24px padding to the right */
.pr-4 {
  padding-right: 24px !important;
}

/* Set a 24px padding to the bottom */
.pb-4 {
  padding-bottom: 24px !important;
}

/* Set a 24px padding to the left */
.pl-4 {
  padding-left: 24px !important;
}

/* Set a 24px padding to the left & right */
.px-4 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

/* Set a 24px padding to the top & bottom */
.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* Set a 36px padding to all sides */
.p-5 {
  padding: 36px !important;
}

/* Set a 36px padding to the top */
.pt-5 {
  padding-top: 36px !important;
}

/* Set a 36px padding to the right */
.pr-5 {
  padding-right: 36px !important;
}

/* Set a 36px padding to the bottom */
.pb-5 {
  padding-bottom: 36px !important;
}

/* Set a 36px padding to the left */
.pl-5 {
  padding-left: 36px !important;
}

/* Set a 36px padding to the left & right */
.px-5 {
  padding-right: 36px !important;
  padding-left: 36px !important;
}

/* Set a 36px padding to the top & bottom */
.py-5 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

/* Set a 48px padding to all sides */
.p-6 {
  padding: 48px !important;
}

/* Set a 48px padding to the top */
.pt-6 {
  padding-top: 48px !important;
}

/* Set a 48px padding to the right */
.pr-6 {
  padding-right: 48px !important;
}

/* Set a 48px padding to the bottom */
.pb-6 {
  padding-bottom: 48px !important;
}

/* Set a 48px padding to the left */
.pl-6 {
  padding-left: 48px !important;
}

/* Set a 48px padding to the left & right */
.px-6 {
  padding-right: 48px !important;
  padding-left: 48px !important;
}

/* Set a 48px padding to the top & bottom */
.py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

/* Set a 72px padding to all sides */
.p-7 {
  padding: 72px !important;
}

/* Set a 72px padding to the top */
.pt-7 {
  padding-top: 72px !important;
}

/* Set a 72px padding to the right */
.pr-7 {
  padding-right: 72px !important;
}

/* Set a 72px padding to the bottom */
.pb-7 {
  padding-bottom: 72px !important;
}

/* Set a 72px padding to the left */
.pl-7 {
  padding-left: 72px !important;
}

/* Set a 72px padding to the left & right */
.px-7 {
  padding-right: 72px !important;
  padding-left: 72px !important;
}

/* Set a 72px padding to the top & bottom */
.py-7 {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

/* Set a 96px padding to all sides */
.p-8 {
  padding: 96px !important;
}

/* Set a 96px padding to the top */
.pt-8 {
  padding-top: 96px !important;
}

/* Set a 96px padding to the right */
.pr-8 {
  padding-right: 96px !important;
}

/* Set a 96px padding to the bottom */
.pb-8 {
  padding-bottom: 96px !important;
}

/* Set a 96px padding to the left */
.pl-8 {
  padding-left: 96px !important;
}

/* Set a 96px padding to the left & right */
.px-8 {
  padding-right: 96px !important;
  padding-left: 96px !important;
}

/* Set a 96px padding to the top & bottom */
.py-8 {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

/* Set a 144px padding to all sides */
.p-9 {
  padding: 144px !important;
}

/* Set a 144px padding to the top */
.pt-9 {
  padding-top: 144px !important;
}

/* Set a 144px padding to the right */
.pr-9 {
  padding-right: 144px !important;
}

/* Set a 144px padding to the bottom */
.pb-9 {
  padding-bottom: 144px !important;
}

/* Set a 144px padding to the left */
.pl-9 {
  padding-left: 144px !important;
}

/* Set a 144px padding to the left & right */
.px-9 {
  padding-right: 144px !important;
  padding-left: 144px !important;
}

/* Set a 144px padding to the top & bottom */
.py-9 {
  padding-top: 144px !important;
  padding-bottom: 144px !important;
}

/* Set a 216px padding to all sides */
.p-10 {
  padding: 216px !important;
}

/* Set a 216px padding to the top */
.pt-10 {
  padding-top: 216px !important;
}

/* Set a 216px padding to the right */
.pr-10 {
  padding-right: 216px !important;
}

/* Set a 216px padding to the bottom */
.pb-10 {
  padding-bottom: 216px !important;
}

/* Set a 216px padding to the left */
.pl-10 {
  padding-left: 216px !important;
}

/* Set a 216px padding to the left & right */
.px-10 {
  padding-right: 216px !important;
  padding-left: 216px !important;
}

/* Set a 216px padding to the top & bottom */
.py-10 {
  padding-top: 216px !important;
  padding-bottom: 216px !important;
}

@media (min-width: 600px) {
  /* Set a 0 padding to all sides at the sm breakpoint */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* Set a 0 padding to the top at the sm breakpoint */
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  /* Set a 0 padding to the right at the sm breakpoint */
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  /* Set a 0 padding to the bottom at the sm breakpoint */
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  /* Set a 0 padding to the left at the sm breakpoint */
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  /* Set a 0 padding to the left & right at the sm breakpoint */
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* Set a 0 padding to the top & bottom at the sm breakpoint */
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 600px) {
  /* Set a 4px padding to all sides at the sm breakpoint */
  .p-sm-1 {
    padding: 4px !important;
  }
  /* Set a 4px padding to the top at the sm breakpoint */
  .pt-sm-1 {
    padding-top: 4px !important;
  }
  /* Set a 4px padding to the right at the sm breakpoint */
  .pr-sm-1 {
    padding-right: 4px !important;
  }
  /* Set a 4px padding to the bottom at the sm breakpoint */
  .pb-sm-1 {
    padding-bottom: 4px !important;
  }
  /* Set a 4px padding to the left at the sm breakpoint */
  .pl-sm-1 {
    padding-left: 4px !important;
  }
  /* Set a 4px padding to the left & right at the sm breakpoint */
  .px-sm-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  /* Set a 4px padding to the top & bottom at the sm breakpoint */
  .py-sm-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 6px padding to all sides at the sm breakpoint */
  .p-sm-2 {
    padding: 6px !important;
  }
  /* Set a 6px padding to the top at the sm breakpoint */
  .pt-sm-2 {
    padding-top: 6px !important;
  }
  /* Set a 6px padding to the right at the sm breakpoint */
  .pr-sm-2 {
    padding-right: 6px !important;
  }
  /* Set a 6px padding to the bottom at the sm breakpoint */
  .pb-sm-2 {
    padding-bottom: 6px !important;
  }
  /* Set a 6px padding to the left at the sm breakpoint */
  .pl-sm-2 {
    padding-left: 6px !important;
  }
  /* Set a 6px padding to the left & right at the sm breakpoint */
  .px-sm-2 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
  /* Set a 6px padding to the top & bottom at the sm breakpoint */
  .py-sm-2 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 12px padding to all sides at the sm breakpoint */
  .p-sm-3 {
    padding: 12px !important;
  }
  /* Set a 12px padding to the top at the sm breakpoint */
  .pt-sm-3 {
    padding-top: 12px !important;
  }
  /* Set a 12px padding to the right at the sm breakpoint */
  .pr-sm-3 {
    padding-right: 12px !important;
  }
  /* Set a 12px padding to the bottom at the sm breakpoint */
  .pb-sm-3 {
    padding-bottom: 12px !important;
  }
  /* Set a 12px padding to the left at the sm breakpoint */
  .pl-sm-3 {
    padding-left: 12px !important;
  }
  /* Set a 12px padding to the left & right at the sm breakpoint */
  .px-sm-3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  /* Set a 12px padding to the top & bottom at the sm breakpoint */
  .py-sm-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 24px padding to all sides at the sm breakpoint */
  .p-sm-4 {
    padding: 24px !important;
  }
  /* Set a 24px padding to the top at the sm breakpoint */
  .pt-sm-4 {
    padding-top: 24px !important;
  }
  /* Set a 24px padding to the right at the sm breakpoint */
  .pr-sm-4 {
    padding-right: 24px !important;
  }
  /* Set a 24px padding to the bottom at the sm breakpoint */
  .pb-sm-4 {
    padding-bottom: 24px !important;
  }
  /* Set a 24px padding to the left at the sm breakpoint */
  .pl-sm-4 {
    padding-left: 24px !important;
  }
  /* Set a 24px padding to the left & right at the sm breakpoint */
  .px-sm-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  /* Set a 24px padding to the top & bottom at the sm breakpoint */
  .py-sm-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 36px padding to all sides at the sm breakpoint */
  .p-sm-5 {
    padding: 36px !important;
  }
  /* Set a 36px padding to the top at the sm breakpoint */
  .pt-sm-5 {
    padding-top: 36px !important;
  }
  /* Set a 36px padding to the right at the sm breakpoint */
  .pr-sm-5 {
    padding-right: 36px !important;
  }
  /* Set a 36px padding to the bottom at the sm breakpoint */
  .pb-sm-5 {
    padding-bottom: 36px !important;
  }
  /* Set a 36px padding to the left at the sm breakpoint */
  .pl-sm-5 {
    padding-left: 36px !important;
  }
  /* Set a 36px padding to the left & right at the sm breakpoint */
  .px-sm-5 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  /* Set a 36px padding to the top & bottom at the sm breakpoint */
  .py-sm-5 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 48px padding to all sides at the sm breakpoint */
  .p-sm-6 {
    padding: 48px !important;
  }
  /* Set a 48px padding to the top at the sm breakpoint */
  .pt-sm-6 {
    padding-top: 48px !important;
  }
  /* Set a 48px padding to the right at the sm breakpoint */
  .pr-sm-6 {
    padding-right: 48px !important;
  }
  /* Set a 48px padding to the bottom at the sm breakpoint */
  .pb-sm-6 {
    padding-bottom: 48px !important;
  }
  /* Set a 48px padding to the left at the sm breakpoint */
  .pl-sm-6 {
    padding-left: 48px !important;
  }
  /* Set a 48px padding to the left & right at the sm breakpoint */
  .px-sm-6 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  /* Set a 48px padding to the top & bottom at the sm breakpoint */
  .py-sm-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 72px padding to all sides at the sm breakpoint */
  .p-sm-7 {
    padding: 72px !important;
  }
  /* Set a 72px padding to the top at the sm breakpoint */
  .pt-sm-7 {
    padding-top: 72px !important;
  }
  /* Set a 72px padding to the right at the sm breakpoint */
  .pr-sm-7 {
    padding-right: 72px !important;
  }
  /* Set a 72px padding to the bottom at the sm breakpoint */
  .pb-sm-7 {
    padding-bottom: 72px !important;
  }
  /* Set a 72px padding to the left at the sm breakpoint */
  .pl-sm-7 {
    padding-left: 72px !important;
  }
  /* Set a 72px padding to the left & right at the sm breakpoint */
  .px-sm-7 {
    padding-right: 72px !important;
    padding-left: 72px !important;
  }
  /* Set a 72px padding to the top & bottom at the sm breakpoint */
  .py-sm-7 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 96px padding to all sides at the sm breakpoint */
  .p-sm-8 {
    padding: 96px !important;
  }
  /* Set a 96px padding to the top at the sm breakpoint */
  .pt-sm-8 {
    padding-top: 96px !important;
  }
  /* Set a 96px padding to the right at the sm breakpoint */
  .pr-sm-8 {
    padding-right: 96px !important;
  }
  /* Set a 96px padding to the bottom at the sm breakpoint */
  .pb-sm-8 {
    padding-bottom: 96px !important;
  }
  /* Set a 96px padding to the left at the sm breakpoint */
  .pl-sm-8 {
    padding-left: 96px !important;
  }
  /* Set a 96px padding to the left & right at the sm breakpoint */
  .px-sm-8 {
    padding-right: 96px !important;
    padding-left: 96px !important;
  }
  /* Set a 96px padding to the top & bottom at the sm breakpoint */
  .py-sm-8 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 144px padding to all sides at the sm breakpoint */
  .p-sm-9 {
    padding: 144px !important;
  }
  /* Set a 144px padding to the top at the sm breakpoint */
  .pt-sm-9 {
    padding-top: 144px !important;
  }
  /* Set a 144px padding to the right at the sm breakpoint */
  .pr-sm-9 {
    padding-right: 144px !important;
  }
  /* Set a 144px padding to the bottom at the sm breakpoint */
  .pb-sm-9 {
    padding-bottom: 144px !important;
  }
  /* Set a 144px padding to the left at the sm breakpoint */
  .pl-sm-9 {
    padding-left: 144px !important;
  }
  /* Set a 144px padding to the left & right at the sm breakpoint */
  .px-sm-9 {
    padding-right: 144px !important;
    padding-left: 144px !important;
  }
  /* Set a 144px padding to the top & bottom at the sm breakpoint */
  .py-sm-9 {
    padding-top: 144px !important;
    padding-bottom: 144px !important;
  }
}
@media (min-width: 600px) {
  /* Set a 216px padding to all sides at the sm breakpoint */
  .p-sm-10 {
    padding: 216px !important;
  }
  /* Set a 216px padding to the top at the sm breakpoint */
  .pt-sm-10 {
    padding-top: 216px !important;
  }
  /* Set a 216px padding to the right at the sm breakpoint */
  .pr-sm-10 {
    padding-right: 216px !important;
  }
  /* Set a 216px padding to the bottom at the sm breakpoint */
  .pb-sm-10 {
    padding-bottom: 216px !important;
  }
  /* Set a 216px padding to the left at the sm breakpoint */
  .pl-sm-10 {
    padding-left: 216px !important;
  }
  /* Set a 216px padding to the left & right at the sm breakpoint */
  .px-sm-10 {
    padding-right: 216px !important;
    padding-left: 216px !important;
  }
  /* Set a 216px padding to the top & bottom at the sm breakpoint */
  .py-sm-10 {
    padding-top: 216px !important;
    padding-bottom: 216px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 0 padding to all sides at the md breakpoint */
  .p-md-0 {
    padding: 0 !important;
  }
  /* Set a 0 padding to the top at the md breakpoint */
  .pt-md-0 {
    padding-top: 0 !important;
  }
  /* Set a 0 padding to the right at the md breakpoint */
  .pr-md-0 {
    padding-right: 0 !important;
  }
  /* Set a 0 padding to the bottom at the md breakpoint */
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  /* Set a 0 padding to the left at the md breakpoint */
  .pl-md-0 {
    padding-left: 0 !important;
  }
  /* Set a 0 padding to the left & right at the md breakpoint */
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* Set a 0 padding to the top & bottom at the md breakpoint */
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 800px) {
  /* Set a 4px padding to all sides at the md breakpoint */
  .p-md-1 {
    padding: 4px !important;
  }
  /* Set a 4px padding to the top at the md breakpoint */
  .pt-md-1 {
    padding-top: 4px !important;
  }
  /* Set a 4px padding to the right at the md breakpoint */
  .pr-md-1 {
    padding-right: 4px !important;
  }
  /* Set a 4px padding to the bottom at the md breakpoint */
  .pb-md-1 {
    padding-bottom: 4px !important;
  }
  /* Set a 4px padding to the left at the md breakpoint */
  .pl-md-1 {
    padding-left: 4px !important;
  }
  /* Set a 4px padding to the left & right at the md breakpoint */
  .px-md-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  /* Set a 4px padding to the top & bottom at the md breakpoint */
  .py-md-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 6px padding to all sides at the md breakpoint */
  .p-md-2 {
    padding: 6px !important;
  }
  /* Set a 6px padding to the top at the md breakpoint */
  .pt-md-2 {
    padding-top: 6px !important;
  }
  /* Set a 6px padding to the right at the md breakpoint */
  .pr-md-2 {
    padding-right: 6px !important;
  }
  /* Set a 6px padding to the bottom at the md breakpoint */
  .pb-md-2 {
    padding-bottom: 6px !important;
  }
  /* Set a 6px padding to the left at the md breakpoint */
  .pl-md-2 {
    padding-left: 6px !important;
  }
  /* Set a 6px padding to the left & right at the md breakpoint */
  .px-md-2 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
  /* Set a 6px padding to the top & bottom at the md breakpoint */
  .py-md-2 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 12px padding to all sides at the md breakpoint */
  .p-md-3 {
    padding: 12px !important;
  }
  /* Set a 12px padding to the top at the md breakpoint */
  .pt-md-3 {
    padding-top: 12px !important;
  }
  /* Set a 12px padding to the right at the md breakpoint */
  .pr-md-3 {
    padding-right: 12px !important;
  }
  /* Set a 12px padding to the bottom at the md breakpoint */
  .pb-md-3 {
    padding-bottom: 12px !important;
  }
  /* Set a 12px padding to the left at the md breakpoint */
  .pl-md-3 {
    padding-left: 12px !important;
  }
  /* Set a 12px padding to the left & right at the md breakpoint */
  .px-md-3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  /* Set a 12px padding to the top & bottom at the md breakpoint */
  .py-md-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 24px padding to all sides at the md breakpoint */
  .p-md-4 {
    padding: 24px !important;
  }
  /* Set a 24px padding to the top at the md breakpoint */
  .pt-md-4 {
    padding-top: 24px !important;
  }
  /* Set a 24px padding to the right at the md breakpoint */
  .pr-md-4 {
    padding-right: 24px !important;
  }
  /* Set a 24px padding to the bottom at the md breakpoint */
  .pb-md-4 {
    padding-bottom: 24px !important;
  }
  /* Set a 24px padding to the left at the md breakpoint */
  .pl-md-4 {
    padding-left: 24px !important;
  }
  /* Set a 24px padding to the left & right at the md breakpoint */
  .px-md-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  /* Set a 24px padding to the top & bottom at the md breakpoint */
  .py-md-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 36px padding to all sides at the md breakpoint */
  .p-md-5 {
    padding: 36px !important;
  }
  /* Set a 36px padding to the top at the md breakpoint */
  .pt-md-5 {
    padding-top: 36px !important;
  }
  /* Set a 36px padding to the right at the md breakpoint */
  .pr-md-5 {
    padding-right: 36px !important;
  }
  /* Set a 36px padding to the bottom at the md breakpoint */
  .pb-md-5 {
    padding-bottom: 36px !important;
  }
  /* Set a 36px padding to the left at the md breakpoint */
  .pl-md-5 {
    padding-left: 36px !important;
  }
  /* Set a 36px padding to the left & right at the md breakpoint */
  .px-md-5 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  /* Set a 36px padding to the top & bottom at the md breakpoint */
  .py-md-5 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 48px padding to all sides at the md breakpoint */
  .p-md-6 {
    padding: 48px !important;
  }
  /* Set a 48px padding to the top at the md breakpoint */
  .pt-md-6 {
    padding-top: 48px !important;
  }
  /* Set a 48px padding to the right at the md breakpoint */
  .pr-md-6 {
    padding-right: 48px !important;
  }
  /* Set a 48px padding to the bottom at the md breakpoint */
  .pb-md-6 {
    padding-bottom: 48px !important;
  }
  /* Set a 48px padding to the left at the md breakpoint */
  .pl-md-6 {
    padding-left: 48px !important;
  }
  /* Set a 48px padding to the left & right at the md breakpoint */
  .px-md-6 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  /* Set a 48px padding to the top & bottom at the md breakpoint */
  .py-md-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 72px padding to all sides at the md breakpoint */
  .p-md-7 {
    padding: 72px !important;
  }
  /* Set a 72px padding to the top at the md breakpoint */
  .pt-md-7 {
    padding-top: 72px !important;
  }
  /* Set a 72px padding to the right at the md breakpoint */
  .pr-md-7 {
    padding-right: 72px !important;
  }
  /* Set a 72px padding to the bottom at the md breakpoint */
  .pb-md-7 {
    padding-bottom: 72px !important;
  }
  /* Set a 72px padding to the left at the md breakpoint */
  .pl-md-7 {
    padding-left: 72px !important;
  }
  /* Set a 72px padding to the left & right at the md breakpoint */
  .px-md-7 {
    padding-right: 72px !important;
    padding-left: 72px !important;
  }
  /* Set a 72px padding to the top & bottom at the md breakpoint */
  .py-md-7 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 96px padding to all sides at the md breakpoint */
  .p-md-8 {
    padding: 96px !important;
  }
  /* Set a 96px padding to the top at the md breakpoint */
  .pt-md-8 {
    padding-top: 96px !important;
  }
  /* Set a 96px padding to the right at the md breakpoint */
  .pr-md-8 {
    padding-right: 96px !important;
  }
  /* Set a 96px padding to the bottom at the md breakpoint */
  .pb-md-8 {
    padding-bottom: 96px !important;
  }
  /* Set a 96px padding to the left at the md breakpoint */
  .pl-md-8 {
    padding-left: 96px !important;
  }
  /* Set a 96px padding to the left & right at the md breakpoint */
  .px-md-8 {
    padding-right: 96px !important;
    padding-left: 96px !important;
  }
  /* Set a 96px padding to the top & bottom at the md breakpoint */
  .py-md-8 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 144px padding to all sides at the md breakpoint */
  .p-md-9 {
    padding: 144px !important;
  }
  /* Set a 144px padding to the top at the md breakpoint */
  .pt-md-9 {
    padding-top: 144px !important;
  }
  /* Set a 144px padding to the right at the md breakpoint */
  .pr-md-9 {
    padding-right: 144px !important;
  }
  /* Set a 144px padding to the bottom at the md breakpoint */
  .pb-md-9 {
    padding-bottom: 144px !important;
  }
  /* Set a 144px padding to the left at the md breakpoint */
  .pl-md-9 {
    padding-left: 144px !important;
  }
  /* Set a 144px padding to the left & right at the md breakpoint */
  .px-md-9 {
    padding-right: 144px !important;
    padding-left: 144px !important;
  }
  /* Set a 144px padding to the top & bottom at the md breakpoint */
  .py-md-9 {
    padding-top: 144px !important;
    padding-bottom: 144px !important;
  }
}
@media (min-width: 800px) {
  /* Set a 216px padding to all sides at the md breakpoint */
  .p-md-10 {
    padding: 216px !important;
  }
  /* Set a 216px padding to the top at the md breakpoint */
  .pt-md-10 {
    padding-top: 216px !important;
  }
  /* Set a 216px padding to the right at the md breakpoint */
  .pr-md-10 {
    padding-right: 216px !important;
  }
  /* Set a 216px padding to the bottom at the md breakpoint */
  .pb-md-10 {
    padding-bottom: 216px !important;
  }
  /* Set a 216px padding to the left at the md breakpoint */
  .pl-md-10 {
    padding-left: 216px !important;
  }
  /* Set a 216px padding to the left & right at the md breakpoint */
  .px-md-10 {
    padding-right: 216px !important;
    padding-left: 216px !important;
  }
  /* Set a 216px padding to the top & bottom at the md breakpoint */
  .py-md-10 {
    padding-top: 216px !important;
    padding-bottom: 216px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 0 padding to all sides at the lg breakpoint */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* Set a 0 padding to the top at the lg breakpoint */
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  /* Set a 0 padding to the right at the lg breakpoint */
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  /* Set a 0 padding to the bottom at the lg breakpoint */
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  /* Set a 0 padding to the left at the lg breakpoint */
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  /* Set a 0 padding to the left & right at the lg breakpoint */
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* Set a 0 padding to the top & bottom at the lg breakpoint */
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 4px padding to all sides at the lg breakpoint */
  .p-lg-1 {
    padding: 4px !important;
  }
  /* Set a 4px padding to the top at the lg breakpoint */
  .pt-lg-1 {
    padding-top: 4px !important;
  }
  /* Set a 4px padding to the right at the lg breakpoint */
  .pr-lg-1 {
    padding-right: 4px !important;
  }
  /* Set a 4px padding to the bottom at the lg breakpoint */
  .pb-lg-1 {
    padding-bottom: 4px !important;
  }
  /* Set a 4px padding to the left at the lg breakpoint */
  .pl-lg-1 {
    padding-left: 4px !important;
  }
  /* Set a 4px padding to the left & right at the lg breakpoint */
  .px-lg-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  /* Set a 4px padding to the top & bottom at the lg breakpoint */
  .py-lg-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 6px padding to all sides at the lg breakpoint */
  .p-lg-2 {
    padding: 6px !important;
  }
  /* Set a 6px padding to the top at the lg breakpoint */
  .pt-lg-2 {
    padding-top: 6px !important;
  }
  /* Set a 6px padding to the right at the lg breakpoint */
  .pr-lg-2 {
    padding-right: 6px !important;
  }
  /* Set a 6px padding to the bottom at the lg breakpoint */
  .pb-lg-2 {
    padding-bottom: 6px !important;
  }
  /* Set a 6px padding to the left at the lg breakpoint */
  .pl-lg-2 {
    padding-left: 6px !important;
  }
  /* Set a 6px padding to the left & right at the lg breakpoint */
  .px-lg-2 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
  /* Set a 6px padding to the top & bottom at the lg breakpoint */
  .py-lg-2 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 12px padding to all sides at the lg breakpoint */
  .p-lg-3 {
    padding: 12px !important;
  }
  /* Set a 12px padding to the top at the lg breakpoint */
  .pt-lg-3 {
    padding-top: 12px !important;
  }
  /* Set a 12px padding to the right at the lg breakpoint */
  .pr-lg-3 {
    padding-right: 12px !important;
  }
  /* Set a 12px padding to the bottom at the lg breakpoint */
  .pb-lg-3 {
    padding-bottom: 12px !important;
  }
  /* Set a 12px padding to the left at the lg breakpoint */
  .pl-lg-3 {
    padding-left: 12px !important;
  }
  /* Set a 12px padding to the left & right at the lg breakpoint */
  .px-lg-3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  /* Set a 12px padding to the top & bottom at the lg breakpoint */
  .py-lg-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 24px padding to all sides at the lg breakpoint */
  .p-lg-4 {
    padding: 24px !important;
  }
  /* Set a 24px padding to the top at the lg breakpoint */
  .pt-lg-4 {
    padding-top: 24px !important;
  }
  /* Set a 24px padding to the right at the lg breakpoint */
  .pr-lg-4 {
    padding-right: 24px !important;
  }
  /* Set a 24px padding to the bottom at the lg breakpoint */
  .pb-lg-4 {
    padding-bottom: 24px !important;
  }
  /* Set a 24px padding to the left at the lg breakpoint */
  .pl-lg-4 {
    padding-left: 24px !important;
  }
  /* Set a 24px padding to the left & right at the lg breakpoint */
  .px-lg-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  /* Set a 24px padding to the top & bottom at the lg breakpoint */
  .py-lg-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 36px padding to all sides at the lg breakpoint */
  .p-lg-5 {
    padding: 36px !important;
  }
  /* Set a 36px padding to the top at the lg breakpoint */
  .pt-lg-5 {
    padding-top: 36px !important;
  }
  /* Set a 36px padding to the right at the lg breakpoint */
  .pr-lg-5 {
    padding-right: 36px !important;
  }
  /* Set a 36px padding to the bottom at the lg breakpoint */
  .pb-lg-5 {
    padding-bottom: 36px !important;
  }
  /* Set a 36px padding to the left at the lg breakpoint */
  .pl-lg-5 {
    padding-left: 36px !important;
  }
  /* Set a 36px padding to the left & right at the lg breakpoint */
  .px-lg-5 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  /* Set a 36px padding to the top & bottom at the lg breakpoint */
  .py-lg-5 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 48px padding to all sides at the lg breakpoint */
  .p-lg-6 {
    padding: 48px !important;
  }
  /* Set a 48px padding to the top at the lg breakpoint */
  .pt-lg-6 {
    padding-top: 48px !important;
  }
  /* Set a 48px padding to the right at the lg breakpoint */
  .pr-lg-6 {
    padding-right: 48px !important;
  }
  /* Set a 48px padding to the bottom at the lg breakpoint */
  .pb-lg-6 {
    padding-bottom: 48px !important;
  }
  /* Set a 48px padding to the left at the lg breakpoint */
  .pl-lg-6 {
    padding-left: 48px !important;
  }
  /* Set a 48px padding to the left & right at the lg breakpoint */
  .px-lg-6 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  /* Set a 48px padding to the top & bottom at the lg breakpoint */
  .py-lg-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 72px padding to all sides at the lg breakpoint */
  .p-lg-7 {
    padding: 72px !important;
  }
  /* Set a 72px padding to the top at the lg breakpoint */
  .pt-lg-7 {
    padding-top: 72px !important;
  }
  /* Set a 72px padding to the right at the lg breakpoint */
  .pr-lg-7 {
    padding-right: 72px !important;
  }
  /* Set a 72px padding to the bottom at the lg breakpoint */
  .pb-lg-7 {
    padding-bottom: 72px !important;
  }
  /* Set a 72px padding to the left at the lg breakpoint */
  .pl-lg-7 {
    padding-left: 72px !important;
  }
  /* Set a 72px padding to the left & right at the lg breakpoint */
  .px-lg-7 {
    padding-right: 72px !important;
    padding-left: 72px !important;
  }
  /* Set a 72px padding to the top & bottom at the lg breakpoint */
  .py-lg-7 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 96px padding to all sides at the lg breakpoint */
  .p-lg-8 {
    padding: 96px !important;
  }
  /* Set a 96px padding to the top at the lg breakpoint */
  .pt-lg-8 {
    padding-top: 96px !important;
  }
  /* Set a 96px padding to the right at the lg breakpoint */
  .pr-lg-8 {
    padding-right: 96px !important;
  }
  /* Set a 96px padding to the bottom at the lg breakpoint */
  .pb-lg-8 {
    padding-bottom: 96px !important;
  }
  /* Set a 96px padding to the left at the lg breakpoint */
  .pl-lg-8 {
    padding-left: 96px !important;
  }
  /* Set a 96px padding to the left & right at the lg breakpoint */
  .px-lg-8 {
    padding-right: 96px !important;
    padding-left: 96px !important;
  }
  /* Set a 96px padding to the top & bottom at the lg breakpoint */
  .py-lg-8 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 144px padding to all sides at the lg breakpoint */
  .p-lg-9 {
    padding: 144px !important;
  }
  /* Set a 144px padding to the top at the lg breakpoint */
  .pt-lg-9 {
    padding-top: 144px !important;
  }
  /* Set a 144px padding to the right at the lg breakpoint */
  .pr-lg-9 {
    padding-right: 144px !important;
  }
  /* Set a 144px padding to the bottom at the lg breakpoint */
  .pb-lg-9 {
    padding-bottom: 144px !important;
  }
  /* Set a 144px padding to the left at the lg breakpoint */
  .pl-lg-9 {
    padding-left: 144px !important;
  }
  /* Set a 144px padding to the left & right at the lg breakpoint */
  .px-lg-9 {
    padding-right: 144px !important;
    padding-left: 144px !important;
  }
  /* Set a 144px padding to the top & bottom at the lg breakpoint */
  .py-lg-9 {
    padding-top: 144px !important;
    padding-bottom: 144px !important;
  }
}
@media (min-width: 1025px) {
  /* Set a 216px padding to all sides at the lg breakpoint */
  .p-lg-10 {
    padding: 216px !important;
  }
  /* Set a 216px padding to the top at the lg breakpoint */
  .pt-lg-10 {
    padding-top: 216px !important;
  }
  /* Set a 216px padding to the right at the lg breakpoint */
  .pr-lg-10 {
    padding-right: 216px !important;
  }
  /* Set a 216px padding to the bottom at the lg breakpoint */
  .pb-lg-10 {
    padding-bottom: 216px !important;
  }
  /* Set a 216px padding to the left at the lg breakpoint */
  .pl-lg-10 {
    padding-left: 216px !important;
  }
  /* Set a 216px padding to the left & right at the lg breakpoint */
  .px-lg-10 {
    padding-right: 216px !important;
    padding-left: 216px !important;
  }
  /* Set a 216px padding to the top & bottom at the lg breakpoint */
  .py-lg-10 {
    padding-top: 216px !important;
    padding-bottom: 216px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 0 padding to all sides at the xl breakpoint */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* Set a 0 padding to the top at the xl breakpoint */
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  /* Set a 0 padding to the right at the xl breakpoint */
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  /* Set a 0 padding to the bottom at the xl breakpoint */
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  /* Set a 0 padding to the left at the xl breakpoint */
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  /* Set a 0 padding to the left & right at the xl breakpoint */
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* Set a 0 padding to the top & bottom at the xl breakpoint */
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 4px padding to all sides at the xl breakpoint */
  .p-xl-1 {
    padding: 4px !important;
  }
  /* Set a 4px padding to the top at the xl breakpoint */
  .pt-xl-1 {
    padding-top: 4px !important;
  }
  /* Set a 4px padding to the right at the xl breakpoint */
  .pr-xl-1 {
    padding-right: 4px !important;
  }
  /* Set a 4px padding to the bottom at the xl breakpoint */
  .pb-xl-1 {
    padding-bottom: 4px !important;
  }
  /* Set a 4px padding to the left at the xl breakpoint */
  .pl-xl-1 {
    padding-left: 4px !important;
  }
  /* Set a 4px padding to the left & right at the xl breakpoint */
  .px-xl-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  /* Set a 4px padding to the top & bottom at the xl breakpoint */
  .py-xl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 6px padding to all sides at the xl breakpoint */
  .p-xl-2 {
    padding: 6px !important;
  }
  /* Set a 6px padding to the top at the xl breakpoint */
  .pt-xl-2 {
    padding-top: 6px !important;
  }
  /* Set a 6px padding to the right at the xl breakpoint */
  .pr-xl-2 {
    padding-right: 6px !important;
  }
  /* Set a 6px padding to the bottom at the xl breakpoint */
  .pb-xl-2 {
    padding-bottom: 6px !important;
  }
  /* Set a 6px padding to the left at the xl breakpoint */
  .pl-xl-2 {
    padding-left: 6px !important;
  }
  /* Set a 6px padding to the left & right at the xl breakpoint */
  .px-xl-2 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
  /* Set a 6px padding to the top & bottom at the xl breakpoint */
  .py-xl-2 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 12px padding to all sides at the xl breakpoint */
  .p-xl-3 {
    padding: 12px !important;
  }
  /* Set a 12px padding to the top at the xl breakpoint */
  .pt-xl-3 {
    padding-top: 12px !important;
  }
  /* Set a 12px padding to the right at the xl breakpoint */
  .pr-xl-3 {
    padding-right: 12px !important;
  }
  /* Set a 12px padding to the bottom at the xl breakpoint */
  .pb-xl-3 {
    padding-bottom: 12px !important;
  }
  /* Set a 12px padding to the left at the xl breakpoint */
  .pl-xl-3 {
    padding-left: 12px !important;
  }
  /* Set a 12px padding to the left & right at the xl breakpoint */
  .px-xl-3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  /* Set a 12px padding to the top & bottom at the xl breakpoint */
  .py-xl-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 24px padding to all sides at the xl breakpoint */
  .p-xl-4 {
    padding: 24px !important;
  }
  /* Set a 24px padding to the top at the xl breakpoint */
  .pt-xl-4 {
    padding-top: 24px !important;
  }
  /* Set a 24px padding to the right at the xl breakpoint */
  .pr-xl-4 {
    padding-right: 24px !important;
  }
  /* Set a 24px padding to the bottom at the xl breakpoint */
  .pb-xl-4 {
    padding-bottom: 24px !important;
  }
  /* Set a 24px padding to the left at the xl breakpoint */
  .pl-xl-4 {
    padding-left: 24px !important;
  }
  /* Set a 24px padding to the left & right at the xl breakpoint */
  .px-xl-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  /* Set a 24px padding to the top & bottom at the xl breakpoint */
  .py-xl-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 36px padding to all sides at the xl breakpoint */
  .p-xl-5 {
    padding: 36px !important;
  }
  /* Set a 36px padding to the top at the xl breakpoint */
  .pt-xl-5 {
    padding-top: 36px !important;
  }
  /* Set a 36px padding to the right at the xl breakpoint */
  .pr-xl-5 {
    padding-right: 36px !important;
  }
  /* Set a 36px padding to the bottom at the xl breakpoint */
  .pb-xl-5 {
    padding-bottom: 36px !important;
  }
  /* Set a 36px padding to the left at the xl breakpoint */
  .pl-xl-5 {
    padding-left: 36px !important;
  }
  /* Set a 36px padding to the left & right at the xl breakpoint */
  .px-xl-5 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  /* Set a 36px padding to the top & bottom at the xl breakpoint */
  .py-xl-5 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 48px padding to all sides at the xl breakpoint */
  .p-xl-6 {
    padding: 48px !important;
  }
  /* Set a 48px padding to the top at the xl breakpoint */
  .pt-xl-6 {
    padding-top: 48px !important;
  }
  /* Set a 48px padding to the right at the xl breakpoint */
  .pr-xl-6 {
    padding-right: 48px !important;
  }
  /* Set a 48px padding to the bottom at the xl breakpoint */
  .pb-xl-6 {
    padding-bottom: 48px !important;
  }
  /* Set a 48px padding to the left at the xl breakpoint */
  .pl-xl-6 {
    padding-left: 48px !important;
  }
  /* Set a 48px padding to the left & right at the xl breakpoint */
  .px-xl-6 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  /* Set a 48px padding to the top & bottom at the xl breakpoint */
  .py-xl-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 72px padding to all sides at the xl breakpoint */
  .p-xl-7 {
    padding: 72px !important;
  }
  /* Set a 72px padding to the top at the xl breakpoint */
  .pt-xl-7 {
    padding-top: 72px !important;
  }
  /* Set a 72px padding to the right at the xl breakpoint */
  .pr-xl-7 {
    padding-right: 72px !important;
  }
  /* Set a 72px padding to the bottom at the xl breakpoint */
  .pb-xl-7 {
    padding-bottom: 72px !important;
  }
  /* Set a 72px padding to the left at the xl breakpoint */
  .pl-xl-7 {
    padding-left: 72px !important;
  }
  /* Set a 72px padding to the left & right at the xl breakpoint */
  .px-xl-7 {
    padding-right: 72px !important;
    padding-left: 72px !important;
  }
  /* Set a 72px padding to the top & bottom at the xl breakpoint */
  .py-xl-7 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 96px padding to all sides at the xl breakpoint */
  .p-xl-8 {
    padding: 96px !important;
  }
  /* Set a 96px padding to the top at the xl breakpoint */
  .pt-xl-8 {
    padding-top: 96px !important;
  }
  /* Set a 96px padding to the right at the xl breakpoint */
  .pr-xl-8 {
    padding-right: 96px !important;
  }
  /* Set a 96px padding to the bottom at the xl breakpoint */
  .pb-xl-8 {
    padding-bottom: 96px !important;
  }
  /* Set a 96px padding to the left at the xl breakpoint */
  .pl-xl-8 {
    padding-left: 96px !important;
  }
  /* Set a 96px padding to the left & right at the xl breakpoint */
  .px-xl-8 {
    padding-right: 96px !important;
    padding-left: 96px !important;
  }
  /* Set a 96px padding to the top & bottom at the xl breakpoint */
  .py-xl-8 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 144px padding to all sides at the xl breakpoint */
  .p-xl-9 {
    padding: 144px !important;
  }
  /* Set a 144px padding to the top at the xl breakpoint */
  .pt-xl-9 {
    padding-top: 144px !important;
  }
  /* Set a 144px padding to the right at the xl breakpoint */
  .pr-xl-9 {
    padding-right: 144px !important;
  }
  /* Set a 144px padding to the bottom at the xl breakpoint */
  .pb-xl-9 {
    padding-bottom: 144px !important;
  }
  /* Set a 144px padding to the left at the xl breakpoint */
  .pl-xl-9 {
    padding-left: 144px !important;
  }
  /* Set a 144px padding to the left & right at the xl breakpoint */
  .px-xl-9 {
    padding-right: 144px !important;
    padding-left: 144px !important;
  }
  /* Set a 144px padding to the top & bottom at the xl breakpoint */
  .py-xl-9 {
    padding-top: 144px !important;
    padding-bottom: 144px !important;
  }
}
@media (min-width: 1460px) {
  /* Set a 216px padding to all sides at the xl breakpoint */
  .p-xl-10 {
    padding: 216px !important;
  }
  /* Set a 216px padding to the top at the xl breakpoint */
  .pt-xl-10 {
    padding-top: 216px !important;
  }
  /* Set a 216px padding to the right at the xl breakpoint */
  .pr-xl-10 {
    padding-right: 216px !important;
  }
  /* Set a 216px padding to the bottom at the xl breakpoint */
  .pb-xl-10 {
    padding-bottom: 216px !important;
  }
  /* Set a 216px padding to the left at the xl breakpoint */
  .pl-xl-10 {
    padding-left: 216px !important;
  }
  /* Set a 216px padding to the left & right at the xl breakpoint */
  .px-xl-10 {
    padding-right: 216px !important;
    padding-left: 216px !important;
  }
  /* Set a 216px padding to the top & bottom at the xl breakpoint */
  .py-xl-10 {
    padding-top: 216px !important;
    padding-bottom: 216px !important;
  }
}
/* Set the font size to 40px and weight to light */
.f00-light {
  font-size: 40px !important;
  font-weight: 300 !important;
}
@media (min-width: 800px) {
  .f00-light {
    font-size: 48px !important;
  }
}

/* Set the font size to 32px and weight to light */
.f0-light {
  font-size: 32px !important;
  font-weight: 300 !important;
}
@media (min-width: 800px) {
  .f0-light {
    font-size: 40px !important;
  }
}

/* Set the font size to 26px and weight to light */
.f1-light {
  font-size: 26px !important;
  font-weight: 300 !important;
}
@media (min-width: 800px) {
  .f1-light {
    font-size: 32px !important;
  }
}

/* Set the font size to 22px and weight to light */
.f2-light {
  font-size: 22px !important;
  font-weight: 300 !important;
}
@media (min-width: 800px) {
  .f2-light {
    font-size: 24px !important;
  }
}

/* Set the font size to 18px and weight to light */
.f3-light {
  font-size: 18px !important;
  font-weight: 300 !important;
}
@media (min-width: 800px) {
  .f3-light {
    font-size: 20px !important;
  }
}

/* Set the font size to ${#h6-size} */
.text-small {
  font-size: 14px !important;
}

/* Large leading paragraphs */
.lead {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 300;
  color: #555;
}

/* Set the line height to ultra condensed */
.lh-condensed-ultra {
  line-height: 1 !important;
}

/* Set the line height to condensed */
.lh-condensed {
  line-height: 1.25 !important;
}

/* Set the line height to default */
.lh-default {
  line-height: 1.5 !important;
}

/* Text align to the right */
.text-right {
  text-align: right !important;
}

/* Text align to the left */
.text-left {
  text-align: left !important;
}

/* Text align to the center */
.text-center {
  text-align: center !important;
}

@media (min-width: 600px) {
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 800px) {
  .text-md-right {
    text-align: right !important;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1025px) {
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1460px) {
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.list-style-none {
  list-style: none !important;
}

/* Add a dark text shadow */
.text-shadow-dark {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 1px 25px rgba(0, 0, 0, 0.75);
}

/* Add a light text shadow */
.text-shadow-light {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, pt-6 pb-6, main,
audio, canvas, video {
  display: block;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  src: url("./fonts/fa-solid-900.eot");
  src: url("./fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("./fonts/fa-solid-900.woff2") format("woff2"), url("./fonts/fa-solid-900.woff") format("woff"), url("./fonts/fa-solid-900.ttf") format("truetype"), url("./fonts/fa-solid-900.svg#fontawesome") format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/fa-regular-400.eot");
  src: url("./fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("./fonts/fa-regular-400.woff2") format("woff2"), url("./fonts/fa-regular-400.woff") format("woff"), url("./fonts/fa-regular-400.ttf") format("truetype"), url("./fonts/fa-regular-400.svg#fontawesome") format("svg");
}
.h-xl {
  color: #22252B;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .h-xl {
    font-size: 72px;
  }
}
@media (min-width: 1025px) {
  .h-xl {
    font-size: 92px;
  }
}

.h1,
.rte h1 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 22px;
}
.text-white .h1,
.text-white .rte h1 {
  color: #ffffff;
}
@media (min-width: 600px) {
  .h1,
  .rte h1 {
    font-size: 48px;
  }
}
@media (min-width: 800px) {
  .h1,
  .rte h1 {
    font-size: 48px;
  }
}

.h2,
.rte h2 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 22px;
}
.text-white .h2,
.text-white .rte h2 {
  color: #ffffff;
}
@media (min-width: 600px) {
  .h2,
  .rte h2 {
    font-size: 32px;
  }
}
@media (min-width: 800px) {
  .h2,
  .rte h2 {
    font-size: 36px;
  }
}

.h3,
.rte h3 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.22;
}
.text-white .h3,
.text-white .rte h3 {
  color: #ffffff;
}
@media (min-width: 600px) {
  .h3,
  .rte h3 {
    font-size: 24px;
  }
}
@media (min-width: 800px) {
  .h3,
  .rte h3 {
    font-size: 28px;
  }
}

.h4,
.rte h4 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.22;
}
.text-white .h4,
.text-white .rte h4 {
  color: #ffffff;
}
@media (min-width: 800px) {
  .h4,
  .rte h4 {
    font-size: 24px;
  }
}

.h5,
.rte h5 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 12px;
}
.text-white .h5,
.text-white .rte h5 {
  color: #ffffff;
}
@media (min-width: 800px) {
  .h5,
  .rte h5 {
    font-size: 14px;
  }
}

.h6,
.rte h6 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 10px;
}
.text-white .h6,
.text-white .rte h6 {
  color: #ffffff;
}
@media (min-width: 800px) {
  .h6,
  .rte h6 {
    font-size: 11px;
  }
}

.p,
p {
  font-family: "brandon-grotesque", sans-serif;
  font-family: "brandon-grotesque", sans-serif;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: none;
}
.p,
p {
  font-family: "brandon-grotesque", sans-serif;
  font-family: "brandon-grotesque", sans-serif;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: none;
}
.p b,
p b {
  color: #22252B;
}

.p-lg {
  font-family: "brandon-grotesque", sans-serif;
  font-family: "brandon-grotesque", sans-serif;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: none;
  font-size: 18px;
}
@media (min-width: 800px) {
  .p-lg {
    font-size: 20px;
  }
}

.p-sm,
small {
  font-size: 14px;
}

.rte--lead p:first-of-type::first-letter {
  initial-letter: 2 2;
  font-weight: 700;
  color: #02998D;
  font-size: 88px;
  line-height: 50px;
  float: left;
  padding-top: 19px;
  padding-right: 23px;
  padding-bottom: 12px;
}

.btn {
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #02998D;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 16px;
  white-space: nowrap;
  border-radius: 4px;
  border: 2px solid #02998D;
  line-height: 1;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
@media (max-width: 599px) {
  .btn {
    width: 100%;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 17px 8px;
  }
}
.btn:hover, .btn:active, .btn:focus {
  cursor: pointer;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}

.btn--lg {
  font-size: 14px;
}

.btn--outline {
  background: transparent;
  color: #02998D;
}
.btn--outline:hover {
  color: #ffffff;
  background: rgba(2, 153, 141, 0.8);
}
.text-white .btn--outline {
  color: #ffffff;
  border-color: #ffffff;
}
.text-white .btn--outline:hover {
  background: #ffffff;
  color: #02998D;
}

.btn-sm {
  padding: 12px 12px;
  font-size: 10px;
  width: auto;
  min-width: 0;
}

@media (max-width: 599px) {
  .btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .btn-group .btn {
    max-width: 48%;
  }
}
#menu-purchasing-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#menu-purchasing-options li {
  width: 100%;
  max-width: 49%;
  margin: 0 8px 0 0;
}
#menu-purchasing-options li + li {
  margin: 0;
}
#menu-purchasing-options li a {
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #02998D;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 16px;
  white-space: nowrap;
  border-radius: 4px;
  border: 2px solid #02998D;
  line-height: 1;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  width: 100%;
  background: #ffffff;
  color: #c1c1c1;
  border-color: #c1c1c1;
  -webkit-transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  font-size: 12px;
  padding: 14px 8px;
}
@media (max-width: 599px) {
  #menu-purchasing-options li a {
    width: 100%;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 17px 8px;
  }
}
#menu-purchasing-options li a:hover, #menu-purchasing-options li a:active, #menu-purchasing-options li a:focus {
  cursor: pointer;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}
#menu-purchasing-options li a:hover {
  opacity: 1;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}
#menu-purchasing-options li .btn {
  max-width: 100%;
}
#menu-purchasing-options li.current-menu-item a {
  background: #02998D;
  color: #ffffff;
  border-color: #02998D;
}
#menu-purchasing-options li.current-menu-item a:hover {
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}

.btn--light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--light:hover {
  cursor: pointer;
  background: #ffffff;
  color: #02998D;
}

.link {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 10px;
  color: #02998D;
  position: relative;
  display: inline-block;
}
.text-white .link {
  color: #ffffff;
}
@media (min-width: 800px) {
  .link {
    font-size: 11px;
  }
}
.link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #02998D;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.link:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.noTouch .tel,
.noTouch .tel:hover {
  cursor: text;
}

.btn.disabled,
.btn[disabled] {
  cursor: default !important;
  -webkit-filter: grayscale(100%) !important;
  filter: grayscale(100%) !important;
  opacity: 0.5 !important;
}
.btn.disabled:hover,
.btn[disabled]:hover {
  background: #02998D !important;
  border-color: #02998D !important;
}

.btn-group-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 12px;
}
@media (min-width: 1440px) {
  .btn-group-new {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

body,
input,
button,
select,
textarea {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  color: #5d5d5d;
}
@media (min-width: 800px) {
  body,
  input,
  button,
  select,
  textarea {
    font-size: 18px;
  }
}

main#content {
  min-height: 500px;
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: none;
}
a[href^="tel:"]:hover {
  cursor: default;
}
a.a {
  color: #EF4A58;
  text-decoration: underline;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
a.a:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #02998D;
}

[data-scroll-to],
[data-click-target] {
  cursor: pointer;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

hr {
  border-bottom: 1px solid #e7e7e7;
}

picture > * {
  width: 100%;
  height: auto;
}

::-moz-selection {
  color: #ffffff;
  background: #02998D;
}

::selection {
  color: #ffffff;
  background: #02998D;
}

::-moz-selection {
  color: #ffffff;
  background: #02998D;
}

.wrapper {
  width: 94%;
  margin: 0 auto;
  max-width: 1220px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
}

.wrapper-wide {
  width: 94%;
  margin: 0 auto;
  max-width: 1220px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  max-width: 1440px;
}

.wrapper-full {
  max-width: 100%;
  overflow-x: hidden;
}

.wrapper-full--brand {
  background: #02998D;
}

.wrapper-thin {
  width: 94%;
  margin: 0 auto;
  max-width: 1220px;
  -webkit-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  max-width: 720px;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row--align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.row--flush {
  margin-left: -10px;
  margin-right: -10px;
  margin-left: 0;
  margin-right: 0;
}
.row--flush:after {
  content: "";
  display: table;
  clear: both;
}
.row--flush *[class*=col--xs--],
.row--flush *[class*=col--sm--],
.row--flush *[class*=col--md--],
.row--flush *[class*=col--lg--] {
  padding-left: 0;
  padding-right: 0;
}

.col--xs--1, .col--sm--1, .col--md--1, .col--lg--1, .col--xs--2, .col--sm--2, .col--md--2, .col--lg--2, .col--xs--3, .col--sm--3, .col--md--3, .col--lg--3, .col--xs--4, .col--sm--4, .col--md--4, .col--lg--4, .col--xs--5, .col--sm--5, .col--md--5, .col--lg--5, .col--xs--6, .col--sm--6, .col--md--6, .col--lg--6, .col--xs--7, .col--sm--7, .col--md--7, .col--lg--7, .col--xs--8, .col--sm--8, .col--md--8, .col--lg--8, .col--xs--9, .col--sm--9, .col--md--9, .col--lg--9, .col--xs--10, .col--sm--10, .col--md--10, .col--lg--10, .col--xs--11, .col--sm--11, .col--md--11, .col--lg--11, .col--xs--12, .col--sm--12, .col--md--12, .col--lg--12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.col--xs--1 {
  width: 8.3333333333%;
}

.col--xs--2 {
  width: 16.6666666667%;
}

.col--xs--3 {
  width: 25%;
}

.col--xs--4 {
  width: 33.3333333333%;
}

.col--xs--5 {
  width: 41.6666666667%;
}

.col--xs--6 {
  width: 50%;
}

.col--xs--7 {
  width: 58.3333333333%;
}

.col--xs--8 {
  width: 66.6666666667%;
}

.col--xs--9 {
  width: 75%;
}

.col--xs--10 {
  width: 83.3333333333%;
}

.col--xs--11 {
  width: 91.6666666667%;
}

.col--xs--12 {
  width: 100%;
}

.col--xs--pull--0 {
  right: auto;
}

.col--xs--pull--1 {
  right: 8.3333333333%;
}

.col--xs--pull--2 {
  right: 16.6666666667%;
}

.col--xs--pull--3 {
  right: 25%;
}

.col--xs--pull--4 {
  right: 33.3333333333%;
}

.col--xs--pull--5 {
  right: 41.6666666667%;
}

.col--xs--pull--6 {
  right: 50%;
}

.col--xs--pull--7 {
  right: 58.3333333333%;
}

.col--xs--pull--8 {
  right: 66.6666666667%;
}

.col--xs--pull--9 {
  right: 75%;
}

.col--xs--pull--10 {
  right: 83.3333333333%;
}

.col--xs--pull--11 {
  right: 91.6666666667%;
}

.col--xs--pull--12 {
  right: 100%;
}

.col--xs--push--0 {
  left: auto;
}

.col--xs--push--1 {
  left: 8.3333333333%;
}

.col--xs--push--2 {
  left: 16.6666666667%;
}

.col--xs--push--3 {
  left: 25%;
}

.col--xs--push--4 {
  left: 33.3333333333%;
}

.col--xs--push--5 {
  left: 41.6666666667%;
}

.col--xs--push--6 {
  left: 50%;
}

.col--xs--push--7 {
  left: 58.3333333333%;
}

.col--xs--push--8 {
  left: 66.6666666667%;
}

.col--xs--push--9 {
  left: 75%;
}

.col--xs--push--10 {
  left: 83.3333333333%;
}

.col--xs--push--11 {
  left: 91.6666666667%;
}

.col--xs--push--12 {
  left: 100%;
}

.col--xs--offset--0 {
  margin-left: 0%;
}

.col--xs--offset--1 {
  margin-left: 8.3333333333%;
}

.col--xs--offset--2 {
  margin-left: 16.6666666667%;
}

.col--xs--offset--3 {
  margin-left: 25%;
}

.col--xs--offset--4 {
  margin-left: 33.3333333333%;
}

.col--xs--offset--5 {
  margin-left: 41.6666666667%;
}

.col--xs--offset--6 {
  margin-left: 50%;
}

.col--xs--offset--7 {
  margin-left: 58.3333333333%;
}

.col--xs--offset--8 {
  margin-left: 66.6666666667%;
}

.col--xs--offset--9 {
  margin-left: 75%;
}

.col--xs--offset--10 {
  margin-left: 83.3333333333%;
}

.col--xs--offset--11 {
  margin-left: 91.6666666667%;
}

.col--xs--offset--12 {
  margin-left: 100%;
}

@media (min-width: 600px) {
  .col--sm--1 {
    width: 8.3333333333%;
  }
  .col--sm--2 {
    width: 16.6666666667%;
  }
  .col--sm--3 {
    width: 25%;
  }
  .col--sm--4 {
    width: 33.3333333333%;
  }
  .col--sm--5 {
    width: 41.6666666667%;
  }
  .col--sm--6 {
    width: 50%;
  }
  .col--sm--7 {
    width: 58.3333333333%;
  }
  .col--sm--8 {
    width: 66.6666666667%;
  }
  .col--sm--9 {
    width: 75%;
  }
  .col--sm--10 {
    width: 83.3333333333%;
  }
  .col--sm--11 {
    width: 91.6666666667%;
  }
  .col--sm--12 {
    width: 100%;
  }
  .col--sm--pull--0 {
    right: auto;
  }
  .col--sm--pull--1 {
    right: 8.3333333333%;
  }
  .col--sm--pull--2 {
    right: 16.6666666667%;
  }
  .col--sm--pull--3 {
    right: 25%;
  }
  .col--sm--pull--4 {
    right: 33.3333333333%;
  }
  .col--sm--pull--5 {
    right: 41.6666666667%;
  }
  .col--sm--pull--6 {
    right: 50%;
  }
  .col--sm--pull--7 {
    right: 58.3333333333%;
  }
  .col--sm--pull--8 {
    right: 66.6666666667%;
  }
  .col--sm--pull--9 {
    right: 75%;
  }
  .col--sm--pull--10 {
    right: 83.3333333333%;
  }
  .col--sm--pull--11 {
    right: 91.6666666667%;
  }
  .col--sm--pull--12 {
    right: 100%;
  }
  .col--sm--push--0 {
    left: auto;
  }
  .col--sm--push--1 {
    left: 8.3333333333%;
  }
  .col--sm--push--2 {
    left: 16.6666666667%;
  }
  .col--sm--push--3 {
    left: 25%;
  }
  .col--sm--push--4 {
    left: 33.3333333333%;
  }
  .col--sm--push--5 {
    left: 41.6666666667%;
  }
  .col--sm--push--6 {
    left: 50%;
  }
  .col--sm--push--7 {
    left: 58.3333333333%;
  }
  .col--sm--push--8 {
    left: 66.6666666667%;
  }
  .col--sm--push--9 {
    left: 75%;
  }
  .col--sm--push--10 {
    left: 83.3333333333%;
  }
  .col--sm--push--11 {
    left: 91.6666666667%;
  }
  .col--sm--push--12 {
    left: 100%;
  }
  .col--sm--offset--0 {
    margin-left: 0%;
  }
  .col--sm--offset--1 {
    margin-left: 8.3333333333%;
  }
  .col--sm--offset--2 {
    margin-left: 16.6666666667%;
  }
  .col--sm--offset--3 {
    margin-left: 25%;
  }
  .col--sm--offset--4 {
    margin-left: 33.3333333333%;
  }
  .col--sm--offset--5 {
    margin-left: 41.6666666667%;
  }
  .col--sm--offset--6 {
    margin-left: 50%;
  }
  .col--sm--offset--7 {
    margin-left: 58.3333333333%;
  }
  .col--sm--offset--8 {
    margin-left: 66.6666666667%;
  }
  .col--sm--offset--9 {
    margin-left: 75%;
  }
  .col--sm--offset--10 {
    margin-left: 83.3333333333%;
  }
  .col--sm--offset--11 {
    margin-left: 91.6666666667%;
  }
  .col--sm--offset--12 {
    margin-left: 100%;
  }
}
@media (min-width: 800px) {
  .col--md--1 {
    width: 8.3333333333%;
  }
  .col--md--2 {
    width: 16.6666666667%;
  }
  .col--md--3 {
    width: 25%;
  }
  .col--md--4 {
    width: 33.3333333333%;
  }
  .col--md--5 {
    width: 41.6666666667%;
  }
  .col--md--6 {
    width: 50%;
  }
  .col--md--7 {
    width: 58.3333333333%;
  }
  .col--md--8 {
    width: 66.6666666667%;
  }
  .col--md--9 {
    width: 75%;
  }
  .col--md--10 {
    width: 83.3333333333%;
  }
  .col--md--11 {
    width: 91.6666666667%;
  }
  .col--md--12 {
    width: 100%;
  }
  .col--md--pull--0 {
    right: auto;
  }
  .col--md--pull--1 {
    right: 8.3333333333%;
  }
  .col--md--pull--2 {
    right: 16.6666666667%;
  }
  .col--md--pull--3 {
    right: 25%;
  }
  .col--md--pull--4 {
    right: 33.3333333333%;
  }
  .col--md--pull--5 {
    right: 41.6666666667%;
  }
  .col--md--pull--6 {
    right: 50%;
  }
  .col--md--pull--7 {
    right: 58.3333333333%;
  }
  .col--md--pull--8 {
    right: 66.6666666667%;
  }
  .col--md--pull--9 {
    right: 75%;
  }
  .col--md--pull--10 {
    right: 83.3333333333%;
  }
  .col--md--pull--11 {
    right: 91.6666666667%;
  }
  .col--md--pull--12 {
    right: 100%;
  }
  .col--md--push--0 {
    left: auto;
  }
  .col--md--push--1 {
    left: 8.3333333333%;
  }
  .col--md--push--2 {
    left: 16.6666666667%;
  }
  .col--md--push--3 {
    left: 25%;
  }
  .col--md--push--4 {
    left: 33.3333333333%;
  }
  .col--md--push--5 {
    left: 41.6666666667%;
  }
  .col--md--push--6 {
    left: 50%;
  }
  .col--md--push--7 {
    left: 58.3333333333%;
  }
  .col--md--push--8 {
    left: 66.6666666667%;
  }
  .col--md--push--9 {
    left: 75%;
  }
  .col--md--push--10 {
    left: 83.3333333333%;
  }
  .col--md--push--11 {
    left: 91.6666666667%;
  }
  .col--md--push--12 {
    left: 100%;
  }
  .col--md--offset--0 {
    margin-left: 0%;
  }
  .col--md--offset--1 {
    margin-left: 8.3333333333%;
  }
  .col--md--offset--2 {
    margin-left: 16.6666666667%;
  }
  .col--md--offset--3 {
    margin-left: 25%;
  }
  .col--md--offset--4 {
    margin-left: 33.3333333333%;
  }
  .col--md--offset--5 {
    margin-left: 41.6666666667%;
  }
  .col--md--offset--6 {
    margin-left: 50%;
  }
  .col--md--offset--7 {
    margin-left: 58.3333333333%;
  }
  .col--md--offset--8 {
    margin-left: 66.6666666667%;
  }
  .col--md--offset--9 {
    margin-left: 75%;
  }
  .col--md--offset--10 {
    margin-left: 83.3333333333%;
  }
  .col--md--offset--11 {
    margin-left: 91.6666666667%;
  }
  .col--md--offset--12 {
    margin-left: 100%;
  }
}
@media (min-width: 1025px) {
  .col--lg--1 {
    width: 8.3333333333%;
  }
  .col--lg--2 {
    width: 16.6666666667%;
  }
  .col--lg--3 {
    width: 25%;
  }
  .col--lg--4 {
    width: 33.3333333333%;
  }
  .col--lg--5 {
    width: 41.6666666667%;
  }
  .col--lg--6 {
    width: 50%;
  }
  .col--lg--7 {
    width: 58.3333333333%;
  }
  .col--lg--8 {
    width: 66.6666666667%;
  }
  .col--lg--9 {
    width: 75%;
  }
  .col--lg--10 {
    width: 83.3333333333%;
  }
  .col--lg--11 {
    width: 91.6666666667%;
  }
  .col--lg--12 {
    width: 100%;
  }
  .col--lg--pull--0 {
    right: auto;
  }
  .col--lg--pull--1 {
    right: 8.3333333333%;
  }
  .col--lg--pull--2 {
    right: 16.6666666667%;
  }
  .col--lg--pull--3 {
    right: 25%;
  }
  .col--lg--pull--4 {
    right: 33.3333333333%;
  }
  .col--lg--pull--5 {
    right: 41.6666666667%;
  }
  .col--lg--pull--6 {
    right: 50%;
  }
  .col--lg--pull--7 {
    right: 58.3333333333%;
  }
  .col--lg--pull--8 {
    right: 66.6666666667%;
  }
  .col--lg--pull--9 {
    right: 75%;
  }
  .col--lg--pull--10 {
    right: 83.3333333333%;
  }
  .col--lg--pull--11 {
    right: 91.6666666667%;
  }
  .col--lg--pull--12 {
    right: 100%;
  }
  .col--lg--push--0 {
    left: auto;
  }
  .col--lg--push--1 {
    left: 8.3333333333%;
  }
  .col--lg--push--2 {
    left: 16.6666666667%;
  }
  .col--lg--push--3 {
    left: 25%;
  }
  .col--lg--push--4 {
    left: 33.3333333333%;
  }
  .col--lg--push--5 {
    left: 41.6666666667%;
  }
  .col--lg--push--6 {
    left: 50%;
  }
  .col--lg--push--7 {
    left: 58.3333333333%;
  }
  .col--lg--push--8 {
    left: 66.6666666667%;
  }
  .col--lg--push--9 {
    left: 75%;
  }
  .col--lg--push--10 {
    left: 83.3333333333%;
  }
  .col--lg--push--11 {
    left: 91.6666666667%;
  }
  .col--lg--push--12 {
    left: 100%;
  }
  .col--lg--offset--0 {
    margin-left: 0%;
  }
  .col--lg--offset--1 {
    margin-left: 8.3333333333%;
  }
  .col--lg--offset--2 {
    margin-left: 16.6666666667%;
  }
  .col--lg--offset--3 {
    margin-left: 25%;
  }
  .col--lg--offset--4 {
    margin-left: 33.3333333333%;
  }
  .col--lg--offset--5 {
    margin-left: 41.6666666667%;
  }
  .col--lg--offset--6 {
    margin-left: 50%;
  }
  .col--lg--offset--7 {
    margin-left: 58.3333333333%;
  }
  .col--lg--offset--8 {
    margin-left: 66.6666666667%;
  }
  .col--lg--offset--9 {
    margin-left: 75%;
  }
  .col--lg--offset--10 {
    margin-left: 83.3333333333%;
  }
  .col--lg--offset--11 {
    margin-left: 91.6666666667%;
  }
  .col--lg--offset--12 {
    margin-left: 100%;
  }
}
body {
  padding-top: 60px;
  -webkit-transition: margin-top 0.4s ease, opacity 0.4s ease;
  transition: margin-top 0.4s ease, opacity 0.4s ease;
}
@media (min-width: 600px) {
  body {
    padding-top: 80px;
  }
}
body.page-template-page-only {
  padding-top: 0;
}
body.page-template-page-only .site-header,
body.page-template-page-only .site-footer,
body.page-template-page-only .footer-cta,
body.page-template-page-only .footer-chat {
  display: none;
}
body:not(.home) .site-header {
  -webkit-box-shadow: 0 0 1px 1px rgba(34, 37, 43, 0.2);
  box-shadow: 0 0 1px 1px rgba(34, 37, 43, 0.2);
}

#wpadminbar {
  position: fixed !important;
}

.admin-bar.logged-in .site-header {
  top: 46px;
}
.admin-bar.logged-in .site-header .navigation-drawer {
  top: 106px;
  height: calc(100% - 46px);
}
@media (min-width: 783px) {
  .admin-bar.logged-in .site-header {
    top: 32px;
  }
  .admin-bar.logged-in .site-header .navigation-drawer {
    top: 92px;
    height: calc(100% - 32px);
  }
}

.site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: background 0.4s ease, opacity 0.4s ease;
  transition: background 0.4s ease, opacity 0.4s ease;
  background: #ffffff;
  color: #22252B;
}
@media (max-width: 599px) {
  .site-header {
    -webkit-box-shadow: 0 0 1px 1px rgba(34, 37, 43, 0.2);
    box-shadow: 0 0 1px 1px rgba(34, 37, 43, 0.2);
  }
}
@media (min-width: 600px) {
  .site-header.is-sticky {
    opacity: 0;
    pointer-events: none;
  }
  .site-header.is-sticky.scrolling-up {
    opacity: 1;
    pointer-events: inherit;
  }
}
.site-header.site-header--static {
  position: absolute;
}
.site-header.site-header--black {
  color: #22252B;
}

.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
@media (min-width: 600px) {
  .site-header__inner {
    height: 80px;
  }
}
.is-sticky .site-header__inner {
  height: 60px;
}

.site-branding a {
  display: block;
  width: 144px;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
  position: relative;
}
.site-branding a img {
  width: 100%;
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.site-branding a:hover {
  cursor: pointer;
}
@media (min-width: 1025px) {
  .site-branding a {
    width: 190px;
  }
}

.site-navigation {
  text-align: center;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  width: 100%;
}
.site-navigation .navigation__inner {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.site-navigation .navigation__inner .main-nav, .site-navigation .navigation__inner .utility-nav {
  height: 100%;
}
.site-navigation .navigation__inner .main-nav > li, .site-navigation .navigation__inner .utility-nav > li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-navigation.site-navigation--left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 18px;
}
.site-navigation.site-navigation--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hide-buger-lg .site-navigation.site-navigation--center {
  padding-right: 109px;
}
.site-navigation.site-navigation--right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.site-navigation ul.main-nav {
  display: none;
}
@media (min-width: 1025px) {
  .site-navigation ul.main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
  .site-navigation ul.main-nav > li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .site-navigation ul.main-nav > li + li {
    margin-left: 16px;
  }
}
@media (min-width: 1025px) and (min-width: 1300px) {
  .site-navigation ul.main-nav > li + li {
    margin-left: 24px;
  }
}
.site-navigation .utility-nav {
  display: none;
}
@media (min-width: 600px) {
  .site-navigation .utility-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 24px;
    position: relative;
  }
}

.main-nav li {
  position: relative;
}
.main-nav a:not(.btn) {
  display: inline-block;
  padding: 4px 0;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
  color: currentColor;
  position: relative;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
@media (min-width: 600px) {
  .main-nav a:not(.btn):after {
    content: "";
    width: 100%;
    height: 2px;
    background: #02998D;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center;
    transform-origin: center;
  }
}
@media (min-width: 1300px) {
  .main-nav a:not(.btn) {
    font-size: 16px;
  }
}
.main-nav > li:last-child a {
  color: #EF4A58;
  height: auto;
}
.main-nav > li:last-child a:after {
  background: #5d5d5d;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.main-nav li + li {
  margin-left: 12px;
}
.main-nav li.current-menu-item > a,
.main-nav li.current-menu-parent > a {
  color: #02998D;
}
.main-nav li.current-menu-item > a:after,
.main-nav li.current-menu-parent > a:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.main-nav li > a:hover {
  color: #02998D;
}

@media (min-width: 600px) {
  .site-navigation li.menu-item-has-children {
    position: relative;
  }
  .site-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    border: 1px solid #e7e7e7;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    text-align: left;
    padding: 6px 0;
    -webkit-transform: translate3d(-24px, 0, 0);
    transform: translate3d(-24px, 0, 0);
    z-index: 2px;
  }
  .site-navigation .sub-menu:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-top: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
    background: white;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -8px;
    left: 36px;
    z-index: 4;
  }
  .site-navigation .sub-menu a {
    display: block;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    padding: 9px 24px;
    font-weight: 500;
    background: #ffffff;
    -webkit-transition: background 0.4s ease;
    transition: background 0.4s ease;
  }
  .site-navigation .sub-menu a:after {
    display: none;
  }
  .site-navigation .sub-menu a:hover {
    color: #02998D;
    background: rgba(2, 153, 141, 0.3);
  }
  .site-navigation li.menu-item-has-children:hover .sub-menu,
  .site-navigation li.menu-item-has-children a:hover .sub-menu {
    display: block;
  }
  .site-navigation .sub-menu:hover {
    display: block;
  }
  .site-navigation .sub-menu .current_page_item a {
    color: #02998D;
    background: rgba(2, 153, 141, 0.3);
  }
}
.sub-menu li {
  margin: 0 !important;
}
.sub-menu li + li {
  margin: 0 !important;
}

.utility-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.utility-nav > li:last-child > a {
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #02998D;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 16px;
  white-space: nowrap;
  border-radius: 4px;
  border: 2px solid #02998D;
  line-height: 1;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  padding: 13px 8px;
  width: 100%;
  font-size: 12px;
  letter-spacing: 1px;
}
@media (max-width: 599px) {
  .utility-nav > li:last-child > a {
    width: 100%;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 17px 8px;
  }
}
.utility-nav > li:last-child > a:hover, .utility-nav > li:last-child > a:active, .utility-nav > li:last-child > a:focus {
  cursor: pointer;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}
.utility-nav .sub-menu {
  left: auto;
  right: 0;
}
.utility-nav .sub-menu:before {
  right: 36px;
  left: auto;
}

.site-navigation .ecom-nav,
.site-navigation-sm .ecom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 24px;
}
@media (min-width: 600px) {
  .site-navigation .ecom-nav,
  .site-navigation-sm .ecom-nav {
    padding-left: 24px;
    border-left: 1px solid #5d5d5d;
  }
}
.site-navigation .ecom-nav li,
.site-navigation-sm .ecom-nav li {
  font-size: 16px;
}
.site-navigation .ecom-nav li + li,
.site-navigation-sm .ecom-nav li + li {
  margin-left: 12px;
}
.site-navigation .ecom-nav li a,
.site-navigation-sm .ecom-nav li a {
  padding: 4px;
}

.user-icon,
.sched-icon {
  color: #5d5d5d;
}

@media (min-width: 1025px) {
  .sched-icon--desktop {
    display: none;
  }
}
.cart-icon {
  position: relative;
  color: #02998D;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.cart-icon:hover {
  color: #07736b;
}
.cart-icon .cart-icon--count {
  position: absolute;
  top: -6px;
  right: -6px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  background: #EF4A58;
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.floating--cart {
  position: fixed;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0 0 1px 1px rgba(34, 37, 43, 0.2);
  box-shadow: 0 0 1px 1px rgba(34, 37, 43, 0.2);
  bottom: 24px;
  right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
}
.floating--cart .cart-icon--count {
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  font-size: 14px;
}

.search-icon {
  color: #5d5d5d;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.search-icon:hover {
  color: #22252B;
}

@media (max-width: 599px) {
  .search-icon--desktop,
  .user-icon--desktop {
    display: none;
  }
}
.search-bar {
  background: #F8F8F8;
  padding: 20px 3%;
  position: fixed;
  top: 80px;
  width: 100%;
  left: 0;
  display: none;
}
.search-bar form {
  max-width: 640px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-bar form label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.search-bar form input {
  height: 50px;
}
.search-bar form input[type=search] {
  font-size: 16px;
  margin-right: 8px;
  border-radius: 4px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: block;
  text-transform: uppercase;
  font-size: 14px !important;
  font-weight: 700 !important;
}
.search-bar form input[type=submit] {
  min-width: 120px;
  margin-left: 8px;
}

.search-bar-sm label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.search-bar-sm input[type=search] {
  font-size: 16px;
  margin-right: 8px;
  border-radius: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: block;
  height: 50px;
  text-transform: uppercase;
  font-size: 16px !important;
  font-weight: 700 !important;
}

@media (min-width: 600px) {
  body.search-is-active .search-bar {
    display: block;
    z-index: 10;
  }
}
.navigation-drawer {
  position: fixed;
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 0;
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  background: #ffffff;
  z-index: 10;
  bottom: 60px;
  top: 60px;
  padding-bottom: 60px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  color: #22252B;
}
@media (min-width: 600px) {
  .navigation-drawer {
    bottom: 80px;
    top: 80px;
    max-width: 480px;
    -webkit-box-shadow: -2px 0px 2px 0px rgba(34, 37, 43, 0.2);
    box-shadow: -2px 0px 2px 0px rgba(34, 37, 43, 0.2);
  }
}
.menu-is-active .navigation-drawer {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.navigation-drawer .navigation-drawer__inner {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.navigation-drawer #nav-logo {
  position: absolute;
  bottom: 36px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  z-index: 1;
  width: 120px;
  height: 27px;
}
.navigation-drawer #nav-logo img {
  margin: 0 auto;
}
.navigation-drawer .ecom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e7e7e7;
}
@media (min-width: 600px) {
  .navigation-drawer .ecom-nav {
    display: none;
  }
}
.navigation-drawer .ecom-nav li {
  width: 50%;
  font-size: 18px;
  padding: 12px 0;
}
.navigation-drawer .ecom-nav li + li {
  border-left: 1px solid #e7e7e7;
}
.navigation-drawer .ecom-nav a {
  width: 100%;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navigation-drawer .ecom-nav .cart-icon--count {
  top: 50%;
  right: 50%;
  -webkit-transform: translate3d(200%, -120%, 0);
  transform: translate3d(200%, -120%, 0);
}
.navigation-drawer .main-nav {
  padding: 20px 0;
  text-align: left;
}
.navigation-drawer .main-nav li {
  padding: 0 0;
}
.navigation-drawer .main-nav a {
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 12px 3%;
}
.navigation-drawer .main-nav li.menu-item-has-children > a {
  position: relative;
}
.navigation-drawer .utility-nav {
  display: block;
  width: 100%;
  padding: 24px 3%;
}
.navigation-drawer .utility-nav li {
  width: 100%;
  margin-bottom: 12px;
}
.navigation-drawer .utility-nav li .btn {
  min-width: none;
  padding: 16px 12px;
  font-size: 12px;
  letter-spacing: 1px;
  width: 100%;
}
.navigation-drawer .sub-menu {
  padding: 0;
  top: 0;
  z-index: 11;
}
.navigation-drawer .sub-menu a {
  font-weight: 600;
  padding: 12px 40px;
  font-size: 14px;
}
.navigation-drawer li.menu-item-has-children.is-active .sub-menu {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (min-width: 1025px) {
  #navigation-drawer {
    display: none;
  }
}
.mobile-menu-screen {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

@media (max-width: 1024px) {
  .menu-is-active {
    overflow: hidden;
  }
  .menu-is-active .menu-mask {
    display: block;
    position: absolute;
    z-index: 8;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
  }
  .menu-is-active .mobile-menu-screen {
    opacity: 1;
    pointer-events: inherit;
  }
}
.woocommerce-products-header__title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 22px;
}
.text-white .woocommerce-products-header__title {
  color: #ffffff;
}
@media (min-width: 600px) {
  .woocommerce-products-header__title {
    font-size: 48px;
  }
}
@media (min-width: 800px) {
  .woocommerce-products-header__title {
    font-size: 48px;
  }
}

.woocommerce-result-count,
.woocommerce-ordering {
  display: none !important;
}

.woocommerce-ordering {
  width: 100%;
  max-width: 320px;
  height: 44px;
  position: relative;
  margin: 24px 0;
}
.woocommerce-ordering:after {
  content: "\f078";
  color: #02998D;
  font-weight: 900;
  font-family: "Font Awesome 5 Free", sans-serif;
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.woocommerce-ordering select {
  width: 100%;
  max-width: 320px;
  height: 44px;
  font-size: 16px;
}

.woocommerce-notices-wrapper .button {
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #02998D;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 16px;
  white-space: nowrap;
  border-radius: 4px;
  border: 2px solid #02998D;
  line-height: 1;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  border-color: #ffffff;
  color: #ffffff;
  font-size: 14px;
  padding: 12px;
  background: transparent;
  margin: 0 0 16px 0;
}
@media (max-width: 599px) {
  .woocommerce-notices-wrapper .button {
    width: 100%;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 17px 8px;
  }
}
.woocommerce-notices-wrapper .button:hover, .woocommerce-notices-wrapper .button:active, .woocommerce-notices-wrapper .button:focus {
  cursor: pointer;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}
@media (min-width: 800px) {
  .woocommerce-notices-wrapper .button {
    margin: 0 16px;
  }
}
.woocommerce-notices-wrapper .button:hover {
  background: #ffffff;
  color: #02998D;
  border-color: #ffffff;
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  text-align: center;
  font-size: 16px;
  padding: 12px;
  border-radius: 2px;
}
.woocommerce-notices-wrapper .woocommerce-message {
  background: #02998D;
  color: #ffffff;
}
.woocommerce-notices-wrapper .woocommerce-error {
  background: #EF4A58;
  color: #ffffff;
}
.woocommerce-notices-wrapper .woocommerce-error .button:hover {
  color: #EF4A58;
}
.woocommerce-notices-wrapper .woocommerce-info .button {
  border-color: #02998D;
  color: #02998D;
}
.woocommerce-notices-wrapper .woocommerce-info .button:hover {
  background: #02998D;
  color: #ffffff;
}

.woocommerce-store-notice {
  background: #02998D;
  color: #ffffff;
  padding: 12px 3%;
  text-align: center;
  position: fixed;
  bottom: 4px;
  left: 5%;
  width: 90%;
  border-radius: 4px;
  font-size: 14px;
  z-index: 8;
}
.woocommerce-store-notice a {
  text-decoration: underline;
}

ul.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
}
ul.products li.product a.add_to_cart_button {
  display: none !important;
}
ul.products li {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 16px;
  margin-bottom: 24px;
  float: none !important;
  clear: none;
  width: calc(50% - 8px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
ul.products li > a:first-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 800px) {
  ul.products li {
    width: calc(33.33% - 14px);
  }
}
@media (min-width: 800px) {
  ul.products.columns-4 li {
    width: calc(25% - 14px);
  }
}
ul.products .product a {
  display: block;
  position: relative;
}
ul.products .product a img {
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
ul.products .product h2.woocommerce-loop-product__title {
  color: #02998D;
  font-weight: 500;
  color: #22252B;
  margin: 16px 0 4px;
}
@media (min-width: 800px) {
  ul.products .product h2.woocommerce-loop-product__title {
    font-size: 20px;
  }
}
ul.products .product .woocommerce-Price-amount,
ul.products .product .price {
  color: #22252B;
  font-size: 18px;
}
ul.products .product .add_to_cart_button,
ul.products .product .button,
ul.products .product .added_to_cart.wc-forward {
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #02998D;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 16px;
  white-space: nowrap;
  border-radius: 4px;
  border: 2px solid #02998D;
  line-height: 1;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  padding: 12px 12px;
  font-size: 10px;
  width: auto;
  min-width: 0;
  font-size: 12px;
  margin-top: 16px;
}
@media (max-width: 599px) {
  ul.products .product .add_to_cart_button,
  ul.products .product .button,
  ul.products .product .added_to_cart.wc-forward {
    width: 100%;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 17px 8px;
  }
}
ul.products .product .add_to_cart_button:hover, ul.products .product .add_to_cart_button:active, ul.products .product .add_to_cart_button:focus,
ul.products .product .button:hover,
ul.products .product .button:active,
ul.products .product .button:focus,
ul.products .product .added_to_cart.wc-forward:hover,
ul.products .product .added_to_cart.wc-forward:active,
ul.products .product .added_to_cart.wc-forward:focus {
  cursor: pointer;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}
ul.products .product .added_to_cart.wc-forward {
  margin-top: 0;
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
}
ul.products .onsale {
  top: 8px;
  left: 8px;
}

.price del {
  color: #22252B;
}
.price ins,
.price ins .woocommerce-Price-amount {
  color: #EF4A58 !important;
  text-decoration: none;
}

.onsale {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #EF4A58;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
}

.product-content {
  overflow: hidden;
}

.single-product .product_meta {
  display: none;
}
@media (min-width: 1025px) {
  .single-product .woocommerce-message {
    margin-bottom: -48px;
  }
}
.single-product .product_title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 22px;
  margin: 0 0 16px;
}
.text-white .single-product .product_title {
  color: #ffffff;
}
@media (min-width: 600px) {
  .single-product .product_title {
    font-size: 32px;
  }
}
@media (min-width: 800px) {
  .single-product .product_title {
    font-size: 36px;
  }
}
.single-product .price {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.22;
  color: #02998D;
}
.text-white .single-product .price {
  color: #ffffff;
}
@media (min-width: 600px) {
  .single-product .price {
    font-size: 24px;
  }
}
@media (min-width: 800px) {
  .single-product .price {
    font-size: 28px;
  }
}
.single-product .woocommerce-product-details__short-description {
  color: #22252B;
}
@media (min-width: 1025px) {
  .single-product .woocommerce-product-details__short-description p {
    font-size: 18px;
  }
}
.single-product .quantity {
  margin-bottom: 12px;
  min-width: 100%;
}
.single-product .quantity input {
  height: 50px;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 700;
  color: #5d5d5d;
}
@media (min-width: 800px) {
  .single-product .quantity {
    min-width: 60px;
    margin-right: 16px;
    margin-bottom: 0;
  }
  .single-product .quantity input {
    max-width: 60px;
  }
}
.single-product form.cart {
  width: 100%;
  margin: 24px 0 36px;
}
@media (min-width: 800px) {
  .single-product form.cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 48px;
  }
}
.single-product form.cart #uni_cpo_options {
  display: none;
}
.single-product .product_meta {
  border-top: 1px solid #e7e7e7;
  padding-top: 12px;
}
.single-product .social-list {
  font-size: 24px;
  color: #02998D;
}
.single-product .social-list svg, .single-product .social-list i {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.single-product .social-list a:hover {
  color: #5d5d5d;
}
.product-content__images {
  position: relative;
}
.product-content__images .onsale {
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 60px;
  height: 60px;
}
@media (min-width: 1025px) {
  .product-content__images .onsale {
    -webkit-transform: translate3d(20%, -60%, 0);
    transform: translate3d(20%, -60%, 0);
  }
}

.product-upsells h2 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.22;
}
.text-white .product-upsells h2 {
  color: #ffffff;
}
@media (min-width: 600px) {
  .product-upsells h2 {
    font-size: 24px;
  }
}
@media (min-width: 800px) {
  .product-upsells h2 {
    font-size: 28px;
  }
}

table.variations {
  display: block;
  width: 100%;
  max-width: 300px;
}
table.variations tbody,
table.variations tr, table.variations td {
  display: block;
  width: 100%;
}
table.variations tr + tr {
  margin-top: 16px;
}
table.variations label {
  color: #22252B;
}
table.variations select {
  height: 44px;
}
table.variations select:after {
  top: 0;
}
table.variations .reset_variations {
  display: none !important;
}

.variations_form.cart {
  display: block !important;
}
.variations_form.cart .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.woocommerce-variation-availability .in-stock {
  display: none;
}

.woocommerce-breadcrumb {
  border-bottom: 1px solid #e7e7e7;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 3%;
}
.woocommerce-breadcrumb a {
  font-weight: 500;
  color: #02998D;
}

.woocommerce-cart .woocommerce {
  width: 100%;
  overflow: hidden;
}

.woocommerce-cart .woocommerce {
  padding-top: 0;
  margin-top: 0;
}

form.woocommerce-cart-form {
  max-width: 980px;
  margin: 48px auto 0;
  border-radius: 2px;
  background: #F8F8F8;
  padding: 24px;
}
@media (max-width: 939px) {
  form.woocommerce-cart-form {
    overflow-x: scroll;
  }
  form.woocommerce-cart-form::-webkit-scrollbar {
    -webkit-appearance: none;
    height: 6px;
    background: #e7e7e7;
  }
  form.woocommerce-cart-form::-webkit-scrollbar-thumb {
    background: #5d5d5d;
  }
}
form.woocommerce-cart-form table {
  width: 100%;
}
form.woocommerce-cart-form thead {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
}
form.woocommerce-cart-form thead tr {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
}
form.woocommerce-cart-form thead th {
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 12px !important;
  margin-bottom: 0;
  border-bottom: 1px solid #e7e7e7;
  padding: 6px 0;
  font-weight: 500;
}
form.woocommerce-cart-form tbody {
  width: 100%;
}
form.woocommerce-cart-form tbody tr {
  width: 100%;
}
form.woocommerce-cart-form tbody td {
  padding: 8px 0;
}
form.woocommerce-cart-form tr.cart_item + tr.cart_item td {
  border-top: 1px solid #e7e7e7;
  margin-top: 0;
}
form.woocommerce-cart-form tr.cart_item td {
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 11px !important;
  margin-bottom: 0;
}
form.woocommerce-cart-form tr.cart_item td:before {
  display: none;
}
form.woocommerce-cart-form tr.cart_item td.product-name {
  font-size: 13px !important;
}
form.woocommerce-cart-form th.product-remove,
form.woocommerce-cart-form td.product-remove {
  min-width: 40px;
  width: 40px;
  text-align: center;
}
form.woocommerce-cart-form th.product-remove a,
form.woocommerce-cart-form td.product-remove a {
  display: block;
  color: #ffffff;
  font-size: 18px;
  width: 24px;
  height: 24px;
  z-index: 1;
  position: relative;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
form.woocommerce-cart-form th.product-remove a:before,
form.woocommerce-cart-form td.product-remove a:before {
  content: "";
  position: absolute;
  display: block;
  background: #EF4A58;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  z-index: -1;
  top: calc(50% - 11px);
  left: calc(50% - 13px);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
form.woocommerce-cart-form th.product-remove a:hover:before,
form.woocommerce-cart-form td.product-remove a:hover:before {
  background: #ed3342;
}
form.woocommerce-cart-form th.product-thumbnail,
form.woocommerce-cart-form td.product-thumbnail {
  max-width: 40px !important;
  min-width: 40px !important;
}
form.woocommerce-cart-form th.product-thumbnail a,
form.woocommerce-cart-form td.product-thumbnail a {
  display: block;
  margin-top: 8px;
}
form.woocommerce-cart-form th.product-name,
form.woocommerce-cart-form td.product-name {
  min-width: 240px;
  width: 240px;
  text-align: left;
  padding-left: 18px !important;
  padding-right: 18px;
}
@media (min-width: 1025px) {
  form.woocommerce-cart-form th.product-name,
  form.woocommerce-cart-form td.product-name {
    padding-left: 36px !important;
  }
}
form.woocommerce-cart-form th.product-price,
form.woocommerce-cart-form td.product-price {
  text-align: center;
  padding: 12px 12px;
}
form.woocommerce-cart-form tr.bundled_table_item .product-quantity .quantity {
  margin-bottom: 6px !important;
}
form.woocommerce-cart-form th.product-quantity,
form.woocommerce-cart-form td.product-quantity {
  width: 120px;
  min-width: 120px;
  text-align: center;
}
@media (min-width: 1025px) {
  form.woocommerce-cart-form th.product-quantity,
  form.woocommerce-cart-form td.product-quantity {
    width: 120px;
    min-width: 120px;
  }
}
form.woocommerce-cart-form th.product-quantity .quantity,
form.woocommerce-cart-form td.product-quantity .quantity {
  width: 60px;
  margin: 0 auto;
}
form.woocommerce-cart-form th.product-quantity .quantity input,
form.woocommerce-cart-form td.product-quantity .quantity input {
  background: #ffffff;
}
form.woocommerce-cart-form th.product-subtotal,
form.woocommerce-cart-form td.product-subtotal {
  font-weight: 700;
  min-width: 90px;
  text-align: left;
}
@media (min-width: 1025px) {
  form.woocommerce-cart-form th.product-subtotal,
  form.woocommerce-cart-form td.product-subtotal {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
form.woocommerce-cart-form tbody tr:not(.cart_item) .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 12px;
  min-width: 300px;
  float: left;
}
@media (min-width: 800px) {
  form.woocommerce-cart-form tbody tr:not(.cart_item) .coupon {
    min-width: 300px;
  }
}
form.woocommerce-cart-form tbody tr:not(.cart_item) .coupon label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
form.woocommerce-cart-form tbody tr:not(.cart_item) .coupon input[type=text] {
  height: 40px;
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 10px;
  font-size: 10px !important;
  margin: 0;
  font-weight: 600;
  padding: 0 8px;
}
.text-white form.woocommerce-cart-form tbody tr:not(.cart_item) .coupon input[type=text] {
  color: #ffffff;
}
@media (min-width: 800px) {
  form.woocommerce-cart-form tbody tr:not(.cart_item) .coupon input[type=text] {
    font-size: 11px;
  }
}
form.woocommerce-cart-form tbody tr:not(.cart_item) .coupon button {
  border-radius: 0 4px 4px 0;
}
form.woocommerce-cart-form tbody tr:not(.cart_item) button {
  font-size: 10px;
  padding: 12px 4px 10px;
  height: 40px;
  margin: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  min-width: 120px;
}
form.woocommerce-cart-form tbody tr:not(.cart_item) button:disabled {
  opacity: 0.1;
}
form.woocommerce-cart-form tbody tr:not(.cart_item) button:disabled:hover {
  cursor: default;
  background: #02998D;
  color: #ffffff;
}
form.woocommerce-cart-form .actions {
  padding-top: 24px;
}

.cart-collaterals {
  max-width: 100%;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cart-collaterals input {
  accent-color: #02998D;
}
.cart-collaterals .cart_totals {
  width: 100%;
}
.cart-collaterals h2 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.22;
  font-size: 20px !important;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #5d5d5d;
  border-bottom: 1px solid #5d5d5d;
  padding-bottom: 12px;
}
.text-white .cart-collaterals h2 {
  color: #ffffff;
}
@media (min-width: 600px) {
  .cart-collaterals h2 {
    font-size: 24px;
  }
}
@media (min-width: 800px) {
  .cart-collaterals h2 {
    font-size: 28px;
  }
}
@media (min-width: 1025px) {
  .cart-collaterals h2 {
    font-size: 18px !important;
  }
}

.cart_totals .shop_table {
  text-align: left;
  width: 100%;
  margin-left: auto;
}
.cart_totals .shop_table table, .cart_totals .shop_table tbody, .cart_totals .shop_table tr, .cart_totals .shop_table th, .cart_totals .shop_table td {
  display: block;
}
.cart_totals .shop_table tbody > tr {
  border-bottom: 1px solid #e7e7e7;
  padding: 12px 0;
}
.cart_totals .shop_table .cart-subtotal,
.cart_totals .shop_table .tax-total,
.cart_totals .shop_table .order-total,
.cart_totals .shop_table .fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.cart_totals .shop_table .cart-subtotal th,
.cart_totals .shop_table .tax-total th,
.cart_totals .shop_table .order-total th,
.cart_totals .shop_table .fee th {
  font-size: 16px;
  color: #22252B;
  font-weight: 500;
}
.cart_totals .shop_table .cart-subtotal td,
.cart_totals .shop_table .tax-total td,
.cart_totals .shop_table .order-total td,
.cart_totals .shop_table .fee td {
  font-weight: 600;
  color: #02998D !important;
  font-size: 16px !important;
}
.cart_totals .shop_table tr.shipping th {
  font-size: 16px;
  color: #22252B;
  font-weight: 500;
}
.cart_totals .shop_table tr.shipping ul#shipping_method {
  margin: 12px 0;
}
.cart_totals .shop_table tr.shipping ul#shipping_method li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  padding: 10px;
}
.cart_totals .shop_table tr.shipping ul#shipping_method li + li {
  margin-top: 8px;
}
.cart_totals .shop_table tr.shipping ul#shipping_method li label {
  color: #22252B;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding-left: 8px;
  font-size: 15px;
  margin: 0;
}
.cart_totals .shop_table tr.shipping ul#shipping_method li label:hover {
  cursor: pointer;
}
.cart_totals .shop_table tr.shipping ul#shipping_method li label:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: -1;
}
.cart_totals .shop_table tr.shipping ul#shipping_method li input:hover {
  cursor: pointer;
}
.cart_totals .shop_table tr.shipping p.woocommerce-shipping-destination {
  font-size: 14px;
  margin: 0;
}
.cart_totals .shop_table tr.shipping a.shipping-calculator-button {
  color: #02998D;
  border-bottom: 1px solid #02998D;
  padding: 4px 0;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.wc-proceed-to-checkout {
  text-align: right;
}
.wc-proceed-to-checkout a {
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #02998D;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 16px;
  white-space: nowrap;
  border-radius: 4px;
  border: 2px solid #02998D;
  line-height: 1;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  font-size: 12px;
  padding: 16px 18px;
  margin-top: 16px;
}
@media (max-width: 599px) {
  .wc-proceed-to-checkout a {
    width: 100%;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 17px 8px;
  }
}
.wc-proceed-to-checkout a:hover, .wc-proceed-to-checkout a:active, .wc-proceed-to-checkout a:focus {
  cursor: pointer;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}

.woocommerce-shipping-calculator {
  padding: 8px 0;
}
.woocommerce-shipping-calculator .shipping-calculator-form {
  padding-top: 12px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.woocommerce-shipping-calculator .shipping-calculator-form p {
  width: 100%;
}
.woocommerce-shipping-calculator input, .woocommerce-shipping-calculator select {
  height: 44px !important;
  width: 100% !important;
  padding: 0 16px !important;
}
.woocommerce-shipping-calculator input {
  background: #e7e7e7;
  font-size: 14px;
  width: 100%;
  height: 44px;
  padding: 0 16px;
}
.woocommerce-shipping-calculator #calc_shipping_city_field,
.woocommerce-shipping-calculator #calc_shipping_postcode_field {
  width: 48%;
}
.woocommerce-shipping-calculator button {
  padding: 13px 18px !important;
  min-width: 80px !important;
  font-size: 10px !important;
}

.cart-collaterals {
  position: relative;
}

.shipping-explanation-note {
  color: #EF4A58;
  position: relative;
  max-width: 980px;
  margin: 6px 0 12px;
  font-weight: 600;
  font-size: 14px;
  background: #F8F8F8;
  background: #EF4A58;
  color: #ffffff;
  border-radius: 2px;
  padding: 12px;
}
.shipping-explanation-note.shipping-explanation-note--dark {
  color: #22252B;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  background: transparent;
}
.ship-day-note {
  max-width: 980px;
  margin: 0 auto 12px;
  padding: 18px 0;
  font-style: italic;
  font-size: 14px;
}
@media (min-width: 1025px) {
  .ship-day-note {
    position: absolute;
    top: 0;
    left: 0;
    max-width: calc(100% - 440px);
  }
}

@media (min-width: 1025px) {
  .woocommerce-cart .woocommerce {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 48px;
  }
  .woocommerce-cart .woocommerce .woocommerce-cart-form {
    width: 65%;
    margin: 0;
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    max-width: 35%;
    width: 35%;
    padding-left: 48px;
  }
  .woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
    width: 100%;
  }
  .woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message {
    max-width: 980px;
    margin: 24px auto 24px;
  }
}
.woocommerce-cart-form p.shipping-note {
  background: #f1616e;
  padding: 14px;
  color: #ffffff;
  border-radius: 4px;
  margin: 0 auto 12px;
  font-size: 16px;
}

.shipping-notice {
  background: #f1616e;
  padding: 14px;
  color: #ffffff;
  border-radius: 4px;
  margin: 0 auto 12px;
  font-size: 16px;
}
.shipping-notice *:last-child {
  margin-bottom: 0 !important;
}

.metro-delivery-options {
  width: 100%;
  margin: 12px 0;
  border-top: 1px solid #e7e7e7;
  padding-top: 12px;
}
.metro-delivery-options > p {
  font-size: 16px;
  color: #22252B;
  font-weight: 500;
  margin-bottom: 0px;
}
.metro-delivery-options .md-desc {
  display: block;
  margin-bottom: 18px;
}
.metro-delivery-options .md-desc b {
  color: #EF4A58;
}
.metro-delivery-options .md-desc a {
  color: #EF4A58;
  font-weight: bold;
  text-decoration: underline;
}
.metro-delivery-options .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
  background: #F8F8F8;
  padding: 10px;
  border-radius: 4px;
}
.metro-delivery-options .radio:hover {
  cursor: pointer;
}
.metro-delivery-options .radio label {
  text-align: left !important;
  padding-left: 0 !important;
  font-size: 15px !important;
  text-transform: none;
  letter-spacing: 0;
  color: #22252B;
  display: block !important;
  height: auto !important;
  margin-bottom: 0 !important;
  font-weight: 400;
}
.metro-delivery-options .radio label:hover {
  cursor: pointer;
}
.metro-delivery-options .radio small {
  display: block;
  font-size: 12px;
  margin-top: 0px !important;
}
.metro-delivery-options .radio input {
  margin-right: 8px;
  -webkit-transform: translate3d(0, 4px, 0);
  transform: translate3d(0, 4px, 0);
}
.metro-delivery-options .radio input:hover {
  cursor: pointer;
}
.metro-delivery-options input[type=submit] {
  background: transparent !important;
  color: #02998D !important;
  padding: 4px 0 !important;
  min-width: 0 !important;
  border: none !important;
  border-radius: 0;
  border-bottom: 1px solid #02998D !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}
.metro-delivery-options .md-terms-note {
  display: block;
  margin: 4px 0 6px;
}
.metro-delivery-options .md-terms-note a {
  color: #02998D;
  text-decoration: underline;
}

.metro-delivery-note {
  padding: 12px;
  background: rgba(239, 74, 88, 0.2);
  color: red;
  border-radius: 4px;
}

.metro-delivery-note small {
  line-height: 1.4;
  display: block;
}

.cart_totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cart_totals .shop_table {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.cart_totals .metro-delivery-options {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.cart_totals .wc-proceed-to-checkout {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.woocommerce-checkout .woocommerce {
  max-width: 1280px;
}
.woocommerce-checkout .col-1 {
  width: 100%;
}

.woocommerce-form-coupon-toggle {
  margin-bottom: 18px;
}
.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-form-coupon-toggle .woocommerce-info a {
  background: transparent !important;
  color: #5d5d5d;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px !important;
  font-weight: 400 !important;
}
.woocommerce-form-coupon-toggle .woocommerce-info a {
  text-decoration: underline;
}

form.checkout_coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
  width: 300px;
}
form.checkout_coupon p:not(.form-row) {
  display: none;
}
form.checkout_coupon .form-row {
  margin: 0 !important;
}
form.checkout_coupon .form-row-first {
  width: calc(100% - 122px);
  max-width: 70%;
}
form.checkout_coupon .form-row-first input {
  height: 40px;
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 10px;
  font-size: 10px !important;
  margin: 0;
  font-weight: 600;
  padding: 0 8px;
}
.text-white form.checkout_coupon .form-row-first input {
  color: #ffffff;
}
@media (min-width: 800px) {
  form.checkout_coupon .form-row-first input {
    font-size: 11px;
  }
}
form.checkout_coupon .form-row-last {
  width: 30%;
  padding-left: 16px;
}

form.checkout {
  margin-top: 24px;
}
form.checkout .col2-set {
  width: 100%;
  margin-bottom: 48px;
}
@media (min-width: 1025px) {
  form.checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  form.checkout .woocommerce-NoticeGroup {
    width: 100%;
    background: rgba(255, 51, 51, 0.3);
    padding: 24px;
    border: 1px solid rgba(255, 51, 51, 0.6);
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 36px;
    color: #22252B;
  }
  form.checkout .col2-set {
    width: 55%;
  }
  form.checkout #order_review_heading {
    display: none;
  }
  form.checkout #order_review {
    width: 35%;
  }
}
form.checkout h3 {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.22;
  text-transform: uppercase;
  font-size: 24px !important;
  font-weight: 600;
  margin-bottom: 18px !important;
}
.text-white form.checkout h3 {
  color: #ffffff;
}
@media (min-width: 800px) {
  form.checkout h3 {
    font-size: 24px;
  }
}
form.checkout .col-2 {
  width: 100%;
}
form.checkout #ship-to-different-address label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
form.checkout #ship-to-different-address label input {
  width: auto;
  margin-right: 12px;
}
form.checkout #ship-to-different-address label span {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 12px;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0;
  color: #22252B;
}
.text-white form.checkout #ship-to-different-address label span {
  color: #ffffff;
}
@media (min-width: 800px) {
  form.checkout #ship-to-different-address label span {
    font-size: 14px;
  }
}
form.checkout .woocommerce-additional-fields label {
  display: block;
  margin-bottom: 4px;
}
form.checkout .form-row {
  margin: 0 0 8px;
  padding-bottom: 12px;
}
form.checkout .woocommerce-billing-fields__field-wrapper,
form.checkout .woocommerce-shipping-fields__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
form.checkout .form-row-wide {
  width: 100%;
  max-width: 100%;
}
form.checkout .form-row-first,
form.checkout #billing_address_1_field,
form.checkout #billing_phone_field,
form.checkout #shipping_address_1_field,
form.checkout #shipping_phone_field {
  width: calc(50% - 12px);
}
form.checkout .form-row-last,
form.checkout #billing_address_2_field,
form.checkout #billing_email_field,
form.checkout #shipping_address_2_field,
form.checkout #shipping_email_field {
  width: calc(50% - 12px);
}
form.checkout #billing_city_field,
form.checkout #billing_state_field,
form.checkout #shipping_city_field,
form.checkout #shipping_state_field {
  width: calc(40% - 12px);
}
form.checkout #billing_postcode_field,
form.checkout #shipping_postcode_field {
  width: calc(20% - 12px);
}
form.checkout label {
  color: #22252B;
  font-size: 13px;
  margin-bottom: 0;
  letter-spacing: 0;
}
form.checkout .required {
  border: none !important;
  text-decoration: none !important;
}
form.checkout input {
  accent-color: #02998D;
}
form.checkout input[type=text],
form.checkout input[type=tel],
form.checkout input[type=email],
form.checkout input[type=password],
form.checkout select {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5d5d5d;
  font-size: 12px;
  padding: 0 12px;
  height: 50px;
  border-color: lightgray;
  border-radius: 4px;
}
form.checkout input[type=text]:focus,
form.checkout input[type=tel]:focus,
form.checkout input[type=email]:focus,
form.checkout input[type=password]:focus,
form.checkout select:focus {
  border-color: #a7a7a7;
}
form.checkout textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  font-size: 14px;
}

#order_review {
  background: #f9f9f9;
  border-radius: 4px;
  padding: 24px;
}
#order_review .shop_table thead tr {
  font-weight: 500;
  color: #22252B;
}
#order_review #payment .woocommerce-privacy-policy-text p {
  font-size: 12px;
  color: #5d5d5d;
  margin: 24px 0 12px;
}
#order_review #payment .woocommerce-notice {
  background: #FF3333;
  border-radius: 2px;
  padding: 12px;
  font-size: 12px;
  color: #ffffff;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
}
.woocommerce-checkout-review-order-table thead th {
  border-bottom: 1px solid #e7e7e7 !important;
  padding-bottom: 12px !important;
}
.woocommerce-checkout-review-order-table .product-name {
  text-align: left;
  padding: 8px 0 0;
}
.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  padding: 8px 0 0;
}
.woocommerce-checkout-review-order-table tr.cart_item {
  font-size: 16px;
  color: #22252B;
  padding: 8px 0 !important;
}
.woocommerce-checkout-review-order-table tr.bundled_table_item {
  font-size: 14px;
  color: #5d5d5d;
}
.woocommerce-checkout-review-order-table tr.bundled_table_item td {
  border-bottom: 1px solid #e7e7e7 !important;
  padding: 3px 0 !important;
}
.woocommerce-checkout-review-order-table tr.cart-subtotal,
.woocommerce-checkout-review-order-table tr.fee,
.woocommerce-checkout-review-order-table tr.tax-total,
.woocommerce-checkout-review-order-table tr.order-total {
  width: 100%;
}
.woocommerce-checkout-review-order-table tr.cart-subtotal th,
.woocommerce-checkout-review-order-table tr.fee th,
.woocommerce-checkout-review-order-table tr.tax-total th,
.woocommerce-checkout-review-order-table tr.order-total th {
  font-size: 16px;
  color: #22252B;
  font-weight: 500;
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #e7e7e7;
}
.woocommerce-checkout-review-order-table tr.cart-subtotal td,
.woocommerce-checkout-review-order-table tr.fee td,
.woocommerce-checkout-review-order-table tr.tax-total td,
.woocommerce-checkout-review-order-table tr.order-total td {
  font-weight: 500;
  color: #22252B !important;
  font-size: 16px !important;
  text-align: right !important;
  padding: 8px 0;
  border-bottom: 1px solid #e7e7e7;
}
.woocommerce-checkout-review-order-table tr.order-total td {
  color: #02998D !important;
  font-weight: 600;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals th {
  font-size: 16px;
  color: #22252B;
  font-weight: 500;
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #e7e7e7;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
  padding: 8px 0;
  border-bottom: 1px solid #e7e7e7;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals .woocommerce-shipping-methods li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals .woocommerce-shipping-methods li label {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals .woocommerce-shipping-methods li input {
  margin-right: 8px;
}

.woocommerce-form__label-for-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.woocommerce-form__label-for-checkbox input {
  width: auto;
  margin: 0 12px 0 0;
}

#billing_country_field,
#shipping_country_field {
  display: none;
}

.wc_payment_method.payment_method_elavon_converge_credit_card img {
  display: none;
}

.woocommerce-checkout-payment {
  padding-top: 24px;
}
.woocommerce-checkout-payment .woocommerce-info {
  font-size: 14px;
}

.payment_method_elavon_converge_credit_card {
  background: #F8F8F8;
  padding: 24px 24px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.payment_method_elavon_converge_credit_card .payment_box.payment_method_elavon_converge_credit_card {
  padding: 0;
}
.payment_method_elavon_converge_credit_card .wc-elavon-converge-credit-card-new-payment-method-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.payment_method_elavon_converge_credit_card .wc-elavon-converge-credit-card-new-payment-method-form input {
  font-size: 16px !important;
}
.payment_method_elavon_converge_credit_card .wc-elavon-converge-credit-card-new-payment-method-form label {
  font-size: 10px;
}
.payment_method_elavon_converge_credit_card #wc-elavon-converge-credit-card-account-number_field {
  width: calc(100% - 10px);
}
.payment_method_elavon_converge_credit_card #wc-elavon-converge-credit-card-expiry_field {
  width: calc(50% - 5px);
}
.payment_method_elavon_converge_credit_card #wc-elavon-converge-credit-card-csc_field {
  width: calc(50% - 5px);
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
}
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label a {
  text-decoration: underline;
}
.woocommerce-terms-and-conditions-wrapper .required {
  display: none;
}
.woocommerce-terms-and-conditions-wrapper input {
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  margin-right: 8px;
}

.woocommerce-terms-and-conditions {
  background-color: #f1f1f1;
  border-radius: 4px;
  color: #22252B;
  font-size: 13px;
  padding: 12px;
}

.woocommerce-form-login-toggle {
  margin: 12px 0;
  font-size: 16px;
}
.woocommerce-form-login-toggle a {
  text-decoration: underline;
}

.woocommerce-form-coupon #coupon_code {
  margin-bottom: 12px !important;
}
.woocommerce-form-coupon button {
  padding: 12px 12px !important;
  font-size: 10px !important;
  width: auto !important;
  min-width: 0 !important;
}

.woocommerce-checkout-review-order-table #shipping_method li label {
  white-space: nowrap;
}

.woocommerce-product-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
}
@media (min-width: 800px) {
  .woocommerce-product-gallery {
    max-width: 400px;
    margin: 0 auto;
  }
}
.woocommerce-product-gallery figure {
  margin: 0;
}
.woocommerce-product-gallery a.woocommerce-product-gallery__trigger {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("images/svgs/search.svg") center/12px 12px no-repeat;
  width: 24px;
  height: 24px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 2 !important;
  font-size: 0;
  text-indent: -9999px;
}
.woocommerce-product-gallery a.woocommerce-product-gallery__trigger:hover {
  opacity: 0.5;
}
.woocommerce-product-gallery a.woocommerce-product-gallery__trigger img {
  display: none !important;
}
.woocommerce-product-gallery .flex-control-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 8px 0;
}
.woocommerce-product-gallery .flex-control-nav li {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 8px;
}

#content figure.woocommerce-product-gallery__wrapper {
  width: 100%;
  background: #e7e7e7;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0 !important);
  transform: translate3d(0, 0, 0 !important);
  width: 100%;
}
#content figure.woocommerce-product-gallery__wrapper > div {
  height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
@media (min-width: 1025px) {
  #content figure.woocommerce-product-gallery__wrapper > div {
    height: 400px;
    width: 400px;
  }
}
#content figure.woocommerce-product-gallery__wrapper a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#content figure.woocommerce-product-gallery__wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.comment-reply-title {
  font-style: italic;
  font-family: "brandon-grotesque", sans-serif;
  font-family: "brandon-grotesque", sans-serif;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: none;
  font-size: 18px;
}
@media (min-width: 800px) {
  .comment-reply-title {
    font-size: 20px;
  }
}

#email-notes {
  font-style: italic;
}

.star-rating {
  overflow: hidden;
  position: relative;
  height: 36px;
  line-height: 1.618;
  font-size: 1em;
  width: 110px;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
}

.star-rating:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  top: 0;
  position: absolute;
  left: 0;
  color: gold;
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400;
}

p.stars a:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  content: "\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  color: #404040;
  text-indent: 0;
  opacity: 0.25;
}

p.stars a:hover ~ a:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  opacity: 0.25;
}

p.stars:hover a:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  color: gold;
  opacity: 1;
  font-weight: 900;
}

p.stars.selected a.active:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  opacity: 1;
  color: #e6c200;
  font-weight: 900;
}

p.stars.selected a.active ~ a:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  color: #5d5d5d;
  opacity: 0.25;
}

p.stars.selected a:not(.active):before {
  content: "\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  color: gold;
  font-weight: 900;
  opacity: 1;
}

.product-reviews .woocommerce-tabs .wc-tabs {
  display: none;
}

.star-rating {
  width: 110px;
}
.star-rating:before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 5 Free", sans-serif;
  opacity: 1;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  font-weight: 900;
  color: gold;
}
.star-rating[aria-label="Rated 1 out of 5"]:before, .star-rating[aria-label="Rated 1.00 out of 5"]:before {
  content: "\f005";
}
.star-rating[aria-label="Rated 2 out of 5"]:before, .star-rating[aria-label="Rated 2.00 out of 5"]:before {
  content: "\f005\f005";
}
.star-rating[aria-label="Rated 3 out of 5"]:before, .star-rating[aria-label="Rated 3.00 out of 5"]:before {
  content: "\f005\f005\f005";
}
.star-rating[aria-label="Rated 4 out of 5"]:before, .star-rating[aria-label="Rated 4.00 out of 5"]:before {
  content: "\f005\f005\f005\f005";
}
.star-rating[aria-label="Rated 5 out of 5"]:before, .star-rating[aria-label="Rated 5.00 out of 5"]:before {
  content: "\f005\f005\f005\f005\f005";
}
.star-rating span {
  display: none;
}

.product-reviews {
  background: #F8F8F8;
}

.commentlist {
  margin: 24px 0;
}

li.review {
  border-top: 1px solid #e7e7e7;
  padding: 18px 0;
}
li.review img {
  display: none;
}
li.review p.meta {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 12px;
}
.text-white li.review p.meta {
  color: #ffffff;
}
@media (min-width: 800px) {
  li.review p.meta {
    font-size: 14px;
  }
}
li.review:last-child {
  border-bottom: 1px solid #e7e7e7;
}

#tab-description,
#tab-additional_information {
  display: none !important;
}

#tab-reviews {
  display: block !important;
}

form.cart.bundle_form {
  display: block;
  max-width: 580px;
}

.bundled_product.product {
  padding: 4px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid #e7e7e7 !important;
}
.bundled_product.product .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media (min-width: 1300px) {
  .bundled_product.product .details {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.bundled_product_images,
.bundled_product_images.images,
.bundled_product_permalink,
.bundled_product_excerpt {
  display: none !important;
}

.bundled_product_title.product_title {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  width: 100%;
}
@media (min-width: 1300px) {
  .bundled_product_title.product_title {
    font-size: 18px;
  }
}
.bundled_product_title_inner .item_qty {
  display: none;
}

.bundled_item_cart_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.bundled_item_cart_details .stock.out-of-stock {
  margin: 0 0 0 8px;
  white-space: nowrap;
  font-size: 14px;
}

.bundled_product .details .cart {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.bundled_product .details .cart .bundled_item_cart_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bundled_product .details .cart .bundled_item_cart_content .price {
  font-size: 16px;
  line-height: 1;
  margin: 0 12px;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .bundled_product .details .cart .bundled_item_cart_content .price {
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
  }
}
.bundled_product .details .cart .bundled_item_cart_content .quantity {
  margin: 0 !important;
}
.bundled_product .details .cart .bundled_item_cart_content .quantity input {
  height: 44px !important;
  width: 84px !important;
  min-width: 84px;
}
@media (min-width: 1025px) {
  .bundled_product .details .cart .bundled_item_cart_content .quantity input {
    width: 94px !important;
    min-width: 94px;
  }
}

.bundle_wrap {
  border-top: 1px solid #e7e7e7;
  margin-top: 24px;
  padding-top: 18px;
}

@media (min-width: 800px) {
  .bundle_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.woocommerce-cart-form__cart-item.cart_item.bundle_table_item td {
  padding-bottom: 0;
}

.woocommerce-cart-form__cart-item.cart_item.bundled_table_item td.product-thumbnail a {
  display: none;
}
.woocommerce-cart-form__cart-item.cart_item.bundled_table_item .bundled-product-name.bundled_table_item_indent {
  padding-left: 0;
}
.woocommerce-cart-form__cart-item.cart_item.bundled_table_item .bundled-product-name.bundled_table_item_indent a {
  color: #5d5d5d;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 14px;
}
.woocommerce-cart-form__cart-item.cart_item.bundled_table_item td {
  padding: 0 0;
}
.woocommerce-cart-form__cart-item.cart_item.bundled_table_item .bundled_table_item_subtotal {
  font-weight: 400;
}
.woocommerce-cart-form__cart-item.cart_item.bundled_table_item .bundled_table_item_subtotal span {
  font-weight: 500;
}

.woocommerce-cart-form__cart-item.cart_item + .woocommerce-cart-form__cart-item.cart_item:not(.bundled_table_item) {
  margin-top: 18px;
}

.bundled_items_selection_status {
  background: #02998D;
  padding: 4px 12px 4px 8px;
  border-radius: 50px;
  font-weight: 700;
  color: #ffffff;
}

.woocommerce-info .msg li {
  color: #EF4A58;
  font-weight: 700;
}

.woocommerce-MyAccount-navigation {
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .woocommerce-MyAccount-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.woocommerce-MyAccount-navigation li {
  margin-right: 16px;
}
.woocommerce-MyAccount-navigation a {
  display: block;
  font-weight: 500;
  color: #22252B;
}
.woocommerce-MyAccount-navigation li.is-active a {
  text-decoration: underline;
  -webkit-text-decoration-color: #02998D;
  text-decoration-color: #02998D;
}

.woocommerce-MyAccount-navigation-link--downloads,
.woocommerce-MyAccount-navigation-link--payment-methods {
  display: none !important;
}

body.is-metro-delivery #wooot_order_tip_form {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

body.not-metro-delivery #wooot_order_tip_form {
  display: none !important;
}

#wooot_order_tip_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 12px;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  padding-bottom: 4px;
  position: relative;
  z-index: 2;
}
#wooot_order_tip_form p {
  margin: 0 !important;
  padding-bottom: 0 !important;
}

.woocommerce-cart-form {
  margin-bottom: 48px !important;
}

.woocommerce-cart #wooot_order_tip_form {
  margin-top: 16px;
}
@media (min-width: 1025px) {
  .woocommerce-cart #wooot_order_tip_form {
    max-width: 35%;
    width: 35%;
    padding-left: 48px;
    margin-left: auto;
  }
}

.order_tip_title {
  width: 100%;
  font-weight: bold;
  margin-bottom: 2px;
}

.blockUI.blockOverlay {
  background-color: white !important;
}

button.woo_order_tip {
  border-radius: 50px;
  height: 38px;
  padding: 0 16px;
  font-size: 16px;
  position: relative !important;
  border: 2px solid white;
  font-weight: 500;
  background: rgb(220, 220, 220) !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
button.woo_order_tip:hover {
  cursor: pointer;
  background: rgb(220, 220, 220) !important;
}
button.woo_order_tip:after {
  content: "";
  width: calc(100% + 6px) !important;
  height: calc(100% + 6px) !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  display: block !important;
  background: rgb(220, 220, 220) !important;
  border-radius: 50px !important;
  z-index: -1 !important;
  -webkit-transform: translate3d(-50%, -50%, 0) !important;
  transform: translate3d(-50%, -50%, 0) !important;
}
button.woo_order_tip.active, button.woo_order_tip.active:after {
  background: #02998D !important;
}

.woo_order_tip_remove {
  background: transparent !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  width: 100%;
  text-align: left;
}
.woo_order_tip_remove:hover {
  cursor: pointer;
}

.input-text.woo_order_tip_custom_text {
  height: 38px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #22252B !important;
  border-radius: 50px !important;
  padding: 0 16px !important;
  border: 1px solid rgb(220, 220, 220) !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.woo_order_tip_apply {
  height: 38px;
  text-align: center;
  padding: 4px 16px;
  font-size: 15px;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: 500;
}
.woo_order_tip_apply:hover {
  cursor: pointer;
  background: rgb(220, 220, 220) !important;
}

.woocommerce-checkout #wooot_order_tip_form {
  margin-bottom: 24px;
}
.woocommerce-checkout #wooot_order_tip_form button.woo_order_tip {
  border: 2px solid #f9f9f9;
}
.hero {
  position: relative;
  width: 100%;
  padding: 120px 0;
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}
.hero:before, .hero:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.08;
  background: black;
}
.hero .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero.hero--short {
  padding: 120px 0;
  min-height: 75vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 546px;
}
.hero__content.hero__content--full {
  max-width: 780px;
  margin: 0 auto;
}

.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero__img.bg-image--fallback img {
  display: none;
}
.hero__img:before, .hero__img:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  height: 40%;
  opacity: 0.8;
}
.hero__img:before {
  top: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, #000000), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(-180deg, #000000 3%, rgba(255, 255, 255, 0) 100%);
}
.hero__img:after {
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(255, 255, 255, 0)), to(#000000));
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 3%, #000000 100%);
}

.hero__low-right,
.hero__low-left {
  position: absolute;
  bottom: 36px;
  z-index: 2;
  display: none;
}
@media (min-width: 600px) {
  .hero__low-right,
  .hero__low-left {
    display: block;
  }
}
.hero__low-right a,
.hero__low-left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.hero__low-right a:hover,
.hero__low-left a:hover {
  opacity: 0.5;
}
.hero__low-right a img,
.hero__low-left a img {
  margin-right: 8px;
}

.hero__low-right {
  right: 3%;
}

.hero__low-left {
  left: 3%;
}

.hero__scroll-down {
  position: absolute;
  z-index: 1;
  bottom: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  height: 80px;
  text-align: center;
  width: 44px;
}
.hero__scroll-down span {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  width: 200%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  display: none;
}
@media (min-width: 800px) {
  .hero__scroll-down span {
    display: block;
  }
}

.scroll-arrow {
  height: 80px;
  width: 44px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.scroll-arrow:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  border: 1px solid #EF4A58;
  border-radius: 50%;
  background: transparent url("../images/svgs/arrow-down-white.svg") center/16px 24px no-repeat;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.scroll-arrow:after {
  content: "";
  width: 1px;
  height: calc(100% - 30px);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0) scaleY(0);
  transform: translate3d(-50%, 0, 0) scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  background: #EF4A58;
  -webkit-transition: -webkit-transform 1s ease-in;
  transition: -webkit-transform 1s ease-in;
  transition: transform 1s ease-in;
  transition: transform 1s ease-in, -webkit-transform 1s ease-in;
}
.scroll-arrow:hover {
  cursor: pointer;
}
.scroll-arrow:hover:before {
  background-color: #EF4A58;
}
.scroll-arrow.in-view {
  opacity: 1;
}
.scroll-arrow.in-view:after {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translate3d(-50%, 0, 0) scaleY(1);
  transform: translate3d(-50%, 0, 0) scaleY(1);
}

.hero--banner {
  min-height: 0;
  padding: 160px 0;
}

.hero--no-screen .hero__img:before, .hero--no-screen .hero__img:after {
  opacity: 0;
}

.hero--banner--short {
  min-height: 0;
  padding: 100px 0;
}

.hero--banner--medium {
  min-height: 0;
  padding: 180px 0;
}

.hero--banner--tall {
  padding: 200px 0;
}

.image-tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #07736b;
  z-index: 1;
}

a.image-tile:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #07736b;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 0.2;
}
a.image-tile:hover:after {
  opacity: 0.8;
}

.image-tile__content {
  position: relative;
  z-index: 1;
  max-width: 428px;
  text-align: center;
}

.image-tile__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #07736b;
}
.image-tile__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-tile__img.bg-image--fallback img {
  display: none;
}

.gallery-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.gallery-preview > * {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding-bottom: 50%;
}
.gallery-preview > *:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #07736b;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.gallery-preview > *:hover {
  cursor: pointer;
}
.gallery-preview > *:hover:before {
  opacity: 0.8;
}
@media (min-width: 600px) {
  .gallery-preview > * {
    width: 25%;
    padding-bottom: 25%;
  }
}
.gallery-preview > * img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-modal .gallery-item {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 24px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(7, 115, 107, 0.8);
}

/* Modal Content */
.gallery-modal-content {
  position: absolute;
  background-color: rgba(7, 115, 107, 0.8);
  margin: auto;
  padding: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.gallery-modal-content .gallery-slides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 24px 0;
}
.gallery-modal-content .gallery-slides img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* The Close Button */
.gallery__close {
  position: absolute;
  top: 8px;
  right: 25px;
  z-index: 99;
  background: red;
  width: 44px;
  height: 44px;
  background: url("../images/svgs/close-white.svg") center/12px 12px no-repeat;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.gallery__close:hover {
  opacity: 0.6;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.gallery-slides {
  display: none;
}
.gallery-slides img {
  max-height: 100%;
}

/* Next & previous buttons */
.gallery__prev,
.gallery__next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  height: 64px;
  width: 44px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.gallery__prev {
  left: 0;
  background: url("../images/svgs/arrow-left-white.svg") center/12px 18px no-repeat;
}

.gallery__next {
  right: 0;
  background: url("../images/svgs/arrow-right-white.svg") center/12px 18px no-repeat;
}

.gallery__prev:hover,
.gallery__next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.gallery-slides__count {
  color: #f2f2f2;
  font-size: 12px;
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: "brandon-grotesque", sans-serif;
}

.gallery__caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: #ffffff;
}

.accordion {
  border-top: 1px solid #02998D;
  border-bottom: 1px solid #02998D;
  max-width: 1020px;
  margin: 0 auto;
}
.accordion + .accordion {
  margin-top: -1px;
}

.accordion__hd {
  position: relative;
  padding: 24px 100px 24px 24px;
}
.accordion__hd > * {
  margin: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.accordion__hd:hover {
  cursor: pointer;
}
.accordion__hd:hover > * {
  opacity: 0.6;
}
.accordion__hd:before, .accordion__hd:after {
  font-weight: 600;
  letter-spacing: 1.5px;
  display: block;
  font-size: 12px;
  padding: 0;
  color: #EF4A58;
  width: 100px;
  text-align: right;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.accordion__hd:before {
  content: "EXPAND +";
  opacity: 1;
}
.accordion__hd:after {
  content: "CLOSE -";
  opacity: 0;
}
.is-open .accordion__hd:before {
  opacity: 0;
}
.is-open .accordion__hd:after {
  opacity: 1;
}

.accordion__bd {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
}
.accordion__bd > * {
  padding: 0 100px 36px 24px;
}

@media (max-width: 799px) {
  .sidebar {
    border-top: 1px solid #e7e7e7;
    padding-top: 36px;
    margin-top: 48px;
  }
}

.widget {
  padding: 12px 0;
}
.widget + .widget {
  margin-top: 12px;
  border-top: 1px solid #e7e7e7;
}
.widget .widget-title {
  font-weight: 700;
  font-size: 18px;
  color: #22252B;
  margin-bottom: 12px;
}
.widget li.cat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget li + li {
  margin-top: 4px;
}
.widget a {
  display: block;
  font-size: 16px;
  color: #EF4A58;
  color: #02998D;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  padding-right: 4px;
}
.widget a:hover {
  opacity: 0.6;
}

.widget_search .search-submit {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.icon-list.icon-list__center {
  text-align: center;
}
.icon-list.icon-list__left {
  text-align: left;
}
.icon-list.icon-list__right {
  text-align: right;
}
.icon-list.icon-list__max-2 > * {
  max-width: 50%;
}
.icon-list.icon-list__max-3 > * {
  max-width: 33.3333333333%;
}
.icon-list.icon-list__max-4 > * {
  max-width: 25%;
}
.icon-list.icon-list__max-5 > * {
  max-width: 20%;
}
.icon-list.icon-list__max-6 > * {
  max-width: 16.6666666667%;
}

.icon-list__item {
  width: 100%;
  padding: 0 16px;
  padding: 36px 16px;
}
.icon-list__item figure {
  margin: 0 0 16px 0;
  padding: 0;
}
.icon-list__item img {
  max-width: 44px;
  display: inline-block;
  margin: 0;
}
.icon-list__item > * {
  max-width: 320px;
  margin: 0 auto;
}

.tabs {
  overflow: hidden;
}

.tabs__tabs {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
}
.tabs__tabs * + * {
  position: relative;
}
.tabs__tabs * + *:before {
  position: absolute;
  width: 1px;
  height: 30%;
  top: 35%;
  background: #EF4A58;
  content: "";
  display: block;
  left: 0;
}

.tabs__tab {
  padding: 16px 24px;
}
.tabs__tab > * {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  opacity: 0.3;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.tabs__tab > *:focus {
  outline: none;
}
.tabs__tab > *:hover {
  cursor: pointer;
}
.tabs__tab > *:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #EF4A58;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.tabs__tab:hover {
  cursor: pointer;
}
.tabs__tab:hover > * {
  opacity: 0.7;
}
.tabs__tab:hover > *:after {
  -webkit-transform: scaleX(0.3);
  transform: scaleX(0.3);
}
.tabs__tab.is-active > * {
  opacity: 1;
}
.tabs__tab.is-active > *:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs__content {
  display: none;
  border-top: none;
}
.tabs__content.is-active {
  display: block;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

[data-animate-in] {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}

[data-animate-in=up] {
  -webkit-transform: translate3d(0, 24px, 0);
  transform: translate3d(0, 24px, 0);
}

[data-animate-in=left] {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

[data-animate-in=right] {
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
}

[data-animate-in=down] {
  -webkit-transform: translate3d(0, -24px, 0);
  transform: translate3d(0, -24px, 0);
}

[data-animate-in=fade] {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

[data-animate-in].in-view {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.burger {
  position: relative;
  z-index: 11;
  height: 44px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -ms-flex-item-align: center;
  align-self: center;
  display: none;
  padding-left: 80px;
}
@media (max-width: 1024px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 24px;
  }
}
.burger:before, .burger:after {
  font-weight: 600;
  letter-spacing: 1.5px;
  display: block;
  font-size: 12px;
  padding: 0 16px 0 24px;
  color: currentColor;
  width: 80px;
  text-align: right;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (max-width: 1024px) {
  .burger:before, .burger:after {
    display: none;
  }
}
.burger:before {
  content: "MENU";
  opacity: 1;
}
.burger:after {
  content: "CLOSE";
  opacity: 0;
}
.burger:hover {
  cursor: pointer;
}
.burger:hover .burger-top {
  -webkit-transform: translate3d(0, -1px, 0);
  transform: translate3d(0, -1px, 0);
}
.burger:hover .burger-bottom {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
}
.menu-is-active .burger:before {
  opacity: 0;
}
.menu-is-active .burger:after {
  opacity: 1;
}

.burger-inner {
  -ms-flex-item-align: center;
  align-self: center;
  width: 24px;
  min-width: 24px;
  height: 16px;
  position: relative;
  margin: 0 auto;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}
.burger-inner > * {
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
}

.burger-top {
  top: 0;
}

.burger-middle {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.burger-bottom {
  bottom: 0;
}

.menu-is-active .burger-top,
.menu-is-active .burger:hover .burger-top {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-is-active .burger-middle,
.menu-is-active .burger:hover .burger-middle {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0;
}
.menu-is-active .burger-bottom,
.menu-is-active .burger:hover .burger-bottom {
  bottom: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (min-width: 1025px) {
  .site-header.hide-buger-lg .burger {
    display: none;
  }
}
.ul > *,
.rte ul {
  list-style-type: disc;
}

ol.fancy li {
  margin-bottom: 12px;
}

.rte ol.fancy,
ol.fancy {
  padding-left: 20px;
  margin-left: 0;
  list-style: none;
  counter-reset: my-awesome-counter;
}
.rte ol.fancy li,
ol.fancy li {
  counter-increment: my-awesome-counter;
  position: relative;
  padding-left: 26px;
  color: #22252B;
  font-size: 18px;
}
@media (min-width: 800px) {
  .rte ol.fancy li,
  ol.fancy li {
    font-size: 20px;
  }
}
.rte ol.fancy li:before,
ol.fancy li:before {
  content: counter(my-awesome-counter) ". ";
  color: #02998D;
  font-weight: bold;
  margin-right: 4px;
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 125%;
}

.ul-inline {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ul-inline > * {
  padding-right: 10px;
}

.ul-inline--piped > * + *:before {
  content: "|";
  margin-right: 10px;
  display: inline-block;
}

.social-list {
  display: inline-block;
  vertical-align: top;
}
.social-list > * {
  display: inline-block;
  vertical-align: middle;
  margin-right: 14px;
}
.social-list > *:last-child {
  margin-right: 0;
}
.social-list a {
  display: block;
  padding: 4px;
}
.social-list a:hover {
  opacity: 1;
}
.social-list a:hover svg {
  fill: #22252B;
}
.social-list svg {
  fill: #e7e7e7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.carousel--centered {
  overflow: hidden;
}
.carousel--centered.has-arrows.arrow-pos--bottom {
  padding: 0 0 50px;
}
.carousel--centered figure.carousel-item {
  width: 100%;
  height: 90vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 48px 24px;
  -webkit-transition: padding 0.4s ease;
  transition: padding 0.4s ease;
}
@media (max-width: 799px) {
  .carousel--centered figure.carousel-item {
    height: 380px;
  }
}
.carousel--centered figure.carousel-item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.carousel--centered figure.carousel-item figcaption {
  position: absolute;
  top: 100%;
  left: 24;
  width: 100%;
  -webkit-transform: translate3d(0, -44px, 0);
  transform: translate3d(0, -44px, 0);
  z-index: 100;
  font-size: 12px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.carousel--centered .slick-slide.slick-current.slick-active figure.carousel-item {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  padding: 24px 24px;
}
.carousel--centered .slick-slide.slick-current.slick-active figure.carousel-item figcaption {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.carousel--full,
.carousel--imageNav {
  overflow: hidden;
}
.carousel--full.has-arrows.arrow-pos--bottom,
.carousel--imageNav.has-arrows.arrow-pos--bottom {
  padding: 0 0 36px;
}
.carousel--full.has-arrows.arrow-pos--bottom .slick-arrow,
.carousel--imageNav.has-arrows.arrow-pos--bottom .slick-arrow {
  right: calc(50% - 60px);
}
.carousel--full .slick-arrow,
.carousel--imageNav .slick-arrow {
  right: 24px;
}
.carousel--full figure.carousel-item,
.carousel--imageNav figure.carousel-item {
  width: 100%;
  height: 90vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 0 24px;
  -webkit-transition: padding 0.4s ease;
  transition: padding 0.4s ease;
}
@media (max-width: 799px) {
  .carousel--full figure.carousel-item,
  .carousel--imageNav figure.carousel-item {
    height: 380px;
  }
}
.carousel--full figure.carousel-item img,
.carousel--imageNav figure.carousel-item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.carousel--full figure.carousel-item figcaption,
.carousel--imageNav figure.carousel-item figcaption {
  position: absolute;
  bottom: 0;
  left: 24;
  width: 100%;
  z-index: 100;
  font-size: 12px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.carousel--full.arrow-pos--middle figure.carousel-item,
.carousel--imageNav.arrow-pos--middle figure.carousel-item {
  padding-bottom: 0;
}
.carousel--full.arrow-pos--middle figcaption,
.carousel--imageNav.arrow-pos--middle figcaption {
  display: none;
}
.carousel--imageNav {
  overflow: hidden;
}
.carousel--imageNav figure.carousel-item {
  height: 80vh;
}
.carousel--imageNav.has-arrows {
  padding: 0;
}
.carousel--imageNav .slick-arrow {
  right: 24px;
}

.carousel--nav {
  margin: 24px 0;
  position: relative;
}
.carousel--nav.has-arrows.arrow-pos--bottom {
  padding-bottom: 36px;
}
.carousel--nav figure.carousel-item {
  height: 100px;
  overflow: hidden;
  position: relative;
  margin: 4px;
}
.carousel--nav figure.carousel-item img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.carousel--nav .slick-dots {
  bottom: 0;
  margin-bottom: 0;
}
.carousel--nav .slick-arrow {
  margin-top: 0;
  height: 36px;
  right: 0;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none !important;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 44px;
  position: absolute;
  bottom: 0;
  margin-top: 24px;
  text-indent: -99999px;
  z-index: 2;
  right: 10%;
  background: transparent;
  -webkit-transition: background 0.6s ease, -webkit-transform 0.6s ease;
  transition: background 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, background 0.6s ease;
  transition: transform 0.6s ease, background 0.6s ease, -webkit-transform 0.6s ease;
}
.slick-arrow:hover {
  cursor: pointer;
  background: rgba(239, 74, 88, 0.06);
}
.slick-arrow svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 8px;
  fill: #EF4A58;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.slick-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  margin-right: 8px;
}
.slick-prev:hover svg {
  -webkit-transform: translate3d(-60%, -50%, 0);
  transform: translate3d(-60%, -50%, 0);
}

.slick-next:hover svg {
  -webkit-transform: translate3d(-40%, -50%, 0);
  transform: translate3d(-40%, -50%, 0);
}

.slick-dots {
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  margin: 16px 0;
  text-align: center;
}
@media (max-width: 799px) {
  .slick-dots {
    display: none !important;
    opacity: 0;
    pointer-events: none;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 2px 6px;
  cursor: pointer;
}
.slick-dots li button {
  border: none;
  background-color: rgba(93, 93, 93, 0.5);
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  height: 10px;
  width: 10px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.3;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.slick-dots li:hover button {
  outline: none;
  opacity: 1;
}
.slick-dots li.slick-active button {
  background-color: rgba(58, 58, 58, 0.5);
  border-color: rgba(58, 58, 58, 0.5);
  opacity: 1;
}

.arrow-pos--middle .slick-arrow {
  bottom: 50%;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  margin: 0;
}
.arrow-pos--middle .slick-prev {
  right: auto;
  left: 24px;
}
.arrow-pos--middle .slick-dots button {
  background: white;
  opacity: 0.7;
}
.arrow-pos--middle .slick-dots.slick-active button {
  background-color: white;
  opacity: 1;
}

.img-center img {
  margin: 0 auto;
}

.img-full {
  width: 100%;
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bg-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bg-image.bg-image--fallback img {
  display: none;
}

.set-img {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.set-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

svg {
  display: block;
  fill: currentColor;
}

.shape-inline {
  display: inline-block;
}
.shape-inline > * {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.shape-inline > * + * {
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.shape-inline + .shape-inline {
  margin-left: 24px;
}

a.shape-inline:hover > * + * {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.media-object {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 800px) {
  .media-object {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .media-object.media-object--equalWidth > * {
    width: 48%;
  }
  .media-object.media-object--equalWidth > * img {
    width: 100%;
  }
  .media-object .media-object__media.media-object__media--auto img {
    width: auto !important;
    margin: 0 auto;
  }
  .media-object.media-object--flip .media-object__media {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 0 0 24px;
  }
}

.media-object__media {
  margin: 0 0 24px 0;
}
.media-object__media img {
  display: block;
}
@media (min-width: 800px) {
  .media-object__media {
    margin: 0 24px 0 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 200px;
  }
}

.media-object__bd {
  overflow: hidden;
}

.modal-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.modal-wrap.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modal__screen {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.modal__screen:hover {
  cursor: crosshair;
}

.modal {
  position: relative;
  z-index: 3;
  max-width: calc(100% - 36px);
  max-height: calc(100% - 36px);
  width: calc(100% - 36px);
  overflow: scroll;
  border-radius: 24px;
  background: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 800px) and (min-height: 540px) {
  .modal {
    width: 720px;
    max-height: calc(100% - 20px);
    height: auto;
  }
}

.modal__inner {
  padding: 40px 30px;
}
@media (min-width: 800px) and (min-height: 540px) {
  .modal__inner {
    padding: 50px;
  }
}

body.modal-is-active {
  overflow: hidden;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  cursor: pointer;
}
.modal__close svg {
  display: block;
  width: 24px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.modal__close:hover svg {
  fill: #e7e7e7;
}

.modal__hd {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #02998D;
}

form.metro-delivery-checker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 800px) {
  form.metro-delivery-checker {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
form.metro-delivery-checker input {
  height: 50px;
  border-radius: 4px;
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 18px;
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #22252B;
}
form.metro-delivery-checker button {
  white-space: nowrap;
}

.metro-delivery-checker-results {
  margin-top: 24px;
}
.metro-delivery-checker-results .h5 {
  margin-bottom: 6px;
}
.metro-delivery-checker-results .success p a {
  text-decoration: underline;
  -webkit-text-decoration-color: #02998D;
  text-decoration-color: #02998D;
  color: #22252B;
}
.metro-delivery-checker-results .failure .h5 {
  color: #EF4A58 !important;
}
.metro-delivery-checker-results .failure .btn {
  font-size: 12px;
  padding: 14px 12px;
}

.page-description p a {
  text-decoration: underline;
  -webkit-text-decoration-color: #02998D;
  text-decoration-color: #02998D;
  color: #22252B;
  font-weight: 500;
}

.woocommerce-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 36px 0;
}

ul.page-numbers {
  width: 100%;
  max-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
ul.page-numbers .nav-previous,
ul.page-numbers .nav-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}
ul.page-numbers .nav-previous a,
ul.page-numbers .nav-next a {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 10px;
  margin-bottom: 0;
  color: #5d5d5d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  height: 72px;
  padding: 12px 24px;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.text-white ul.page-numbers .nav-previous a,
.text-white ul.page-numbers .nav-next a {
  color: #ffffff;
}
@media (min-width: 800px) {
  ul.page-numbers .nav-previous a,
  ul.page-numbers .nav-next a {
    font-size: 11px;
  }
}
ul.page-numbers .nav-previous a:hover,
ul.page-numbers .nav-next a:hover {
  background: #e7e7e7;
}
ul.page-numbers .nav-previous a {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: #ffffff;
  border-right: 1px solid #e7e7e7;
}
ul.page-numbers .nav-previous a:before {
  content: "";
  width: 8px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  background: url("../images/svgs/arrow-left.svg") center/cover no-repeat;
  opacity: 0.4;
}
ul.page-numbers .nav-previous + .nav-next {
  border-left: none;
}
ul.page-numbers .nav-next {
  text-align: right;
  border-left: 1px solid #e7e7e7;
}
ul.page-numbers .nav-next:first-child {
  margin-left: 50%;
}
ul.page-numbers .nav-next a {
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
ul.page-numbers .nav-next a:after {
  content: "";
  width: 8px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.4;
  background: url("../images/svgs/arrow-right.svg") center/cover no-repeat;
}

span.page-numbers.current,
a.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #e7e7e7;
  color: #5d5d5d;
  font-weight: 700;
  border-radius: 50%;
  -webkit-transition: background 0.4s ease, color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease;
}
span.page-numbers.current:hover,
a.page-numbers:hover {
  background: #cecece;
}

span.page-numbers.current {
  background: #EF4A58;
  color: #ffffff;
}
span.page-numbers.current:hover {
  background: #EF4A58;
  color: #ffffff;
}

.next.page-numbers,
.prev.page-numbers {
  background: transparent;
}
.next.page-numbers:hover,
.prev.page-numbers:hover {
  background: #e7e7e7;
}

.pagination {
  width: 100%;
  overflow: hidden;
  height: 50px;
  background: #e7e7e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 564px;
  margin: 0 auto 20px;
}
@media (min-width: 800px) {
  .pagination {
    margin: 20px auto 40px;
  }
}
.pagination .nav-links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.pagination .nav-links > * {
  font-size: 1.4rem;
  color: #5d5d5d;
  padding: 5px 10px;
  text-transform: uppercase;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.pagination .nav-links a:hover,
.pagination .nav-links .current {
  color: #02998D;
}
.pagination .nav-links .next.page-numbers,
.pagination .nav-links .prev.page-numbers {
  position: absolute;
  top: calc(50% - 17px);
  height: 35px;
}
.pagination .nav-links .next.page-numbers svg,
.pagination .nav-links .prev.page-numbers svg {
  fill: #02998D;
}
.pagination .nav-links .next.page-numbers {
  right: 20px;
}
.pagination .nav-links .prev.page-numbers {
  left: 20px;
}

.pagination__prev {
  width: 25%;
}

.pagination__next {
  width: 25%;
  text-align: right;
}

.pagination__numbers {
  width: 50%;
  text-align: center;
}
.pagination__numbers > * {
  max-width: 288px;
  margin: 0 auto;
}
.pagination__numbers li > * {
  display: block;
  padding: 8px 14px;
}

.pagination svg {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 24px;
  fill: #22252B;
}

.pagination__text {
  display: inline-block;
  vertical-align: middle;
  padding: 0 8px;
}

@media (max-width: 599px) {
  .pagination__text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
.rte {
  font-weight: normal;
  font-style: normal;
}
.rte:after {
  content: "";
  display: table;
  clear: both;
}
.rte img {
  margin: 48px 0;
}
.rte img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.rte img.alignright {
  margin-left: auto;
}
.rte .wp-block-image {
  margin: 48px 0;
}
.rte .wp-block-image img {
  margin: 0 0 4px;
}
.rte ul,
.rte ol,
.rte dl {
  margin-top: 0;
  margin-left: 16px;
  margin-bottom: 12px;
  padding-left: 18px;
  color: dimgray;
}
.rte ul li,
.rte ol li,
.rte dl li {
  padding: 4px 0;
}
.rte ul {
  list-style-type: disc;
}
.rte ol {
  list-style-type: decimal;
}
.rte dt {
  font-weight: bold;
}
.rte ul ul,
.rte ul ol,
.rte ul dl,
.rte ol ul,
.rte ol ol,
.rte ol dl,
.rte dl ul,
.rte dl ol,
.rte dl dl {
  margin-top: 0;
  margin-bottom: 0;
}
.rte ol ul,
.rte ul ul {
  list-style-type: circle;
}
.rte ol ol ul,
.rte ol ul ul,
.rte ul ol ul,
.rte ul ul ul {
  list-style-type: square;
}
.rte blockquote {
  font-style: italic;
  border-left: 2px solid #02998D;
}
.rte address {
  font-style: italic;
}
.rte hr {
  background: #e7e7e7;
  height: 1px;
  border: none;
  line-height: 1px;
  margin: 24px 0;
  display: block;
}
.rte strong,
.rte b {
  font-weight: 700;
  display: inline;
}
.rte em,
.rte i {
  font-style: italic;
}
.rte del,
.rte strike,
.rte s {
  text-decoration: line-through;
}
.rte u,
.rte ins {
  text-decoration: underline;
}
.rte sup {
  vertical-align: super;
  font-size: smaller;
}
.rte sub {
  vertical-align: sub;
  font-size: smaller;
}
.rte big {
  font-size: larger;
}
.rte small {
  font-size: smaller;
}
.rte abbr,
.rte acronym {
  border-bottom: dotted 1px;
}
.rte cite,
.rte dfn {
  font-style: italic;
}
.rte q {
  font-style: italic;
}
.rte q::before {
  content: open-quote;
}
.rte q::after {
  content: close-quote;
}
.rte q:lang(en) {
  quotes: "“" "”" "‘" "’";
}
.rte bdo {
  direction: rtl;
}
.rte pre {
  margin: 0 0 12px 0;
  font-family: "Lucida Console", Monaco, monospace;
  white-space: normal;
}
.rte code,
.rte samp,
.rte tt,
.rte kbd {
  font-family: "Lucida Console", Monaco, monospace;
}
.rte var {
  font-style: italic;
}
.rte img,
.rte video,
.rte audio {
  max-width: 100% !important;
}

.rte.rte--lg p {
  font-family: "brandon-grotesque", sans-serif;
  font-family: "brandon-grotesque", sans-serif;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: none;
  font-size: 18px;
}
@media (min-width: 800px) {
  .rte.rte--lg p {
    font-size: 20px;
  }
}

.feed-calculator {
  background: #F8F8F8;
  border-radius: 4px;
  padding: 24px 18px;
}
.feed-calculator ul.gfield_radio {
  display: block;
  margin-top: 8px;
}
.feed-calculator ul.gfield_radio li {
  display: block;
}
.feed-calculator ul.gfield_radio li label {
  color: #22252B;
  text-transform: none;
  letter-spacing: 0;
}
.feed-calculator .gform_footer {
  display: none !important;
}
.feed-calculator .gfield.feed-amount {
  margin-top: 12px;
}
.feed-calculator input[type=number] {
  background: #ffffff;
  height: 44px;
  font-weight: 700 !important;
}
.feed-calculator input[type=text] {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-weight: 700 !important;
  height: auto !important;
  color: #22252B !important;
}

label {
  display: block;
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 12px;
  margin-bottom: 2px;
}
.text-white label {
  color: #ffffff;
}
@media (min-width: 600px) {
  label {
    margin-bottom: 5px;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=search],
textarea,
select {
  -webkit-appearance: none;
  width: 100%;
  height: 34px;
  margin: 0;
  padding: 0 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #e7e7e7;
  background: transparent;
  font-size: 14px;
  color: #02998D;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
input[type=text]:focus, input[type=text]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=search]:focus,
input[type=search]:active,
textarea:focus,
textarea:active,
select:focus,
select:active {
  outline: none;
  border-color: #5d5d5d;
}
.is-touch input[type=text],
.is-touch input[type=email],
.is-touch input[type=tel],
.is-touch input[type=number],
.is-touch input[type=password],
.is-touch input[type=search],
.is-touch textarea,
.is-touch select {
  font-size: 16px;
}

textarea {
  min-height: 192px;
  max-height: 240px;
  padding: 10px 15px;
  overflow: auto;
  resize: vertical;
}

input[type=submit],
button[type=submit] {
  -webkit-appearance: none;
  background-color: transparent;
  border-radius: 0;
  display: inline-block;
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #02998D;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 16px;
  white-space: nowrap;
  border-radius: 4px;
  border: 2px solid #02998D;
  line-height: 1;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
@media (max-width: 599px) {
  input[type=submit],
  button[type=submit] {
    width: 100%;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 17px 8px;
  }
}
input[type=submit]:hover, input[type=submit]:active, input[type=submit]:focus,
button[type=submit]:hover,
button[type=submit]:active,
button[type=submit]:focus {
  cursor: pointer;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}
input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active,
button[type=submit]:hover,
button[type=submit]:focus,
button[type=submit]:active {
  outline: none;
  cursor: pointer;
}

select {
  display: block;
  -webkit-appearance: none;
  border-radius: 0;
  position: relative;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

.select-wrap,
.ginput_container_select,
#billing_country_field .woocommerce-input-wrapper {
  position: relative;
}
.select-wrap:after,
.ginput_container_select:after,
#billing_country_field .woocommerce-input-wrapper:after {
  content: "";
  position: absolute;
  display: block;
  width: 44px;
  height: calc(100% - 2px);
  top: 1px;
  right: 1px;
  background: transparent url("../images/svgs/arrow-down.svg") no-repeat;
  background-size: 12px 6px;
  background-position: center;
  pointer-events: none;
}

.gfield_radio,
.gfield_checkbox {
  display: table;
  width: 100%;
}
.gfield_radio input,
.gfield_checkbox input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.gfield_radio label:before,
.gfield_checkbox label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border: 1px solid #22252B;
  background-color: #ffffff;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  cursor: pointer;
}
.gfield_radio input:checked + label:before,
.gfield_checkbox input:checked + label:before {
  background-color: #22252B;
}

.fileUpload input {
  height: auto;
  display: block;
  border: 1px dashed #e7e7e7;
  text-align: center;
  padding: 38px 24px;
  margin-bottom: 12px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.fileUpload input:hover {
  border-color: #02998D;
  color: #02998D;
}
.fileUpload .ginput_container {
  height: auto;
}
.is-touch input,
.is-touch textarea,
.is-touch select {
  font-size: 16px;
}

::-webkit-input-placeholder {
  color: #5d5d5d;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

::-moz-placeholder {
  color: #5d5d5d;
  opacity: 0.5;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

:-ms-input-placeholder {
  color: #5d5d5d;
  opacity: 0.5;
  -ms-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

::-ms-input-placeholder {
  color: #5d5d5d;
  opacity: 0.5;
  -ms-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

::placeholder {
  color: #5d5d5d;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0.2;
}

:-ms-input-placeholder {
  color: #5d5d5d;
  opacity: 0.5;
  -ms-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0.2;
}

::-ms-input-placeholder {
  color: #5d5d5d;
  opacity: 0.5;
  -ms-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

input:focus::-ms-input-placeholder {
  opacity: 0.2;
}

.form-wrapper {
  background: #e7e7e7;
  border-radius: 20px;
  padding: 36px 3%;
  width: 94%;
  max-width: 926px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  -webkit-transform: translate3d(0, -48px, 0);
  transform: translate3d(0, -48px, 0);
}
.form-wrapper.in-view {
  -webkit-transform: translate3d(0, -48px, 0) !important;
  transform: translate3d(0, -48px, 0) !important;
}
@media (min-width: 800px) {
  .form-wrapper {
    padding: 60px;
    -webkit-transform: translate3d(0, -80px, 0);
    transform: translate3d(0, -80px, 0);
  }
  .form-wrapper.in-view {
    -webkit-transform: translate3d(0, -80px, 0) !important;
    transform: translate3d(0, -80px, 0) !important;
  }
}

.gform_heading {
  margin-bottom: 36px;
}

.gform_title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #22252B;
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 22px;
  font-weight: 400 !important;
  margin: 0 0 16px !important;
}
.text-white .gform_title {
  color: #ffffff;
}
@media (min-width: 600px) {
  .gform_title {
    font-size: 32px;
  }
}
@media (min-width: 800px) {
  .gform_title {
    font-size: 36px;
  }
}

.gform_description {
  display: block;
  max-width: 680px;
}

.ginput_counter,
.instruction,
.gform_validation_container {
  display: none;
}

.gform_confirmation_message {
  font-family: "brandon-grotesque", sans-serif;
  font-family: "brandon-grotesque", sans-serif;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: none;
}
.ginput_container {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  min-height: 48px;
}

.hidden_label .gfield_label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.gform_fields li.half {
  width: 48%;
}

ul.gform_fields {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.gfield {
  width: 100%;
  position: relative;
  padding-bottom: 12px;
}
@media (min-width: 1025px) {
  .gfield {
    padding-bottom: 16px;
  }
}

.gform_wrapper li > .gfield_label {
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 12px;
  color: #5d5d5d;
}
.gform_wrapper input[type=text],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=email],
.gform_wrapper select,
.gform_wrapper textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #e7e7e7;
  display: block;
  width: 100%;
  margin: 0;
  text-align: left;
  height: 48px;
  background: #ffffff;
  padding: 0 18px;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #5d5d5d;
  -webkit-transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  background: #e7e7e7;
  border-color: #e7e7e7;
  color: #5d5d5d;
  outline: none;
}
@media (min-width: 1025px) {
  .gform_wrapper input[type=text],
  .gform_wrapper input[type=tel],
  .gform_wrapper input[type=email],
  .gform_wrapper select,
  .gform_wrapper textarea {
    font-size: 20px;
  }
}
.gform_wrapper textarea {
  padding: 12px 18px;
}
.gform_wrapper textarea:focus {
  background: #e7e7e7;
  border-color: #e7e7e7;
  color: #5d5d5d;
  outline: none;
}
.gform_wrapper input[type=submit],
.gform_wrapper button {
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #02998D;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 16px;
  white-space: nowrap;
  border-radius: 4px;
  border: 2px solid #02998D;
  line-height: 1;
  -webkit-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  max-width: 266px;
  margin-top: 16px;
}
@media (max-width: 599px) {
  .gform_wrapper input[type=submit],
  .gform_wrapper button {
    width: 100%;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 17px 8px;
  }
}
.gform_wrapper input[type=submit]:hover, .gform_wrapper input[type=submit]:active, .gform_wrapper input[type=submit]:focus,
.gform_wrapper button:hover,
.gform_wrapper button:active,
.gform_wrapper button:focus {
  cursor: pointer;
  background: #07736b;
  color: #ffffff;
  border-color: #07736b;
}
.gform_wrapper input[type=submit]:hover,
.gform_wrapper button:hover {
  background: transparent;
  border-color: #02998D;
  color: #02998D;
}

.gfield_error {
  border-color: #FF3333 !important;
}
.gfield_error input[type=text],
.gfield_error input[type=tel],
.gfield_error input[type=email],
.gfield_error select,
.gfield_error textarea {
  border-color: #FF3333;
}

.gfield_required {
  display: none;
}

.chiro-form .validation_message {
  display: none;
}

.validation_message {
  color: #FF3333;
  margin-top: 0;
  font-size: 12px;
  text-align: left;
  padding: 0;
  position: absolute;
  top: calc(100% - 20px);
  left: 0;
}

.instruction.validation_message {
  display: block;
  top: calc(100% + 4px);
}

.validation_error {
  display: none;
}

.hide-label label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

select {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
  position: relative;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

.select-wrap .ginput_container_select,
.variations .value,
#billing_state_field .woocommerce-input-wrapper,
#billing_country_field .woocommerce-input-wrapper,
#shipping_country_field .woocommerce-input-wrapper,
#shipping_state_field .woocommerce-input-wrapper {
  position: relative;
  z-index: 1;
  display: block;
}
.select-wrap .ginput_container_select:after,
.variations .value:after,
#billing_state_field .woocommerce-input-wrapper:after,
#billing_country_field .woocommerce-input-wrapper:after,
#shipping_country_field .woocommerce-input-wrapper:after,
#shipping_state_field .woocommerce-input-wrapper:after {
  content: "";
  position: absolute;
  display: block;
  width: 44px;
  height: calc(100% - 2px);
  top: 1px;
  right: 1px;
  background: transparent url("./images/svgs/arrow-down.svg") no-repeat;
  background-size: 12px 6px;
  background-position: center;
  pointer-events: none;
}

li.checkbox {
  margin-top: 12px;
  padding-bottom: 0;
}
li.checkbox .gfield_label {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02998D;
  font-size: 10px;
  letter-spacing: 1px;
  color: #22252B;
}
.text-white li.checkbox .gfield_label {
  color: #ffffff;
}
@media (min-width: 800px) {
  li.checkbox .gfield_label {
    font-size: 11px;
  }
}

.gfield_radio,
.gfield_checkbox {
  display: block;
  width: 100%;
  margin-top: 12px;
}
.gfield_radio li,
.gfield_checkbox li {
  display: inline-block;
  margin-right: 20px;
}
.gfield_radio label,
.gfield_checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 14px !important;
  font-weight: 500;
}
.gfield_radio label:hover,
.gfield_checkbox label:hover {
  cursor: pointer;
}
@media (min-width: 1025px) {
  .gfield_radio label,
  .gfield_checkbox label {
    font-size: 14px;
  }
}
.gfield_radio input,
.gfield_checkbox input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.gfield_radio label:before,
.gfield_checkbox label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border: 2px solid #02998D;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease, border-color 0.4s ease;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.gfield_radio label:after,
.gfield_checkbox label:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  left: 3px;
  top: 6px;
  background: #02998D;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.gfield_radio input:checked + label:before,
.gfield_checkbox input:checked + label:before {
  border-color: #02998D;
  background-color: #ffffff;
}
.gfield_radio input:checked + label:after,
.gfield_checkbox input:checked + label:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.gfield_radio input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.gfield_radio label:before,
.gfield_radio label:after {
  border-radius: 50%;
}
.fileUpload input {
  height: auto;
  display: block;
  border: 1px dashed #e7e7e7;
  text-align: center;
  padding: 38px 24px;
  margin-bottom: 12px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.fileUpload input:hover {
  border-color: #02998D;
  color: #02998D;
}
.fileUpload .ginput_container {
  height: auto;
}
.wpbr-review__reviewer-image img {
  display: none !important;
}

@media (min-width: 800px) {
  .sticky {
    position: sticky;
    top: 48px;
  }
}
@media (max-width: 599px) {
  .intro .order-1-before-md img {
    max-width: 50%;
  }
}

.content-preview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
@media (min-width: 800px) {
  .content-preview-list {
    width: calc(100% + 24px);
    margin-left: -12px;
  }
}
.content-preview-list li {
  width: 100%;
}
@media (max-width: 799px) {
  .content-preview-list li {
    margin-bottom: 12px;
  }
}

.content-preview-list--1 li,
.content-preview-list--1 > div {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .content-preview-list--2 li,
  .content-preview-list--2 > div {
    width: 50%;
  }
}
@media (min-width: 800px) {
  .content-preview-list--3 li,
  .content-preview-list--3 > div {
    width: 33.333%;
  }
  .content-preview-list--4 li,
  .content-preview-list--4 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--5 li,
  .content-preview-list--5 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--6 li,
  .content-preview-list--6 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--7 li,
  .content-preview-list--7 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--8 li,
  .content-preview-list--8 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--9 li,
  .content-preview-list--9 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--10 li,
  .content-preview-list--10 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--11 li,
  .content-preview-list--11 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--12 li,
  .content-preview-list--12 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--13 li,
  .content-preview-list--13 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--14 li,
  .content-preview-list--14 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--15 li,
  .content-preview-list--15 > div {
    width: 25%;
    margin-bottom: 48px;
  }
  .content-preview-list--16 li,
  .content-preview-list--16 > div {
    width: 25%;
    margin-bottom: 48px;
  }
}
.content-preview {
  width: 100%;
  padding: 0 12px;
}
.content-preview .has-accent:after {
  margin-left: auto;
  margin-right: auto;
}

.content-preview__image {
  width: 100%;
  height: 0;
  padding-bottom: 65%;
  position: relative;
  overflow: hidden;
  margin: 0 0 12px;
  background: #e7e7e7;
}
.content-preview__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.content-preview__meta {
  color: #5d5d5d;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.content-preview__meta span + span:before {
  content: " • ";
  margin: 0 4px;
}
@media (max-width: 599px) {
  .content-preview__meta {
    font-size: 11px;
  }
}

.content-preview__title {
  color: #22252B;
}

.content-preview__author,
.post__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 14px;
  color: #5d5d5d;
}
.content-preview__author figure,
.post__author figure {
  width: 48px;
  height: 48px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 12px;
}
.content-preview__author figure img,
.post__author figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 600px) {
  .content-preview-list--1 .content-preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-align: left;
    width: 100%;
  }
  .content-preview-list--1 .content-preview .has-accent:after {
    margin-left: 0;
    margin-right: 0;
  }
  .content-preview-list--1 .content-preview__content {
    padding: 36px 0 36px 24px;
    width: 60%;
  }
  .content-preview-list--1 .content-preview__image {
    height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
    width: 40%;
  }
}
@media (min-width: 800px) {
  .content-preview-list--1 .content-preview__content {
    padding: 120px 60px;
    width: 40%;
  }
  .content-preview-list--1 .content-preview__image {
    width: 60%;
  }
}
.sidebar .content-preview-list li {
  width: 100% !important;
}
.sidebar .content-preview-list--1 {
  display: block;
}
.sidebar .content-preview-list--1 .content-preview {
  display: block;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
  width: 100%;
}
.sidebar .content-preview-list--1 .content-preview__content {
  padding: 24px 0;
  width: 100%;
}
.sidebar .content-preview-list--1 .content-preview__image {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
}

.content-preview a {
  display: block;
}
.content-preview a h3, .content-preview a h2 {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.content-preview a:hover h3, .content-preview a:hover h2 {
  color: #02998D;
}

@media (min-width: 1025px) {
  .content-preview--featured a {
    display: block;
  }
  .content-preview--featured a .content-preview__content {
    padding: 16px 0;
  }
}
.standard-post-list {
  padding-top: 48px;
}
@media (min-width: 1025px) {
  .standard-post-list {
    padding-top: 60px;
  }
}

@media (min-width: 600px) {
  .standard-post-preview .content-preview a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .standard-post-preview .content-preview .content-preview__image {
    padding-bottom: 0;
    width: 256px;
    min-width: 256px;
    height: 164px;
    margin-right: 30px;
  }
}

@media (min-width: 1025px) {
  .d-sm-flex.d-lg-block {
    display: block !important;
  }
}
.site-footer {
  background: #22252B;
  padding: 60px 0 0;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
}
.site-footer .a {
  color: #02998D;
  text-decoration: underline;
}
@media (min-width: 800px) {
  .site-footer {
    padding: 80px 0 0;
  }
}
.site-footer a, .site-footer p {
  color: #ffffff;
  font-size: 16px;
}
.site-footer a {
  color: #ffffff;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.site-footer a:hover {
  color: #5d5d5d;
}

.site-footer__branding {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.site-footer__branding img {
  width: 70px;
  margin: 0 auto 12px;
}
@media (min-width: 800px) {
  .site-footer__branding {
    width: calc(20% - 10px);
    text-align: left;
  }
  .site-footer__branding img {
    width: 70px;
    margin: 0 0 12px;
  }
}

.site-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (min-width: 1025px) {
  .site-footer__menus {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.site-footer__menus .site-footer__menu {
  width: 100%;
  margin-bottom: 36px;
}
@media (min-width: 600px) {
  .site-footer__menus .site-footer__menu {
    min-width: 20%;
    width: auto;
    margin-right: 20px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (min-width: 1025px) {
  .site-footer__menus .site-footer__menu {
    margin-right: 80px;
  }
}

.site-footer__menus .site-footer__menu.site-footer__menu--branding {
  width: 100% !important;
}
.site-footer__menus .site-footer__menu.site-footer__menu--branding img {
  max-width: 220px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .site-footer__menus .site-footer__menu.site-footer__menu--branding {
    width: 100% !important;
  }
}
@media (min-width: 1025px) {
  .site-footer__menus .site-footer__menu.site-footer__menu--branding {
    width: auto !important;
    min-width: 200px;
  }
  .site-footer__menus .site-footer__menu.site-footer__menu--branding img {
    max-width: 200px;
    margin: 0;
  }
}

.site-footer__menu .h5 {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #3a3a3a;
}
.site-footer__menu li + li {
  margin-top: 4px;
}

.site-footer__legal {
  border-top: 1px solid #3a3a3a;
  padding: 24px 0;
  font-size: 14px;
}
.site-footer__legal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-footer__legal ul li {
  margin-right: 24px;
}
@media (min-width: 800px) {
  .site-footer__legal ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.site-footer__legal a {
  color: #e7e7e7;
  text-decoration: underline;
}

@media (max-width: 799px) {
  .order-1-before-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2-before-md {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.has-accent:after {
  content: "";
  width: 40px;
  height: 4px;
  display: block;
  background: #02998D;
  margin: 24px 0;
}
.text-center .has-accent:after {
  margin: 20px auto;
}
.text-right .has-accent:after {
  margin: 20px 0 2px auto;
}

@media (min-width: 600px) {
  .flex-flip-sm {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.text-center {
  text-align: center;
}
.text-center p, .text-center img, .text-center .text-thin {
  margin-left: auto;
  margin-right: auto;
}

.text-thin {
  max-width: 560px;
}

.text-brand {
  color: #02998D !important;
}

.text-accent {
  color: #EF4A58 !important;
}

.text-white {
  color: #ffffff;
}

.text-light {
  color: #F8F8F8;
}

.tile {
  padding: 12px;
  border-radius: 4px;
}

.text-italic {
  font-style: italic;
}

.text-bold {
  font-weight: bold;
}

.bg-brand {
  background: #02998D;
}

.bg-light {
  background: #e7e7e7;
}

.sr-only,
.screen-reader-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.text-error {
  color: #EF4A58;
}

.fa,
.fab,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-nintendo-switch:before {
  content: "\f418";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.fab {
  font-family: "Font Awesome 5 Brands";
}

.far {
  font-weight: 400;
}

.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}

.fa,
.fas {
  font-weight: 900;
}

#__bs_notify__ {
  opacity: 0.1;
  bottom: 0 !important;
  top: auto !important;
  height: 50px;
}

body.localhost:after {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  display: inline-block;
  color: white;
  font-size: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px;
  content: "Mobile";
}
@media (min-width: 600px) {
  body.localhost:after {
    content: "Small";
  }
}
@media (min-width: 800px) {
  body.localhost:after {
    content: "Medium";
  }
}
@media (min-width: 1025px) {
  body.localhost:after {
    content: "Large";
  }
}
@media (min-width: 1440px) {
  body.localhost:after {
    content: "x-large";
  }
}