body, html {
  margin: 0px;
  padding: 0px;
}

body {
  background-image: url("/assets/photos/patterns/seigaiha/seigaiha.png");
  width: 100%;
  height: auto;
}

.wrapper {
  width: 100%;
}

header {
  z-index: 10;
  padding-top: .5em;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: light;
  font-size: 1.3em;
  position: fixed;
  z-index: 2;
  background: white;
}

header .nav-wrapper {
  height: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .nav-wrapper a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: black;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  outline: none;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  font-size: .9em;
  width: 30px;
}

header .nav-wrapper a:hover {
  color: #E12C28;
}

header img {
  height: 55px;
  margin-top: -.2em;
}

header .nav-wrapper-mobile {
  display: none;
}

/*
@supports(background-attachment: fixed){
    .image-wrapper{
        div{
            background-attachment: fixed;
            transform: translateZ(-1px) scale(1.5);
            z-index:-1;
            transform: scale(1);
        }
    }
}
*/
.slide-wrapper {
  margin-bottom: 70px;
  overflow: hidden;
  height: 100%;
  width: 100% !important;
  position: relative;
  text-align: center;
}

.slide-wrapper .image-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slide-wrapper .image-wrapper div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: opacity linear 2s, -webkit-transform ease 20s 1s;
  transition: opacity linear 2s, -webkit-transform ease 20s 1s;
  transition: transform ease 20s 1s, opacity linear 2s;
  transition: transform ease 20s 1s, opacity linear 2s, -webkit-transform ease 20s 1s;
  background-position: center;
  opacity: 0;
}

.slide-wrapper .image-wrapper div:nth-child(1) {
  background-image: url("/assets/photos/slideshow/slideshow_1.jpg");
}

.slide-wrapper .image-wrapper div:nth-child(2) {
  background-image: url("/assets/photos/slideshow/slideshow_2.jpg");
}

.slide-wrapper .image-wrapper div:nth-child(3) {
  background-image: url("/assets/photos/slideshow/slideshow_3.jpg");
}

.slide-wrapper .image-wrapper div:nth-child(4) {
  background-image: url("/assets/photos/slideshow/slideshow_4.jpg");
}

.slide-wrapper .image-wrapper div:nth-child(5) {
  background-image: url("/assets/photos/slideshow/slideshow_5.jpg");
}

.slide-wrapper .image-wrapper div.visible {
  opacity: 1;
  -webkit-transition: opacity linear 1s, -webkit-transform ease-in-out 10s;
  transition: opacity linear 1s, -webkit-transform ease-in-out 10s;
  transition: transform ease-in-out 10s, opacity linear 1s;
  transition: transform ease-in-out 10s, opacity linear 1s, -webkit-transform ease-in-out 10s;
  z-index: 1;
}

.slide-wrapper .image-wrapper div.invisible {
  z-index: 0;
  opacity: 0;
}

.slide-wrapper #next-button {
  height: 100%;
  width: 40%;
  position: absolute;
  right: 0;
  top: 0;
}

.slide-wrapper #previous-button {
  height: 100%;
  width: 40%;
  position: absolute;
  left: 0;
  top: 0;
}

.slide-wrapper .bubbles-wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  height: 50px;
  z-index: 2;
}

.slide-wrapper .bubbles-wrapper .bubbles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slide-wrapper .bubbles-wrapper .bubbles img {
  cursor: pointer;
  margin: 0px 5px;
  height: 15px;
  width: auto;
}

.slide-wrapper .down-arrow {
  position: absolute;
  margin: auto;
  width: 100%;
  text-align: center;
  bottom: 10px;
  z-index: 2;
}

