/******************************
		TABLE OF CONTENTS
 ******************************
 ******************************
 NABVAR
 FOOTER
 POPUP
 FORM
 TEXT INPUT
 RADIO AND CHECKBOX
******************************/
/* VARIABLES */
/* POPUP */
span {
    font-size:16px;
}
@-webkit-keyframes drop {
  0% {
    opacity: 0;
  }
  70% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
  }
  100% {
    -webkit-transform: translateY(650px);
            transform: translateY(650px);
    opacity: 1;
  }
}
@keyframes drop {
  0% {
    opacity: 0;
  }
  70% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
  }
  100% {
    -webkit-transform: translateY(650px);
            transform: translateY(650px);
    opacity: 1;
  }
}

@-webkit-keyframes size {
  0% {
    height: 50px;
    width: 0px;
  }
  50% {
    width: 100vw;
    height: 50px;
  }
  100% {
    height: 1100px;
    width: 100vw;
  }
}

@keyframes size {
  0% {
    height: 50px;
    width: 0px;
  }
  50% {
    width: 100vw;
    height: 50px;
  }
  100% {
    height: 1100px;
    width: 100vw;
  }
}

@-webkit-keyframes size1 {
  0% {
    height: 50px;
    width: 0px;
  }
  50% {
    width: 770px;
    height: 50px;
  }
  100% {
    height: 720px;
    width: 770px;
  }
}

@keyframes size1 {
  0% {
    height: 50px;
    width: 0px;
  }
  50% {
    width: 770px;
    height: 50px;
  }
  100% {
    height: 720px;
    width: 770px;
  }
}

@-webkit-keyframes size1-reverse {
  0% {
    height: 580px;
    width: 580px;
  }
  50% {
    width: 770px;
    height: 580px;
  }
  100% {
    height: 720px;
    width: 770px;
  }
}

@keyframes size1-reverse {
  0% {
    height: 580px;
    width: 580px;
  }
  50% {
    width: 770px;
    height: 580px;
  }
  100% {
    height: 720px;
    width: 770px;
  }
}

@-webkit-keyframes size2 {
  0% {
    height: 720px;
    width: 770px;
  }
  50% {
    width: 580px;
    height: 720px;
  }
  100% {
    height: 580px;
    width: 580px;
  }
}

@keyframes size2 {
  0% {
    height: 720px;
    width: 770px;
  }
  50% {
    width: 580px;
    height: 720px;
  }
  100% {
    height: 580px;
    width: 580px;
  }
}

@-webkit-keyframes size3 {
  0% {
    height: 580px;
    width: 580px;
  }
  50% {
    width: 770px;
    height: 580px;
  }
  100% {
    height: 720px;
    width: 770px;
  }
}

@keyframes size3 {
  0% {
    height: 580px;
    width: 580px;
  }
  50% {
    width: 770px;
    height: 580px;
  }
  100% {
    height: 720px;
    width: 770px;
  }
}

@-webkit-keyframes size3-reverse {
  0% {
    height: 700px;
    width: 750px;
  }
  50% {
    width: 770px;
    height: 700px;
  }
  100% {
    height: 720px;
    width: 770px;
  }
}

@keyframes size3-reverse {
  0% {
    height: 700px;
    width: 750px;
  }
  50% {
    width: 770px;
    height: 700px;
  }
  100% {
    height: 720px;
    width: 770px;
  }
}

@-webkit-keyframes size4 {
  0% {
    height: 720px;
    width: 770px;
  }
  50% {
    width: 750px;
    height: 720px;
  }
  100% {
    height: 700px;
    width: 750px;
  }
}

@keyframes size4 {
  0% {
    height: 720px;
    width: 770px;
  }
  50% {
    width: 750px;
    height: 720px;
  }
  100% {
    height: 700px;
    width: 750px;
  }
}

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

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

/******************************
POPUP
******************************/
.size1 {
  -webkit-animation: size1 1s forwards;
  animation: size1 1s forwards;
}

.size1-reverse {
  -webkit-animation: size1-reverse 1s forwards;
  animation: size1-reverse 1s forwards;
}

#application2:target .popup__background {
  -webkit-animation: size2 1s forwards;
  animation: size2 1s forwards;
}

.size3 {
  -webkit-animation: size3 1s forwards;
  animation: size3 1s forwards;
}

.size3-reverse {
  -webkit-animation: size3-reverse 1s forwards;
  animation: size3-reverse 1s forwards;
}

#application4:target .popup__background {
  -webkit-animation: size4 1s forwards;
  animation: size4 1s forwards;
}

.popup__overlay:target .popup__content {
  -webkit-animation: fade 1.5s cubic-bezier(1, 0, 0.75, 0) forwards;
          animation: fade 1.5s cubic-bezier(1, 0, 0.75, 0) forwards;
}

@-webkit-keyframes distanceHighlight {
  0% {
    background-color: #ead216;
  }
  100% {
    background-color: #ffffff;
  }
}

@keyframes distanceHighlight {
  0% {
    background-color: #ead216;
  }
  100% {
    background-color: #ffffff;
  }
}

