/**
 * 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 {
  display: inline-block;
  padding-right: 15px;
  margin-bottom: 15px;
}

.postcode-checker-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.postcode-checker-change {
  margin-left: 10px;
  width: 30px;
  padding: 8px;
  text-decoration: none !important;
}

.postcode-checker-change-show {
  display: inline-block;
}

.postcode-checker-change-hide {
  display: none;
}

.postcode-checker-div {
  margin: 0 0 10px 0;
  align-items: center;
}

.postcode-checker-div-show {
  display: flex;
}

.postcode-checker-div-hide {
  display: none;
}

.postcode-checker-div input[type="text"] {
  flex-grow: 1;
  margin-right: 10px;
}

.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;
  display: inline-grid;
  padding-bottom: 30px;
}

#globMsg {
  color: #0f834d;
}

#globMsg::before {
  content: "\f118";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  margin-right: 0.5407911001em;
}
