#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease; }
  #baguetteBox-overlay.visible {
    opacity: 1; }
  #baguetteBox-overlay .full-image {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center; }
    #baguetteBox-overlay .full-image figure {
      display: inline;
      margin: 0;
      height: 100%; }
    #baguetteBox-overlay .full-image img {
      display: inline-block;
      width: auto;
      height: auto;
      max-height: 100%;
      max-width: 100%;
      vertical-align: middle;
      -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
         -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
              box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }
    #baguetteBox-overlay .full-image figcaption {
      display: block;
      position: absolute;
      bottom: 0;
      width: 100%;
      text-align: center;
      line-height: 1.8;
      white-space: normal;
      color: #ccc;
      background-color: #000;
      background-color: rgba(0, 0, 0, 0.6);
      font-family: sans-serif; }
    #baguetteBox-overlay .full-image:before {
      content: "";
      display: inline-block;
      height: 50%;
      width: 1px;
      margin-right: -1px; }

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, transform .4s ease;
  transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease; }
  #baguetteBox-slider.bounce-from-right {
    -webkit-animation: bounceFromRight .4s ease-out;
            animation: bounceFromRight .4s ease-out; }
  #baguetteBox-slider.bounce-from-left {
    -webkit-animation: bounceFromLeft .4s ease-out;
            animation: bounceFromLeft .4s ease-out; }

@-webkit-keyframes bounceFromRight {
  0% {
    margin-left: 0; }
  50% {
    margin-left: -30px; }
  100% {
    margin-left: 0; } }

@keyframes bounceFromRight {
  0% {
    margin-left: 0; }
  50% {
    margin-left: -30px; }
  100% {
    margin-left: 0; } }

@-webkit-keyframes bounceFromLeft {
  0% {
    margin-left: 0; }
  50% {
    margin-left: 30px; }
  100% {
    margin-left: 0; } }

@keyframes bounceFromLeft {
  0% {
    margin-left: 0; }
  50% {
    margin-left: 30px; }
  100% {
    margin-left: 0; } }

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px; }

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-border-radius: 15%;
       border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease; }
  .baguetteBox-button:focus, .baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, 0.9); }
  .baguetteBox-button#next-button {
    right: 2%; }
  .baguetteBox-button#previous-button {
    left: 2%; }
  .baguetteBox-button#close-button {
    top: 20px;
    right: 2%;
    right: calc(2% + 6px);
    width: 30px;
    height: 30px; }
  .baguetteBox-button svg {
    position: absolute;
    left: 0;
    top: 0; }

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px; }

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
          animation: bounce 2s infinite ease-in-out; }

.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1); } }

/* Utilities */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.img-fluid {
  height: auto;
  max-width: 100%;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.clearfix {
  clear: both;
}
.flex-center {
  display: flex;
  align-items: center;
}
.overflow-hidden {
  overflow: hidden;
}
/* Colors */
.text-white {
  color: #fff;
}
.bg-green-light {
  background-color: #12a19a;
}
.bg-green-dark {
  background-color: #107570;
}
/* Styles */
body {
  color: #444;
  font-size: 17px;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
::-moz-selection {
  background: #12a19a;
  color: #fff;
}
::selection {
  background: #12a19a;
  color: #fff;
}
h1, h2, h3, h4 {
  font-family: 'Abril Fatface', cursive;
  font-size: 40px;
  letter-spacing: 1px;
}
h4 {
  font-size: 24px;
  text-align: center;
}
h1 {
  font-size: 50px;
  letter-spacing: 2px;
}
a {
  color: #12a19a;
  text-decoration: none;
}
.container-site {
  margin: 0 auto;
  max-width: 1600px;
}
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 997;
}
header .social-icons {
  margin-top: -52px;
  position: relative;
  z-index: 999;
}
header .social-icons img {
  width: 30px;
}
header .widemenu {
  background-color: #42403f;
  margin-top: 50px;
  padding: 10px 0;
}
header .widemenu a, header .widemenu button {
  background: none;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 24px;
  text-decoration: none;
  transition: 0.3s;
}
header .widemenu a:hover, header .widemenu .active, header .widemenu button:hover {
  border-bottom: 2px solid white;
}
header .container-nav {
  display: flex;
  justify-content: space-between;
}
header .links {
  display: flex;
  flex-grow: 1;
  padding: 5px 0;
}
header .links-left div {
  text-align: right;
  width: 100%;
}
header .links-left a, header .links-left button {
  margin-right: 30px;
}
header .links-right a, header .links-right button {
  margin-left: 30px;
}
header .logo {
  flex: none;
  height: 145px;
  margin: -60px 20px;
  width: 348px;
}
header .logo a {
  border: 0 !important;
}
/* Mobile menu */
#menuToggle {
  display: none;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 998;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#menuToggle a {
  text-decoration: none;
  color: #232323;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#menuToggle a:hover {
  color: #4f7794;
}
#menuToggle input {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -7px;
  left: -5px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 999;
  -webkit-touch-callout: none;
}
#menuToggle label {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}
#menuToggle label span {
  display: none;
}
#menuToggle label div {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 6px;
  position: relative;
  background: #000;
  border-radius: 3px;
  z-index: 998;
  -webkit-transform-origin: 4px 0px;
  -ms-transform-origin: 4px 0px;
  transform-origin: 4px 0px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#menuToggle label div:first-child {
  -webkit-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
