.block-mp-deliveryoptions {
  position: relative;
}

.mp-title {
  margin-top: 15px;
  border-top: 1px solid #c1c1c1;
}

.mp-title h2 {
  margin-top: 15px;
  margin-bottom: 20px;
}

.delivery-options-wrapper {
  display: none;
}

.metapack-message {
  display: none;
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
  padding: 12px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.mp-postcode-form-elems {
  display: flex;
}

.mp-postcode-form-elems .control {
  margin-right: 10px;
}

.fieldset > .field > .mp-postcode-label {
  font-weight: 400;
}

.mp-timer-container {
  white-space: nowrap;
}

/* Loader */
.mp-loader-container {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);  
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  justify-content: center;
  align-items: center;
  color: #8f8f8f;
}

.mp-loader-container--show {
  display: flex;
}

.mp-loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.mp-loader div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #8f8f8f;
  animation: mp-loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.mp-loader div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}

.mp-loader div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}

.mp-loader div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}

@keyframes mp-loader {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}