.stav_modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.25s ease;
  z-index: 9999;
}

.stav_modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.stav_modal-state {
  display: none;
}

.stav_modal-state:checked + .stav_modal {
  opacity: 1;
  visibility: visible;
}

.stav_modal-state:checked + .stav_modal .stav_modal__inner {
  top: 0;
}

.stav_modal__inner {
  transition: top 0.25s ease;
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  margin: auto;
  overflow: auto;
  background: #fff;
  border-radius: 5px;
  padding: 1em 2em;
  height: 50%;
}

.stav_modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
}

.stav_modal__close:after,
.stav_modal__close:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #ccc;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
}

.stav_modal__close:hover:after,
.stav_modal__close:hover:before {
  background: #aaa;
}

.stav_modal__close:before {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .stav_modal__inner {
    width: 90%;
    height: 90%;
    box-sizing: border-box;
  }
}

.store-availability-btn {
  cursor: pointer;
}

.store-availability-btn h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}

a:focus,
button:focus,
.button.alt:focus,
input:focus,
textarea:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus {
  outline: none;
}

.flex {
  display: flex;
}

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-full {
  width: 100%;
}

.mt-1 {
  margin-top: 10px;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.red {
  color: red;
}

.check-storeAvailability-btn {
  background-color: white;
  color: black;
  border: 2px solid #04aa6d;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
}

.check-storeAvailability-btn:hover:not(:disabled),
.check-storeAvailability-btn:active:not(:disabled) {
  background-color: #04aa6d;
  color: white;
}

.stav_modal .shop-address {
  border-collapse: collapse;
  width: 100%;
}

.stav_modal .shop-address td,
.stav_modal .shop-address th {
  border: 1px solid #ddd;
  padding: 8px;
}

.stav_modal .shop-address tr:nth-child(even) {
  background-color: #f2f2f2;
}

.stav_modal .shop-address tr:hover {
  background-color: #ddd;
}

.stav_modal .shop-address th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04aa6d;
  color: white;
}

.m-0 {
  margin: 0;
}

.m-2 {
  margin: 10px;
}

.my-2 {
  margin: 10px 0;
}

.d-block {
  display: block;
}

.grid {
  display: grid;
}

.grid-col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inline-block {
  display: inline-block;
}

.mb-2 {
  margin-bottom: 10px;
}