#menuToggle label div:nth-child(2) {
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
#menuToggle input:checked + label div {
  background: #232323;
}
#menuToggle input:checked ~ ul {
  top: -17px;
}
#menu {
  position: fixed;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  background: #ededed;
  list-style-type: none;
  top: -900px;
  -webkit-transition: top 0.3s ease;
  -o-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
#menu li {
  padding: 5px 0;
}
/* Main style */
main {
  position: relative;
  top: 110px;
}
.container-site.subpage {
  margin-bottom: 170px;
  max-width: 1200px;
  padding-top: 70px;
}
.subpage h1 {
  font-size: 35px;
}
.img-animate {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.img-animate:hover {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.swiper-button-prev, .swiper-button-next {
  color: #fff !important;
}
/* Home page */
.hero {
  background-repeat: no-repeat;
  height: 823px;
  margin: -20px 0 -40px 0;
  padding: 20px;
}
.hero p {
  font-family: 'Roboto', sans-serif;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.hero h1 {
  padding-top: 100px;
}
.home-boxes .col-sm-6 {
  overflow: hidden;
}
.home-box-green {
  background-color: #107570;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 160px;
}
.home-box-green .button {
  margin-bottom: 50px;
}
.home-box-white {
  margin-top: 30px;
}
.home-box-white div {
  line-height: 26px;
  /*padding: 160px;*/
}
.home-box h2 {
  margin-top: 0;
}
.home-box p {
  line-height: 28px;
}
.home-image, .home-box-white img {
  background-size: cover;
  background-position: center center;
  height: 520px;
}
.home-box-game {
  background: #556447 url(../themes/gasztrojarat/assets/images/home-game.jpg) right top no-repeat;
  color: #fff;
  height: 647px;
  margin: 80px 0;
  padding: 80px 0 0 180px;
}
.home-box-game p {
  width: 300px;
}
.home-box-game a {
  display: block;
  margin-bottom: 30px;
  text-align: center;
  width: 120px;
}
.home-box-recipe {
  background: url(../themes/gasztrojarat/assets/images/send-recipe.jpg) left top no-repeat;
  height: 491px;
  margin: 80px 0;
  padding-right: 160px;
}
.home-box-recipe div {
  line-height: 30px;
  margin-left: 640px;
  text-align: right;
}
.home-box-recipe p {
  background-color: #fff;
}
.home-box-bus {
  background: url(../themes/gasztrojarat/assets/images/home-gasztrobusz.jpg) left top no-repeat;
  color: #fff;
  height: 852px;
  margin: 80px 0 40px 0;
  padding: 140px 240px 40px 240px;
  text-align: center;
}
.home-box-bus p {
  line-height: 30px;
  margin: 40px;
  opacity: 0.8;
}
.home-box-newsletter {
  background: #536572 url(../themes/gasztrojarat/assets/images/newsletter.png) 200px 40px no-repeat;
  color: #fff;
  height: 330px;
  margin-bottom: 160px;
  padding-right: 160px;
  text-align: right;
}
.home-box-newsletter h2 {
  margin: 80px 0 0 0;
}
.home-box-newsletter .form-newsletter {
  float: right;
  width: 100%;
}
.form-newsletter input {
  border: 0;
  font-size: 14px;
  max-width: 300px;
  margin-right: 40px;
  padding: 24px 40px;
  width: 100%;
}
.form-newsletter input::placeholder {
  color: #d7d7d5;
}
.lead {
  border-top: 2px solid #166b67;
  border-bottom: 2px solid #166b67;
  color: #166b67;
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  padding: 40px 0;
}
.button {
  background-color: #12a19a;
  border: 2px solid rgba(255, 255, 255, 0);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  margin-top: 40px;
  padding: 20px 60px;
  text-decoration: none;
  transition: 0.3s;
}
.button:hover {
  background-color: #107570;
  border: 2px solid #fff;
}
.button-white {
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  padding: 20px 60px;
  text-decoration: none;
  transition: 0.3s;
}
.button-white:hover {
  border-color: #12a19a;
}
.home-box-stations {
  margin-bottom: 115px;
}
#map {
  height: 600px;
  width: 100%;
}
.cover {
  aspect-ratio: 1.333;
  display: block;
  overflow: hidden;
}
.date {
  border: 2px solid #12a19a;
  display: block;
  font-size: 18px;
  height: 90px;
  margin-bottom: 20px;
  padding: 10px 15px;
  text-align: center;
  transition: 0.3s;
}
.date:hover {
  color: #536572;
  border-color: #536572;
}
/* Subpage */
.box {
  background-color: #fafafa;
  margin: 10px;
  padding: 10px 25px;
}
.post {
  background-color: #fafafa;
  margin: 20px 0;
  -webkit-box-shadow: 3px 3px 7px -3px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 7px -3px rgba(0, 0, 0, 0.3);
}
.post img {
  margin: 0 0 -5px -12px;
}
.post h3 {
  font-size: 21px;
  margin-bottom: 0;
}
.downloads {
  display: flex;
}
.download {
  align-items: center;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  margin-right: 20px;
  padding: 10px 20px;
  transition: 0.3s;
  -webkit-box-shadow: 3px 3px 7px -3px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 7px -3px rgba(0, 0, 0, 0.3);
}
.download:hover {
  border-color: #c8c8c8;
}
.download a {
  display: block;
}
.download a > div {
  display: flex;
  align-items: center;
}
.download img {
  max-width: 100px;
}
.download p {
  font-size: 20px;
  font-weight: bold;
  margin-left: 20px;
}
.gallery-wide a div {
  background-position: center center;
  background-repeat: no-repeat;
  height: 260px;
  margin: 20px 0;
  width: 100%;
}
/*  Receptek page  */
.recept {
  margin-bottom: 45px;
  position: relative;
}
.recept .card {
  background-color: #f9f9f9;
  border: 1px solid #eeeded;
  height: 100%;
  margin-bottom: 50px;
  padding: 10px;
}
.recept .button {
  bottom: 0;
  font-size: 14px;
  margin-top: 20px;
  padding: 10px 30px;
  position: absolute;
}
.recept-image {
  background-size: cover;
  background-position: center center;
  height: 150px;
  width: 150px;
}
.card .recept-image {
  background-size: cover;
  background-position: center center;
  height: 150px;
  margin: 0 auto 30px auto;
  width: 100%;
}
.recept-content h2 {
  font-size: 24px;
  margin: 0 0 -5px 0;
}
.recept-jobb h1 {
  font-size: 32px;
}
.recept-jobb h2 {
  font-size: 24px;
}
/* Form */
.form form {
  padding-right: 30px;
}
.form label {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}
.form .form-control {
  border: 1px solid #bebebe;
  margin-bottom: 20px;
  padding: 10px 15px;
  width: 100%;
}
.form button {
  margin-top: 10px;
  padding: 15px 30px;
}
.form .greyform {
  background: #fafafa;
  padding: 30px;
}
.form .greyform .form-control, .form .greyform textarea {
  border: none;
}
.form .greyform .space {
  height: 0px;
}
.form .greyform input {
  padding: 12px 15px;
}
.form .greyform select {
  border: 0;
  padding: 11px 15px;
  width: 100%;
}
.form .greyform .choices__inner {
  padding: 8px 0 0 12px !important;
}
.form .greyform .choices__input {
  background: none;
  padding: 0;
}
/* Footer */
footer {
  background-color: #2a2b2c;
  padding: 40px;
}
footer > div {
  margin: 0 auto;
  max-width: 1600px;
  text-align: center;
  width: 100%;
}
footer .row {
  margin-top: 40px;
  text-align: left;
}
footer a {
  color: #656667;
  transition: 0.3s;
}
footer a:hover {
  color: #f0f0f0;
}
footer .social-icons {
  text-align: right;
}
footer .social-icons a {
  display: inline;
}
footer .game-links {
  margin-left: 50px;
}
footer .game-links span {
  margin-top: -20px;
}
footer .game-links img {
  filter: grayscale(100%);
  margin-right: 15px;
  width: 36px;
  transition: 0.3s;
}
footer .game-links a:hover img {
  filter: grayscale(0%);
}
footer img {
  margin-bottom: 20px;
}
footer p a {
  color: #565656;
  transition: 0.3s;
}
footer p a:hover {
  color: #12a19a;
  text-decoration: none;
}
footer .links {
  padding-right: 120px;
}
footer .links a {
  color: #e4e4e4;
  border-bottom: 1px solid #545454;
  display: block;
  padding: 15px 20px;
  transition: 0.3s;
}
footer .links a:first-child {
  border-top: 1px solid #2a2b2c;
}
footer .links a:hover {
  color: #12a19a;
  text-decoration: none;
}

/* Responsive */

@media only screen and (max-width: 1600px) {
  .home-box-stations,
  .home-boxes {
    padding: 0 20px !important;
  }
}

@media only screen and (max-width: 1439px) {
  .home-box-green {
    padding: 0 100px;
  }

  .home-box-green .button {
    margin-bottom: 0;
  }

  .home-box-bus {
    padding: 140px 160px 40px 160px;
  }
}

@media only screen and (max-width: 1299px) {
  .home-box-recipe {
    margin: 60px 0;
    padding-right: 120px;
  }

  .home-box-recipe div {
    margin-left: 580px;
  }

  .home-box-newsletter {
    background-position-x: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .home-box-recipe {
    margin: 0;
    padding-right: 80px;
  }

  .home-box-recipe div {
    margin-left: 560px;
  }

  .home-box-recipe h3 {
    font-size: 35px;
  }

  .home-box-bus {
    padding: 100px 100px 40px 100px;
  }

  .home-box-newsletter {
    background-position-x: 60px;
  }

  .subpage h1,
  .subpage h2,
  .subpage h3,
  .subpage p {
      padding: 0 40px;
  }
}

@media only screen and (max-width: 1079px) {
  .home-box-green {
    padding: 0 60px;
  }

  .home-box-green h2 {
    margin-top: -10px;
  }

  .home-box-white div {
    padding: 0 100px;
  }

  .home-box-recipe div {
    margin-left: 500px;
  }

  .home-box-recipe h3 {
    font-size: 32px;
    margin-top: -20px;
  }

  .home-box-newsletter {
    background: #536572;
    height: auto;
  }
}

@media only screen and (max-width: 929px) {
  header nav {
    margin-top: 65px;
  }

  .widemenu .float-right,
  header .links {
    display: none;
  }

  #menuToggle {
    display: block;
  }

  header .social-icons {
    margin-right: 70px;
  }

  .hero {
    height: 600px;
  }

  .home-box-green {
    padding: 0 60px;
  }

  .home-box-green h2 {
    font-size: 32px;
  }

  .home-box-green .button {
    margin-top: 20px;
  }

  .home-box-white div {
    line-height: 24px;
    padding: 0 60px;
  }

  .home-box-white .button {
    margin-top: 10px;
  }

  .home-box-recipe {
    background: none;
    height: auto;
    padding-right: 20px;
  }

  .home-box-recipe div {
    margin-left: 20px;
  }

  .home-box-recipe h3 {
    font-size: 30px;
  }

  .home-box-recipe .button {
    margin: 0 0 -60px 0;
  }

  .home-box-bus {
    padding: 60px 60px 40px 60px;
  }

  .home-box-newsletter {
    padding-bottom: 60px;
  }

  .home-box-newsletter h2 {
    font-size: 35px;
    margin-bottom: 30px;
  }

  .form-newsletter input {
    max-width: 100%;
    margin: 0 0 0 35px;
  }

  .form-newsletter .button {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 799px) {
  .hero h1 {
    font-size: 30px;
    margin-top: 50px;
  }

  .hero {
    height: 400px;
  }

  .home-box-green {
    padding: 0 40px;
  }

  .home-box-green h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: -10px;
  }

  .home-box-green .button {
    margin-top: 0;
    padding: 10px 30px;
  }

  .home-box-white h2 {
    font-size: 32px;
  }

  .home-box-white .button {
    padding: 15px 45px;
  }

  .home-box-bus {
    padding: 60px 20px 40px 20px;
  }
}

@media only screen and (max-width: 699px) {
  .home-box-white div {
    padding: 0 20px;
  }

  .home-box-bus {
    padding: 40px 20px 40px 20px;
  }

  .home-box-bus .button {
    margin-top: -20px;
  }

  #map {
    height: 500px;
  }
}

@media only screen and (max-width: 575px) {
  .home-box-green {
    padding-bottom: 30px;
  }

  .home-box-green h2 {
    margin-top: 30px;
  }

  .home-box-white h2 {
    font-size: 28px;
  }

  .home-box-white .button {
    padding: 10px 30px;
  }

  .home-box-bus {
    background: #42403f;
    height: auto;
    padding-top: 0;
  }

  .home-box-newsletter h3 {
    font-size: 28px;
  }

  #map {
    height: 400px;
  }

  .subpage h1,
  .subpage h2,
  .subpage h3,
  .subpage p {
      padding: 0 20px;
  }

  footer .game-links {
    margin-top: 20px;
  }

  footer .social-icons {
    margin-top: 30px;
    text-align: center;
  }

  footer .social-icons a {
    float: none;
  }
}

