@media only screen and (min-width: 320px) and (max-width: 768px) {

  .slide-leave-active,
  .slide-enter-active {
    transition: 0.3s;
  }

  .slide-enter {
    transform: translate(100%, 0);
  }

  .slide-leave-to {
    transform: translate(100%, 0);
  }

  html {
    font-size: 62.5%;
  }

  #page {
    width: 100vw;
  }

  .w-full { width: 100%; }
  .s-full { width: 80%; }
  .h-full { height: 100%; }

  .box-border {
    border: 3px solid #dce4e3;
    border-radius: 8px;
    padding: 10px;
  }

  .box-margin { margin: 0 5px; }
  .box-padding { padding: 15px; }

  .container-box { padding: 10px 0; position: relative; }
  .container-box-title {
    margin: .5rem 1.5rem;
    padding: .5rem 0;
    font-family: 'twayfly';
    font-size: 1.3rem;
    color: #003B4A;
    border-bottom: 2px solid #1376b5;
  }

  .container-header { color: #888; padding: 0; }
  .container-tabs .container-tabs-header { font-size: 1.2rem; background-color: #dce4e3; column-gap: .3rem; }
  .container-tabs .container-tabs-header > span.active { background-color: #1376b5; color: #fafafa; }
  .container-tabs .container-tabs-header > span { padding: .8rem; cursor: pointer; }
  .container-tabs .container-tabs-header > span:not(:last-child) { margin-right: unset; }
  .container-tabs .container-tabs-body { margin: 1.2rem 0; overflow: auto; font-size: 1.2rem; }
  .container-tabs .container-tabs-body .provision-text * { font-family: 'twayfly'; font-size: 1.1rem; line-height: 1.6em; }

  .search-filter span:not(:last-child) { padding-right: 10px; }
  .search-filter span label { padding-left: 5px; }

  #infinite-loader { padding: .8rem 0; text-align: center; }

  #header {

    width: 100%;
    height: 7rem;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;

    display: grid;
    grid-template-columns: 13rem 1fr;
    column-gap: 1rem;
    padding: 1rem 0;
    align-items: center;

  }

  #header .logo { all: unset; position: relative; }
  #header .logo a { position: absolute; width: 80%; top: 50%; left: 50%; transform: translate(-50%, -50%);}
  #header .logo a img { width: 100%; }
  #header nav a:hover { color: #c5c5c5; }

  #header nav { text-align: right; padding-right: 1rem;  font-size: 32px;}

  #header .nav-sub {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    color: #fff;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);

    font-size: 1.6rem;
    display: grid;
    grid-auto-rows: 7rem;
    row-gap: 1rem;
    align-items: flex-start;
    justify-content: flex-end;

    padding: 0 1rem;
  }
  #header .nav-sub > div, #header .nav-sub > a {
    text-align: right;
  }

  #header .nav-sub .nav-close { font-size: 5rem; }
  #header .nav-sub a { font-family: 'twayfly'; font-size: 2rem; padding-right: 1rem; padding-top: 1.5rem; }

  #footer { background-color: #f5f7f6; font-size: 14px; }
  #footer .footer-wrapper { padding-bottom: 8px; }
  #footer .footer-wrapper p span { font-size: 1rem; line-height: 1.6em; }

  #footer .footer-wrapper .footer-link {
    height: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    font-size: .9rem;
  }

  #footer .footer-wrapper .footer-link a { color: #666; text-align: left; }

  #footer .footer-wrapper p:not(.footer-link) {

    font-size: .9rem;
    height: auto;

    display: grid;
    justify-content: flex-start;

    grid-template-columns: auto auto auto;
    column-gap: .5rem;

    padding: 0 1rem;

  }

  #footer .footer-wrapper p span { padding: 0 0.8rem; }
  #footer .footer-wrapper p:nth-child(3) {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
  }

  #footer .footer-wrapper p:nth-child(4) { padding: .5rem .8rem; }

  #footer .footer-copyright {
    background-color: #ededed;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-wrapper {
    z-index: 999;
    position: absolute;
    margin-left: 0;
    padding: 0 10px;
  }

  .header-bk-line {
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
    position: absolute;
    left: 0px;
    top: 30%;
    z-index: 1;
  }

  .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
  }

  .arrow .line {
    width: 70px;
    background: #1376b5;
    height: 2px;
  }

  .arrow .point {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #1376b5;
  }

  .input-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 5px 0;
  }

  .input-group label { flex: .4; color: #a5a5a5; }
  .input-group .input-select,
  .input-group .input-text { flex: 1 }
  .input-group .input-text { text-align: center; margin: 5px 0; }

  .input-group input[type=text]::placeholder,
  .input-group input[type=tel]::placeholder,
  .input-group input[type=password]::placeholder { color: #dedede; }

  .input-group input[type=text].input-text,
  .input-group input[type=tel].input-text,
  .input-group input[type=password].input-text {
    border: 1px solid #dce4e3;
    color: #3a3a3a;
    padding: 5px 8px;
    outline: none;
  }

  .biz-select {
    width: 100%;
    position: relative;
    font-family: 'twayfly';
    font-size: 1.6rem;
    outline: none;
    line-height: 1.3em;
  }

  .biz-select .biz-selected {
    background-color: #fff;
    border: 1px solid #dce4e3;
    color: #3a3a3a;
    padding: 5px 8px;
    cursor: pointer;
    user-select: none;
  }

  .biz-select .biz-selected.open {
    border: 1px solid #dce4e3;
  }

  .biz-select .biz-selected.open:after {
    position: absolute;
    content: "";
    top: 3px;
    right: 10px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: transparent transparent #1376b5 transparent;
  }

  .biz-select .biz-selected:after {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #1376b5 transparent transparent transparent;
  }

  .biz-select .biz-select-items {
    color: #3a3a3a;
    overflow: hidden;
    border-right: 1px solid #dce4e3;
    border-left: 1px solid #dce4e3;
    border-bottom: 1px solid #dce4e3;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: #fff;
  }

  .biz-select .biz-select-items div {
    color: #3a3a3a;
    cursor: pointer;
    user-select: none;
    padding: 5px 8px;
  }

  .biz-select .biz-select-items div.selected {
    background-color: #4DCDBF !important;
    color: #f8f8f8 !important;
  }

  .biz-select .biz-select-items div:hover {
    background-color: #e0fffc;
    color: #3a3a3a;
  }

  .biz-select .biz-select-hide {
    display: none;
  }

  .btn {
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'twayfly';
    font-size: 13px;
    outline: none;
  }

  .btn.btn-active { background-color: #1376b5; color: #fff; }
  .btn.btn-basket { border: 1px solid #1376b5; background-color: #fff; color: #3a3a3a; }
  .btn.btn-order { background-color: #003B4A; color: #fff; }


  .arrow-left {
    border: 12px solid transparent;
    border-color: transparent #003B4A transparent transparent;
    cursor: pointer;
  }
  .arrow-right {
    border: 12px solid transparent;
    border-color: transparent transparent transparent #003B4A;
    cursor: pointer;
  }

  #receipt {
    width: 350px;
    left: 5%;
    transform: translateX(-5%);
    border-radius: 8px;
    box-shadow: 1px 2px 6px rgba(0,0,0,0.6);
    z-index: 5;
    background-color: #fff;
  }

  .provision-text { font-size: 1.1rem; }
  .provision-text * { margin: unset !important; width: unset !important; padding: unset !important; word-break: unset !important }


  .text-import .text-import-item {
    position: absolute;
    top: -34px;
    left: 47px;

    font-weight: 600;
    transform: rotate(-15deg);
    overflow: hidden;
    font-family: 'Single Day', cursive;
    font-size: 2rem;
    color: #ff4336;
  }



  .text-import .anchor-wrapper {
    position: absolute;
    top: -23px;
    left: 45px;
    font-size: 2em;
    font-weight: 400;
    color: #ff4336;
    transform: rotate(5deg);

  }

}
