html {
  height: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Montserrat";
  position: relative;
  font-size: 15px;
  line-height: 1.4;
  background: #22211f;
  font-weight: 400;
}

body::-webkit-scrollbar-track {
  background: #1c1c1c;
}

body::-webkit-scrollbar {
  width: 5px;
  background: #1c1c1c;
}

body::-webkit-scrollbar-thumb {
  background-color: #ee8d0b;
  border-radius: 20px;
}

.main-content a {
  color: #ee8d0b;
}

.main-content a:hover {
  text-decoration: none;
}

#logo {
  width: 320px;
  height: 320px;
  position: relative;
  margin: 0 auto;
  z-index: 4;
  transition: 2s;
  transform: scale(1.1);
  opacity: 0;
  transition-timing-function: ease-in-out;
}

#logo.active {
  transform: scale(1);
  opacity: 1;
}

#logo svg {
  overflow: visible;
  z-index: 2;
}

.logo-svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}

.wrapper {
  max-width: 1040px;
  margin: 0 auto;
}

.main-content {
  background: rgba(28, 28, 28, 0.95);
  width: 100%;
  padding: 40px 80px;
  color: #fff;
}

#fixed-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(/img/bg-3.jpg) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  height: 100%;
  width: 100%;
  z-index: -101;
}

.main-menu {
  width: 100%;
  z-index: 5;
  background: #1c1c1c;
  border-bottom: 1px solid #ee8d0b;
  position: relative;
}

.main-menu.stickytop {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 20;
}

.main-menu ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu ul li {
  flex-grow: 1;
}

.main-menu ul li a {
  display: block;
  text-decoration: none;
  color: #eee;
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  padding: 0 20px;
  transition: 0.3s;
  text-transform: uppercase;
}

.main-menu ul li.active a {
  color: #fff;
  background: #ee8d0b;
}

.main-menu ul li a:hover {
  color: #fff;
  background: #ee8d0b;
  transition: 0.1s;
}

.main-header {
  height: calc(100vh - 40px);
  /* background:url(/img/header-bg2.jpg) center center no-repeat; */
  -webkit-background-size: cover;
  background-size: cover;
  padding: 10px;
  position: relative;
}

.main-header_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #111;
}

.main-menu-placeholder.stickytop {
  height: 41px;
  display: none;
}

.main-menu-placeholder.stickytop {
  display: block;
}

.main-header .wrapper {
  height: 100%;
}

.main-content h1,
.main-content h2,
.main-content h3 {
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
}

.faq .item {
  background: #222;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: 1px solid #ee8d0b;
}

.faq .item p {
  margin: 0 auto;
  margin-bottom: 1em;
}

.faq .item p.title {
  background: #ee8d0b;
  height: 30px;
  margin-top: 10px;
  font-size: 20px;
  padding: 0 10px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}

.features {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.features .item {
  width: 25%;
  text-align: center;
  padding: 20px;
}

.features .item p {
  text-transform: uppercase;
}

.features .item img {
  width: 64px;
}

.features .item .img-cont {
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 60px;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  background: #1c1c1c;
}

.main-header-items {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  color: #fff;
  -ms-align-items: center;
  align-items: center;
  height: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.main-header-items .item-wide {
  width: 100%;
}

.main-header-items .social-icons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
}

.main-header-items .social-icons a {
  margin: 10px;
  transition: 0.2s;
  transition-delay: 0.04s;
  opacity: 0.7;
}

.main-header-items .social-icons a:hover {
  transform: translateY(5px);
  opacity: 1;
}

.main-header-items .social-icons a img {
  width: 25px;
}

.main-header-items .item a {
  text-decoration: none;
  color: #ee8d0b;
}

.main-header-items .item a:hover {
  color: #000;
}

.events-block .item {
  margin-bottom: 30px;
  padding: 10px;
}

.events-block .item img {
  max-height: 240px;
  max-width: 240px;
  display: block;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.41);
}

