/* CSS Document */

body {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.calendarContainer {
}

.calendar {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  /*align-items: flex-start;*/
  align-content: flex-start;
  width: 100%;
  height: 80%;
  /*z-index: 11;*/
}

.NavBg {
  background-image: url(../images/Grip.png);
  background-repeat: repeat;
  background-position: 0px 0px;
}

.hovered {
  background-image: url(../images/CalendarDayOverBg.jpg);
  cursor: pointer;
}

.premonth {
  position: relative;
  padding: 0px;
  margin: 0px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  height: 19%;
  width: 14.2%;
  /*float: left;*/
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 1;
}

.placeDate {
  color: #fff;
  text-align: left;
  vertical-align: top;
  font-size: 1.1em;
  font-weight: bolder;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  padding-top: 2px;
  padding-left: 6px;
  display: inline-block;
  clear: both;
}

.currentday .calendarDayContent {
  color: #fff;
}

.currentday .placeDate {
  color: #fff;
}

.currentday {
  font-size: .7em;
  width: 14.2%;
  height: 19%;
  background: -moz-linear-gradient(top, rgba(30,87,153,0.5) 0%, rgba(125,185,232,0.5) 100%);
  background: -webkit-linear-gradient(top, rgba(30,87,153,0.5) 0%,rgba(125,185,232,0.5) 100%);
  background: linear-gradient(to bottom, rgba(30,87,153,0.5) 0%,rgba(125,185,232,0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#801e5799', endColorstr='#807db9e8',GradientType=0 );
  padding: .5em;
  position: relative;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 1;
  /*float: left;*/
  color: #fff;
  cursor: pointer;
  border: 1px solid #00ceff;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 5px 25px rgba(0,0,0,.8);
  box-shadow: 0px 5px 25px rgba(0,0,0,.8);
  /*z-index: 11;*/
}

.calendarDay {
  font-size: .7em;
  width: 14.2%;
  height: 19%;
  padding: .5em;
  background: -moz-linear-gradient(top, rgba(69,72,77,0.51) 0%, rgba(0,0,0,0.51) 100%);
  background: -webkit-linear-gradient(top, rgba(69,72,77,0.51) 0%,rgba(0,0,0,0.51) 100%);
  background: linear-gradient(to bottom, rgba(6, 38, 85, 0.63) 0%,rgba(0, 0, 0, 0.51) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8245484d', endColorstr='#82000000',GradientType=0 );
  /*float: left;*/
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 1;
  color: #fff;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,.3), 0px 0px 35px rgba(0,0,0,.8);
  box-shadow: 1px 1px 5px rgba(0,0,0,.3), 0px 0px 35px rgba(0, 0, 0, 0.8);
  border: 1px solid #000;
  box-sizing: border-box;
  transition: 1s transform ease-out;
  /*border: 1px solid #ffffff0a;*/
  /*z-index: 11;*/
}

.weekdaysContainer {
  color: #FFFFFF;
  text-align: center;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  /*background-image: url(../images/CalendarWeekdayHeaderBg.jpg);*/
  font-weight: bolder;
  height: 51px;
  width: 102%;
  background-color: #0000FF;
  /*background-repeat: repeat-x;*/
  /*background-position: 0px 0px;*/
  display: flex;
  /*float: left;*/
  padding: 0px;
  margin-top: -5px;
  margin-right: 0px;
  margin-bottom: 3px;
  margin-left: 0px;
}

.weekdayHeaderText {
  font-size: .8em;
}

@media (min-width: 768px) {
  .weekdayHeaderText {
    font-size: 1em;
  }
}

.weekdays {
  height: 30px;
  background: linear-gradient(to right, rgba(1,48,167,0), #0061ba, rgba(1,48,167,0));
  /*border: 1px solid #FFF;*/
  width: 10%;
  box-sizing: border-box;
  line-height: 1.6;
}

.BgWeekdayText {
  width: 90%;
  height: 60%;
  font-size: 7vw;
  text-align: center;
  position: absolute;
  opacity: .15;
  letter-spacing: -0.1em;
  text-transform: uppercase;
  font-weight: bolder;
  transform: scaleY(1);
  left: 0;
  top: 0%;
  /*background: -webkit-linear-gradient(#fff 0%, #fff 30%,rgba(255, 255, 255, 0.11) 100%);*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
  /*-webkit-text-stroke-width: 1px;*/
  /*-webkit-text-stroke-color: rgb(0, 153, 255);*/
  /*margin-top: 0px;*/
  /*overflow-x: hidden;*/
  /*margin-bottom: auto;*/
  /*margin-right: auto;*/
  /*margin-left: 10rem;*/
}

.calendarHeader {
  /*background-image: url(../images/ContentHeaderBg.jpg);*/
  /*background-repeat: repeat-x;*/
  /*background-position: 0px 0px;*/
  margin: 0px;
  height: 40px;
  width: 620px;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: #FFF;
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
  font-size: 1.5em;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 80px;
}

.clearBoth {
  line-height: 1px;
  clear: both;
}

.calendarDayItem {
  flex-grow: 0;
}

.calendarDayContent {
  /*align-content: space-between;*/
  /*align-items: stretch;*/
  /*flex-grow: 1;*/
  /*flex-shrink: 0;*/
  /*flex-basis: 0;*/
  height: 85%;
  width: 95%;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  font-weight: bold;
  padding: 4px;
  line-height: 20px;
  margin-top: -2px;
}

.calendarEvtBg {
  height: 105%;
  width: 105%;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: #FFF;
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;
  background: linear-gradient(to top, #0061ba 0%, #000cba7a 50%, rgba(0,0,0,0) 100%);
  line-height: 20px;
  margin-left: -2%;
}

.calendarOpen {
  display: none;
  /*z-index: 11;*/
  justify-content: center;
  align-items: center;
  height: 100%;
  /*width: 97%;*/
}

.calendarDayOpen[title="Sunday"] {
  background-image: radial-gradient(rgba(14,2,92,0.6) 0%, rgba(0,0,0,0.93) 100%), url("../../assets/img/SUNDAY.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.calendarDayOpen[title="Monday"] {
  background-image: radial-gradient(rgba(14,2,92,0.6) 0%, rgba(0,0,0,0.93) 100%), url("../../assets/img/MONDAY.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.calendarDayOpen[title="Tuesday"] {
  background-image: radial-gradient(rgba(14,2,92,0.6) 0%, rgba(0,0,0,0.93) 100%), url("../../assets/img/TUESDAY.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.calendarDayOpen[title="Wednesday"] {
  background-image: radial-gradient(rgba(14,2,92,0.6) 0%, rgba(0,0,0,0.93) 100%), url("../../assets/img/WEDNESDAY.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.calendarDayOpen[title="Thursday"] {
  background-image: radial-gradient(rgba(14,2,92,0.6) 0%, rgba(0,0,0,0.93) 100%), url("../../assets/img/THURSDAY.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.calendarDayOpen[title="Friday"] {
  background-image: radial-gradient(rgba(14,2,92,0.6) 0%, rgba(0,0,0,0.93) 100%), url("../../assets/img/FRIDAY.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.calendarDayOpen[title="Saturday"] {
  background-image: radial-gradient(rgba(14,2,92,0.6) 0%, rgba(0,0,0,0.93) 100%), url("../../assets/img/SATURDAY.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.calendarDayOpen {
  /*background: radial-gradient(#0e025c 0%, #000000 100%);*/
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 0px;
  padding-top: 0em;
  padding-bottom: 0px;
  /*float: left;*/
  height: 100%;
  width: 96%;
  color: #FFF;
  cursor: pointer;
  position: relative;
  transform-origin: center;
  border: 1px solid rgba(0,101,255,0.5);
}

h5 {
  font-size: 0.7em;
  color: #FFF;
  display: inline;
  padding-left: 30px;
}

h6 {
  font-size: 0.7em;
  color: #000;
  display: inline;
  padding-left: 30px;
}

.Promo {
  width: 60%;
  /*-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.3);*/
  /*box-shadow: 5px 5px 5px rgba(0,0,0,.3);*/
  margin-top: 2em;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 20%;
}

@media (min-width: 768px) {
  .Promo {
    margin-top: 5em;
  }
}

.Promo h1 {
  color: rgba(255, 255, 255, 0.404);
  background: -webkit-linear-gradient(#fff 0%, #fff 30%,rgba(255, 255, 255, 0.11) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(0, 153, 255);
  line-height: .8em;
  font-weight: 900;
  font-size: 2.5em;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin: 0px;
}

@media (min-width: 768px) {
  .Promo h1 {
    font-size: 3.5em;
  }
}

.Promo h2 {
  color: #FFF;
  font-size: 1rem;
  margin: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-style: italic;
}

.Promo h3 {
  color: #FFF;
  font-size: 1em;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  margin: 0px;
  font-weight: normal;
  font-style: italic;
}

.DiningToday {
  width: 100%;
  -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.3);
  box-shadow: 5px 5px 5px rgba(0,0,0,.3);
  position: absolute;
  left: 350px;
  top: 0px;
}

.DiningToday h1 {
  color: #FFF;
  background: rgb(40,27,27);
  background: -moz-linear-gradient(top, rgba(40,27,27,1) 0%, rgba(99,0,0,1) 46%, rgba(142,17,17,1) 49%, rgba(89,20,20,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(40,27,27,1)), color-stop(46%,rgba(99,0,0,1)), color-stop(49%,rgba(142,17,17,1)), color-stop(100%,rgba(89,20,20,1)));
  background: -webkit-linear-gradient(top, rgba(40,27,27,1) 0%,rgba(99,0,0,1) 46%,rgba(142,17,17,1) 49%,rgba(89,20,20,1) 100%);
  background: -o-linear-gradient(top, rgba(40,27,27,1) 0%,rgba(99,0,0,1) 46%,rgba(142,17,17,1) 49%,rgba(89,20,20,1) 100%);
  background: -ms-linear-gradient(top, rgba(40,27,27,1) 0%,rgba(99,0,0,1) 46%,rgba(142,17,17,1) 49%,rgba(89,20,20,1) 100%);
  background: linear-gradient(to bottom, rgba(40,27,27,1) 0%,rgba(99,0,0,1) 46%,rgba(142,17,17,1) 49%,rgba(89,20,20,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#281b1b', endColorstr='#591414',GradientType=0 );
  line-height: 10px;
  font-size: 1.6em;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-left: 20px;
  margin: 0px;
  border-top-width: thick;
  border-right-width: thin;
  border-bottom-width: thick;
  border-left-width: thin;
  border-top-style: ridge;
  border-right-style: ridge;
  border-bottom-style: ridge;
  border-left-style: ridge;
  border-top-color: #333;
  border-right-color: #333;
  border-bottom-color: #666;
  border-left-color: #333;
}

.DiningToday h2 {
  color: #FFF;
  font-size: 1.2em;
  background: -moz-linear-gradient(top, rgba(0,0,0,0.69) 0%, rgba(0,0,0,0.69) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.69)), color-stop(100%,rgba(0,0,0,0.69)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.69) 0%,rgba(0,0,0,0.69) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,0.69) 0%,rgba(0,0,0,0.69) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0.69) 0%,rgba(0,0,0,0.69) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.69) 0%,rgba(0,0,0,0.69) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0000000', endColorstr='#b0000000',GradientType=0 );
  margin: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-width: thin;
  border-right-width: thin;
  border-left-width: thin;
  border-top-style: solid;
  border-right-style: solid;
  border-left-style: solid;
  border-top-color: #333;
  border-right-color: #333;
  border-bottom-color: #333;
  border-left-color: #333;
  font-style: italic;
}

.DiningToday h3 {
  color: #FFF;
  background-image: url(../images/MobileHeaderTileBg2.jpg);
  font-size: 1em;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  background: -moz-linear-gradient(top, rgba(0,0,0,0.69) 51%, rgba(0,0,0,0.57) 64%, rgba(191,191,191,0.32) 91%, rgba(255,255,255,0.32) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51%,rgba(0,0,0,0.69)), color-stop(64%,rgba(0,0,0,0.57)), color-stop(91%,rgba(191,191,191,0.32)), color-stop(100%,rgba(255,255,255,0.32)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.69) 51%,rgba(0,0,0,0.57) 64%,rgba(191,191,191,0.32) 91%,rgba(255,255,255,0.32) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,0.69) 51%,rgba(0,0,0,0.57) 64%,rgba(191,191,191,0.32) 91%,rgba(255,255,255,0.32) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0.69) 51%,rgba(0,0,0,0.57) 64%,rgba(191,191,191,0.32) 91%,rgba(255,255,255,0.32) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.69) 51%,rgba(0,0,0,0.57) 64%,rgba(191,191,191,0.32) 91%,rgba(255,255,255,0.32) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0000000', endColorstr='#52ffffff',GradientType=0 );
  margin: 0px;
  border-right-width: thin;
  border-bottom-width: thin;
  border-left-width: thin;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #333;
  border-right-color: #333;
  border-bottom-color: #333;
  border-left-color: #333;
  font-weight: normal;
}

.HappyHour {
  width: 60%;
  margin-top: 1rem;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 20%;
}

.HappyHour h1 {
  color: #fff;
  background: -webkit-linear-gradient(#fff 0%, #fff 30%,rgba(255, 255, 255, 0.11) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(0, 153, 255);
  text-transform: uppercase;
  line-height: 24px;
  font-size: 2.5em;
  font-weight: 900;
  /*opacity: .5;*/
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin: 0px;
}

@media (min-width: 768px) {
  .HappyHour h1 {
    font-size: 3.5em;
  }
}

.HappyHour h2 {
  color: #FFF;
  font-size: 1.2em;
  margin: 0px;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 30px;
  font-style: italic;
}

.DrinkSpecials {
  width: 60%;
  margin-top: 0rem;
  margin-bottom: 10px;
  margin-left: 20%;
  margin-right: 10px;
}

.DrinkSpecials h1 {
  color: #fff;
  background: -webkit-linear-gradient(#fff 0%, #fff 30%,rgba(255, 255, 255, 0.11) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(0, 153, 255);
  line-height: 24px;
  font-size: 2.5em;
  font-weight: bold;
  text-transform: uppercase;
  /*opacity: .5;*/
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin: 0px;
}

@media (min-width: 768px) {
  .DrinkSpecials h1 {
    font-size: 3.5em;
  }
}

.DrinkSpecials h2 {
  color: #FFF;
  font-size: 1.2em;
  margin: 0px;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 30px;
  font-style: italic;
}

.calendarDayOpen .pageClose {
  font-size: 1em;
  color: #FFF;
  font-style: normal;
  font-variant: small-caps;
  font-weight: bold;
  /*background: radial-gradient(ellipse at center, rgb(224,0,51) 0%,rgb(109,0,25) 44%,rgb(42,0,10) 100%);*/
  background: radial-gradient(#0085ff 0%, #0026ad 40%, #000000 100%);
  position: absolute;
  height: 50px;
  width: 50px;
  right: 2.5em;
  top: 1.25em;
  text-align: center;
  padding: 10px;
  border: 3px inset #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.PrevMonthBtn {
  font-size: 2.5em;
  padding: 0 1em;
  cursor: pointer;
}

.NextMonthBtn {
  font-size: 2.5em;
  padding: 0 1em;
  cursor: pointer;
}

.calendar-wrapper {
  width: calc(75% - 50px);
  height: 100vh;
  padding: 1.5em 0;
  margin: 0;
  margin-bottom: 3em;
}

.weekdays-header {
  width: 99.3%;
  /*margin-left: 1%;*/
}

.HeaderTitleText {
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
  padding-top: 5px;
}

.title-header {
  background: linear-gradient(to right, rgba(1,48,167,0), #0061ba, rgba(1,48,167,0));
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000000;
}

.calendar-tab-bg {
  position: relative;
  height: 100%;
  width: 50px;
  background: radial-gradient(#004fc3 0%, #06002d 100%);
  /*background-position: -50px;*/
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