.slide-wrapper .down-arrow svg {
  color: white;
  width: 60;
  height: 60;
  -webkit-animation-name: floating;
          animation-name: floating;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes floating {
  from {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}

@keyframes floating {
  from {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}

.about-wrapper {
  margin: auto;
  width: 70% !important;
  margin-bottom: 100px;
  font-family: 'Quicksand', sans-serif;
}

.about-wrapper .title-wrapper {
  width: 100%;
  text-align: center;
}

.about-wrapper .title-wrapper span {
  margin: auto;
  font-size: 2em;
  font-weight: bold;
}

.about-wrapper p {
  color: #474747;
  display: block;
  font-weight: light;
  font-size: 1.5em;
  line-height: 1.5em;
}

.menu-wrapper {
  text-align: center;
  height: auto;
  font-family: 'Quicksand', sans-serif;
  
  width: 75% !important;
  margin: auto;
  margin-bottom: 80px;

}

.menu-wrapper .title {
  display: block;
  margin-bottom: 50px;
  font-size: 2.5em;
  
}

.menu-wrapper .signature-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;  
}

.menu-wrapper .signature-wrapper .custom-info {
  margin-top: 10px;
}

.menu-wrapper .signature-wrapper .custom-info span {
  font-size: 1rem;
  font-weight: lighter;
  display: block;
  width: 100%;
  margin: auto;
  margin-bottom: 1em;
}

.menu-wrapper .signature-wrapper .signature-bowl {
  padding: 40px 40px;
  margin: auto;
  border-radius: 5px;
  width: calc(100% * (1/4) + 20px - 1px);
  height: 245px;
  background: #dbd9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #232323;
  margin-bottom: 20px;
}

.menu-wrapper .signature-wrapper .signature-bowl img {
  width: 100%;
  height: auto;
  max-width: 2.8em;
  margin: auto;
  text-align: center;

}

.menu-wrapper .signature-wrapper .signature-bowl span {
  display: block;
}

.menu-wrapper .signature-wrapper .signature-bowl .name {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: black;
  margin-top: -15px;
}

.menu-wrapper .signature-wrapper .signature-bowl .name b {
  color: #E12C28;
  font-weight: lighter;
}

.menu-wrapper .signature-wrapper .signature-bowl .description {
  font: .8em;
}

.menu-wrapper .signature-wrapper .signature-bowl img {
  width: 300px;
}

.custom-wrapper {
  margin: auto;
  height: auto;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 75px;
}

.custom-wrapper span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.custom-wrapper .custom-info {
  margin-top: 10px;
}

.custom-wrapper .custom-info span {
  font-size: 1rem;
  font-weight: lighter;
  display: block;
  width: 90%;
  margin: auto;
  margin-bottom: 1em;
}

.custom-wrapper .downloads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 75%;
  margin: auto;
  margin-top: 1.5em;
}

.custom-wrapper .downloads form {
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.custom-wrapper .downloads button {
  width: 90%;
  height: 50px;
  background-color: #9EDBF3;
  border: none;
  margin: 0px 5px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1em;
}

.custom-wrapper .menu-downloads button {
  height: 50px;
  font-family: 'Quicksand', sans-serif;
  width: 45%;
}

.custom-wrapper .accordion-wrapper {
  width: 75%;
  text-align: center;
  margin: auto;
}

.custom-wrapper .accordion-wrapper button {
  font-family: 'Quicksand', sans-serif;
  width: 100%;
  background-color: #DBD9D9;
  border: none;
  text-align: left;
  min-height: 60px;
  height: auto;
  padding-top: 1.5em;
  -webkit-transition: all linear .3s;
  transition: all linear .3s;
}

.custom-wrapper .accordion-wrapper button span {
  display: block;
  float: left;
  font-size: 1.3rem;
  font-weight: lighter;
}

.custom-wrapper .accordion-wrapper button i {
  font-size: .7em;
}

.custom-wrapper .accordion-wrapper button svg {
  float: right;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.custom-wrapper .accordion-wrapper button svg.flip {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.custom-wrapper .accordion-wrapper button:hover {
  background-color: #cccccc;
}

.custom-wrapper .accordion-wrapper .section {
  background: #f9f9f9;
  height: 0px;
  overflow-y: hidden;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.custom-wrapper .accordion-wrapper .section .menu-item {
  height: 60px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 10px;
}

.custom-wrapper .accordion-wrapper .section .menu-item .item-name {
  left: 10;
}

.custom-wrapper .accordion-wrapper .section .menu-item .item-name b {
  color: #E12C28;
  font-weight: lighter;
}

.custom-wrapper .accordion-wrapper .section .menu-item .item-price {
  right: 10;
}

.custom-wrapper .accordion-wrapper .section .menu-item span {
  position: absolute;
  font-size: 1.2rem;
  font-weight: lighter;
}

.custom-wrapper .accordion-wrapper .section .menu-item b {
  color: #E12C28;
}

.custom-wrapper .accordion-wrapper .section .sauce {
  margin: 1em 0;
  padding-left: 10px;
}

.custom-wrapper .accordion-wrapper .section .sauce .sauce-name {
  color: #E12C28;
  font-weight: bold;
  margin-bottom: 0em;
}

.custom-wrapper .accordion-wrapper .section .sauce .sauce-description {
  margin-bottom: 1.5em;
}

.custom-wrapper .accordion-wrapper .section .sauce span {
  font-size: 1.2rem;
  font-weight: lighter;
  display: block;
  text-align: left;
}

.custom-wrapper .accordion-wrapper .section p {
  margin: 0;
}

.custom-wrapper .accordion-wrapper .section span {
  display: block;
}

.custom-wrapper .accordion-wrapper .section.visible {
  height: auto;
}

.separator-wrapper {
  width: 100%;
  height: 500px;
  background-image: url("/assets/photos/Poke.621Studios.17.7-min.jpg");
  background-repeat: no-repeat;
  background-position: 0% 25%;
  background-size: cover;
  margin-bottom: 50px;
}

#map {
  width: 100%;
  height: 500px;
  margin: auto;
  border: 3px solid white;
  margin-bottom: 5em;
  -webkit-box-shadow: 0px 1px 3px  #3a3a3a;
          box-shadow: 0px 1px 3px  #3a3a3a;
}

.location-wrapper {
  height: auto;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 50px;
  width: 75%;
  margin: auto;
}

.location-wrapper .title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2em;
  font-weight: bold;
  margin: auto;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

.location-wrapper .info {
  font-family: 'Quicksand', sans-serif;
  font-size: 12pt;
  margin: auto;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.location-wrapper .location {
  font-family: 'Quicksand', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}

.location-wrapper .location .location-name {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20pt;
}

.location-wrapper .location .location-address {
  font-size: 15pt;
}

.location-wrapper .location .location-phone {
  font-size: 15pt;
  margin-bottom: 15px;
}

.location-wrapper .location .location-hours {
  font-size: 14pt;
  margin-bottom: 5px;
}

.location-wrapper .location .location-hours b {
  color: #E12C28;
}

.location-wrapper .location .location-hours-label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16pt;
}

.location-wrapper .location .location-review {
  margin-top: 15px;
  font-size: 16pt;
  color: #E12C28;
}

.location-wrapper .location .location-review:hover {
  color: #f43c38;
}

.location-wrapper .location .coming-soon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  -webkit-box-shadow: 0px 1px 3px  #3a3a3a;
          box-shadow: 0px 1px 3px  #3a3a3a;
  border: 3px solid white;
  font-size: 1em;
  text-align: center;
  margin-bottom: 10px;
  background-color: white;
  color: white;
  text-shadow: 1px 1px #000;
  font-size: 1.5em;
  width: 75%;
  height: 300px;
  background-image: url("/assets/photos/Poke.621Studios.17.4-min.jpg");
  background-repeat: no-repeat;
  background-position: 0% 30%;
  background-size: cover;
}

.location-wrapper .location iframe {
  width: 75%;
}

.location-wrapper .location .order-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

.location-wrapper .location .order-wrapper a {
  text-decoration: none;
  color: #303030;
}

.location-wrapper .location .order-wrapper div {
  width: 100px;
  height: 50px;
  margin-right: 20px;
  background-color: #9EDBF3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #303030;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 13pt;
  padding: 7px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  cursor: pointer;
  border-radius: 2px;
}

.location-wrapper .location .order-wrapper div:hover {
  background-color: #bcecff;
}

.copyright-wrapper {
  margin-bottom: 2em;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
}

.contact-wrapper {
  width: 75% !important;
  height: auto;
  margin: auto;
  text-align: center;
  margin-bottom: 100px;
}

.contact-wrapper span {
  font-weight: bold;
  font-size: 2em;
  font-family: 'Quicksand', sans-serif;
}

.contact-wrapper input {
  height: 35px;
  font-family: 'Quicksand', sans-serif;
  border-radius: 2px;
  background: #FAFAFA;
  border: 1px solid #c6c6c6;
  padding-left: 5px;
  font-size: 1rem;
}

.contact-wrapper textarea {
  height: 100px;
  font-family: 'Quicksand', sans-serif;
  border-radius: 2px;
  background: #FAFAFA;
  border: 1px solid #c6c6c6;
  width: 100%;
  padding-top: 5px;
  padding-left: 5px;
  font-size: 1em;
}

.contact-wrapper :-moz-placeholder {
  font-size: 20pt;
}

.contact-wrapper button {
  width: 100%;
  height: 35px;
  font-family: 'Quicksand', sans-serif;
  border-radius: 2px;
  background: #9CD7EF;
  border: .5px solid #b6dded;
  font-size: 1.3em;
}

.contact-wrapper input {
  width: 100%;
}

.contact-wrapper div {
  margin: auto;
  margin-bottom: 30px;
  height: auto;
}

.contact-wrapper div label {
  float: left;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 5px;
}

.contact-wrapper div span {
  padding-left: 5px;
  font-size: .8em;
  font-weight: lighter;
}

.ownership-wrapper {
  width: 75%;
  height: auto;
  margin: auto;
  text-align: center;
  margin-bottom: 100px;
}

.ownership-wrapper form {
  margin-top: 30px;
}

.ownership-wrapper .title {
  font-weight: bold;
  font-size: 2em;
  font-family: 'Quicksand', sans-serif;
}

.ownership-wrapper .info {
  font-size: 1.3em;
  color: #383838;
  font-family: 'Quicksand', sans-serif;
}

.ownership-wrapper input {
  height: 35px;
  font-family: 'Quicksand', sans-serif;
  border-radius: 2px;
  background: #FAFAFA;
  border: 1px solid #c6c6c6;
  padding-left: 5px;
  font-size: 1rem;
}

.ownership-wrapper textarea {
  height: 100px;
  font-family: 'Quicksand', sans-serif;
  border-radius: 2px;
  background: #FAFAFA;
  border: 1px solid #c6c6c6;
  width: 100%;
  padding-top: 5px;
  padding-left: 5px;
  font-size: 1em;
}

.ownership-wrapper :-moz-placeholder {
  font-size: 20pt;
}

.ownership-wrapper button {
  width: 100%;
  height: 35px;
  font-family: 'Quicksand', sans-serif;
  border-radius: 2px;
  background: #9CD7EF;
  border: .5px solid #b6dded;
  font-size: 1.3em;
}

.ownership-wrapper input {
  width: 100%;
}

.ownership-wrapper div {
  margin: auto;
  margin-bottom: 30px;
  height: auto;
}

.ownership-wrapper div label {
  float: left;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 5px;
}

.ownership-wrapper div span {
  padding-left: 5px;
  font-size: .8em;
  font-weight: lighter;
}

.footer-wrapper {
  width: 100%;
  background-color: #6bc2e5;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-box-shadow: 0px -2px 5px #c6c6c6;
          box-shadow: 0px -2px 5px #c6c6c6;
}

.footer-wrapper .info-wrapper {
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  height: 50px;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}

.footer-wrapper .info-wrapper span {
  display: block;
  margin-bottom: 0px;
  margin: 15px 0px;
}

.footer-wrapper .info-wrapper a {
  color: black;
  margin-bottom: 1em;
}

.footer-wrapper .instagram-wrapper {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70%;
}

.footer-wrapper .instagram-wrapper .instagram-photo {
  -webkit-box-shadow: 0px 0px 3px #000;
          box-shadow: 0px 0px 3px #000;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  overflow: hidden;
  border: 3px solid #f7f7f7;
  width: 150px;
  height: 130px;
  margin: 10px 30px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.footer-wrapper .instagram-wrapper .instagram-photo img {
  width: 120%;
  height: auto;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
}

.footer-wrapper .instagram-wrapper .instagram-photo img.loaded {
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.footer-wrapper .instagram-wrapper .instagram-photo:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer-wrapper .social-wrapper {
  height: 100px;
  margin: auto;
  width: 65%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-wrapper .social-wrapper a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer-wrapper .social-wrapper a img {
  width: 25px;
  height: 25px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.footer-wrapper .social-wrapper a img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.fullscreen-wrapper {
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fullscreen-wrapper button {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  background: none;
  outline: none;
}

.fullscreen-wrapper button svg {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  color: white;
  width: 30;
  height: 30;
}

.fullscreen-wrapper button:hover svg {
  color: #E12C28;
}

.fullscreen-wrapper button:active svg {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.fullscreen-wrapper img {
  z-index: 3;
  overflow: hidden;
}

.fullscreen-wrapper img.menu {
  height: 100%;
  width: auto;
}

.fullscreen-wrapper img.fav {
  width: 80%;
  height: auto;
}

.fullscreen-wrapper.visible {
  display: block;
  z-index: 10;
}

.fullscreen-wrapper.invisible {
  display: none;
  z-index: 0;
}

.menu-dropdown-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: white;
  -webkit-animation: appear 0.2s ease;
          animation: appear 0.2s ease;
}

.menu-dropdown-wrapper .items-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 30px;
}

.menu-dropdown-wrapper .items-wrapper a {
  opacity: 0;
  -webkit-animation: item-appear 0.1s ease forwards;
          animation: item-appear 0.1s ease forwards;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 1.5em;
  font-family: 'Quicksand', sans-serif;
  text-decoration: none;
  color: black;
}

.menu-dropdown-wrapper .items-wrapper a:nth-child(1) {
  -webkit-animation-delay: 0.01s;
          animation-delay: 0.01s;
}

.menu-dropdown-wrapper .items-wrapper a:nth-child(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}

.menu-dropdown-wrapper .items-wrapper a:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.menu-dropdown-wrapper .items-wrapper a:nth-child(4) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.menu-dropdown-wrapper .items-wrapper a:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.menu-dropdown-wrapper .items-wrapper a:nth-child(6) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

@-webkit-keyframes item-appear {
  from {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes item-appear {
  from {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

.menu-dropdown-wrapper button {
  position: absolute;
  right: 0px;
  top: 10px;
  border: none;
  background: none;
  outline: none;
  z-index: 5;
}

.menu-dropdown-wrapper button svg {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  color: black;
  width: 30;
  height: 30;
}

.menu-dropdown-wrapper button:hover svg {
  color: #E12C28;
}

.menu-dropdown-wrapper button:active svg {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.menu-dropdown-wrapper.visible {
  display: block;
}

.menu-dropdown-wrapper.invisible {
  display: none;
}

@-webkit-keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=main-style.css.map */