﻿.datetime-box {
  display: flex;
  width: 100%;
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-left: solid 1px #ccc;
}

.datetime-box .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 10px;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  position: relative;
}
.datetime-box .box.zero {}
.datetime-box .box.none {
  background: #eee;
}

@media screen and (max-width: 599px) {
  .datetime-box .box {
    height: 50px;
    padding: 5px;
  }

  .datetime-box .box p {
    font-size: 11px;
  }
}

.datetime-box .box.h_s {
  height: 20px;
}

@media screen and (max-width: 599px) {
  .datetime-box .box.h_s {
    height: 20px;
  }
}

.datetime-box .date-box .list:last-of-type .box {
  border-right: none;
}

.datetime-box .time-box {
  width: 100px;
}

@media screen and (max-width: 599px) {
  .datetime-box .time-box {
    width: 70px;
  }
}

.datetime-box .date-box {
  display: flex;
  width: calc(100% - 100px);
  overflow-x: scroll;
}

@media screen and (max-width: 599px) {
  .datetime-box .date-box {
    width: calc(100% - 70px);
  }
}

.datetime-box .date-box .list {
  text-align: center;
}

.datetime-box .date-box .box {
  width: 100px;
}

@media screen and (max-width: 599px) {
  .datetime-box .date-box .box {
    width: 62px;
  }
}

.datetime-box .date-box .icon {
  width: 100%;
  font-size: 20px;
  color: #00aebb;
}
.datetime-box .date-box .zero .icon{
  font-size: 26px;
}

@media screen and (max-width: 599px) {
  .datetime-box .date-box .icon {
    font-size: 18px;
  }
  .datetime-box .date-box .zero .icon{
    /* font-size: 26px; */
  }
}

.datetime-box .date-box .note {
  font-size: 11px;
}

.js-inventory-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.js-inventory-btn:hover {
  background: rgba(0, 174, 187, .1);
}

.js-inventory-btn.click {
  background: rgba(0, 174, 187, .3);
  pointer-events: none;
}
.datetime-box .date-box label::before ,
.datetime-box .date-box label::after {
  display: none;
}
.datetime-box .date-box .box.verror:not(.h_s) {
  background: #ffe4e4;
}
.datetime-box .date-box input[type="radio"]:checked + label {
  background: rgba(0, 174, 187, .3) !important;
  pointer-events: none;
}
.datetime-box .date-box label.checked {
  pointer-events: none;
}

@media screen and (max-width: 599px) {}