body {
  font-family: "Montserrat", sans-serif !important;
}

.btn-primary {
  background-color: #1d48a6;
  color: #fff !important;
  border: none;
}

.btn-primary:hover {
  color: #fff;
  background-color: cornflowerblue;
}

.btn-main {
  background-color: #1d48a6;
  border-radius: 25px;
  padding: 0.8rem 2.2rem;
  color: #fff;
  font-weight: 600;
  padding-right: 4rem;
  position: relative;
  margin: 0.5rem 0;
}

.btn-main::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  transition: all 0.3s;
}

.btn-main:hover {
  color: #fff;
  background-color: lightblue;
}

.btn-main:hover::after {
  right: 1.2rem;
}

.btn-small {
  padding: 0.4rem 1.1rem;
  padding-right: 2.5rem;
}

.btn-small::after {
  right: 1.2rem;
  font-size: 0.9rem;
  background-color: lightblue; /*Added*/
}

.btn-small:hover::after {
  right: 0.8rem;
  background-color: lightblue; /*Added*/
}

.btn a {
  color: #fff;
}
.btn a:hover {
  text-decoration: none;
}

.btn-exp {
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  transition: all 0.3s;
}
.btn-exp:hover {
  background-color: #ddd;
}

.align-center {
  align-items: center;
}

.cover {
  object-fit: cover;
}

/*Filter styles*/
.saturate {
  filter: saturate(3);
}
.grayscale {
  filter: grayscale(100%);
}
.contrast {
  filter: contrast(160%);
}
.brightness {
  filter: brightness(4);
}
.blur {
  filter: blur(3px);
}
.invert {
  filter: invert(100%);
}
.sepia {
  filter: sepia(100%);
}
.huerotate {
  filter: hue-rotate(180deg);
}
.rss.opacity {
  filter: opacity(50%);
}

/* Cookie Consent */
#cookieConsent {
  background-color: rgba(20, 20, 20, 0.9);
  min-height: 26px;
  font-size: 1.2rem;
  color: #fff;
  line-height: 26px;
  padding: 2rem;
  border-radius: 5px;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: none;
  z-index: 9999;
}

#cookieConsent a {
  color: #ccc;
  transition: all 0.3s;
}

#cookieConsent a:hover {
  color: #fff;
  text-decoration: underline;
}

.menu-header h1 {
  text-align: center;
  font-weight: 700;
}

.menu-table {
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
/*
.menu-top{
    border-top: solid 1px silver;
}*/
.menu-row {
  border-bottom: solid 1px silver;
}
.mtCol1 {
  /* min-width: 50%; */
  max-width: 70%;
  /* max-height: 50px; */
  margin: 0px;
}

.mtCol2 {
  width: 8%;
  /*font-weight: bold;*/
}

.mtCol3 {
  width: 10%;
  text-align: center;
}

.mtCol4 {
  width: 12%;
  text-align: center;
}
/*
.mtCol5{
    width: 50%;
}
*/
.font-small {
  font-size: small;
}

/*.mtCol6{
    width: 50px;    
}*/

.h7 {
  font-family: "Font Awesome 5 Free";
  font-size: 1.1rem;
}
#r1,
#r2,
#r3,
#r4,
#r5,
#r6,
#r7,
#r8,
#r9,
#r10,
#r11,
#r12,
#r13,
#r14,
#r15,
#r16,
#r17,
#r18,
#r19,
#r20,
#r21,
#r22,
#r23,
#r24,
#r25,
#r26,
#r27,
#r28,
#r29,
#r30,
#r31,
#r32 {
  font-family: "Font Awesome 5 Free";
  font-size: smaller;
  color: red;
  visibility: hidden;
}
#u1 {
  font-size: x-small;
}

.j-enq {
  height: 75px;
  align-items: baseline;
}

/* Thick blue border */
hr.new4 {
  border: 2px solid #1d48a6;
  width: 100px;
}

.vl {
  border-left: 1px solid #1d48a6;
  height: 200px;
}

.custom-file-input.selected:lang(en)::after {
  content: "" !important;
}
.custom-file {
  overflow: hidden;
}
.custom-file-input {
  white-space: nowrap;
}

* {
  box-sizing: border-box;
}
.openBtn {
  display: flex;
  justify-content: left;
}
.openButton {
  border: none;
  border-radius: 5px;
  background-color: #1c87c9;
  color: white;
  padding: 14px 20px;
  cursor: pointer;
  position: fixed;
}
.loginPopup {
  position: relative;
  text-align: center;
  width: 100%;
}
.formPopup {
  display: none;
  position: fixed;
  left: 45%;
  top: 5%;
  transform: translate(-50%, 5%);
  border: 3px solid #999999;
  z-index: 9;
}
.formContainer {
  max-width: 300px;
  padding: 20px;
  background-color: #fff;
}
.formContainer input[type="text"],
.formContainer input[type="password"] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 20px 0;
  border: none;
  background: #eee;
}
.formContainer input[type="text"]:focus,
.formContainer input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}
.formContainer .btn {
  padding: 12px 20px;
  border: none;
  background-color: #8ebf42;
  color: #fff;
  cursor: pointer;
  width: 100%;
  margin-bottom: 15px;
  opacity: 0.8;
}
.formContainer .cancel {
  background-color: #cc0000;
}
.formContainer .btn:hover,
.openButton:hover {
  opacity: 1;
}
/*
Removes white gap between slides
*/
.carousel {
  background: #444;
}

/*
Forces image to be 100% width and not max width of 100%
*/
.carousel-item .img-fluid {
  width: 100%;
  height: auto;
}

/* 
anchors are inline so you need ot make them block to go full width
*/
.carousel-item a {
  display: block;
  width: 100%;
}

.ui-datepicker {
  width: 10px; /*what ever width you want*/
}

.input-group-text {
  width: 50px; /*adjust as needed*/
  min-width: 50px;
  padding-left: 1px;
}

.form {
  width: 455px;
  border: solid 1px black;
}

.invalid-feedback {
  text-align: right;
  height: 10px;
}

.reserve-form {
  width: 505px;
  border: 1px solid black;
  display: block;
  margin: 10px;
}

/* 768 width was 360px*/
@media (max-width: 576px) {
  .form {
    max-width: 300px;
  }
  .gj-datepicker {
    width: 249px !important;
  }
  .form-control {
    width: 200px;
    border: 1px solid black;
    display: block;
    text-wrap: wrap;
  }
}
