.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.text-upper {
  text-transform: uppercase;
}
.text-subtle {
  font-size: 12px;
}
.subdued-text {
  font-size: 15px;
  opacity: 0.75;
}
.subtitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}
.blurred {
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}
.flex-fill {
  flex-grow: 1;
}
.no-image {
  background-image: none !important;
}
/* Mixin to generate random number;
   int should be 0 or 1, 1 being to make it an integer 
*/
@keyframes jiggle {
  33% {
    -moz-transform: rotate(-2deg) scale(1.025);
    -ms-transform: rotate(-2deg) scale(1.025);
    -o-transform: rotate(-2deg) scale(1.025);
    -webkit-transform: rotate(-2deg) scale(1.025);
    transform: rotate(-2deg) scale(1.025);
  }
  66% {
    -moz-transform: rotate(2deg) scale(1.05);
    -ms-transform: rotate(2deg) scale(1.05);
    -o-transform: rotate(2deg) scale(1.05);
    -webkit-transform: rotate(2deg) scale(1.05);
    transform: rotate(2deg) scale(1.05);
  }
  100% {
    -moz-transform: rotate(0deg) scale(1.075);
    -ms-transform: rotate(0deg) scale(1.075);
    -o-transform: rotate(0deg) scale(1.075);
    -webkit-transform: rotate(0deg) scale(1.075);
    transform: rotate(0deg) scale(1.075);
  }
}
@keyframes jiggle-repeat {
  4% {
    -moz-transform: rotate(-3deg) scale(1.025);
    -ms-transform: rotate(-3deg) scale(1.025);
    -o-transform: rotate(-3deg) scale(1.025);
    -webkit-transform: rotate(-3deg) scale(1.025);
    transform: rotate(-3deg) scale(1.025);
  }
  8% {
    -moz-transform: rotate(3deg) scale(1.075);
    -ms-transform: rotate(3deg) scale(1.075);
    -o-transform: rotate(3deg) scale(1.075);
    -webkit-transform: rotate(3deg) scale(1.075);
    transform: rotate(3deg) scale(1.075);
  }
  12% {
    -moz-transform: rotate(-3deg) scale(1.1);
    -ms-transform: rotate(-3deg) scale(1.1);
    -o-transform: rotate(-3deg) scale(1.1);
    -webkit-transform: rotate(-3deg) scale(1.1);
    transform: rotate(-3deg) scale(1.1);
  }
  16% {
    -moz-transform: rotate(3deg) scale(1.1);
    -ms-transform: rotate(3deg) scale(1.1);
    -o-transform: rotate(3deg) scale(1.1);
    -webkit-transform: rotate(3deg) scale(1.1);
    transform: rotate(3deg) scale(1.1);
  }
  20%,
  100% {
    -moz-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    -o-transform: rotate(0deg) scale(1);
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}
.header-wrap {
  width: 100%;
  z-index: 12;
  box-shadow: #111111 0px 0 2px 0;
}
@media (min-width: 768px) {
  .header-wrap {
    height: 140px;
    max-height: 140px;
  }
}
.cookie-open .header-wrap,
.message-open .header-wrap {
  /*top: 43px;*/
}
.cookie-open.message-open .header-wrap {
  top: 86px;
}
.header-wrap .header-text {
  display: none;
}
@media (min-width: 768px) {
  .header-wrap .header-text {
    display: block;
  }
}
.header-wrap .header-text h1 {
  margin: 0;
  padding-left: 120px;
  font-size: 48px;
  line-height: 70px;
  text-transform: uppercase;
}
.header-wrap .welcome-text {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 70px;
}
@media (min-width: 768px) {
  .header-wrap .welcome-text {
    display: block;
  }
}
.logo-header-outer {
  box-shadow: inset 0 -4px 4px -4px #111;
}
.login-form .logo-header-outer {
  box-shadow: none;
}
.logo-header {
  position: relative;
  text-align: left;
  z-index: 2;
}
.login-form .logo-header {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .logo-header {
    height: 70px;
  }
}
#divLogoImage {
  display: none;
  width: 100%;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
#divLogoImage:hover {
  -moz-transform: scale(1.075);
  -ms-transform: scale(1.075);
  -o-transform: scale(1.075);
  -webkit-transform: scale(1.075);
  transform: scale(1.075);
}
#divLogoImage:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
#divLogoImage:hover {
  -moz-animation: jiggle 0.2s 1;
  -o-animation: jiggle 0.2s 1;
  -webkit-animation: jiggle 0.2s 1;
  animation: jiggle 0.2s 1;
}
#divLogoImage.small {
  top: 5px;
  left: 5px;
  height: 60px;
  width: 60px;
  background-size: 60px;
}
.login-form #divLogoImage {
  display: block;
}
@media screen and (min-width: 768px) {
  #divLogoImage {
    display: block;
    position: absolute;
    left: 15px;
    top: 15px;
    height: 110px;
    width: 110px;
    background-size: 110px;
    background-image: url(../images/svg/logo_chilli_new.svg);
  }
}
.header-menu {
  float: right;
  margin-top: 8px;
}
#divChilliMenu {
  display: none;
  position: absolute;
  top: 140px;
  width: 100%;
  z-index: 754;
  box-shadow: 0 6px 6px -5px #111;
}
@media (min-width: 768px) {
  #divChilliMenu {
    display: block;
  }
}
#divChilliMenu .menu-inner {
  padding-top: 60px;
  padding-bottom: 40px;
}
#divChilliMenu .menu-inner-margin {
  margin-right: -23px;
}
#divChilliMenu .menu-tile {
  border-radius: 3px;
  border: 1px solid #FFFFFF;
  height: 160px;
}
#divChilliMenu .menu-tile > .menu-icon {
  height: 60px;
  margin-top: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 52px;
}
#divChilliMenu .menu-tile > span {
  height: 80px;
  line-height: 80px;
}
#divChilliMenu .menu-row-4 .menu-tile {
  width: calc(25% - 20px);
}
#divChilliMenu .menu-row-3 .menu-tile {
  width: calc(33.3333% - 20px);
}
#divChilliMenu .menu-row-2 .menu-tile {
  width: calc(50% - 20px);
}
.menu-tile {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.menu-tile:hover {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.menu-tile:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.menu-tile > span {
  display: block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}
#divChilliHeaderMenu {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
@media (min-width: 768px) {
  #divChilliHeaderMenu {
    float: right;
    width: auto;
  }
}
#divChilliHeaderMenu .header-icon {
  height: 30px;
  width: 30px;
  margin-left: 10px;
  float: right;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
#divChilliHeaderMenu .header-icon:hover {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
#divChilliHeaderMenu .header-icon:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
@media (min-width: 768px) {
  #divChilliHeaderMenu .header-icon {
    height: 42px;
    width: 42px;
    margin-left: 15px;
    background-size: 32px;
  }
}
#divChilliHeaderMenu .header-icon.alert {
  -moz-animation: jiggle-repeat 3s infinite;
  -o-animation: jiggle-repeat 3s infinite;
  -webkit-animation: jiggle-repeat 3s infinite;
  animation: jiggle-repeat 3s infinite;
}
#divChilliHeaderMenu #divChilliHeaderMenuToggle {
  /*background-image: url(../images/svg/menu_open.svg);*/
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2225%22%20viewBox%3D%220%200%2030%2025%22%20overflow%3D%22visible%22%3E%3Cpath%20fill%3D%22%23B2B2B2%22%20d%3D%22M0%200h30v5H0V0zm0%2015h30v-5H0v5zm0%2010h30v-5H0v5z%22%2F%3E%3C%2Fsvg%3E');
  display: none;
}
@media (min-width: 768px) {
  #divChilliHeaderMenu #divChilliHeaderMenuToggle {
    display: block;
  }
}
#divChilliHeaderMenu #divChilliHeaderMenuToggle.open {
  /*background-image: url(../images/svg/menu_close_chilli.svg);*/
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2225%22%20viewBox%3D%220%200%2030%2025%22%20overflow%3D%22visible%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M30%200L15%2010%200%200v5l11.25%207.5L0%2020v5l15-10%2015%2010v-5l-11.25-7.5L30%205z%22%2F%3E%3C%2Fsvg%3E');
}
#divChilliHeaderMenu #divChilliHeaderMenuToggleMobile {
  float: left;
  margin-left: 0;
  background-image: url(../images/svg/menu_open.svg);
  background-size: 18px;
}
@media (min-width: 768px) {
  #divChilliHeaderMenu #divChilliHeaderMenuToggleMobile {
    display: none;
  }
}
#divChilliHeaderMenu #divChilliHeaderMenuShop {
  background-image: url(../images/svg/menu_basket.svg);
}
#divChilliHeaderMenu #divChilliHeaderMenuNotifications {
  background-image: url(../images/svg/menu_notifications.svg);
}
#divChilliHeaderMenu #divChilliHeaderMenuHome {
  background-image: url(../images/svg/menu_home.svg);
  background-size: 24px;
  background-position: top 2px center;
}
@media (min-width: 768px) {
  #divChilliHeaderMenu #divChilliHeaderMenuHome {
    background-size: 32px;
    background-position: center;
  }
}
#divChilliHeaderMenu #divChilliHeaderMenuDocuments {
  background-image: url(../images/svg/documents.svg);
}
#divChilliHeaderMenu #divChilliHeaderMenuPromotions {
  background-image: url(../images/svg/menu_promo.svg);
}
#divChilliHeaderMenu #divChilliHeaderMenuShop {
  background-image: url(../images/svg/menu_basket.svg);
}
#divChilliHeaderMenu #divChilliHeaderMenuPayNow {
  /*background-image: url(../images/svg/menu_pay_now.svg);*/
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2225%22%20viewBox%3D%220%200%2030%2025%22%20overflow%3D%22visible%22%3E%3Cpath%20fill%3D%22%23B2B2B2%22%20d%3D%22M14%200H0v14h14V0zm-2%2012H2V2h10v10zM4%204h6v6H4zM18%206h2V4h2V2h-2V0h-2v4h-2v6h4V8h-2zM26%202V0h-2v4h-2v2h2v2h-2v2h2V8h2V6h4V4h-2V2zM26%2010h4v2h-4zM28%200h2v2h-2zM20%206h2v2h-2zM10%2018h2v2h-2zM22%2010h-2v4h6v-2h-4zM26%2016h-4v2h2v2h-2v-1.998h-2V20h-2v-2h2v-2h-2v-4h-2v4h-4v2h4v5h-2v-3h-2v5h6v-3h2v.002h2V22v3h2v-5h2v5h2v-2h2v-2h-2v-3h2v-2h-2v-2h-2zM8%2018v-2H0v2h4v2H0v5h2v-3h4v3h2v-3h2v-2H8z%22%2F%3E%3C%2Fsvg%3E');
}
.btn {
  width: 100%;
  height: 50px;
  padding-left: 16px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position-x: 94%;
  background-position-y: center;
  background-position: right 15px center;
  background-size: 10px;
  font-family: Titillium Web, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border-width: 1px;
  border-style: solid;
}
.btn[disabled] {
  opacity: 0.75;
}
div.btn {
  line-height: 40px;
  padding-top: 2px;
  padding-bottom: 2px;
}
div.btn img {
  height: 30px;
  margin-right: 20px;
}
.account-overview-footer .btn {
  margin-right: 16px;
}
.dark-button,
.light-button {
  text-indent: 10px;
  text-align: left;
  background-position-x: 95%;
  background-position-y: center;
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-image: url(../images/svg/arrow_chilli_right.svg);
}
.btn-small {
  height: 30px;
  width: 100px;
  padding: 0;
  line-height: 28px;
  box-sizing: border-box;
}
.btn-right-margin {
  margin-right: 10px;
}
.btn-plus-white {
  background-image: url(../images/svg/grey_plus.svg);
}
.btn-minus-white {
  background-image: url(../images/svg/grey_minus.svg);
}
.btn-plus-white,
.btn-minus-white {
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.btn-plus-white,
.btn-minus-white {
  border: 1px solid #333333;
  border-radius: 3px;
}
.btn-v2 {
  border-radius: 3px;
  width: auto;
  padding: 5px 10px;
  background-color: #333333;
  color: #FFFFFF;
  font-size: 14px;
  box-sizing: border-box;
  border: none;
}
.btn-v2.btn-clear {
  background-color: transparent;
  color: #333333;
  font-weight: 500;
}
.btn-v2 .checkbox {
  background-image: url(../images/svg/chk_white_unchecked.svg);
}
.btn-v2 .checkbox.checked {
  background-image: url(../images/svg/chk_white_checked.svg);
}
.btn-v3 {
  width: auto;
  padding: 10px;
  font-size: 14px;
  border: none;
  font-weight: 500;
}
.btn-text {
  font-size: 14px;
  margin: 0;
}
.btn-plus {
  background-image: url(../images/svg/grey_plus.svg);
}
.btn-minus {
  background-image: url(../images/svg/grey_minus.svg);
}
.btn-check.checked {
  background-image: url(../images/svg/chk_chilli_checked_noborder.svg);
}
.btn-minus,
.btn-plus,
.btn-check {
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  cursor: pointer;
  border: 1px solid #333333;
  border-radius: 3px;
}
.floating-action-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
  border-radius: 50px;
  box-shadow: 2px 5px 5px -2px #000;
  background-repeat: no-repeat;
  background-position: center;
}
.mobile-list {
  width: 50%;
  min-width: 400px;
  margin: auto;
  margin-top: 15px;
  float: left;
  padding: 15px;
  border-radius: 3px;
  box-sizing: border-box;
}
.bg-white .mobile-list,
.bg-view .mobile-list {
  padding: 0;
  background-color: transparent;
}
[class*="col-"] .mobile-list {
  min-width: initial;
  width: auto;
  float: none;
}
.mobile-list .list-group {
  border-radius: 3px;
  padding: 15px;
}
.mobile-list .list-group + .list-group {
  margin-top: 15px;
}
.mobile-list .list-subtitle {
  width: 100%;
  font-size: 16px;
  border: none;
  padding-bottom: 5px;
  margin-bottom: 0;
  border-bottom: 1px solid #EBEBEB;
  text-transform: none;
}
.mobile-list .list-subtitle .label {
  font-weight: 500;
}
.mobile-list .list-item {
  width: 100%;
  height: auto;
  margin: 0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 8px;
  cursor: pointer;
  padding: 4px 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mobile-list .list-item:focus {
  outline-width: 1px;
  background-position: right 10px center;
  padding-left: 10px;
}
.mobile-list .list-item.has-menu {
  background-image: url(../images/svg/menu_open.svg);
  background-size: 12px !important;
}
.mobile-list .list-item + .list-item {
  border-top: 1px solid #EBEBEB;
}
.mobile-list .list-item + .list-subtitle {
  margin-top: 10px;
}
.mobile-list .list-item[data-on] {
  background-size: 20px;
}
.mobile-list .list-item[data-on="true"] {
  background-image: url(../images/svg/chk_chilli_checked.svg);
}
.mobile-list .list-item[data-on="true"] .tile-icon {
  background-image: url(../images/svg/chk_chilli_checked.svg);
}
.mobile-list .list-item[data-on="false"] {
  background-image: url(../images/svg/chk_chilli_unchecked.svg);
}
.mobile-list .list-item[data-on="false"] .tile-icon {
  background-image: url(../images/svg/chk_chilli_unchecked.svg);
}
.mobile-list .list-item .tile-icon {
  display: block;
  width: 40px;
  height: 40px;
  float: left;
  border: none;
  background-color: transparent;
}
.mobile-list .list-item .tile-icon div {
  width: 22px;
  height: 22px;
  margin: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.mobile-list .list-item .label {
  display: block;
  width: auto;
  height: 40px;
  float: left;
  line-height: 40px;
  text-align: left;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
  text-indent: 0;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.mobile-list .list-item .additional-text {
  display: block;
  clear: both;
  font-size: 12px;
}
.mobile-list .list-item.no-action {
  background-image: none;
}
.mobile-list .list-item:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.mobile-list .list-item .line {
  height: 25px;
  margin-right: 15px;
}
.mobile-list .list-item .line .list-left {
  float: left;
}
.mobile-list .list-item .line .list-right {
  float: right;
}
.mobile-list .list-item,
.mobile-list .list-item .icon,
.mobile-list .list-item .label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*Doesn't have icon associated*/
.mobile-list [class="list-item"] .tile-icon {
  display: none;
}
[data-on] .tile-icon {
  background-repeat: no-repeat;
  background-position-x: 94%;
  background-position-y: center;
  background-position: center right 15px;
}
[data-on] .label {
  text-align: left !important;
  text-indent: 15px;
}
ul.table-list {
  width: 100%;
  padding: 15px;
  border-radius: 3px;
  display: table;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}
.form1 ul.table-list {
  padding: 0;
  background-color: transparent;
  text-align: left;
}
.form1 ul.table-list:only-child {
  margin-bottom: 13px;
}
ul.table-list li.row {
  display: table-row;
}
ul.table-list li.row.heading {
  font-weight: bold;
}
ul.table-list li.row:first-child .column {
  padding-top: 0;
}
ul.table-list li.row:last-child .column {
  border-bottom: none;
  padding-bottom: 0;
}
ul.table-list li.row .column {
  display: table-cell;
  padding: 8px 2px;
  border-bottom: 1px solid #333333;
}
ul.interactive-list li.row {
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
ul.interactive-list li.row[onclick]:not(.heading) {
  cursor: pointer;
}
ul.interactive-list li.row[onclick]:not(.heading):hover {
  opacity: 0.8;
}
ul.interactive-list li.row.heading .column:last-child {
  background-image: none;
}
ul.interactive-list li.row:last-child .column {
  padding-bottom: 8px;
}
ul.interactive-list li.row .column:last-child {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 8px;
  padding-right: 8px;
}
ul.interactive-list li.row.selected {
  font-weight: bold;
}
ul.flex-list {
  text-align: left;
}
ul.flex-list li {
  display: flex;
  padding: 10px 0;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #333333;
}
ul.flex-list li.row {
  margin-left: 0;
  margin-right: 0;
}
ul.flex-list li:first-child {
  padding-top: 0;
}
ul.flex-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
ul.flex-list li .column {
  flex: 0 0 auto;
}
ul.flex-list li .column.fill-width {
  flex-grow: 1;
}
.card {
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: white;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 15px;
  color: #333333;
}
.card.no-padding {
  padding: 0 !important;
}
.card.no-padding .card-body {
  padding: 8px;
}
.card.selectable {
  transition: all ease 0.2s;
}
.card.selectable:hover {
  cursor: pointer;
  opacity: 0.8;
  transform: scale(1.025);
}
.card.selectable:active {
  transform: scale(0.975);
}
.card.hero-card {
  height: 128px;
  padding: 0;
  text-align: center;
}
.card.hero-card .card-image {
  height: 100%;
}
.card .card-hero-text {
  font-size: 42px;
  font-weight: 500;
  line-height: 128px;
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.card .card-title {
  margin: 0;
  font-weight: 500;
}
.card .card-image {
  height: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px 12px 0 0;
}
.card .card-image.with-body {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .card .card-image {
    height: 96px;
  }
}
.card .card-overlay {
  background-color: rgba(51, 51, 51, 0.2);
  border-radius: 12px;
}
.card .card-body {
  text-align: left;
  border-radius: 0 0 12px 12px;
}
.card > .mobile-list {
  float: none;
  margin-top: 0;
}
.card .checkboxText {
  text-transform: none;
}
.card-body-title {
  font-weight: bold;
  font-size: 20px;
}
.menu-card {
  position: relative;
}
.menu-card .menu-card-label {
  font-weight: bold;
}
.menu-card .menu-card-text {
  width: calc(100% - 60px);
}
.menu-card .card-icon {
  position: absolute;
  right: 10px;
  top: calc((100% - 48px) / 2);
  height: 48px;
  width: 48px;
}
.menu-card .card-icon-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.home {
  color: #333333;
}
.home [class*="col-"] {
  margin-bottom: 15px;
}
.home .company-banner {
  background-color: #EBEBEB;
  height: 180px;
  padding-top: 30px;
  background-image: url(../images/whitelabelling/demo/marsh-banner.jpg);
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 992px) {
  .home .company-banner {
    display: none;
  }
}
.home .company-banner .company-logo {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  margin: auto;
  background-color: #FFFFFF;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .home .company-banner {
    height: 220px;
    padding-top: 40px;
  }
  .home .company-banner .company-logo {
    width: 140px;
    height: 140px;
  }
}
.home .card {
  text-align: center;
  cursor: pointer;
  padding: 8px;
}
.home .card.mock-card {
  min-height: 96px;
}
.home .card.hero-card {
  padding: 0;
}
.home h3,
.home p {
  margin: 0;
}
.home .home--action-bar {
  height: 84px;
  padding: 16px;
  margin-bottom: 60px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .home .home--action-bar {
    border-radius: 3px;
  }
}
.home .home--action-bar .owl-stage-outer {
  padding: 5px 0;
  padding-bottom: 15px;
}
.home .home--action-bar .owl-carousel {
  z-index: 0;
}
.home .home--action-bar .owl-carousel .owl-dots button.owl-dot span {
  width: 8px;
  height: 8px;
}
.home .home--action-bar .carousel-item {
  height: 70px;
  display: flex;
  padding: 15px !important;
  cursor: default;
}
.home .home--action-bar .action-text {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.home .home--action-bar .action-icon {
  height: 50%;
  flex: 0 1 auto;
  align-self: center;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.home .home--action-bar .action-icon svg {
  height: 100%;
  width: 20px;
}
.home .home--action-bar .action-button {
  padding: 10px;
  text-align: center;
  border-radius: 3px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.home .home--action-bar .action-button:active {
  opacity: 0.9;
}
.home .home--action-bar .action-button:hover {
  opacity: 0.8;
}
.home .home--activity {
  padding-top: 15px;
  border-top: 1px solid #EBEBEB;
}
.home .home--activity .card {
  padding: 5px 10px;
}
@media (min-width: 768px) {
  .home .home--activity .card {
    padding: 10px 15px;
  }
}
.home .home--activity .receipt-list {
  margin: 0;
  padding: 0;
  text-align: left;
}
.home .home--activity .receipt-list .list-item.no-activity {
  background-image: none !important;
}
#graphActivity {
  width: 103%;
  margin-left: -3%;
}
@media (min-width: 768px) {
  #graphActivity {
    width: 100%;
    margin: 0;
  }
}
#graphActivity .ct-line {
  stroke: #009397;
  stroke-width: 3px;
}
#graphActivity .ct-point {
  stroke: #009397;
  stroke-width: 0;
}
#graphActivity .ct-point:last-child {
  stroke-width: 8px;
}
#graphActivity .ct-area {
  fill: rgba(0, 147, 151, 0.25);
  fill-opacity: 0.8;
}
@media (min-width: 768px) {
  #activity {
    display: none;
  }
}
.receipt-list .list-subtitle .label {
  font-size: 14px;
}
.receipt-list .list-item {
  padding: 10px 0 !important;
}
.receipt-list .list-item.has-icon .tile-icon {
  background-color: #F6F6F6;
  border-radius: 40px;
  margin-right: 10px;
}
.receipt-list .list-item.has-icon .tile-icon > div,
.receipt-list .list-item.has-icon .tile-icon > svg {
  width: 20px;
  height: 20px;
  margin: 10px;
}
.receipt-list .list-item.has-icon .tile-icon > .svg--icon-topup {
  width: 30px;
  margin-left: 5px;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 12px;
}
.receipt-list p {
  margin: 0;
}
.receipt-list .subtle {
  color: #808080;
}
#map {
  position: relative;
  height: 140px;
  background-position: top center;
  background-size: cover;
}
#map + .receipt {
  margin-top: 10px;
}
@media (min-width: 768px) {
  #map {
    width: 100%;
    margin: 0;
  }
}
.receipt {
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  color: #333333;
  font-size: 14px;
}
.receipt .receipt-section {
  box-sizing: border-box;
  padding: 10px 0;
  border-bottom: 1px solid #EBEBEB;
}
.receipt .receipt-section.receipt-section--dark {
  background-color: rgba(0, 191, 143, 0.8);
  color: #FFFFFF;
}
.receipt .receipt-section:last-child {
  border-bottom: none;
}
.receipt p {
  margin: 0;
}
.receipt .subtle {
  color: #808080;
}
.receipt .upay-text-logo {
  height: 20px;
}
.receipt table {
  width: 100%;
}
.receipt table th:last-child,
.receipt table td:last-child {
  text-align: right;
}
.receipt table tbody {
  border-top: 1px solid #EBEBEB;
  padding: 2px 0;
}
.receipt table tbody hr {
  margin: 2px;
  border-top: none;
  border-color: #EBEBEB;
}
.receipt table .payment-method-row {
  text-indent: 10px;
}
.receipt-card {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .receipt-card {
    margin-top: 16px;
  }
  .receipt-card.no-padding .card-body {
    padding: 16px;
  }
}
.voucher {
  background-color: rgba(255, 255, 255, 0.75);
  color: #333333;
  margin-top: 30px;
  text-align: center;
  border-radius: 3px;
}
.voucher .code-wrap {
  padding-top: 15px;
}
.voucher .code-wrap .qr-code-wrap {
  padding: 10px;
  padding-bottom: 6px;
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 3px;
  width: 100%;
}
.voucher .code-wrap .qr-code-wrap img {
  width: 200px;
  max-width: 40%;
}
.voucher .code-wrap p:first-child {
  margin-top: 0;
  margin-bottom: 15px;
}
.voucher .content {
  color: #333333;
  padding: 15px;
}
.voucher .content .content-inner {
  border-top: 1px solid #333333;
}
.voucher .content .content-inner p {
  margin: 5px 0;
}
.voucher .content .content-inner p:first-child {
  margin-top: 15px;
}
.buy-voucher-list .buy-voucher-text {
  width: 90%;
  word-wrap: break-word;
  display: inline-block;
}
.buy-voucher-list .btn-plus {
  width: 40px;
  background-image: url(../images/svg/grey_plus.svg);
  border: 1px solid #333333;
  border-radius: 3px;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.buy-voucher-list .btn-plus:hover {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.buy-voucher-list .btn-plus:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.voucher-list .list-item {
  padding: 5px 0;
  margin-top: 15px;
  display: flex;
  flex-direction: row;
}
.voucher-list .list-item:first-child {
  margin-top: 0;
}
.voucher-list .voucher-list-heading {
  margin-top: 15px;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid #333333;
}
.voucher-list .voucher-list-heading:first-child {
  margin-top: 0;
}
#divPromotions {
  max-width: 1170px;
  color: #333333;
  text-align: center;
}
#divMaxAccountDays span {
  font-size: 14px;
  float: left;
}
.noPromotions-message {
  background-color: rgba(255, 255, 255, 0.8);
  float: left;
  padding: 20px;
  border-radius: 3px;
  margin-top: 10px;
}
#divPromotions .promotion-card {
  margin-bottom: 15px;
}
.promotion-card.card {
  position: relative;
}
.promotion-card.card .card-image {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.promotion-card.card .card-image .promo-description {
  flex-grow: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.promotion-card.card .card-image .voucher-title {
  padding: 4px;
  font-weight: bold;
}
.promotion-card.card .card-image .voucher-text {
  padding: 4px;
}
.promotion-card.card .card-image .order-info-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}
.promotion-card.card .card-body {
  display: flex;
  flex-direction: row;
  font-weight: 500;
}
.promotion-card.card .card-body .promo-description {
  flex-grow: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.promotion-card.card .card-body .voucher-title {
  padding: 4px;
  font-weight: bold;
}
.promotion-card.card .card-body .voucher-text {
  padding: 4px;
}
.promotion-card.card .card-body .promo-chevron-icon {
  padding-left: 10px;
  height: 16px;
  line-height: 26px;
}
.promotion-card.card .card-body .promo-chevron-icon svg {
  height: 16px;
}
.promotion-card.card .promo-new-badge {
  position: absolute;
  padding: 3px;
  bottom: 8px;
  right: 8px;
  height: 22px;
  border-radius: 22px;
  background-color: white;
  box-shadow: 0 2px 2px -2px #111;
}
.promotion-card.card .promo-new-badge svg {
  width: 16px;
}
.promotion-card.card .promo-new-badge .fill-grey {
  fill: #009397;
}
.promotion-card.card .promo-new-badge span {
  line-height: 16px;
  font-size: 12px;
  font-weight: 600;
  margin: 0 3px;
  vertical-align: top;
}
.promo-accumulations {
  display: flex;
  flex-flow: wrap;
  margin-top: -8px;
}
.promo-accumulations.stamp-cols-6 .promo-accumulation {
  flex-basis: 16.66%;
}
.promo-accumulations.stamp-cols-5 .promo-accumulation {
  flex-basis: 20%;
}
.promo-accumulations.stamp-cols-4 .promo-accumulation {
  flex-basis: 25%;
}
@media (min-width: 768px) {
  .promo-accumulations {
    margin-top: -16px;
  }
}
.promo-accumulations .promo-accumulation {
  margin-top: 10px;
  flex: 0 0 20%;
  text-align: center;
}
@media (min-width: 768px) {
  .promo-accumulations .promo-accumulation {
    margin-top: 16px;
  }
}
.promo-accumulations .promo-accumulation .inner {
  margin: auto;
  width: 25px;
  height: 25px;
  line-height: 21px;
  border: 2px solid #FFFFFF;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  background-color: #FFFFFF;
  color: #333333;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}
.promo-accumulations .promo-accumulation .inner svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}
.promo-accumulations .promo-accumulation .inner svg,
.promo-accumulations .promo-accumulation .inner path {
  fill: #333333 !important;
  stroke: #333333 !important;
}
.promo-accumulations .promo-accumulation.claimed .inner {
  background-color: #FFFFFF;
}
.learn-more--image {
  width: 100%;
  height: 140px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.learn-more--outlet {
  text-align: center;
}
.learn-more--outlet .learn-more--outlet-image {
  display: inline-block;
  padding: 20px;
  margin-top: -30px;
  margin-bottom: -5px;
  border-radius: 100px;
}
.learn-more--outlet .learn-more--outlet-image > div {
  width: 54px;
  height: 54px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.learn-more--youtube {
  margin: 10px auto;
  width: 100%;
}
.learn-more--expander {
  border-bottom: 1px solid #EBEBEB;
}
.learn-more--expander:last-child {
  border-bottom: none;
}
.learn-more--expander .learn-more--expander--title {
  font-size: 18px;
  text-transform: uppercase;
}
.qp--group + .qp--group {
  margin-top: 15px;
}
.qp--group p {
  margin: 0;
  margin-bottom: 5px;
}
.claim-reward-wrap {
  height: 80px;
}
@media (min-width: 768px) {
  .claim-reward-wrap {
    height: 96px;
  }
}
.claim-reward-wrap .claim-reward-text {
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  color: white;
  text-shadow: rgba(0, 0, 0, 0.8) 0px 0px 3px;
}
.congratulations-wrap {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.5);
}
.congratulations-wrap .congratulations-body {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  background-color: white;
}
.congratulations-wrap .congratulations--promo-image {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.balloons {
  height: 100%;
  width: 100%;
  position: absolute;
  pointer-events: none;
}
.balloon {
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  display: block;
  height: 65px;
  opacity: 0.8;
  position: absolute;
  width: 50px;
  bottom: -20vh;
  opacity: 0;
}
.balloon:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: -5px;
  content: "";
  height: 0;
  left: 40%;
  position: absolute;
  width: 0;
  border-bottom: 10px solid white;
}
@keyframes flyingBalloon {
  from {
    bottom: -20vh;
    opacity: 1;
  }
  to {
    bottom: 110vh;
    opacity: 1;
  }
}
.promotions--site-select .checkbox-wrapper {
  margin: auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.promotions--site-select .checkbox-wrapper:hover {
  cursor: pointer;
}
.promotions--site-select .checkbox-wrapper:last-child {
  border-bottom: none;
}
.promotions--site-select .checkbox-wrapper .checkbox-label {
  display: flex;
  flex-direction: row-reverse;
  padding: 8px 0;
}
.promotions--site-select .checkbox-wrapper .checkbox-label .checkboxText {
  flex-grow: 1;
  font-size: 16px;
  padding-left: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.promotions--site-select .checkbox-wrapper .checkbox-label .checkbox {
  background-image: url(../images/svg/chk_chilli_unchecked.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.promotions--site-select .checkbox-wrapper .checkbox-label .checkbox.checked {
  background-image: url(../images/svg/chk_chilli_radio.svg);
}
/*@col-balloon: #009397;
@colours: @col-balloon, spin(@col-balloon, 20), spin(@col-balloon, -20), spin(@col-balloon, 40);
@coloursLength: length(@colours);

.eachBalloonTheme(@counter) when (@counter > 0) {
  .eachBalloonTheme((@counter - 1)); // next iteration

  @randomColour: extract(@colours, `(@{counter} % @{coloursLength}) + 1` );

  .balloon-@{counter} {
    background-color: @randomColour;

    &:after {
      border-bottom-color: @randomColour;
    }
  }
}

.eachBalloonTheme(60);*/
#notificationList {
  position: relative;
}
#notificationList .notification {
  position: relative;
  padding: 5px 0;
  border-top: 1px solid #EBEBEB;
  font-size: 14px;
}
#notificationList .notification.see-all {
  padding-top: 5px;
  text-align: center;
  cursor: pointer;
}
#notificationList .notification:first-child {
  border-top: none;
}
#notificationList .notification .btn-hide,
#notificationList .notification .btn-action {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  padding: 2px;
  background-repeat: no-repeat;
  background-position: center 18px;
  cursor: pointer;
}
#notificationList .notification .btn-action {
  right: 40px;
  background-size: 6px;
}
#notificationList .notification .btn-hide {
  right: 0;
  background-image: url(../images/svg/icons/chilli/bin_black.svg);
  background-size: 12px;
  border-left: 1px solid #EBEBEB;
}
#notificationList .notification .title,
#notificationList .notification .body {
  margin-right: 50px;
}
#notificationList .notification .title {
  font-weight: 500;
}
#notificationList .notification .title .when {
  margin-left: 6px;
  font-size: 12px;
  text-transform: none;
  color: #666666;
}
#notificationList .notification .body {
  overflow-wrap: break-word;
}
.notification-alert-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 11;
}
.notification-alert {
  position: fixed;
  margin: auto;
  width: 96%;
  left: 2%;
  top: -100px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #EBEBEB;
  z-index: 12;
  box-shadow: 0 5px 5px -5px #111;
}
.notification-alert .title,
.notification-alert .message {
  margin-right: 14px;
}
.notification-alert .title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}
.notification-alert .message {
  font-size: 14px;
}
.notification-alert .btn-hide {
  position: absolute;
  margin-top: -7px;
  top: 50%;
  right: 15px;
  width: 14px;
  height: 14px;
  background-image: url(../images/svg/remove_grey.svg);
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.doc-info-text {
  width: 98%;
  padding: 15px;
  margin: auto;
  margin-top: 15px;
  border-radius: 3px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.75);
}
#divDocList {
  margin-top: 20px;
  width: 100%;
}
#divDocList .divDoc {
  display: inline-block;
  vertical-align: top;
  color: #333333;
  padding: 10px;
  width: 23%;
  margin-left: 1%;
  margin-right: 1%;
  border-radius: 3px;
  margin-bottom: 1%;
  line-height: 22px;
  cursor: pointer;
  filter: alpha(opacity=100);
  opacity: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.75);
}
#divDocList .divDoc:hover {
  filter: alpha(opacity=75);
  opacity: 0.75;
}
@media screen and (max-width: 1024px) {
  #divDocList .divDoc {
    width: 31.3333%;
  }
}
@media screen and (max-width: 768px) {
  #divDocList .divDoc {
    width: 48%;
  }
}
#divDocList .divDocIcon {
  float: left;
  width: 20px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  background-image: url('../images/svg/icons/chilli/documents.svg');
}
#divDocList .divDocName {
  float: left;
  margin-left: 10px;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  width: calc(100% - 30px);
}
.card.document-card {
  cursor: pointer;
}
.card.document-card .card-image {
  display: flex;
}
.card.document-card .card-hero-text {
  display: inline-block;
  padding-left: 10px;
  padding-right: 5px;
  text-transform: capitalize;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
}
@media (min-height: 768px) {
  .card.document-card .card-hero-text {
    font-size: 28px;
    line-height: 36px;
  }
}
.card.document-card .card-overlay {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-payments-wrap {
  margin-top: 10px;
  width: 100%;
  color: #333333;
}
.otherPayments-list {
  width: 530px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  padding: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.otherPayments-list .otherPayments.row {
  height: 28px;
  line-height: 28px;
  padding: 5px 0;
  border-top: 1px solid #333333;
  background-position-x: right;
  background-position-y: 14px;
  background-position: top 14px right 10px;
  background-repeat: no-repeat;
  cursor: pointer;
  background-image: url('../images/svg/arrow_chilli_right.svg');
}
.otherPayments-list .otherPayments.row.header {
  width: 100%;
  font-weight: bold;
  border-top: 0;
  padding: 0;
  background-image: none;
  font-size: 16px;
  text-transform: uppercase;
  cursor: default;
}
.otherPayments-list .column {
  display: inline-block;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 5px;
  font-size: 14px;
}
.otherPayments-list .column.header {
  padding: 0;
}
.otherPayments-list .column.description {
  width: 150px;
  height: 28px;
}
.otherPayments-list .column.activeFrom {
  width: 150px;
  height: 28px;
}
.otherPayments-list .column.activeTo {
  width: 150px;
  height: 28px;
}
@media screen and (max-width: 768px) {
  .otherPayments-list {
    width: 100%;
  }
}
.otherPayments-info.heading {
  font-weight: bold;
}
.otherPayments-info.heading .function.row {
  background-image: none !important;
}
.op-wrap {
  color: #333333;
  margin-top: 15px;
  text-align: left;
}
.op-wrap .opayments-info {
  margin-bottom: 10px;
}
.op-wrap .opayments-info .checkbox-wrapper {
  margin-bottom: 8px;
}
.op-wrap .opayments-info .optextbox {
  width: 100%;
  margin: 0;
  padding: 14px 15px;
  line-height: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #333333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  outline: none;
  background-color: transparent;
}
.op-wrap .form-text-header {
  margin: 0;
  margin-bottom: 15px;
}
.op-wrap .form-text-header .left-text {
  padding: 0;
}
#divOtherPaymentForm .table-list {
  margin-bottom: 0;
}
.events-list .card + .card {
  margin-top: 15px;
}
.events-list .card .card-body {
  padding: 10px;
  background-image: url('../images/svg/arrow_chilli_right.svg');
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 8px;
}
.view-booking--booking {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #EBEBEB;
}
.view-booking--booking:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.view-booking--booking p {
  margin: 0;
}
.view-booking--booking .view-booking--guests {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #333333;
}
.view-booking--booking .view-booking--menu-choices {
  padding-left: 10px;
}
.event-bookings {
  /* Calendar */
}
.event-bookings p {
  font-size: 14px;
}
.event-bookings .date-ddl {
  padding: 10px;
  padding-right: 22px;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid #333333;
  background-image: url(../images/svg/arrow_chilli_grey_down.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.event-bookings .ddl-label {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.event-bookings .datepicker {
  width: 100%;
  border: none;
  background-color: transparent;
}
.event-bookings .datepicker .datepicker--cell.-selected-,
.event-bookings .datepicker .datepicker--cell.-selected-.-current- {
  background-color: #009397;
}
.event-bookings .date-list .date-list--date {
  border-bottom: 1px solid #EBEBEB;
  padding: 5px 0;
}
.event-bookings .date-list .date-list--date.selected {
  background-image: url(../images/svg/chk_chilli_checked.svg);
  background-position: right center;
  background-repeat: no-repeat;
}
.event-bookings .date-list .date-list--date > p {
  margin: 0;
}
.event-bookings .date-list .date-list--date > p:first-child {
  font-weight: 500;
}
.event-bookings .date-list .date-list--date > p:first-child span {
  font-weight: 400;
}
.event-bookings .btn-v2 .checkbox-wrapper .checkboxText {
  text-align: left;
}
.eb--category-list {
  padding: 10px 0;
  font-size: 14px;
}
.eb--category-list .eb--category .eb--category-heading {
  padding: 5px 0;
}
.eb--category-list .eb--category .eb--category-heading .title {
  font-weight: 500;
}
.eb--category-list .eb--category .eb--category-heading .selection-message {
  font-size: 12px;
}
.eb--category-list .eb--category .eb--category-item {
  padding: 10px 0;
  border-top: 1px solid #333333;
}
.eb--category-list .eb--category .eb--category-item .eb--category-item--wrapper {
  display: flex;
}
.eb--category-list .eb--category .eb--category-item .eb--category-item--description {
  flex-grow: 1;
}
.eb--category-list .eb--category .eb--category-item .eb--category-item--description span span.not-matching-allergence {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: gray;
  color: white;
  text-align: center;
  border-radius: 50px;
  margin-left: 10px;
  font-weight: bold;
  pointer-events: none;
  cursor: pointer;
}
.eb--category-list .eb--category .eb--category-item .eb--category-item--description span span.matching-allergence {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: red;
  color: white;
  text-align: center;
  border-radius: 50px;
  margin-left: 10px;
  font-weight: bold;
  pointer-events: none;
  cursor: pointer;
}
.eb--category-list .eb--category .eb--category-item .eb--category-item--checkbox {
  width: 20px;
}
.eb--category-list .eb--category .eb--category-item .eb--category-item--controls {
  padding-left: 10px;
  display: flex;
}
.eb--category-list .eb--category .eb--category-item .eb--category-item--controls .quantity {
  min-width: 20px;
  line-height: 20px;
  text-align: center;
}
.eb--category-list .eb--category .eb--category-item + .eb--category-heading {
  margin-top: 10px;
}
.eb--category-list .eb--category .eb--category-item.unavailable {
  opacity: 0.5;
  color: red;
}
.eb--category-list .eb--category .eb--category-item .eb--category-item--availability {
  font-size: 12px;
}
.events-hub--image {
  margin: -15px;
  margin-bottom: 0;
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.eb--review--allergen-icon {
  font-size: 12px;
  margin-left: 5px;
  display: inline;
  color: red;
  background-color: rgba(255, 255, 255, 0.75);
  width: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 3px;
}
.eb--review--allergen-info {
  margin-top: -15px;
  font-weight: 400;
  font-size: 12px;
}
.eb--review--allergen-info .title {
  font-weight: 500;
  font-size: 14px;
}
.eb--review--menu-option-list {
  font-weight: 500;
}
.eb--review--menu-option-list--item p {
  margin: 0;
}
.eb--review--date-list {
  font-size: 14px;
}
.eb--review--date-list .eb--review--date-list--item {
  margin-bottom: 10px;
}
.eb--review--date-list .eb--review--date-list--item > span:first-child {
  font-weight: 500;
}
.eb--review--date-list .eb--review--guest-list {
  border-top: 1px solid #333333;
}
.eb--review--date-list .eb--review--guest-list .eb--review--guest-list--item {
  margin-top: 5px;
}
.eb--review--date-list .eb--review--guest-list .eb--review--guest-list--item > span:first-child {
  font-weight: 500;
}
.eb--review--totals-list {
  font-size: 15px;
}
.eb--review--totals-list .eb--review--totals-list--item {
  font-weight: bold;
}
.eb--review--textarea {
  width: 100%;
  padding: 10px;
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  color: #333333;
  outline-color: #009397;
  outline: none;
  resize: none;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  clear: both;
  margin-top: 20px;
  margin-bottom: 20px;
}
/*#region Fulfilment Screen*/
#divFulfilmentSettings {
  margin-top: 10px;
}
.fulfilment-settings {
  border-radius: 3px;
  text-align: left;
  box-sizing: border-box;
}
.fulfilment-settings .left,
.fulfilment-settings .right {
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .fulfilment-settings .left,
  .fulfilment-settings .right {
    width: 50%;
    float: left;
  }
}
@media (min-width: 768px) {
  .fulfilment-settings .right {
    padding-left: 14px;
    border-left: 1px solid #333333;
  }
}
.fulfilment-settings .left {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .fulfilment-settings .left {
    margin-bottom: 0;
    padding-right: 15px;
  }
}
.fulfilment-settings span.heading {
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: left;
}
.fulfilment-settings .checkbox-wrapper {
  width: 48%;
  float: left;
}
.fulfilment-settings .drop-down-list .selected-item {
  width: auto;
}
/*#endregion*/
/*#region Basket*/
.basket-wrap {
  width: 100%;
  padding: 15px;
  border-radius: 3px;
  position: relative;
}
.basket-wrap .basket-header {
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
.basket-wrap .checkbox {
  background-image: url(../images/svg/chk_white_unchecked.svg);
}
.basket-wrap .checkbox.checked {
  background-image: url(../images/svg/chk_white_checked.svg);
}
.basket-wrap .items .item {
  padding: 6px 0;
  border-top: 1px solid #FFFFFF;
  position: relative;
}
.basket-wrap .items .item .description {
  margin-bottom: 5px;
}
.basket-wrap .items .item .price {
  float: left;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
}
.basket-wrap .items .item .controls {
  float: right;
}
.basket-wrap .items .item .controls div {
  width: 18px;
  height: 18px;
  float: left;
}
.basket-wrap .items .item .controls .btn-remove,
.basket-wrap .items .item .controls .btn-edit-item {
  cursor: pointer;
}
.basket-wrap .items .item .controls .btn-minus,
.basket-wrap .items .item .controls .btn-plus,
.basket-wrap .items .item .controls .btn-remove {
  width: 18px;
  height: 18px;
  border: 1px solid #FFFFFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-right: 4px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.basket-wrap .items .item .controls .btn-plus {
  background-image: url(../images/svg/chk_chilli_white_plus.svg);
}
.basket-wrap .items .item .controls .btn-minus {
  background-image: url(../images/svg/chk_chilli_white_minus.svg);
}
.basket-wrap .items .item .controls .btn-remove {
  margin-right: 0;
  background-image: url(../images/svg/remove.svg);
}
.basket-wrap .items .item .controls .btn-radio.checked {
  background-image: url(../images/svg/chk_chilli_radio.svg);
}
.basket-wrap .items .item .controls .btn-edit-item {
  width: 66px;
  margin-top: 4px;
  border: 1px solid #FFFFFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
.basket-wrap .items .item .component-group {
  clear: both;
  float: left;
  font-weight: normal;
}
.basket-wrap .items .item .component-group.first {
  margin-top: 5px;
}
.basket-wrap .items .item .component-item {
  height: 22px;
  font-style: italic;
}
.basket-wrap .basket-footer {
  padding-top: 6px;
  border-top: 1px solid #FFFFFF;
}
.order-confirmation-basket.col-1 {
  float: right;
}
@media screen and (max-width: 1024px) {
  .order-confirmation-basket.col-1 {
    float: none;
    margin: auto;
  }
}
.basket-wrap.side .basket-header {
  font-size: 13px;
}
.basket-wrap.side .items {
  overflow-y: auto;
  max-height: 500px;
}
.basket-wrap.side .items .item {
  font-size: 14px;
}
.right.favourites .basket-wrap.side .description.column,
#divPaymentOptionsRight .basket-wrap.side .description.column {
  width: 182px;
}
.right.favourites .basket-wrap.side .quantity.column,
#divPaymentOptionsRight .basket-wrap.side .quantity.column {
  width: 36px;
}
#divTopItemSummary.basket-wrap.side .description.column {
  width: 180px;
}
#divTopItemSummary.basket-wrap.side .cost.column {
  width: 60px;
}
@media screen and (max-width: 1024px) {
  .basket-wrap.side .description.column {
    width: 70% !important;
  }
  .basket-wrap.side .quantity.column,
  .basket-wrap.side .cost.column {
    width: 15% !important;
  }
  .basket-wrap.side .component-group {
    width: 100% !important;
  }
  .basket-wrap.side .controls.column {
    width: 60px;
    position: static;
    float: right;
    margin-top: 6px;
    margin-bottom: 6px;
  }
}
/*#endregion*/
/*#region Shop Main*/
.bg-box.order-details-header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  text-align: center;
  box-shadow: inset 1px 6px 9px -6px #333333;
}
.category-header {
  width: 100%;
  margin-bottom: 15px;
  color: #333333;
  border-right: 1px solid #EBEBEB;
  padding-right: 15px;
}
.side-drawer .category-header {
  border-right: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.category-header .top-level-category {
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.category-header .top-level-category.favourites {
  border-bottom: 1px solid #EBEBEB;
}
.category-header .top-level-category:hover {
  text-indent: 5px;
}
.category-header .top-level-category.selected {
  background-color: rgba(255, 255, 255, 0.75);
  margin: 0 -15px;
  padding: 10px 15px;
}
.category-wrap {
  color: #333333;
}
.category-wrap .product-group-title {
  padding: 10px 0;
  margin-bottom: 5px;
  font-size: 26px;
  text-transform: uppercase;
}
.category-wrap .product-group-title .favourites-remove-icon {
  float: right;
  width: 30px;
  height: 30px;
  background-image: url('../images/svg/icons/chilli/big-garbage-bin.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  cursor: pointer;
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.category-wrap .product-group-title .favourites-remove-icon:hover {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.category-wrap .product-group-title .favourites-remove-icon:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.category-wrap .product-group-title .favourites-remove-icon:hover {
  background-image: url('../images/svg/icons/chilli/bin_red.svg');
}
.category-wrap .product-outer {
  border-bottom: 1px solid #333333;
}
.category-wrap .product-outer:last-child {
  border-bottom: none;
}
.category-wrap .favourites-remove-icon {
  float: right;
  width: 18px;
  height: 18px;
  background-image: url('../images/svg/icons/chilli/big-garbage-bin.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  margin-right: 5px;
  cursor: pointer;
  display: inline-block;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.category-wrap .favourites-remove-icon:hover {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.category-wrap .favourites-remove-icon:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.category-wrap .favourites-remove-icon:hover {
  background-image: url('../images/svg/icons/chilli/bin_red.svg');
}
.fav-padding {
  padding-bottom: 25px;
}
.product-group .product {
  padding: 15px 0;
  position: relative;
  min-height: 20px;
}
.product-group .product.prod-unavailable {
  color: #B02429;
}
.product-group .product.prod-removed {
  text-decoration: line-through;
  font-weight: bold;
  color: rgba(51, 51, 51, 0.25);
}
.component-group.table-list {
  background-color: transparent;
  padding: 10px 0;
}
.component-group.table-list .row .column {
  border-bottom: none;
  padding: 5px 2px;
}
.component-group .component-item {
  padding: 10px 0;
  position: relative;
  min-height: 20px;
}
.product .product-fav-quantity {
  margin-right: 5px;
  float: left;
  font-size: 14px;
}
.allergen-info {
  margin-bottom: 2px;
  font-size: 14px;
  border-radius: 0 0 3px 3px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .allergen-info {
    margin-top: -5px;
  }
}
.allergen-info .title {
  font-weight: 500;
  font-size: 14px;
}
.additional-info {
  margin-bottom: 2px;
  font-size: 14px;
  border-radius: 0 0 3px 3px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .additional-info {
    margin-top: -10px;
  }
}
.additional-info .title {
  font-weight: 500;
  font-size: 14px;
}
.no-favourites {
  padding: 10px;
}
.product-nutrition {
  width: 0;
  height: 50px;
  background-color: #FFFFFF;
  z-index: 1000;
  left: 70px;
  position: absolute;
  top: 0;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  overflow: hidden;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.product-nutrition[data-open=open] {
  width: 540px;
}
.div_nutritionalinfo {
  border: 2px solid #009397;
  width: 40px;
  height: 40px;
  -webkit-border-top-left-radius: 8px;
  border-top-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-left: 27px;
  margin-top: 3px;
}
.component-item .controls .btn-radio {
  width: 20px;
  height: 20px;
  background-image: url(../images/svg/chk_chilli_unchecked.svg);
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
}
.component-item .controls .btn-radio.checked {
  background-image: url(../images/svg/chk_chilli_radio.svg);
}
.product.product-fav,
.component-item.component-fav {
  display: block;
}
.product.product-fav.prod-unavailable,
.component-item.component-fav.prod-unavailable {
  color: #B02429;
}
.product.product-fav.prod-removed,
.component-item.component-fav.prod-removed {
  text-decoration: line-through;
  font-weight: bold;
  color: rgba(51, 51, 51, 0.25);
}
.component-item.component-fav {
  margin-left: 20px;
}
.product,
.component-item {
  display: flex;
  align-items: center;
}
.product .product-info,
.component-item .product-info {
  display: flex;
  flex-grow: 1;
  padding-right: 10px;
  min-width: 0;
}
.product .product-description,
.component-item .product-description,
.product .item-description,
.component-item .item-description {
  flex: 1 0 auto;
  font-size: 14px;
  float: left;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 500;
}
.product .product-description.fav,
.component-item .product-description.fav,
.product .item-description.fav,
.component-item .item-description.fav {
  width: 60%;
}
.product .allergen-button,
.component-item .allergen-button {
  flex: 0 0 auto;
  width: 10px;
  text-align: center;
  margin-right: 6px;
  font-size: 13px;
  border-radius: 3px;
  text-transform: uppercase;
  cursor: pointer;
  color: #009397;
  font-weight: bold;
  background-color: #FFFFFF;
}
.product .additional-info-button,
.component-item .additional-info-button {
  flex: 0 0 auto;
  width: 10px;
  text-align: center;
  padding: 0 4px;
  margin-right: 6px;
  font-size: 13px;
  border-radius: 3px;
  text-transform: uppercase;
  cursor: pointer;
  color: #333333;
  font-weight: bold;
  background-color: #FFFFFF;
}
.product .controls,
.component-item .controls {
  display: flex;
}
.product .controls div,
.component-item .controls div,
.product .controls input,
.component-item .controls input {
  height: 18px;
  background-repeat: no-repeat;
  border: 1px solid #333333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.product .controls input:focus,
.component-item .controls input:focus,
.product .controls input:active,
.component-item .controls input:active {
  outline: none;
}
.product .controls .basket-count,
.component-item .controls .basket-count {
  border: none;
  width: 20px;
  min-width: 10px;
  margin: 0 2px;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  padding: 0 5px;
  background-color: transparent;
}
.product .controls .btn-select,
.component-item .controls .btn-select,
.product .controls .btn-edit-item,
.component-item .controls .btn-edit-item {
  cursor: pointer;
  width: 66px;
  background-position: center;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
.product .controls .btn-select,
.component-item .controls .btn-select {
  line-height: 18px;
  text-align: center;
}
.component-min-max {
  font-size: 12px;
  margin-top: -13px;
  margin-bottom: 10px;
}
.controls .btn-minus,
.controls .btn-plus,
.controls .btn-radio {
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.controls .btn-minus:hover,
.controls .btn-plus:hover,
.controls .btn-radio:hover {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.controls .btn-minus:hover:active,
.controls .btn-plus:hover:active,
.controls .btn-radio:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.basket-wrap .btn-clear-basket {
  height: 18px;
  padding: 0 8px;
  float: right;
  border: 1px solid #FFFFFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  line-height: 18px;
  font-size: 10px;
  cursor: pointer;
}
.component-group-header {
  padding-bottom: 15px;
  border-bottom: 1px solid #333333;
}
.component-groups .component-group {
  margin-bottom: 15px;
}
.component-groups .component-group:last-child {
  margin-bottom: 0;
}
.component-group.error .error-icon,
.component-group.error .component-error {
  display: block;
}
.top-item-title {
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
}
.error-icon {
  width: auto;
  float: left;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #C8102E;
  padding: 4px;
  margin-right: 10px;
  line-height: 16px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: none;
}
.favourites .error-icon {
  color: #FFFFFF;
  border-color: #C8102E !important;
  display: block !important;
  margin-top: -4px;
  cursor: help;
}
.group-description {
  float: left;
  text-transform: uppercase;
  font-weight: bold;
}
.group-message {
  /*margin-right: 20px;*/
  text-align: right;
}
.component-error {
  color: #009397;
  padding: 10px 0;
  font-size: 14px;
  display: none;
}
/*#endregion*/
/*#region Checkout*/
#divShopCheckout {
  margin-top: 20px;
}
#divShopCheckout > .left {
  width: 382px;
  float: left;
}
#divShopCheckout > .right {
  width: 570px;
  margin-left: 8px;
  float: left;
}
#divShopCheckout > .right .fulfilment-settings {
  width: 100%;
}
#divShopCheckout #txtAdditionalInfo {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  color: #333333;
  outline-color: #009397;
  outline: none;
  resize: none;
  border: none;
  border-radius: 3px;
  font-weight: normal;
  clear: both;
}
@media (min-width: 768px) {
  #divShopCheckout #txtAdditionalInfo {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  #divShopCheckout > .left,
  #divShopCheckout > .right {
    width: 100%;
    max-width: 640px;
    float: none;
    margin: auto;
  }
  #divShopCheckout .left .basket-wrap {
    float: none;
  }
}
#txtFavouriteName {
  margin-top: 20px;
  padding: 15px 10px;
  border-radius: 3px;
}
.order-confirmation-basket button,
.order-confirmation-basket .btn {
  margin: 0;
  margin-top: 20px;
  width: 100%;
}
/*#endregion*/
#divShopMenuBar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 3%;
  background-color: #333333;
  box-shadow: 0 5px 5px -5px #111;
}
#divShopMenuBar .shop-menu-button {
  width: 100%;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  cursor: pointer;
  box-sizing: border-box;
}
#divShopMenuBar .shop-menu-button#mobShopMenuButton {
  text-align: right;
  padding-right: 20px;
  background-image: url(../images/svg/menu_open.svg);
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 20px;
}
.order-location .card-image {
  height: 128px;
  position: relative;
}
.order-location-closed {
  opacity: 0.5;
}
.order-location-closed .order-location-closed-banner {
  padding: 10px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  background-color: rgba(51, 51, 51, 0.75);
  color: #FFFFFF;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.order-banner {
  padding: 10px;
  color: #009397;
}
@media (min-width: 768px) {
  .order-banner {
    display: none;
  }
}
.order-banner p {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .order-location {
    box-shadow: none;
  }
  .order-location .card-image {
    border-radius: 0;
  }
}
.order-location-description {
  padding: 0 10px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .order-location-description {
    margin: 10px 0;
  }
}
.order-location-description .order-location-description-text {
  margin-left: 6px;
  flex-grow: 1;
  width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .order-location-description .order-location-description-text {
    font-size: 16px;
  }
}
.order-location-info-image {
  height: 120px;
  margin-bottom: 10px;
  background-size: cover;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .order-location-info-image {
    height: 200px;
  }
}
.order-location-opening-times > p {
  margin: 0;
}
.order-select {
  font-size: 12px;
}
.order-icon {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-icon svg {
  width: 12px;
  height: 12px;
}
.order-select-icon {
  background-color: #009397;
  background-image: url(../images/svg/white_forward.svg);
}
.order-info-icon {
  background-color: #009397;
  background-image: url(../images/svg/white_info.svg);
  background-size: auto 12px;
}
.order-product-wrap {
  margin-bottom: 100px;
}
#orderDatePicker {
  margin: -15px;
}
#orderDatePicker .datepicker {
  width: 100%;
  border: none;
  border-radius: 0;
}
.order-details-locations {
  margin-left: -5px;
  margin-Right: -5px;
  margin-top: 5px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.order-details-location-selection {
  border: 1px solid #333333;
  border-radius: 3px;
  background-color: #FFFFFF;
  padding: 5px;
  display: inline-block;
  margin: 0 5px;
  margin-bottom: 5px;
}
.order-details-location-selection.selected {
  font-weight: bold;
  background-color: #009397;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.order-details--time-list-item {
  border: 1px solid #333333;
  border-radius: 3px;
  background-color: #FFFFFF;
  padding: 5px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 5px;
}
.order-details--time-list-item.selected {
  background-color: #009397;
  border-color: #009397;
  color: #FFFFFF;
}
.order-details--time-list-item[disabled] {
  opacity: 0.5;
}
.order-ddl {
  padding: 5px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid #333333;
  background-color: #FFFFFF;
}
.order-ddl .selected {
  color: #009397;
  border-color: #009397;
}
.order-location-group-title {
  margin-left: 15px;
  margin-right: 15px;
}
.order-location-group .order-location-item {
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 10px;
}
.order-location-info-button,
.order-location-favourite-button {
  position: absolute;
  padding: 10px;
}
.order-location-info-button {
  bottom: 0;
  left: 0;
}
.order-location-favourite-button {
  top: 0;
  right: 0;
}
.order-section {
  padding: 15px 0;
  background-color: #FFFFFF;
  box-shadow: inset 0 -4px 4px -4px #666;
  /*@media (min-width: 768px) {
    background-color: transparent;
    box-shadow: none;
  }*/
}
.order-section .order-section-title {
  flex-grow: 1;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #009397;
}
.order-categories {
  margin-top: 15px;
  padding: 0 20px;
}
.order-item {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.order-item.order-item-unavailable {
  opacity: 0.6;
}
.order-item .order-item-description {
  font-weight: bold;
  margin: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
}
.order-item .order-item-description.order-item-long-description {
  line-height: 14px;
  height: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-item .order-product-deposit {
  text-align: left;
  margin-left: 5px;
  font-size: 12px;
}
.order-item .order-select-icon {
  margin: auto;
}
.order-sold-out-banner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  transform: rotate(-15deg);
}
.order-sold-out-banner > div {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  padding: 5px;
  font-weight: bold;
  color: white;
}
.order-item-image {
  margin-bottom: 8px;
  width: 100%;
  padding-bottom: 100%;
  background-color: #FAFAFA;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.order-item-image.blank-image {
  background-image: url(../images/svg/no_image.svg);
  background-size: 32px;
}
.order-item-image .order-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  background-size: 12px;
}
.order-item-image .order-icon svg {
  width: 12px;
  height: 12px;
}
.order-item-image .order-favourites-icon {
  left: 0;
  top: 0;
}
.order-item-image .order-info-icon {
  right: 0;
  bottom: 0;
  background-size: auto 10px;
}
.order-favourites-icon {
  border: 1px solid #009397;
  background-color: #FFFFFF;
}
.order-favourites-icon.is-favourite {
  background-color: #009397;
}
.order-favourites-icon.is-favourite path {
  fill: #FFFFFF !important;
}
.order-search .order-search-wrap {
  display: flex;
  border-bottom: 1px solid #333333;
  align-items: center;
}
.order-search .order-search-wrap p {
  margin: 0;
  font-weight: 500;
}
.order-search .order-search-wrap #txtOrderSearch {
  padding: 5px 10px;
  flex-grow: 1;
  border: none;
  outline: none;
}
.order-search .order-search-wrap .order-search-icon {
  width: 20px;
}
.order-search-results {
  margin-top: 15px;
  padding: 0 20px;
}
.order-favourites .order-favourite-icon-outline {
  border: 1px solid #009397;
  text-align: center;
}
.order-favourites .order-favourite-icon-outline svg {
  width: 1.25rem;
}
.order-favourites .order-favourites-title {
  flex-grow: 1;
  padding: 0 1rem;
  font-weight: bold;
}
.order-favourites-expander {
  background-color: #009397;
  background-image: url(../images/svg/white_forward.svg);
  transform: rotate(90deg);
  transition: transform ease 0.5s;
}
.order-favourites.open .order-favourites-expander {
  transform: rotate(-90deg);
}
.order-favourite-items {
  display: flex;
  overflow-x: auto;
  margin-top: 10px;
  padding-bottom: 5px;
}
.order-favourite-items .order-item {
  width: 90px;
  margin-right: 10px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.order-location-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  background-color: #009397;
  color: #FFFFFF;
}
.order-location-footer p {
  margin: 0;
}
.order-location-footer .btn {
  padding: 5px 16px;
  height: auto;
}
#fabBasket #basketItemsCountMobile {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #009397;
  color: #FFFFFF;
  text-align: center;
  line-height: 20px;
}
.order-sub-section {
  padding: 10px 0;
  background-color: #D5D5D5;
  margin-bottom: 15px;
  cursor: pointer;
}
.order-sub-section > .container {
  display: flex;
  background-position: right 15px center;
  background-size: 12px;
  background-repeat: no-repeat;
  background-image: url(../images/svg/arrow_chilli_grey_down.svg);
}
.order-sub-section.category-open > .container {
  background-image: url(../images/svg/arrow_chilli_grey_up.svg);
}
.order-sub-section p {
  margin: 0;
}
.order-sub-section .order-sub-section-title {
  font-weight: 500;
  flex-grow: 1;
}
.order-back-icon {
  background-color: #009397;
  background-image: url(../images/svg/white_forward.svg);
  transform: rotate(180deg);
}
.order-products {
  padding: 0 20px;
}
.order-product-controls {
  display: flex;
  align-items: center;
}
.order-product-controls .order-basket-icon {
  margin-right: 5px;
}
.order-product-price {
  border-radius: 3px;
  border: 1px solid #009397;
  background-color: #FFFFFF;
  color: #009397;
  text-align: center;
  font-weight: 500;
  flex-grow: 1;
  padding: 2px 0;
  margin-left: 5px;
}
.order-basket-icon {
  margin-left: 1rem;
  background-color: #009397;
  background-image: url(../images/svg/white_basket.svg);
}
.order-components {
  padding: 0 20px;
}
.order-component-header {
  display: flex;
  align-items: center;
}
.order-component-header p {
  margin: 0;
}
.order-component-header p:first-child {
  margin-bottom: 5px;
}
.order-component-header .order-item-image {
  width: 80px;
  height: 80px;
  padding-bottom: 0;
  flex-shrink: 0;
  margin-left: 15px;
}
.order-item .order-basket-item-controls > div,
.order-component-item .order-basket-item-controls > div {
  flex-grow: 1;
}
.order-item .order-basket-item-controls .order-quantity,
.order-component-item .order-basket-item-controls .order-quantity {
  height: 26px;
  margin-right: 0;
  border: none;
  padding: 0 5px;
}
.order-item .order-basket-item-controls .order-icon,
.order-component-item .order-basket-item-controls .order-icon {
  height: 26px;
  margin-right: 0;
}
.order-item .order-basket-item-controls .order-minus-icon,
.order-component-item .order-basket-item-controls .order-minus-icon,
.order-item .order-basket-item-controls .order-add-icon,
.order-component-item .order-basket-item-controls .order-add-icon {
  background-color: transparent;
}
.order-item .order-basket-item-controls .order-minus-icon,
.order-component-item .order-basket-item-controls .order-minus-icon {
  background-image: url(../images/svg/grey_minus.svg);
}
.order-item .order-basket-item-controls .order-add-icon,
.order-component-item .order-basket-item-controls .order-add-icon {
  background-image: url(../images/svg/grey_plus.svg);
}
.order-selected-component .order-item-image {
  padding-bottom: 0;
}
.order-selected-component .order-selected-component-image {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 100%;
  background-color: #009397;
  background-image: url(../images/svg/white_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 64px;
  opacity: 0.75;
}
.order-section #btnFavourite {
  width: 32px;
  height: 32px;
  float: right;
  margin-top: 5px;
  margin-right: 5px;
}
.order-section #btnFavourite svg {
  width: 16px;
  height: 16px;
}
.order-product-info-image {
  height: 140px;
  background-position: center;
  background-size: cover;
  background-color: #FFFFFF;
}
.order-product-info-image #btnFavourite {
  width: 32px;
  height: 32px;
  float: right;
  margin-top: 5px;
  margin-right: 5px;
}
.order-product-info-image #btnFavourite svg {
  width: 16px;
  height: 16px;
}
.order-product-info-title {
  margin: 15px;
  margin-bottom: 0;
  font-weight: bold;
}
.order-product-info-deposit {
  margin: 15px;
  margin-bottom: 0;
  font-size: 12px;
}
.order-product-info-body {
  padding: 15px;
}
.order-product-info-body.order-product-info-body-light {
  background-color: #EBEBEB;
}
.order-product-info-body.order-product-info-body-dark {
  background-color: #333333;
  color: #FFFFFF;
}
.order-product-info-body p {
  margin: 0;
}
.order-product-info-body:last-child {
  border-bottom: none;
}
.order-product-info-body .order-product-info-deposit {
  margin: 0px;
}
.order-product-info-body .order-basket-item-controls {
  justify-content: center;
}
.order-product-info-body .order-basket-item-controls .order-icon {
  width: 48px;
  height: 48px;
  background-size: 48px;
  border-radius: 48px;
}
.order-product-info-body .order-basket-item-controls .order-quantity {
  height: 48px;
  line-height: 48px;
  font-size: 26px;
  border: none;
}
.order-product-info-body .order-basket-item-controls .order-minus-icon,
.order-product-info-body .order-basket-item-controls .order-add-icon {
  background-color: transparent;
}
.order-product-info-body .order-basket-item-controls .order-minus-icon {
  background-image: url(../images/svg/grey_minus.svg);
}
.order-product-info-body .order-basket-item-controls .order-add-icon {
  background-image: url(../images/svg/grey_plus.svg);
}
.order-nutrition-item-list {
  display: inline-flex;
  justify-content: space-around;
  width: 75%;
}
.order-nutrition-item {
  font-size: 12px;
  text-align: center;
}
.order-nutrition-item > p {
  margin-bottom: 5px;
}
.order-nutrition-item .order-nutrition-item-inner {
  border-radius: 48px;
  width: 48px;
  height: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.order-nutrition-item .order-nutrition-item-inner p {
  margin: 0;
  font-size: 12px;
}
.order-nutrition-item .order-nutrition-item-inner.high {
  background-color: #FF0000;
}
.order-nutrition-item .order-nutrition-item-inner.medium {
  background-color: #ff8900;
}
.order-nutrition-item .order-nutrition-item-inner.low {
  background-color: green;
}
.nutrition-energy .order-nutrition-item > p {
  display: none;
}
.nutrition-energy .order-nutrition-item .order-nutrition-item-inner {
  border-radius: 96px;
  width: 96px;
  height: 96px;
  background-color: transparent;
  border: 1px solid #009397;
  color: #009397;
}
.nutrition-energy {
  margin-left: 10px;
}
#fabBasket {
  background-image: url(../images/svg/grey_basket.svg);
  top: -53px;
  position: absolute;
}
.order-basket {
  padding: 15px 0;
}
.order-basket-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #333333;
}
.order-basket-item .order-basket-item-title {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.order-basket-item .order-basket-item-title > span {
  flex-grow: 1;
}
.order-basket-item .order-basket-item-title .order-info-icon {
  margin-left: 10px;
  background-size: 4px;
}
.order-basket-item .order-basket-item-component-deposit {
  text-align: right;
  font-size: 12px;
}
.order-basket-item .order-basket-item-line-total {
  font-weight: bold;
}
.order-basket-item-footer {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.order-basket-item-footer .order-basket-item-controls {
  justify-content: left;
}
.order-basket-item-controls {
  display: flex;
  flex-grow: 1;
}
.order-basket-item-controls .order-icon {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}
.order-basket-item-controls .order-quantity {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  margin-right: 10px;
  border-radius: 3px;
  border: 1px solid #333333;
}
.order-add-icon {
  background-color: #009397;
  background-size: 30px;
  background-image: url(../images/svg/chk_chilli_white_plus.svg);
}
.order-minus-icon {
  background-color: #333333;
  background-size: 30px;
  background-image: url(../images/svg/chk_chilli_white_minus.svg);
}
.order-remove-icon {
  background-color: #EBEBEB;
  background-size: 30px;
  background-image: url(../images/svg/remove.svg);
}
.order-basket-promo-code {
  display: flex;
}
.order-basket-promo-code p {
  margin: 0;
}
.order-basket-total {
  margin: 15px 0;
}
.order-basket-request textarea {
  width: 100%;
  border: 1px solid #333333;
  border-radius: 3px;
  background-color: transparent;
}
.order-basket-promo-code,
.order-basket-phone-number,
.order-basket-delivery {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}
.order-basket-promo-code div,
.order-basket-phone-number div,
.order-basket-delivery div {
  flex-grow: 0;
  width: 96px;
}
.order-basket-promo-code input,
.order-basket-phone-number input,
.order-basket-delivery input,
.order-basket-promo-code select,
.order-basket-phone-number select,
.order-basket-delivery select {
  flex-grow: 1;
  margin-left: 10px;
  padding: 5px;
  border: 1px solid #333333;
  border-radius: 3px;
  background-color: transparent;
}
.order-basket-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.order-btn {
  width: auto !important;
  background-image: none !important;
  border-radius: 3px;
  border-style: solid;
}
.order-basket-item-component {
  display: flex;
}
.order-basket-item-component .order-basket-item-component-title {
  flex-grow: 1;
  font-size: 12px;
}
.order-filter-list {
  display: flex;
  flex-wrap: wrap;
}
.order-filter-list .order-filter {
  padding: 5px 10px;
  margin: 10px;
  border-radius: 3px;
  border: 1px solid #009397;
  color: #009397;
}
.order-filter-list .order-filter.order-filter-selected {
  background-color: #009397;
  color: #FFFFFF;
}
.payment-summary--multibuy {
  padding-bottom: 10px;
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 10px;
}
.payment-summary--multibuy p,
.payment-summary--discount p {
  margin: 0;
}
.wallet-card-buttons.add {
  display: none;
}
.wallet-card-details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 135px;
  border: 1px solid #333333;
  border-radius: 3px;
}
.wallet-card-details.full-width {
  width: 100%;
  right: 0;
}
.wallet-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}
.wallet-text {
  font-size: 14px;
  margin: 0;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}
