﻿/**
* Theme Name: 
* Theme URI: 
* Author: My Brother Darryl
* Author URI: http://www.mybrotherdarryl.com
* Version: 0.0.1
* License: Attribution-NonCommercial-NoDerivatives 4.0 International
* 
* This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
*/
/*--------------------------------
RESET CLASSES
--------------------------------*/
/*--------------------------------
VARIABLES
--------------------------------*/
/************ CONTAINER DEBUGGER *************/
/* {
  outline: 1px solid red;
}*/
/************** COLORS ******************************/
/**FORM COLORS**/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100..900&display=swap");
.black {
  color: #0A0A0A;
}

.white {
  color: white;
}

.warning {
  color: #990000;
}

.teal {
  color: #98D4C3;
}

.red {
  color: #CC0000;
}

.grey {
  color: #4c4c4c;
}

.rblue {
  color: #0076CF;
}

.orange {
  color: #D88000;
}

.dkgrey {
  color: #222222;
}

.dkgreybkg {
  background-color: #222222;
}

.yellow {
  color: #F9DF42;
}

.yellowbkg {
  background-color: #F9DF42;
}

/************** FONTS ******************************/
.primaryfont {
  font-family: "Noto Sans", sans-serif;
}

.secondaryfont {
  font-family: "Noto Sans", sans-serif;
}

.thirdfont {
  font-family: "Noto Sans", sans-serif;
}

.noto-sans {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fontWeightLt, .fw-light {
  font-weight: 200;
}

.fontWeightReg, .fw-reg {
  font-weight: 400;
}

.fontWeightMed, .fw-med {
  font-weight: 500;
}

.fontWeightSemiBold, .fw-semibold {
  font-weight: 600;
}

.fontWeightBold, .fw-bold {
  font-weight: 700;
}

.fontWeightExtraBold, .fw-exbold {
  font-weight: 800;
}

.fontWeightBlack, .fw-black {
  font-weight: 900;
}

.text-shadow {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

h1.fs-24 {
  font-size: 1.5rem;
  line-height: 30px;
}

h1.fs-24-2 {
  font-size: 1.5rem;
  line-height: 30px;
}
@media screen and (max-width: 1200px) and (min-width: 1000px) {
  h1.fs-24-2 {
    font-size: 1.125rem;
    line-height: 22.5px;
  }
}
@media screen and (max-width: 999px) and (min-width: 690px) {
  h1.fs-24-2 {
    font-size: 1.05rem;
    line-height: 21px;
  }
}
@media screen and (max-width: 689px) {
  h1.fs-24-2 {
    font-size: 0.975rem;
    line-height: 19.5px;
  }
}

h2.fs-34 {
  font-size: 2.125rem;
  line-height: 44px;
}

.fs-38 {
  font-size: 2.375rem;
}
@media screen and (max-width: 768px) {
  .fs-38 {
    font-size: 2rem;
  }
}

.fs-37 {
  font-size: 2.313rem;
}
@media screen and (max-width: 768px) {
  .fs-37 {
    font-size: 1.6rem;
  }
}

.fs-25 {
  font-size: 1.563rem;
}
@media screen and (max-width: 768px) and (min-width: 577px) {
  .fs-25 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 576px) {
  .fs-25 {
    font-size: 1.04rem;
    line-height: 1.5;
  }
}

.fs-15 {
  font-size: 0.938rem;
}

label .nbh {
  position: relative;
  top: -0.15rem;
}

/************** DEVICE BREAKS ******************************/
/************************************/
/*
  Use by calling:
  @include respond-to('small') {...

  Result:
  @media (min-width: 767px) {.....
*/
/************************************/
/************************************/
/*Device Break Mixin setup*/
/*
  Use by calling:
  @include min-width(768) {
    display: flex;
  }
*/
/************************************/
@media screen and (min-width: 992px) {
  .retna {
    display: block;
  }
  .regsize {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .retna {
    display: none;
  }
  .regsize {
    display: block;
  }
}
/**************** PADDING ***************/
.pl-40 {
  padding-left: 40px;
}

sup {
  font-size: 65%;
}

@media screen and (max-width: 576px) {
  .hideonsmall {
    display: none;
  }
  .showonsmall {
    display: inline;
  }
}
@media screen and (min-width: 577px) {
  .hideonsmall {
    display: inline;
  }
  .showonsmall {
    display: none;
  }
}
/*--------------------------------
PRIMARY LAYOUT STYLES
--------------------------------*/
*, *::after, *::before {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.8rem;
  font-family: "Noto Sans", sans-serif;
  background-color: #142765;
  background-image: url(../images/background.webp);
  background-position: bottom 100px center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) and (min-width: 767px) {
  body {
    background-size: 1200px auto;
  }
}
@media screen and (max-width: 767px) and (min-width: 451px) {
  body {
    background-size: 780px auto;
    background-position: bottom 200px center;
  }
}
@media screen and (max-width: 450px) {
  body {
    background-size: 780px auto;
    background-position: bottom 400px center;
  }
}
body .video-container {
  background-color: #142765;
}
@media screen and (max-width: 768px) {
  body .privacypg p,
  body .privacypg ol li {
    font-size: 14px !important;
    line-height: 1.4rem;
  }
}
body.noBkgImg {
  background-image: none;
  background: linear-gradient(to bottom, #1d87c7 0%, #f2f4f5 100%);
}
body p {
  font-size: 16px;
  line-height: 1.8rem;
  font-family: "Noto Sans", sans-serif;
  color: #222222;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Noto Sans", sans-serif;
  color: #222222;
}
body #main {
  position: relative;
  z-index: 10;
}

ol {
  margin-bottom: -28px;
}
ol li {
  margin-bottom: 28px;
}

a {
  cursor: pointer;
  color: #0A0A0A;
  text-decoration: underline;
}
a:hover, a:focus {
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #000000;
}
a.no-underline {
  text-decoration: none;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover, a.underline:focus {
  color: #0076CF;
  text-decoration: none;
  border: 2px solid #0076CF;
}

.customBirthdateRow .col-third {
  flex: 0 0 auto;
  width: 30%;
}
.customBirthdateRow .col-third .form-group-default {
  padding: 3px 0 10px 0;
}
.customBirthdateRow .col-fourth {
  flex: 0 0 auto;
  width: 40%;
}
.customBirthdateRow .col-fourth .form-group-default {
  padding: 3px 0 10px 0;
}

img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.winLockup {
  width: 856px;
  max-width: 100%;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.prizeImg {
  width: 1076px;
  max-width: 100%;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.productImg {
  width: 1076px;
  max-width: 100%;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.whitebox {
  border-radius: 5px;
  background-color: white;
  padding: 36px;
}
@media only screen and (min-width: 1425px) {
  .whitebox {
    padding: 49.8px;
  }
}
@media only screen and (min-width: 1000px) {
  .whitebox {
    padding: calc((100vw - 180px) * 0.04);
  }
}
@media screen and (max-width: 992px) {
  .whitebox {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 690px) {
  .whitebox {
    padding: 22px;
    margin-top: 30px;
  }
}

.modal-header {
  border-bottom: 0px;
}

.modal-header .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height / width = 315 / 560 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------
SAPPORO Pre-Header style
--------------------------------*/
.preheader {
  background-color: #000000;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.14), 0 18px 40px rgba(0, 0, 0, 0.045);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0;
  height: 80px;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
}
.preheader nav {
  height: 80px;
}
.preheader.small-nav {
  transition: box-shadow 0.42s ease, opacity 0.3s ease;
  height: 63px;
}
@media screen and (max-width: 1199px) {
  .preheader.small-nav {
    padding: 12px 0;
  }
}
.preheader.small-nav nav {
  height: 63px;
}
@media screen and (max-width: 1199px) {
  .preheader.small-nav nav {
    height: 41px;
  }
}
.preheader .row > * {
  width: auto;
  max-width: unset;
}
.preheader ul {
  margin-bottom: 0px;
}
.preheader ul li {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  list-style: none;
  margin: 0 16px;
  padding: 0;
}
.preheader ul li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  border: 0px solid rgba(0, 0, 0, 0);
  line-height: 50px;
  padding: 0px;
  font-weight: 700;
  transition: color 0.2s ease;
  overflow: visible;
  display: block;
}
.preheader ul li a span.menu-title-text {
  position: relative;
}
.preheader ul li a span.menu-title-text:after {
  position: absolute;
  display: block;
  bottom: -6px;
  left: 0;
  width: 0%;
  content: "";
  padding-bottom: inherit;
  border-top: 2px solid #febe50;
  backface-visibility: hidden;
  transition: transform 0.3s ease-out, border-color 0.3s ease-out;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.preheader ul li a:focus, .preheader ul li a:hover, .preheader ul li a:focus-visible:not(.igLink) {
  border: 0px solid white;
  overflow: visible;
  outline: none;
}
.preheader ul li a:focus span.menu-title-text, .preheader ul li a:hover span.menu-title-text, .preheader ul li a:focus-visible:not(.igLink) span.menu-title-text {
  position: relative;
}
.preheader ul li a:focus span.menu-title-text:after, .preheader ul li a:hover span.menu-title-text:after, .preheader ul li a:focus-visible:not(.igLink) span.menu-title-text:after {
  position: absolute;
  display: block;
  bottom: -6px;
  left: 0;
  width: 100%;
  content: "";
  padding-bottom: inherit;
  border-top: 2px solid #febe50;
  backface-visibility: hidden;
  transition: transform 0.3s ease-out, border-color 0.3s ease-out;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.preheader .desktop-menu ul {
  margin-left: 0px;
  padding-left: 0px;
}
.preheader .logo {
  display: inline-block;
}
.preheader .logo #logo {
  padding: 0px;
  display: block;
}
.preheader .logo #logo img {
  height: 35px;
  width: auto;
  transition: margin 0.15s ease;
  margin-top: 12px;
  margin-bottom: 12px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .preheader .logo #logo img {
    height: 25px;
    padding: 0;
    margin: 0;
  }
}
.preheader .logo #logo:hover, .preheader .logo #logo:focus {
  border-bottom: 0px;
}
.preheader.small-nav .logo #logo img {
  height: 30px;
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transition: margin 0.15s ease;
}
@media screen and (max-width: 991px) {
  .preheader.small-nav .logo #logo img {
    height: 25px;
    padding: 0;
    margin: 0;
  }
}
.preheader .desktop-menu {
  display: inline;
}

/**** FIX HEADER IN IE - PUSHES TEXT DOWN EVEN THOUGH THERE'S A NEGATIVE MARGIN ******/
.no-float-ie-fix {
  float: none !important;
}

/*--------------------------------
SAPPORO SPECIFIC HEADER
--------------------------------*/
.buttons.sf-menu li {
  padding: 0px;
  margin: 0px;
}
.buttons.sf-menu li a {
  margin-left: 11px;
  margin-right: 11px;
}
.buttons.sf-menu li#social-in-menu {
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  padding: 0px;
  margin: 0px;
}
.buttons.sf-menu li#social-in-menu a {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: -5px;
  padding-right: 0;
  padding-left: 0;
  height: 25px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.buttons.sf-menu li#social-in-menu a i {
  font-size: 18px;
  color: inherit;
  background-color: transparent;
  transition: transform 0.25s ease, opacity 0.2s ease;
  -webkit-transition: -webkit-transform 0.25s ease, opacity 0.2s ease;
  text-align: center;
  line-height: 24px;
  height: 22px;
  width: 36px;
  position: relative;
  top: -15px;
  vertical-align: middle;
  max-width: 100%;
}
.buttons.sf-menu li#social-in-menu a i.fa-instagram:before {
  content: "\f16d";
}
.buttons.sf-menu li#social-in-menu a i.fa-instagram:after {
  content: "\f16d";
  color: #febe50 !important;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
}
.buttons.sf-menu li#social-in-menu a:hover i, .buttons.sf-menu li#social-in-menu a:focus i {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.buttons.sf-menu li#social-in-menu a:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
  outline-offset: 1px;
}

