
.calendar-wrapper {
  width: 100%;
  max-width: 400px;
  margin: auto;
  border: 1px solid #eee;
  border-radius: 0.8em;
  padding: 0px;
}

.buttons-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  /*padding-bottom: 10px;*/
  padding-bottom: 0px;
  border-bottom: 1px solid #eee;
}

.buttons-container .label-container {
  display: inline-block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

.year-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  padding: 5px 20px;
}

.prev-button,
.next-button {
  background: transparent;
  border: none;
  padding:2px 10px;
}

.week {
/*  margin: 10px 0;*/
margin:2px 0;
}



.weeks-wrapper.header {
  border-bottom: 1px solid #eee;
  display:block !important;
  position: relative !important;
}

.week .day.header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1em;
}

.day span {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  vertical-align: middle;
}

.day.today span {
  position: relative;
  display: inline-block;
  font-size: 110%;
}

/* weekend */
.week:not(.start-on-monday) .day:first-child,
.week:not(.start-on-monday) .day:last-child {
  color: orange;
}

/* sunday */
.week:not(.start-on-monday) .day:first-child {
  color: red;
}

/* start on monday - weekend */
.week.start-on-monday .day:nth-child(6),
.week.start-on-monday .day:last-child {
  color: orange;
}

/* start on monday - sunday */
.week.start-on-monday .day:last-child {
  color: red;
}

.day.today span::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 2px solid orange;
  width: 10px;
  height: 1px;
}

.day.sunday span {
  color: #ff8a80;
}

.week .day.highlight span {
  color: #2196f3;
}

.week .day.selected span {
  background: #1565c0;
  color: white;
}

.week .day[disabled="disabled"] span {
  color: #aaa;
  cursor: not-allowed;
}

.months-wrapper .month span {
  display: inline-block;
  padding: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.special-buttons {
  text-align: center;
  border-top: 1px solid #eee;
}

.today-button {
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 5px;
}
.calendar-box {

}

.buttons-container {
  cursor: pointer;
}

.week {
  overflow: hidden;
}

.week.highlight {
  /*background: #efefef;*/
  background:#f3f3f3;
}

/* weekend */
.week .day:first-child, .week .day:last-child {
  /*color: orange;*/
}

/* sunday */
.week .day:first-child {
  /*color: red;*/
}

.day {
  display: inline-block;
  float: left;
  width: 14.28%;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.day.disabled span {
  color: #AAA;
}

/* vertical highlight */
.week .day.highlight span {
  /*color: blue;*/
}

.day.selected span {
  /*background: orange;*/
}

.day.today span {
  font-weight: bold;
}

.months-container.hidden, .weeks-container.hidden {
  display: none;
}

.months-wrapper {
  overflow: hidden;
}

.months-wrapper .month {
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  cursor: pointer;
}
.months-wrapper .month.one-third {
  width: 33.33%;
}


/*Selected Date Condition*/

#selectdatecondition>ul{
    padding-left: 0;
    list-style: none;
    display: flex;
    width: 100%;
}
#selectdatecondition>ul>li{
width: 100%;
display: inline-block;
}
#selectdatecondition>ul>li>input[type="radio"] {
  display: none !important;
}


#selectdatecondition>ul>li>input[type=radio] + label{

    position: relative;
    padding: 10px 20px !important;
    background-color: #fff;
    border: 1px solid #f1f0f0;
    clear: both;
    width: 95%;
    line-height: 20px;
    text-align: center;
    margin: 0.5em;
    border-radius: 0.8em; 
    cursor: pointer;
}

#selectdatecondition>ul>li>input[type=radio]:checked + label {
    background: #093174 !important;
    color: #ffffff;
    border: 1px solid #093174;
}

#selectdatecondition>ul>li>input[type=radio] + label:before{
    display: none;
}

#selectdatecondition>ul>li>input[type=radio]:checked + label:after
{
    content: "";
    opacity: 1;
}

#selectdatecondition>ul>li>input[type=radio] + label:after {
    background-color: transparent;
    content: "";
    display: block ;
    position: absolute ;
    left: 0.85rem ;
    top: 0.15rem ;
    width: 0.5rem ;
    height: 1rem;
    opacity: 0 ;
    border: 3px solid #29c502;
    transition: border-color 0.3s ease;
    transform: rotate(45deg);
}