.wallet-separator {
  width: 100%;
  height: 2px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.wallet-card {
  position: relative;
  height: 50px;
  width: 100%;
  text-align: center;
}
.wallet-card-image {
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 68px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}
.wallet-card-back {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  right: 0;
  line-height: 48px;
}
.wallet-card-empty {
  line-height: 48px;
  border-radius: 3px;
  border: 1px solid #333333;
  text-align: center;
}
.wallet-card-empty:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.25);
}
.wallet-buttongroup-outer {
  position: relative;
  float: right;
}
.wallet-buttongroup-button {
  float: left;
  margin-left: 15px;
  text-align: center;
}
.wallet-buttongroup-button .inner {
  height: 30px;
  width: 100px;
  border: 1px solid #333333;
  margin: 0 auto;
  font-weight: bold;
  font-size: 12px;
  line-height: 30px;
  border-radius: 3px;
  text-transform: uppercase;
  cursor: pointer;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.wallet-buttongroup-button .inner.main {
  font-size: 13px;
  background-color: rgba(255, 255, 255, 0.2);
}
.wallet-buttongroup-button .inner.paypal {
  width: 120px;
  border-radius: 0;
  background-image: url('../images/paypal.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 120px;
  border: none;
}
.wallet-buttongroup-button .inner:hover,
.wallet-buttongroup-button .inner:active {
  opacity: 0.8;
}
.wallet-card-buttons {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 120px;
  border: 1px solid #333333;
  border-radius: 3px;
}
.wallet-button {
  height: 100%;
  float: left;
  border-radius: 3px;
}
.wallet-button:hover {
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.wallet-button .wallet-button-inner {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 48px;
  text-transform: uppercase;
}
.wallet-input-outer {
  width: 100%;
  height: 45px;
  position: relative;
  border-radius: 3px;
  border: solid 1px #333333;
  margin-bottom: 15px;
}
.wallet-input-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  border-right: solid 1px #333333;
  font-family: Titillium Web, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 43px;
  text-transform: uppercase;
  text-align: center;
}
.wallet-input-label.with-small {
  line-height: 32px;
}
.wallet-input-label.small {
  line-height: 28px;
  font-size: 10px;
  top: auto;
}
.wallet-input-control {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 100px;
}
.wallet-input {
  box-sizing: content-box;
  margin: 0;
  padding: 0;
  padding-left: 15px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: monospace;
  width: 100%;
  height: 45px;
  outline: none;
}
.wallet-braintree-label {
  margin-top: -10px;
  display: block;
  margin-bottom: -7px;
  font-size: 12px;
  font-weight: 500;
}
.wallet-braintree-hosted-wrap {
  height: 38px;
  border: solid 1px black;
  border-radius: 3px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 4px;
}
.flipper .wallet-braintree-hosted-wrap {
  border: solid 1px white;
}
@media screen and (max-width: 1024px) {
  .wallet-card-buttons.add {
    display: block;
  }
}
.wallet-key {
  float: left;
  width: 50%;
  margin: 0px;
  text-indent: 50px;
  line-height: 20px;
  position: relative;
}
.wallet-key .wallet-key-icon {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}
.wallet-key .wallet-key-icon.icon-current-primary {
  background-image: url('../images/svg/icons/chilli/star_red.svg');
}
.wallet-key .wallet-key-icon.icon-set-primary {
  background-image: url('../images/svg/icons/chilli/star_outline.svg');
}
@media screen and (max-width: 768px) {
  .wallet-key {
    float: none !important;
    width: 100% !important;
  }
  .wallet-key:not(:first-child) {
    margin-top: 5px !important;
  }
}
@media screen and (max-width: 480px) {
  .wallet-body #divForm {
    width: 94%;
  }
  .wallet-body #divForm > div {
    float: none;
  }
  .wallet-card {
    height: 40px !important;
  }
  .wallet-card-image {
    width: 38px !important;
  }
  .wallet-card-back {
    left: 50px !important;
    line-height: 38px !important;
  }
  .wallet-card-empty {
    line-height: 38px !important;
    font-size: 12px;
  }
  .wallet-card-details {
    right: 95px !important;
    font-size: 14px;
  }
  .wallet-card-buttons {
    width: 80px !important;
  }
  .wallet-card-buttons div {
    line-height: 38px !important;
  }
}
.icon-home {
  background-image: url(../images/svg/icons/chilli/account_overview.svg);
}
.icon-home-white {
  background-image: url(../images/svg/icons/white/account_overview.svg);
}
.icon-top-up {
  background-image: url(../images/svg/icons/chilli/top_up.svg);
}
.icon-top-up-white {
  background-image: url(../images/svg/icons/white/top_up.svg);
}
.icon-statement {
  background-image: url(../images/svg/icons/chilli/statements.svg);
}
.icon-statement-white {
  background-image: url(../images/svg/icons/white/statements.svg);
}
.icon-documents {
  background-image: url(../images/svg/icons/chilli/documents.svg);
}
.icon-vouchers {
  background-image: url(../images/svg/icons/chilli/vouchers.svg);
}
.icon-vouchers-white {
  background-image: url(../images/svg/icons/white/vouchers.svg);
}
.icon-promotions {
  background-image: url(../images/svg/icons/chilli/promotions.svg);
}
.icon-promotions-white {
  background-image: url(../images/svg/icons/white/promotions.svg);
}
.icon-events {
  background-image: url(../images/svg/icons/chilli/bookings.svg);
}
.icon-events-white {
  background-image: url(../images/svg/icons/white/bookings.svg);
}
.icon-shop {
  background-image: url(../images/svg/icons/chilli/shop.svg);
}
.icon-shop-white {
  background-image: url(../images/svg/icons/white/shop.svg);
}
.icon-payments {
  background-image: url(../images/svg/icons/chilli/payments.svg);
}
.icon-payments-white {
  background-image: url(../images/svg/icons/white/payments.svg);
}
.icon-wallet {
  background-image: url(../images/svg/icons/chilli/top_up_cards.svg);
}
.icon-wallet-white {
  background-image: url(../images/svg/icons/white/top_up_cards.svg);
}
.icon-switch-accounts {
  background-image: url(../images/svg/icons/chilli/account_list.svg);
}
.icon-switch-accounts-white {
  background-image: url(../images/svg/icons/white/account_list.svg);
}
.icon-change-account-type {
  background-image: url(../images/svg/icons/chilli/logo_blank.svg);
}
.icon-change-account-type-white {
  background-image: url(../images/svg/icons/white/logo_blank.svg);
}
.icon-settings {
  background-image: url(../images/svg/icons/chilli/settings.svg);
}
.icon-settings-white {
  background-image: url(../images/svg/icons/white/settings.svg);
}
.icon-site-card {
  background-image: url(../images/svg/icons/chilli/id_cards.svg);
}
.icon-site-card-white {
  background-image: url(../images/svg/icons/white/id_cards.svg);
}
.icon-help {
  background-image: url(../images/svg/icons/chilli/user_guide.svg);
}
.icon-help-white {
  background-image: url(../images/svg/icons/white/user_guide.svg);
}
.icon-logout {
  background-image: url(../images/svg/icons/chilli/logout.svg);
}
.icon-logout-white {
  background-image: url(../images/svg/icons/white/logout.svg);
}
.icon-more {
  background-image: url(../images/svg/icons/chilli/more.svg);
}
.icon-more-white {
  background-image: url(../images/svg/icons/white/more.svg);
}
.icon-my-account-white {
  background-image: url(../images/svg/icons/white/my_account.svg);
}
.icon-app-details {
  background-image: url(../images/svg/icons/chilli/get_mobile_apps.svg);
}
.icon-account-security {
  background-image: url(../images/svg/icons/chilli/account_security.svg);
}
.icon-account-settings {
  background-image: url(../images/svg/icons/chilli/account_settings.svg);
}
.icon-auto-topup {
  background-image: url(../images/svg/icons/chilli/auto_top_up.svg);
}
.icon-quick-topup {
  background-image: url(../images/svg/icons/chilli/quick_top_up.svg);
}
.icon-id-cards,
.icon-site-card {
  background-image: url(../images/svg/icons/chilli/id_cards.svg);
}
.icon-payroll-topup {
  background-image: url(../images/svg/icons/chilli/payroll_top_up.svg);
}
.icon-guest-topup {
  background-image: url(../images/svg/icons/chilli/guest_top_up.svg);
}
.icon-qr-scanning {
  background-image: url('../images/svg/icons/chilli/barcode1.svg');
}
.icon-wallet {
  background-image: url(../images/svg/icons/chilli/top_up_cards.svg);
}
.icon-survey {
  background-image: url(../images/svg/icons/survey_icon.svg);
}
.icon-referral {
  background-image: url(../images/svg/icons/raf.svg);
}
.icon-my-account {
  background-image: url(../images/svg/icons/chilli/my_account.svg);
}
.icon-receipt {
  background-image: url(../images/svg/receipt_icon.svg);
}
.icon-receipt-sale {
  background-image: url(../images/receipt_sale.png);
}
.icon-receipt-refund {
  background-image: url(../images/receipt_refund.png);
}
.icon-receipt-topup {
  background-image: url(../images/svg/icons/chilli/top_up.svg);
}
.icon-receipt-loyalty {
  background-image: url(../images/receipt_loyalty_only.png);
}
@media screen {
  #divPrintTime {
    display: none;
  }
  #divPrintMessage {
    display: none;
  }
  #divStatementPrintMessage {
    display: none;
  }
}
@font-face {
  font-family: 'Titillium Web';
  src: url(../styles/font/titilliumweb-bold-webfont.woff) format('woff'), url(../styles/font/titilliumweb-bold-webfont.ttf) format('truetype'), url(../styles/font/titilliumweb-bold-webfont.svg#titillium_webbold) format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Titillium Web';
  src: url(../styles/font/titilliumweb-regular-webfont.woff) format('woff'), url(../styles/font/titilliumweb-regular-webfont.ttf) format('truetype'), url(../styles/font/titilliumweb-regular-webfont.svg#titillium_webregular) format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Titillium Web';
  src: url(../styles/font/titilliumweb-semibold-webfont.woff2) format('woff2'), url(../styles/font/titilliumweb-semibold-webfont.woff) format('woff');
  font-weight: 500;
  font-style: normal;
}
html {
  overflow-y: scroll;
}
body {
  background-color: #333333;
  color: #FFFFFF;
}
/*#region Tool Classes*/
.hidden {
  display: none;
}
.tablet-only {
  display: none;
}
.mint-only {
  display: none;
}
/*#region Chartist*/
.ct-double-octave:after,
.ct-major-eleventh:after,
.ct-major-second:after,
.ct-major-seventh:after,
.ct-major-sixth:after,
.ct-major-tenth:after,
.ct-major-third:after,
.ct-major-twelfth:after,
.ct-minor-second:after,
.ct-minor-seventh:after,
.ct-minor-sixth:after,
.ct-minor-third:after,
.ct-octave:after,
.ct-perfect-fifth:after,
.ct-perfect-fourth:after,
.ct-square:after {
  content: "";
  clear: both;
}
.ct-label {
  fill: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.75rem;
  line-height: 1;
}
.ct-grid-background,
.ct-line {
  fill: none;
}
.ct-chart-bar .ct-label,
.ct-chart-line .ct-label {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ct-chart-donut .ct-label,
.ct-chart-pie .ct-label {
  dominant-baseline: central;
}
.ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-label.ct-vertical.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}
.ct-label.ct-vertical.ct-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-chart-bar .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}
.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: end;
}
.ct-grid {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1px;
  stroke-dasharray: 2px;
}
.ct-point {
  stroke-width: 10px;
  stroke-linecap: round;
}
.ct-line {
  stroke-width: 4px;
}
.ct-area {
  stroke: none;
  fill-opacity: 0.1;
}
.ct-bar {
  fill: none;
  stroke-width: 10px;
}
.ct-slice-donut {
  fill: none;
  stroke-width: 60px;
}
.ct-series-a .ct-bar,
.ct-series-a .ct-line,
.ct-series-a .ct-point,
.ct-series-a .ct-slice-donut {
  stroke: #d70206;
}
.ct-series-a .ct-area,
.ct-series-a .ct-slice-donut-solid,
.ct-series-a .ct-slice-pie {
  fill: #d70206;
}
.ct-series-b .ct-bar,
.ct-series-b .ct-line,
.ct-series-b .ct-point,
.ct-series-b .ct-slice-donut {
  stroke: #f05b4f;
}
.ct-series-b .ct-area,
.ct-series-b .ct-slice-donut-solid,
.ct-series-b .ct-slice-pie {
  fill: #f05b4f;
}
.ct-series-c .ct-bar,
.ct-series-c .ct-line,
.ct-series-c .ct-point,
.ct-series-c .ct-slice-donut {
  stroke: #f4c63d;
}
.ct-series-c .ct-area,
.ct-series-c .ct-slice-donut-solid,
.ct-series-c .ct-slice-pie {
  fill: #f4c63d;
}
.ct-series-d .ct-bar,
.ct-series-d .ct-line,
.ct-series-d .ct-point,
.ct-series-d .ct-slice-donut {
  stroke: #d17905;
}
.ct-series-d .ct-area,
.ct-series-d .ct-slice-donut-solid,
.ct-series-d .ct-slice-pie {
  fill: #d17905;
}
.ct-series-e .ct-bar,
.ct-series-e .ct-line,
.ct-series-e .ct-point,
.ct-series-e .ct-slice-donut {
  stroke: #453d3f;
}
.ct-series-e .ct-area,
.ct-series-e .ct-slice-donut-solid,
.ct-series-e .ct-slice-pie {
  fill: #453d3f;
}
.ct-series-f .ct-bar,
.ct-series-f .ct-line,
.ct-series-f .ct-point,
.ct-series-f .ct-slice-donut {
  stroke: #59922b;
}
.ct-series-f .ct-area,
.ct-series-f .ct-slice-donut-solid,
.ct-series-f .ct-slice-pie {
  fill: #59922b;
}
.ct-series-g .ct-bar,
.ct-series-g .ct-line,
.ct-series-g .ct-point,
.ct-series-g .ct-slice-donut {
  stroke: #0544d3;
}
.ct-series-g .ct-area,
.ct-series-g .ct-slice-donut-solid,
.ct-series-g .ct-slice-pie {
  fill: #0544d3;
}
.ct-series-h .ct-bar,
.ct-series-h .ct-line,
.ct-series-h .ct-point,
.ct-series-h .ct-slice-donut {
  stroke: #6b0392;
}
.ct-series-h .ct-area,
.ct-series-h .ct-slice-donut-solid,
.ct-series-h .ct-slice-pie {
  fill: #6b0392;
}
.ct-series-i .ct-bar,
.ct-series-i .ct-line,
.ct-series-i .ct-point,
.ct-series-i .ct-slice-donut {
  stroke: #f05b4f;
}
.ct-series-i .ct-area,
.ct-series-i .ct-slice-donut-solid,
.ct-series-i .ct-slice-pie {
  fill: #f05b4f;
}
.ct-series-j .ct-bar,
.ct-series-j .ct-line,
.ct-series-j .ct-point,
.ct-series-j .ct-slice-donut {
  stroke: #dda458;
}
.ct-series-j .ct-area,
.ct-series-j .ct-slice-donut-solid,
.ct-series-j .ct-slice-pie {
  fill: #dda458;
}
.ct-series-k .ct-bar,
.ct-series-k .ct-line,
.ct-series-k .ct-point,
.ct-series-k .ct-slice-donut {
  stroke: #eacf7d;
}
.ct-series-k .ct-area,
.ct-series-k .ct-slice-donut-solid,
.ct-series-k .ct-slice-pie {
  fill: #eacf7d;
}
.ct-series-l .ct-bar,
.ct-series-l .ct-line,
.ct-series-l .ct-point,
.ct-series-l .ct-slice-donut {
  stroke: #86797d;
}
.ct-series-l .ct-area,
.ct-series-l .ct-slice-donut-solid,
.ct-series-l .ct-slice-pie {
  fill: #86797d;
}
.ct-series-m .ct-bar,
.ct-series-m .ct-line,
.ct-series-m .ct-point,
.ct-series-m .ct-slice-donut {
  stroke: #b2c326;
}
.ct-series-m .ct-area,
.ct-series-m .ct-slice-donut-solid,
.ct-series-m .ct-slice-pie {
  fill: #b2c326;
}
.ct-series-n .ct-bar,
.ct-series-n .ct-line,
.ct-series-n .ct-point,
.ct-series-n .ct-slice-donut {
  stroke: #6188e2;
}
.ct-series-n .ct-area,
.ct-series-n .ct-slice-donut-solid,
.ct-series-n .ct-slice-pie {
  fill: #6188e2;
}
.ct-series-o .ct-bar,
.ct-series-o .ct-line,
.ct-series-o .ct-point,
.ct-series-o .ct-slice-donut {
  stroke: #a748ca;
}
.ct-series-o .ct-area,
.ct-series-o .ct-slice-donut-solid,
.ct-series-o .ct-slice-pie {
  fill: #a748ca;
}
.ct-square {
  display: block;
  position: relative;
  width: 100%;
}
.ct-square:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 100%;
}
.ct-square:after {
  display: table;
}
.ct-square > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-minor-second {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 93.75%;
}
.ct-minor-second:after {
  display: table;
}
.ct-minor-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-second {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 88.88888889%;
}
.ct-major-second:after {
  display: table;
}
.ct-major-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-minor-third {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 83.33333333%;
}
.ct-minor-third:after {
  display: table;
}
.ct-minor-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-third {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 80%;
}
.ct-major-third:after {
  display: table;
}
.ct-major-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-perfect-fourth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-perfect-fourth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 75%;
}
.ct-perfect-fourth:after {
  display: table;
}
.ct-perfect-fourth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-perfect-fifth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-perfect-fifth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 66.66666667%;
}
.ct-perfect-fifth:after {
  display: table;
}
.ct-perfect-fifth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-minor-sixth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 62.5%;
}
.ct-minor-sixth:after {
  display: table;
}
.ct-minor-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-golden-section {
  display: block;
  position: relative;
  width: 100%;
}
.ct-golden-section:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 61.80469716%;
}
.ct-golden-section:after {
  content: "";
  display: table;
  clear: both;
}
.ct-golden-section > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-sixth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 60%;
}
.ct-major-sixth:after {
  display: table;
}
.ct-major-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-minor-seventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 56.25%;
}
.ct-minor-seventh:after {
  display: table;
}
.ct-minor-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-seventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 53.33333333%;
}
.ct-major-seventh:after {
  display: table;
}
.ct-major-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-octave {
  display: block;
  position: relative;
  width: 100%;
}
.ct-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 50%;
}
.ct-octave:after {
  display: table;
}
.ct-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-tenth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-tenth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 40%;
}
.ct-major-tenth:after {
  display: table;
}
.ct-major-tenth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-eleventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-eleventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 37.5%;
}
.ct-major-eleventh:after {
  display: table;
}
.ct-major-eleventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-twelfth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-twelfth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 33.33333333%;
}
.ct-major-twelfth:after {
  display: table;
}
.ct-major-twelfth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-double-octave {
  display: block;
  position: relative;
  width: 100%;
}
.ct-double-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 25%;
}
.ct-double-octave:after {
  display: table;
}
.ct-double-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
/*#endregion*/
/*#endregion*/
/*#region Framework Classes*/
/* Default permissions to invisible */
[data-feature],
.mobileOnly[data-feature],
.mobile-only[data-feature] {
  display: none;
}
#divNewVersion.divVisible {
  text-align: center;
  margin-top: 50px;
}
.divLoadingOuter {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
a {
  font-weight: 500;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@keyframes load-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.splash-screen {
  position: fixed;
  z-index: 9999999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.splash-screen.loading-screen {
  background-image: none !important;
  background-color: rgba(64, 64, 65, 0.8);
}
.splash-screen #splashOverlay {
  width: 100%;
  height: 100%;
}
.splash-screen .splash-logo-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  margin-top: -100px;
  height: 200px;
  width: 200px;
  padding: 20px;
  background-color: white;
  border-radius: 200px;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  animation: load-pulse 1s infinite;
  overflow: hidden;
}
.splash-screen .splash-logo-wrap .splash-logo {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#divViewPort {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  position: relative;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-image: url();
}
.home-form #divViewPort {
  display: block;
  min-height: calc(100% -  140px);
}
#divForm {
  padding-top: 15px;
  padding-bottom: 50px;
  position: relative;
}
#divForm > .row-container {
  margin-top: 15px;
  float: none;
}
.no-form-pad #divForm {
  padding-top: 0;
}
#divForm.container-no-pad {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.modal-wrap .modal {
  top: 15px !important;
  margin-top: env(safe-area-inset-top);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 16px;
}
body {
  padding-top: env(safe-area-inset-top);
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Titillium Web, Arial, sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#divViewPortContainer {
  position: relative;
  width: 100%;
  min-height: calc(100% - 40px);
  box-shadow: inset 0 -5px 5px -5px #111;
}
.home-form #divViewPortContainer {
  display: block;
  background-size: cover;
  background-image: none;
  background-color: #FFFFFF;
}
#divViewPortContainer.bg-white {
  background-image: none;
}
@media (min-width: 768px) {
  #divViewPortContainer {
    min-height: calc(100% - 62px);
  }
}
.clearfix {
  clear: both;
  height: 0;
  overflow: hidden;
}
.clear-children:after,
#divForm:after,
.basket-wrap:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.mobileOnly,
.mobile-only {
  display: none;
}
.desktopOnly,
.desktop-only {
  display: initial;
}
div.desktopOnly,
ul.desktopOnly,
hr.desktopOnly {
  display: block;
}
/*#endregion*/
.login-form .header-wrap {
  height: auto;
  max-height: none;
}
.login-form .header-wrap,
.login-form .logo-header-outer {
  box-shadow: none;
  background-color: transparent !important;
}
.login-form .logo-header {
  text-align: center;
  height: auto;
}
@media (min-width: 768px) {
  .login-form .logo-header {
    padding-bottom: 0;
  }
}
.login-form .logo-header #divLogoImage {
  position: static;
  display: inline-block;
  background-position: center;
}
.login-form #divOffline {
  border: 2px solid #AB2222;
  background-color: #FFFFFF !important;
  color: #AB2222 !important;
  top: 105px;
}
.login-form .textbox {
  text-indent: 10px;
}
.login-form .header-text {
  display: none;
}
/*#region Text Header*/
.form-text-header {
  clear: both;
  margin-top: 30px;
}
.form-text-header .left-text {
  text-transform: uppercase;
  float: left;
  height: auto;
  font-size: 29px;
  line-height: 30px;
  padding: 10px;
  /*background-color: @trans-grey;*/
  border-radius: 3px;
}
.form-text-header .right-text {
  float: right;
  height: 50px;
  line-height: 50px;
  padding-right: 10px;
  font-size: 12px;
}
.form-text-header.grey {
  margin-top: 20px;
  border-radius: 3px;
}
.form-text-header.grey .left-text {
  background-color: transparent;
}
.form-text-header.grey .right-text {
  padding-right: 10px;
}
p.form-text-header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  text-align: left;
}
p.form-text {
  font-size: 14px;
  margin-bottom: 15px;
  text-align: left;
}
/*#endregion*/
/*#region Base Form and Controls*/
.form-inner {
  position: relative;
  padding: 15px;
  min-height: 50px;
}
.other-amount .form-inner {
  text-align: left;
}
.button,
.textblock {
  width: 100%;
  height: 50px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  outline: none;
}
.textbox {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
  line-height: 20px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #333333;
}
.textbox + .textbox,
.textbox + select {
  margin-top: 10px;
}
.textbox-wrap {
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}
.textbox-wrap:first-child {
  margin-top: 0;
}
.textbox-wrap .textbox-label {
  float: left;
  font-size: 14px;
}
button,
input[type=button] {
  font-family: inherit;
}
.textblock {
  font-weight: 400;
  font-size: 11pt;
}
.keypadbox {
  cursor: pointer;
  text-align: left;
}
.textbox-wrap .textbox.keypadbox {
  display: inline-block;
}
input[type="radio"],
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form1 .control-block .checkbox-wrapper.checkbox-right {
  margin-right: 0;
}
.form1 .control-block .checkbox-wrapper.block {
  height: 50px;
}
.form1 .control-block .checkbox-wrapper.block .checkbox-label {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
}
.control-block {
  float: left;
  width: 100%;
  min-height: 20px;
  padding: 5px;
}
.form1.bg-clear .control-block {
  padding: 0;
}
.control-block #divPaymentHeader {
  width: 100%;
  margin: 0;
}
.checkbox-wrapper {
  min-height: 32px;
  text-align: left;
}
.checkbox-wrapper:focus {
  outline: none;
}
.checkbox-wrapper .checkbox-label {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}
.checkbox-wrapper.disabled {
  opacity: 0.5;
}
.checkbox-wrapper.disabled .checkbox-label {
  cursor: default;
}
.checkbox {
  float: left;
  width: 30px;
  height: 30px;
  display: inline-block;
  background-image: url(../images/svg/chk_chilli_unchecked.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.checkbox.checked {
  background-image: url(../images/svg/chk_chilli_radio.svg);
}
.checkbox-right .checkbox {
  float: right;
}
.checkboxText {
  display: block;
  font-size: 12px;
  min-height: 20px;
  padding-left: 36px;
  padding-top: 4px;
  line-height: 20px;
  text-transform: uppercase;
}
.checkbox-right .checkboxText {
  padding-left: 0;
  padding-right: 25px;
  text-align: right;
}
.form-footer {
  margin-top: 20px;
}
.form-footer.no-border {
  margin-top: 20px;
}
.form-footer.no-border hr {
  display: none;
}
.form-footer .btn {
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .form-footer .btn {
    margin-top: 0;
  }
}
.form-footer [class*="col-"] {
  float: right !important;
}
.form-footer-padding {
  height: 92px;
}
/*#region Select List*/
.drop-down-list {
  margin-bottom: 10px;
  text-align: left;
  position: relative;
}
.drop-down-list.open .selected-item {
  -webkit-border-bottom-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  -webkit-border-bottom-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-image: url(../images/svg/arrow_chilli_grey_up.svg);
}
.drop-down-list .selected-item {
  display: block;
  width: 100%;
  line-height: 28px;
  padding: 10px;
  border-radius: 3px;
  text-indent: 5px;
  cursor: pointer;
  background-image: url(../images/svg/arrow_chilli_grey_down.svg);
  background-repeat: no-repeat;
  background-position-x: 94%;
  background-position-y: center;
  background-position: right 15px center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 22px;
}
.drop-down-list .select-list {
  width: 100%;
  max-height: 165px;
  overflow-y: auto;
  position: absolute;
  border-width: 1px;
  border-top-width: 0;
  border-style: solid;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: 2;
}
.drop-down-list .select-list .item {
  cursor: pointer;
  padding: 5px;
  text-indent: 10px;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.drop-down-list .select-list .item.selected {
  font-weight: bold;
}
.drop-down-label {
  text-align: left;
  font-size: 14px;
}
/*#endregion*/
/*#endregion*/
/*#region Columns*/
.col-right {
  float: right;
}
/*#endregion*/
/*#region Form 1 */
.form1 {
  float: left;
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
[class*="col-"] .form1 .btn {
  width: 100%;
}
.form1 .label {
  font-size: 14px;
  height: 20px;
  line-height: 20px;
  float: left;
}
.form1 .textbox {
  border-bottom: 1px solid #333333;
}
.form1 .textbox.pin-box {
  text-align: center;
  font-size: 32px;
  letter-spacing: 20px;
  padding: 2px;
  height: 50px;
  line-height: 50px;
}
.form1 .control-block > input + input,
.form1 .control-block > input + div,
.form1 .control-block > input + p,
.form1 .control-block > input + textarea,
.form1 .control-block > p + div,
.form1 .control-block > p + input,
.form1 .control-block > p + p,
.form1 .control-block > p + textarea,
.form1 .control-block > div + div,
.form1 .control-block > div + input,
.form1 .control-block > div + p,
.form1 .control-block > div + textarea,
.form1 .control-block > textarea + textarea,
.form1 .control-block > textarea + input,
.form1 .control-block > textarea + p,
.form1 .control-block > textarea + div {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .form1 {
    float: none;
    margin: auto;
  }
}
.form1 .checkbox {
  -webkit-appearance: none;
  margin: 0;
}
.form1 .textblock td,
.form1 .textblock span {
  display: table-cell;
  border-width: 0;
  text-align: left;
  vertical-align: middle;
  height: 50px;
}
.form1 .form-text-header {
  margin: 0;
  width: auto !important;
}
.form1 .form-text-header .left-text {
  background-color: transparent;
  padding: 0;
  margin-left: 5px;
  font-size: 18px;
}
.form1 .form-text-header .right-text {
  height: 17px;
  line-height: 17px;
  margin-top: 8px;
  padding-right: 5px;
  text-transform: uppercase;
}
.form1.bg-white .control-block .btn + .btn,
.form1.bg-trans-white .control-block .btn + .btn {
  margin-top: 10px;
}
.form1.bg-clear .form-inner {
  padding: 0;
  margin: 0;
}
/*#endregion*/
/*#region Footer*/
#divViewFooter {
  position: fixed;
  width: 100%;
  bottom: 0;
  margin: 0 auto;
  text-align: left;
  font-size: 12px;
  font-weight: bold;
  border-top: 3px solid #FFFFFF;
}
@media (min-width: 768px) {
  #divViewFooter {
    position: static;
    padding: 20px 0;
  }
}
#divViewFooter a {
  text-decoration: none;
  font-size: 12px;
}
#divViewFooter #btnFooterDetails {
  padding: 10px 0;
  cursor: pointer;
  width: 94%;
  margin: auto;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #divViewFooter #btnFooterDetails {
    display: none;
  }
}
#divViewFooter .footer-wrap {
  display: none;
}
@media (min-width: 768px) {
  #divViewFooter .footer-wrap {
    display: block;
  }
}
#divViewFooter .footer-wrap div {
  cursor: pointer;
  vertical-align: middle;
  text-transform: uppercase;
  color: #333333;
  padding: 10px;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: center;
  background-position: right 15px center;
  background-color: #FFFFFF;
}
#divViewFooter .footer-wrap div:hover {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  #divViewFooter .footer-wrap div {
    display: inline-block;
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    color: #FFFFFF;
  }
}
#divViewFooter .footer-wrap .footer-divide {
  display: none;
}
@media (min-width: 768px) {
  #divViewFooter .footer-wrap .footer-divide {
    display: inline-block;
  }
}
#divViewFooter .footer-wrap .footer-power {
  display: none;
}
/*#endregion*/
/*#region Pop Up*/
.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 100px;
  z-index: 1000;
  background-color: rgba(64, 64, 65, 0.95);
}
.pop-up .pop-up-inner {
  position: relative;
  width: 94%;
  max-width: 640px;
  height: 350px;
  margin: auto;
  text-align: left;
}
.pop-up .pop-up-message {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
}
@media (min-width: 768px) {
  .pop-up .pop-up-message {
    font-size: 25px;
    line-height: 25px;
  }
}
.pop-up .alert-button {
  float: left;
  width: 100%;
  padding: 15px;
  cursor: pointer;
  border-radius: 3px;
  text-align: right;
  outline: none !important;
  margin-bottom: 15px;
}
.pop-up .alert-button:hover {
  opacity: 0.9;
}
.pop-up .alert-button .alert-text {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 25px;
  font-weight: bold;
}
/*#endregion*/
#btnCancelOrder {
  margin-right: 15px;
}
/*#region Loading Data*/
#divRefreshing {
  position: absolute;
  right: 0;
  top: -60px;
  width: 300px;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  z-index: 15;
}
.login-form #divRefreshing {
  background-color: #FFFFFF;
}
.login-form #divRefreshing #spnRefreshing {
  color: #333333;
}
#divRefreshing #spnRefreshing {
  height: 50px;
  padding-right: 60px;
  text-align: right;
  line-height: 50px;
  font-weight: bold;
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center right;
}
#divRefreshing #spnRefreshingFailed {
  height: 50px;
  text-align: right;
  line-height: 50px;
  font-weight: bold;
}
/*#endregion*/
/*#region TopUp*/
#divRevaluationAmounts {
  float: none;
  margin-left: -10px;
  margin-right: -10px;
}
.tile {
  float: left;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  width: 50%;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.tile:hover {
  -moz-transform: scale(1.025);
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}
.tile:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
@media screen and (min-width: 768px) {
  .tile {
    width: 33.3333%;
  }
}
@media screen and (min-width: 1024px) {
  .tile {
    width: 25%;
  }
}
.tile .inner {
  height: 120px;
  border-radius: 3px;
  border: 1px solid #EBEBEB;
  line-height: 120px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}
.tile .inner span {
  text-transform: uppercase;
}
.tile[data-disabled="true"],
.tile[data-disabled="true"]:hover {
  cursor: default;
  background-color: #a0a0a1;
  border-color: #a0a0a1;
  color: #333333;
}
#divTopUpHeading {
  margin-top: 10px;
  padding: 10px 0;
  float: none !important;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid #EBEBEB;
}
@media (min-width: 960px) {
  #divTopUpHeading {
    display: none;
  }
}
/*#endregion*/
/*#region Payment Screen*/
#divPaymentHeader {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 15px 0;
  margin-right: 20px;
  margin-bottom: 10px;
  float: left;
  width: 220px;
  text-align: center;
}
#divPaymentHeader .payment-header-block {
  display: inline-block;
  margin: 0 15px;
}
#divPaymentHeader .payment-header-title {
  font-size: 12px;
  display: block;
}
#divPaymentHeader .payment-header-value {
  font-weight: bold;
  font-size: 54px;
  line-height: 50px;
}
/*#endregion*/
/*#region Statement*/
#divStatementWrap {
  float: left;
  width: 100%;
  padding: 20px;
  margin-top: 40px;
  border-radius: 3px;
}
@media (min-width: 1040px) {
  #divStatementWrap {
    width: calc(100% - 245px);
  }
}
#divStatementWrap .mobile-list {
  background-color: transparent;
  padding: 0;
  margin: 0;
}
#divStatementWrap .mobile-list .list-item {
  background-image: none;
}
.statement-right {
  float: right;
  width: 225px;
  margin-top: 40px;
}
.statement-right > div {
  width: 100%;
  float: none;
}
@media (max-width: 960px) {
  .statement-right {
    width: 100%;
  }
  .statement-right > div {
    width: 33.333333% !important;
    float: left;
    margin-top: 0 !important;
    margin-right: 15px !important;
    margin-bottom: 15px !important;
  }
  .statement-right #btnStatementToggleCollapse {
    margin-left: 0;
  }
}
#divStatement {
  width: 100%;
  min-height: 70px;
}
#divStatement h2 {
  margin: 0;
  text-transform: uppercase;
}
#divStatement p {
  margin-bottom: 0;
}
#ddlStatementTypeNew {
  margin-bottom: 15px;
  background-color: #FFFFFF;
}
.statement-button {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-indent: 10px;
  border-radius: 3px;
  background-position-x: 95%;
  background-position-y: center;
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
  background-color: #FFFFFF;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#btnStatementToggleCollapse.collapse {
  background-image: url(../images/svg/chk_white_minus_border.svg);
}
#btnStatementPrint {
  background-image: url(../images/svg/printer.svg);
}
#btnStatementDownload {
  background-image: url(../images/svg/download.svg);
}
#btnStatementToggleCollapse {
  background-image: url(../images/svg/chk_white_plus_border.svg);
}
/*#region Header*/
.header-row {
  border-top: 2px solid #333333;
  border-bottom: 2px solid #333333;
  padding: 4px 0;
}
.header-row .header-cell {
  min-width: 100px;
  float: right;
  text-align: right;
  text-transform: uppercase;
  font-size: 13px;
  width: auto;
}
.header-row .header-cell.left {
  float: left;
  text-align: left;
}
.transactions-group .header-row {
  border-top: none;
  padding: 4px;
}
.totals-row {
  border-bottom: 1px dotted #333333;
  padding: 4px 0;
}
.totals-row .totals-cell {
  min-width: 100px;
  float: right;
  text-align: right;
}
.totals-row .totals-cell.left {
  float: left;
  min-width: 0;
  text-align: left;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
}
.header-row .header-cell.total,
.totals-row .totals-cell.total {
  font-weight: bold;
}
.header-row .header-cell.total.balance,
.totals-row .totals-cell.total.balance {
  min-width: 96px;
}
.transactions-toggle > .inner {
  padding: 4px 0;
  border-bottom: 2px solid #333333;
  background-image: url(../images/svg/arrow_chilli_grey_down.svg);
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
}
.transactions-toggle.open .inner {
  padding: 4px 0;
  border-bottom: 1px solid #333333;
  background-image: url(../images/svg/arrow_chilli_grey_up.svg);
  background-repeat: no-repeat;
  background-position: center right;
}
.statement-purse-title {
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.statement-purse-title:first-child {
  padding-top: 0;
}
#divStatementPrintMessage {
  margin-top: 40px;
  font-size: 14pt;
}
/*#endregion*/
.transaction-row .inner {
  padding: 4px;
}
.transaction-row .transaction-cell {
  float: left;
  min-width: 100px;
}
.transaction-row .transaction-cell.total {
  min-width: 70px;
  float: right;
  text-align: right;
}
.transaction-row .transaction-cell.total.balance {
  min-width: 96px;
  font-weight: bold;
}
.transaction-row .transaction-cell.total.balance span.currency-code {
  margin-left: 20px;
}
.transaction-row .transaction-cell.total span.currency-code {
  float: left;
}
.transaction-row .transaction-cell.total.negative {
  color: #D00;
}
.transaction-items {
  clear: both;
  width: 100%;
  border-width: 1px;
  border-style: solid;
}
.transaction-items .item-row {
  padding: 1px 4px;
}
.transaction-items .item-row .item-cell {
  float: left;
  min-width: 100px;
}
.transaction-items .item-row .item-cell.right {
  float: right;
  text-align: right;
  min-width: 70px;
  width: auto;
}
.transaction-items .item-row .item-cell.right.unit-price {
  padding-right: 30px;
}
.transaction-items .item-row .item-cell.right span.currency-code {
  float: left;
}
.statementRow {
  position: relative;
  height: 36px;
  border-width: 0;
  border-bottom-width: 1px;
  border-style: solid;
  cursor: pointer;
  -webkit-transition: height ease-out 500ms;
  -moz-transition: height ease-out 500ms;
  -o-transition: height ease-out 500ms;
  transition: height ease-out 500ms;
}
.statementRow.summary {
  margin-top: 25px;
  height: 90px;
}
.statementRow.summary .divTotalInLabel {
  top: 30px;
  left: 0;
}
.statementRow.summary .divTotalOutLabel {
  top: 50px;
  left: 0;
}
.statementRow.summary .divTotalIn {
  top: 30px;
  right: 20px;
}
.statementRow.summary .divTotalOut {
  top: 50px;
  right: 20px;
}
.statementRow.summary .divBBF {
  right: 20px;
  top: 10px;
}
.statementRow.summary .divPurseBalanceLabel {
  left: 0;
  top: 70px;
}
.statementRow.summary .divPurseBalance {
  right: 20px;
  top: 70px;
}
.annualSummary .statementRow {
  cursor: default;
}
.statementRow .dropDownIcon {
  position: absolute;
  top: 10px;
  right: 0;
  height: 12px;
  width: 12px;
  background-position: center center;
  background-repeat: no-repeat;
}
.statementRow .statementRowInfo {
  height: auto;
  border-width: 0;
  position: absolute;
  line-height: 12px;
}
.statementRow .divTill {
  left: 0;
  top: 10px;
}
.statementRow .divDate {
  left: 150px;
  top: 10px;
}
.statementRow .divTime {
  left: 260px;
  top: 10px;
}
.statementRow .divTotalIn {
  right: 180px;
  top: 10px;
}
.statementRow .divTotalOut {
  right: 100px;
  top: 10px;
}
.statementRow .divRunningTotal {
  top: 10px;
  right: 20px;
}
.statementRow .divIn {
  left: 450px;
  top: 10px;
}
.statementRow .divOut {
  left: 530px;
  top: 10px;
}
.statementItemRows {
  position: static !important;
  padding-top: 36px;
  overflow: hidden;
  height: 0;
  -webkit-transition: height ease-out 500ms;
  -moz-transition: height ease-out 500ms;
  -o-transition: height ease-out 500ms;
  transition: height ease-out 500ms;
}
.statementItemRow {
  float: left;
  height: 22px !important;
  width: 100%;
  position: static !important;
  line-height: 18px;
}
#divStatementWrap #divStatement.annualSummary #divWhen,
#divStatementWrap #divStatement.annualSummary .divDate {
  left: 0;
}
.mob-group {
  padding: 4px 0;
}
.mob-group .inner-cell {
  display: inline-block;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mob-group [class^="inner-row"] {
  /*height: 30px;*/
}
.mob-group [class^="inner-row"] .inner-cell:nth-child(even) {
  text-align: right;
}
.mob-group .inner-row-2 .inner-cell {
  width: 50%;
  float: left;
}
.mob-group .inner-row-4 .inner-cell {
  width: 25%;
}
.mob-group .inner-row-4 .inner-cell:nth-child(odd) {
  font-weight: bold;
}
.mob-group .inner-row-4 .inner-cell:nth-child(2) .currency-value {
  padding-right: 6px;
}
/*#region Medium*/
#divStatementWrap.medium {
  font-size: 14px;
}
#divStatementWrap.medium #divWhen,
#divStatementWrap.medium .divDate {
  left: 220px;
}
#divStatementWrap.medium .statementRow .divTime {
  left: 340px;
}
#divStatementWrap.medium #divIn,
#divStatementWrap.medium .statementRow .divTotalIn {
  right: 200px;
}
#divStatementWrap.medium #divOut,
#divStatementWrap.medium .statementRow .divTotalOut {
  right: 110px;
}
/*#endregion*/
/*endregion*/
/*#endregion*/
#divOffline {
  position: absolute;
  left: 50%;
  top: 100px;
  height: auto;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  padding: 5px;
  font-weight: bold;
  font-size: 20px;
  width: fit-content;
  text-align: center;
  display: none;
  text-transform: uppercase;
  background-color: #FFFFFF;
  color: #333333;
  transform: translate(-50%, -50%);
}
/*#region Misc*/
hr {
  width: auto;
  margin: 20px auto;
  border-style: solid;
}
/*#endregion*/
/*#region Mobile Barcode*/
.barcode-screen-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
}
.barcode-screen-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.barcode-screen {
  position: fixed;
  margin: auto;
  height: 80%;
  top: 20%;
  left: 10px;
  right: 10px;
  max-width: 640px;
  z-index: 101;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 0 5px 5px -5px #111;
  text-align: center;
}
@media (min-width: 992px) {
  .barcode-screen {
    left: 50%;
    margin-left: -320px;
    height: auto;
  }
}
.barcode-screen span.scan-now {
  font-size: 32px;
  line-height: 38px;
  font-weight: bold;
  text-transform: uppercase;
  display: none;
}
.barcode-screen .barcode-screen-close {
  position: static;
  bottom: 15px;
  right: 15px;
  width: 100px !important;
  height: 42px;
  text-align: center !important;
  padding-left: 0 !important;
}
.barcode-screen.barcode-screen-mobile {
  height: 80%;
}
.barcode-screen.barcode-screen-mobile span.scan-now {
  display: block;
}
.barcode-screen.barcode-screen-mobile .barcode-screen-close {
  position: absolute;
}
.barcode-screen.barcode-screen-mobile .barcode-image-wrap {
  display: block;
}
.barcode-screen--balance {
  text-align: center;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .barcode-screen--balance {
    margin-bottom: 15px;
  }
}
.barcode-screen--balance .currency-code {
  font-size: 24px;
}
@media (min-width: 768px) {
  .barcode-screen--balance .currency-code {
    font-size: 32px;
  }
}
.barcode-screen--balance .currency-value {
  font-size: 26px;
}
@media (min-width: 768px) {
  .barcode-screen--balance .currency-value {
    font-size: 48px;
  }
}
.barcode-screen--balance .currency-value span:nth-child(2) {
  font-size: 50%;
  opacity: 0.75;
}
.barcode-screen--balance .barcode-screen--balance-label {
  font-size: 14px;
}
@media (min-width: 768px) {
  .barcode-screen--balance .barcode-screen--balance-label {
    font-size: 16px;
  }
}
.barcode-image-wrap {
  display: none;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  margin-top: -60px;
}
.barcode-image-wrap .barcode-image-pad {
  border-radius: 3px;
  padding: 15px;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.barcode-image-wrap .barcode-image-pad .loading {
  width: 60px;
  margin-left: -30px;
  background-color: transparent;
}
.barcode-image-wrap .barcode-image-pad .barcode-image {
  margin: 0 auto;
  max-width: 50%;
  width: 200px;
}
/*#endregion*/
.payment-options-wrap {
  overflow: hidden;
  padding-bottom: 5px;
}
.payment-options-wrap .payment-summary {
  padding: 15px;
}
.payment-options,
.payment-options-wallet {
  margin-bottom: 15px;
}
.payment-options {
  padding: 0 15px;
}
.payment-options .barcode-screen--balance {
  margin-bottom: 0;
  text-align: left;
}
.payment-options .barcode-screen--balance .currency-code {
  font-size: 20px;
}
.payment-options .barcode-screen--balance .currency-value {
  font-size: 22px;
}
.billing-address {
  border-bottom: 1px solid #EBEBEB;
}
.billing-address p {
  margin: 0;
}
.log-item {
  padding: 6px 0;
  font-family: consolas, monospace;
  border-bottom: 1px solid #EBEBEB;
}
.log-item span {
  display: block;
  font-size: 12px;
}
/*#region Function Booking*/
ul.function-details {
  margin-top: 15px;
}
@media (min-width: 768px) {
  ul.function-details {
    margin-top: 0;
  }
}
ul.function-details li.row .column:first-child {
  text-transform: uppercase;
}
ul.function-details li.row .column:last-child {
  text-align: right;
}
ul.function-details + .btn {
  margin-top: 15px;
}
.bookings-wrap {
  float: none !important;
}
.bookings-wrap > .left {
  float: left;
  width: 560px;
}
@media screen and (max-width: 1024px) {
  .bookings-wrap > .left {
    margin: auto;
    float: none;
  }
}
.bookings-wrap .right {
  float: right;
}
.bookings-wrap .right p.cancel-text {
  width: 380px;
}
.bookings-wrap .right .drop-down-list {
  position: relative;
  width: 275px;
}
.bookings-wrap .right .drop-down-list .selected-item {
  font-weight: bold;
  text-transform: uppercase;
}
.bookings-wrap .right .drop-down-list .select-list {
  left: 0;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .bookings-wrap .right {
    float: none;
    max-width: 560px !important;
    margin: auto;
    margin-top: 15px;
  }
  .bookings-wrap .right .btn {
    width: 48%;
    float: right;
  }
  .bookings-wrap .right .drop-down-list {
    width: 48%;
    float: left;
  }
}
.bookings-wrap .col-1 .btn {
  width: 100%;
}
#divBookingsSelectTickets > .right {
  max-width: 275px;
}
/*#region Ticket Selection*/
.ticket-selection-info {
  margin-bottom: 13px;
}
.guest-name-boxes {
  max-width: 560px;
}
.guest-name-boxes .textbox-wrap {
  max-width: 100%;
  width: 100%;
}
.guest-name-boxes .textbox-wrap:first-child {
  margin-top: 15px;
}
.guest-name-boxes .textbox-wrap:nth-child(odd) {
  margin-right: 10px;
}
.guest-name-boxes .textbox {
  margin-bottom: 10px;
}
/*#endregion*/
#divBookingsConfirm {
  margin-top: 20px;
}
#divBookingsConfirm #txtSpecial {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border-radius: 3px;
  border: none;
  resize: none;
}
#divBookingsConfirm #txtSpecial:focus,
#divBookingsConfirm #txtSpecial:active {
  outline: none;
}
#divBookingsConfirm #txtSpecial::-webkit-input-placeholder {
  color: #FFFFFF;
}
#divBookingsConfirm #txtSpecial::-moz-placeholder {
  color: #FFFFFF;
  opacity: 1;
}
#divBookingsConfirm #txtSpecial:-ms-input-placeholder {
  color: #FFFFFF;
}
.btn--edit-guest-names {
  margin-top: 10px;
  padding: 2px 10px;
  border: none;
  border-radius: 3px;
}
#divBookingsView .booking-amend {
  margin-top: 15px;
}
#divBookingsView .booking-amend button {
  margin-bottom: 15px;
}
#divBookingsView .booking-amend button:last-child {
  margin-bottom: 0;
}
#divBookingsView .booking-amend p:first-child {
  margin-top: 0;
}
#divBookingsView .booking-amend p:last-child {
  margin-bottom: 0;
}
/*#endregion*/
/*#region Payment Options*/
.balances-wrap {
  float: left;
  width: 350px;
  padding: 15px;
  border: none;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.75);
}
.balances-wrap .balance-item {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 14px;
  padding: 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
  background-color: #FFFFFF;
  color: #009397;
}
.balances-wrap .balance-item:last-child {
  margin-bottom: 0;
}
.balances-wrap .balance-item .balance-value {
  float: right;
}
@media screen and (max-width: 1024px) {
  .balances-wrap {
    width: 50%;
    padding: 0;
    padding-right: 15px;
    background-color: transparent;
  }
}
#divPaymentOptions {
  float: left;
  width: 33.333333%;
}
#divPaymentOptions .balances-wrap {
  margin-top: 15px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #divPaymentOptions {
    width: 100%;
    float: none;
  }
  #divPaymentOptions .balances-wrap {
    padding: 0;
  }
}
#divPaymentOptionsRight {
  float: right;
  width: 33.333333%;
  margin-top: 15px;
}
#divPaymentOptionsRight .basket-wrap {
  width: 100%;
  max-width: 420px;
  margin: auto;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  #divPaymentOptionsRight {
    width: 100%;
    float: none;
  }
}
/*#endregion*/
/*#region Contact Us*/
span.section-header {
  font-weight: bold;
}
#divContactUs {
  width: 100%;
  margin-top: 15px;
  padding: 15px;
  border-radius: 3px;
  float: none !important;
}
#divContactUs .divhelp-section {
  border-bottom: 1px solid #333333;
}
#divContactUs .divhelp-section:last-child {
  border-bottom: none;
}
.divhelp-info {
  padding: 15px;
  border-radius: 3px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.divhelp-header {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 12px;
  float: left;
  width: 90%;
  text-transform: uppercase;
}
.divhelp-header:hover {
  cursor: pointer;
}
.divhelp-section {
  width: 100%;
  float: left;
}
.divhelp-section div {
  height: 0;
  overflow: hidden;
}
.divhelp-section .divhelp-arrow {
  float: right;
  display: inline-block;
  padding-top: 16px;
  padding-bottom: 12px;
  background-position: right center;
  width: 10%;
  height: 28px;
  background-image: url(../images/svg/arrow_chilli_grey_down.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}
.divhelp-section[data-open="open"] .divhelp-arrow {
  background-image: url(../images/svg/arrow_chilli_grey_up.svg);
}
.help-sectionInner[data-open="open"] div {
  -webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  -moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  -o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
  transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
}
.divhelp-section[data-open="open"] div.help-sectionInner {
  height: auto;
  float: left;
}
.divhelp-infolink {
  text-decoration: underline;
}
.divhelp-infolink:hover {
  cursor: pointer;
}
.divhelp-answer {
  width: 96%;
}
/*#endregion*/
/* #region Sticky Footer */
html,
body {
  height: 100%;
  width: 100%;
}
#divApplication {
  min-height: 100%;
  height: 100%;
  width: 100%;
  margin: 0 auto -75px;
  position: relative;
}
.viewport-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}
.footer-push {
  height: 75px;
}
.footer-wrap {
  width: 94%;
  max-width: 1170px;
  margin: auto;
}
/* #endregion */
/*#region Cookie Header*/
.cookie-header,
.message-header {
  padding: 10px;
  z-index: 10000;
}
.cookie-header .cookie-header-inner,
.message-header .cookie-header-inner,
.cookie-header .message-header-inner,
.message-header .message-header-inner {
  width: 94%;
  max-width: 1170px;
  margin: auto;
}
.eu-cookie-link,
.eu-cookie-link:visited,
.cookie-header a,
.cookie-header a:visited {
  color: #EBEBEB;
}
.eu-cookie-link,
.cookie-header a:active {
  color: #000000;
}
.eu-cookie-link,
.cookie-header a:hover {
  color: #999999;
}
.cookie-header button {
  float: right;
  padding: 4px 5px;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
}
/*#endregion*/
#divMouseInterceptor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 297;
}
#divMouseInterceptor.on {
  display: block;
}
#divChilliHeaderMenuNotifications {
  position: relative;
}
#divChilliHeaderMenuNotifications #notificationCount {
  position: absolute;
  top: -5px;
  right: -5px;
  height: 18px;
  min-width: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  padding-left: 2px;
  padding-right: 2px;
}
#btnScanCardIO {
  text-align: left;
  text-indent: 10px;
  background-repeat: no-repeat;
  background-position-x: 94%;
  background-position-y: center;
  background-position: right 10px center;
  background-image: url(../images/svg/icons/white/target.svg);
  background-size: 30px;
}
#divPaymentOptionsRight {
  display: none !important;
}
.pad-inner {
  padding: 10px;
}
#blockPass {
  padding-bottom: 20px;
}
#blockPass .btn {
  width: 100%;
}
.tickets-menu li.row .column {
  vertical-align: middle;
}
.tickets-menu .description {
  font-weight: bold;
  font-size: 15px;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.tickets-menu .my-choice {
  margin-left: 15px;
}
.tickets-menu .controls {
  text-align: center;
}
.tickets-menu .controls.disabled {
  opacity: 0.5;
}
.tickets-menu .controls.disabled .btn-plus,
.tickets-menu .controls.disabled .btn-minus {
  cursor: not-allowed;
}
.tickets-menu .controls > div {
  display: inline-block;
  width: 30px;
  height: 26px;
  float: right;
  vertical-align: top;
  background-size: 20px;
}
.tickets-menu .controls > div.basket-count {
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 26px;
}
.tickets-menu .my-choice {
  clear: both;
}
.tickets-menu .my-choice .checkbox-wrapper {
  width: 84px;
  text-align: center;
}
.tickets-menu .my-choice .checkbox-wrapper .checkboxText {
  width: auto;
  padding: 0;
  text-align: right;
  float: none;
}
.form-title {
  text-align: left;
  font-weight: bold;
  border-bottom: 1px solid #333333;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.modal-error {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.75);
  z-index: 99999;
}
.modal-error .modal-error-inner {
  position: absolute;
  top: 3%;
  left: 3%;
  right: 3%;
  padding: 15px;
  color: #333333;
  background-color: #FFFFFF;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
}
.modal-error .modal-error-inner > div,
.modal-error .modal-error-inner > button {
  margin-bottom: 15px;
}
.modal-error .modal-error-inner > div:last-child,
.modal-error .modal-error-inner > button:last-child {
  margin-bottom: 0;
}
.modal-error .modal-error-inner .error-title {
  font-weight: bold;
  font-size: 18px;
}
.modal-error .modal-error-inner .btn {
  width: 100%;
}
@media screen and (min-width: 540px) {
  .modal-error .modal-error-inner {
    top: 10%;
    left: 50%;
    margin-left: -240px;
    width: 480px;
  }
}
.date-availability.row p {
  margin: 0;
}
.bg-box {
  background-color: rgba(255, 255, 255, 0.75);
  color: #333333;
  border-radius: 3px;
  padding: 15px;
}
.release-notes li:first-child > h2 {
  margin-top: 0;
}
.side-drawer-wrap {
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.side-drawer-wrap .side-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 80%;
  background-color: #FAFAFA;
  border-right: 1px solid #EBEBEB;
  z-index: 2;
  box-shadow: 0 0 4px #000000;
  overflow: auto;
  background-size: cover;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.side-drawer-wrap .side-drawer .drawer-title {
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid #333333;
  padding: 15px;
}
.side-drawer-wrap .side-drawer .drawer-inner {
  width: 100%;
  min-height: 100%;
  padding-bottom: 50px;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.9);
}
.side-drawer-wrap .side-drawer .drawer-section {
  padding: 15px;
  border-bottom: 1px solid #D0D0D0;
}
.side-drawer-wrap .side-drawer .drawer-section .mobile-list {
  width: 100%;
}
.side-drawer-wrap .side-drawer .drawer-section:first-child {
  padding-top: 0;
}
.side-drawer-wrap .side-drawer .drawer-section:last-child {
  border-bottom: none;
}
.side-drawer-wrap .side-drawer .drawer-profile-area {
  background-size: cover;
}
.side-drawer-wrap .side-drawer .drawer-profile-area .profile-overlay {
  padding: 15px;
  background-color: rgba(51, 51, 51, 0.4);
}
.side-drawer-wrap .side-drawer .drawer-profile-area .profile-image {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #FFFFFF;
  background-image: url(../images/profile_placeholder.png);
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}
.side-drawer-wrap .side-drawer .drawer-profile-area .profile-body {
  position: relative;
}
.side-drawer-wrap .side-drawer .drawer-profile-area .profile-body.open .profile-switch {
  background-image: url(../images/svg/arrow_white_up.svg);
}
.side-drawer-wrap .side-drawer .drawer-profile-area .profile-text {
  margin: 0;
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
  text-shadow: 0 0 2px black;
}
.side-drawer-wrap .side-drawer .drawer-profile-area .profile-text.small {
  font-weight: 400;
  margin-top: 0;
}
.side-drawer-wrap .side-drawer .drawer-profile-area .profile-switch {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/svg/arrow_white_down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.side-drawer-wrap .side-drawer .mobile-list {
  padding: 0;
  margin: 0;
  float: none;
  background-color: transparent;
}
.side-drawer-wrap .side-drawer .mobile-list .list-item .tile-icon {
  width: 30px;
}
.side-drawer-wrap .side-drawer .mobile-list .list-item .tile-icon div {
  margin-left: 0;
}
.side-drawer-wrap .side-drawer .mobile-list .list-item + .list-item {
  border-top: none;
}
.side-drawer-wrap .side-drawer .mobile-list .list-group {
  padding: 0;
  background-color: transparent;
}
.side-drawer-wrap .side-drawer #drawerLoader > div {
  margin: auto;
  width: 50px;
  height: 50px;
  background-image: url(../images/chilli/loader.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.side-drawer-wrap#mainMenu .drawer-section:first-child {
  padding: 0;
}
.side-drawer-wrap.open {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(51, 51, 51, 0.75);
}
.side-drawer-wrap.open .side-drawer {
  right: 20%;
}
.modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.75);
  z-index: 50;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-wrap .modal {
  position: relative;
  max-width: 1170px;
  width: 94%;
  margin: 15px auto;
  border-radius: 3px;
  background-color: #FAFAFA;
  color: #333333;
  top: 10%;
}
.modal-wrap .modal.thin {
  max-width: 640px;
}
.modal-wrap .modal.short {
  bottom: auto;
}
.modal-wrap .modal .modal-title {
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 0 15px;
  font-size: 18px;
  display: flex;
}
@media (min-width: 768px) {
  .modal-wrap .modal .modal-title {
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
  }
}
.modal-wrap .modal .modal-title > span {
  flex-grow: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}
.modal-wrap .modal .modal-title.sticky-title {
  background-color: #FAFAFA;
  position: sticky;
  top: 0;
}
.modal-wrap .modal .modal-title .modal-back,
.modal-wrap .modal .modal-title .modal-close {
  width: 30px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.modal-wrap .modal .modal-title .modal-back {
  margin-right: 10px;
  background-image: url(../images/svg/grey_back.svg);
  background-size: 18px;
  float: left;
}
@media (min-width: 768px) {
  .modal-wrap .modal .modal-title .modal-back {
    display: none;
  }
}
.modal-wrap .modal .modal-title .modal-close {
  background-image: url(../images/svg/remove_grey.svg);
  background-size: 30px;
  float: right;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.modal-wrap .modal .modal-title .modal-close:hover {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.modal-wrap .modal .modal-title .modal-close:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
@media (min-width: 768px) {
  .modal-wrap .modal .modal-title .modal-close {
    height: 50px;
  }
}
.modal-wrap .modal .modal-title + .modal-content .modal-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.modal-wrap .modal .modal-content .modal-body {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border: 1px solid #EBEBEB;
  padding: 15px;
}
.modal-wrap .modal .modal-content .modal-body:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.modal-wrap .modal .modal-content .modal-body .mobile-list {
  width: 100%;
  padding: 0;
  margin-top: 0;
  background-color: transparent;
}
.modal-wrap .modal .modal-content .modal-body .mobile-list .list-group {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  background-color: transparent;
}
.modal-wrap .modal .modal-content .modal-body .textbox {
  background-color: transparent;
  border-bottom: 1px solid #333333;
}
.modal-wrap .modal .modal-footer {
  padding: 15px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  text-align: center;
}
.modal-wrap .modal .modal-footer.modal-footer-custom {
  background-color: #EBEBEB;
}
.modal-wrap .modal .modal-footer .btn {
  width: 100%;
}
.modal-wrap .modal .modal-footer .btn:first-child {
  margin-bottom: 15px;
}
.modal-wrap .modal .modal-footer .btn.btn-clear {
  text-align: center;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.modal-wrap .modal .modal-footer .btn.btn-clear:hover {
  -moz-transform: scale(1.025);
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}
.modal-wrap .modal .modal-footer .btn.btn-clear:hover:active {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
@media (min-width: 768px) {
  .modal-wrap .modal .modal-footer .btn {
    width: 275px;
  }
  .modal-wrap .modal .modal-footer .btn:first-child {
    margin-bottom: 0;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .modal-wrap.full-screen .modal {
    margin: 0;
    width: 100%;
    min-height: 100%;
    border-radius: 0;
  }
  .modal-wrap.full-screen .modal .modal-title {
    height: 50px;
    line-height: 50px;
  }
  .modal-wrap.full-screen .modal .modal-title .modal-back,
  .modal-wrap.full-screen .modal .modal-title .modal-close {
    height: 50px;
  }
}
.modal-wrap.full-screen .modal .modal-body {
  padding: 0;
}
.location-tile-wrapper {
  width: 100%;
  float: none;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
}
.location-tile-wrapper .location-tile {
  height: 200px;
  border-radius: 3px;
  margin-bottom: 15px;
  padding: 0 !important;
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.location-tile-wrapper .location-tile .location-img {
  background-position: 50% center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.location-tile-wrapper .location-tile .location-img .location-time {
  width: 65px;
  height: 40px;
  background-color: rgba(240, 240, 240, 0.9);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  right: 40px;
  z-index: 1;
}
.location-tile-wrapper .location-tile .location-img .location-time.help {
  position: relative;
  float: left;
  right: 0;
  height: 30px;
  width: 45px;
  font-size: 12px !important;
  margin-top: 10px;
}
.location-tile-wrapper .location-tile .location-img .location-time.help .location-time-inner {
  font-size: 12px;
  line-height: 15px;
}
.location-tile-wrapper .location-tile .location-img .location-time .location-time-inner {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #333333;
  text-transform: uppercase;
  width: 60%;
  margin: auto;
  line-height: 18px;
}
.location-tile-wrapper .location-tile .location-img .location-footer {
  color: #000;
  background-color: rgba(240, 240, 240, 0.9);
  text-align: left;
  position: absolute;
  top: 160px;
  bottom: 0;
  width: 100%;
  overflow-y: hidden;
  cursor: pointer;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.location-tile-wrapper .location-tile .location-img .location-footer.jumpup {
  top: 140px;
}
.location-tile-wrapper .location-tile .location-img .location-footer.jumpup .expand {
  display: block;
  -moz-animation: jiggle 0.2s 2;
  -o-animation: jiggle 0.2s 2;
  -webkit-animation: jiggle 0.2s 2;
  animation: jiggle 0.2s 2;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] {
  top: 0;
  overflow-y: visible;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body {
  padding-top: 25px;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body.help,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body.help {
  padding-top: 15px;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div {
  display: block;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div.expand,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div.expand,
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div.hidden,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div.hidden {
  display: none;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div.drop-down-label,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div.drop-down-label {
  font-size: 16px;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div.selected-item,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div.selected-item {
  padding: 6px;
  padding-right: 25px;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div.location-help-item,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div.location-help-item {
  height: 45px;
  width: 94%;
  margin: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  font-size: 15px;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div.location-help-item .location-footer-keydesc,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div.location-help-item .location-footer-keydesc {
  float: left;
  width: 75%;
  line-height: 46px;
  padding-left: 10px;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div.location-help-item .location-footer-icon,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div.location-help-item .location-footer-icon {
  height: 46px;
  margin-top: 0;
  float: left;
  margin-right: 13px;
  margin-left: 12px;
}
.location-tile-wrapper .location-tile .location-img .location-footer.open .location-footer-body div li.item,
.location-tile-wrapper .location-tile .location-img .location-footer[data-clicked] .location-footer-body div li.item {
  text-indent: 6px;
}
.location-tile-wrapper .location-tile .location-img .location-footer .location-footer-title.help {
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
}
.location-tile-wrapper .location-tile .location-img .location-footer .location-footer-icon {
  float: right;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  margin-top: 5px;
  margin-right: 15px;
}
.location-tile-wrapper .location-tile .location-img .location-footer .location-footer-icon.collection {
  background-image: url(../images/svg/collection_icon.svg);
}
.location-tile-wrapper .location-tile .location-img .location-footer .location-footer-icon.delivery {
  background-image: url(../images/svg/delivery_icon.svg);
}
.location-tile-wrapper .location-tile .location-img .location-footer .expand {
  display: none;
  width: 100px;
  height: 20px;
  margin: auto;
  margin-top: 0px;
  text-align: center;
}
.location-tile-wrapper .location-tile .location-img .location-footer span {
  line-height: 35px;
  padding-left: 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
}
.location-tile-wrapper .location-tile .location-img .location-footer .location-footer-body div {
  display: none;
}
.location-tile-wrapper .location-tile .location-img .location-footer .location-footer-body ul {
  max-height: 90px;
}
@media screen and (max-width: 1024px) {
  .location-tile-wrapper .location-tile .location-img .location-footer {
    top: 160px !important;
  }
  .location-tile-wrapper .location-tile .location-img .location-footer.open {
    top: 0 !important;
  }
  .location-tile-wrapper .location-tile .location-img .location-footer .location-footer-body {
    display: none;
  }
  .location-tile-wrapper .location-tile .location-img .location-footer .location-footer-body.help {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .location-tile-wrapper {
    width: 60%;
    float: none;
    min-width: 240px;
  }
}
@media screen and (min-width: 960px) {
  .location-tile-wrapper {
    width: 45%;
    float: left;
    min-width: 330px;
  }
}
@media screen and (min-width: 1170px) {
  .location-tile-wrapper {
    width: 33%;
    float: left;
    min-width: 360px;
  }
}
.main-outlet-container {
  bottom: -35px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 15px;
  height: 35px;
  margin: auto;
}
.main-outlet-container .main-outlet {
  width: 120px;
  height: 16px;
  background-color: #009397;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 10px;
  float: left;
  cursor: pointer;
}
.main-outlet-container[data-open="open"] .main-outlet {
  border-bottom-right-radius: 0;
}
.main-outlet-container[data-open="open"] #ddlCompanySelectSelected {
  display: block;
  background-image: url(../images/svg/arrow_chilli_grey_up.svg);
}
.main-outlet-container[data-open="open"] .main-outlet-btn {
  display: block;
}
.main-outlet-container .main-outlet-inner {
  width: 0;
  float: left;
  height: 35px;
}
.main-outlet-container .main-outlet-inner #ddlCompanySelect {
  margin-bottom: 0;
  text-align: center;
}
.main-outlet-container .main-outlet-inner #ddlCompanySelect #ddlCompanySelectSelected {
  float: left;
  width: 300px;
  height: 35px;
  padding: 10px;
  line-height: 15px;
  background-color: #FFFFFF;
  background-image: url(../images/svg/arrow_chilli_grey_down.svg);
  border: 0;
  border-left: 1px solid #333333;
  border-radius: 0;
  color: #333333;
}
.main-outlet-container .main-outlet-inner #ddlCompanySelect #ddlCompanySelectSelectList {
  color: #333333;
  text-align: left;
  font-size: 16px;
  top: 35px;
  z-index: 100;
  width: 301px;
}
.main-outlet-container .main-outlet-inner #ddlCompanySelect #ddlCompanySelectSelectList .item {
  text-indent: 0;
  padding: 10px;
}
.main-outlet-container .main-outlet-inner .main-outlet-btn {
  float: left;
  height: 15px;
  width: 50px;
  background-color: #FFFFFF;
  padding: 10px;
  border-bottom-right-radius: 3px;
  color: #333333;
  border-left: 1px solid #333333;
  cursor: pointer;
  display: block;
}
.site-card-validation-image {
  width: 100%;
  display: none;
  margin-bottom: 10px;
}
/*#region 3D Secure*/
#ThreeDSecure {
  text-align: center;
}
#ThreeDSecure > iframe {
  margin: auto;
  background-color: white;
  border: 1px solid #EBEBEB;
  border-radius: 3px;
}
#ThreeDSecure .three-d-secure--helper {
  font-size: 14px;
}
.three-d-secure-wrapper {
  width: 100%;
  margin-top: 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.three-d-secure-wrapper iframe.three-d-secure {
  display: block;
  margin: auto;
  width: 446px;
  height: 516px;
  max-width: 442px;
  max-height: 516px;
  border: 1px solid #333333;
  background-color: #FFFFFF;
}
/*#endregion*/
.ac-title {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}
.ac-wrapper {
  width: 100%;
  float: none;
}
.ac-wrapper .cardwrapper {
  margin-right: 8px;
  height: 100%;
  float: left;
}
.ac-wrapper .cardwrapper .ac-img {
  width: 60px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
.intl-tel-input {
  width: 100%;
}
.intl-tel-input .selected-dial-code {
  text-align: left;
  padding-left: 24px;
}
.iti-container {
  color: #333333;
}
.app-update-message {
  position: fixed;
  z-index: 999999;
  top: 10px;
  right: 10px;
  background-color: #333333;
  color: #FAFAFA;
  box-shadow: 2px 0 4px #202020;
  border: 1px solid #444444;
  text-align: right;
  border-radius: 2px;
  font-size: 12px;
}
.app-update-message p {
  margin: 0;
  padding: 8px;
}
.app-update-message p:first-child {
  padding-bottom: 4px;
}
.app-update-message p:last-child {
  padding-top: 4px;
}
.profile-image {
  border-radius: 80px;
  border-top-left-radius: 10px;
  /*overflow: hidden;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.profile-image .btn-remove {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #dc3545;
  background-image: url(../images/svg/remove.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center;
}
.profile-image .btn-remove:hover {
  opacity: 0.8;
}
.profile-image-wrap {
  width: 100%;
}
.profile-image-wrap .profile-image {
  width: 80px;
  height: 80px;
  margin: auto;
  background-color: white;
  background-image: url(../images/profile_placeholder.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}
.profile-image-wrap .change-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  text-decoration: underline;
}
.expander .expander-title {
  margin: 0;
  padding: 15px 0;
  font-weight: 500;
  background-image: url(../images/svg/grey_plus.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 30px;
}
.expander .expander-content {
  display: none;
}
.expander .expander-content > p:first-child {
  margin-top: 0;
}
.expander.open .expander-title {
  background-image: url(../images/svg/grey_minus.svg);
}
.eft-card {
  width: 240px;
  height: 158px;
  border-radius: 6px;
  margin: auto;
  margin-bottom: 15px;
  padding: 15px;
  font-family: monospace;
  font-weight: 600;
  text-align: left;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}
.eft-card .eft-card--image {
  display: inline-block;
  margin-top: -15px;
  margin-right: -15px;
  padding: 8px 15px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  float: right;
  background-color: white;
}
.eft-card .eft-card--image > div {
  width: 40px;
  height: 36px;
  margin: -6px 0;
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
.eft-card.VISA .eft-card--image > div,
.eft-card.Visa .eft-card--image > div {
  background-image: url(../images/card_types/cc_visa.svg);
}
.eft-card.MASTERCARD .eft-card--image > div,
.eft-card.Mastercard .eft-card--image > div {
  background-image: url(../images/card_types/cc_mastercard.svg);
}
.eft-card.AMERICAN.EXPRESS .eft-card--image > div {
  background-image: url(../images/card_types/cc_amex.svg);
}
.eft-card .eft-card--number {
  margin-top: 35px;
  font-size: 18px;
}
.eft-card .eft-card--expiry {
  font-size: 16px;
}
.eft-card .eft-card--number,
.eft-card .eft-card--expiry {
  text-shadow: 1px 1px 1px #000;
}
.eft-card .wallet-braintree-label {
  margin-top: 0;
}
.owl-dots button.owl-dot {
  width: auto !important;
}
.owl-carousel.eft-carousel .owl-stage-outer {
  overflow: visible;
}
.owl-carousel.eft-carousel .carousel-item {
  padding: 10px 0;
}
/* entire container, keeps perspective */
.flip-container {
  perspective: 1200px;
  transform-style: preserve-3d;
  margin: auto;
  /* flip speed goes here */
  /* hide back of pane during swap */
  /* back, initially hidden pane */
}
.flip-container.selected .back {
  transform: rotateY(0deg);
}
.flip-container.selected .front {
  transform: rotateY(180deg);
}
.flip-container .flipper {
  transition: 0.8s;
  transform-style: preserve-3d;
  position: relative;
}
.flip-container .front,
.flip-container .back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: 0.8s;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
}
.flip-container .front {
  z-index: 2;
  transform: rotateY(0deg);
  display: block;
}
.flip-container .front:hover {
  cursor: pointer;
  opacity: 0.8;
}
.flip-container .back {
  transform: rotateY(-180deg);
  display: none;
}
.flip-container,
.front,
.back {
  width: 240px;
  height: 158px;
}
.from-group {
  margin-top: 10px;
}
#mainMenu {
  z-index: 13;
}
@media (max-width: 797px) {
  .row-thin {
    margin-right: -5px;
    margin-left: -5px;
  }
  .row-thin [class^=col] {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.raf-image {
  width: 100%;
  height: 140px;
  background-image: url('../images/raf.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
html[sop=true] .sop-hide {
  display: none;
}
#google-pay-button button {
  width: 100%;
}
.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #b2b2b2;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.co2-label-image {
  width: 96px;
  height: 96px;
}
.co2-label-image-1to6 {
  width: 60px;
  height: 96px;
}
.co2-label-text {
  display: block;
  width: 96px;
  text-align: center;
}
/* HTML: <div class="loader"></div> */
.panel-loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #009397 #0000;
  animation: l1 1s infinite;
  margin: 0 auto;
}
@keyframes l1 {
  to {
    transform: rotate(0.5turn);
  }
}
#events .owl-stage-outer,
#promotions .owl-stage-outer,
#orders .owl-stage-outer,
#documents .owl-stage-outer {
  width: 100%;
}
.home--order .promo-description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.home--order .promo-description p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#events.owl-carousel.owl-loaded,
#promotions.owl-carousel.owl-loaded,
#orders.owl-carousel.owl-loaded,
#documents.owl-carousel.owl-loaded {
  margin-top: 20px;
}
.no-margin {
  margin: 0;
}
.new-control {
  display: block;
  position: relative;
  padding-left: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 12px;
  /* -webkit-user-select: none; */
  width: 100%;
  height: 53px !important;
  border-radius: 8px;
  border: 1px solid #ced4da;
  background-color: #fff;
  transition: border-width 0.6s linear, border-color 0.6s linear;
  appearance: none;
  outline: none;
}
.new-control :active,
.new-control:focus {
  border-color: #009397;
  border-width: 2px;
}
.btn {
  border-radius: 8px !important;
}
.btn-white {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.tgl {
  display: none;
}
.tgl,
.tgl:after,
.tgl:before,
.tgl *,
.tgl *:after,
.tgl *:before,
.tgl + .tgl-btn {
  box-sizing: border-box;
}
.tgl::-moz-selection,
.tgl:after::-moz-selection,
.tgl:before::-moz-selection,
.tgl *::-moz-selection,
.tgl *:after::-moz-selection,
.tgl *:before::-moz-selection,
.tgl + .tgl-btn::-moz-selection,
.tgl::selection,
.tgl:after::selection,
.tgl:before::selection,
.tgl *::selection,
.tgl *:after::selection,
.tgl *:before::selection,
.tgl + .tgl-btn::selection {
  background: none;
}
.tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 4em;
  height: 2em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tgl + .tgl-btn:after,
.tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}
.tgl + .tgl-btn:after {
  left: 0;
}
.tgl + .tgl-btn:before {
  display: none;
}
.tgl:checked + .tgl-btn:after {
  left: 50%;
}
.tgl-ios + .tgl-btn {
  background: #fbfbfb;
  border-radius: 2em;
  padding: 2px;
  transition: all 0.4s ease;
  border: 1px solid #e8eae9;
}
.tgl-ios + .tgl-btn:after {
  border-radius: 2em;
  background: #fbfbfb;
  transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
}
.tgl-ios + .tgl-btn:hover:after {
  will-change: padding;
}
.tgl-ios + .tgl-btn:active {
  box-shadow: inset 0 0 0 2em #e8eae9;
}
.tgl-ios + .tgl-btn:active:after {
  padding-right: 0.8em;
}
.tgl-ios:checked + .tgl-btn {
  background: #86d993;
}
.tgl-ios:checked + .tgl-btn:active {
  box-shadow: none;
}
.tgl-ios:checked + .tgl-btn:active:after {
  margin-left: -0.8em;
}
