/**
font-family: 'Open Sans', sans-serif;
**/

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
  color: #4A4A4A;
  background-color: rgb(249, 246, 241);
  font-size: 100%;
}

* {
  box-sizing: border-box;
}

a {
  color: #003798;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  max-width: 1180px;
  margin: 0 1em;
}

#security {
  padding: 4em 0;
}

footer {
  text-align: center;
  padding: 4em 0;
  border-top: 1px solid rgba(0,0,0,0.25);
}

footer h2 {
  margin-top: 0;
  font-size: 32px;
  text-transform: none;
}


#thanksIntro {
  text-align: center;
  padding: 2em;
  background-color: #038688;
  color: #fff;
  margin: 2em auto;
  border-radius: 16px;
  margin-top: 160px;
}

#thanksIntro h1 {
  margin: 0;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
  font-size: 60px;
  line-height: 62px;
  text-transform: uppercase;
  text-align: center;
}

#thanksIntro svg{
  width: 1.5em;
  margin-right: 4px;
  padding-top: 16px;
}

#thanksIntro hr {
  border-color: rgba(255,255,255,0.25);
}

@media screen and (min-width: 1180px) {
  .wrapper {
    margin: 0 auto;
  }
}

/*******************************
* ALERTS
******************************/
.alert {
  background-color: rgba(252, 248, 227, 0.95);
  border: 1px solid #fbeed5;
  color: #5a392c;
}

.alert-warning {
  background-color: rgba(255, 179, 0, 0.95);
  color: #5a392c;
}

.alert-danger, .alert-error {
  color: #fffcfc;
  background-color: rgba(222, 22, 37, 0.95);
  border-color: rgba(253, 44, 59, 0.5);
}

.alert-success {
  color: #fffcfc;
  background-color: rgba(1, 129, 84, 0.95);
  border-color: rgba(5, 208, 137, 0.5);
}

/***** INLINE ALERTS *****/
.alert-inline {
  background-color: rgba(252, 248, 227, 0.95);
  border: 1px solid #fbeed5;
  color: #5a392c;
}

.alert-danger-inline, .alert-error-inline {
  color: rgb(253, 44, 59);
  background-color: rgba(255,255,255,0.7);
  border-color: rgba(253, 44, 59, 0.5);
}

.alert-error-inline {
  font-size: 14px;
  padding: 3px;
  border-radius: 5px;
}

.alert-error-inline svg{
  width: 1em;
  margin-right: 4px;
}

.icon-error {
  fill: rgb(253, 44, 59);
}

/*******************************
* Video Embed Styles
*******************************/
.bg-video {
  background-color: #222;
  color: #fff;
  padding: 1em 0 4em;
}

.video-full .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-full .embed-container iframe,
.video-full .embed-container object,
.video-full .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*******************************
* APP Notification Styles
*******************************/
#app_notification {
  /* position:fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%; */
}

#app_notification a.closeMessage, #FormMessage a.closeMessage {
  text-decoration:none;
  font-weight:700;
  margin-left:1em;
  font-size:12px;
}

#app_notification .alert {
  padding: 10px;
  margin-bottom: 20px;
}

#FormMessage {
  position:fixed;
  top: 2em;
  left: 5%;
  right: 5%;
  z-index: 200;
  width: 90%;
}

#app_notification.alert {
  border: none;
  text-align: center;
  padding: 2em;
}

/*=============================
* TOP TRI-COLOR BORDER
*============================*/
.poster-com-border {
  display: flex;
}

.poster-com-border span {
  height: 10px;
  display: block;
  float: left;
}

.poster-com-border .com-red {
  background-color: #c10435;
  width: 33%;
}

.poster-com-border .com-gold {
  background-color: #efaa23;
  width: 34%;
}

.poster-com-border .com-blue {
  background-color: #003798;
  width: 33%;
}
/*===== END TRI-COLOR BORDER =======*/

.bg-light-gray {
  /* background-color: rgba(172, 183, 195, 0.35); */
  background-color: rgba(0,0,0,0.1);
  padding-top: 1px;
}

.bg-blue {
  background-color: #003798;
  color: #fff;
  padding: 1rem;
}

.bg-blue h3 {
  margin-top: 0;
}

/*=============================
* HEADER AND NAVIGATION
*============================*/
.logo {
  width: 210px;
  display: block;
  transition-duration: 1s;
}

header {
  background-color: rgba(249, 246, 241,0.9);
  position: absolute;
  width: 100%;
  top: 10px;
  left: 0;
  right: 0;
  padding: 12px 0;
}

