.btn-delivery-check {
  cursor: pointer;
}

.detail-delivery-check {
  cursor: pointer;
}

@media (max-width: 767px) {
  .btn-delivery-check {
    font-size: 9px;
    color: #fff;
  }
}

.map-arrow {
  border: solid #000;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .map-arrow {
    border-color: #fff;
  }
}

.btn-delivery-check:hover .map-arrow {
  border-color: var(--color-primary-hover);
}

.map-right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.map-modal-visible #cboxOverlay {
  display: none !important;
}

.map-modal-visible #colorbox {
  display: none !important;
}

/* Basic Modal Styles */

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 850px;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  color: #000;
  border: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 25px;
  height: 25px;
}

.modal__close:before {
  content: "\2715";
}

.modal__content {
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #000;
}

/* Demo Animation Style */

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

/* MAP MODAL CUSTOM CSS */

.modal-content-wrapper {
  display: flex;
  flex-direction: column;
}

.map-heading {
  text-align: center;
}

.address-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.address-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.map-wrapper>div {
  height: 250px;
}

.adress-input-section {
  margin-right: 25px;
}

.address-input {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}

.address-input>.validator-msg {
  padding: 0;
}

.address-input .validator-msg+input, .address-input .validator-msg+select {
  margin: 0;
}

.map-wrapper {
  margin-top: 25px;
}

.delivery-info {
  text-align: center;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.delivery-info>p {
  margin-top: 15px;
}

.delivery-info ul li {
  padding-bottom: 10px;
}

.address-input>input {
  font-size: 16px;
  width: 210px;
  border-color: #e6e6e6;
  color: #666;
  background-color: #fff;
  padding: 10px 12px;
  border-radius: 3px;
  box-shadow: none;
  border-width: 1px;
  border-style: solid;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.address-input>input#addressNumber {
  width: 80px;
}

.address-input>input#addressZip {
  width: 80px;
}

.delivery-date-select {
  margin-bottom: 10px;
}

@media screen and (max-width: 530px) {
  .adress-input-section {
    margin-right: 10px;
  }
}

.onlyGibon {
  padding-left: 20px;
}

.onlyGibon span {
  font-size: 20px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.delivery-address-info {
  font-size: 15px;
  margin-top: 40px;
  margin-bottom: 5px;
}

.delivery-address-info a {
  color: #666;
}

.delivery-address-info a:hover {
  color: #000;
  cursor: pointer;
}

.icon-delivery>img {
  width: 25px;
  height: 25px;
}

/* LOADING BAR */

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.dp-local-pickup {
  margin-top: 10px;
  text-align: center;
}

.btn-mapClose {
  margin-left: 10px;
}

.btn-local-pickup {
  margin-left: 10px;
}

.mapClose {
  display: flex;
  justify-content: center;
}

.delivery-continue {
    margin: 0 auto;
}