@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reset link */
a {
  color: inherit;
  text-decoration: none;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  color: inherit;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.noscript.hidden {
  display: none !important;
}

main {
  scroll-snap-type: y proximity;
}
main .scroll-snap {
  scroll-snap-align: start;
}

body {
  font-size: 16px;
  font-weight: 300;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 860px) {
  body.mobile-nav-opened {
    overflow: hidden;
  }
}
.container {
  max-width: 1400px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

#header {
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  transition: 0.34s ease;
}
#header.sticky {
  background: rgba(0, 0, 0, 0.85);
}
#header.sticky .container {
  height: 69px;
}
#header.sticky #logo {
  padding: 5px 0;
}
#header.sticky #logo a,
#header.sticky #logo svg {
  height: 40px;
  margin-top: 10px;
}
#header.sticky #navigation a:hover {
  background: transparent;
}
#header .container {
  display: flex;
  transition: 0.34s ease;
  height: 90px;
}
#header #logo {
  padding: 10px 0;
  transition: 0.34s ease;
  margin-right: auto;
}
#header #logo a {
  display: block;
  transition: 0.34s ease;
  flex: 100%;
}
#header #logo svg {
  display: block;
  transition: 0.34s ease;
  height: 70px;
}
#header #logo svg g {
  transition: 0.34s ease;
}
#header #logo svg path {
  fill: #fff;
}

#header #navigation {
  margin-left: 16px;
  display: flex;
}
#header #navigation a {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 25px;
  color: #FFFFF;
}
#header #navigation a:hover {
  color: #CCA339;
  background: rgba(0, 0, 0, 0.33);
  box-shadow: inset 0 -2px #CCA339;
}
#header #socials, #header #hamburger {
  margin-left: 16px;
  display: flex;
}
#header #socials a, #header #hamburger a {
  padding: 0 5px;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFF;
}
#header #socials a:hover, #header #hamburger a:hover {
  color: #fff;
}
@media (min-width: 860px) {
  #header #hamburger {
    display: none;
  }
}
@media (max-width: 860px) {
  #header.sticky #navigation::after {
    background: rgba(0, 0, 0, 0.85);
  }
  #header #navigation {
    transform: translateY(-40px);
    pointer-events: none;
    opacity: 0;
    transition: 0.34s ease;
    border-top: 1px solid #081c0d;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    margin: 0;
    z-index: 30;
    flex-flow: wrap row;
  }
  .mobile-nav-opened #header #navigation {
    opacity: 1;
    pointer-events: all;
    transform: none;
  }
  #header #navigation a {
    position: relative;
    z-index: 21;
    flex: 100%;
    border-bottom: 1px solid #0b2813;
  }
  #header #navigation::after {
    content: "";
    height: 100vh;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    z-index: 20;
    left: 0;
    top: 0;
  }
}