header.fixedNav {
  position: fixed;
  top: 0;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}

header.fixedNav .logo {
  width: 150px;
}

.header-nav-elements {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

#mainNav a {
  font-size: 18px;
  color: #222222;
  text-decoration: none;
}

#mainNav li {
  margin-right: 1.5em;
}

#mainNav li:last-child {
  margin-right: 0;
}

#mainNav {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
}
/*===== END HEADER AND NAVIGATION =======*/

#hero {
  background-image: url('../img/lobby-final.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 700px;
}

.page-hero {
  background-color: #003798;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 390px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* #reservationHero {
  background-image: url('../img/457981-unsplash.jpg');
}

#successHero {
  background-image: url('../img/457981-unsplash.jpg');
} */

.page-hero h1 {
  margin: 0;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
  font-size: 60px;
  line-height: 62px;
  padding-top: 100px;
  text-transform: uppercase;
  text-align: center;
}

#successHero svg{
  width: 1.5em;
  margin-right: 4px;
  padding-top: 16px;
}

.success-icon {
  fill: rgb(255,255,255);
}

p, li, a {
  font-size: 1.125rem;
}

/* .item {
  border-top: 4px solid rgba(0, 55, 152, 0.5);
} */

.btn-reserve {
  border: 2px solid #003798;
  border-radius: 8px;
  padding: 8px;
  text-transform: uppercase;
  color: #003798;
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  background-color: transparent;
  text-decoration: none;
  text-align: center;
}

.btn-reserve:hover {
  cursor: pointer;
  background-color: #003798;
  color: #fff;
  font-weight: normal;
}

h2 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 2rem;
}

h3 {
  font-weight: bold;
  font-size: 21px;
}

#intro {
  max-width: 781px;
  margin: 0 auto;
  padding: 88px 0;
}

#intro p {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  margin: 8px 0;
}

#resIntro {
  max-width: 984px;
  margin: 0 auto;
  padding: 44px 0;
}

#resIntro p {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  margin: 8px 0;
}

#resIntro p:first-child {
  margin-top: 0;
}

#intro .intro {
  font-size: 36px;
  line-height: 48px;
  margin: 1rem 0 2rem;
}

#reservationForm {
  padding: 2em 0;
}

#spaceSMALL, #spaceIND {
  display: none;
}
/*=============================
* FORM
*============================*/
textarea {
  display: block;
  width: 100%;
  padding: 1em;
}

input[type=text], input[type=submit] {
  padding: 6px 8px;
}

input[type=submit].btn {
  text-transform: uppercase;
  font-size: 18px;
  margin-right: 0.5rem;
  border-radius: 6px;
  background-color: #008e98;
  color: #fff;
  padding: 10px;
  box-shadow: none;
  border: none;
  cursor: pointer;
}

input[type=submit].btn:hover {
  background-color: #00646b;
}

.cancel_link {
  color: gray;
}

.field {
  margin-bottom: 1em;
}

fieldset {
  border: 3px solid rgba(0,0,0,0.2);
  margin-bottom: 2em;
}

/*******************************
* Form Styles
*******************************/
input[type=text],input[type=email],input[type=password],input[type=tel],input[type=date],input[type=number] {
  width:100%;
  padding:10px;
  box-sizing:border-box;
  margin:0;
}

textarea {
  width:100%;
  min-height:100px;
  border-radius: 8px;
  border-color: rgba(0,0,0,0.4);
}

label, p.form-label  {
  display:block;
  margin: 0;
  font-size: 14px;
}

label.inline {
  display: inline;
  font-family: inherit;
  color: inherit;
}

label.inline-right {
  padding-right: 1em;
}

label.inline-left {
  padding-left: 10px;
}

form .inline-mini {
  display: inline;
  width: 60px;
}

form .inline-small {
  display: inline;
  width: 100px;
}

form .inline-med {
  display: inline;
  max-width: 300px;
}

form .inline-large {
  display: inline;
  max-width: 500px;
}

div.radio-choices b {
  font-weight:400;
  font-size:14px;
  margin-right:1em;
}

fieldset {
  padding:1em;
  background:rgba(0,0,0,0.1);
  border-radius:2px;
  margin:1em 0 3em;
  border:3px solid rgba(0,0,0,0.1);
}

legend {
  font-size:20px;
}

input.short {
  display:inline;
  width:40px;
  font-size:12px;
  padding:5px;
  box-sizing:border-box;
}

form .instructions {
  font-size: 1.3rem;
  border-top: 3px solid rgba(0,0,0,0.15);
  padding-top: 1em;
}

