.uridoki-shop {
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 1em;
}
.uridoki-shop::after {
  display: none !important;
}
.uridoki-shop__thumbnail {
  width: 60%;
  margin: auto;
}
.uridoki-shop__button {
  width: 80%;
  margin: auto;
  padding: .25em 1em;
  border-radius: 5px;
  border: 2px solid #00b8c8;
  background: var(--button-active-background-color, #00b8c8);
  font-weight: 600 !important;
  color: var(--button-active-color, #fff) !important;
  text-align: center;
  text-decoration: none !important;
  transition: all .3s;
}
.uridoki-shop__button:hover {
  --button-active-background-color: #fff;
  --button-active-color: #00b8c8;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .uridoki-shop__thumbnail {
    max-width: 80px !important;
  }
  .uridoki-shop__button {
    font-size: 14px;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .uridoki-shop__thumbnail {
    max-width: 125px !important;
  }
  .uridoki-shop__button {
    font-size: 20px;
  }
}