﻿.monthPicker {
   /*background: #33a0a0;*/ 
   background: #e08900;
    box-shadow: 0 1px 5px #696969;
  margin-left:auto;
  left:auto;
  border-bottom: 1px solid; -webkit-box-shadow: -1px 1px 5px 9px rgba(0,0,0,0.75); -moz-box-shadow: -1px 1px 2px 9px rgba(0,0,0,0.75); box-shadow: -1px 1px 3px 5px rgba(0,0,0,0.75);
  margin-top:150px;
      
}

.monthPicker-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 20px;
    border-bottom: 1px solid #fff;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.monthPicker-top-action {
    font-size: 2rem;
    position: relative;
    width: 45px;
    height: 45px;
    color: #fff;
    border-radius: 50%;
    background: none;
}

.monthPicker-top-action span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.monthPicker-top-action:hover {
    background: rgba(0, 0, 0, .1);
}

.monthPicker-top-current {
    color: #008080;
    background: #fff;
}

.monthPicker-top-current .selectYear {
    display: none;
}



.monthPicker-top-current:hover .selectYear {
    display: inline;
}

.monthPicker-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    text-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.monthPicker-body-month {
    line-height: 35px;
    height: 35px;
    margin: 5px;
    vertical-align: middle;
    text-decoration: none;
    color: #008080;
    color: #fff;
    border-radius: 3px;
    background: #fff;
    background: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 3 - 10px);
    flex: 0 0 calc(100% / 3 - 10px);
}

.monthPicker-body-month:hover {
    text-decoration: none;
    color: #008080;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .34);
}