.events-block .item .flex-cont {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.events-block .item .main-text {
  font-size: 16px;
}

.events-block .item {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transition: 0.2s;
  background: #111;
}

.events-block .item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.events-block .item .add-info {
  text-align: right;
  background: #222;
  padding: 0 20px 6px;
}

.events-block .item .add-info p {
  font-size: 14px;
  margin: 0 auto;
}

.events-block .item .main-text p {
  margin: 0;
  margin-bottom: 1em;
}

.events-block .item .main-image {
  margin-right: 20px;
  position: relative;
}

.events-block .item .main-image a {
  display: block;
  position: relative;
}

.events-block .item .main-image a:after {
  transition: 0.3s;
  content: "";
  display: block;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5) url("/img/zoom.png") center center no-repeat;
  opacity: 0;
}

.events-block .item .main-image a:hover:after {
  opacity: 1;
}

.beer-table {
  border-collapse: collapse;
  background: #222;
  color: #fff;
  width: 100%;
}

.beer-table td {
  padding: 5px 10px;
  transition: 0.2s;
}

.beer-table tr.main {
  color: #ee8d0b;
}

.beer-table tr td:first-child {
  color: #ee8d0b;
}

/* .beer-table tr:nth-child(2n) td {
	background: #2d2d2d;
} */

.beer-table tr.main td,
.beer-table tr td:first-child {
  cursor: default;
}

.beer-table tr:hover td {
  background: #333;
  cursor: default;
}

.btn1 {
  display: inline-block;
  text-align: center;
  color: #fff;
  margin: 20px;
  text-decoration: none;
  padding: 0 20px;
  border: 5px solid #f44336;
  font-size: 24px;
  height: 60px;
  line-height: 41px;
  border-radius: 35px;
}

/* .main-header_overlay {
	display: none;
} */

.main-header .main-action {
  margin: 40px 0;
}

.main-gallery {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main-gallery a {
  display: block;
  margin: 5px;
  width: 23%;
  height: 155px;
  margin: 1%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.38);
}

.main-gallery a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main-content .content-block {
  margin-bottom: 60px;
}

.last-modified {
  text-align: right;
}

.events-block .item.hidden {
  display: none;
}

a.btn-2 {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  height: 40px;
  line-height: 32px;
  padding: 0 40px;
  border: 1px solid #fff;
  transition: 0.2s;
}

a.btn-2:hover {
  border: 1px solid #ee8d0b;
}

p.center {
  text-align: center;
}

a.tooltip {
  position: relative;
  color: #f44336;
}

a.tooltip:after {
  content: " *";
}

a.tooltip:before {
  content: attr(tooltip);
  display: block;
  position: absolute;
  top: 105%;
  left: 0;
  background: #e7e7e7;
  padding: 10px;
  color: #000;
  font-size: 14px;
  z-index: 5;
  width: 400px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: translateY(-5px);
  transition-delay: 0.3s;
}

a.tooltip:hover:before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.2s;
}

a.tooltip:hover {
  text-decoration: underline;
}

.popup-modal form {
  padding: 10px;
  text-align: center;
}

.popup-modal {
  display: none;
  background-color: #444444 !important;
  box-shadow: 0 0 40px #000;
  color: #fff;
}

.popup-modal--reserv {
  padding: 20px !important;
  width: 320px;
}

.popup-modal input {
  display: block;
  padding: 10px;
  height: 40px;
  border: none;
  background: #eee;
  width: 100%;
  margin-bottom: 10px;
  font-size: 16px;
  border-radius: 5px;
}

.popup-modal textarea {
  display: block;
  padding: 10px;
  border: none;
  background: #eee;
  width: 100%;
  margin-bottom: 10px;
  font: 400 13.3333px Arial;
  height: 5em;
  font-size: 16px;
  resize: none;
  border-radius: 5px;
}

.popup-modal__field input:valid,
.popup-modal__field textarea:valid,
.popup-modal__field select:valid {
  box-shadow: 0 0 2px 3px #4caf50;
}

.popup-modal select {
  display: block;
  padding: 10px;
  border: none;
  background: #eee;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
}

