﻿.mini_calendar_widget .overflow {
   overflow: hidden;
}

#calBox.mini_calendar_widget {
   position: fixed;
   width: 100%;
   height: 100%;
   display: none;
   z-index: 999;
   background: rgba(0,0,0,.8);
   top: 0px;
   left: 0px;
   overflow-y: auto;
   -webkit-overflow-scrolling: touch;
}

.mini_calendar_widget .listing {
   height: auto;
   width: 100%;
   position: relative;
   background: var(--pres-main-bg-light);
   z-index: 136;
   border-spacing: 0;
   box-shadow: 0px 0px 10px #444444;
   padding: 20px;
}

.mini_calendar_widget .miniCalHeading {
   font-weight: bold;
   font-size: 1.25em;
   color: var(--pres-main-fg-color);
   width: 100%;
   background: var(--pres-main-bg-light);
   padding: 0px 0px 5px 0px;
   float: left;
   position: relative;
   line-height: 1.75em;
}

.mini_calendar_widget .closeMiniCal {
   position: absolute;
   right: 0px;
   text-decoration: none;
   padding: 0px;
   background-image: url(/images/gratsClose.png);
   background-repeat: no-repeat;
   background-position: center center;
   height: 32px;
   width: 32px;
   background-size: 32px 32px;
}

.mini_calendar_widget .selectDate, .mini_calendar_widget .selectMonth {
   width: 80%;
   padding: 0px;
   float: left;
   margin: 0px 0px 10px 0px;
}

.mini_calendar_widget .chosen-container {
   width: 100%;
}

.mini_calendar_widget .prevArrows, .mini_calendar_widget .NxtArrows {
   text-decoration: none;
   float: left;
   color: var(--pres-main-fg-color);
   font-size: 2em;
   width: 10%;
   height: 30px;
   text-align: center;
   cursor: pointer;
}

.mini_calendar_widget .prevArrows {
   clear: both;
   background-image: url(/images/whiteLeftArrow.png);
   background-repeat: no-repeat;
   background-position: left center;
   background-size: 24px 24px;
}

.mini_calendar_widget .NxtArrows {
   background-image: url(/images/whiteRightArrow.png);
   background-repeat: no-repeat;
   background-position: right center;
   background-size: 24px 24px;
}

.mini_calendar_widget .calDays {
   float: left;
   font-size: 1em;
   color: var(--pres-main-fg-color);
   text-align: center;
   width: 100%;
   border-radius: 5px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   overflow: hidden;
}

.mini_calendar_widget .cent {
   float: left;
   width: 100%;
   border: solid 1px #eeeeee;
   border-right: none;
   border-top: none;
}

.mini_calendar_widget .dayTxt {
   width: 14.28%;
   float: left;
   padding: 10px 0px;
   font-weight: bold;
   background: var(--pres-soft-black);
   color: var(--pres-light-fg-color);
}

.mini_calendar_widget .on, .mini_calendar_widget .off {
   width: 14.28%;
   float: left;
}

.mini_calendar_widget .on {
   background: var(--pres-soft-black);
   text-decoration: none;
}

.mini_calendar_widget .on div {
   color: var(--pres-light-fg-color);
}

.mini_calendar_widget .off {
   color: #bbbbbb;
   text-decoration: none;
   border-right: solid 1px #eeeeee;
}

.mini_calendar_widget .off:hover {
   background: #eeeeee;
}

.mini_calendar_widget .dateLink {
   text-align: center;
   text-decoration: none;
   color: var(--pres-main-fg-color);
}

.mini_calendar_widget #calyear, .mini_calendar_widget #calmonth {
   font-size: 1em;
   padding: 5px;
   width: 100%;
}

.mini_calendar_widget .miniCalBtnRow {
   float: left;
   clear: both;
   padding: 1%;
   width: 100%;
   background-color: #eeeeee;
}

.mini_calendar_widget .buttonMiniCal {
   background: var(--pres-soft-black);
   color: var(--pres-light-fg-color);
   font-size: 1em;
   text-align: center;
   padding: 5px 10px;
   margin: 5px;
   cursor: pointer;
   border-radius: 5px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
}

.mini_calendar_widget .noSelection {
   padding-left: 10px;
   color: #FF0000;
}

.mini_calendar_widget .fBtnCtr {
   float: left;
   width: 100%;
}

@media all and (min-width: 768px) {
   .mini_calendar_widget .listing {
      width: 500px;
   }
}