#header {
  margin-top: 80px;
  padding-top: 54px;
  margin-bottom: 53px;
}
@media screen and (max-width: 991px) {
  #header {
    margin-top: 64px;
  }
}
#header .contestlogo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) and (min-width: 691px) {
  #header .contestlogo {
    width: 299px;
    height: auto;
  }
}
@media screen and (max-width: 690px) {
  #header .contestlogo {
    width: 90%;
    height: auto;
  }
}

/*--------------------------------
FOOTER
--------------------------------*/
.pre-footer {
  padding-bottom: 96px;
  padding-top: 96px;
  position: relative;
}
.pre-footer .container {
  position: relative;
  z-index: 10;
}
.pre-footer p {
  color: black;
}
.pre-footer p a {
  color: black;
  text-decoration: underline !important;
}
.pre-footer p a:hover, .pre-footer p a:focus {
  color: black;
  text-decoration: none !important;
  border-bottom: 2px solid black;
}
.pre-footer .pre-footerBkg {
  position: absolute;
  width: 100%;
  z-index: 0;
  bottom: 0;
  height: 500px;
  /*@media screen and (max-width: 1200px) and (min-height: 501px) {
          height: 600px;
      }

      @media screen and (max-width: 500px) and (min-height: 421px) {
          height: 720px;
  }*/
}
@media screen and (min-width: 2000px) {
  .pre-footer .pre-footerBkg {
    background-image: url(../images/footer-gradient.webp);
    background-position: top center;
    background-size: contain;
    background-repeat: repeat-x;
  }
}
@media screen and (max-width: 1999px) {
  .pre-footer .pre-footerBkg {
    background-image: url(../images/footer-gradient.webp);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 450px) {
  .pre-footer .pre-footerBkg {
    height: 680px;
  }
}

.footer {
  background-color: #0A0A0A;
  padding-top: 67px;
  padding-bottom: 67px;
}
.footer .brand-footer {
  display: block;
  background-color: #0076CF;
  max-width: 270px;
  padding: 16px 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .footer .brand-footer {
    max-width: 30%;
  }
}
.footer p {
  color: white;
  font-size: 12px;
  line-height: 0.9rem;
}
.footer p a {
  color: white;
  text-decoration: underline !important;
}
.footer p a:hover, .footer p a:focus {
  color: white;
  text-decoration: none !important;
  border-bottom: 2px solid white;
}

/*--------------------------------
MOBILE MENU STYLES
--------------------------------*/
@media screen and (min-width: 1200px) {
  .nav-container {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.7s;
    -moz-transition: visibility 0s 0.7s;
    transition: visibility 0s 0.7s;
  }
}
@media screen and (max-width: 1199px) {
  .preheader .desktop-menu {
    display: none;
  }
  .preheader .hamburger {
    display: block;
    height: 12px;
    position: relative;
    width: 50px;
  }
  .preheader .hamburger a.main-nav-toggle {
    display: block;
    width: 22px;
    height: 12px;
    position: absolute;
  }
  .preheader .hamburger a.main-nav-toggle:hover, .preheader .hamburger a.main-nav-toggle:focus {
    border-bottom: 0px;
  }
  .preheader .hamburger a.main-nav-toggle:after, .preheader .hamburger a.main-nav-toggle:before {
    content: "";
    position: absolute;
    top: 0;
    height: 0;
    border-bottom: 2px solid white;
    width: 100%;
    left: 0;
    right: 0;
    transition: all ease-out 0.3s;
  }
  .preheader .hamburger a.main-nav-toggle:after {
    top: 100%;
  }
  .preheader .hamburger a.main-nav-toggle i {
    display: block;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    height: 2px;
    background-color: white;
    width: 100%;
    position: absolute;
    top: 50%;
    transition: all ease-out 0.1s;
  }
  .preheader .hamburger a.main-nav-toggle.active-menu:after {
    transform: rotate(-45deg);
    transform-origin: center;
    top: 50%;
  }
  .preheader .hamburger a.main-nav-toggle.active-menu:before {
    transform: rotate(45deg);
    transform-origin: center;
    top: 50%;
  }
  .preheader .hamburger a.main-nav-toggle.active-menu i {
    opacity: 0;
  }
  .nav-container {
    position: fixed;
    z-index: 990;
    top: 60px;
    left: 0;
    height: auto;
    width: 100%;
    visibility: hidden;
  }
  .nav-container .nav-wrapper {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    background-color: white;
  }
  .nav-container .nav-wrapper ul, .nav-container .nav-wrapper li {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    display: block;
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
  }
  .nav-container .nav-wrapper .nav-menu li {
    padding: 0;
    margin: 0 0;
    text-transform: uppercase;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    line-height: 18.2px;
  }
  .nav-container .nav-wrapper .nav-menu li:first-of-type {
    border-top: none;
  }
  .nav-container .nav-wrapper .nav-menu li a {
    padding: 15px 0;
    color: #0A0A0A;
    text-decoration: none;
    display: block;
    font-weight: 500;
  }
  .nav-container .nav-wrapper .nav-menu li a:hover, .nav-container .nav-wrapper .nav-menu li a:focus {
    color: #e51937;
    border-bottom: 0px;
  }
  .nav-is-open .nav-container {
    display: block;
  }
}
.nav-container .nav-wrapper {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  background-color: white;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.nav-container .nav-wrapper ul, .nav-container .nav-wrapper li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.nav-container .nav-wrapper li {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-container .nav-wrapper li:first-of-type {
  border-top: none;
}
.nav-container .nav-wrapper li a {
  color: #ffffff;
  text-decoration: none;
}
.nav-is-open .nav-container {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}
@media screen and (min-width: 1200px) {
  .preheader .desktop-menu {
    display: block;
  }
  .preheader .header-nav-trigger {
    display: none;
  }
}
/*--------------------------------
SKIP NAVIGATION
--------------------------------*/
.skipnav {
  text-align: left;
}

.skipnav a {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 10px 20px;
  text-decoration: none;
  color: #0A0A0A !important;
  font-size: 20px;
}

.skipnav a:focus, .skipnav a:active {
  position: fixed;
  left: 6px;
  top: 7px;
  height: auto;
  width: auto;
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 23px 14px;
  background: #f1f1f1;
  z-index: 100000;
  line-height: normal;
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

/*--------------------------------
THEME SETTINGS
--------------------------------*/
video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background: url("//demosthenes.info/assets/images/polina.jpg") no-repeat;
  background-size: cover;
  transition: 1s opacity;
}

.stopfade {
  opacity: 0.5;
}

button.videopause {
  display: block;
  width: 80%;
  padding: 0.4rem;
  border: none;
  margin: 1rem auto;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.23);
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s background;
}
button.videopause:hover {
  background: rgba(0, 0, 0, 0.5);
}

/*************************************************
************** HORIZONTAL TABS *******************
************************************************/
.horizontal-tabs {
  width: 100%;
}
.horizontal-tabs [role=tablist] {
  margin: 0 0 -0.1em;
  overflow: visible;
}
.horizontal-tabs [role=tab] {
  position: relative;
  margin: 0;
  padding: 0.3em 0.5em 0.4em;
  border: 1px solid hsl(219, 1%, 72%);
  border-radius: 0.2em 0.2em 0 0;
  box-shadow: 0 0 0.2em hsl(219, 1%, 72%);
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  background: hsl(220, 20%, 94%);
}
.horizontal-tabs [role=tab]:hover::before,
.horizontal-tabs [role=tab]:focus::before,
.horizontal-tabs [role=tab][aria-selected=true]::before {
  position: absolute;
  bottom: 100%;
  right: -1px;
  left: -1px;
  border-radius: 0.2em 0.2em 0 0;
  border-top: 3px solid hsl(20, 96%, 48%);
  content: "";
}
.horizontal-tabs [role=tab][aria-selected=true] {
  border-radius: 0;
  background: hsl(220, 43%, 99%);
  outline: 0;
}
.horizontal-tabs [role=tab][aria-selected=true]:not(:focus):not(:hover)::before {
  border-top: 5px solid hsl(218, 96%, 48%);
}
.horizontal-tabs [role=tab][aria-selected=true]::after {
  position: absolute;
  z-index: 3;
  bottom: -1px;
  right: 0;
  left: 0;
  height: 0.3em;
  background: hsl(220, 43%, 99%);
  box-shadow: none;
  content: "";
}
.horizontal-tabs [role=tab]:hover,
.horizontal-tabs [role=tab]:focus,
.horizontal-tabs [role=tab]:active {
  outline: 0;
  border-radius: 0;
  color: inherit;
}
.horizontal-tabs [role=tab]:hover::before,
.horizontal-tabs [role=tab]:focus::before {
  border-color: hsl(20, 96%, 48%);
}
.horizontal-tabs [role=tabpanel] {
  position: relative;
  z-index: 2;
  padding: 0.5em 0.5em 0.7em;
  border: 1px solid hsl(219, 1%, 72%);
  border-radius: 0 0.2em 0.2em 0.2em;
  box-shadow: 0 0 0.2em hsl(219, 1%, 72%);
  background: hsl(220, 43%, 99%);
}
.horizontal-tabs [role=tabpanel]:focus {
  border-color: hsl(20, 96%, 48%);
  box-shadow: 0 0 0.2em hsl(20, 96%, 48%);
  outline: 0;
}
.horizontal-tabs [role=tabpanel]:focus::after {
  position: absolute;
  bottom: 0;
  right: -1px;
  left: -1px;
  border-bottom: 3px solid hsl(20, 96%, 48%);
  border-radius: 0 0 0.2em 0.2em;
  content: "";
}
.horizontal-tabs [role=tabpanel] p {
  margin: 0;
}
.horizontal-tabs [role=tabpanel] * + p {
  margin-top: 1em;
}

/*************************************************
************** VERTICAL TABS *******************
************************************************/
.vertical-tabs {
  width: 100%;
}
.vertical-tabs [role=tablist] {
  margin: 0 0 -0.1em;
  overflow: visible;
}
.vertical-tabs [role=tab] {
  position: relative;
  margin: 0;
  padding: 0.3em 0.5em 0.4em;
  border: 1px solid hsl(219, 1%, 72%);
  border-radius: 0.2em 0.2em 0 0;
  box-shadow: 0 0 0.2em hsl(219, 1%, 72%);
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  background: hsl(220, 20%, 94%);
}
.vertical-tabs [role=tab]:hover::before,
.vertical-tabs [role=tab]:focus::before,
.vertical-tabs [role=tab][aria-selected=true]::before {
  position: absolute;
  bottom: 100%;
  right: -1px;
  left: -1px;
  border-radius: 0.2em 0.2em 0 0;
  border-top: 3px solid hsl(20, 96%, 48%);
  content: "";
}
.vertical-tabs [role=tab][aria-selected=true] {
  border-radius: 0;
  background: hsl(220, 43%, 99%);
  outline: 0;
}
.vertical-tabs [role=tab][aria-selected=true]:not(:focus):not(:hover)::before {
  border-top: 5px solid hsl(218, 96%, 48%);
}
.vertical-tabs [role=tab][aria-selected=true]::after {
  position: absolute;
  z-index: 3;
  bottom: -1px;
  right: 0;
  left: 0;
  height: 0.3em;
  background: hsl(220, 43%, 99%);
  box-shadow: none;
  content: "";
}
.vertical-tabs [role=tab]:hover,
.vertical-tabs [role=tab]:focus,
.vertical-tabs [role=tab]:active {
  outline: 0;
  border-radius: 0;
  color: inherit;
}
.vertical-tabs [role=tab]:hover::before,
.vertical-tabs [role=tab]:focus::before {
  border-color: hsl(20, 96%, 48%);
}
.vertical-tabs [role=tabpanel] {
  position: relative;
  z-index: 2;
  padding: 0.5em 0.5em 0.7em;
  border: 1px solid hsl(219, 1%, 72%);
  border-radius: 0 0.2em 0.2em 0.2em;
  box-shadow: 0 0 0.2em hsl(219, 1%, 72%);
  background: hsl(220, 43%, 99%);
}
.vertical-tabs [role=tabpanel]:focus {
  border-color: hsl(20, 96%, 48%);
  box-shadow: 0 0 0.2em hsl(20, 96%, 48%);
  outline: 0;
}
.vertical-tabs [role=tabpanel]:focus::after {
  position: absolute;
  bottom: 0;
  right: -1px;
  left: -1px;
  border-bottom: 3px solid hsl(20, 96%, 48%);
  border-radius: 0 0 0.2em 0.2em;
  content: "";
}
.vertical-tabs [role=tabpanel] p {
  margin: 0;
}
.vertical-tabs [role=tabpanel] * + p {
  margin-top: 1em;
}

.accordion-basic {
  margin: 0;
  padding: 0;
  border: 2px solid hsl(0, 0%, 82%);
  border-radius: 7px;
  width: 100%;
  /* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
}
.accordion-basic h3 {
  margin: 0;
  padding: 0;
}
.accordion-basic.focus {
  border-color: hsl(216, 94%, 73%);
}
.accordion-basic.focus h3 {
  background-color: hsl(0, 0%, 97%);
}
.accordion-basic > * + * {
  border-top: 1px solid hsl(0, 0%, 82%);
}
.accordion-basic .Accordion-trigger {
  background: none;
  color: hsl(0, 0%, 13%);
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  padding: 1em 1.5em;
  position: relative;
  text-align: left;
  width: 100%;
  outline: none;
}
.accordion-basic .Accordion-trigger:focus,
.accordion-basic .Accordion-trigger:hover {
  background: hsl(216, 94%, 94%);
}
.accordion-basic *:first-child .Accordion-trigger {
  border-radius: 5px 5px 0 0;
}
.accordion-basic button {
  border-style: none;
}
.accordion-basic button::-moz-focus-inner {
  border: 0;
}
.accordion-basic .Accordion-title {
  display: block;
  pointer-events: none;
  border: transparent 2px solid;
  border-radius: 5px;
  padding: 0.25em;
  outline: none;
}
.accordion-basic .Accordion-trigger:focus .Accordion-title {
  border-color: hsl(216, 94%, 73%);
}
.accordion-basic .Accordion-icon {
  border: solid hsl(0, 0%, 62%);
  border-width: 0 2px 2px 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.5rem;
}
.accordion-basic .Accordion-trigger:focus .Accordion-icon,
.accordion-basic .Accordion-trigger:hover .Accordion-icon {
  border-color: hsl(216, 94%, 73%);
}
.accordion-basic .Accordion-trigger[aria-expanded=true] .Accordion-icon {
  transform: translateY(-50%) rotate(-135deg);
}
.accordion-basic .Accordion-panel {
  margin: 0;
  padding: 1em 1.5em;
}
.accordion-basic .Accordion-panel[hidden] {
  display: none;
}
.accordion-basic fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.accordion-basic input {
  border: 1px solid hsl(0, 0%, 62%);
  border-radius: 0.3em;
  display: block;
  font-size: inherit;
  padding: 0.3em 0.5em;
}

/** Fade In up **/
.img-with-animation-wrap .img-with-animation.fadeInBottom {
  animation: fadeInBottom 300ms forwards 1 ease-in;
}
.img-with-animation-wrap .img-with-animation.animDelayOneSec {
  opacity: 0;
  animation-delay: 200ms !important;
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translate(0px, 100px);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

.link_wrap {
  position: relative;
  -webkit-border-radius: 2px !important;
  box-shadow: none;
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1), transform 0.45s cubic-bezier(0.25, 1, 0.33, 1), border-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), color 0.45s cubic-bezier(0.25, 1, 0.33, 1), background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}
.link_wrap a {
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  border-bottom: 0px;
}
.link_wrap a.link_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  border-bottom: 0px;
  position: relative;
  display: inline-block;
}
.link_wrap a.link_text:after {
  margin-top: 0;
  top: auto;
  border-top: none;
  border-right: none;
  bottom: 0;
  border-left: none;
  border-bottom: 2px solid #000;
  border-radius: 0;
  background-color: transparent !important;
  transition: transform 0.4s cubic-bezier(0.23, 0.46, 0.4, 1);
  animation: none;
  transform-origin: left;
  z-index: 1;
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
}
.link_wrap a.link_text:hover {
  text-decoration: none;
  color: #0A0A0A;
  border-bottom: 0px;
}
.link_wrap:hover .link_text:after {
  animation: none;
  transform: scaleX(0);
  transform-origin: right;
}

/******** RULES TABLES ************/
/************ Draw table has no header but UPC table does.  For each row that needs a header on mobile add data header - for example: <td data-header="UPC: ">68200347448</td>
    and for each table header column add scope="col" for example: th scope="col"></th>
***************/
.drawtable,
.upctable,
.prizetable {
  min-width: 100%;
  border: 1px solid grey;
  margin-bottom: 20px;
}
.drawtable th, .drawtable td,
.upctable th,
.upctable td,
.prizetable th,
.prizetable td {
  padding: 0.5rem 1rem;
  color: black;
}
@media screen and (max-width: 992px) {
  .drawtable th, .drawtable tr, .drawtable td,
  .upctable th,
  .upctable tr,
  .upctable td,
  .prizetable th,
  .prizetable tr,
  .prizetable td {
    display: block;
  }
}

@media screen and (max-width: 992px) {
  .upctable th, .upctable tr, .upctable td,
  .prizetable th,
  .prizetable tr,
  .prizetable td {
    display: block;
  }
  .upctable td::before,
  .prizetable td::before {
    content: attr(data-header);
    font-weight: bold;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-right: 0%;
  }
  .upctable th[scope=col],
  .prizetable th[scope=col] {
    display: none;
  }
}

table, thead, tbody, tfoot, tr, td, th {
  border-collapse: collapse;
}

table > tr:nth-child(even),
tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

table > tr:nth-child(odd),
tbody tr:nth-child(odd) {
  box-shadow: 0 -1px rgba(255, 255, 255, 0.1), 0 1px rgba(255, 255, 255, 0.1);
}

/*********FORM CLASSES************/
/*--------------------------------
FORM GENERAL SETTINGS
--------------------------------*/
.form-control {
  color: black !important;
}
.form-control:focus {
  color: black !important;
  border-color: #4c4c4c;
}

fieldset {
  margin: 0;
  padding: 0;
  padding: 11px 33px;
  border: 1px solid #737373;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  fieldset.paddingLeftRight-xxl {
    padding-left: 33px;
    padding-right: 33px;
  }
}
@media (max-width: 380px) {
  fieldset {
    padding-left: 17px;
    padding-right: 17px;
  }
}

