  /**
  * All of the CSS for your public-facing functionality should be
  * included in this file.
  */

  /* Animations */
  @keyframes wcmlim-shaker {
    0%,
    100% {
      transform: translateX(0px);
    }
    33.3% {
      transform: translateX(-8px);
    }
    66.6% {
      transform: translateX(8px);
    }
  }

  @-webkit-keyframes wcmlim-shaker {
    0%,
    100% {
      transform: translateX(0px);
    }
    33.3% {
      transform: translateX(-12px);
    }
    66.6% {
      transform: translateX(12px);
    }
  }

  .wcmlim-shaker {
    animation-name: wcmlim-shaker;
    animation-duration: 300ms;
    animation-iteration-count: 2;
    animation-timing-function: ease-in-out;
  }

  /* Spinners and Animations */
  .wcmlim-chase-wrapper {
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .wcmlim-chase {
    width: 30px;
    height: 30px;
    position: relative;
    animation: wcmlim-chase 2.5s infinite linear both;
  }

  .wcmlim-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: wcmlim-chase-dot 2s infinite ease-in-out both;
  }

  .wcmlim-chase-dot:before {
    content: "";
    display: block;
    width: 35%;
    height: 35%;
    background-color: #555;
    border-radius: 100%;
    animation: wcmlim-chase-dot-before 2s infinite ease-in-out both;
  }

  .wcmlim-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
  }
  .wcmlim-chase-dot:nth-child(2) {
    animation-delay: -1s;
  }
  .wcmlim-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
  }
  .wcmlim-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
  }
  .wcmlim-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
  }
  .wcmlim-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
  }
  .wcmlim-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
  }
  .wcmlim-chase-dot:nth-child(2):before {
    animation-delay: -1s;
  }
  .wcmlim-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
  }
  .wcmlim-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
  }
  .wcmlim-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
  }
  .wcmlim-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
  }

  @keyframes wcmlim-chase {
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes wcmlim-chase-dot {
    80%,
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes wcmlim-chase-dot-before {
    50% {
      transform: scale(0.4);
    }
    100%,
    0% {
      transform: scale(1);
    }
  }

  /* Postcode checker section */
  .postcode-checker * {
    box-sizing: border-box;
  }

  .postcode-checker {
    padding: 10px 0;
  }

  .postcode-checker-title {
    margin: 0;
    padding: 5px 0;
  }

  .postcode-checker-change {
    margin-left: 10px;
    width: 30px;
    padding: 0 5px;
    text-decoration: none !important;
  }

  .postcode-checker-change-show {
    display: inline-block;
  }

  .postcode-checker-change-hide {
    display: none;
  }

  .postcode-checker-div {
    margin: 0 0 20px 0;
    align-items: center;
  }

  .postcode-checker-div-show {
    display: flex;
  }

  .postcode-checker-div-hide {
    display: none;
  }

  .postcode-checker-div input[type="text"] {
    flex: 70%;
    margin-right: 10px;  
    background-color: #f2f2f2;
    color: #43454b;
    border: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-weight: 400;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.125);
    line-height: 1.2 !important;
    padding: 15px !important;
  }

  .postcode-checker-response {
    margin-bottom: 10px;
  }

  .postcode-checker-response p {
    margin: 0;
  }

  .postcode-checker-response hr {
    margin: 8px 0;
    background-color: #eee;
  }

  .select_location-wrapper {
    width: auto;
  }

  .Wcmlim_sel_loc, .wcmlim_changesel {
    position: relative;
    color: #414141;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 65%;
    background-color: #fff;
    border: none;
    background: transparent;
  }
  .loc_dd {
    background: white;
    color: black;
    border: 1px black;
    padding: 5px;
    border-radius: 4px;
    position: relative;
    margin: 0 0 10px 0;
  }
  .loc_dd i {
    float: left;
    position: absolute;
    right: 15px;
    font-size: 22px;
    text-align: center;
    top: 30%;
    left: 90%;
  }
  .Wcmlim_sloc_label {
    font-weight: 600;
    margin: 0 0 10px 5px;
    font-size: 16px;
  }
  .Wcmlim_prefloc_box {
    border-bottom: 1px solid #000;
  }
  #globMsg,
  #losm {
    margin: 0;
    padding: 0 0 5px 0;
  }
  #globMsg {
    color: #0f834d;
  }
  #losm {
    color: #e2401c;
  }
  .Wcmlim_loc_label,
  .Wcmlim_stock_accept,
  .Wcmlim_messageerror {
    display: flex;
    flex-direction: row;
  }
  .Wcmlim_acceptdetail,
  .Wcmlim_acceptstock {
    flex: 50%;
  }
  .Wcmlim_locstock {
    flex: 30%;
  }
  .Wcmlim_locadd {
    flex: 70%;
    margin-right: 10px;
  }
  .selected_location_name i,
  .loc_dd i {
    color: #f57b51;
  }
  .Wcmlim_have_stock,
  .Wcmlim_over_stock {
    text-align: center;
    padding: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2 !important;
    padding: 15px !important;
  }
  .Wcmlim_have_stock {
    background-color: #58d68d;
  }
  .Wcmlim_over_stock {
    background-color: #ec7063;
  }
  #submit_postcode_product,
  #submit_postcode_global {
    text-decoration: none;
    background-color: #f57b51;
    color: #fff;
    flex: 30%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2 !important;
    padding: 15px !important;
  }
  .Wcmlim_container {
    padding: 10px 20px;
    background-color: #cfcfcf;  
  }
  .Wcmlim_box_title {
    color: #333333;
    font-size: 26px;
    font-weight: 600;
    margin: 0 !important;
    padding: 0 !important;
  }
  .selected_location_detail,
  .postcode-checker-title,
  .postcode-location-distance {
    font-size: 18px;
    font-weight: 400;
    color: #000;
  }
  .Wcmlim_box_content.select_location-wrapper i {
    margin-right: 5px;
  }
  .selected_location_detail,
  .postcode-location-distance {
    line-height: 1.3;
  }
  .postcode-location-distance {
    margin-left: 3px;
  }
  .Wcmlim_noStore {
    flex: 100%;
  }
  .Wcmlim_box_header {
    padding: 15px 0;
  }
  .Wcmlim_locstock #showMe {
    background: #cd2653;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.0333em;  
    text-align: center;
    text-transform: uppercase;
    width: 50%;
    padding: 10px;
    font-size: 18px;
  }
  #lc-switch-form .postcode-location-distance {
    margin-left: 0 !important;
  }
  #lc-switch-form .Wcmlim_container {
    width: 100% !important;
  }
  .midLoader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("../img/loader.gif") 50% 50% no-repeat rgba(249, 249, 249, 0);
  }

  .next_closest_location_detail {
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
  }
  .next_closest_location_detail .next_km {font-weight: 400 !important;}

  .Wcmlim_nextloc_label {
    display: flex;
    margin-top: 10px;
  }

  .Wcmlim_nextlocadd {
    flex: 70%;
    margin-right: 10px;
  }
