﻿.orangelight {
  color: #fe8800;
}
.orange {
  color: #ff6a00;
}
.orangedark {
  color: #c85300;
}
/* offset-x | offset-y | blur-radius | spread-radius | color */
/*@card-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);*/
/*#region BUTTONS ********************************************* */
/*#region Button Box */
.button-box button,
.button-box input[type="button"],
.button-box a.button {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 10px 25px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: bold;
  outline: 0;
}
.button-box-small button,
.button-box-small input[type="button"],
.button-box-small a.button {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  padding: 8px 15px;
  text-transform: capitalize;
  font-size: 12px;
  outline: 0;
}
.button-box-square button,
.button-box-square input[type="button"],
.button-box-square a.button {
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  text-decoration: none;
  text-align: center;
  padding: 8px 15px;
  font-size: 13px;
  outline: 0;
}
/*#endregion Button Box */
/*#region Button Colours */
.button-white {
  border: solid 1px #e1e1e1;
  background: #ffffff;
  color: #585858;
}
.button-white:hover {
  background: #81c243;
  color: #ffffff;
}
.button-green {
  border: solid 1px #81c243;
  background: #81c243;
  color: #ffffff !important;
}
.button-green:hover {
  background: #72ac3b;
}
.button-green:hover a {
  color: #ffffff;
}
.button-green.button-gradient {
  background: -webkit-linear-gradient(#bedc09, #99c805) !important;
  background: -moz-linear-gradient(#bedc09, #99c805) !important;
  background: linear-gradient(#bedc09, #99c805) !important;
}
.button-green-alt {
  text-shadow: 0 1px 1px #80a805;
  background-color: #abd207;
  /*border: solid 1px #89b10c;*/
  background-image: -webkit-linear-gradient(bottom, #99c805, #bedc09);
  background-image: -moz-linear-gradient(bottom, #99c805, #bedc09);
  background-image: -o-linear-gradient(bottom, #99c805, #bedc09);
  background-image: linear-gradient(to top, #99c805, #bedc09);
}
.button-green-alt:hover {
  text-shadow: 0 1px 1px #6b8d06;
  background-color: #94b507;
  background-image: -webkit-linear-gradient(bottom, #84ac05, #a8c209);
  background-image: -moz-linear-gradient(bottom, #84ac05, #a8c209);
  background-image: -o-linear-gradient(bottom, #84ac05, #a8c209);
  background-image: linear-gradient(to top, #84ac05, #a8c209);
  color: white;
  text-decoration: none;
}
.button-blue {
  border: solid 1px #4093b9;
  background: #3380b3 !important;
  color: #ffffff !important;
}
.button-blue:hover {
  background: #24597d !important;
}
.button-blue:hover a {
  background: #24597d !important;
  color: #ffffff;
}
.button-blue.button-gradient {
  background: -webkit-linear-gradient(#5abef5, #3b9bef) !important;
  background: -moz-linear-gradient(#5abef5, #3b9bef) !important;
  background: linear-gradient(#5abef5, #3b9bef) !important;
}
.button-blue-alt {
  text-shadow: 0 1px 1px #336698;
  background-color: #82BDC4;
  /*border: solid 1px #336698;*/
  background-image: -webkit-linear-gradient(bottom, #3b9bef, #5abef5);
  background-image: -moz-linear-gradient(bottom, #3b9bef, #5abef5);
  background-image: -o-linear-gradient(bottom, #3b9bef, #5abef5);
  background-image: linear-gradient(to top, #3b9bef, #5abef5);
}
.button-blue-alt:hover {
  text-shadow: 0 1px 1px #2a537c;
  background-color: #70a2a8;
  background-image: -webkit-linear-gradient(bottom, #3488d1, #50a7d7);
  background-image: -moz-linear-gradient(bottom, #3488d1, #50a7d7);
  background-image: -o-linear-gradient(bottom, #3488d1, #50a7d7);
  background-image: linear-gradient(to top, #3488d1, #50a7d7);
  color: white;
  text-decoration: none;
}
.button-orange {
  border: solid 1px #fe8800;
  background: #fe8800 !important;
  color: #ffffff !important;
}
.button-orange:hover {
  background: #ff6a00 !important;
}
.button-orange:hover a {
  color: #ffffff;
}
.button-orange.button-gradient {
  background: -webkit-linear-gradient(#bedc09, #99c805) !important;
  background: -moz-linear-gradient(#bedc09, #99c805) !important;
  background: linear-gradient(#bedc09, #99c805) !important;
}
/*#endregion Button Colours */
/*#region Floating buttons*/
.btn-floating-wrapper {
  position: fixed;
  bottom: 30px;
  left: 15%;
  width: 70%;
  z-index: 20;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .btn-floating-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .btn-floating-wrapper {
    display: none;
  }
}
.btn-floating-wrapper .btn-floating {
  border-radius: 20px;
  display: block;
  text-align: center;
  padding: 10px 40px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: bold;
  outline: 0;
  position: relative;
  background-color: #43abef;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.btn-floating-wrapper .btn-floating .filter-count {
  position: absolute;
  border-radius: 50%;
  background: #e52829;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: none;
  font-size: 12px;
  top: 0;
  right: -5px;
  color: #ffffff;
}
.filter-count-desktop-wrapper {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .filter-count-desktop-wrapper {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .filter-count-desktop-wrapper {
    display: block;
  }
}
.filter-count-desktop-wrapper .filter-count-desktop {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .filter-count-desktop-wrapper .filter-count-desktop {
    border-radius: 50%;
    background: #e52829;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    display: block;
    font-size: 12px;
    color: #ffffff;
  }
}
@media only screen and (min-width: 1024px) {
  .filter-count-desktop-wrapper .filter-count-desktop {
    border-radius: 50%;
    background: #e52829;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    display: block;
    font-size: 12px;
    color: #ffffff;
  }
}
.mobile-taskbar {
  background: linear-gradient(#5abef5, #3b9bef);
  padding: 10px 20px !important;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .mobile-taskbar {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .mobile-taskbar {
    display: none;
  }
}
.mobile-taskbar .mobileexplorebtn {
  color: #ffffff;
}
.mobile-taskbar .mobileexplorebtn span:first-of-type:before {
  color: #ffffff;
  font-size: large;
}
.mobile-taskbar .mobilefilterbtn {
  color: #ffffff;
}
.mobile-taskbar .mobilefilterbtn .icon-equalizer:before {
  transform: rotate(90deg);
}
.mobile-taskbar .mobilefilterbtn span:first-of-type:before {
  color: #ffffff;
  font-size: large;
}
/*#endregion Floating buttons*/
/*#region Back Button i.e. View all {location} establishments button */
.back-button {
  margin: 10px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .back-button {
    margin-left: 0;
  }
}
.back-button:focus {
  outline: none;
}
.back-button:hover {
  text-decoration: none;
}
.back-button div {
  color: #000000;
  border-radius: 5px;
  display: table;
  max-width: 100%;
}
.back-button div div:nth-child(1) {
  border-right: none;
  display: table-cell;
  width: 20px;
  background: #43abef;
  padding: 5px;
  color: #ffffff;
  border-radius: 5px 0 0 5px;
  vertical-align: middle;
  text-align: center;
}
.back-button div div:nth-child(2) {
  display: table-cell;
  padding: 5px 10px 5px;
  background: #ffffff;
  border-radius: 0 5px 5px 0;
  margin-left: -5px;
  vertical-align: middle;
  border: solid 1px #e1e1e1;
  border-left: none;
}
/*#endregion Back Button */
/*#endregion BUTTONS ********************************************* */