.mbd-label-sub {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.form-group-default {
  background-color: white;
  position: relative;
  border: 0px;
  padding: 10px 0;
  /*padding: {
    top: 7px;
    right: 12px;
    bottom: 4px;
    left: 12px;
  }*/
  /*overflow: hidden;*/
}
.form-group-default label {
  margin: 0;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
  color: #0A0A0A;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
}
.form-group-default.required label {
  padding-bottom: 3px;
}
.form-group-default.required label:after {
  display: inline;
  content: "*";
  color: red;
  padding-left: 5px;
}
.form-group-default input.form-control {
  border: 1px solid #ccc;
  border-radius: 2px;
  height: 38px;
  min-height: 38px;
  padding: 6px 10px;
  margin-top: -2px;
  background: 0 0;
  outline: 0;
  color: #333;
  font-size: 16px;
}
.form-group-default input.form-control option {
  height: 30px;
}
.form-group-default input.form-control:focus, .form-group-default input.form-control:focus-within, .form-group-default input.form-control:active {
  border: 1px solid #0A0A0A;
}

.focussed {
  border: 2px solid #4c4c4c !important;
}

fieldset.form-group-default {
  border: none !important;
  padding-left: 0px !important;
}
fieldset.form-group-default legend {
  margin: 0;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
  color: #737373;
  font-weight: 400;
  font-family: "Noto Sans", sans-serif;
}
fieldset.form-group-default legend:not(.error) {
  font-size: 15px;
  font-weight: 400;
}

.form-control {
  background-color: white;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.07);
  font-family: arial, helvetica, sans-serif;
  -webkit-appearance: none;
  color: #4c4c4c;
  outline: 0;
  height: 35px;
  padding: 9px 12px;
  line-height: normal;
  font-size: 16px;
  font-weight: 400;
  vertical-align: middle;
  min-height: 35px;
  -webkit-transition: all 0.12s ease;
  transition: all 0.12s ease;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: background 0.2s linear 0s;
  transition: background 0.2s linear 0s;
}
@media screen and (max-width: 991px) {
  .form-control {
    font-size: 16px !important;
  }
}
.has-success .form-control, .has-error .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.help-block {
  background: white;
  border-radius: 0 0 2px 2px;
  font-family: arial, helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  padding-top: 4px;
  padding-left: 12px;
  padding-bottom: 10px;
}
.has-error .help-block {
  color: #990000;
  border: 1px solid #990000;
  border-top: none;
  background-color: #990000;
  margin-bottom: 10px;
}

