
.mdtp-hidden { display: none; }


a.mdtp-prev, a.mdtp-next {
  display: block;
  position: absolute; top: 50%; z-index: 1;
  margin-top: -20px; padding: 8px;
  width: 40px; height: 40px;
  opacity: 0.6;
}
a.mdtp-prev::before,
a.mdtp-next::before {
  content: '';
  display: block;
  width: 24px; height: 24px;
  background: url('/img/svg-sprite-navigation.svg') no-repeat 0 0;
  background-size: 24px auto;
  background-position: 0 99px;
  opacity: 0.6;
}
a.mdtp-prev { left: 0; }
a.mdtp-prev::before { background-position: 0 -192px; }
a.mdtp-next { right: 0; }
a.mdtp-next::before { background-position: 0 -216px; }

a.mdtp-time {
  position: absolute;
  display: block;
  border-radius: 50%;
  width: 40px; height: 40px;
  color: #333;
  font-size: 1.2em; font-weight: 500;
  line-height: 40px;
  text-align: center; text-decoration: none;
  cursor: pointer;
}
a.mdtp-hour.selected,
a.mdtp-minute.selected { background: #339793; color: #fff; }
a.mdtp-hour.disabled,
a.mdtp-minute.disabled {
  color: #757575;
}

a.mdtp-am,
a.mdtp-pm {
  display: inline-block;
  margin-left: 8px;
  width: 40px; height: 40px;
  color: #333;
  font-weight: 600;
  line-height: 40px;
  border-radius: 50%;
  text-align: center; text-decoration: none;
  background: #eee;
}

a.mdtp-day,
span.mdtp-day {
  display: block;
  border-radius: 40px;
  width: 40px; height: 40px;
  color: #333;
  font-size: 12px;
  text-align: center; text-decoration: none;
  line-height: 40px;
}
a.mdtp-day:hover,
a.mdtp-day:focus {
  background: rgba(0, 32, 91, .05);
  text-decoration: none;
}
a.mdtp-day.selected{
  background: #00C996;
  color: #fff;
  cursor: default;
}
span.mdtp-day { color: #999; }


button.mdtp-btn {
  display: inline-block;
  padding: 8px 16px;
  min-width: 64px; height: 32px;
  border: 0; border-radius: 12px;
  font: bold 14px/16px 'Roboto', sans-serif;
  vertical-align: middle;
  text-align: center; 
  background: transparent;
  color: inherit;
/*  text-transform: uppercase;*/
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;

  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button.mdtp-btn:hover,
button.mdtp-btn:focus,
button.mdtp-btn:active {
  -webkit-box-shadow: 0 0 0 4px rgba(0, 32, 91, .05);
          box-shadow: 0 0 0 4px rgba(0, 32, 91, .05);
}

button.mdtp-btn-cancel:hover,
button.mdtp-btn-cancel:focus,
button.mdtp-btn-cancel:active {
  background: rgba(0, 32, 91, .05);

  -webkit-box-shadow: none;
          box-shadow: none;
}

button.mdtp-btn-ok {
  background: #00C996;
  color: #fff;
}
button.mdtp-btn-ok:hover,
button.mdtp-btn-ok:focus,
button.mdtp-btn-ok:active {
    -webkit-box-shadow: 0 0 0 4px rgba(0, 201, 150, 0.2);
            box-shadow: 0 0 0 4px rgba(0, 201, 150, 0.2);
}


table.mdtp-days { width: 100%; }
table.mdtp-days tr > th {
  padding-right: 16px;
  color: #999;
  text-align: right;
}


div.mdtp {
  position: fixed; top: 0; z-index: 1000;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.6);
}
div.mdtp-dialog {
  margin: 16px auto 0 auto;
  width: 328px;
  border-radius: 16px;
  background: #fff;

  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .12), 0 1px 6px rgba(0, 0, 0, .12);
          box-shadow: 0 1px 6px rgba(0, 0, 0, .12), 0 1px 6px rgba(0, 0, 0, .12);
}
div.mdtp-actual-day {
  margin: -8px -8px 8px; padding: 8px;
  background: #00205B;
  color: #fff;
  text-align: center;
  border-radius: 16px 16px 0 0;
}

div.mdtp-row { position: relative; }

div.mdtp-date,
div.mdtp-actual-time {
  padding: 8px;
  background: #fff;
  border-bottom: 1px solid #CCD2DE;
  border-radius: 16px 16px 0 0;
  text-align: center;
}
div.mdtp-actual-month {
  font-size: 2.2em;
  text-transform: uppercase;
}
div.mdtp-actual-date,
div.mdtp-actual-time {
  font-size: 45px;
  line-height: 1;
}
div.mdtp-actual-year { font-size: 2.2em; }
div.mdtp-picker { padding: 8px 16px; }
div.mdtp-month, div.mdtp-time { font-weight: 500; text-align: center; font-size: 1.2em; padding-bottom: 10px; }

div.mdtp-clock {
  position: relative; z-index: 1;
  border-radius: 100%;
  background: #eee;
}
div.mdtp-time-preview {
  float: left;
  line-height: 40px;
}

div.mdtp-hand {
  position: absolute; z-index: 1;
  width: 1px;
  background: #CCC;

  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: bottom;
     -moz-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
}
div.mdtp-hand.on {
  z-index: 2;
  margin-left: -1px;
  width: 2px;
  background: #339793;
}
div.mdtp-hour-hand {}
div.mdtp-minute-hand {}
div.mdtp-clock-center {
  position: absolute; z-index: 2;
  margin: -3px 0 0 -3px;
  width: 6px; height: 6px;
  background: #339793;
  border-radius: 100%;
}

div.mdtp-time-format { text-align: right; }
div.mdtp-time-format a.selected { background: #339793; color: #fff; }

div.mdtp-actions {
  padding: 0 8px 8px;
  text-align: right;
}