.show-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease-in-out;
}
.show-on-scroll.sc-top {
  transform: translateY(-50px);
}
.show-on-scroll.ss {
  opacity: 1;
  transform: none;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section {
  padding: 55px 0;
}
.section .section-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 48px;
  font-family: "Roboto", sans-serif;
  color: #212121;
}
@media (max-width: 860px) {
  .section .section-title {
    font-size: 32px;
    line-height: 38px;
  }
}
.section .section-description {
  text-align: center;
  margin-bottom: 32px;
  color: #212121;
  max-width: 1000px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
.section:nth-child(2n+1) {
  background: #f7f7f7;
}

#slider {
  position: relative;
  overflow: hidden;
}
#slider .item img {
  width: 100%;
  object-fit: cover;
  height: calc(80vh);
  min-height: 540px;
}
#slider .item {
  position: relative;
  overflow: hidden;
}
#slider .slider_items > .item:not(:first-child) {
  display: none;
}
#slider .slider_arrows, #slider .slider_dots {
  position: absolute;
}
#slider .slider_arrows {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 15px;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#slider .slider_arrows .slick-arrow {
  display: block;
  padding: 15px;
  color: #fff;
  font-size: 24px;
  pointer-events: all;
  cursor: pointer;
  border-radius: 4px;
}
#slider .slider_arrows .slick-arrow:hover {
  background: #FFFFF;
}
#slider .slider_dots {
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 1200px) {
  #slider .slider_dots {
    left: 25%;
  }
}
#slider .slider_dots .slick-dots {
  display: flex;
}
#slider .slider_dots .slick-dots li + li {
  margin-left: 6px;
}
#slider .slider_dots .slick-dots span {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 20px;
  transition: 0.23s ease-out;
}
#slider .slider_dots .slick-dots .slick-active span {
  background: #CCA339;
  width: 40px;
}
#slider .special {
  position: absolute;
  max-width: 390px;
  left: calc(100vw - 600px);
  top: 100%;
  transform: translateY(-62px);
  background: #FFFFF;
  border-radius: 4px 4px 0 0;
  transition: 1.3s ease;
}
@media (max-width: 1300px) {
  #slider .special {
    left: unset;
    right: 60px;
  }
}
#slider .special.show {
  transform: translateY(-100%);
}
@media (max-width: 860px) {
  #slider .special {
    max-width: unset;
    width: 310px;
    left: 50%;
    transform: translateY(-62px) translateX(-50%);
  }
  #slider .special.show {
    transform: translateY(-100%) translateX(-50%);
  }
}
#slider .special .special_header {
  padding: 12px 30px;
  color: #fff;
}
#slider .special .special_header i {
  margin-left: 18px;
  animation: sp-header-icon 1s linear infinite;
}
@keyframes sp-header-icon {
  0%, 50%, 100% {
    transform: none;
  }
  25% {
    transform: translateY(-3px);
  }
  75% {
    transform: translateY(3px);
  }
}
#slider .special .special_image {
  position: relative;
}
#slider .special .special_image img {
  max-width: 390px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
#slider .special .special_image .special_arrows {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 5px;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#slider .special .special_image .special_arrows .slick-arrow {
  display: block;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  pointer-events: all;
  cursor: pointer;
  border-radius: 4px;
}
#slider .special .special_image .special_arrows .slick-arrow:hover {
  background: #FFFFF;
}
#slider .special .special_content {
  padding: 20px 30px;
  background: #f3f3f3;
  border-radius: 4px 4px 0 0;
  border-top: 1px solid #a7842b;
}
#slider .special .special_content h3 {
  font-family: "Roboto", sans-serif;
  margin-top: 16px;
  color: #212121;
}
#slider .special .special_content h4 {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #666;
  font-size: 14px;
}
#slider .special .special_content p {
  margin-top: 12px;
  max-width: 240px;
  font-size: 14px;
  line-height: 1.24;
}
#slider .special .special_content .price {
  margin-top: 16px;
  color: #FFFFF;
  font-size: 28px;
  font-weight: 700;
}

#about {
  background-color: #212121;
  background-image: url("./../img/pivo.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  color: #CCA339;
}
#about .section-title {
  color: #FFF;
}
#about .container {
  max-width: 1000px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
#about .container .about-service-wrapper {
  display: -ms-grid;
  display: grid;
  grid-gap: 0px;
  -ms-grid-columns: 1fr 300px;
  grid-template-columns: 1fr 300px;
}
#about .container .about {
  margin-right: 30px;
  color: #e7e7e7;
}
#about .container .about > * + * {
  margin-top: 1em;
}
#about .services {
  margin-top: auto;
}
#about .services .service {
  display: flex;
  align-items: center;
  background: #e7e7e7;
  line-height: 1.35;
  border-radius: 4px;
  overflow: hidden;
}
#about .services .service + .service {
  margin-top: 12px;
}
#about .services .service i, #about .services .service .service-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  font-size: 20px;
  margin-right: 12px;
  background: #CCA339;
  color: #fff;
  border-radius: 4px;
  padding-left: 22px;
  padding-right: 22px;
}
#about .services .service i::before, #about .services .service .service-image::before {
  transition: 0.34s ease;
}
#about .services .service .service-image {
  padding: 5px;
}
#about .services .service .service-content span {
  font-weight: 500;
  color: #212121;
}
#about .services .service .service-content small {
  color: #444;
}
#about .services .service .service-content span, #about .services .service .service-content small {
  display: block;
}
#about .services .service:hover i::before {
  transform: rotateY(180deg);
}
@media (max-width: 860px) {
  #about {
    background-image: url("./../images/pivo-mobile.png");
    background-size: contain;
    background-position: bottom center;
  }
  #about .container .about-service-wrapper {
    display: block;
  }
  #about .container .about {
    text-align: center;
    margin-right: 0;
  }
  #about .container .services {
    margin-top: 32px;
  }
}