.iti {
  width: 100%;
}

.inputhelper {
  font-size: 13px;
  padding: 5px 0 0 0;
  margin: 2px 0px 5px 0;
  color: #737373;
  line-height: 1rem;
}

/*--------------------------------
SLEEMAN ARROW BUTTONS
--------------------------------*/
a.enter-button-large {
  background-color: black;
  border: 2px solid black;
  -webkit-border-radius: 3px !important;
  border-radius: 3px;
  box-shadow: none;
  padding: 25px 40px;
  padding-left: 42px;
  padding-right: 42px;
  font-family: Noto Sans;
  font-weight: 600;
  font-size: 3rem;
  line-height: 3.5rem;
  color: white;
  text-decoration: none;
  width: 70%;
  display: block;
}
@media screen and (max-width: 992px) {
  a.enter-button-large {
    font-size: 2rem;
    line-height: 2.5rem;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 580px) {
  a.enter-button-large {
    font-size: 1.7rem;
    line-height: 2rem;
  }
}
a.enter-button-large span {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
a.enter-button-large:hover, a.enter-button-large:focus {
  background-color: white;
  color: #000;
}
a.enter-button-large sup {
  font-size: 0.5em;
  vertical-align: 0.25em;
}

a.nectar-button {
  background-color: black;
  -webkit-border-radius: 3px !important;
  border-radius: 3px;
  box-shadow: none;
  font-size: 18px;
  position: relative;
  padding: 25px 40px;
  padding-left: 42px;
  padding-right: 42px;
  font-family: Noto Sans;
  font-weight: 600;
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1), transform 0.45s cubic-bezier(0.25, 1, 0.33, 1), border-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), color 0.45s cubic-bezier(0.25, 1, 0.33, 1), background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow 0.45s cubic-bezier(0.25, 1, 0.33, 1);
  text-decoration: none;
}
a.nectar-button span {
  left: 0;
  display: inline-block;
  transform: translateX(0);
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1), transform 0.45s cubic-bezier(0.25, 1, 0.33, 1);
  position: relative;
  color: white;
  text-decoration: none;
}
a.nectar-button:hover, a.nectar-button:focus {
  opacity: 0.87;
  color: #fff;
  border-bottom: 0px;
}
a.nectar-button i {
  background-color: transparent !important;
  font-size: 18px;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}
