:root {
  --navbtn-width: 2rem;
  --burger_color: rgb(238, 191, 38);
  --navbtn-height: calc(var(--navbtn-width) * 0.8);
  --rectangle_height: calc(var(--navbtn-width) * 0.1);
  --rectangle_radius: calc(var(--navbtn-width) * 0.04);
  --translate: calc(var(--navbtn-width) * 0.17);
  --transition: 0.65s;
}

@-webkit-keyframes alertfade {
  0% {
    opacity: 0;
    height: 0vh;
    display: none;
  }
  10% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  20% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  80% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  90% {
    opacity: 0;
    height: 10vh;
    display: block;
  }
  100% {
    opacity: 0;
    height: 0vh;
    display: none;
  }
}

@keyframes alertfade {
  0% {
    opacity: 0;
    height: 0vh;
    display: none;
  }
  10% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  20% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  80% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  90% {
    opacity: 0;
    height: 10vh;
    display: block;
  }
  100% {
    opacity: 0;
    height: 0vh;
    display: none;
  }
}

.alertmsg {
  z-index: 999999 !important;
  position: absolute;
  left: 30vw;
  right: 30vw;
  top: 100%;
  height: auto;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  border-radius: 2px;
  font-weight: bold;
  font-style: normal;
  text-align: top;
  -webkit-animation-name: alertfade;
          animation-name: alertfade;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

#messages {
  -webkit-animation-name: alertfade;
          animation-name: alertfade;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.alertsuccess {
  background-color: #247a0e;
  color: white;
  margin: 10px;
  font-weight: normal;
}

.alerterror {
  background-color: #a73430;
  color: white;
  margin: 10px;
  font-weight: normal;
}

.alertclose {
  z-index: 10;
  color: white;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  margin-right: 10px;
  float: right;
}

.alertclose:hover,
.alertclose:focus {
  color: #e0e0e0;
  text-decoration: none;
  cursor: pointer;
}

.required::after {
  content: " *";
  color: red;
}

.loader {
  z-index: 2500;
  display: none;
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 48%;
  border-radius: 50%;
  border: 8px solid #f3f3f3;
  /* Light grey */
  border-top: 8px solid #a32b2b;
  /* Blue */
  width: 80px;
  height: 80px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.bg-chilli {
  background: url("../images/chilli.jpg");
  background-size: cover;
}

.bg-cor {
  background: url("../images/cor.jpg");
  background-size: cover;
}

.bg-tur {
  background: url("../images/tur.jpg");
  background-size: cover;
}

.form__div {
  position: relative;
  height: 48px;
  margin-bottom: 1.5rem;
}

.form__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: .5rem;
  outline: none;
  padding: 1rem;
  background: none;
  z-index: 1;
  font-size: 1rem;
}

.form__label {
  position: absolute;
  left: 1rem;
  top: .75rem;
  padding: 0 .25rem;
  font-size: 1rem;
  -webkit-transition: .3s;
  transition: .3s;
}

/*Input focus move up label*/
.form__input:focus + .form__label {
  top: -.5rem;
  left: .8rem;
  font-size: .75rem;
  font-weight: 500;
  z-index: 10;
  background-color: #fff;
}

/*Input focus sticky top label*/
.form__input:not(:placeholder-shown).form__input:not(:focus) + .form__label {
  top: -.5rem;
  left: .8rem;
  font-size: .75rem;
  font-weight: 500;
  z-index: 10;
  background-color: #fff;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  overflow-x: hidden;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.mySlides img {
  border-radius: 3px !important;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.5;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white !important;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #acacac;
  font-size: 16px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #646464;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.activedot, .activedot:hover {
  background-color: #dfdede;
}

/* Fading animation */
.cfade {
  -webkit-animation-name: cfade;
  -webkit-animation-duration: 0.8s;
  animation-name: cfade;
  animation-duration: 0.8s;
}

@-webkit-keyframes cfade {
  from {
    opacity: .1;
  }
  to {
    opacity: 1;
  }
}

@keyframes cfade {
  from {
    opacity: .1;
  }
  to {
    opacity: 1;
  }
}

.movein {
  -webkit-animation-name: move;
  -webkit-animation-duration: 0.5s;
  animation-name: move;
  animation-duration: 0.5s;
}

@keyframes move {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.movefromleft {
  -webkit-animation-name: movefromleft;
  -webkit-animation-duration: 0.5s;
  animation-name: movefromleft;
  animation-duration: 0.5s;
}

@keyframes movefromleft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes movefromleft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fancy-burger {
  position: relative;
  width: var(--navbtn-width);
  height: var(--navbtn-height);
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.rectangle {
  position: absolute;
  height: var(--rectangle_height);
  background: var(--burger_color);
  border-radius: var(--rectangle_radius);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}

.rectangle--small {
  width: calc(var(--navbtn-width) / 2);
}

.rectangle--top {
  top: 0;
  left: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.rectangle--middle {
  top: 50%;
  left: 0;
  width: var(--navbtn-width);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.rectangle--bottom {
  bottom: 0;
  right: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.rectangle--top.open {
  -webkit-transform: translateX(var(--translate)) rotate(45deg);
          transform: translateX(var(--translate)) rotate(45deg);
}

.rectangle--middle.open {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.rectangle--bottom.open {
  -webkit-transform: translateX(calc(var(--translate) * -1)) rotate(45deg);
          transform: translateX(calc(var(--translate) * -1)) rotate(45deg);
}

@media screen and (max-width: 950px) {
  .alertmsg {
    z-index: 99999;
    position: absolute;
    left: 2vw;
    right: 2vw;
    top: 100%;
    height: auto;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto;
    width: auto;
    border-radius: 2px;
    font-weight: bold;
    font-style: italic;
    text-align: top;
    -webkit-animation-name: alertfade;
            animation-name: alertfade;
    -webkit-animation-duration: 5s;
            animation-duration: 5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
/*# sourceMappingURL=appstyles.css.map */