.Wcmlim_sel_loc, .wcmlim_changesel {
  position: relative;
  color: #414141;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 65%;
  background-color: #fff;
  border: none;
  background: transparent;
}
.loc_dd {
  background: white;
  color: black;
  border: 1px black;
  padding: 5px;
  border-radius: 4px;
  position: relative;
  margin: 0 0 10px 0;
}
.loc_dd i {
  float: left;
  position: absolute;
  right: 15px;
  font-size: 22px;
  text-align: center;
  top: 30%;
  left: 90%;
}
.Wcmlim_sloc_label {
  font-weight: 600;
  margin: 0 0 10px 5px;
  font-size: 16px;
}
.Wcmlim_prefloc_box {
  border-bottom: 1px solid #000;
}
#globMsg,
#losm {
  margin: 0;
  padding: 0 0 5px 0;
}
#globMsg {
  color: #0f834d;
}
#losm {
  color: #e2401c;
}
.Wcmlim_loc_label,
.Wcmlim_stock_accept,
.Wcmlim_messageerror {
  display: flex;
  flex-direction: row;
}
.Wcmlim_acceptdetail,
.Wcmlim_acceptstock {
  flex: 50%;
}
.Wcmlim_locstock {
  flex: 30%;
}
.Wcmlim_locadd {
  flex: 70%;
  margin-right: 10px;
}
.selected_location_name i,
.loc_dd i {
  color: #f57b51;
}
.Wcmlim_have_stock,
.Wcmlim_over_stock {
  text-align: center;  
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2 !important;
  padding: 15px !important;
}
.Wcmlim_have_stock {
  background-color: #58d68d;
}
.Wcmlim_over_stock {
  background-color: #ec7063;
}
#submit_postcode_product,
#submit_postcode_global {
  text-decoration: none;
  background-color: #f57b51;
  color: #fff;
  flex: 30%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2 !important;
  padding: 15px !important;
}
.Wcmlim_container {
  padding: 10px 20px;
  background-color: #cfcfcf;  
}
.Wcmlim_box_title {
  color: #333333;
  font-size: 26px;
  font-weight: 600;
  margin: 0 !important;
  padding: 0 !important;
}
.selected_location_detail,
.postcode-checker-title,
.postcode-location-distance {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
.Wcmlim_box_content.select_location-wrapper i {
  margin-right: 5px;
}
.selected_location_detail,
.postcode-location-distance {
  line-height: 1.3;
}
.postcode-location-distance {
  margin-left: 3px;
}
.Wcmlim_noStore {
  flex: 100%;
}
.Wcmlim_box_header {
  padding: 15px 0;
}
.Wcmlim_locstock #showMe {
  background: #cd2653;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.0333em;  
  text-align: center;
  text-transform: uppercase;
  width: 50%;
  padding: 10px;
  font-size: 18px;
}
#lc-switch-form .postcode-location-distance {
  margin-left: 0 !important;
}
#lc-switch-form .Wcmlim_container {
  width: 100% !important;
}
.midLoader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../img/loader.gif") 50% 50% no-repeat rgba(249, 249, 249, 0);
}

  .Wcmlim_accept_btn{
    flex: 30%;
    border-radius: 3px;
    color: #ffffff;
    background-color: #58d68d;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
  }

  #load {
    display: flex;
    color: white;
    width: 100%;
    font-size: larger;
    text-align: center;
  }
  #map .gm-style-iw-d
  {
    overflow: unset !important;
  }
  #map .gm-style-iw.gm-style-iw-c
  {
    padding: 0 !important;
  }
  .locator-store-block
  {
    width: 280px;
  }
  .locator-store-block hr
  {
    margin: 6px 0;
  }
  .locator-store-block p
  {
    background: #f7faf1;
    padding: 10px 10px;
    margin: 0rem;
  }
  .locator-store-block p span
  {
    margin-right: 7px;
  }
  .locator-store-block h4
  {
    background: #187dc7 none repeat scroll 0 0;
    color: #fff;
    display: block;
    float: none;
    font-size: 13px;
    max-width: none;
    padding: 7px 10px;
    margin: 0;
  }
  .locator-store-block .fa
  {
    margin-right: 10px;
  }
  .wcmlim-map-widgets .block-1
  {
    width: 69.50%;
      display: inline-block;
  }
  .map-view-locations
  {
    height:500px;
  }
  .map-view-locations .block-2
  {
    width: 25.5%;
    height: 420px;
    position: absolute;
    overflow-y: scroll;
    display: inline-block;
    background: #f9f9f9;
    border: 1px solid #80808033;
    padding: 1rem;
  }
  .block-2 .wcmlim-map-sidebar-list
  {
    cursor: pointer;
    background: transparent none repeat scroll 0 0!important;
      border-bottom: 1px solid #ccc!important;
      padding-bottom: 10px;
  }
  .block-1 .block-2
  {
    display: inline-block;
  }
  .wcmlim-top-map-widgets .rSlider, .wcmlim-top-map-widgets .rangedisplay
  {
    display: inline-block;
  }
  .wcmlim-map-sidebar-list .fa
  {
    margin-right: 11px;
      color: gray;
  }
  .wcmlim-map-sidebar-list p.location-address
  {
    margin-bottom: 5px;
  }
  .wcmlim-map-sidebar-list h4
  {    margin-bottom: 0;
    color: #0a4875;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
    padding: 0 0 5px;
    margin-top: 5px;
    text-decoration: none;
  }
  .wcmlim-map-widgets
  {
    margin: 2rem 0;
    background: white;
  }
  .wcmlim-top-map-widgets
  {
    padding: 1rem;
    color: #f9f9f9;
    background: #187dc7;
    font-size: 16px;
  }
  .wcmlim-top-map-widgets label, .wcmlim-top-map-widgets input
  {
    margin: 0 10px;
  }
  .list-view-locations .miles
  {
    width: 19% !important;
    float: right;
    margin: 0 !important;
  }
  .wcmlim-map-sidebar-list .miles
  {
    font-size: 12px;
    margin: 0;
    background: #d9dada21;
    color: #6b6969;
    text-align: right;
    padding-right: 10px;
    width: 100%;
    margin-top: 12px;
  }
  .wcmlim-map-sidebar-list .miles .fa
  {
    opacity: 0.3;
    color: #27262691;
    float: left;
    font-size: 20px;
  }
  .location-address span.far {
    font-size: 10px!important;
    background-color: transparent!important;
}
.location-address span {
  font-size: 11px!important;
  background-color: transparent!important;
  display: inline-block;
}
.wcmlim-map-sidebar-list button
{
  background: #187dc7;
    font-size: 14px;
    padding: 6px 12px!important;
    color: white;
}
.wcmlim-map-sidebar-list button:nth-child(2)
{
  float: right;
}
.wcmlim-top-map-widgets .distance-bar, .wcmlim-top-map-widgets .search-bar
{
  display: inline;
}
.origin-location-marker h4
{
  background: #91bbda5e;
  font-size: 12px;
    font-weight: 100;
    text-align: center;
}
.block-1 .map .gm-style .gm-style-iw-t::after
{
  background: #80808059;
    z-index: -1;
}
.noUi-target {
	height: 15px;
	border: none;
	margin: 40px 0 0 0; 
}
@media screen and (max-width: 767px) {
	.noUi-target {
		margin: 40px 0 50px 0; 
	} 
}
.noUi-target .noUi-base {
	background: linear-gradient(117deg,#0d064c 0,#740887 100%);
	border: none;
	border-radius: 15px; 
	cursor: pointer;
}
.noUi-target .noUi-base .noUi-connect {
	background: #013a67;
}
.noUi-target .noUi-base .noUi-tooltip {
	bottom: -35px;
	color: #013a67;
	border: none;
	outline: none;
	font-weight: bold; 
}
.noUi-handle.noUi-handle-lower {
	background: #0d064c;
	border-radius: 20px;
	width: 30px;
	height: 30px;
	outline: none;
	right: 0px;
	top: -8px;
	cursor: pointer; 
	box-shadow: none;
	border: 3px solid #ffffff;
	-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.noUi-handle.noUi-handle-lower.noUi-active{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.noUi-handle.noUi-handle-lower::before, .noUi-handle.noUi-handle-lower::after {
	display: none; 
}
.noUi-handle.noUi-handle-lower .noUi-touch-area {
	width: 30px;
	height: 30px; 
}
.geolocation-marker
{
  padding: 10px;
  padding-top: 12px;
  height: auto;
  margin-left: -3.2rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  color: #f9f9f9 !important;
  background: #187dc7 !important;
  border-color: white !important;
  box-shadow: none;
  transition: all .2s linear;
  position: absolute;
  margin-top: 1.6rem;
}
.marker-btn-1
{
  width: 48%;
  margin-bottom: 0.5rem;
  margin-right: 2%;
  background: #187dc7;
  color: white !important;
  display: inline-block;
  text-align: center;
  padding: 5px;
}
.marker-btn-2
{
  margin-bottom: 0.5rem;
  display: inline-block;
  text-align: center;
  width: 48%;
  margin-left: 2%;
  background: #187dc7;
  color: white !important;
  padding: 5px;
}

#lc-switch-form .wcmlim_form_box{
  display: inline-flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}

#lc-switch-form .wcmlim_form_box .postcode-checker {
 padding: 0;

  
}
#lc-switch-form .wcmlim_form_box .fa.fa-search{
  padding-right: 5px;
}

#lc-switch-form .wcmlim_form_box .wcmlim_sel_location, #lc-switch-form .wcmlim_form_box .postcode-checker {
  margin-right: 10px;
}
#lc-switch-form .wcmlim_form_box .wcmlim_change_lc_to, #lc-switch-form .wcmlim_form_box .postcode-checker-title {
  font-weight: 500;
  font-size: 18px;
  padding: 0;
  margin: 0;
}
#lc-switch-form .wcmlim_form_box .wcmlim_sel_location {
  display: inline-flex;
  align-items: flex-start;
}
.list-view-locations
{
  padding: 0;
}
.list-view-locations
{
  padding: 0;
}
.list-view-locations
{
  padding: 0;
}
.list-view-locations .block-2 {
  padding: 1rem;
  width: 100% !important;
  position: inherit;
  overflow-y: scroll;
  overflow-x: hidden;
}
#elementIdGlobalMap:focus
{
  border-color: transparent !important;
}
.list-view-locations .block-2 .wcmlim-map-sidebar-list
{
  padding-bottom: 4rem;
}
.list-view-locations .block-1
{
  display: none !important;
}