a.nectar-button i.icon-button-arrow {
  font-size: 19px;
}
a.nectar-button i[class^=icon-] {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
a.nectar-button i[class*=fa-] {
  font-size: 18px;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all 0.45s cubic-bezier(0.25, 1, 0.33, 1);
  color: white;
}
a.nectar-button.has-icon:hover span, a.nectar-button.has-icon:focus span {
  transform: translateX(-18px);
}
a.nectar-button.has-icon:hover i, a.nectar-button.has-icon:focus i {
  opacity: 1;
  -ms-filter: "alpha(opacity=100)";
  transform: translateX(6px);
}
a.nectar-button.has-icon i {
  text-align: center;
}

/*--------------------------------
FORM BUTTONS
--------------------------------*/
.button {
  position: relative;
  display: inline-block;
  background-color: #e51937;
  border: none;
  border-radius: 5px;
  color: black;
  cursor: pointer;
  line-height: 1.16;
  outline: none;
  overflow: hidden;
  -webkit-transition-duration: 0.3s; /* Safari */
  transition-duration: 0.3s;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
}
.button:hover, .button:active, .button:focus {
  background-color: #4c4c4c;
  text-decoration: none;
  transition: all 0.3s;
}
.button .fa, .button .fas {
  /*background-image: url(scss/spinner-solid.svg);
  background-size: 25px 25px;
  background-position: center center;
  background-repeat: no-repeat;*/
}
.button .spinner {
  margin-top: -5px;
  padding-right: 15px;
}
.button .spinner img {
  -webkit-animation: rotation 2s infinite linear;
  vertical-align: unset;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

.submit-button {
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 2px;
  border: 2px solid #000000;
  opacity: 1;
  text-align: center;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  padding: 15px 40px;
  -webkit-transition: opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1), transform 0.45s cubic-bezier(0.25, 1, 0.33, 1), border-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), color 0.45s cubic-bezier(0.25, 1, 0.33, 1), background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow 0.45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1), transform 0.45s cubic-bezier(0.25, 1, 0.33, 1), border-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), color 0.45s cubic-bezier(0.25, 1, 0.33, 1), background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}
.submit-button:hover, .submit-button:focus {
  background-color: #000000;
  color: white;
  text-decoration: none;
}
.submit-button.fullwidth {
  width: 100%;
  -webkit-border-radius: 5px !important;
  border-radius: 5px;
  box-shadow: none;
  font-size: 18px;
  position: relative;
  line-height: 4rem;
  padding: 0px 40px;
  padding-left: 42px;
  padding-right: 42px;
  font-family: Noto Sans;
  font-weight: 600;
}
.submit-button.fullwidth:hover, .submit-button.fullwidth:focus {
  background-color: #0A0A0A;
  color: white;
  text-decoration: none;
}
.submit-button .spinner {
  margin-top: -5px;
  padding-right: 15px;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

/*--------------------------------
FORM CHECKBOXES
--------------------------------*/
/*--------------------------------
FORM CHECKBOXES
--------------------------------*/
input[type=checkbox],
input[type=checkbox]:focus,
.has-success input[type=checkbox]:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.checkbox {
  margin-bottom: 20px;
  margin-top: 20px;
  min-height: 0;
  padding-left: 0;
}
.checkbox:focus-within label::before {
  border: 1.5px solid black !important;
  outline: 1px solid;
}
.checkbox .help-block {
  background-color: transparent;
  padding: 0;
}
.checkbox.has-error .help-block {
  border: none;
  background-color: transparent;
  font-size: 14px;
  padding-left: 20px;
}
@media screen and (max-width: 600px) {
  .checkbox.has-error .help-block {
    padding-left: 12px;
  }
}
.checkbox input[type=checkbox] {
  position: absolute;
  left: -999em;
  opacity: 1;
}
.checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin-right: 15px;
  min-width: 17px;
  line-height: 1.5em;
  color: #0A0A0A;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
}
@media screen and (max-width: 767px) {
  .checkbox label {
    font-size: 16px;
    line-height: 1.6;
  }
}
.checkbox label::before {
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  top: 5px;
  border-radius: 3px;
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
  border: 1.2px solid #737373;
}
.checkbox label::after {
  border-radius: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 3.5px;
  top: 0;
  font-size: 11px;
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
}
.checkbox input[type=checkbox]:checked + label::before {
  border-color: #737373;
  /*border-width: 12px;*/
  background-color: #142765;
}
.checkbox input[type=checkbox]:not(:checked):focus ~ label::before {
  border: 2px solid #737373 !important;
}
.checkbox input[type=checkbox]:checked + label::after {
  content: "";
  background-image: url("../../images/mbd-icon-checkbox.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  position: absolute;
  display: block;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  z-index: 49;
  left: -1px;
  top: 4.5px;
  margin-top: 0px;
  width: 16px;
  height: 16px;
  opacity: 1;
}

.text-danger.checkbox-error {
  padding-left: 30px;
  margin-top: 0px;
  padding-bottom: 0px;
}

/*--------------------------------
FORM RADIO
--------------------------------*/
input[type=radio],
input[type=radio]:focus,
.has-success input[type=radio]:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.radio-group-label {
  font-size: 15px;
  font-weight: 400;
  transition: opacity 0.2s ease;
  margin: 0px;
  color: #737373;
  font-family: "Noto Sans", sans-serif;
}

.has-error .radio-group-label {
  color: black;
}

.radio-group-Container {
  min-height: 25px;
  height: 30px;
  margin-top: 0px;
  padding: 0 30px 0 10px;
}

.radio {
  margin-bottom: 20px;
  margin-top: 20px;
  min-height: 0;
  padding-left: 0;
}
.radio:focus-within label::before {
  outline: -webkit-focus-ring-color auto 1px;
}
.radio .help-block {
  background-color: transparent;
  padding: 0;
}
.radio.has-error .help-block {
  border: none;
  background-color: transparent;
  font-size: 14px;
  padding-left: 20px;
}
@media screen and (max-width: 600px) {
  .radio.has-error .help-block {
    padding-left: 12px;
  }
}
.radio input[type=radio] {
  position: absolute;
  left: -999em;
  opacity: 1;
}
.radio input[type=radio]:checked + label::before {
  border-color: #ffffff;
  border-width: 12px;
}
.radio input[type=radio]:checked + label::after {
  content: "";
  background-image: url("images/mbd-icon-checkbox.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  position: absolute;
  display: block;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  z-index: 49;
  left: 0.5px;
  top: 2px;
  margin-top: 0px;
  width: 24px;
  height: 24px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .radio input[type=radio]:checked + label::after {
    left: 0px;
    top: 2px;
    background-size: 12px 12px;
  }
}
.radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
  margin-right: 15px;
  min-width: 17px;
  min-height: 17px;
  font-size: 22px;
  line-height: 1.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
}
@media screen and (max-width: 767px) {
  .radio label {
    font-size: 16px;
    line-height: 1.6;
  }
}
.radio label::before {
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  top: 1.4px;
  border-radius: 5px;
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
  border: 2px solid #4c4c4c;
}
.radio label::after {
  border-radius: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 3.5px;
  top: 0;
  font-size: 11px;
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
}

/*********************************************
***** FORMCHECK ACCESSIBLE RADIO GROUP *******
*********************************************/
.form-check input[type=radio] {
  opacity: 0;
  position: absolute;
  top: 3px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  padding: 0;
}
.form-check input[type=radio]:checked + label:before {
  border-color: #737373; /***** CHANGE COLOR ******/
  border-width: 7px;
}
.form-check input[type=radio]:focus + label:before, .form-check input[type=radio]:focus-within + label:before, .form-check input[type=radio]:active + label:before {
  border-color: #737373; /***** CHANGE COLOR ******/
  border-width: 7px;
}
.form-check label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  min-width: 20px;
  min-height: 20px;
  margin-bottom: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-check label:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0px;
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #757575;
  top: 2px;
  border-radius: 3px;
  transition: border 140ms linear 0s, color 140ms linear 0s, background-color 140ms linear 0s;
}