.contact-info{
    text-align: center;
    margin-bottom: 20px;    
}

.price-list-center{
    text-align: center;
    margin-bottom: 20px;
}

#price-list .price-list-description {
  text-align: center;
  margin-top: 32px;
}
#price-list .price-list {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
#price-list .price-list .list-item {
  flex: 1;
  display: flex;
  flex-flow: wrap column;
  text-align: center;
  padding: 10px;
}
#price-list .price-list .list-item .list-item-image {
  height: 220px;
  overflow: hidden;
}
#price-list .price-list .list-item img {
  margin-bottom: auto;
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: 0.34s ease;
}
#price-list .price-list .list-item:hover img {
  transform: scale(1.12);
}
#price-list .price-list .list-item h3 {
  font-family: "Roboto", sans-serif;
  margin-top: 16px;
  color: #212121;
}
#price-list .price-list .list-item h4 {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #666;
  font-size: 14px;
}
#price-list .price-list .list-item p {
  margin-top: 12px;
  color: #444;
  font-weight: 400;
}
#price-list .price-list .list-item .price {
  margin-top: 16px;
  color: #CCA339;
  font-size: 28px;
  font-weight: 700;
}
@keyframes list-item {
  from {
    transform: none;
  }
  to {
    transform: scale(1.12);
  }
}
@media (max-width: 860px) {
  #price-list .price-list {
    flex-flow: wrap row;
  }
  #price-list .price-list .list-item {
    flex: 50%;
  }
}
@media (max-width: 500px) {
  #price-list .price-list .list-item {
    flex: 100%;
  }
  #price-list .price-list .list-item p {
    margin-top: 6px;
  }
  #price-list .price-list .list-item .price {
    margin-top: 8px;
  }
  #price-list .price-list .list-item + .list-item {
    margin-top: 32px;
  }
}

#reservation {
  background-image: url("./../images/image-2.jpeg");
  position: relative;
  padding: 144px 0;
  color: #fff;
}
#reservation .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
#reservation .container p {
  flex: 2.5;
  font-size: 28px;
  font-weight: 500;
  margin-right: 30px;
}
#reservation .container .reservation-button {
  flex: 1;
}
#reservation .container .reservation-button a {
  display: inline-block;
  background: #CCA339;
  font-weight: bold;
  color: #fff;
  font-size: 22px;
  padding: 9px 90px;
  border-radius: 100em;
  margin: auto;
  transition: 0.34s ease;
}
#reservation .container .reservation-button a:hover {
  box-shadow: 0 0 30px #CCA339;
}
@media (max-width: 860px) {
  #reservation .container {
    flex-flow: wrap row;
  }
  #reservation .container p, #reservation .container .reservation-button {
    flex: 100%;
    text-align: center;
    margin-right: 0;
  }
  #reservation .container .reservation-button {
    margin-top: 32px;
  }
}
#reservation::after {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  display: block;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#gallery {
  padding-bottom: 94px;
}
#gallery .gallery {
  display: flex;
  flex-flow: wrap row;
  margin: 0 -10px;
}
#gallery .gallery .gallery-item {
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: calc(100% / 4);
  height: 180px;
  border: 5px solid transparent;
  overflow: hidden;
}
#gallery .gallery .gallery-item img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transition: 0.24s ease;
}
#gallery .gallery .gallery-item:hover img {
  transform: scale(1.12);
}
@media (max-width: 860px) {
  #gallery .gallery .gallery-item {
    flex-basis: calc(100% / 2);
  }
}