@media only screen and (max-width: 499px) {
  body {
    font-size: 16px;
  }

  header .logo {
    margin-left: -60px;
    position: relative;
    top: -20px;
  }

  .hero h1 {
    font-size: 20px;
    margin-top: 30px;
  }

  .home-box-green {
    padding: 0 20px 30px 20px;
  }

  .home-box-game {
    height: 500px;
    padding: 80px 0 0 80px;
  }
}

@media only screen and (max-width: 399px) {
  .home-box-game {
    height: 550px;
    padding: 50px 0 0 60px;
  }
}

#cookiefix {
    display: none;
    width: 96%;
    position: fixed;
    z-index: 1500;
    right: 0;
    bottom: 0;
    max-width: 420px;
    margin: 2% 2% 2% 2%;
    padding: 20px 20px 20px 20px;
    background-color: #e9e7e8;
    color: #333;
    border: 1px solid #ccc;
}

#cookiefix .text a {
    text-decoration: underline;
}

#cookiefix .text a:hover {
    text-decoration: underline;
}

#elfogadom-a-sutiket,
#sutik-kezelese {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
    line-height: 22px;
    margin-top: 20px;
    padding: 15px 40px 15px 40px;
    cursor: pointer;
    border: 2px solid rgb(18, 161, 154) !important;
    background-color: rgb(18, 161, 154) !important;
}

#elfogadom-a-sutiket {
    color: rgba(255, 255, 255, 0.84) !important;
}

#elfogadom-a-sutiket:hover {
    background-color: rgb(17, 142, 135) !important;
    color: rgba(255, 255, 255, 1.0) !important;
}

#sutik-kezelese {
    color: rgb(18, 161, 154);
    background-color: rgba(255, 255, 255, 0.0) !important;
}

#sutik-kezelese:hover {
    border: 2px solid rgb(17, 142, 135) !important;
    background-color: rgb(17, 142, 135) !important;
    color: rgba(255, 255, 255, 1.0) !important;
}

input[type="checkbox"][readonly] {
    pointer-events: none;
}

@media only screen and (max-width: 480px) {
    #cookiefix {
        left: 0;
        width: 85%;
    }
}