.highlight {
  -webkit-animation-name: distanceHighlight;
          animation-name: distanceHighlight;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

/******************************
            FONTS
******************************/
@font-face {
  font-family: 'avenir';
  src: url("../fonts/avenir-regular.otf");
  font-weight: 400;
}

@font-face {
  font-family: 'avenir';
  src: url("../fonts/avenir-bold.otf");
  font-weight: 700;
}

@font-face {
  font-family: 'avenir';
  src: url("../fonts/avenir-black.otf");
  font-weight: 900;
}

@font-face {
  font-family: 'euphorigenic';
  src: url("../fonts/euphorigenic.ttf");
  font-weight: 400;
}

/********************
        ADMIN
********************/
.hamburger-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin-right: 30px;
}

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover,
.hamburger:focus {
  opacity: 0.7;
  outline: 0px !important;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ffffff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus {
  outline: none;
}

b {
  font-weight: 900;
}

html, body {
  font-size: 62.5%;
  margin: 0px;
  padding: 0px;
  /* height: 100vh; !breaks AOS */
  font-family: 'avenir';
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/******************************
			GENERAL
******************************/
h3 {
  font-size: 40px;
  font-size: 4rem;
  font-family: euphorigenic;
}

h4 {
  font-size: 30px;
  font-size: 3rem;
  font-family: euphorigenic;
}

h5 {
  font-size: 2px;
  font-size: 2rem;
  font-family: euphorigenic;
}

.title--white {
  color: #ffffff;
}

.title--red {
  color: #c91f2c;
}

.paragraph {
  font-size: 16px;
  font-size: 1.6rem;
}

.paragraph--error {
  color: #c91f2c;
  text-align: center;
}

.paragraph--mainerror {
  margin-top: 50px;
  font-size: 20px;
  font-size: 2rem;
  color: #c91f2c;
  text-align: center;
}

.paragraph--marginbottom {
  margin-bottom: 30px;
}

.paragraph--black {
  font-weight: 900;
}

.paragraph--quote {
  font-size: 30px;
  font-size: 3rem;
  font-family: euphorigenic;
}

.paragraph--justify {
  text-align: justify;
}

.paragraph--big {
  font-size: 18px;
  font-size: 1.8rem;
}

.caption {
  margin-top: -50px;
  margin-bottom: 2em;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: euphorigenic;
}

.button {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: 900;
  border: 0px;
}

.button:hover,
.button:focus {
  text-decoration: none;
}

.button--red {
  background-color: #c91f2c;
  color: #ffffff;
}

.button--border {
  border: 1px solid #ffffff;
}

.button--red:hover,
.button--red:focus {
  background-color: #440b0f;
  color: #ffffff;
  text-decoration: none;
}

/******************************
		 CUSTOM SELECT
******************************/
/* The container must be positioned relative: */
.select__custom {
  position: relative;
  font-family: Arial;
}

.select__custom select {
  display: none;
  /*hide original SELECT element: */
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000000 transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  color: #000000;
  padding: 8px 16px;
}

.select-items div:not(:last-child) {
  border-bottom: 1px solid #c91f2c;
}

.select-selected {
  padding: 3px 30px 0px 0px;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 2px solid #c91f2c;
  border-top: 0px;
  border-radius: 0px 0px 10px 10px;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/******************************
			NABVAR
******************************/
.navbar {
  background-color: #000000;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  position: relative;
  min-height: 100px;
}

.navbar .left {
  padding-left: 25%;
  width: 100%;
}

@media (max-width: 1400px) {
  .navbar .left {
    padding-left: 20%;
  }
}

@media (max-width: 1200px) {
  .navbar .left {
    padding-left: 0px;
  }
}

.navbar .right {
  position: absolute;
  right: 10%;
}

@media (max-width: 1400px) {
  .navbar .right {
    right: 5%;
  }
}

@media (max-width: 1400px) {
  .navbar .right {
    right: 0%;
  }
}

.nav-link {
  color: #ffffff;
  margin: 10px 20px;
  background: linear-gradient(to top, #ead216 0%, #ead216 2px, transparent 1px) no-repeat;
  background-size: 0 100%;
  padding-bottom: 2px;
  -webkit-transition: background-size .3s;
  transition: background-size .3s;
}

.nav-link:hover,
.nav-link:focus {
  color: #ead216;
  background-size: 100% 100%;
}

.navbar-logo {
  background-color: #c91f2c;
  position: absolute;
  padding: 30px;
  top: 0px;
  left: 10%;
  z-index: 100;
}

@media (max-width: 1400px) {
  .navbar-logo {
    left: 5%;
  }
}

.navbar-logo img {
  height: 70px;
}

.nav-social-container {
  margin-top: 8px;
}

@media (max-width: 1200px) {
  .navbar-nav {
    margin-top: 80px;
    text-align: center;
  }
}

/******************************
			FOOTER
******************************/
.footer {
  background-color: #c91f2c;
  color: #ffffff;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 50px 250px;
  position: relative;
  z-index: 100;
}

@media (max-width: 1200px) {
  .footer {
    padding: 50px 50px;
  }
}

.footer .left {
  text-align: right;
}

@media (max-width: 1200px) {
  .footer .left {
    text-align: center;
  }
}

.footer-link {
  color: #ffffff;
  background: linear-gradient(to top, #ead216 0%, #ead216 2px, transparent 1px) no-repeat;
  background-size: 0 100%;
  padding-bottom: 2px;
  -webkit-transition: background-size .3s;
  transition: background-size .3s;
}

.footer-link:hover,
.footer-link:focus {
  text-decoration: none;
  color: #ead216;
  background-size: 100% 100%;
}

.footer-menu .footer-item:not(:last-child):after {
  content: "-";
  margin-left: 5px;
}

.footer-logo {
  max-width: 300px;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .footer-logo {
    margin-right: 0px;
  }
}

@media (max-width: 400px) {
  .footer-logo {
    max-width: 200px;
    margin-right: 0px;
  }
}

.footer-text {
  padding-top: 50px;
  max-width: 700px;
  text-align: left;
}

@media (max-width: 767px) {
  .footer-text {
    text-align: center;
  }
}

.footer-menu,
.footer-social,
.footer-credits {
  text-align: center;
  margin-top: 30px;
}

.footer-social {
  text-align: center;
  margin-top: 30px;
}

.social {
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  padding: 10px 15px 0px 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.social:hover {
  color: #ead216;
}

.footer-credits {
  color: #e76770;
}

.footer-credits-link {
  color: #ffffff;
}

/******************************
		  INDEX
******************************/
.carousel-caption {
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

@media (min-width: 768px) {
  .carousel-caption {
    margin-right: 33%;
  }
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.carousel-inner {
  max-height: 80vh;
}

.carousel-item > img {
  width: 100%;
  min-width: 1000px;
}

#index__header {
  background-image: url(../images/index/header.png);
}

#giftcard {
  background-image: url(../images/index/giftcard-bg.png);
  background-size: cover;
}

.giftcard__image {
  width: 600px;
  position: absolute;
  top: 0px;
  left: 370px;
}

.dashedborder {
  border-right: 2px dashed #000000;
}

@media (max-width: 992px) {
  .dashedborder {
    border-right: 0px;
  }
}

.decoration__image--sirop {
  width: 400px;
  position: relative;
  left: -180px;
  bottom: -250px;
  margin-top: -250px;
  z-index: 20;
}

.form__text--inline {
  background-color: #ededed;
  border: 0px;
  border-radius: 50px;
  width: 300px;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 5px 60px 5px 20px;
}

.form-inline {
  width: 420px;
  margin: auto;
}

@media (max-width: 450px) {
  .form-inline {
    width: 300px;
  }
}

.button--inline {
  position: relative;
  left: -50px;
}

@media (max-width: 450px) {
  .button--inline {
    left: auto;
    width: 300px;
    margin: auto;
    margin-top: 10px;
  }
}

.card--transparent {
  border: 0px !important;
  background-color: rgba(0, 0, 0, 0);
}

.card__overlay {
  background-color: #c91f2c;
  width: 60%;
  height: 50%;
  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;
}

.index {
  display: inline-block;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

.twoblocks {
  position: relative;
}

@media (max-width: 992px) {
  .twoblocks {
    padding-bottom: 500px;
  }
}

@media (max-width: 760px) {
  .twoblocks {
    padding-bottom: 400px;
  }
}

@media (max-width: 610px) {
  .twoblocks {
    padding-bottom: 350px;
  }
}

@media (max-width: 576px) {
  .twoblocks {
    padding-bottom: 100px;
  }
}

.twoblocks__img {
  width: 650px;
  z-index: -1;
}

@media (max-width: 1300px) {
  .twoblocks__img {
    width: 575px;
  }
}

@media (max-width: 1150px) {
  .twoblocks__img {
    width: 490px;
  }
}

@media (max-width: 992px) {
  .twoblocks__img {
    width: 750px;
  }
}

@media (max-width: 760px) {
  .twoblocks__img {
    width: 600px;
  }
}

.twoblocks__img--left {
  position: relative;
  top: -150px;
  left: -20px;
}

@media (min-width: 1600px) {
  .twoblocks__img--left {
    left: 100px;
  }
}

@media (min-width: 1800px) {
  .twoblocks__img--left {
    left: 200px;
  }
}

@media (min-width: 2100px) {
  .twoblocks__img--left {
    left: 300px;
  }
}

.twoblocks__img--right {
  position: absolute;
  top: -100px;
  right: -20px;
}

@media (min-width: 1600px) {
  .twoblocks__img--right {
    right: 100px;
  }
}

@media (min-width: 1800px) {
  .twoblocks__img--right {
    right: 200px;
  }
}

@media (min-width: 2100px) {
  .twoblocks__img--right {
    right: 350px;
  }
}

.twoblocks__overlay--left {
  position: absolute;
  top: 150px;
  left: 240px;
}

@media (min-width: 1600px) {
  .twoblocks__overlay--left {
    left: 360px;
  }
}

@media (min-width: 1800px) {
  .twoblocks__overlay--left {
    left: 460px;
  }
}

@media (min-width: 2100px) {
  .twoblocks__overlay--left {
    left: 560px;
  }
}

@media (max-width: 1300px) {
  .twoblocks__overlay--left {
    top: 110px;
    left: 200px;
  }
}

@media (max-width: 1150px) {
  .twoblocks__overlay--left {
    top: 60px;
    left: 160px;
  }
}

@media (max-width: 992px) {
  .twoblocks__overlay--left {
    top: 200px;
    left: 295px;
  }
}

@media (max-width: 760px) {
  .twoblocks__overlay--left {
    top: 130px;
    left: 220px;
  }
}

.twoblocks__overlay--right {
  position: absolute;
  top: 200px;
  right: 200px;
}

@media (min-width: 1600px) {
  .twoblocks__overlay--right {
    right: 320px;
  }
}

@media (min-width: 1800px) {
  .twoblocks__overlay--right {
    right: 420px;
  }
}

@media (min-width: 2100px) {
  .twoblocks__overlay--right {
    right: 570px;
  }
}

@media (max-width: 1300px) {
  .twoblocks__overlay--right {
    top: 150px;
    right: 185px;
  }
}

@media (max-width: 1150px) {
  .twoblocks__overlay--right {
    top: 100px;
    right: 143px;
  }
}

@media (max-width: 992px) {
  .twoblocks__overlay--right {
    top: 240px;
    right: 270px;
  }
}

@media (max-width: 760px) {
  .twoblocks__overlay--right {
    top: 160px;
    right: 200px;
  }
}

@media (max-width: 1200px) {
  .twoblocks__button {
    max-width: 170px;
    display: block;
  }
}

@media (max-width: 1300px) {
  .twoblocks__button {
    max-width: 160px;
    display: block;
  }
}

/******************************
		  CAREER
******************************/
#career__header {
  background-image: url(../images/career/header.png);
}

.career__video__button {
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
}

.career__video__button:hover,
.career__video__button:focus {
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
  outline: 0px auto -webkit-focus-ring-color;
}

.modal-dialog {
  max-width: 900px;
}

@media (max-width: 992px) {
  .modal-dialog {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .modal-dialog {
    max-width: 100%;
  }
}

.career__video__modal {
  background-color: #f6e5bf;
  border-radius: 10px;
  border: 0px;
  height: 515px;
}

@media (max-width: 992px) {
  .career__video__modal {
    height: 402px;
  }
}

@media (max-width: 768px) {
  .career__video__modal {
    min-height: 100px;
  }
}

.star {
  position: relative;
  top: -80px;
  margin-bottom: -50px;
}

.title--position {
  position: absolute;
  top: -45px;
  left: 89px;
}

.video {
  width: 100%;
  max-width: 700px;
}

/******************************
		  RESTAURANTS
******************************/
#restaurants {
  background-image: url(../images/restaurants/header.jpg);
}

#map {
  height: 80vh;
  width: 100%;
}

.header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 350px;
}

.header__title {
  color: #ffffff;
  font-family: 'euphorigenic';
  font-size: 60px;
  font-size: 6rem;
  padding: 200px 0px 0px 200px;
  text-shadow: 0px 0px 6px #000000;
}

@media (max-width: 1250px) {
  .header__title {
    text-align: center;
    padding: 200px 0px 0px 0px;
  }
}

@media (max-width: 500px) {
  .header__title {
    font-size: 50px;
    font-size: 5rem;
  }
}

.header__title--index {
  font-size: 50px;
  font-size: 5rem;
  padding: 0px;
}

@media (max-width: 950px) {
  .header__title--index {
    text-align: center;
    font-size: 40px;
    font-size: 4rem;
  }
}

.header__button {
  margin-top: 20px;
}

.header__title--width {
  max-width: 550px;
}

@media (max-width: 1250px) {
  .header__title--width {
    max-width: 100%;
  }
}

.header__title__container--index {
  padding: 100px 0px 0px 200px;
  max-width: 650px;
}

@media (max-width: 1250px) {
  .header__title__container--index {
    padding: 100px 150px 0px 50px;
  }
}

@media (max-width: 950px) {
  .header__title__container--index {
    max-width: 100%;
    text-align: center;
    padding: 100px 20px 0px 20px;
  }
}

#infowindow-content .title {
  font-weight: bold;
}

#infowindow-content {
  display: none;
}

#map #infowindow-content {
  display: inline;
}

.infos_container--large {
  display: block;
}

@media (max-width: 1100px) {
  .infos_container--large {
    display: none;
  }
}

.infos_container--small {
  display: none;
}

@media (max-width: 1100px) {
  .infos_container--small {
    display: block;
  }
}

.pac-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  top: 100px !important;
  left: 100px !important;
  right: auto !important;
}