.form-check input[type=radio] + label:before {
  bottom: 2.5px;
  border-radius: 99px;
  -webkit-transition: border 0.3s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  transition: border 0.3s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 3rem;
}
@media screen and (max-width: 992px) {
  .form-check-inline {
    margin-right: unset;
  }
}

@media screen and (max-width: 992px) {
  .radio-group-Container {
    display: flex;
    justify-content: space-between;
  }
}

#datepicker {
  margin: 0;
  padding: 0;
  height: 25px;
  vertical-align: bottom;
  background-image: url(images/calendar-alt-regular.svg);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 0px;
  height: 25px;
  min-height: 25px;
  padding: 0px;
  margin-top: -2px;
  width: 100%;
}

.ui-datepicker-trigger {
  margin: 2px;
  padding: 0;
  vertical-align: bottom;
}

.ui-datepicker-trigger img {
  width: 25px;
  height: 25px;
}

.offscreen {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  margin: 0;
  padding: 0;
}

button.ui-datepicker-trigger {
  background-color: transparent !important;
  border: none !important;
  margin: auto !important;
}

button.ui-datepicker-trigger:focus,
button.ui-datepicker-trigger:hover,
button.ui-datepicker-trigger:active {
  border: none !important;
  margin: auto !important;
  outline: 2px solid #8cc63f !important;
  background-color: #fdf6e7 !important;
}

/***********************************
*********CALENDAR STYLING***********
***********************************/
.datepicker {
  max-width: 90%;
  margin-left: 0;
  margin-right: 10%;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(50, 50, 50, 0.55);
  -moz-box-shadow: 0px 0px 5px 2px rgba(50, 50, 50, 0.55);
  box-shadow: 0px 0px 5px 2px rgba(50, 50, 50, 0.55);
}
.datepicker .table-condensed {
  position: relative;
  padding: 0.2em 0;
}
.datepicker .table-condensed th.prev {
  display: block;
  vertical-align: middle;
  text-align: center;
}
.datepicker .table-condensed th.prev:focus, .datepicker .table-condensed th.prev:hover {
  background-color: lightblue;
}
.datepicker .table-condensed th.next {
  display: block;
  vertical-align: middle;
  text-align: center;
}
.datepicker .table-condensed th.next:focus, .datepicker .table-condensed th.next:hover {
  background-color: lightblue;
}
.datepicker .table-condensed th.datepicker-switch {
  text-align: center;
  vertical-align: middle;
}
.datepicker .table-condensed th.datepicker-switch:focus, .datepicker .table-condensed th.datepicker-switch:hover {
  background-color: lightblue;
}
.datepicker .table-condensed th.dow {
  width: 35px;
  height: 35px;
  vertical-align: middle;
  text-align: center;
}
.datepicker .table-condensed td.day {
  width: 35px;
  height: 35px;
  vertical-align: middle;
  text-align: center;
  color: black;
}
.datepicker .table-condensed td.day:focus, .datepicker .table-condensed td.day:hover {
  background-color: lightblue;
}
.datepicker .table-condensed td.focused.day {
  background-color: lightblue !important;
}
.datepicker .table-condensed td.old.day, .datepicker .table-condensed td.new.day {
  color: white;
  background-color: #737373;
}
.datepicker .table-condensed td.active.day {
  background-color: blue;
  color: white;
}
.datepicker .table-condensed span.month,
.datepicker .table-condensed span.year {
  display: inline-block;
  padding: 10px 15px;
}
.datepicker .table-condensed span.month:hover, .datepicker .table-condensed span.month:focus,
.datepicker .table-condensed span.year:hover,
.datepicker .table-condensed span.year:focus {
  background-color: lightblue;
}

/*--------------------------------
FORM DRAG SELECT
--------------------------------*/
.dragSelect {
  display: flex;
  align-items: stretch;
  margin-bottom: 7px;
}

.sortableGroup1,
.sortableGroup2 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 47%;
  float: left;
}

.sortableGroup1 {
  margin-right: 3%;
}

.sortableGroup2 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08) !important;
}

.sortableGroup1 li {
  margin: 7px 3px 7px 3px;
  padding: 0.4em 25px 0.4em 0.4em;
  padding-left: 10px;
  font-size: 14px;
  cursor: grab;
  display: block;
}

.sortableGroup2 li {
  margin: 7px 3px 7px 3px;
  padding: 0.4em 15px 0.4em 0.4em;
  padding-left: 2.5em;
  font-size: 14px;
  cursor: grab;
  display: block;
}

.sortableGroup1 li span {
  float: right;
  margin-top: 5px;
  margin-right: -20px;
}

.sortableGroup1 li.ui-state-default,
.sortableGroup2 li.ui-state-default {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 4px;
  background: #fff !important;
  font-weight: normal;
  color: #58585A;
  transition: opacity 0.2s ease;
}

.sortableGroup1 li.ui-state-default:hover,
.sortableGroup1 li.ui-state-default:active,
.sortableGroup2 li.ui-state-default:hover,
.sortableGroup2 li.ui-state-default:active {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 4px;
  background: #f1f1f1 !important;
  font-weight: normal;
  color: #333 !important;
  transition: opacity 0.2s ease;
}

.sortableGroup2 .ui-icon, .ui-widget-content .ui-icon {
  background-image: url(images/mbd-icon-4arrow.svg);
  background-size: cover;
}

.sortableGroup1 .ui-icon, .ui-widget-content .ui-icon {
  background-image: url(images/mbd-icon-rghtarrow.svg);
  background-size: cover;
}

.sortableGroup2 .ui-icon-arrowthick-2-n-s {
  background-position: 0px 0px;
}

