/* style to Modal */
#__boc-modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

#__boc-modal-content-wrap {
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10px;
  gap: 20px;
  isolation: isolate;
  position: absolute;
  width: 350px;
  height: 218px;
  left: calc(50% - 350px/2);
  top: calc(50% - 218px/2 - 27px);
}

.__boc-modal-content {
  position: absolute;
  width: 350px;
  height: 200px;
  left: 0px;
  top: 0px;

  background: #FFFFFF;
  overflow-y: scroll;
}

#__boc-modal-btn-close {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 15px;
  top: 0;
  color: #000;
  font-size: 200%;
  margin-top: 0;
}

#__boc-modal-btn-close:hover,
#__boc-modal-btn-close:focus {
  color: grey;
  text-decoration: none;
  cursor: pointer;
}

.__boc-modal-header {
  padding: 2px 0 2px 16px;
  color: white;
}

.__boc-modal-title-text {
  color: #121;
  width: 324px;
  height: 22px;
  font-family: 'Assistant';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  text-align: center;
}

.__boc-modal-body {
  padding: 2px 16px;
}

.__boc-modal-body-txt {
  color: #121;
  width: 320px;
  height: 30px;
  font-family: 'Assistant';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-align: center;
}

.__boc-modal-body-sub-txt {
  width: 330px;
  height: 26px;
  font-family: 'Assistant';
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  text-align: center;
  color: #121212;
}

.__boc-modal-footer {
  padding: 2px 16px;
  color: white;
  display: flex;
  justify-content: flex-end;
}

.__boc-modal-body-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 10px;
  width: 330px;
  height: 47px;
  background: #000000;
  margin: 0 auto;
  flex-direction: row;
  justify-content: center;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  font-family: 'Assistant';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
  border: 2px solid black;
  margin-top: 16px;
}

.__boc-modal-footer-close-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: #121;
  width: 330px;
  height: 17px;
  font-family: 'Assistant';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.03em;
}

@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }

  to {
    bottom: 100px;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }

  to {
    bottom: 100px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* style to Toast message */
#__boc-toast-message {
  visibility: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  padding: 6px 16px;
  position: fixed;
  z-index: 1;
  left: calc(50% - 320px/2 + 0.5px);
  bottom: 30px;
  width: 320px;
  height: 52px;
  font-size: 13px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  line-height: 143%;
}

#__boc-toast-message.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 3s;
  animation: fadein 0.5s, fadeout 0.5s 3s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

.__boc-btn-cancel {
  margin: 0 !important;
  white-space: nowrap !important;
  width: 140px;
}

.__boc-td-btn-cancel {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.__boc-modal-body-products {
  display: flex;
  justify-content: space-between;
}

#__boc-modal-refund-input {
  width: 50px;
}

.__boc-modal-body-products {
  margin-bottom: 20px;
}

.__boc-modal-body-products-image,
.__boc-modal-body-products-price {
  width: 15%;
}

.__boc-modal-body-products-quantity,
.__boc-modal-body-products-name-price {
  width: 30%;
}

.__boc-block-button-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

#__boc-modal-btn-cancel,
#__boc-modal-btn-refund {
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 100px;
  padding: 1rem;
  font-weight: bold;
  border: 2px solid black;
  color: white;
  background: black;
  transition: 0.5s;
}

#__boc-modal-btn-cancel:hover,
#__boc-modal-btn-refund:hover {
  color: black;
  background: white;
}