#contact {
  background: #f7f7f7;
  padding: 0;
  position: relative;
  min-height: 450px;
}
#contact .container {
  padding-bottom: 40px;
}
@media (max-width: 860px) {
  #contact .container {
    padding-bottom: 0;
  }
}
#contact .contact-wrapper {
  max-width: 1000px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 18px;
}
#contact .contact-wrapper .contact_menu {
  background: #CCA339;
  border-radius: 6px;
  box-shadow: 0 6px 6px 2px rgba(33, 33, 33, 0.33);
  color: #fff;
  display: flex;
  list-style: none;
}
#contact .contact-wrapper .contact_menu a {
  padding: 30px 15px;
  flex: 1;
  display: flex;
  line-height: 1.35;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}
#contact .contact-wrapper .contact_menu a i {
  margin-right: 12px;
  color: #fff;
  font-size: 24px;
  transition: 0.34s ease;
}
#contact .contact-wrapper .contact_menu a[href]:hover i {
  transform: scale(1.2);
}
#contact .contact-wrapper .contact_menu a + a {
  border-left: 1px solid #7e6421;
}
@media (max-width: 860px) {
  #contact .contact-wrapper {
    position: relative;
    top: unset;
    transform: none;
    left: unset;
    margin-bottom: -10px;
  }
  #contact .contact-wrapper .contact_menu {
    flex-flow: wrap row;
  }
  #contact .contact-wrapper .contact_menu a {
    flex: 100%;
    text-align: left;
    padding: 15px 20px;
  }
  #contact .contact-wrapper .contact_menu a span {
    display: block;
    flex: 200px;
  }
  #contact .contact-wrapper .contact_menu a i {
    flex: 1;
    margin-right: 16px;
    text-align: right;
    transform-origin: right;
  }
  #contact .contact-wrapper .contact_menu a + a {
    border-left: 0;
    border-top: 1px solid #7e6421;
  }
}
#contact iframe {
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

#copyright {
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 860px) {
  #copyright {
    padding: 5px 0;
  }
}
#copyright .container {
  display: flex;
  flex-flow: wrap row;
}
#copyright .container p {
  flex: 1 1 400px;
  text-align: center;
  padding: 9px 15px;
}
@media (max-width: 860px) {
  #copyright .container p {
    padding: 2px 15px;
  }
}
#copyright .container a:hover {
  color: #CCA339;
}

#price-list, #gallery {
  padding-top: 42px;
}

#reservation-form {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  height: 100vh;
  width: 100%;
  padding: 0 15px;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.show-reservation-form #reservation-form {
  pointer-events: all;
  opacity: 1;
}
#reservation-form::after {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
#reservation-form .wrapper {
  position: relative;
  z-index: 10000;
  background: #fff;
  border-radius: 8px;
  display: block;
  width: 100%;
  overflow: hidden;
  max-width: 800px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: 0.48s ease 0.1s;
  transform: translateY(40px);
  padding: 0;
}
.show-reservation-form #reservation-form .wrapper {
  opacity: 1;
  transform: none;
}
#reservation-form .wrapper .form-grid {
  display: -ms-grid;
  display: grid;
  min-height: 260px;
  position: relative;
}
#reservation-form .wrapper #frm, #reservation-form .wrapper .form-loader, #reservation-form .wrapper .form-success {
  grid-column: 1;
  grid-row: 1;
}
#reservation-form .wrapper .form .form-title {
  background: #0D3017;
  color: #fff;
  padding: 7px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#reservation-form .wrapper .form form {
  padding: 32px 0 0;
}
#reservation-form .wrapper .form .error-container:not(:empty) {
  margin: 0 15px 32px;
}
#reservation-form .wrapper .form .error-container p {
  margin-bottom: 6px;
  background: red;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 4px;
}
#reservation-form .wrapper .form .error-container p i {
  margin-right: 12px;
}
#reservation-form .wrapper .form .form-container {
  display: flex;
  flex-flow: wrap row;
  padding: 0 15px;
  margin: 0 -15px;
}
#reservation-form .wrapper .form .form-group {
  flex: 1 0 180px;
  margin-bottom: 24px;
  padding: 0 15px;
}
#reservation-form .wrapper .form .form-group.date-input {
  flex: 1 0 400px;
}
#reservation-form .wrapper .form .form-group .required {
  font-weight: 700;
  color: red;
  line-height: 16px;
  font-size: 20px;
  vertical-align: bottom;
}
#reservation-form .wrapper .form .form-group.has-error label {
  color: red;
}
#reservation-form .wrapper .form .form-group.has-error input, #reservation-form .wrapper .form .form-group.has-error select, #reservation-form .wrapper .form .form-group.has-error textarea {
  border: 2px solid red;
}
#reservation-form .wrapper .form .form-group label {
  display: block;
  padding-left: 6px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
