/* (A) POPUP */
.picker-wrap {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* height: calc(100vh - 12vh) !important;
  margin-top: 12vh !important; */
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}
.picker-wrap.show {
  opacity: 1;
  visibility: visible;
}
.picker-wrap .picker {
  margin: 44.5vh auto 0 auto;
  transform: translateY(-50%);
  border-radius: 20px 20px 20px 20px;
  -webkit-box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.5);
}

/* (B) CONTAINER */
.picker {
  max-width: 300px;
  padding: 22px 20px 20px 20px !important;
  /* border: 1px solid #eee; */
  background-color: rgba(255, 255, 255, 1);
}
.picker select {
  outline: none !important;
  color: #444;
  border-color: #009b90;
  border-width: 1px !important;
  border-radius: 5px;
  -webkit-appearance: none;
  margin-bottom: 10px;
  padding-left: 10px !important;
  background-image: url(../images/chevron-down-cyan.svg);
  background-color: rgba(0, 155, 144, 0.1);
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: center;
  background-size: 13px;
}

/* (C) MONTH + YEAR */
.picker-m {
  float: left;
  width: 48%;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
}
.picker-y {
  float: right;
  width: 48%;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
}

/* (D) DAY */
.picker-d table {
  font-family: 'Roboto', sans-serif;
  color: #444;
  letter-spacing: 0.25px;
  border-collapse: separate;
  width: 100%;
  margin-top: 25px;
}
.picker-d table td {
  width: 14.28%; /* 7 EQUAL COLUMNS */
  height: 35px;
  margin: 5px;
  text-align: center;
}
/* HEADER */
.picker-d-h td {
  font-weight: bold;
}
/* BLANK DATES */
.picker-d-b {
  background-color: rgba(0, 0, 0, 0.05);
  /* border: 1px solid rgba(0,0,0,0.05); */
  border-radius: 5px;
}
/* TODAY */
.picker-d-td {
  color: white;
  background-color: #009b90 !important;
}
/* SELECTED DAY */
.picker-d-sd {
  color: white;
  background-color: #009b90 !important;
}
/* PICKABLE DATES */
.picker-d-d {
  background-color: rgba(0,0,0,0.05);
  /* border: 1px solid rgba(0,0,0,0.05); */
  border-radius: 5px;
}
/* PICKABLE DATES HOVER */
.picker-d-d:hover {
  cursor: pointer;
  background-color: #009b90;
  /* background-color: #999; */
  color: #fff;
}
/* UNPICKABLE DATES */
.picker-d-dd {
  color: #aaa;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}