@media (min-width: 2000px) {
  .pac-card {
    left: 200px !important;
  }
}

@media (max-width: 1200px) {
  .pac-card {
    left: 5vw !important;
    width: 80vw;
    margin: auto;
  }
}

#pac-input {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 10px;
  text-overflow: ellipsis;
  width: 400px;
}

@media (min-width: 2000px) {
  #pac-input {
    width: 600px;
  }
}

@media (max-width: 1200px) {
  #pac-input {
    width: 80vw;
    margin: auto;
  }
}

.search {
  position: absolute;
  margin: 0px;
}

#pac-input:focus {
  border: 1px solid #ead216;
}

#title {
  color: #fff;
  background-color: #4d90fe;
  font-size: 25px;
  font-weight: 500;
  padding: 6px 12px;
}

.map__container {
  position: relative;
}

.restaurants__container {
  width: 444px;
  height: 70vh;
  z-index: 1;
  position: absolute;
  top: 160px;
  left: 100px;
  overflow-y: scroll;
  overflow-x: visible;
  font-size: 15px;
  font-size: 1.5rem;
  scroll-behavior: smooth;
}

@media (min-width: 2000px) {
  .restaurants__container {
    width: 644px;
    left: 200px;
  }
}

@media (max-width: 1200px) {
  .restaurants__container {
    width: 90vw;
    margin: 30px auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: static;
    top: 160px;
    left: 100px;
  }
}