.popup-modal form button {
  display: block;
  border: none;
  padding: 10px;
  color: #fff;
  background: #ee8d0b;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.2s;
}

.popup-modal form button:hover {
  background: #e48b13;
}

.popup-modal form button:active {
  background: #bd6e04;
}

.popup-modal form button:disabled {
  background: #adadad !important;
}

.i-input {
  position: relative;
}

.i-input__icon {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 10px;
  border-radius: 20px;
  background: url(../img/check-1.svg) center no-repeat;
  opacity: 0;
  transition: 0.4s;
  transform: scale(0);
}

.people-counter {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.people-counter__item {
  display: block;
  width: 36px;
  height: 36px;
  background: #eee;
  border-radius: 5px;
  line-height: 37px;
  text-align: center;
  font-family: arial;
  font-size: 16px;
  color: #000;
  transition: 0.2s;
  cursor: pointer;
  border: 0;
}

.people-counter__item.active {
  background: #ee8d0b;
  color: #fff;
}

.popup-modal__field {
  margin-bottom: 20px;
}

.popup-modal .red-span {
  color: #f44336;
}

.popup-modal h3 {
  margin: 0 auto;
  margin-bottom: 1em;
}

.beer-links-container {
  padding: 10px;
}

.beer-links-container .beer-link {
  display: inline-block;
  margin: 5px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-family: arial;
  background: #222222;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  cursor: pointer;
}

.now-on-crans_admin .save-button {
  display: block;
  margin: 10px;
  border: 0;
  padding: 8px 16px;
  font-size: 14px;
  background: #ee8d0b;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  right: 0;
}

.now-on-crans_admin .save-button:hover {
  background: #c47811;
}

#totop {
  display: none;
  margin: 10px;
  border: 0;
  padding: 8px 16px;
  font-size: 14px;
  background: #ee8d0b;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  left: 0;
  font-size: 16px;
  font-family: arial;
}

.main-menu_toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  background: #ee8d0b;
  display: none;
  cursor: pointer;
}

.popup-modal p {
  text-align: left;
  margin-bottom: 10px;
  font-family: arial;
  font-size: 14px;
}

#calendar {
  display: none;
}

#new-calendar {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: stretch;
  align-items: stretch;
}

#new-calendar .fc-day {
  display: block;
  flex-grow: 1;
  width: 20%;
  margin: 1%;
  text-align: center;
  max-width: 275px;
  background: #2b2b2b;
}

#new-calendar .fc-day {
  width: 13%;
  margin: 0.5%;
}

#new-calendar .fc-day:nth-child(1),
#new-calendar .fc-day:nth-child(2),
#new-calendar .fc-day:nth-child(3),
#new-calendar .fc-day:nth-child(4) {
  width: 20%;
  margin: 1%;
}

#new-calendar .fc-day:nth-child(5),
#new-calendar .fc-day:nth-child(6),
#new-calendar .fc-day:nth-child(7) {
  width: 33%;
  margin: 1%;
}

#new-calendar .fc-day img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
  position: relative;
  z-index: 5;
  user-select: none;
  height: 100%;
}

#new-calendar .fc-day .image-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
  filter: blur(10px);
  top: 0;
  left: 0;
}

#new-calendar .fc-day .date-block {
  margin: 0;
  background: #ee8d0b;
  padding: 8px;
  text-transform: uppercase;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

#new-calendar .fc-day.fc-past .date-block {
  background: #a7a7a7;
}

#new-calendar .fc-day.fc-past .image-container {
  opacity: 0.5;
}

#new-calendar .fc-day.fc-today .date-block {
  background: #f44336;
}

#new-calendar .fc-day.fc-today {
  animation: box_shadow 1s infinite ease-in-out;
}

@keyframes box_shadow {
  from {
    box-shadow: 0 0 5px #f44336;
  }
  50% {
    box-shadow: 0 0 20px #f44336;
  }
  to {
    box-shadow: 0 0 5px #f44336;
  }
}