#reservation-form .wrapper .form .form-group input, #reservation-form .wrapper .form .form-group select, #reservation-form .wrapper .form .form-group textarea {
  padding: 10px 20px;
  border-radius: 4px;
  width: 100%;
  border: 1px solid #ccc;
  background: #f7f7f7;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#reservation-form .wrapper .form .form-group textarea {
  resize: none;
  height: 90px;
}
#reservation-form .wrapper .form .select-wrapper {
  position: relative;
}
#reservation-form .wrapper .form .select-wrapper select {
  padding-right: 30px;
}
#reservation-form .wrapper .form .select-wrapper::after {
  pointer-events: none;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
#reservation-form .wrapper .form .form-button {
  margin-right: 9px;
  border-radius: 4px;
  padding: 9px 15px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
}
#reservation-form .wrapper .form .form-button span {
  margin-right: 6px;
}
#reservation-form .wrapper .form .form-button.close-button {
  margin-right: 0;
  margin-left: 9px;
}
#reservation-form .wrapper .form .form-button.close-button, #reservation-form .wrapper .form .form-button.reset-button {
  background: #eee;
}
#reservation-form .wrapper .form .form-button.close-button:hover, #reservation-form .wrapper .form .form-button.reset-button:hover {
  background: #d5d5d5;
}
#reservation-form .wrapper .form .submit-group {
  padding: 15px 15px;
  border-top: 1px solid #ddd;
  display: flex;
}
#reservation-form .wrapper .form .submit-group .form-button {
  padding: 9px 35px;
}
#reservation-form .wrapper .form .submit-group .submit-button {
  margin-left: auto;
  margin-right: 0;
  background: #CCA339;
  color: #fff;
}
#reservation-form .wrapper .form .submit-group .submit-button:hover {
  background: #a7842b;
}
#reservation-form .wrapper .form-loader {
  position: absolute;
  z-index: 999;
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  justify-content: center;
  transition: 0.33s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
#reservation-form .wrapper .form-loader.show {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
#reservation-form .wrapper .form-loader h4 {
  color: #CCA339;
  margin-bottom: 16px;
  font-size: 24px;
}
#reservation-form .wrapper .form-loader .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
#reservation-form .wrapper .form-loader .lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
#reservation-form .wrapper .form-loader .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #CCA339;
  margin: -4px 0 0 -4px;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
#reservation-form .wrapper .form-loader .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#reservation-form .wrapper .form-success {
  display: none;
}
#reservation-form .wrapper .form-success .form-success-wrapper {
  min-height: 260px;
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#reservation-form .wrapper .form-success .fas {
  font-size: 72px;
  color: #CCA339;
  display: block;
  text-align: center;
  margin-bottom: 32px;
}
#reservation-form .wrapper .form-success h3 {
  font-size: 24px;
}

/*# sourceMappingURL=app.css.map */