.restaurants__container::-webkit-scrollbar {
  width: 0px;
}

.restaurants__card {
  margin-bottom: 20px;
  padding: 10px;
}

.restaurants__container .restaurants__card:last-child {
  margin-bottom: 15vh;
}

@media (max-width: 1200px) {
  .restaurants__container .restaurants__card:last-child {
    margin-bottom: 0vh;
  }
}

.restaurant__title {
  font-weight: 900;
  font-size: 20px;
  font-size: 2.0rem;
}

.restaurants__phone:before {
  content: url(../images/restaurants/phone.png);
  margin-right: 10px;
}

.restaurant__button {
  background-color: #c91f2c;
  border-radius: 50px;
  color: #ffffff;
  padding: 5px 20px;
}

/******************************
		  FRANCHISES
******************************/
#franchises__header {
  background-image: url(../images/franchises/header.png);
}

.block {
  padding: 80px 150px;
}

@media (max-width: 650px) {
  .block {
    padding: 80px 50px 80px 50px;
  }
}

.banner {
  background-color: #f6e5bf;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0px 150px 150px 150px;
  position: relative;
}

@media (max-width: 650px) {
  .banner {
    padding: 0px 50px 150px 50px;
  }
}

.banner--zindex {
  z-index: -2;
}

.banner--vertical {
  background-image: url(../images/global/banner-vertical.png);
  background-repeat: repeat;
  background-size: 100% auto;
  padding: 50px 50px 150px 100px;
  position: relative;
  top: -50px;
  margin-bottom: -50px;
  z-index: -1;
  min-height: 100%;
  width: 100%;
}