.required {
  font-weight: bold;
}

.required:before {
  content: "* ";
}

select {
 height: 40px;
 background-color: rgba(255,255,255,0.8);
 width: 100%;
}

#updatePasswordForm {
  display:none;
}

#account, #mobile-nav {
  color:#fff;
  float:right;
}

#account {
  color:#222;
  background:rgba(255,255,255,0.5);
  padding:0 10px;
}

input.search-bar {
  width:220px;
}

.autosearchform {
  margin-bottom: 1rem;
}

#autoSearchOutput {
  position: relative;
}

#autoSearchOutput ul {
  background-color: rgba(255,255,255,0.95);
  padding: 8px;
  box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
  list-style: none;
  margin: 0;
  padding: 1rem;
  position: absolute;
}

#autoSearchOutput li {
  font-size: 13px;
  margin-bottom:5px;
  padding: 5px 10px;
}

.select-style {
  border: 1px solid #ccc;
  max-width: 300px;
  border-radius: 3px;
  overflow: hidden;
  background: #333 url("../../img/resources/arrow-16-down.png") no-repeat 90% 50%;
  cursor: pointer;
}

.select-style select {
  padding: 10px;
  width: 130%;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #fff;
}

.select-style select:focus {
  outline: none;
}

/*******************************
* Column Layouts
*******************************/
.colset {
  width:100%;
  margin-bottom:1em;
}

.cols {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  -ms-box-sizing:border-box;
  box-sizing:border-box;
  padding:0;
  margin:1em;
}

.cols-2,.cols-3,.cols-4 {
  width:100%;
  float:none;
  margin:0 0 1em;
  padding:0;
}

.cols-center {
  text-align:left;
}

@media screen and (min-width: 560px) {
  /*** Set items side by side ***/
  .cols-2 {
    width:46%;
    float:left;
    margin:0 1%;
    padding:0 1%;
  }

  .cols-4 {
    width:23%;
    float:left;
    margin:0 1%;
    padding:0 1%;
  }

  .cols-3 {
    width:32.33%;
    float:left;
    margin-right: 1.5%;
  }

  .cols-3:last-child {
    margin-right: 0;
  }

  .cols-center {
    text-align:center;
  }

  .col-2 {
    -webkit-column-count:2;
    -moz-column-count:2;
    column-count:2;
  }

  form .cols-2 {
    width:50%;
    float:left;
    margin:0;
    padding:0 1% 0 0;
  }

  form div.field {
    margin-bottom:1.25rem;
  }

  form .cols-2:last-child {
    width:50%;
    padding:0;
  }
}

/*=============================
* SERVICES AND EQUIPMENT
*============================*/
.sande {
  display: flex;
  flex-direction: row;
}

.service {
  width: 50%;
}

.service:first-child {
  width: calc(50% - 8px);
  margin-right: 8px;
}

.service:last-child {
  width: calc(50% - 8px);
  margin-left: 8;
}

#services li {
  margin-bottom: 10px;
}

/*=============================
* SERVICES AND EQUIPMENT
*============================*/
.security-info {
  max-width: 781px;
}

.security-info p:first-child {
  margin-top: 0;
}

.security-contain {
  padding-bottom: 4em;
}

/*=============================
* MEETING SPACES
*============================*/
.space {
  display: flex;
  margin-bottom: 64px;
  align-items: flex-start;
}

#meetingSpaces h2 {
  margin: 4rem 0;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-reverse .space-info {
  margin-left: 0;
  margin-right: 16px;
}

.space-info {
  width: 382px;
  margin-left: 16px;
  flex: 0 0 382px;
}

#meetingSpaces h3 {
  font-size: 32px;
  font-weight: normal;
  margin: 0 0 1rem 0;
  padding-bottom: 1rem;
  border-bottom: 4px solid rgba(0, 55, 152, 0.5);
}

.space h4 {
  font-size: 18px;
  text-transform: uppercase;
  margin:1.25rem 0 0.5rem;
}

.sqft h4 {
  margin-top: 0;
}

.sqft {
  font-size: 36px;
  font-weight: 300;
  margin: 0;
}

.space-items {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 1rem;
}

.space-items .item {
  width: 184px;
  margin-bottom: 1rem;
}

.space-items .capacity p {
  text-transform: uppercase;
}

.space-items .item p {
  margin: 8px 0;
}

.btn-reserve-mobile {
  display: none;
}

.sideways th, .sideways td {
  width: 50%;
  text-align: left;
}