#main-slider .main-slider__link {
  background: #1c1c1c;
  display: block;
  height: 260px;
  padding: 5px;
  border-bottom: 1px solid #ee8d0b;
  transition: 0.3s;
}

#main-slider .main-slider__link img {
  height: 100%;
}

#main-slider .slick-arrow {
  display: none !important;
}

.item.event_item {
  max-width: 70vw;
  background: #2b2b2b;
  color: #fff;
}

.item.event_item .main-image {
  width: 320px;
  margin-right: 30px;
  flex-shrink: 0;
}

.item.event_item .main-image img {
  width: 100%;
}

.item.event_item .flex-cont {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 14px;
}

.item.event_item .main-text {
}

.item.event_item .main-text p {
  margin: 0;
}

.item.event_item .add-info {
  display: none;
}

a.btn-1,
.item.event_item .reserv-btn {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  width: 320px;
  margin-top: 40px;
  margin-bottom: 20px;
  height: 40px;
  line-height: 40px;
  background: #ee8d0b;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  padding: 0;
  text-transform: uppercase;
}

a.btn-1:hover,
.item.event_item .reserv-btn:hover {
  opacity: 0.9;
}

#new-calendar td.future-weeks {
  display: none;
}

.fancybox-close-small {
  outline: none !important;
}

#new-calendar .fc-day.fc-past {
  pointer-events: none;
}

#fixed-bg {
  display: none;
}

a.callback-btn {
  background: #f44336;
  color: #fff !important;
  height: 40px;
  display: block;
  padding: 0 24px;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 16px;
  animation: box_shadow 1s infinite ease-in-out;
}

a.callback-btn:hover {
  background: #f45236;
}

.spriteWrap {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

#main-slider {
  overflow: hidden;
  max-height: 260px;
  opacity: 0;
  transition: 2s;
}

#main-slider.slick-initialized {
  opacity: 1;
  max-height: auto;
}

#new-calendar .fc-day .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

#new-calendar .fc-day .image-container a:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  z-index: 10;
  transition: 0.2s;
}

#new-calendar .fc-day .image-container a:hover:after {
  opacity: 0.1;
}

.modal-rules {
  max-width: 600px;
  text-align: left;
  font-size: 18px;
  line-height: 1.4;
}

.modal-rules p {
  font-size: 18px;
  font-family: "EngraversGothic";
}

.modal-rules p b {
  font-size: 24px;
}

.modal-rules ul,
.modal-rules ol {
  padding-left: 25px;
}

.modal-rules input {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 0;
  background: none;
  height: auto;
}

.features .item {
  transform: translateY(20px);
  opacity: 0;
  transition: 1s;
}

.features .item.active {
  opacity: 1;
  transform: none;
}

.features .item:nth-child(1) {
  transition-delay: 0.5s;
}
.features .item:nth-child(2) {
  transition-delay: 0.7s;
}
.features .item:nth-child(3) {
  transition-delay: 0.9s;
}
.features .item:nth-child(4) {
  transition-delay: 1.1s;
}
.features .item:nth-child(5) {
  transition-delay: 1.3s;
}

#rules-confirm-btn {
  display: none;
}

#reserv > form button {
  cursor: pointer;
}

#reserv > form button.active {
  background: #4caf50;
}

.blocked-popup {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  background: rgba(60, 60, 60, 0.85);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}

.blocked-popup input {
  padding: 7px;
  border: 0;
  box-shadow: 4px 4px 10px #00000050;
  width: 140px;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.blocked-popup button {
  padding: 7px 20px;
  background: #ee8c0c;
  border: 0;
  color: #fff;
  cursor: pointer;
  box-shadow: 4px 4px 10px #00000050;
  display: block;
  width: 100%;
}

.blocked-popup button:hover {
  background: #fd9e21;
}

#message {
  margin: 5px;
  padding: 30px;
  background: #00000050;
  box-shadow: 0 0 50px #0000008c;
  width: 240px;
}