.sortableGroup1 .ui-icon-arrowthick-2-n-s {
  background-position: 0px 0px;
}

.sortableGroup2 li.ui-state-default span.ui-icon {
  position: absolute;
  margin-left: -2em;
  margin-top: 2px;
}
.sortableGroup2 li.ui-state-default span.order {
  padding-right: 10px;
  font-weight: bold;
}

/*--------------------------------
FORM ERRORS
--------------------------------*/
.has-error input:focus,
.has-error select:focus,
.has-error textarea:focus,
.has-error textarea:active,
.has-error input[type=email]:focus,
.has-error input[type=file]:focus,
.has-error input[type=tel]:focus,
.has-error input[type=text]:focus,
.has-error input[type=radio]:focus,
.has-error input[type=checkbox]:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.form-group-default.has-error input.form-control,
.form-group-default.has-error .select2-container,
.iti.has-error input.form-control,
.iti.has-error .select2-container {
  border: 1px solid #990000;
}

.text-danger {
  color: #990000;
  font-size: 12px;
  margin-top: 8px;
  font-weight: 400;
  display: block;
}

/************************************************* 
********* STANDARD DROPDOWNS *********************
*************************************************/
select,
select:focus,
.has-success select:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

label[for=Input_Province]:after {
  /* content: "\f078 ";
  font-family: "Font Awesome 5 Free";
  color: white;
  position: absolute;
  right: 0;
  top: 18px;
  z-index: 1;
  width: 10%;
  height: 100%;
  pointer-events: none;*/
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

select.form-control:not([size]):not([multiple]) {
  height: 25px;
  margin-top: -2px;
  background-image: url(../images/mbd-icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center right;
  padding: 0 30px 0 10px;
}
@media screen and (max-width: 991px) {
  select.form-control:not([size]):not([multiple]) {
    height: 35px;
  }
}

/************************************************* 
********* CUSTOMIZE SELECT 2 DROPDOWNS ***********
*************************************************/
.dropdownContainer {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  border-radius: 2px;
  min-height: 24px;
  height: 38px;
  padding-top: 1px;
  padding-right: 6px;
}
.dropdownContainer.has-error {
  border: 1px solid #990000;
}

.select2 {
  padding: 6px 10px;
}
.select2.select2-container {
  height: 38px;
  margin-top: -2px;
  padding: 0 30px 0 0px;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .select2.select2-container {
    height: 35px;
  }
}
.select2.select2-container.select2-container--default {
  border: 0px solid #ccc;
  border-radius: 2px;
  width: 100% !important;
}
.select2.select2-container.select2-container--default.select2-container--open {
  width: 100% !important;
}
.select2.select2-container.select2-container--default .select2-selection--single {
  background-color: rgba(255, 255, 255, 0);
  border: 0px solid #737373;
}
.select2.select2-container.select2-container--default .select2-selection--single:focus-visible {
  outline: 0px !important;
}
.select2.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: none;
  border-style: solid;
  border-width: 0;
  background-image: url(../images/mbd-icon-arrow.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 18px;
  left: 0%;
  margin-left: 0px;
  margin-top: 10px;
  position: absolute;
  top: 0%;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  -ms-transition: -ms-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
}
.select2.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 10px;
  line-height: 38px;
}
@media screen and (max-width: 991.5px) {
  .select2.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 35px;
  }
}
.select2.select2-container.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: none;
  border-style: solid;
  border-width: 0;
  background-image: url(../images/mbd-icon-arrow.svg);
  background-repeat: no-repeat;
  transform: rotate(180deg);
  height: 15px;
  width: 18px;
  left: 0%;
  margin-left: 0px;
  margin-top: 10px;
  position: absolute;
  top: 0%;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  -ms-transition: -ms-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
}

.select2-container.select2-container--default.select2-container--open .select2-dropdown .select2-results ul.select2-results__options {
  padding-left: 0px !important;
}

.select2-container--open .select2-dropdown--below {
  border-top: 1px solid #aaa;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: 1px solid #aaa;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #0A0A0A;
  color: white;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
  color: #737373;
}

/***********************************************************
*********** MULTI SELECT DROPDOWN WITH CHECKBOXES **********
***********************************************************/
.multi-select, .multi-select-plugin {
  display: inline-block;
  position: relative;
  width: 100%;
  outline: 0px;
}
.multi-select:focus, .multi-select:focus-visible, .multi-select-plugin:focus, .multi-select-plugin:focus-visible {
  outline: 0px;
}
.multi-select > span, .multi-select-plugin > span {
  border: none;
  background: none;
  position: relative;
  display: block;
  cursor: default;
  height: 25px;
  margin-top: -2px;
  background-image: url(../images/mbd-icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center right;
  padding: 0 30px 0 10px;
}
.multi-select > ul, .multi-select-plugin > ul {
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  left: 0;
  top: 100%;
  min-width: 100%;
  z-index: 1000;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  display: none;
  max-height: 320px;
  overflow-x: hidden;
  overflow-y: auto;
}
.multi-select > ul > li, .multi-select-plugin > ul > li {
  white-space: nowrap;
}
.multi-select > ul > li label input[type=checkbox], .multi-select-plugin > ul > li label input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.multi-select > ul > li.selected > label, .multi-select-plugin > ul > li.selected > label {
  background-color: #4c4c4c;
}
.multi-select > ul > li.focused > label, .multi-select-plugin > ul > li.focused > label {
  background-color: #4c4c4c;
}
.multi-select > ul > li > label, .multi-select-plugin > ul > li > label {
  padding: 0.25em 0.5em;
  display: block;
}
.multi-select > ul > li > label:focus, .multi-select > ul > li > label:hover, .multi-select-plugin > ul > li > label:focus, .multi-select-plugin > ul > li > label:hover {
  background-color: #4c4c4c;
}
.multi-select.in > ul, .multi-select-plugin.in > ul {
  display: block;
}
.multi-select-backdrop, .multi-select-plugin-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
}

