/* (A) POPUP */
.picker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  z-index: 7;
}
.picker-wrap.show {
  opacity: 1;
  visibility: visible;
}
.picker-wrap .picker {
  margin: 50vh auto 0 auto;
  transform: translateY(-50%);
}

/* (B) CONTAINER */
.picker {
  max-width: 300px;
  border: 1px solid #eee;
  background: #fafafa;
  padding: 10px;
}

/* (C) MONTH + YEAR */
.picker-m, .picker-y {
  width: 50%;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
  display: none;
}

.picker-nav {
  display: flex;
  justify-content: space-evenly;
}

.picker-title {
  margin-top: 6px;
}

.picker-left-arrow > svg, .picker-right-arrow > svg {
  width: 1.8em;
  height: 1.8em;
  cursor: pointer;
}

.picker-left-arrow.disabled > svg, .picker-right-arrow.disabled > svg {
  color:rgb(182, 182, 182);
  cursor: context-menu;
}

/* (D) DAY */
.picker-d table {
  color: #333;
  border-collapse: separate;
  width: 100%;
  margin-top: 10px;
}
.picker-d table td {
  width: 14.28%; /* 7 EQUAL COLUMNS */
  padding: 5px;
  text-align: center;
  font-size: 15px;
}
/* HEADER */
.picker-d-h td {
  font-weight: bold;
}
/* PICKABLE DATES */
.picker-d-d {
  color: #000000;
}
.picker-d-d:hover {
  cursor: pointer;
}
/* UNPICKABLE DATES */
.picker-d-dd {
  color: rgb(182, 182, 182);
}
/* BLANK DATES */
.picker-d-b {
  line-height: 29px;
}