@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
body {
  font-family: "Lato", sans-serif;
  color: #302531;
  margin: 0;
  padding: 0; }
  body.prog {
    margin-left: 26px; }

.body-font {
  font-family: "Lato", sans-serif; }

.heading-font {
  font-family: "Ubuntu", sans-serif; }
  .heading-font strong {
    font-weight: 900; }

strong.heading-font {
  font-weight: 900; }

a {
  color: #FDBE0F;
  text-decoration: none;
  transition: all 0.2s ease; }
  a:hover {
    color: #FDBE0F;
    text-decoration: none; }
  a:focus {
    color: #FDBE0F;
    text-decoration: none; }

p {
  font-size: 1.4rem;
  margin-bottom: 1rem; }

strong {
  font-weight: 800; }

ul, ol {
  font-size: 1.4rem; }
  ul li, ol li {
    margin-bottom: 0.25rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Ubuntu", sans-serif; }

h1 {
  font-size: 2rem;
  margin-bottom: 1rem; }

h2 {
  font-size: 1.85rem;
  margin-bottom: 1rem; }

.normal-line-height * {
  line-height: initial; }

.container .row {
  margin-right: 0;
  margin-left: 0; }

.sv-navbar {
  padding: 20px 0;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  background-color: black; }

.sv-footer {
  background-image: url("../img/masthead.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  font-weight: normal;
  font-size: 16px;
  padding: 20px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1); }
  .sv-footer a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease; }
  .sv-footer .footer-copyright {
    background-color: #4C3C4F;
    color: #FFFFFF;
    padding: 20px;
    margin-top: 20px;
    text-align: center; }

.timer-table {
  display: inline-table;
  width: 100%;
  max-width: 300px;
  margin: 0;
  text-align: center; }
  .timer-table tr:nth-of-type(1) {
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: 900; }
    .timer-table tr:nth-of-type(1) td {
      width: 25%; }
  .timer-table tr:nth-of-type(2) {
    font-size: .7rem;
    line-height: .7rem;
    font-weight: 600; }

.intrinsic-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative; }
  .intrinsic-container iframe, .intrinsic-container video {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }

.primary-bg {
  background-color: #FDBE0F; }

.secondary-bg {
  background-color: #4C3C4F; }

.red-bg {
  background-color: #D2102F; }

.green-bg {
  background-color: #00A652; }

.yellow-bg {
  background-color: #FFF200; }

.purple-bg {
  background-color: #381C6B; }

.pink-bg {
  background-color: #B12667; }

.white-bg {
  background-color: #FFFFFF; }

.black-bg {
  background-color: #000000; }

.primary-gradient-bg {
  background-color: #FDBE0F;
  background: linear-gradient(135deg, #D9A002, #FDCC44); }

.secondary-gradient-bg {
  background-color: #4C3C4F;
  background: linear-gradient(135deg, #302531, #68516C); }

.red-gradient-bg {
  background-color: #D2102F;
  background: linear-gradient(135deg, #A10C25, #EF2546); }

.green-gradient-bg {
  background-color: #00A652;
  background: linear-gradient(135deg, #004221, #0FFF87); }

.purple-gradient-bg {
  background-color: #381C6B;
  background: linear-gradient(135deg, #0D0618, #6130BB); }

.pink-gradient-bg {
  background-color: #B12667;
  background: linear-gradient(135deg, #5D1436, #DD5F9A); }

.primary-color {
  color: #FDBE0F; }

.secondary-color {
  color: #4C3C4F; }

.red-color {
  color: #D2102F; }

.yellow-color {
  color: #FFF200; }

.green-color {
  color: #00A652; }

.purple-color {
  color: #381C6B; }

.pink-color {
  color: #B12667; }

.white-color {
  color: #FFFFFF; }

.sv-button {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  text-align: center;
  color: #FFFFFF !important;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 20px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  background-color: #FDBE0F;
  margin-bottom: 1rem;
  line-height: 1.1; }
  .sv-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
    transition: opacity 0.2s ease;
    opacity: 0;
    pointer-events: none; }
  .sv-button:hover::after {
    opacity: 1; }
  .sv-button.alt {
    border-radius: 10px; }
    .sv-button.alt::after {
      border-radius: 10px; }
  .sv-button.small {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px; }
    .sv-button.small::after {
      border-radius: 10px; }
  .sv-button.green {
    background: #00A652; }
  .sv-button.red {
    background: #D2102F;
    box-shadow: -2px -5px 0px 0px #77091B; }
  .sv-button.dark-blue {
    background: #4C3C4F; }
  .sv-button.disabled {
    filter: grayscale(1);
    opacity: 0.5;
    cursor: not-allowed; }

.yithss {
  font-size: 125%; }

.bounce {
  animation: bounce 2s linear infinite; }

@keyframes bounce {
  0%,
	50%,
	100% {
    transform: translateY(10px); }
  25%,
	75% {
    transform: translateY(-10px); } }
.shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0); }

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0); }
  20%, 80% {
    transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0); }
  40%, 60% {
    transform: translate3d(4px, 0, 0); } }
.meet-aaron-image-p {
  text-align: center;
  line-height: 1;
  transform: rotate(1deg); }
  .meet-aaron-image-p img {
    width: 100%;
    max-width: 250px;
    display: table;
    margin: 0 auto;
    border: 0.25rem solid #FFFFFF;
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.25); }
  .meet-aaron-image-p i {
    line-height: 1;
    display: block;
    padding-top: 0.5rem; }

.sv-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100vw;
  height: 100%;
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
  display: table;
  z-index: 999;
  transition: opacity .5s ease;
  perspective: 800px; }
  .sv-modal .modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; }
  .sv-modal .modal-outer {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    transition: all .75s ease;
    transform: scale(0) translateY(-100vh);
    transform-style: preserve-3d;
    pointer-events: none; }
    .sv-modal .modal-outer .modal-inner {
      position: relative;
      display: inline-block;
      background-color: #FFFFFF;
      margin: 1rem;
      width: calc(100% - 2rem);
      max-width: 800px;
      max-height: 90vh;
      border-radius: .25rem;
      overflow: auto;
      text-align: left;
      box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.25);
      pointer-events: all; }
      .sv-modal .modal-outer .modal-inner .modal-close {
        position: absolute;
        color: #FFFFFF;
        top: 0.25rem;
        right: 0.25rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.5rem;
        line-height: 1.5rem;
        font-weight: 700;
        cursor: pointer;
        opacity: 0.5;
        text-align: center;
        transition: all 0.25s ease;
        z-index: 9; }
        .sv-modal .modal-outer .modal-inner .modal-close:hover {
          opacity: 0.75; }
      .sv-modal .modal-outer .modal-inner .modal-header {
        padding: 1rem;
        border-bottom: 0;
        background-color: #000000;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #FFFFFF; }
      .sv-modal .modal-outer .modal-inner .modal-contents {
        padding: 1rem; }
      .sv-modal .modal-outer .modal-inner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        backface-visibility: hidden;
        z-index: -1; }
  .sv-modal.modal-open {
    opacity: 1; }
    .sv-modal.modal-open .modal-outer {
      transform: scale(1); }
    .sv-modal.modal-open .modal-inner, .sv-modal.modal-open .modal-bg {
      pointer-events: all; }

.modal-header {
  position: relative; }
  .modal-header .close {
    position: fixed;
    top: .5rem;
    right: .5rem;
    font-size: 1.5rem;
    line-height: 1.5rem; }

.sv-message {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  margin-bottom: 1rem; }
  .sv-message.blue {
    background-color: #0E71B8; }
  .sv-message.red {
    background-color: #D2102F; }

.sv-form label {
  margin-bottom: .25rem;
  opacity: .5;
  font-weight: 600; }
.sv-form input, .sv-form textarea, .sv-form select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none; }
  .sv-form input.has-error, .sv-form textarea.has-error, .sv-form select.has-error {
    background-color: #fde7eb; }
.sv-form textarea {
  min-height: 120px; }
.sv-form .select-container {
  position: relative; }
  .sv-form .select-container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .sv-form .select-container select:-ms-expand {
      display: none; }
  .sv-form .select-container::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: calc(50% - 11px);
    right: 10px;
    border-top: 8px solid black;
    opacity: 0.75; }
.sv-form .form-sect {
  height: 0px;
  opacity: 0;
  overflow: hidden;
  transition: all 0.75s ease; }
  .sv-form .form-sect.active {
    height: auto;
    opacity: 1;
    overflow: visible; }
.sv-form .help-block {
  display: block;
  text-align: left;
  width: 100%;
  font-size: 12px;
  line-height: 12px;
  margin: 0;
  margin-bottom: .25rem;
  margin-left: 2px;
  color: #D2102F; }

.big-checkbox {
  display: block;
  position: relative;
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding-left: 5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .big-checkbox:hover input ~ .checkmark {
    background-color: rgba(0, 0, 0, 0.1); }
  .big-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
    .big-checkbox input:checked ~ .checkmark {
      background-color: #00A652; }
      .big-checkbox input:checked ~ .checkmark:after {
        opacity: 1; }
  .big-checkbox .checkmark {
    position: absolute;
    top: calc(50% - 1.5rem);
    left: 1rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: .5rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease; }
    .big-checkbox .checkmark:after {
      content: "";
      position: absolute;
      display: block;
      left: 1rem;
      top: 0.25rem;
      width: 1rem;
      height: 2.25rem;
      border: solid #FFFFFF;
      border-width: 0 .5rem .5rem 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      opacity: 0;
      transition: all 0.2s ease; }

.checkbox-cont {
  display: block;
  position: relative;
  padding: 0 15px;
  padding-left: calc(2rem + 15px);
  margin-top: .75rem;
  margin-bottom: .5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .checkbox-cont .checkmark {
    position: absolute;
    top: calc(50% - .75rem);
    left: 15px;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #00679A;
    border-radius: .25rem;
    background-color: #FFFFFF; }
    .checkbox-cont .checkmark::after {
      content: "";
      position: absolute;
      display: none;
      left: calc(50% - .175rem);
      top: calc(50% - .425rem);
      width: .4rem;
      height: .75rem;
      border: solid #FFFFFF;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
  .checkbox-cont:hover input ~ .checkmark {
    background-color: #E3E3E3; }
  .checkbox-cont input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
    .checkbox-cont input:checked ~ .checkmark {
      background-color: #00679A; }
      .checkbox-cont input:checked ~ .checkmark::after {
        display: block; }

.radiocont {
  position: relative;
  z-index: 1; }
  .radiocont label {
    opacity: 1;
    font-weight: inherit; }
  .radiocont input[type="radio"] {
    position: absolute;
    opacity: 0; }
    .radiocont input[type="radio"] + label {
      width: auto;
      position: relative;
      display: inline-block;
      margin-top: 0;
      margin-right: .5rem;
      margin-bottom: 1rem;
      padding: .5rem;
      padding-left: 2rem;
      padding-right: 2rem;
      line-height: 1rem;
      cursor: pointer; }
      .radiocont input[type="radio"] + label::before {
        content: " ";
        position: absolute;
        top: calc(50% - .75rem);
        left: 0;
        display: block;
        width: 1.5rem;
        height: 1.5rem;
        border: 1px solid rgba(0, 0, 0, 0.25);
        background-color: #FFFFFF;
        border-radius: 100%;
        z-index: -1; }
    .radiocont input[type="radio"]:checked + label {
      padding-left: 2rem;
      padding-right: 2rem;
      color: #fff; }
      .radiocont input[type="radio"]:checked + label::before {
        top: 0;
        width: 100%;
        height: 100%;
        background: #FDBE0F;
        border-radius: .5rem; }
    .radiocont input[type="radio"] + label {
      -webkit-transition: .25s all ease;
      -o-transition: .25s all ease;
      transition: .25s all ease; }
      .radiocont input[type="radio"] + label::before {
        -webkit-transition: .25s all ease;
        -o-transition: .25s all ease;
        transition: .25s all ease; }
    .radiocont input[type="radio"].yes:checked + label::before {
      background-color: #00A652; }
    .radiocont input[type="radio"].no:checked + label::before {
      background-color: #D2102F; }

.hello-bar {
  background-color: #00A652;
  color: #FFFFFF;
  padding: .5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  height: 2rem;
  text-align: center;
  transition: all 1s ease;
  overflow: hidden; }
  .hello-bar p {
    font-size: 1rem;
    font-weight: 700; }
    .hello-bar p a:not(.adisregard) {
      background-color: rgba(0, 0, 0, 0.25);
      padding: .5rem;
      border-radius: .5rem;
      color: #FFFFFF;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-left: .25rem; }
      .hello-bar p a:not(.adisregard):hover {
        background-color: rgba(0, 0, 0, 0.1); }
  .hello-bar.closed {
    height: 0;
    padding: 0; }
  .hello-bar.hb-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1998;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1); }

.best-deal::after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: -6px;
  right: -8px;
  background-image: url("../img/best-deal-corner.png");
  background-size: cover;
  background-repeat: no-repeat; }

.sv-table {
  width: 100%; }
  .sv-table td, .sv-table th {
    vertical-align: middle; }

.ghost-btn {
  display: inline-block;
  color: #FFFFFF;
  padding: .25rem 1rem;
  border: 0.2rem solid #FFFFFF;
  text-align: center;
  font-weight: 800;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease; }
  .ghost-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    mix-blend-mode: screen; }
  .ghost-btn:focus {
    background-color: #FFFFFF;
    color: #000000;
    mix-blend-mode: screen; }

.solid-btn {
  display: inline-block;
  color: #FFFFFF;
  font-size: 1.2rem;
  padding: .5rem 2rem;
  background-color: #00A652;
  text-align: center;
  font-weight: 800;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  margin-bottom: 1.2rem; }
  .solid-btn:hover {
    color: #FFFFFF;
    background-color: #004221; }
  .solid-btn:focus {
    color: #FFFFFF;
    background-color: #004221; }
  .solid-btn.sb-full {
    width: 100%; }
  .solid-btn.sb-big {
    font-size: 2.2rem;
    padding: 1rem 4rem; }
  .solid-btn.sb-disabled {
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: 0.75; }
  .solid-btn.sb-rounded {
    border-radius: 1rem; }
  .solid-btn.sb-less-pad {
    padding: .25rem 1rem; }
    .solid-btn.sb-less-pad.sb-big {
      padding: .5rem 2rem; }
  .solid-btn.sb-central {
    display: table;
    margin: 0 auto;
    margin-bottom: 1.2rem; }
  .solid-btn.sb-mar0 {
    margin: 0; }
  .solid-btn.red {
    background-color: #D2102F; }
    .solid-btn.red:hover {
      background-color: #A10C25; }
    .solid-btn.red:focus {
      background-color: #A10C25; }
  .solid-btn.primary {
    background-color: #FDBE0F; }
    .solid-btn.primary:hover {
      background-color: #D9A002; }
    .solid-btn.primary:focus {
      background-color: #D9A002; }
  .solid-btn.secondary {
    background-color: #4C3C4F; }
    .solid-btn.secondary:hover {
      background-color: #302531; }
    .solid-btn.secondary:focus {
      background-color: #302531; }
  .solid-btn.purple {
    background-color: #381C6B; }
    .solid-btn.purple:hover {
      background-color: #0D0618; }
    .solid-btn.purple:focus {
      background-color: #0D0618; }
  .solid-btn.pink {
    background-color: #B12667; }
    .solid-btn.pink:hover {
      background-color: #5D1436; }
    .solid-btn.pink:focus {
      background-color: #5D1436; }
  .solid-btn.orange {
    background-color: #FFA500; }
    .solid-btn.orange:hover {
      background-color: #cc8500; }
    .solid-btn.orange:focus {
      background-color: #cc8500; }
  .solid-btn.white {
    padding: .5rem 1rem;
    background-color: #FFFFFF;
    color: #000000;
    border: 0.25rem solid #FFFFFF;
    border-radius: .25rem;
    margin-bottom: 0; }
    .solid-btn.white:hover {
      background-color: #000000;
      color: #FFFFFF; }
    .solid-btn.white:focus {
      background-color: #000000;
      color: #FFFFFF; }

.spotlight-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(to top, #302531, #4C3C4F);
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 2rem;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
  line-height: normal;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1); }
  .spotlight-btn.big {
    font-size: 1.6rem; }
  .spotlight-btn::before {
    content: '';
    position: absolute;
    top: .5rem;
    left: .5rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    background: linear-gradient(to bottom, #302531, #4C3C4F);
    z-index: -1;
    border-radius: 2rem;
    opacity: 1;
    transition: all 0.2s ease; }
  .spotlight-btn:hover, .spotlight-btn:focus {
    color: #FFFFFF; }
    .spotlight-btn:hover::before, .spotlight-btn:focus::before {
      opacity: 0; }
  .spotlight-btn.square {
    border-radius: .5rem; }
    .spotlight-btn.square::before {
      border-radius: .5rem; }
  .spotlight-btn.yellow {
    background: linear-gradient(to top, #FFCC00, #FFF200);
    color: #000000;
    font-weight: 900; }
    .spotlight-btn.yellow::before {
      background: linear-gradient(to bottom, #FFCC00, #FFF200); }
    .spotlight-btn.yellow:hover, .spotlight-btn.yellow:focus {
      color: #000000; }
  .spotlight-btn.orange {
    background: linear-gradient(to top, #C87800, #F39300);
    color: #FFFFFF;
    font-weight: 900; }
    .spotlight-btn.orange::before {
      background: linear-gradient(to bottom, #C87800, #F39300); }
    .spotlight-btn.orange:hover, .spotlight-btn.orange:focus {
      color: #FFFFFF; }
  .spotlight-btn.white {
    background: linear-gradient(to top, #E6E6E6, #FFFFFF);
    color: #4C3C4F;
    font-weight: 900; }
    .spotlight-btn.white::before {
      background: linear-gradient(to bottom, #E6E6E6, #FFFFFF); }
    .spotlight-btn.white:hover, .spotlight-btn.white:focus {
      color: #4C3C4F; }
  .spotlight-btn.green {
    background: linear-gradient(to top, #004221, #00A652);
    font-weight: 900; }
    .spotlight-btn.green::before {
      background: linear-gradient(to bottom, #004221, #00A652); }

.after-checkout-section {
  background-image: url("../img/masthead.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .after-checkout-section .acs-inner {
    padding: 2rem 1rem;
    background-color: rgba(246, 246, 246, 0.9);
    border-radius: 1rem;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1); }

#floating-balloons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  #floating-balloons .balloons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    #floating-balloons .balloons li {
      position: absolute;
      display: block;
      list-style: none;
      width: 20px;
      height: 20px;
      background-image: url("../img/black-balloon.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.5;
      bottom: -150px; }
      #floating-balloons .balloons li.floating {
        animation: float-the-balloons 25s linear 1; }
    #floating-balloons .balloons.red-balloon li {
      background-image: url("../img/red-balloon.png"); }
    #floating-balloons .balloons.both-balloon li {
      opacity: 1; }
      #floating-balloons .balloons.both-balloon li:nth-of-type(odd) {
        background-image: url("../img/red-balloon.png"); }
      #floating-balloons .balloons.both-balloon li.floating {
        animation: float-the-balloons-opaque 25s linear 1; }

@keyframes float-the-balloons {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5; }
  25% {
    transform: translateY(-250px) rotate(20deg); }
  50% {
    transform: translateY(-500px) rotate(-20deg); }
  75% {
    transform: translateY(-750px) rotate(20deg); }
  100% {
    transform: translateY(-1000px) rotate(-20deg);
    opacity: 0; } }
@keyframes float-the-balloons-opaque {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1; }
  25% {
    transform: translateY(-250px) rotate(20deg); }
  50% {
    transform: translateY(-500px) rotate(-20deg); }
  75% {
    transform: translateY(-750px) rotate(20deg); }
  100% {
    transform: translateY(-1000px) rotate(-20deg);
    opacity: 0; } }
.thankyou-step {
  border: 1px solid #000000;
  background-color: #FFFFFF;
  text-align: left;
  border-radius: 1rem;
  display: table;
  width: 100%;
  height: 100%;
  margin-bottom: 1rem; }
  .thankyou-step .col-sm-1 {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: .9rem 0 0 .9rem;
    height: 100%;
    display: table-cell;
    float: none;
    vertical-align: middle;
    text-align: center; }
  .thankyou-step .col-sm-12 {
    background-color: #FFFFFF;
    padding: 1rem .5rem;
    border-radius: 0 .9rem .9rem 0;
    height: 100%;
    vertical-align: middle;
    text-align: left; }
    .thankyou-step .col-sm-12 p {
      margin-bottom: 1rem; }
    .thankyou-step .col-sm-12 p:nth-last-of-type(1) {
      margin: 0; }

.faqcont .faqrow {
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF; }
  .faqcont .faqrow:not(:last-of-type) {
    border-bottom: 0; }
  .faqcont .faqrow .faqquestion {
    position: relative;
    padding: 1rem;
    padding-right: 3rem;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
    .faqcont .faqrow .faqquestion:hover {
      background-color: #F2F2F2; }
    .faqcont .faqrow .faqquestion p, .faqcont .faqrow .faqquestion ol, .faqcont .faqrow .faqquestion ul {
      line-height: normal;
      margin-bottom: 0; }
    .faqcont .faqrow .faqquestion.active {
      background-color: #E6E6E6; }
      .faqcont .faqrow .faqquestion.active::after {
        transform: rotate(180deg); }
      .faqcont .faqrow .faqquestion.active ~ .faqanswer {
        height: auto; }
    .faqcont .faqrow .faqquestion::after {
      content: "\f078";
      position: absolute;
      font-size: 1.2rem;
      line-height: 1.2rem;
      font-weight: 900;
      font-family: "Font Awesome 5 Free";
      right: 1rem;
      top: calc(50% - .6rem);
      transition: all 0.25s ease-in-out;
      color: #FFFFFF; }
  .faqcont .faqrow .faqanswer {
    height: 0;
    overflow: hidden;
    transition: all 0.75s ease; }
    .faqcont .faqrow .faqanswer .faqanswercontents {
      padding: 1rem 2rem;
      background-color: #F2F2F2; }
      .faqcont .faqrow .faqanswer .faqanswercontents *:last-child {
        margin-bottom: 0; }
.faqcont.faq-style {
  counter-reset: faq-counter; }
  .faqcont.faq-style .faqquestion {
    counter-increment: faq-counter;
    font-weight: 800;
    color: #4C3C4F; }
    .faqcont.faq-style .faqquestion .questionnum {
      width: 0px;
      display: inline-block; }
      .faqcont.faq-style .faqquestion .questionnum::before {
        content: counter(faq-counter);
        color: #FFFFFF;
        position: absolute;
        top: calc(50% - .6rem);
        left: 1rem;
        line-height: 1.2rem;
        padding: .1rem;
        font-size: 1.2rem;
        width: 1.2rem;
        background-color: #4C3C4F;
        border-radius: 100%;
        text-align: center;
        transition: all 0.2s ease; }
    .faqcont.faq-style .faqquestion::after {
      transition: all 0.2s ease;
      color: #4C3C4F; }
    .faqcont.faq-style .faqquestion.active {
      background-color: #4C3C4F;
      color: #FFFFFF; }
      .faqcont.faq-style .faqquestion.active .questionnum::before {
        filter: grayscale(1) brightness(0) invert(1); }
      .faqcont.faq-style .faqquestion.active::after {
        color: #FFFFFF; }

.addeventatc {
  background-color: #2defd0 !important;
  filter: invert(1) !important;
  display: inline-block !important;
  width: auto !important;
  margin: 0 auto !important;
  transition: all 0.2s ease !important;
  border: 2px solid #2defd0 !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5) !important; }
  .addeventatc:hover {
    background-color: #61f2da !important; }
  .addeventatc .addeventatc_dropdown {
    filter: invert(1) !important; }

.coupon-input {
  position: relative; }
  .coupon-input input {
    display: inline-block;
    margin-bottom: 1rem;
    width: 100%;
    padding: .5rem;
    border-radius: .25rem;
    border: 1px solid #D5D5D5;
    background-color: #FFFFFF;
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important; }
  .coupon-input::before {
    content: "\f3ff";
    position: absolute;
    top: calc(50% - 1rem);
    left: .5rem;
    transform: rotate(-45deg);
    color: rgba(0, 0, 0, 0.5);
    line-height: 1rem;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 1rem; }
  .coupon-input::after {
    content: "";
    position: absolute;
    top: calc(50% - 1rem);
    right: .5rem;
    padding: .5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .coupon-input.coupon-invalid::after {
    background-image: url("../img/cross-circle.png"); }
  .coupon-input.coupon-valid::after {
    background-image: url("../img/check-circle.png"); }
  .coupon-input.coupon-error::after {
    background-image: url("../img/error-circle.png"); }

.video-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%; }
  .video-bg video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%; }
  .video-bg::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.75); }

.masthead {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/masthead.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.hiw-table {
  width: 100%; }
  .hiw-table td {
    vertical-align: middle;
    width: 20%;
    padding: 1rem; }
    .hiw-table td .hiw-bubble {
      width: 100%;
      position: relative;
      cursor: pointer; }
      .hiw-table td .hiw-bubble .snum {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 2rem;
        line-height: 2rem;
        width: 3rem;
        height: 3rem;
        padding: .5rem;
        background-color: #4C3C4F;
        color: #FFFFFF;
        text-align: center;
        font-weight: 900;
        border-radius: 100%;
        z-index: 3; }
      .hiw-table td .hiw-bubble .sbubble {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: url(#fancy-goo); }
        .hiw-table td .hiw-bubble .sbubble::before {
          content: "";
          position: absolute;
          top: 2.5%;
          left: 5%;
          background-color: #FDBE0F;
          padding: 45%;
          border-radius: 100%;
          z-index: 1; }
        .hiw-table td .hiw-bubble .sbubble::after {
          content: "";
          position: absolute;
          bottom: 30%;
          left: 40%;
          background-color: #FDBE0F;
          padding: 10%;
          border-radius: 100%;
          z-index: 1;
          transition: all 0.2s ease; }
      .hiw-table td .hiw-bubble img {
        position: relative;
        width: 100%;
        z-index: 2;
        margin-bottom: 1rem; }
      .hiw-table td .hiw-bubble .stitle {
        display: inline-block;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
        line-height: 1.2rem;
        font-weight: 900;
        color: #4C3C4F; }
      .hiw-table td .hiw-bubble.drip .sbubble::after {
        animation: drip 1s 1 ease-in; }
      .hiw-table td .hiw-bubble::after {
        content: "";
        position: absolute;
        top: calc(50% - 1.25rem);
        right: -1.75rem;
        width: 1.5rem;
        height: .25rem;
        background-color: #4C3C4F; }
    .hiw-table td:last-of-type .hiw-bubble::after {
      display: none; }

.alt-hiw-table {
  width: 100%;
  margin-bottom: 2rem; }
  .alt-hiw-table td {
    vertical-align: middle; }
    .alt-hiw-table td:first-of-type {
      width: 15%; }
      .alt-hiw-table td:first-of-type div {
        position: relative;
        margin-right: 1rem; }
        .alt-hiw-table td:first-of-type div::before {
          content: '';
          position: absolute;
          top: -5%;
          left: 5%;
          padding: 45%;
          background-color: #FDBE0F;
          border-radius: 100%; }
        .alt-hiw-table td:first-of-type div img {
          margin-top: -1rem;
          margin-bottom: -1rem;
          width: 100%;
          position: relative;
          z-index: 1; }

.hiw-driptray {
  position: relative;
  padding: 2rem;
  border-radius: .5rem;
  border: 0.25rem solid #FDBE0F;
  background-color: #FFFFFF;
  z-index: 9;
  margin-bottom: 1rem; }
  .hiw-driptray p:first-of-type {
    margin-bottom: .5rem; }
    .hiw-driptray p:first-of-type strong {
      font-weight: 900;
      font-size: 125%; }
  .hiw-driptray p:last-of-type {
    margin-bottom: 0; }
  .hiw-driptray div {
    transition: all 0.2s ease; }

@keyframes drip {
  0% {
    bottom: 30%; }
  100% {
    bottom: -90%; } }
.sv-nav {
  padding: 0;
  margin: 0; }
  .sv-nav li {
    cursor: pointer;
    display: inline-block;
    padding-right: 1rem;
    padding-left: .75rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF; }
    .sv-nav li i {
      padding-right: .25rem; }
    .sv-nav li:first-of-type {
      padding-left: 0; }
    .sv-nav li:last-of-type {
      padding-right: 0;
      border-right: 0; }
    .sv-nav li:hover {
      color: #E6E6E6; }
    .sv-nav li.mshow {
      display: none; }
    .sv-nav li a {
      color: #FFFFFF; }
      .sv-nav li a:hover {
        color: #E6E6E6; }

.stickAmongTwigs {
  padding: 50%;
  background: url("../img/twigs-back.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: inline-block; }
  .stickAmongTwigs .stick {
    position: absolute;
    max-width: 100%;
    width: 15%;
    top: 33%;
    left: 65%;
    transform: rotate(-35deg);
    transition: all 500ms ease; }
    .stickAmongTwigs .stick img {
      width: 100%; }
  .stickAmongTwigs svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 1;
    transition: all 0.2s ease; }

.way-box {
  padding: 1rem;
  margin-bottom: 1rem;
  color: #D9A002;
  position: relative;
  transition: all 0.2s ease; }
  .way-box p:first-of-type {
    display: inline-block;
    width: 100%;
    max-width: 175px;
    position: relative;
    z-index: 1; }
    .way-box p:first-of-type::before {
      content: '';
      position: absolute;
      padding: 65%;
      top: -25%;
      left: -17.5%;
      background-image: url("../img/scribble.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -1;
      transition: all 0.2s ease; }
    .way-box p:first-of-type img {
      width: 100%;
      max-width: 175px;
      transition: all 0.2s ease; }
  .way-box p:last-of-type {
    margin-bottom: 0;
    font-size: 1.15rem; }
  .way-box:hover p:first-of-type::before {
    transform: rotate(5deg); }
  .way-box:hover p:first-of-type img {
    transform: rotate(-5deg); }

.testimonial-box {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: .5rem;
  filter: drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.15));
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  padding-top: 5.5rem;
  height: auto; }
  .testimonial-box .tb-logo {
    position: absolute;
    padding: 4.5rem;
    top: -3.5rem;
    left: calc(50% - 4.5rem); }
    .testimonial-box .tb-logo img {
      position: absolute;
      width: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .testimonial-box p {
    font-size: 1.2rem;
    line-height: normal; }
    .testimonial-box p:last-of-type {
      margin-bottom: 0; }
  .testimonial-box .tb-title {
    font-weight: 900;
    font-size: 1.4rem;
    color: #4C3C4F;
    text-align: center; }
  .testimonial-box .tb-author {
    font-size: 1rem;
    font-weight: 700;
    color: #FDBE0F;
    text-align: right; }

.customize-tabs {
  width: 100%; }
  .customize-tabs .tab {
    display: inline-block;
    position: relative;
    margin-right: 2rem;
    width: calc(40% - 2rem);
    height: 5rem;
    padding: 1rem 2rem;
    background-color: rgba(50, 50, 50, 0.75);
    color: #FFFFFF;
    opacity: .75;
    transition: opacity 0.2s ease;
    cursor: pointer;
    z-index: 1; }
    .customize-tabs .tab span {
      display: inline-block;
      line-height: 1; }
      .customize-tabs .tab span:first-of-type {
        width: 100%;
        font-size: 1rem;
        opacity: .5; }
      .customize-tabs .tab span:last-of-type {
        width: 100%;
        font-size: 1.2rem;
        font-weight: 900; }
    .customize-tabs .tab::after {
      content: "";
      position: absolute;
      width: 1rem;
      height: 100%;
      top: 0;
      left: 100%;
      border-left: 1rem solid rgba(50, 50, 50, 0.75);
      border-top: 2.5rem inset transparent;
      border-bottom: 2.5rem inset transparent;
      z-index: -1; }
    .customize-tabs .tab:nth-child(3) {
      width: calc(20% - 2rem);
      margin-right: 1rem; }
    .customize-tabs .tab:hover {
      opacity: .85; }
    .customize-tabs .tab.active {
      opacity: 1;
      background-color: rgba(14, 113, 184, 0.75); }
      .customize-tabs .tab.active::after {
        border-left: 1rem solid rgba(14, 113, 184, 0.75); }

#orderForm > div {
  transition: all 0.2s ease;
  opacity: 1; }

.extra-opts {
  position: relative;
  text-align: center;
  margin-bottom: 1rem; }
  .extra-opts .opt {
    position: relative;
    display: inline-block;
    width: calc(50% - 1rem);
    margin-right: 1rem; }
    .extra-opts .opt input[type="radio"] {
      display: inline-block;
      position: relative;
      -webkit-appearance: none;
      width: 0;
      height: 0;
      padding: calc(50% - .5rem);
      border: none;
      outline: none;
      cursor: pointer;
      margin: 0;
      transition: all .2s ease;
      border-radius: 100%;
      border: 0.25rem solid rgba(0, 0, 0, 0.1);
      overflow: hidden;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      overflow: hidden; }
      .extra-opts .opt input[type="radio"].logo_sting_yes {
        background-image: url("../img/logo-sting-yes.png?cb"); }
      .extra-opts .opt input[type="radio"].logo_sting_no {
        background-image: url("../img/logo-sting-no.png?cb"); }
      .extra-opts .opt input[type="radio"].captions_yes {
        background-image: url("../img/captions-yes.png?cb"); }
      .extra-opts .opt input[type="radio"].captions_no {
        background-image: url("../img/captions-no.png?cb"); }
      .extra-opts .opt input[type="radio"].end_screen_yes {
        background-image: url("../img/end-screen-yes.png?cb"); }
      .extra-opts .opt input[type="radio"].end_screen_no {
        background-image: url("../img/end-screen-no.png?cb"); }
      .extra-opts .opt input[type="radio"]::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 100%;
        border: 0.25rem solid rgba(14, 113, 184, 0.5);
        background-color: rgba(14, 113, 184, 0.5);
        transition: all 0.2s ease;
        opacity: 0; }
      .extra-opts .opt input[type="radio"]:hover {
        transform: scale(1.1); }
      .extra-opts .opt input[type="radio"]:hover, .extra-opts .opt input[type="radio"]:focus {
        outline: none; }
      .extra-opts .opt input[type="radio"]:checked::after {
        opacity: 1; }
    .extra-opts .opt .opt-label {
      display: inline-block;
      width: 100%;
      font-size: 1rem;
      font-weight: 900;
      line-height: normal; }
    .extra-opts .opt:last-of-type {
      margin-right: 0; }

.row .col-md-4:nth-of-type(even) .way-box p:first-of-type::before {
  background-image: url("../img/scribble-2.png"); }

.question-either-side {
  position: relative; }
  .question-either-side::before, .question-either-side::after {
    content: "\f059";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
    text-align: center;
    position: absolute;
    top: calc(50% - .7rem);
    opacity: .5; }
  .question-either-side::before {
    left: 0; }
  .question-either-side::after {
    right: 0; }

.bs-equal {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap; }

.discountExpiration {
  width: 620px;
  margin: 0 auto;
  margin-bottom: 1rem;
  padding-bottom: 1.4rem;
  pointer-events: none; }
  .discountExpiration .flip-clock-divider .flip-clock-label {
    font-family: "Lato", sans-serif;
    top: unset;
    bottom: -1.4rem;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 900; }
  .discountExpiration .flip-clock-divider.days .flip-clock-label {
    right: -5.75rem; }
  .discountExpiration .flip-clock-divider.hours .flip-clock-label {
    right: -6.1rem; }
  .discountExpiration .flip-clock-divider.minutes .flip-clock-label {
    right: -6.7rem; }
  .discountExpiration .flip-clock-divider.seconds .flip-clock-label {
    right: -6.8rem; }
  .discountExpiration .flip-clock-dot {
    background: #FFFFFF; }
  .discountExpiration ul li a div div.inn {
    color: #FFFFFF;
    background-color: #D2102F; }

.always-vertical-align {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row; }

.red-strike {
  position: relative;
  display: inline-block; }
  .red-strike::after {
    content: '';
    position: absolute;
    top: calc(50% - .125rem);
    left: -2.5%;
    width: 105%;
    height: .25rem;
    background-color: #D2102F;
    transform: rotate(-5deg); }

.counter-cont .counter-number {
  display: inline-block;
  width: 22.5%;
  max-width: 50px;
  margin-right: .5rem;
  margin-bottom: 0;
  position: relative; }
  .counter-cont .counter-number img {
    width: 100%;
    margin: 0; }
  .counter-cont .counter-number:last-of-type {
    margin-right: 0; }
  .counter-cont .counter-number::after {
    content: '';
    background-image: url("../img/numbers/flipping.gif");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: none; }
  .counter-cont .counter-number.in-view::after {
    opacity: 0; }
.counter-cont.big .counter-number {
  max-width: 100px;
  margin-right: 1rem; }
  .counter-cont.big .counter-number:last-of-type {
    margin-right: 0; }

.stats-table {
  width: 100%;
  opacity: .75; }
  .stats-table tr td {
    width: 33.333%;
    padding: 0 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    vertical-align: top; }
    .stats-table tr td p {
      line-height: 1; }
      .stats-table tr td p:first-of-type {
        font-size: 4rem;
        font-family: "Ubuntu", sans-serif;
        font-weight: 900;
        margin-bottom: .5rem; }
      .stats-table tr td p:last-of-type {
        margin-bottom: 0;
        font-size: 1rem; }
    .stats-table tr td:first-of-type {
      border-left: 0; }
    .stats-table tr td:last-of-type {
      border-right: 0; }

.review-box {
  background-color: #FFFFFF;
  color: #000000;
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.25);
  position: relative;
  margin: 1rem 0; }
  .review-box .sv-table {
    margin-bottom: 1rem; }
    .review-box .sv-table td {
      vertical-align: middle; }
      .review-box .sv-table td:first-of-type {
        width: 40px; }
        .review-box .sv-table td:first-of-type img {
          width: 100%;
          max-width: 40px; }
      .review-box .sv-table td:last-of-type {
        padding-left: 1rem; }
        .review-box .sv-table td:last-of-type p {
          margin: 0;
          font-size: 1rem;
          line-height: normal; }
          .review-box .sv-table td:last-of-type p span {
            font-size: .75rem;
            font-weight: bold;
            opacity: .8; }
          .review-box .sv-table td:last-of-type p i {
            color: #FE5E49; }
  .review-box .review-cont p {
    font-size: 1rem; }
    .review-box .review-cont p:last-of-type {
      margin-bottom: 0; }
  .review-box .review-icon {
    display: inline-flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1rem;
    height: 1rem; }
    .review-box .review-icon img {
      width: 100%;
      height: auto; }

.cute-animal {
  width: 100%;
  max-width: 750px;
  border-radius: .25rem;
  animation: wobble 1.5s linear infinite; }

@keyframes wobble {
  0% {
    transform: rotate(-0.5deg); }
  25% {
    transform: rotate(0.5deg); }
  50% {
    transform: rotate(-0.5deg); }
  75% {
    transform: rotate(0.5deg); }
  100% {
    transform: rotate(-0.5deg); } }
.admin-container {
  background-color: #F2F2F2;
  padding: 1rem;
  border-radius: .5rem;
  width: 100%; }
  .admin-container .admin-row {
    background-color: #FFFFFF;
    padding: .5rem;
    border-radius: .5rem;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden; }
    .admin-container .admin-row table {
      width: 100%; }
      .admin-container .admin-row table tr td {
        padding: .5rem;
        vertical-align: middle; }
        .admin-container .admin-row table tr td.a-icon {
          width: 2.4rem;
          text-align: center;
          font-size: 1rem;
          line-height: 1rem;
          transition: all 0.2s ease; }
          .admin-container .admin-row table tr td.a-icon i {
            transition: all 0.2s ease; }
            .admin-container .admin-row table tr td.a-icon i.fa-crown {
              color: #daa520; }
            .admin-container .admin-row table tr td.a-icon i.fa-grin-alt {
              color: #FDBE0F; }
            .admin-container .admin-row table tr td.a-icon i.fa-trash {
              color: #D2102F; }
              .admin-container .admin-row table tr td.a-icon i.fa-trash:hover {
                color: #A10C25; }
            .admin-container .admin-row table tr td.a-icon i.fa-edit {
              color: #FDBE0F; }
              .admin-container .admin-row table tr td.a-icon i.fa-edit:hover {
                color: #D9A002; }
            .admin-container .admin-row table tr td.a-icon i.fa-calendar-alt, .admin-container .admin-row table tr td.a-icon i.fa-calendar-plus {
              color: #4C3C4F; }
              .admin-container .admin-row table tr td.a-icon i.fa-calendar-alt:hover, .admin-container .admin-row table tr td.a-icon i.fa-calendar-plus:hover {
                color: #302531; }
        .admin-container .admin-row table tr td.timer-text {
          width: 10rem;
          text-align: center;
          font-family: monospace;
          font-size: 1rem; }
          .admin-container .admin-row table tr td.timer-text.complete {
            width: 22rem; }
    .admin-container .admin-row:last-of-type {
      margin-bottom: 0; }
    .admin-container .admin-row.btn-row {
      background-color: transparent;
      padding: 0;
      text-align: center; }
      .admin-container .admin-row.btn-row a {
        color: #4C3C4F;
        transition: all 0.2s ease;
        font-size: 1.4rem;
        line-height: 1.4rem; }
        .admin-container .admin-row.btn-row a:hover {
          color: #302531; }
    .admin-container .admin-row .timer-bar {
      overflow: hidden;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%; }
      .admin-container .admin-row .timer-bar .timer-bar-line {
        height: .25rem;
        background-color: #0E71B8;
        transition: all 0.2s ease; }
  .admin-container .calendar-key {
    text-align: center; }
    .admin-container .calendar-key span {
      padding: .25rem .5rem;
      margin: .2rem;
      color: #FFFFFF;
      border-radius: .25rem;
      cursor: pointer;
      opacity: 1;
      transition: all 0.2s ease;
      display: inline-block;
      white-space: nowrap; }
      .admin-container .calendar-key span.hidden {
        opacity: .25; }
  .admin-container .admin-calendar {
    width: 100%; }
    .admin-container .admin-calendar td {
      width: 14.2857%;
      padding: .25rem; }
      .admin-container .admin-calendar td .calendar-cell {
        position: relative;
        background-color: #FFFFFF;
        text-align: center;
        border: 1px solid rgba(0, 0, 0, 0.25);
        border-radius: .25rem;
        overflow: hidden; }
        .admin-container .admin-calendar td .calendar-cell .cal-head {
          background-color: #D2102F;
          color: #FFFFFF;
          font-size: .75rem;
          padding: .25rem;
          line-height: normal; }
          .admin-container .admin-calendar td .calendar-cell .cal-head span {
            text-transform: uppercase; }
          .admin-container .admin-calendar td .calendar-cell .cal-head strong {
            font-size: 1rem; }
        .admin-container .admin-calendar td .calendar-cell .cal-body {
          width: 100%;
          padding: .5rem;
          padding-bottom: 1.5rem;
          min-height: 10vh; }
          .admin-container .admin-calendar td .calendar-cell .cal-body .booking-btn {
            width: 100%;
            padding: .25rem;
            margin-bottom: .25rem;
            border-radius: .25rem;
            display: inline-block;
            font-size: .75rem;
            line-height: .75rem;
            color: #FFFFFF;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; }
          .admin-container .admin-calendar td .calendar-cell .cal-body .add-btn {
            width: 100%;
            text-align: center;
            display: inline-block;
            position: absolute;
            bottom: 0;
            left: 0;
            font-size: 1rem;
            line-height: 1rem;
            padding: .25rem;
            color: rgba(0, 0, 0, 0.25);
            transition: all 0.2s ease; }
            .admin-container .admin-calendar td .calendar-cell .cal-body .add-btn:hover {
              color: rgba(0, 0, 0, 0.5); }
        .admin-container .admin-calendar td .calendar-cell.not-this-month {
          opacity: .5;
          pointer-events: none; }
          .admin-container .admin-calendar td .calendar-cell.not-this-month .cal-body .add-btn {
            display: none; }

body.admin-page p {
  font-size: inherit; }
body.admin-page .input-group.date .input-group-addon {
  background-color: #FDBE0F;
  color: #FFFFFF; }
body.admin-page .bootstrap-datetimepicker-widget {
  width: 100% !important; }

.mapboxgl-marker {
  cursor: pointer;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat; }
  .mapboxgl-marker::after {
    content: '';
    position: absolute;
    bottom: calc(100% + .25rem);
    left: 25%;
    width: 50%;
    padding: .5rem;
    background-image: url(../img/down-arrow.gif);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.2s ease; }
  .mapboxgl-marker.point-at-me {
    z-index: 999; }
    .mapboxgl-marker.point-at-me::after {
      opacity: 1; }

.mapboxgl-popup-content {
  padding: .5rem !important;
  background-color: rgba(255, 255, 255, 0.75) !important; }

.filter-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background-color: #F2F2F2;
  padding: 1rem;
  z-index: 999;
  transition: all 0.2s ease;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.25); }
  .filter-container .filter-close {
    position: absolute;
    top: .5rem;
    right: 1rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 900;
    transition: all 0.2s ease;
    color: rgba(0, 0, 0, 0.25);
    cursor: pointer; }
    .filter-container .filter-close:hover {
      color: rgba(0, 0, 0, 0.5); }
  .filter-container.hidden {
    width: 0%;
    padding: 1rem 0; }

.filter-bar {
  display: flex; }
  .filter-bar .search-container {
    position: relative;
    width: 100%; }
    .filter-bar .search-container input {
      width: 100%;
      padding: .5rem 1rem;
      border-radius: .5rem;
      border: 1px solid rgba(0, 0, 0, 0.25); }
    .filter-bar .search-container::after {
      content: "\f002";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      font-size: 1.5rem;
      line-height: 1.5rem;
      top: calc(50% - .75rem);
      right: 1rem;
      color: rgba(0, 0, 0, 0.25); }
  .filter-bar .filter-btn-container {
    position: relative; }
    .filter-bar .filter-btn-container .filter-btn {
      position: relative;
      width: 4rem;
      padding: .5rem;
      height: 100%;
      text-align: center;
      cursor: pointer; }
      .filter-bar .filter-btn-container .filter-btn::after {
        content: "\f0b0";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        font-size: 1.5rem;
        line-height: 1.5rem;
        top: calc(50% - .75rem);
        left: calc(50% - .75rem);
        color: rgba(0, 0, 0, 0.25);
        transition: all 0.2s ease; }
      .filter-bar .filter-btn-container .filter-btn:hover::after, .filter-bar .filter-btn-container .filter-btn.active::after {
        color: rgba(0, 0, 0, 0.5); }

@media screen and (max-width: 767px) {
  .discountExpiration {
    width: 66vw;
    max-width: 100%;
    padding-bottom: 3vw; }
    .discountExpiration ul {
      width: 6vw;
      padding: 0;
      height: 9vw;
      line-height: 9vw; }
      .discountExpiration ul li {
        line-height: unset; }
        .discountExpiration ul li a div.up:after {
          top: 4.9vw; }
        .discountExpiration ul li a div div.inn {
          font-size: 8vw; }
    .discountExpiration .flip-clock-divider {
      height: 9vw;
      width: 1vw; }
      .discountExpiration .flip-clock-divider:first-child {
        width: 0; }
      .discountExpiration .flip-clock-divider .flip-clock-label {
        bottom: -4.5vw;
        font-size: 2.5vw; }
      .discountExpiration .flip-clock-divider.days .flip-clock-label {
        right: -11.4vw; }
      .discountExpiration .flip-clock-divider.hours .flip-clock-label {
        right: -11.7vw; }
      .discountExpiration .flip-clock-divider.minutes .flip-clock-label {
        right: -12vw; }
      .discountExpiration .flip-clock-divider.seconds .flip-clock-label {
        right: -12.3vw; }
    .discountExpiration .flip-clock-dot {
      height: .8vw;
      width: .8vw;
      left: .1vw; }
      .discountExpiration .flip-clock-dot.top {
        top: 4vw; }
      .discountExpiration .flip-clock-dot.bottom {
        bottom: 2vw; } }
@media screen and (max-width: 543px) {
  .discountExpiration {
    width: 69vw;
    padding-bottom: 3vw; }
    .discountExpiration ul {
      margin: 2px;
      width: 7vw; }
    .discountExpiration .flip-clock-divider .flip-clock-label {
      bottom: -5vw;
      font-size: 2.75vw; }
    .discountExpiration .flip-clock-divider.days .flip-clock-label {
      right: -11.25vw; }
    .discountExpiration .flip-clock-divider.hours .flip-clock-label {
      right: -12vw; }
    .discountExpiration .flip-clock-divider.minutes .flip-clock-label {
      right: -13vw; }
    .discountExpiration .flip-clock-divider.seconds .flip-clock-label {
      right: -13.5vw; } }
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-5ths {
  width: 20%;
  float: left; }

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left; }

  .lg-vertical-align {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; }

  .lg-show {
    display: none !important; } }
@media (max-width: 992px) {
  .lg-mb-1rem {
    margin-bottom: 1rem !important; }

  .lg-text-center {
    text-align: center !important; }

  .lg-hide {
    display: none !important; } }
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left; } }
@media (min-width: 544px) {
  .bsmshow {
    display: none; }

  .bsdtcenter {
    text-align: center; }

  .bsdtright {
    text-align: right; }

  .bsdtleft {
    text-align: right; }

  .vertical-align {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; }

  .bottom-align {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: row; }

  .top-align {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row; } }
@media (max-width: 544px) {
  .bsmhide {
    display: none; }

  .bsmtcenter {
    text-align: center; }

  .bsmtright {
    text-align: right; }

  .bsmtleft {
    text-align: right; }

  .vertical-align {
    display: inherit; } }
@media (min-width: 62em) {
  .meet-aaron-image-p {
    float: right;
    margin-left: 1rem; }

  .mshow {
    display: none; }

  .mob-text-helper {
    display: none; }

  .desk-font-x0-05 {
    font-size: 5%; }

  .desk-font-x0-1 {
    font-size: 10%; }

  .desk-font-x0-15 {
    font-size: 15%; }

  .desk-font-x0-2 {
    font-size: 20%; }

  .desk-font-x0-25 {
    font-size: 25%; }

  .desk-font-x0-3 {
    font-size: 30%; }

  .desk-font-x0-35 {
    font-size: 35%; }

  .desk-font-x0-4 {
    font-size: 40%; }

  .desk-font-x0-45 {
    font-size: 45%; }

  .desk-font-x0-5 {
    font-size: 50%; }

  .desk-font-x0-55 {
    font-size: 55%; }

  .desk-font-x0-6 {
    font-size: 60%; }

  .desk-font-x0-65 {
    font-size: 65%; }

  .desk-font-x0-7 {
    font-size: 70%; }

  .desk-font-x0-75 {
    font-size: 75%; }

  .desk-font-x0-8 {
    font-size: 80%; }

  .desk-font-x0-85 {
    font-size: 85%; }

  .desk-font-x0-9 {
    font-size: 90%; }

  .desk-font-x0-95 {
    font-size: 95%; }

  .desk-font-x1 {
    font-size: 100%; }

  .desk-font-x1-05 {
    font-size: 105%; }

  .desk-font-x1-1 {
    font-size: 110%; }

  .desk-font-x1-15 {
    font-size: 115%; }

  .desk-font-x1-2 {
    font-size: 120%; }

  .desk-font-x1-25 {
    font-size: 125%; }

  .desk-font-x1-3 {
    font-size: 130%; }

  .desk-font-x1-35 {
    font-size: 135%; }

  .desk-font-x1-4 {
    font-size: 140%; }

  .desk-font-x1-45 {
    font-size: 145%; }

  .desk-font-x1-5 {
    font-size: 150%; }

  .desk-font-x1-55 {
    font-size: 155%; }

  .desk-font-x1-6 {
    font-size: 160%; }

  .desk-font-x1-65 {
    font-size: 165%; }

  .desk-font-x1-7 {
    font-size: 170%; }

  .desk-font-x1-75 {
    font-size: 175%; }

  .desk-font-x1-8 {
    font-size: 180%; }

  .desk-font-x1-85 {
    font-size: 185%; }

  .desk-font-x1-9 {
    font-size: 190%; }

  .desk-font-x1-95 {
    font-size: 195%; }

  .desk-font-x2 {
    font-size: 200%; }

  .desk-font-x2-05 {
    font-size: 205%; }

  .desk-font-x2-1 {
    font-size: 210%; }

  .desk-font-x2-15 {
    font-size: 215%; }

  .desk-font-x2-2 {
    font-size: 220%; }

  .desk-font-x2-25 {
    font-size: 225%; }

  .desk-font-x2-3 {
    font-size: 230%; }

  .desk-font-x2-35 {
    font-size: 235%; }

  .desk-font-x2-4 {
    font-size: 240%; }

  .desk-font-x2-45 {
    font-size: 245%; }

  .desk-font-x2-5 {
    font-size: 250%; }

  .desk-font-x2-55 {
    font-size: 255%; }

  .desk-font-x2-6 {
    font-size: 260%; }

  .desk-font-x2-65 {
    font-size: 265%; }

  .desk-font-x2-7 {
    font-size: 270%; }

  .desk-font-x2-75 {
    font-size: 275%; }

  .desk-font-x2-8 {
    font-size: 280%; }

  .desk-font-x2-85 {
    font-size: 285%; }

  .desk-font-x2-9 {
    font-size: 290%; }

  .desk-font-x2-95 {
    font-size: 295%; }

  .desk-font-x3 {
    font-size: 300%; }

  .desk-font-x3-05 {
    font-size: 305%; }

  .desk-font-x3-1 {
    font-size: 310%; }

  .desk-font-x3-15 {
    font-size: 315%; }

  .desk-font-x3-2 {
    font-size: 320%; }

  .desk-font-x3-25 {
    font-size: 325%; }

  .desk-font-x3-3 {
    font-size: 330%; }

  .desk-font-x3-35 {
    font-size: 335%; }

  .desk-font-x3-4 {
    font-size: 340%; }

  .desk-font-x3-45 {
    font-size: 345%; }

  .desk-font-x3-5 {
    font-size: 350%; }

  .desk-font-x3-55 {
    font-size: 355%; }

  .desk-font-x3-6 {
    font-size: 360%; }

  .desk-font-x3-65 {
    font-size: 365%; }

  .desk-font-x3-7 {
    font-size: 370%; }

  .desk-font-x3-75 {
    font-size: 375%; }

  .desk-font-x3-8 {
    font-size: 380%; }

  .desk-font-x3-85 {
    font-size: 385%; }

  .desk-font-x3-9 {
    font-size: 390%; }

  .desk-font-x3-95 {
    font-size: 395%; }

  .desk-font-x4 {
    font-size: 400%; }

  .desk-font-x4-05 {
    font-size: 405%; }

  .desk-font-x4-1 {
    font-size: 410%; }

  .desk-font-x4-15 {
    font-size: 415%; }

  .desk-font-x4-2 {
    font-size: 420%; }

  .desk-font-x4-25 {
    font-size: 425%; }

  .desk-font-x4-3 {
    font-size: 430%; }

  .desk-font-x4-35 {
    font-size: 435%; }

  .desk-font-x4-4 {
    font-size: 440%; }

  .desk-font-x4-45 {
    font-size: 445%; }

  .desk-font-x4-5 {
    font-size: 450%; }

  .desk-font-x4-55 {
    font-size: 455%; }

  .desk-font-x4-6 {
    font-size: 460%; }

  .desk-font-x4-65 {
    font-size: 465%; }

  .desk-font-x4-7 {
    font-size: 470%; }

  .desk-font-x4-75 {
    font-size: 475%; }

  .desk-font-x4-8 {
    font-size: 480%; }

  .desk-font-x4-85 {
    font-size: 485%; }

  .desk-font-x4-9 {
    font-size: 490%; }

  .desk-font-x4-95 {
    font-size: 495%; }

  .desk-font-x5 {
    font-size: 500%; }

  .desk-pt-15 {
    padding-top: 15px; }

  .desk-pb-15 {
    padding-bottom: 15px; }

  .desk-minh-100vh {
    min-height: 100vh; } }
@media (max-width: 62em) {
  .filter-container {
    width: 100%;
    border-right: 0; }

  .admin-container .admin-row table tr td {
    display: inline-grid; }
    .admin-container .admin-row table tr td.busname {
      width: calc(100% - 3rem); }
      .admin-container .admin-row table tr td.busname strong {
        display: block;
        width: 100%; }
  .admin-container .admin-calendar td {
    display: block;
    width: 100%; }
    .admin-container .admin-calendar td .calendar-cell.not-this-month {
      display: none; }

  .stats-table tr td {
    vertical-align: middle; }
    .stats-table tr td p:first-of-type {
      font-size: 2rem;
      margin-bottom: .25rem; }
    .stats-table tr td p:last-of-type {
      font-size: .6rem; }

  .timer-table {
    display: table;
    margin: 0 auto !important; }

  .alt-hiw-table td:first-of-type {
    width: 30%; }

  .sv-nav:not(.mob-deny) {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 100%;
    background: linear-gradient(to bottom, rgba(253, 190, 15, 0.9), rgba(254, 204, 23, 0.9));
    border: 1px solid #FFFFFF;
    border-radius: .5rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease; }
    .sv-nav:not(.mob-deny).active {
      opacity: 1;
      pointer-events: all; }
    .sv-nav:not(.mob-deny) li {
      display: block;
      width: 100%;
      padding: 1rem .5rem;
      margin: 0;
      text-align: center;
      border: none;
      border-bottom: 1px solid #FFFFFF;
      transition: all 0.2s ease; }
      .sv-nav:not(.mob-deny) li:hover {
        background-color: rgba(0, 0, 0, 0.25); }
      .sv-nav:not(.mob-deny) li.mshow {
        display: block; }

  .customize-tabs {
    display: flex;
    justify-content: center; }
    .customize-tabs .tab {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      width: calc(33.33% - 1.25rem) !important;
      margin-right: 1.25rem !important;
      padding: .5rem; }
      .customize-tabs .tab span:first-of-type {
        font-size: .8rem; }
      .customize-tabs .tab span:last-of-type {
        font-size: 1rem; }

  .hiw-table td {
    padding: 0; }
    .hiw-table td .hiw-bubble .sbubble, .hiw-table td .hiw-bubble img {
      display: none; }
    .hiw-table td .hiw-bubble .snum {
      left: calc(50% - 1.5rem); }
    .hiw-table td .hiw-bubble .stitle {
      font-size: .75rem;
      padding-top: 3.5rem; }
    .hiw-table td .hiw-bubble::after {
      top: calc(50% - 1.25rem);
      right: -0.4rem;
      width: .75rem;
      height: .25rem; }

  .solid-btn {
    font-size: 1rem;
    padding: .5rem !important; }
    .solid-btn.sb-big {
      font-size: 1.2rem;
      padding: .75rem !important; }

  .sv-button {
    font-size: 0.8rem;
    padding: 15px 5px;
    font-weight: 800;
    border-radius: 10px; }
    .sv-button.small {
      width: 100%;
      margin: .5rem 0; }
    .sv-button::after {
      border-radius: 10px; }

  .sv-navbar {
    padding: 10px 0; }
    .sv-navbar img {
      max-height: 50px !important; }

  .mhide {
    display: none; }

  .text-helper {
    display: none; }

  .sv-footer .col-sm-6 {
    text-align: left !important; }

  .yithss {
    font-size: 120%; }

  .hello-bar {
    height: auto; }

  .mob-hundred {
    width: calc(100% - 20px) !important;
    margin: 10px !important; }

  .mobsmaller {
    font-size: 85%; }

  .mobbigger {
    font-size: 125%; }

  .mob-text-center {
    text-align: center !important; }

  .mob-text-right {
    text-align: right !important; }

  .mob-text-left {
    text-align: left !important; }

  .mob-display-block {
    display: block; }

  .mob-full-width {
    width: 100% !important; }

  .mob-font-x0-05 {
    font-size: 5%; }

  .mob-font-x0-1 {
    font-size: 10%; }

  .mob-font-x0-15 {
    font-size: 15%; }

  .mob-font-x0-2 {
    font-size: 20%; }

  .mob-font-x0-25 {
    font-size: 25%; }

  .mob-font-x0-3 {
    font-size: 30%; }

  .mob-font-x0-35 {
    font-size: 35%; }

  .mob-font-x0-4 {
    font-size: 40%; }

  .mob-font-x0-45 {
    font-size: 45%; }

  .mob-font-x0-5 {
    font-size: 50%; }

  .mob-font-x0-55 {
    font-size: 55%; }

  .mob-font-x0-6 {
    font-size: 60%; }

  .mob-font-x0-65 {
    font-size: 65%; }

  .mob-font-x0-7 {
    font-size: 70%; }

  .mob-font-x0-75 {
    font-size: 75%; }

  .mob-font-x0-8 {
    font-size: 80%; }

  .mob-font-x0-85 {
    font-size: 85%; }

  .mob-font-x0-9 {
    font-size: 90%; }

  .mob-font-x0-95 {
    font-size: 95%; }

  .mob-font-x1 {
    font-size: 100%; }

  .mob-font-x1-05 {
    font-size: 105%; }

  .mob-font-x1-1 {
    font-size: 110%; }

  .mob-font-x1-15 {
    font-size: 115%; }

  .mob-font-x1-2 {
    font-size: 120%; }

  .mob-font-x1-25 {
    font-size: 125%; }

  .mob-font-x1-3 {
    font-size: 130%; }

  .mob-font-x1-35 {
    font-size: 135%; }

  .mob-font-x1-4 {
    font-size: 140%; }

  .mob-font-x1-45 {
    font-size: 145%; }

  .mob-font-x1-5 {
    font-size: 150%; }

  .mob-font-x1-55 {
    font-size: 155%; }

  .mob-font-x1-6 {
    font-size: 160%; }

  .mob-font-x1-65 {
    font-size: 165%; }

  .mob-font-x1-7 {
    font-size: 170%; }

  .mob-font-x1-75 {
    font-size: 175%; }

  .mob-font-x1-8 {
    font-size: 180%; }

  .mob-font-x1-85 {
    font-size: 185%; }

  .mob-font-x1-9 {
    font-size: 190%; }

  .mob-font-x1-95 {
    font-size: 195%; }

  .mob-font-x2 {
    font-size: 200%; }

  .mob-font-x2-05 {
    font-size: 205%; }

  .mob-font-x2-1 {
    font-size: 210%; }

  .mob-font-x2-15 {
    font-size: 215%; }

  .mob-font-x2-2 {
    font-size: 220%; }

  .mob-font-x2-25 {
    font-size: 225%; }

  .mob-font-x2-3 {
    font-size: 230%; }

  .mob-font-x2-35 {
    font-size: 235%; }

  .mob-font-x2-4 {
    font-size: 240%; }

  .mob-font-x2-45 {
    font-size: 245%; }

  .mob-font-x2-5 {
    font-size: 250%; }

  .mob-font-x2-55 {
    font-size: 255%; }

  .mob-font-x2-6 {
    font-size: 260%; }

  .mob-font-x2-65 {
    font-size: 265%; }

  .mob-font-x2-7 {
    font-size: 270%; }

  .mob-font-x2-75 {
    font-size: 275%; }

  .mob-font-x2-8 {
    font-size: 280%; }

  .mob-font-x2-85 {
    font-size: 285%; }

  .mob-font-x2-9 {
    font-size: 290%; }

  .mob-font-x2-95 {
    font-size: 295%; }

  .mob-font-x3 {
    font-size: 300%; }

  .mob-font-x3-05 {
    font-size: 305%; }

  .mob-font-x3-1 {
    font-size: 310%; }

  .mob-font-x3-15 {
    font-size: 315%; }

  .mob-font-x3-2 {
    font-size: 320%; }

  .mob-font-x3-25 {
    font-size: 325%; }

  .mob-font-x3-3 {
    font-size: 330%; }

  .mob-font-x3-35 {
    font-size: 335%; }

  .mob-font-x3-4 {
    font-size: 340%; }

  .mob-font-x3-45 {
    font-size: 345%; }

  .mob-font-x3-5 {
    font-size: 350%; }

  .mob-font-x3-55 {
    font-size: 355%; }

  .mob-font-x3-6 {
    font-size: 360%; }

  .mob-font-x3-65 {
    font-size: 365%; }

  .mob-font-x3-7 {
    font-size: 370%; }

  .mob-font-x3-75 {
    font-size: 375%; }

  .mob-font-x3-8 {
    font-size: 380%; }

  .mob-font-x3-85 {
    font-size: 385%; }

  .mob-font-x3-9 {
    font-size: 390%; }

  .mob-font-x3-95 {
    font-size: 395%; }

  .mob-font-x4 {
    font-size: 400%; }

  .mob-font-x4-05 {
    font-size: 405%; }

  .mob-font-x4-1 {
    font-size: 410%; }

  .mob-font-x4-15 {
    font-size: 415%; }

  .mob-font-x4-2 {
    font-size: 420%; }

  .mob-font-x4-25 {
    font-size: 425%; }

  .mob-font-x4-3 {
    font-size: 430%; }

  .mob-font-x4-35 {
    font-size: 435%; }

  .mob-font-x4-4 {
    font-size: 440%; }

  .mob-font-x4-45 {
    font-size: 445%; }

  .mob-font-x4-5 {
    font-size: 450%; }

  .mob-font-x4-55 {
    font-size: 455%; }

  .mob-font-x4-6 {
    font-size: 460%; }

  .mob-font-x4-65 {
    font-size: 465%; }

  .mob-font-x4-7 {
    font-size: 470%; }

  .mob-font-x4-75 {
    font-size: 475%; }

  .mob-font-x4-8 {
    font-size: 480%; }

  .mob-font-x4-85 {
    font-size: 485%; }

  .mob-font-x4-9 {
    font-size: 490%; }

  .mob-font-x4-95 {
    font-size: 495%; }

  .mob-font-x5 {
    font-size: 500%; }

  .mob-padding-1rem {
    padding: 1rem !important; }

  .mob-padding-0 {
    padding: 0 !important; }

  .mob-margin-0 {
    margin: 0 !important; }

  .mob-mb-1rem {
    margin-bottom: 1rem !important; }

  .mob-mb-2rem {
    margin-bottom: 2rem !important; }

  ol {
    padding-left: 25px; }
    ol li {
      font-size: 88%; } }
@media (max-width: 36em) {
  .h1 {
    font-size: 1.8rem; }

  h1 {
    font-size: 1.8rem; }

  .h2 {
    font-size: 1.22rem; }

  h2 {
    font-size: 1.22rem; }

  .h2-size {
    font-size: 1.22rem !important; }

  .h4 {
    font-size: 1rem; }

  h4 {
    font-size: 1rem; }

  .p-style {
    margin-bottom: 0.8rem !important; }

  .p {
    font-size: 1rem;
    margin-bottom: 1.5rem; }

  p {
    font-size: 1rem;
    margin-bottom: 0.8rem; }

  ul, ol {
    font-size: 1rem; } }
.checkout-page .checkout-input label {
  display: inline-block;
  margin-bottom: .25rem;
  width: 100%; }
.checkout-page .checkout-input input, .checkout-page .checkout-input textarea, .checkout-page .checkout-input select {
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
  padding: .5rem;
  border-radius: .25rem;
  border: 1px solid #D5D5D5;
  background-color: #FFFFFF; }
.checkout-page .checkout-summary {
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
  border-radius: .25rem;
  border: 2px solid #D5D5D5;
  background-color: #FFFFFF; }
.checkout-page .checkout-checkbox {
  position: relative;
  margin-bottom: 20px; }
  .checkout-page .checkout-checkbox input[type="checkbox"] {
    opacity: 0;
    display: none; }
  .checkout-page .checkout-checkbox label {
    position: relative;
    cursor: pointer;
    font-weight: 400;
    margin: 0;
    color: #373f47;
    font-size: 14px;
    padding-left: 25px; }
    .checkout-page .checkout-checkbox label:before {
      border: 1px solid #748493;
      border-radius: 2px;
      content: "";
      width: 15px;
      height: 15px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
      cursor: pointer;
      color: #373f47;
      position: absolute;
      top: calc(50% - 7.5px);
      left: 0; }
    .checkout-page .checkout-checkbox label:after {
      position: absolute;
      border-left: 2px solid #FDBE0F;
      border-bottom: 2px solid #FDBE0F;
      content: "";
      width: 8px;
      height: 4px;
      transform: rotate(-45deg);
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
      left: 4px;
      top: calc(50% - 2.5px); }
.checkout-page #accept-terms ~ label:after {
  transform: scale(0) rotate(-45deg);
  transition: transform 0.1s ease; }
.checkout-page #accept-terms:checked ~ label:after {
  transform: scale(1) rotate(-45deg) !important; }

#loading-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  opacity: 1;
  transition: all 0.2s ease;
  z-index: 100; }
  #loading-loader .loader {
    position: absolute;
    left: calc(50% - 22.5px);
    top: calc(50% - 22.5px);
    z-index: 1;
    width: 200px;
    height: 200px;
    max-width: 90vw;
    margin: -75px 0 0 -75px;
    -webkit-animation: wiggle 1s linear infinite;
    animation: wiggle 1s linear infinite; }
    #loading-loader .loader img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

#checkout-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 100; }
  #checkout-loader .loader {
    position: absolute;
    left: calc(50% - 22.5px);
    top: calc(50% - 22.5px);
    z-index: 1;
    width: 200px;
    height: 200px;
    max-width: 90vw;
    margin: -75px 0 0 -75px;
    -webkit-animation: wiggle 1s linear infinite;
    animation: wiggle 1s linear infinite; }
    #checkout-loader .loader img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #checkout-loader .loader::after {
      content: "Processing your purchase!";
      display: inline-block;
      position: absolute;
      bottom: -2rem;
      color: #FFED00;
      left: -50%;
      width: 200%;
      text-align: center;
      font-size: 1rem;
      font-weight: 900; }

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(5deg); }
  10% {
    -webkit-transform: rotate(-5deg); }
  20%, 80% {
    -webkit-transform: rotate(0deg); }
  90% {
    -webkit-transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(5deg); } }
@keyframes wiggle {
  0% {
    transform: rotate(5deg); }
  10% {
    transform: rotate(-5deg); }
  20%, 80% {
    transform: rotate(0deg); }
  90% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(5deg); } }
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