@media (max-width: 990px) {
  .banner--vertical {
    top: -400px;
    margin-bottom: -400px;
    padding: 400px 50px 50px 50px;
    background-image: none;
    background-color: #f6e5bf;
  }
}

.banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner--padding {
  padding: 100px 150px 100px 150px;
}

@media (max-width: 650px) {
  .banner--padding {
    padding: 50px 50px 50px 50px;
  }
}

.banner--nopadding {
  padding: 50px 150px 0px 150px;
}

@media (max-width: 650px) {
  .banner--nopadding {
    padding: 50px 50px 50px 50px;
  }
}

.banner--career {
  padding-bottom: 0px;
}

.banner--margin {
  margin: 100px 0px;
}

.banner--margintop {
  margin: 100px 0px 0px 0px;
}

.banner:before {
  content: "";
  display: block;
  background-image: url(../images/global/banner-top.png);
  background-size: auto 100%;
  position: absolute;
  top: -50px;
  left: 0px;
  height: 100px;
  width: 100%;
}

.banner:after {
  content: "";
  display: block;
  background-image: url("../images/global/banner-bottom.png");
  background-size: auto 100%;
  position: absolute;
  bottom: -50px;
  left: 0px;
  height: 100px;
  width: 100%;
}

@media (max-width: 990px) {
  .banner__title--marginsmall {
    margin-top: 50px;
  }
}

.banner__title--red {
  background-color: #c91f2c;
  color: #ffffff;
  position: relative;
  top: -20px;
  padding: 15px 50px;
  z-index: 30;
}

@media (max-width: 450px) {
  .banner__title--red {
    display: block;
    top: -60px;
  }
}

.Dimitri_Vouras {
  width: 100%;
}

.marker {
  width: 100px;
}

@media (max-width: 990px) {
  .marker--displaysmall {
    display: none;
  }
}

.position {
  position: relative;
  top: -50px;
}

.elevatedbox__container {
  padding: 50px 0px;
}

@media (max-width: 650px) {
  .elevatedbox__container {
    padding: 50px 0px;
  }
}

.elevatedbox__container--padding {
  padding: 50px 150px;
}

@media (max-width: 650px) {
  .elevatedbox__container--padding {
    padding: 50px 50px 50px 50px;
  }
}

.elevatedbox__container--nopadding {
  padding: 20px 0px;
}