.sideways th {
  background-color: rgba(0,55,152,.6);
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  padding: 8px;
}

.sideways td {
  background-color: rgba(0,55,152,.17);
  color: #000;
  font-size: 16px;
  font-weight: normal;
  padding: 8px;
}

.sideways {
  width: 100%;
  border-collapse: collapse;
}

.sideways tr {
  border-bottom: 3px solid white;
}

.sideways tr:last-child {
  border-bottom: none;
}

.terms {
  padding-bottom: 4em;
  display: flex;
  flex-flow: row wrap;
  margin: 0 -8px;
}

.term {
  margin: 0 8px;
}

.term:nth-of-type(-n+2) {
  float: left;
  width: 48%;
  width: calc(50% - 16px);
  flex: 1;
}

.insurance {
  clear: both;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 0.5em;
  margin-top: 0.5em
}

.terms p, .terms li, .terms a {
  font-size: 1rem;
}

.strong {
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .terms {
    display: block;
  }

  .term:nth-of-type(-n+2) {
    width: initial;
    float: none;
  }

  .insurance {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}

@media screen and (max-width: 700px) {

  .sande {
    flex-direction: column;
  }

  .service, .service:first-child, .service:last-child {
    width: 100%;
  }

  .equipment ul {
    columns: 2;
  }
}

@media screen and (max-width: 1100px) {
  .space {
    /* display: flex;
    flex-direction: column; */
    display: block;
  }

  .space-info {
    width: auto;
    margin-right: 0;
    flex-wrap: nowrap;
    flex: none;
  }

  .space-items .item {
    width: calc(25% - 16px);
    margin: inherit 8px;
  }

  .space-photo {
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  .logo, header.fixedNav .logo {
    width: 120px;
    display: block;
  }

  header {
    padding: 10px 0;
  }

  #mainNav a {
    font-size: 16px;
  }

  #mainNav li {
    margin-right: 1em;
  }

  #hero {
    background-position: top center;
    height: 400px;
  }

  .page-hero {
    height: 300px;
  }

  .page-hero h1 {
    font-size: 48px;
    line-height: 48px;
  }

  #intro p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin: 8px 0;
  }

  #intro .intro {
    font-size: 28px;
    line-height: 36px;
    margin: 1em 0;
  }

  p, li, a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 780px) {
  .space-items .item {
    width: calc(50% - 16px);
    margin: inherit 8px;
  }
}

/*******************************
* Reservation Space Form Entries
*******************************/
.res-space {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.res-space li, .res-space a {
  font-size: 100%;
}

.res-space .divider{
  background-color: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 8px;
  margin-bottom: 1em;
}

.pad {
  padding: 16px;
}

.res-space .space-details {
  /* max-width: 384px; */
  max-width: calc(33.333333% - 16px);
  margin-right:16px;
}

.res-space .res-fields {
  width: 66.666666%;
}

.space-details h2 {
  text-align: center;
  font-size: 18px;
  text-transform: none;
  margin: 8px 0;
  font-weight: bold;
}

.res-fields h2 {
  margin-top: 0;
}

.res-space h3 {
  font-size: 16px;
  text-transform: uppercase;
  border-top: 1px solid rgba(0,0,0,0.2);
  padding-top: 1rem;
  margin: 0 0 0.5rem;
}

.res-space-info, .res-space-cost {
  padding: 0 8px;
  font-size: 14px;
}

.res-space-cost p {
  margin: 0 0 0.5rem;
  font-size: inherit;
}

.info-label {
  color: gray;
}

.res-space-info div {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 0.5rem;
}

.res-space-info div span {
  width: 50%;
}

#requestSmallPrint {
  margin: 3rem 0;
  padding: 1rem;
  border: 1px solid darkgreen;
  background-color: #ecf9ec;
  border-radius: 8px
}

#requestSmallPrint h2 {
  font-size: 18px;
  margin: 0;
}

#requestSmallPrint h3 {
  border: none;
  font-size: 14px;
  margin: 0;
}

#requestSmallPrint p, #requestSmallPrint li {
  color: rgba(0,0,0,0.6);
  font-size: 90%;
}

@media screen and (max-width: 960px) {
  .res-space {
    display: block;
  }

  .res-space .space-details {
    max-width: 400px;
    margin: 0 auto 1rem;
  }

  .res-space .res-fields {
    width: 100%;
  }

  .res-space-info div {
    display: block;
  }

  .res-space-info div span {
    width: 100%;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/** Image Preview Styles **/
.image_preview {
  max-width: 600px;
}

.image_preview::before {
  content: "Image Preview:";
}