.blocked-popup h2 {
  margin: 0;
  font-size: 35px;
}

.blocked-popup .social-icons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.blocked-popup .social-icons a {
  margin: 10px;
}

.blocked-popup .social-icons a:hover {
  opacity: 0.8;
}

.blocked-popup .social-icons a img {
  width: 25px;
}

.govan-popup {
  position: fixed;
  top: 0;
  height: 150px;
  width: 100%;
  padding: 10px;
  left: 0;
  text-align: center;
  background: #000;
  z-index: 500;
  animation: box_shadow 1s infinite ease-in-out;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}

.govan-popup.active {
  opacity: 1;
  visibility: visible;
}

.govan-popup img {
  max-height: 100%;
  max-width: 100%;
}

.govan-popup__img {
  height: 100%;
}

.govan-popup__close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}

.govan-popup__close:after {
  position: absolute;
  content: "";
  display: block;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

.govan-popup__close:hover {
  opacity: 1;
}

.govan-popup__close svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  display: block;
}

.btn-1 {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 2px 10px 10px;
  background: #ee8d0b;
  text-align: center;
  margin: 0 auto;
}

.govan_main_link {
  margin-top: 60px;
  width: 100%;
}

.govan_main_link:hover {
  opacity: 0.8;
}

.govan_main_link img {
  width: 100%;
  max-width: 100%;
}

.guthrie_govan {
  text-align: center;
  position: relative;
}

.guthrie_govan .main-image {
  position: relative;
  z-index: 10;
}

.guthrie_govan img {
  max-width: 100%;
  width: 480px;
}

.guthrie_govan-tickets {
  padding: 20px;
  background: #fff;
  display: none;
  margin: 40px 0;
}

.guthrie_govan-videos {
  margin-top: 40px;
}

.guthrie_govan-videos iframe {
  margin-bottom: 20px;
  width: 100%;
}

.alert-item {
  padding-left: 20px;
  border-left: 2px solid #ee8d0b;
}

.my-parallax {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.my-parallax img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.parallax-mirror {
  animation: fade-in 3s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.event_item--new {
  display: flex;
  align-items: flex-start;
}

.event_item--new .flex-cont {
  width: 320px;
  display: block !important;
  margin-right: 20px;
}

.event_item--new .main-image {
  margin-bottom: 20px;
}

.event_item--new iframe {
  width: 480px !important;
}

#restoplace_container {
  display: none;
  width: 100%;
  background: transparent;
  margin: 0;
}

.restoplace-iframe,
#restoplace_container {
  position: relative;
  padding-bottom: 24px;
}

.edison-rules {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  overflow: auto;
  backdrop-filter: blur(5px);
  background: #1d1d1dd4;
  color: #fff;
  font-size: 14px;
}

.edison-rules > div {
  max-width: 800px;
  margin: 0 auto;
}

.edison-rules::-webkit-scrollbar-track {
  background: #1c1c1c;
}

.edison-rules::-webkit-scrollbar {
  width: 5px;
  background: #1c1c1c;
}

.edison-rules::-webkit-scrollbar-thumb {
  background-color: #ee8d0b;
  border-radius: 20px;
}

.edison-rules h1 {
  font-size: 24px;
  margin-top: 0;
}

.edison-rules a {
  color: #ee8d0b;
}

.edison-rules a.btn-1 {
  color: #fff;
}

.edison-rules-accepted {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  text-align: right;
  font-weight: 100;
  width: 100%;
}

.edison-rules-accepted a {
  color: #ee8d0b;
  cursor: pointer;
}

.edison-rules-accepted a:hover {
  opacity: 0.5;
}

.food-menu-desktop {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.food-menu-desktop a:hover {
  opacity: 0.9;
}

.food-menu-mobile {
  display: none;
  flex-wrap: wrap;
  gap: 6%;
}

.food-menu-mobile a {
  width: 20%;
  display: block;
}

.google-maps-iframe {
  position: relative;
}

.google-maps-iframe:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  width: 100px;
  height: 24px;
  background: #eee;
}