.elevatedbox {
  background-color: #ffffff;
  border: 2px solid #c91f2c;
  -webkit-box-shadow: 10px 10px 0px 0px #c91f2c;
  box-shadow: 10px 10px 0px 0px #c91f2c;
  padding: 30px 60px;
}

@media (max-width: 650px) {
  .elevatedbox {
    padding: 30px 10px 30px 10px;
  }
}

.elevatedbox--small {
  width: 300px;
  margin: auto;
  margin-top: -50px;
  padding: 60px 30px;
}

@media (max-width: 400px) {
  .elevatedbox--small {
    width: 200px;
    padding: 20px 20px;
  }
}

.elevatedbox--large {
  width: 600px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 60px 100px 60px 100px;
  position: relative;
  left: -150px;
}

@media (max-width: 992px) {
  .elevatedbox--large {
    left: -0px;
    width: 80%;
  }
}

@media (max-width: 400px) {
  .elevatedbox--large {
    width: 200px;
    padding: 20px 20px;
  }
}

.elevatedbox--xsmall {
  width: 300px;
  margin: auto;
  margin-top: -50px;
  padding: 20px 20px;
}

@media (max-width: 400px) {
  .elevatedbox--xsmall {
    width: 200px;
  }
}

.elevatedbox--xxsmall {
  width: 200px;
  height: 200px;
  padding: 20px 20px;
  margin: auto;
}

.elevatedbox--rotate {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.elevatedbox--rotateright {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}

@media (max-width: 650px) {
  .elevatedbox--rotateright {
    padding: 30px 10px 30px 30px;
  }
}

.elevatedbox--position {
  margin-bottom: -150px;
  position: relative;
  top: -200px;
}

.elevatedbox__title {
  background-color: #c91f2c;
  position: relative;
  top: -50px;
  padding: 10px 20px;
}

@media (max-width: 350px) {
  .elevatedbox__title {
    display: block;
  }
}

.elevatedbox__icon {
  width: 40px;
  margin-right: 20px;
  float: left;
}

.elevatedbox__img {
  width: 75px;
}

.elevatedbox__paragraph {
  margin: 20px 0px;
}

/******************************
		  NEWSLETTER
******************************/
#newsletter__header {
  background-image: url(../images/newsletter/header.png);
  background-position: bottom center;
  height: 550px;
}

@media (max-width: 576px) {
  #newsletter__header {
    background-position-x: -550px;
  }
}

.heart {
  width: 75px;
  position: relative;
  top: 40px;
  left: 50px;
}

.title--heart {
  position: absolute;
  top: 55px;
  left: 100px;
}

/******************************
		  HISTORY
******************************/
#history__header {
  background-image: url(../images/history/header.png);
}

.restaurant {
  width: 100%;
}

.old-logo {
  position: relative;
  top: -60px;
}

/******************************
		  CONTACT
******************************/
#contact__header {
  background-image: url(../images/contact/header.png);
}

.contact__icon {
  color: #c91f2c;
  font-size: 20px;
  font-size: 2rem;
  padding-right: 10px;
}

.contact__left {
  margin-top: 150px;
}

.banner--contact {
  margin-top: 100px;
  padding-bottom: 0px;
}

/******************************
		  MENU
******************************/
.categories{
  padding: 100px 20em 0 20em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(100px, auto);
}

@media screen and (max-width: 1024px) {
  .categories{
    padding: 100px 0 0 0;
  }
}

@media screen and (max-width: 800px) {
  .categories{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 375px) {
  .categories{
    grid-template-columns: repeat(1, 1fr);
  }
}


.categories__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000000;
  background: linear-gradient(to top, #c91f2c 0%, #c91f2c 2px, transparent 1px) no-repeat;
  background-size: 0 100%;
  padding-bottom: 2px;
  -webkit-transition: background-size .3s;
  transition: background-size .3s;
}

.categories__link:hover,
.categories__link:focus {
  text-decoration: none;
  color: #c91f2c;
  background-size: 100% 100%;
}

.categories__icon__background {
  background-color: #c91f2c;
  border-radius: 250px;
  height: 125px;
  width: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.categories__icon__background--sm {
  height: 100px;
  width: 100px;
}

.categories__icon__background--xs {
  height: 25px;
  width: 25px;
  margin-top: 0px;
  margin-right: 10px;
}

.categories__link:hover .categories__icon__background,
.categories__link:focus .categories__icon__background {
  background-color: #b31c27;
}

.categories__link--sm {
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
}

.categories__icon {
  width: 75px;
}

.categories__icon--sm {
  width: 50px;
}

.categories__icon--xs {
  width: 20px;
}

#menu__header {
  background-image: url(../images/menu/header.png);
}

#beverages__header {
  background-image: url(../images/menu/header.png);
}

#children__header {
  background-image: url(../images/menu/header.png);
}

#combos__header {
  background-image: url(../images/menu/header.png);
}

#crepes__header {
  background-image: url(../images/menu/header.png);
}

#eggs__header {
  background-image: url(../images/menu/header.png);
}

#toasts__header {
  background-image: url(../images/menu/header.png);
}