/*--------------------------------
FORM TEXT INPUTS
--------------------------------*/
input,
textarea,
input[type=email],
input[type=tel],
input[type=text],
input:focus,
textarea:focus,
textarea:active,
input[type=email]:focus,
input[type=tel]:focus,
input[type=text]:focus,
.has-success input:focus,
.has-success textarea:focus,
.has-success textarea:active,
.has-success input[type=email]:focus,
.has-success input[type=tel]:focus,
.has-success input[type=text]:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.form-group-default.textarea {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
.form-group-default.textarea textarea.form-control {
  width: 100%;
  height: auto !important;
  border: 1px solid #ccc;
  border-radius: 2px;
  min-height: 38px;
  padding: 6px 10px;
  margin-top: -2px;
  background: 0 0;
  outline: 0;
  color: #333;
  font-size: 16px;
}

/*--------------------------------
FORM UPLOAD
--------------------------------*/
input[type=file],
input[type=file]:focus,
.has-success input[type=file]:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.dropzoneContainer {
  margin-bottom: 20px;
}

.dropzone {
  display: flex;
  flex-wrap: wrap;
  border: 0px;
  padding: 0px;
  margin: 0px;
}
.dropzone .dz-message {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 100%;
}
.dropzone .dz-message .dz-button {
  font-size: 22px !important;
  font-weight: 800 !important;
  text-align: center;
  font-family: "Noto Sans", sans-serif !important;
  color: #737373;
}
.dropzone .dz-message .dz-button:focus {
  outline: 0px;
}
.dropzone .dz-message .dz-button .uploadtxt {
  font-size: 15px !important;
}
.dropzone .dz-preview {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.dropzone .dz-preview.dz-error {
  opacity: 1;
}
.dropzone .dz-preview .dz-error-mark {
  display: none;
}
.dropzone .dz-preview .dz-error-mark svg {
  display: none;
}
.dropzone .dz-preview .dz-error-message {
  opacity: 1;
  position: unset;
  background: transparent;
  color: #990000;
  border-radius: unset;
  top: 0;
  text-align: center;
  padding: 20px 0 0 0;
}
.dropzone .dz-preview .dz-error-message:after {
  border: 0px;
}
.dropzone .errormessages {
  display: flex;
  width: 100%;
  min-width: 100%;
  align-self: end;
}

.fallback {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.form-group-default > .fallback > .file .form-control2 {
  width: 100%;
  cursor: pointer;
  background: white;
  height: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group-default > .fallback > .file .form-control2::-ms-expand {
  display: none;
}

.upload-image {
  max-width: 10%;
  height: auto;
  padding-top: 20px;
}

.success-area {
  background-color: white;
  position: relative;
  border: 0px;
  border-radius: 5px;
  border: 2px solid #006cac;
  padding-top: 7px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  /* overflow: hidden; */
  width: 100%;
  transition: background-color 0.2s ease;
}
.success-area .fa-check-square {
  font-size: 40px;
  padding-top: 20px;
}

.form-check {
  margin-bottom: 10px;
  padding-left: 0px;
  position: relative;
}
.form-check.switch input[type=checkbox] {
  top: 1px;
  width: 28px;
  height: 18px;
  position: absolute;
  margin: 0;
  z-index: -1;
  opacity: 0;
}
.form-check.switch input[type=checkbox] + label {
  padding-left: 34px;
}
.form-check.switch input[type=checkbox] + label:before {
  cursor: pointer;
  width: 26px;
  height: 18px;
  top: 2px;
  background-image: -webkit-linear-gradient(to right, #00a46c 0%, #11b689 44%, rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0.04) 97%);
  background-image: -moz-linear-gradient(to right, #00a46c 0%, #11b689 44%, rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0.04) 97%);
  background-image: linear-gradient(to right, #00a46c 0%, #11b689 44%, rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0.04) 97%);
  background-size: 300%;
  background-position: right;
  border-radius: 50px;
  border: none;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.12);
  transition: background 310ms, box-shadow 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-check.switch input[type=checkbox] + label:after {
  transform: translateX(0%);
  background: #fff;
  top: 4px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 9px;
  box-shadow: 1px 0px 1px 0.5px rgba(0, 0, 0, 0.12), 2px 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: "";
  position: absolute;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  overflow: hidden;
}
.form-check.switch input[type=checkbox]:checked + label:before {
  background-position: left;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.12);
}
.form-check.switch input[type=checkbox]:checked + label:after {
  transform: translateX(calc(100% - 6px));
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.08), -3px 3px 6px rgba(0, 0, 0, 0.3);
}
.form-check.switch input[type=checkbox]:focus + label:before {
  border: 2px solid black;
}
.form-check.switch.switch-lg input[type=checkbox] {
  top: 0px;
  width: 34px;
  height: 22px;
}
.form-check.switch.switch-lg input[type=checkbox] + label {
  padding-left: 42px;
}
.form-check.switch.switch-lg input[type=checkbox] + label:before {
  width: 34px;
  height: 22px;
  top: 0px;
}
.form-check.switch.switch-lg input[type=checkbox] + label:after {
  width: 18px;
  height: 18px;
  top: 2px;
}
.form-check label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  min-width: 18px;
  min-height: 18px;
  margin-bottom: 0;
  transition: border 140ms linear 0s, color 140ms linear 0s, background-color 140ms linear 0s;
}
.form-check label:before {
  content: "";
  position: absolute;
  left: 0px;
  box-sizing: border-box;
  background-color: #fff;
}

/***********************************************
****************** SWITCH V2 *******************
***********************************************/
.form-check-v2 {
  margin-bottom: 10px;
  padding-left: 0px;
  position: relative;
}
.form-check-v2.switch input[type=checkbox] {
  top: 1px;
  width: 28px;
  height: 18px;
  position: absolute;
  margin: 0;
  z-index: -1;
  opacity: 0;
}
.form-check-v2.switch input[type=checkbox] + label {
  padding-left: 60px;
}
.form-check-v2.switch input[type=checkbox] + label:before {
  cursor: pointer;
  width: 54px;
  height: 18px;
  top: 2px;
  background-color: black;
  border-radius: 50px;
  border: none;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.12);
  transition: background 310ms, box-shadow 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: "NO";
  font-size: 12px;
  text-align: right;
  font-weight: bold;
  color: white;
  padding-right: 5px;
  padding-top: 2px;
}
.form-check-v2.switch input[type=checkbox] + label:after {
  transform: translateX(0%);
  background: #fff;
  top: 4px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 9px;
  box-shadow: 1px 0px 1px 0.5px rgba(0, 0, 0, 0.12), 2px 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: "";
  position: absolute;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  overflow: hidden;
}
.form-check-v2.switch input[type=checkbox]:checked + label:before {
  background-color: #00a46c;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.12);
  content: "YES";
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding-left: 5px !important;
  padding-right: none;
  text-align: left;
  padding-top: 2px;
}
.form-check-v2.switch input[type=checkbox]:checked + label:after {
  transform: translateX(calc(100% + 14px));
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.08), -3px 3px 6px rgba(0, 0, 0, 0.3);
}
.form-check-v2.switch input[type=checkbox]:focus + label:before {
  outline: 3px solid #666666;
}
.form-check-v2.switch.switch-lg input[type=checkbox] {
  top: 0px;
  width: 54px;
  height: 22px;
}
.form-check-v2.switch.switch-lg input[type=checkbox] + label {
  padding-left: 60px;
}
.form-check-v2.switch.switch-lg input[type=checkbox] + label:before {
  width: 54px;
  height: 22px;
  top: 0px;
}
.form-check-v2.switch.switch-lg input[type=checkbox] + label:after {
  width: 18px;
  height: 18px;
  top: 2px;
}
.form-check-v2 label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  min-width: 18px;
  min-height: 18px;
  margin-bottom: 0;
  transition: border 140ms linear 0s, color 140ms linear 0s, background-color 140ms linear 0s;
}
.form-check-v2 label:before {
  content: "";
  position: absolute;
  left: 0px;
  box-sizing: border-box;
  background-color: #fff;
}

/*Progress Bar*/
#upload-progress {
  height: 20px;
  border: 1px solid #ddd;
  width: 100%;
}

#upload-progress .progress-bar {
  background: #bde1ff;
  width: 0;
  height: 20px;
}

/********************************************************
**************** Step by Step Indicator ***************
********************************************************/
.tlwrapper {
  display: table;
  width: 100%;
}
.tlwrapper .timeline {
  display: table-row;
  counter-reset: timeline;
}
.tlwrapper .timeline li {
  display: table-cell;
  width: 20%;
  counter-increment: timeline;
  list-style: none;
  text-align: center;
  padding: 0.25em 0.5em;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  padding-left: 25px;
  white-space: nowrap;
}
.tlwrapper .timeline li.timeline-past {
  background-color: #ccc;
}
.tlwrapper .timeline li:first-child {
  padding-left: 0;
}
.tlwrapper .timeline li:after {
  left: 0;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(151, 204, 237, 0);
  border-left-color: #ccc;
  border-width: 20px;
  margin-top: -20px;
}
.tlwrapper .timeline li > span {
  z-index: 100;
  position: relative;
  display: block;
  color: #555;
}
.tlwrapper .timeline li > span:before {
  display: inline-block;
  color: #555;
  content: counter(timeline);
  border: 3px solid #555;
  margin-right: 0.25em;
  border-radius: 5px;
  padding: 0 0.25em;
}
.tlwrapper .timeline li a {
  z-index: 100;
  position: relative;
  display: block;
  color: #555;
}
.tlwrapper .timeline li a:before {
  display: inline-block;
  color: #555;
  content: counter(timeline);
  background-color: none;
  border: 3px solid #555;
  margin-right: 0.25em;
  border-radius: 5px;
  padding: 0 0.25em;
}
.tlwrapper .timeline li.timeline-current > span {
  color: #036;
  font-weight: bold;
}
.tlwrapper .timeline li.timeline-current > span:before {
  color: #fff;
  background-color: #036;
  border-color: #036;
}
.tlwrapper .timeline li.timeline-current a {
  color: #036;
  font-weight: bold;
}
.tlwrapper .timeline li.timeline-current a:before {
  color: #fff;
  background-color: #036;
  border-color: #036;
}
.tlwrapper .timeline li.timeline-current:after {
  left: 0;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(151, 204, 237, 0);
  border-left-color: #ccc;
  border-width: 20px;
  margin-top: -20px;
}
.tlwrapper .timeline .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