#hamburgers__header {
  background-image: url(../images/menu/header.png);
}

#health__header {
  background-image: url(../images/menu/header.png);
}

#monteregie__header {
  background-image: url(../images/menu/header.png);
}

#ovenfresh__header {
  background-image: url(../images/menu/header.png);
}

#sandwichs__header {
  background-image: url(../images/menu/header.png);
}

#sideorder__header {
  background-image: url(../images/menu/header.png);
}

#waffles__header {
  background-image: url(../images/menu/header.png);
}

#yogurts__header {
  background-image: url(../images/menu/header.png);
}

.sidemenu--sm {
  padding: 0px 50px;
}

.sidemenu__sticky--sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  padding: 0px 15px;
}

.sidemenu__sticky--sm::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50px;
}

.sidemenu__sticky--sm::-webkit-scrollbar {
  height: 6px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50px;
}

.sidemenu__sticky--sm::-webkit-scrollbar-thumb {
  background-color: #c91f2c;
  border-radius: 50px;
}

.sidemenu {
  font-size: 20px;
  font-size: 2rem;
  font-family: euphorigenic;
  padding: 50px 0px 75px 75px;
}

@media (max-width: 990px) {
  .sidemenu {
    padding: 50px;
  }
}

.sidemenu__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
}

.sidemenu__object {
  list-style: none;
  padding: 7px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidemenu__link {
  color: #000000;
  background: linear-gradient(to top, #c91f2c 0%, #c91f2c 2px, transparent 1px) no-repeat;
  background-size: 0 100%;
  padding-bottom: 2px;
  -webkit-transition: background-size .3s;
  transition: background-size .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidemenu__link:hover,
.sidemenu__link:focus {
  text-decoration: none;
  color: #c91f2c;
  background-size: 100% 100%;
}

@media (max-width: 990px) {
  .sidemenu__object {
    display: inline;
  }
}

@media (max-width: 990px) {
  .sidemenu .sidemenu__object:not(:last-child):after {
    content: "-";
    margin-left: 5px;
  }
}

.menu__object {
  font-size: 16px;
  font-size: 1.6rem;
  list-style: none;
  padding-bottom: 6px;
  font-weight: 900;
}

.menu__object--bold {
  font-style: italic;
  font-size: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.menu__object:before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #c91f2c;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.menu__image {
  width: 100%;
}

/******************************
			POPUP
******************************/
.career {
  overflow-x: hidden;
}

.popup__overlay {
  font-size: 17px;
  font-size: 1.7rem;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  z-index: 99999;
  overflow: auto;
  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;
}

@media (max-width: 770px) {
  .popup__overlay {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100vw;
  }
}

.popup__overlay::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50px;
}

.popup__overlay::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50px;
}

.popup__overlay::-webkit-scrollbar-thumb {
  background-color: #c91f2c;
  border-radius: 50px;
}

@media (max-width: 770px) {
  .popup__overlay::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0);
  }
}

.popup__overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup__background {
  top: 30px;
  background: #fff;
  border-radius: 12px;
  position: absolute;
  -webkit-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
  z-index: 999999;
}

@media (max-width: 770px) {
  .popup__background {
    top: 0px;
    bottom: 0px;
  }
}

#popup__background--1 {
  height: fit-content !important;
  width: 770px;
}

#popup__background--2 {
  height: 580px;
  height: auto !important;
  width: 580px;
}

#popup__background--3 {
  height: 720px;
  height: fit-content !important;
  width: 770px;
}

#popup__background--4 {
  height: 700px;
  height: fit-content !important;
  width: 750px;
}

.popup__content {
  background-image: url(../images/career/application__background.png);
  background-size: 770px auto;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 100%;
  min-width: 100%;
  padding: 40px;
}

.popup__title {
  margin-top: 0;
  color: #ffffff;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin-top: 180px;
  margin-bottom: 70px;
}

.popup__close {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #c91f2c;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff !important;
}

@media (max-width: 770px) {
  .popup__close {
    top: 10px;
    right: 10px;
  }
}

.popup__close:hover,
.popup__close:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #b31c27;
}

.popup__section,
.popup__section__top,
.popup__section__bottom {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 16px;
  line-height: 1.6rem;
  position: relative;
}

.popup__section__title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  color: #c91f2c;
}

/******************************
             POPUP
******************************/
@media screen and (max-width: 770px) {
  #popup__background--1 {
    height: 1100px;
    width: 100vw;
  }
  #popup__background--2 {
    height: 1100px;
    width: 100vw;
  }
  #popup__background--3 {
    height: 1100px;
    width: 100vw;
  }
  #popup__background--4 {
    height: 1100px;
    width: 100vw;
  }
  .size1,
  .size1-reverse,
  #application2:target .popup__background,
  .size3,
  .size3-reverse,
  #application4:target .popup__background {
    -webkit-animation: size 1s forwards;
    animation: size 1s forwards;
  }
  .form__checkbox--alignright,
  .form__checkbox--alignleft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .popup__title {
    margin-top: 150px;
    margin-bottom: 100px;
  }
  .form__radio--alignright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 0px;
    padding-left: 0px;
  }
  .form__radio--alignleft {
    padding-right: 0px;
    padding-left: 0px;
  }
}

/******************************
			FORM
******************************/
.form {
  font-size: 17px;
  font-size: 1.7rem;
}

.form__title {
  margin: 50px 0px 20px 0px;
}

.form__label {
  color: #c91f2c;
  margin: 0;
}

.form__label--black {
  color: #000000;
  font-weight: 900;
}

.form__file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.form__file__label {
  border: 2px solid #c91f2c;
  width: 100%;
  padding: 5px 10px;
  color: #c91f2c;
}

.form__file__label--black {
  border: 2px solid #000000;
  color: #000000;
}

.popup__background--redline::before {
  border-left: 10px solid #ff2738;
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  margin-left: -5px;
  content: '';
  z-index: -1;
}

/******************************
		  TEXT INPUT
******************************/
.form__text {
  border: 0px;
  border-bottom: 2px solid #c91f2c;
  width: 100%;
  color: #c91f2c;
}

.form__text--black {
  border-bottom: 2px solid #000000;
  color: #000000;
}

.form__text--fullborder {
  border: 2px solid #c91f2c;
  padding: 5px 10px;
}

.form__text__label {
  color: #c91f2c;
  margin-bottom: 0;
}

.form__text__label--black {
  color: #000000;
  font-weight: 900;
}

/******************************
 RADIO AND CHECKBOX : BUTTONS
******************************/
.form__radio--button,
.form__checkbox--button {
  opacity: 0;
  position: fixed;
  width: 0;
}

.form__radio__label--button,
.form__checkbox__label--button,
.form__button {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 16px;
  line-height: 1.6rem;
  background-color: #c91f2c;
  height: 45px;
  width: 140px;
  font-weight: 900;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  border-radius: 10px;
  margin: 5px;
  border: 0px;
}

.form__checkbox__label--button {
  width: 170px;
  height: 70px;
  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;
}

.form__radio__label--button:hover,
.form__checkbox__label--button:hover,
.form__button:hover,
.form__radio--button:focus + .form__radio__label--button,
.form__checkbox--button:focus + .form__checkbox__label--button,
.form__button:focus {
  background-color: #e76770;
  color: #ffffff;
  text-decoration: none;
}

.form__radio--button:checked + .form__radio__label--button,
.form__checkbox--button:checked + .form__checkbox__label--button {
  background-color: #440b0f;
}

.form__radio__label--disabled,
.form__checkbox__label--disabled {
  background-color: #979797;
}

.form__radio__label--disabled::before,
.form__checkbox__label--disabled::before {
  content: "Prochainement";
  font-size: 10px;
  font-size: 1rem;
  position: relative;
  top: 3px;
}

.form__radio__label--eng::before,
.form__checkbox__label--eng::before {
  content: "Upcoming";
}

.form__radio__label--disabled:hover,
.form__checkbox__label--disabled:hover,
.form__radio__label--disabled:focus,
.form__checkbox__label--disabled:focus {
  background-color: #979797;
}

.form__checkbox--alignright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 770px) {
  .form__checkbox--alignright {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.popup__comment {
  color: #c91f2c;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 900;
  height: 15px;
  height: 1.5rem;
}

.popup__comment--up {
  position: relative;
  top: -100px;
  margin: 20px 0px 0px 0px;
}

.form__verify {
  color: #c91f2c;
}

.form__verify__label {
  color: #c91f2c;
  font-weight: 900;
  width: 100%;
  margin: 0;
}

.popup__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

.popup__navigation--nomargin {
  margin-top: 0px;
}

/* ICONES CHECKBOXES */
#Cuisinier + .form__checkbox__label--button::before,
#Cook + .form__checkbox__label--button::before {
  content: url(../images/career/cuisinier.png);
  margin-right: 15px;
}

#Serveur + .form__checkbox__label--button::before,
#Waiter + .form__checkbox__label--button::before {
  content: url(../images/career/serveur.png);
  margin-right: 15px;
}

#Busboy + .form__checkbox__label--button::before {
  content: url(../images/career/busboy.png);
  margin-right: 15px;
}

#Plongeur + .form__checkbox__label--button::before,
#Dishwasher + .form__checkbox__label--button::before {
  content: url(../images/career/plongeur.png);
  margin-right: 15px;
}

/******************************
  RADIO AND CHECKBOX : BLACK
******************************/
/* Customize the label (the container) */
.form__radio__label--black {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.form__radio--black {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.form__radio__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.form__radio__label--black:hover input ~ .form__radio__checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.form__radio--black:checked ~ .form__radio__checkmark {
  background-color: #000000;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.form__radio__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.form__radio--black:checked ~ .form__radio__checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.form__radio__label--black .form__radio__checkmark:after {
  top: 5px;
  left: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: white;
}
/*# sourceMappingURL=main.css.map */

.close span{
  font-size:4rem;
}

@media (max-width: 1400px) {
  .margin-nope {
    margin-right: 0 !important;
  }
}