.red {
  background-color: #E3583F;
}
.yellow {
  background-color: #F4A93B;
}
.blue {
  background-color: #24B5E8;
}
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
body {
  padding: 0;
  margin: 0;
  font-family: 'Open Sans';
  font-weight: 400;
  color: #6f360d;
}
.contentSize {
  max-width: 1150px;
  width: 90%;
  margin: auto;
}
.clra {
  clear: both;
}
.clra:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.table {
  display: table;
  width: 100%;
  height: 100%;
}
.table .tableCell {
  display: table-cell;
  vertical-align: middle;
}
.btnContainer {
  text-align: center;
}
.btnContainer .btn {
  padding: 16px 70px;
  border-radius: 3px;
  background-color: #F4A93B;
  color: white;
  font-weight: 700;
  font-style: italic;
  display: inline-block;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 100%;
}
.btnContainer .btn:hover {
  background-color: white;
  color: #F4A93B;
  border: 2px solid #F4A93B;
}
.btnContainer .btn.borderBtn {
  background-color: transparent;
  border: 2px solid #6f360d;
  color: #6f360d;
}
.btnContainer .btn.borderBtn:hover {
  background-color: #6f360d;
  color: white;
}
.btnContainer .btn.lightblue {
  background-color: #24B5E8;
}
.btnContainer .btn.lightblue:hover {
  background-color: white;
  color: #24B5E8;
  border: 2px solid #24B5E8;
}
.btnContainer .btn.big {
  font-size: 23px;
  width: 66%;
}
.btnContainer .btn.disable {
  background-color: #a7a8a9;
  cursor: default;
}
.btnContainer .btn.disable:hover {
  border: 2px solid transparent;
  background-color: #a7a8a9;
  color: white;
}
.container,
.container-fluid {
  padding: 0;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="phone"],
textarea {
  border: 2px solid #6f360d;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 400;
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 4px;
  display: block;
  color: #6f360d;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input:focus,
textarea:focus {
  outline: none;
}
input[type="submit"] {
  -webkit-appearance: none;
}
::placeholder {
  color: #6f360d;
  opacity: .6;
  font-style: italic;
  font-weight: 400;
}
:-ms-input-placeholder {
  color: #6f360d;
  font-style: italic;
  font-weight: 400;
  opacity: .6;
}
::-ms-input-placeholder {
  color: #6f360d;
  font-style: italic;
  font-weight: 400;
  opacity: .6;
}
select {
  border: 2px solid #6f360d;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 400;
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 4px;
  display: block;
  color: #6f360d;
  background: #FFFFFF;
}
.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 22px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #6f360d;
  font-size: 17px;
}
.checkboxContainer input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkboxContainer input[type="checkbox"]:checked ~ .checkmark {
  background: #6f360d;
  border: 1px solid transparent;
}
.checkboxContainer input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
}
.checkboxContainer .checkmark {
  position: absolute;
  top: -4px;
  left: 0;
  height: 35px;
  width: 35px;
  border: 2px solid #6f360d;
  background-color: transparent;
  border-radius: 3px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.checkboxContainer .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 0;
  width: 12px;
  height: 25px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.radiobuttonContainer {
  display: inline-block;
  position: relative;
  padding: 20px 0 0 25px;
  margin-bottom: 22px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #6f360d;
  font-size: 17px;
}
.radiobuttonContainer input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radiobuttonContainer input[type="radio"]:checked ~ .checkmark:after {
  display: block;
  background: #6f360d;
  border-radius: 50%;
}
.radiobuttonContainer .checkmark {
  position: absolute;
  top: 24px;
  left: 0;
  height: 15px;
  width: 15px;
  border: 2px solid #6f360d;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.radiobuttonContainer .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 2px;
  top: 2px;
  width: 7px;
  height: 7px;
}
@keyframes play {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -9150px 0px;
  }
}
@keyframes play_48 {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -7200px 0px;
  }
}
header {
  height: 90px;
  background-color: #081930;
  box-shadow: 0 2px 10px 4px #737373;
  position: fixed;
  width: 100%;
  z-index: 9;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
header .contentSize {
  height: 100%;
}
header .menuContainer {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
}
header .menuContainer .left {
  display: table-cell;
  vertical-align: middle;
}
header .menuContainer .left ul li:first-child a {
  padding-left: 0;
}
header .menuContainer .right {
  text-align: right;
  display: table-cell;
  vertical-align: middle;
}
header .menuContainer .right >ul li:last-child a {
  border-left: 1px solid white;
  padding-right: 0;
}
header .menuContainer .birdLogo {
  animation-duration: 5000ms;
  animation-timing-function: steps(150);
  animation-iteration-count: infinite;
  animation-name: play;
  background-image: url("/images/animation/bird_1.svg");
  background-repeat: no-repeat;
  width: 61px;
  height: 61px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
header .menuContainer ul {
  margin: 0;
  padding: 0;
  display: inline-block;
}
header .menuContainer ul li {
  display: inline-block;
}
header .menuContainer ul li a {
  color: white;
  font-size: 17px;
  padding: 0 13px;
}
header .menuContainer ul li a img {
  vertical-align: middle;
}
header .menuContainer ul li#egg {
  vertical-align: top;
}
header .menuContainer ul li#egg img,
header .menuContainer ul li#egg span {
  vertical-align: middle;
  display: inline-block;
}
header .menuContainer ul li#egg span {
  color: #FFFFFF;
  margin-left: 3px;
}
header .menuContainer #eggMobile {
  display: none;
}
header .menuContainer .fbContainer {
  display: inline-block;
}
header .menuContainer .fb-like {
  margin-right: 10px;
}
.fixHeader {
  height: 55px;
}
.fixHeader .birdLogo {
  background-image: url("/images/animation/bird_1_48.svg") !important;
  animation-name: play_48 !important;
  width: 48px !important;
  height: 48px !important;
}
.fixHeader .outer-menu {
  top: 0;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.45);
  overflow: hidden;
  z-index: 100;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.modal {
  background: #FFFFFF;
  background-repeat: no-repeat;
  padding: 55px 30px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  max-width: 680px;
  width: 90%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: visibility .2s, opacity .2s, transform .2s;
  -moz-transition: visibility .2s, opacity .2s, transform .2s;
  transition: visibility .2s, opacity .2s, transform .2s;
}
.modal.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility .5s, opacity .5s, transform .5s;
  -moz-transition: visibility .5s, opacity .5s, transform .5s;
  transition: visibility .5s, opacity .5s, transform .5s;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.modal .close {
  margin-top: 30px;
}
.modal h1 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 0;
  color: #6f360d;
}
.modal h3 {
  font-size: 22px;
  font-weight: 600;
  color: #6f360d;
}
.modal .btnContainer .btn {
  margin-left: 10px;
  margin-right: 10px;
}
#buyingModal {
  background-image: url("/images/bird_4.svg");
  background-repeat: no-repeat;
  background-position: left 20px bottom 20px;
  background-size: 70px;
}
#shopModal h3 {
  font-size: 18px;
}
#shopModal h3 a {
  text-decoration: underline;
}
#questionModal h3 {
  font-weight: 400;
}
#premiumGameModal {
  padding: 25px 30px;
}
#premiumGameModal .box {
  border: 2px dashed #E8DCCE;
  padding: 5px;
  height: 100%;
  position: relative;
  padding-bottom: 80px;
}
#premiumGameModal .box .text {
  height: 50px;
  font-weight: 600;
}
#premiumGameModal .box span {
  font-size: 12px;
  display: block;
}
#premiumGameModal .btnContainer {
  position: absolute;
  bottom: 5px;
  width: calc(100% - 10px);
}
#premiumGameModal .btnContainer .btn {
  width: 100%;
  padding: 16px 0;
  margin-left: 0;
  margin-top: 20px;
}
#sponsorModal {
  padding-top: 30px;
}
#sponsorModal .logo {
  max-width: 100%;
  width: 250px;
}
#sponsorModal .question {
  font-size: 30px;
  margin: 20px auto;
  font-family: 'Playfair Display';
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  max-width: 90%;
  text-align: center;
}
#sponsorModal .felvezeto {
  font-family: 'Playfair Display';
  color: #333333;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: justify;
}
#sponsorModal .jogi {
  font-family: 'Playfair Display';
  font-weight: 700;
  color: #333333;
}
#sponsorModal .jogi .checkboxContainer {
  color: #333333;
  font-size: 12px;
  text-align: justify;
}
#sponsorModal .jogi .checkboxContainer a {
  text-decoration: underline;
}
#sponsorModal .jogi .checkboxContainer .checkmark {
  border-color: #333333;
  top: 50%;
  margin-top: -17px;
}
#sponsorModal .jogi .checkboxContainer input[type="checkbox"]:checked ~ .checkmark {
  background: #333333;
}
#sponsorModal .msg {
  color: #E3583F;
  margin-bottom: 10px;
}
#sponsorModal .btnContainer .btn {
  color: #333333;
  border-color: #333333;
  border-radius: 0;
  border-width: 1px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  margin-bottom: 10px;
}
#sponsorModal .btnContainer .btn:hover {
  background-color: #333333;
  color: #FFFFFF;
}
footer {
  background-color: #081930;
  position: relative;
}
footer #footerImg {
  position: absolute;
  top: -196px;
}
footer ul {
  margin: 0;
  padding: 0;
  padding-top: 32px;
  float: right;
}
footer ul li {
  display: inline-block;
  vertical-align: middle;
}
footer ul li a {
  color: white;
  font-size: 19px;
  font-weight: 600;
  padding: 0 20px;
}
footer ul li a span {
  font-size: 13px;
  display: inline-block;
  vertical-align: bottom;
}
footer ul li a img {
  display: inline-block;
  vertical-align: middle;
}
footer ul:first-child {
  float: left;
  padding-top: 20px;
}
footer ul:first-child li:first-child a {
  padding: 0;
}
footer .barion {
  color: #FFFFFF;
  padding: 30px 0;
  text-align: center;
}
footer .barion span {
  font-size: 13px;
}
footer .barion span a {
  font-weight: 600;
}
footer .barion img {
  margin-top: 10px;
  max-width: 100%;
}
.pageContent {
  overflow: hidden;
  padding-top: 90px;
  min-height: 900px;
  background-color: #E8DCCE;
}
.frameContent {
  overflow: hidden;
  padding-top: 0px;
  min-height: 900px;
  background-color: #F7F7F7;
}
section .title {
  text-align: center;
  margin-bottom: 50px;
}
section .title h1 {
  display: inline-block;
  color: #6f360d;
  font-size: 25px;
  position: relative;
  padding: 0 75px;
  font-weight: 800;
}
section .title h1:before,
section .title h1:after {
  position: absolute;
  line-height: 32px;
  content: " ";
  font-size: 42px;
  display: table-cell;
  left: 0;
  top: 50%;
  border-bottom: 2px solid #6f360d;
  width: 60px;
}
section .title h1:after {
  left: auto;
  right: 0;
}
section .title span {
  font-size: 16px;
  font-style: italic;
  color: #6f360d;
  display: block;
  text-align: center;
  font-weight: 400;
}
section .subTitle {
  font-size: 21px;
  font-weight: 700;
  color: #6f360d;
  margin-bottom: 15px;
}
section .text {
  font-size: 16px;
  font-weight: 400;
  color: #6f360d;
  margin-bottom: 50px;
}
@keyframes shadow-pulse {
  0% {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
  }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.priseContainer {
  background-color: #E8DCCE;
  padding: 60px 0 190px;
}
.priseContainer .contentSize {
  position: relative;
}
.priseContainer .leaf {
  position: absolute;
  z-index: 5;
}
.priseContainer .leaf.leaf_1 {
  top: -100px;
  left: -20px;
}
.priseContainer .leaf.leaf_2 {
  top: -70px;
  left: 50px;
}
.priseContainer .leaf.leaf_3 {
  left: -170px;
  top: -140px;
}
.whatIsThisPageContainer {
  padding: 60px 0 100px;
  position: relative;
  background-color: white;
}
.whatIsThisPageContainer .whatisthispage {
  position: absolute;
  top: -80px;
  left: 0;
}
.whatIsThisPageContainer .textBox .title {
  color: #6f360d;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 30px;
}
.whatIsThisPageContainer .textBox .text {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
}
.whatIsThisPageContainer .soon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  color: #ef5350;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  -webkit-animation: scale-up-center 2s cubic-bezier(0.390,0.575,0.565,1.000) infinite alternate both;
  -o-animation: scale-up-center 2s cubic-bezier(0.390,0.575,0.565,1.000) infinite alternate both;
  animation: scale-up-center 2s cubic-bezier(0.390,0.575,0.565,1.000) infinite alternate both;
  transform-origin: 0% 50%;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5) translate(-50%,-50%);
    transform: scale(0.5) translate(-50%,-50%);
  }
  100% {
    -webkit-transform: scale(1) translate(-50%,-50%);
    transform: scale(1) translate(-50%,-50%);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5) translate(-50%,-50%);
    transform: scale(0.5) translate(-50%,-50%);
  }
  100% {
    -webkit-transform: scale(1) translate(-50%,-50%);
    transform: scale(1) translate(-50%,-50%);
  }
}
.gameContainer {
  padding: 60px 0 190px;
  background-color: white;
}
.gameContainer .contentSize {
  position: relative;
}
.gameContainer .borderBtn {
  margin-top: 70px;
}
.gameContainer .leaf {
  position: absolute;
  z-index: 5;
}
.gameContainer .leaf.leaf_1 {
  bottom: -210px;
  left: -20px;
}
.gameContainer .leaf.leaf_2 {
  bottom: -250px;
  left: 50px;
}
.futurePriseContainer {
  background-color: #E8DCCE;
  position: relative;
  padding: 60px 0 210px;
}
.futurePriseContainer .left {
  width: 60%;
}
.futurePriseContainer #futurePriseImg {
  position: absolute;
  right: 0;
  bottom: 180px;
  max-width: 40%;
  z-index: 5;
}
.futurePriseContainer .nut {
  position: absolute;
}
.futurePriseContainer .nut#nut_1 {
  right: 22%;
  bottom: 260px;
  z-index: 4;
  width: 4%;
  max-width: 48px;
}
.futurePriseContainer .nut#nut_2 {
  right: 10%;
  z-index: 4;
  bottom: 200px;
  width: 5%;
  max-width: 60px;
}
.toplistContainer {
  padding: 60px 0 190px;
  background-color: white;
}
.toplistContainer #topList {
  text-align: center;
  padding-top: 160px;
  background-image: url(/images/podium_left.svg), url(/images/podium_right.svg);
  background-position: calc(50% - 160px) calc(50% - 50px), calc(50% + 150px) calc(50% - 20px);
  background-repeat: no-repeat;
}
.toplistContainer #topList .leftHands {
  margin-right: 7%;
}
.toplistContainer #topList .rightHands {
  margin-left: 7%;
}
.toplistContainer #topList #podiumContainer {
  display: inline-block;
  position: relative;
}
.toplistContainer #topList #podiumContainer #podium {
  display: inline-block;
  max-width: 100%;
}
.toplistContainer #topList #podiumContainer .name {
  font-size: 23px;
  font-weight: 700;
  font-style: italic;
  color: #6f360d;
}
.toplistContainer #topList #podiumContainer .point {
  font-size: 23px;
  font-weight: 400;
  color: #6f360d;
}
.toplistContainer #topList #podiumContainer .profileImg {
  border-radius: 50%;
}
.toplistContainer #topList #podiumContainer #topListFirst {
  position: absolute;
  width: 130px;
  top: -170px;
  left: 133px;
}
.toplistContainer #topList #podiumContainer #topListSecond {
  position: absolute;
  width: 130px;
  top: -90px;
  left: 3px;
}
.toplistContainer #topList #podiumContainer #topListThird {
  position: absolute;
  width: 130px;
  top: -65px;
  left: 253px;
}
.toplistContainer .prise {
  text-align: center;
  position: relative;
  top: -30px;
  margin-bottom: 100px;
  background-image: url(/images/prisegame.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.toplistContainer .prise #priseContainer {
  display: inline-block;
}
.toplistContainer .prise img {
  max-width: 150px;
  width: 100%;
}
.toplistContainer .prise .name {
  font-size: 21px;
  font-weight: 700;
  color: #6f360d;
  margin-bottom: 5px;
}
.toplistContainer .prise .date {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #6f360d;
}
.toplistContainer .prise .game {
  font-size: 16px;
  font-weight: 400;
  color: #6f360d;
}
.toplistContainer .lastTopList {
  text-align: center;
  margin-bottom: 100px;
  background-image: url(/images/lasttoplist_left.svg), url(/images/lasttoplist_right.svg);
  background-position: left center, right center;
  background-repeat: no-repeat;
  font-size: 0;
}
.inviteContainer {
  background-color: #E8DCCE;
  padding: 60px 0 110px;
}
.inviteContainer .contentSize {
  position: relative;
}
.inviteContainer .left {
  width: 60%;
}
.inviteContainer #inviteLeaf {
  position: absolute;
  top: -100px;
  right: 0;
}
.inviteContainer #mailBox {
  position: absolute;
  bottom: -150px;
  right: 0;
  z-index: 4;
}
.inviteContainer #mail {
  position: absolute;
  bottom: 190px;
  right: 180px;
  z-index: 5;
}
.favouriteContainer .favourite {
  position: relative;
}
.favouriteContainer .favourite img {
  position: absolute;
  left: calc((100% - 680px) /2 + 600px );
  top: 30px;
}
.favouriteContainer .favourite .favouriteBox {
  width: 100%;
  max-width: 620px;
  background-color: white;
  margin: auto;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 30px 30px 50px;
  margin-bottom: 200px;
  position: relative;
  z-index: 2;
}
.favouriteContainer .favourite .favouriteBox .title {
  margin-bottom: 0;
}
.favouriteContainer .favourite .favouriteBox h1 {
  padding: 0;
  font-weight: 800;
  color: #79DDDD;
}
.favouriteContainer .favourite .favouriteBox h1:before,
.favouriteContainer .favourite .favouriteBox h1:after {
  display: none;
}
.favouriteContainer .favourite .favouriteBox .text {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: #6f360d;
  text-align: center;
}
.favouriteContainer .favourite .favouriteBox input[type="text"] {
  max-width: 350px;
  width: 100%;
}
.favouriteContainer .favourite .favouriteBox .btn {
  font-size: 22px;
  margin-top: 20px;
}
.priseBox {
  background-color: white;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  display: block;
}
.priseBox .badge {
  position: absolute;
  z-index: 5;
  top: -5px;
  left: 7%;
  width: 86%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
  color: white;
  text-align: center;
  padding: 3px;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}
.priseBox .badge.red {
  background-color: #E3583F;
}
.priseBox .badge.yellow {
  background-color: #F4A93B;
}
.priseBox .badge.green {
  background-color: #B8C654;
}
.priseBox .badge.blue {
  background-color: #24B5E8;
}
.priseBox .top {
  padding: 30px 30px 0;
  text-align: center;
  border: 6px solid transparent;
}
.priseBox .top img {
  display: inline-block;
  max-width: 100%;
}
.priseBox .top .priseTitle {
  font-size: 21px;
  font-weight: 700;
  color: #6f360d;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 60px;
}
.priseBox .top .gameTitle {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: #6f360d;
  margin-top: 8px;
  margin-bottom: 15px;
}
.priseBox .top .price {
  text-align: center;
  min-height: 54px;
  font-size: 21px;
  font-weight: 700;
}
.priseBox .bottom {
  height: 50px;
  color: white;
  background-color: #24B5E8;
}
.priseBox .bottom .btn {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  cursor: pointer;
}
.priseBox .bottom.inactive {
  background-color: #CED0D0;
}
.priseBox:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.priseBox.prev,
.priseBox.next {
  padding-bottom: 50px;
  height: calc(100% - 40px);
}
.priseBox.prev .top .priseTitle,
.priseBox.next .top .priseTitle {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}
.priseBox.premium .top {
  border: 6px solid #F4A93B;
  position: relative;
  overflow: hidden;
}
.priseBox.premium .top .circle {
  width: 14px;
  height: 14px;
  position: absolute;
  background-color: #F4A93B;
  border-radius: 50%;
}
.priseBox.premium .top .circle:nth-child(1) {
  top: -7px;
  left: -7px;
}
.priseBox.premium .top .circle:nth-child(2) {
  top: -7px;
  right: -7px;
}
.priseBox.premium .top .circle:nth-child(3) {
  bottom: -7px;
  left: -7px;
}
.priseBox.premium .top .circle:nth-child(4) {
  bottom: -7px;
  right: -7px;
}
.priseBox.premium .top .star,
.priseBox.premium .top .crown {
  width: 20px;
  position: absolute;
  z-index: 5;
}
.priseBox.premium .top .star:nth-child(1),
.priseBox.premium .top .crown:nth-child(1) {
  left: 10px;
  bottom: 13px;
}
.priseBox.premium .top .star:nth-child(2),
.priseBox.premium .top .crown:nth-child(2) {
  right: 10px;
  bottom: 13px;
}
.priseBox.premium .bottom .btn {
  background-color: #F4A93B;
}
.priseBox.eggs .top {
  position: relative;
  overflow: hidden;
}
.priseBox.eggs .top .price span {
  font-size: 21px;
  font-weight: 700;
  display: inline-block;
  margin-left: 10px;
  vertical-align: top;
}
.priseBox.eggs .top .price img {
  display: inline-block;
  margin: 0 0 20px 5px;
}
.priseBox.eggs .top .star,
.priseBox.eggs .top .crown {
  width: 20px;
  position: absolute;
  z-index: 5;
}
.priseBox.eggs .top .star:nth-child(1),
.priseBox.eggs .top .crown:nth-child(1) {
  left: 10px;
  bottom: 13px;
}
.priseBox.eggs .top .star:nth-child(2),
.priseBox.eggs .top .crown:nth-child(2) {
  right: 10px;
  bottom: 13px;
}
.gameBox {
  text-align: center;
  margin-bottom: 30px;
}
.gameBox img {
  max-width: 500px;
  width: 100%;
  display: inline-block;
}
.gameBox .title {
  display: block;
  font-size: 19px;
  color: #6f360d;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px !important;
}
.gameBox .lead {
  font-size: 16px;
  color: #6f360d;
  font-weight: 400;
  text-align: center;
}
.gameBox .btn {
  max-width: 220px;
  width: 100%;
  padding: 14px 0;
  margin-top: 20px;
}
.gameBox .fixHeight {
  height: 150px;
  overflow: hidden;
}
.gameBoxWide {
  width: 100%;
  max-width: 830px;
  margin: auto;
}
.gameBoxWide .left {
  float: left;
  width: 55%;
}
.gameBoxWide .right {
  float: right;
  width: 45%;
  padding-left: 50px;
}
.gameBoxWide img {
  max-width: 420px;
  width: 100%;
  display: inline-block;
}
.gameBoxWide h3 {
  margin-top: 0;
}
.gameBoxWide .lead {
  font-size: 16px;
  color: #6f360d;
  font-weight: 400;
  text-align: justify;
}
.gameBoxWide .btn {
  margin-top: 50px;
}
.winnerBox {
  display: inline-block;
  width: 160px;
  border: 1px solid #E7E7E7;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.15);
  margin: 0 5px 10px 5px;
  padding: 30px 0px 50px;
  position: relative;
  background-color: white;
  margin-bottom: 50px;
}
.winnerBox .title {
  font-size: 18px;
  font-weight: 700;
  color: #6f360d;
  margin-bottom: 10px;
  line-height: 110%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.winnerBox .name {
  font-size: 18px;
  font-style: italic;
  color: #F4A93B;
  font-weight: 700;
  word-break: break-all;
  height: 55px;
  padding: 0 5px;
}
.winnerBox .point {
  font-size: 20px;
  font-weight: 400;
  color: #6f360d;
}
.winnerBox .toplistBadge {
  position: absolute;
  bottom: -35px;
  left: calc(50% - 27px);
}
.winnerBox.winnerBox2 {
  width: 150px;
}
.winnerBox.winnerBox2 .title {
  align-items: flex-end;
  height: 40px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu {
  position: absolute;
  top: 15px;
  right: 0;
  width: 60px;
  z-index: 99;
  display: none;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: .75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity .4s ease .4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: .5em 1em;
  border-radius: 0 .12em .12em 0;
  cursor: pointer;
  transition: box-shadow .4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #FEFEFE;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all .4s ease;
}
.outer-menu .hamburger > div:after {
  top: 10px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div {
  width: 250vw;
  height: 250vw;
  color: #FEFEFE;
  background: #081930;
  border-radius: 50%;
  transition: all .4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity .4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color .4s ease;
}
#actPrisePage {
  background-color: #FFFFFF;
  background-repeat: repeat-x;
  background-position: top center;
}
#actPrisePage .bannerContainer img {
  width: 100%;
}
#actPrisePage .actPriseDetail {
  padding-top: 60px;
}
#actPrisePage .actPriseDetail .title {
  font-size: 19px;
  font-weight: 800;
  color: #6f360d;
}
#actPrisePage .actPriseDetail .details {
  display: table;
  max-width: 700px;
  margin: auto;
}
#actPrisePage .actPriseDetail .details .table {
  position: relative;
}
#actPrisePage .actPriseDetail .details .table .tableCell {
  width: 50%;
  padding: 0 30px;
}
#actPrisePage .actPriseDetail .details .table .tableCell .border {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  margin-top: -55px;
  margin-left: -6px;
}
#actPrisePage .actPriseDetail .details .table .tableCell .border span {
  width: 12px;
  height: 12px;
  font-size: 0;
  display: inline-block;
  background-color: #6f360d;
}
#actPrisePage .actPriseDetail .details .table .tableCell img {
  max-width: 100%;
}
#actPrisePage .actPriseDetail .details .text {
  margin-bottom: 0;
}
#actPrisePage .actPriseDetail .details .left {
  display: table-cell;
  width: 400px;
  vertical-align: top;
}
#actPrisePage .actPriseDetail .details .left img {
  max-width: 100%;
  display: block;
  margin: auto;
}
#actPrisePage .actPriseDetail .details .right {
  width: 250px;
  padding-left: 50px;
  display: table-cell;
}
#actPrisePage .actPriseDetail .fixCol {
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
}
#actPrisePage .lead .table {
  display: table;
}
#actPrisePage .lead .table .tableCell {
  display: table-cell;
  vertical-align: middle;
}
#actPrisePage .lead .table .tableCell:last-child {
  padding-left: 20px;
}
#actPrisePage .lead .table .tableCell .iconContainer {
  width: 100px;
  display: block;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #eea320;
  padding: 15px;
}
#actPrisePage .lead .table .tableCell .iconContainer img {
  width: 66px;
}
#actPrisePage .toplistContainer {
  padding-bottom: 100px;
  background-color: #E8DCCE;
}
#actPrisePage .toplistContainer .btn {
  margin-top: 50px;
}
#actPrisePage .toplistContainer .lastTopListBg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#actPrisePage .toplistContainer .lastTopList {
  margin-top: 100px;
  margin-bottom: 0;
  padding: 70px 0 150px;
}
#actPrisePage .gameContainer {
  padding-bottom: 100px;
}
#expPrisePage {
  background-color: white;
}
#expPrisePage .expPriseDetail {
  position: relative;
}
#expPrisePage .expPriseDetail .bough_1 {
  position: absolute;
  right: 0;
  top: 80px;
  max-width: 20%;
}
#expPrisePage .expPriseDetail .expired {
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
}
#expPrisePage .expPriseDetail .date {
  font-size: 16px;
  font-weight: 400;
}
#expPrisePage .expPriseDetail .game {
  font-size: 16px;
  font-weight: 400;
}
#expPrisePage .expPriseDetail .data {
  margin-bottom: 50px;
}
#expPrisePage .expPriseDetail .data .prise {
  background-image: none;
  max-width: 330px;
  margin: auto;
  top: 0;
}
#expPrisePage .expPriseDetail .data .prise img {
  max-width: 270px;
}
#expPrisePage .expPriseDetail .data .prise .text {
  text-align: justify;
  margin-top: 15px;
}
#expPrisePage .expPriseDetail .data .subTitle {
  font-size: 19px;
  text-align: center;
  margin-top: 0;
}
#expPrisePage .expPriseDetail .data .btn {
  margin-top: 50px;
}
#expPrisePage .priseContainer .askNewGameContainer {
  position: relative;
}
#expPrisePage .priseContainer .askNewGameContainer img {
  position: absolute;
  left: calc((100% - 680px) /2 + 600px );
  top: 30px;
}
#expPrisePage .priseContainer .askNewGameContainer .askNewGame {
  width: 100%;
  max-width: 680px;
  background-color: white;
  margin: auto;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 30px 30px 100px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
#expPrisePage .priseContainer .askNewGameContainer .askNewGame h1 {
  font-style: italic;
}
#expPrisePage .priseContainer .askNewGameContainer .askNewGame h1:before,
#expPrisePage .priseContainer .askNewGameContainer .askNewGame h1:after {
  display: none;
}
#gamePage {
  background-color: #E8DCCE;
  padding-bottom: 140px;
  min-height: 900px;
}
#gamePage #gameIframe {
  max-width: 100%;
  margin: 0 auto 30px;
  display: block;
  height: 570px;
}
#gamePage .title {
  text-align: left;
}
#gamePage .title h2 {
  padding: 0;
  margin-bottom: 10px;
}
#gamePage .date {
  text-align: left;
}
#gamePage .btnContainer {
  margin-top: 25px;
}
#gamePage .btnContainer .btn {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  float: right;
}
#gamePage #newGameContainer.wrongOrientation {
  display: none;
}
#gamePage #wrongOrientationContent {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #081930;
  z-index: 5;
  padding: 20% 10%;
  font-size: 20px;
  font-style: italic;
  box-sizing: border-box;
}
#gamePage #wrongOrientationContent .content {
  margin-top: 50%;
  padding: 0 20px;
}
#gamePage #wrongOrientationContent span {
  display: block;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  line-height: 120%;
  margin-bottom: 25px;
}
#gamePage #wrongOrientationContent #landscapePhone {
  width: 112px;
  height: 110px;
  margin: auto;
  margin-top: 70px;
  background-image: url("/images/landscape_phone.png");
}
#gamePage #tooSmallScreen {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #041936;
  z-index: 100;
  text-align: center;
  color: white;
  font-size: 20px;
  line-height: 150%;
}
#gamePage #tooSmallScreen .table {
  display: table;
  width: 100%;
  height: 100%;
}
#gamePage #tooSmallScreen .table .tableCell {
  display: table-cell;
  vertical-align: middle;
}
#topListPage .toplistContainer:nth-child(odd) {
  background-color: #E8DCCE;
}
#topListPage .toplistContainer:nth-child(even) {
  background-color: white;
}
#topListPage .toplistContainer:nth-child(n+1) {
  position: relative;
}
#topListPage .toplistContainer:nth-child(n+2) .contentSize {
  position: relative;
}
#topListPage .toplistContainer:nth-child(n+3) .contentSize {
  position: relative;
}
#topListPage .toplistContainer .bough_1 {
  position: absolute;
  right: 0;
  top: 80px;
  max-width: 20%;
}
#topListPage .toplistContainer .bird_3 {
  position: absolute;
  left: -100px;
  top: -140px;
  max-width: 20vw;
}
#topListPage .toplistContainer .leaf_1 {
  position: absolute;
  right: -90px;
  top: -100px;
}
#topListPage .toplistContainer .leaf_2 {
  position: absolute;
  right: -140px;
  top: -40px;
}
#topListPage .toplistContainer .leaf_3 {
  position: absolute;
  right: -10px;
  top: -140px;
}
#topListPage .toplistContainer .subTitle {
  text-align: center;
}
#topListPage .toplistContainer .data {
  margin-bottom: 100px;
}
#topListPage .toplistContainer .data .prise {
  background-image: none;
  max-width: 370px;
  margin: auto;
  top: 0;
}
#topListPage .toplistContainer .data .prise img {
  max-width: 270px;
}
#topListPage .toplistContainer .data .prise .text {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}
#topListPage .toplistContainer .lastTopList {
  padding: 0;
  margin-bottom: 0;
}
#topListPage .toplistContainer .lastTopList .winnerBox {
  width: 150px;
}
#topListPage .toplistContainer .lastTopList .winnerBox .title {
  align-items: flex-end;
}
#gameEndPage .gameEndContainer {
  padding-top: 60px;
  position: relative;
}
#gameEndPage .gameEndContainer .bough_2 {
  position: absolute;
  right: 0;
  bottom: 200px;
  max-width: 20%;
}
#gameEndPage .gameEndContainer .text {
  text-align: justify;
  margin-bottom: 30px;
}
#gameEndPage .gameEndContainer .invite {
  color: #E3583F;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  display: block;
  margin: 0 0 20px;
}
#gameEndPage .gameEndContainer .invite img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#gameEndPage .gameEndContainer .pointCollecting {
  float: right;
  color: #E3583F;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 40px;
}
#gameEndPage .gameEndContainer .pointCollecting img {
  margin-right: 3px;
}
#gameEndPage .gameEndContainer .btn {
  float: right;
}
#gameEndPage .gameEndContainer .resultContainer {
  position: relative;
  background-image: url("/images/lines.svg");
  background-repeat: no-repeat;
  background-position: calc((100% - 600px) / 2 + 650px) center;
}
#gameEndPage .gameEndContainer .resultContainer img {
  position: absolute;
  left: 0;
  top: 80px;
}
#gameEndPage .gameEndContainer .resultContainer .resultBox {
  width: 100%;
  max-width: 620px;
  background-color: white;
  margin: auto;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 30px 30px 50px;
  margin-bottom: 200px;
  position: relative;
  z-index: 2;
}
#gameEndPage .gameEndContainer .resultContainer .resultBox .title {
  margin-bottom: 0;
}
#gameEndPage .gameEndContainer .resultContainer .resultBox h1 {
  font-style: italic;
}
#gameEndPage .gameEndContainer .resultContainer .resultBox h1:before,
#gameEndPage .gameEndContainer .resultContainer .resultBox h1:after {
  display: none;
}
#gameEndPage .gameEndContainer .resultContainer .resultBox .result {
  font-size: 120px;
  color: #24B5E8;
  font-weight: 800;
  text-align: center;
}
#gameEndPage .toplistContainer .btn {
  margin-top: 50px;
}
#mainPage .gameBox {
  width: 287px;
  padding: 0 10px;
  float: left;
}
#page404 {
  position: relative;
}
#page404 .contentSize {
  text-align: center;
}
#page404 h1 {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #6f360d;
  padding: 0 10%;
}
#page404 .bough_3 {
  position: absolute;
  left: 0;
  top: 180px;
  max-width: 20%;
}
#forgotPasswordPage section,
#regPage section,
#loginPage section {
  padding-top: 50px;
}
#forgotPasswordPage .bough_3,
#regPage .bough_3,
#loginPage .bough_3 {
  position: absolute;
  left: 0;
  top: 180px;
  max-width: 20%;
}
#forgotPasswordPage .fpassContainer,
#regPage .fpassContainer,
#loginPage .fpassContainer {
  position: relative;
}
#forgotPasswordPage .fpassContainer .fpass,
#regPage .fpassContainer .fpass,
#loginPage .fpassContainer .fpass {
  width: 100%;
  max-width: 800px;
  background-color: white;
  margin: auto;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 50px 60px 100px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
#forgotPasswordPage .fpassContainer .bird,
#regPage .fpassContainer .bird,
#loginPage .fpassContainer .bird {
  position: absolute;
  left: calc((100% - 680px) /2 + 680px );
  top: 30px;
}
#forgotPasswordPage .fpassContainer .leaf_3,
#regPage .fpassContainer .leaf_3,
#loginPage .fpassContainer .leaf_3 {
  position: absolute;
  left: calc(50% - 60px);
  bottom: -110px;
  z-index: 3;
}
#forgotPasswordPage .fpassContainer .leaves,
#regPage .fpassContainer .leaves,
#loginPage .fpassContainer .leaves {
  position: absolute;
  left: 60%;
  bottom: -130px;
  z-index: 3;
}
#forgotPasswordPage .fpassContainer .title,
#regPage .fpassContainer .title,
#loginPage .fpassContainer .title {
  margin-bottom: 0;
}
#forgotPasswordPage .fpassContainer .title h1,
#regPage .fpassContainer .title h1,
#loginPage .fpassContainer .title h1 {
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  padding: 0;
}
#forgotPasswordPage .fpassContainer .title h1:before,
#forgotPasswordPage .fpassContainer .title h1:after,
#regPage .fpassContainer .title h1:before,
#regPage .fpassContainer .title h1:after,
#loginPage .fpassContainer .title h1:before,
#loginPage .fpassContainer .title h1:after {
  display: none;
}
#forgotPasswordPage .fpassContainer input[type="email"],
#regPage .fpassContainer input[type="email"],
#loginPage .fpassContainer input[type="email"] {
  font-style: italic;
}
#forgotPasswordPage .fpassContainer .btn,
#regPage .fpassContainer .btn,
#loginPage .fpassContainer .btn {
  margin: 20px 10px 0;
  padding-left: 0;
  padding-right: 0;
  width: 210px;
}
#regPage .fpassContainer .fpass {
  margin-bottom: 250px;
}
#regPage .fpassContainer .btn {
  margin-top: 70px;
}
#regPage .fpassContainer .bird {
  top: 250px;
}
#regPage .fpassContainer .checkboxContainer a {
  text-decoration: underline;
}
#regPage #year,
#regPage #month,
#regPage #day {
  width: auto;
  display: inline-block;
  padding: 14px 10px;
  -webkit-appearance: none;
}
#regPage #year {
  width: 32%;
  margin-right: 1%;
}
#regPage #month {
  width: 24%;
  margin-right: 1%;
}
#regPage #day {
  width: 25%;
}
#regPage #avatarContainer h3 {
  font-weight: 400;
  font-size: 17px;
  text-align: center;
}
#regPage #avatarContainer #avatars {
  text-align: center;
  margin: 30px 0 50px;
  overflow-x: scroll;
}
#regPage #avatarContainer #avatars .radiobuttonContainer {
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  margin: 0 10px 20px;
  font-size: 0;
}
#regPage #avatarContainer #avatars .radiobuttonContainer img {
  width: 60px;
}
#regPage #avatarContainer #avatars .radiobuttonContainer input[type="radio"]:checked ~ .checkmark {
  border: 2px solid #24B5E8;
  background-color: transparent;
}
#regPage #avatarContainer #avatars .radiobuttonContainer input[type="radio"]:checked ~ .checkmark:after {
  display: none;
}
#regPage #avatarContainer #avatars .radiobuttonContainer .checkmark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
}
#regPage .premiumContainer .box {
  width: 100%;
  max-width: 550px;
  background-color: white;
  margin: auto;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 20px 0 20px;
  margin-bottom: 100px;
}
#regPage .premiumContainer .box img {
  display: block;
  margin: 0 auto 20px;
}
#regPage .premiumContainer .box h1 {
  color: #F4A93B;
  text-align: center;
  margin: 0;
}
#regPage .premiumContainer .box h3 {
  color: #F4A93B;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 30px;
}
#gyikPage section {
  padding-top: 50px;
}
#gyikPage .gyikContent {
  position: relative;
}
#gyikPage h2 {
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #6f360d;
  margin: 0;
}
#gyikPage h3 {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: #6f360d;
  margin: 0 0 30px;
}
#gyikPage .leaves {
  position: absolute;
  left: calc(50% - 55px);
  bottom: -40px;
  z-index: 3;
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
#gamesPage section {
  padding: 50px 0 200px;
}
#gamesPage .borderBtn {
  opacity: .4;
}
#gamesPage .borderBtn:hover {
  background-color: transparent;
  color: #6f360d;
}
#gamesPage .title {
  margin-bottom: 90px;
}
#gamesPage .contentSize {
  position: relative;
}
#gamesPage .gameBox {
  margin-bottom: 50px;
}
#gamesPage .leaves {
  position: absolute;
  right: 20px;
  top: 50px;
  z-index: 3;
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
#gamesPage #inviteLeaf {
  position: absolute;
  right: -140px;
  top: -10px;
  z-index: 4;
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
#szovegesPage section,
#meghivoPage section {
  padding-top: 50px;
}
#szovegesPage .contentSize,
#meghivoPage .contentSize {
  position: relative;
}
#szovegesPage #content,
#meghivoPage #content {
  background-color: #FFFFFF;
  padding: 30px 100px 70px;
  font-size: 17px;
  margin-bottom: 250px;
  background-image: url("/images/bird.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
}
#szovegesPage a,
#meghivoPage a {
  text-decoration: underline;
}
#szovegesPage .leaves,
#meghivoPage .leaves {
  position: absolute;
  left: 50%;
  margin-left: -55px;
  bottom: -130px;
  z-index: 3;
}
#meghivoPage .contentSize {
  max-width: 800px;
}
#meghivoPage #content {
  background-image: none;
  margin-bottom: 70px;
}
#meghivoPage .btnContainer {
  margin-top: 50px;
}
#meghivoPage #mailBox {
  display: block;
  margin: auto;
}
#resultPage .resultDataContainer .bough_2 {
  position: absolute;
  right: 0;
  bottom: -70px;
  max-width: 20%;
}
#resultPage .resultDataContainer .resultContainer {
  padding-top: 60px;
  position: relative;
  background-image: url("/images/lines.svg");
  background-repeat: no-repeat;
  background-position: calc((100% - 600px) / 2 + 650px) center;
}
#resultPage .resultDataContainer .resultContainer .bird_3 {
  position: absolute;
  left: 0;
  top: 190px;
  z-index: 3;
  width: 20%;
  max-width: 200px;
}
#resultPage .resultDataContainer .resultContainer .resultBox {
  width: 100%;
  max-width: 620px;
  background-color: white;
  margin: auto;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 30px 30px 50px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
#resultPage .resultDataContainer .resultContainer .resultBox .title {
  margin-bottom: 0;
}
#resultPage .resultDataContainer .resultContainer .resultBox h1 {
  padding: 0;
  font-style: italic;
}
#resultPage .resultDataContainer .resultContainer .resultBox h1:before,
#resultPage .resultDataContainer .resultContainer .resultBox h1:after {
  display: none;
}
#resultPage .resultDataContainer .resultContainer .resultBox .result {
  font-size: 120px;
  color: #24B5E8;
  font-weight: 800;
  text-align: center;
}
#resultPage .resultDataContainer .resultContainer .resultBox #bestResult,
#resultPage .resultDataContainer .resultContainer .resultBox #bestPoint {
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  margin-bottom: 10px;
}
#resultPage .resultDataContainer .resultContainer .resultBox #bestResult span,
#resultPage .resultDataContainer .resultContainer .resultBox #bestPoint span {
  font-weight: 400;
}
#resultPage .resultDataContainer .resultContainer .resultBox #myEggs {
  text-align: center;
  margin: 30px 0 50px;
}
#resultPage .resultDataContainer .resultContainer .resultBox #myEggs img {
  vertical-align: middle;
  margin-right: 5px;
}
#gameViewPage .gameplayContainer {
  padding: 50px 0 100px;
}
#gameViewPage .gameplayContainer .contentSize {
  max-width: 780px;
}
#gameViewPage .gameplayContainer img {
  max-width: 100%;
  display: block;
}
#gameViewPage .gameplayContainer .title h2 {
  text-align: left;
  margin-bottom: 10px;
}
#gameViewPage .gameplayContainer .title span {
  text-align: left;
}
#gameViewPage .gameplayContainer .btnContainer {
  margin-top: 30px;
}
#gameViewPage .gameplayContainer .borderBtn {
  padding: 14px 20px;
  margin-top: 25px;
  float: right;
}
#gameViewPage .gameplayContainer .btn:not(.borderBtn) {
  margin-bottom: 10px;
}
#gameTopListPage .toplistContainer {
  position: relative;
  background-color: #E8DCCE;
  padding-bottom: 50px;
}
#gameTopListPage .toplistContainer .bough_1 {
  position: absolute;
  right: 0;
  top: 80px;
  max-width: 20%;
}
#gameTopListPage .toplistContainer .text {
  max-width: 500px;
  margin: 0 auto 50px;
}
#gameTopListPage .toplistContainer .lastTopList {
  margin-top: 100px;
  padding: 0;
}
#gameTopListPage .toplistContainer .lastTopList .winnerBox {
  width: 150px;
}
#gameTopListPage .toplistContainer .lastTopList .winnerBox .title {
  align-items: flex-end;
}
#gameTopListPage .toplistContainer .data .myBestResult {
  margin-top: 10px;
}
#gameTopListPage .toplistContainer .data .myBestResult .left {
  float: left;
  font-weight: 600;
}
#gameTopListPage .toplistContainer .data .myBestResult .left label {
  font-weight: 400;
}
#gameTopListPage .toplistContainer .data .myBestResult .right {
  float: right;
}
#gameTopListPage .resultGraphContainer {
  margin-bottom: 250px;
}
#gameTopListPage .resultGraphContainer #eredmenygrafikon .adat_tarto {
  margin-top: 40px;
}
#gameTopListPage .resultGraphContainer #eredmenygrafikon .adat_tarto .adat_elem {
  float: left;
  margin: 0 20px 20px 0;
}
#gameTopListPage .resultGraphContainer #eredmenygrafikon .adat_tarto .adat_elem .adat_szin {
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
}
#gameTopListPage .resultGraphContainer #eredmenygrafikon .adat_tarto .adat_elem span {
  display: inline-block;
  vertical-align: middle;
}
#tranzakcioPage section {
  padding: 50px 0 150px;
  position: relative;
}
#tranzakcioPage .bough_3 {
  position: absolute;
  left: 0;
  top: 60px;
  max-width: 20%;
}
#tranzakcioPage .tranzakcioContent {
  position: relative;
}
#tranzakcioPage .tranzakcioContent .bird {
  position: absolute;
  left: calc((100% - 880px) /2 + 880px );
  top: 30%;
}
#tranzakcioPage .tranzakcioContent .eggs {
  position: absolute;
  left: -80px;
  top: 20%;
}
#tranzakcioPage .tranzakcioContent .box {
  max-width: 1000px;
  margin: auto;
  background-color: #FFFFFF;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 30px 70px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
#tranzakcioPage .tranzakcioContent .box ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#tranzakcioPage .tranzakcioContent .box ul li {
  display: table;
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
}
#tranzakcioPage .tranzakcioContent .box ul li >div {
  display: table-cell;
  vertical-align: middle;
}
#tranzakcioPage .tranzakcioContent .box ul li >div .egg {
  display: inline-block;
  vertical-align: bottom;
}
#tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(1) {
  width: 20%;
  font-weight: 600;
}
#tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(2) {
  width: 55%;
}
#tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(2) a {
  text-decoration: underline;
}
#tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(3) {
  width: 90px;
  text-align: right;
  color: #24B5E8;
}
#tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(3).minus {
  color: #e53935;
}
#tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(4) {
  width: 90px;
  text-align: right;
}
#tranzakcioPage .tranzakcioContent .box ul li >div .btnContainer {
  text-align: left;
}
#tranzakcioPage .tranzakcioContent .box ul li >div .btnContainer .btn {
  padding: 16px 30px;
}
#termekPage section {
  padding: 50px 0 150px;
  position: relative;
}
#termekPage section .contentSize {
  position: relative;
}
#termekPage .bough {
  position: absolute;
  right: 0;
  top: 150px;
  max-width: 20%;
}
#termekPage .leaves {
  position: absolute;
  left: 0;
  bottom: 50%;
}
#termekPage .box {
  max-width: 900px;
  margin: 50px auto 50px;
  background-color: #FFFFFF;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 30px 70px;
  position: relative;
}
#termekPage .box .termekImg {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
}
#termekPage .box .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
#termekPage .box .piece {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
}
#termekPage .box .text {
  font-size: 19px;
}
#termekPage .box .price {
  font-size: 30px;
}
#termekPage .box .price span {
  font-weight: 700;
  display: inline-block;
  margin-left: 10px;
}
#termekPage .box .price img {
  display: inline-block;
  margin-left: 5px;
}
#termekPage .box .btnContainer {
  text-align: left;
  margin-top: 30px;
}
.productBox {
  background-color: #FFFFFF;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  margin-bottom: 40px;
}
.productBox .top {
  padding: 30px 30px 0;
}
.productBox .top .imgContainer img {
  width: 100%;
  max-width: 250px;
  display: block;
  margin: 0 auto 0;
}
.productBox .top .nameContainer {
  height: 60px;
  display: table;
  width: 100%;
}
.productBox .top .name {
  display: table-cell;
  width: 100%;
  vertical-align: bottom;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
}
.productBox .top .piece {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}
.productBox .top .price {
  text-align: center;
}
.productBox .top .price span {
  font-size: 21px;
  font-weight: 700;
  display: inline-block;
  margin-left: 10px;
  vertical-align: top;
}
.productBox .top .price img {
  display: inline-block;
  margin: 0 0 20px 5px;
}
.productBox .bottom .btnContainer .btn {
  width: 50%;
  float: left;
  display: block;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}
#termekekPage section {
  padding: 50px 0 150px;
  position: relative;
}
#premiumPage .contentSize {
  position: relative;
}
#premiumPage section {
  padding: 50px 0 150px;
  position: relative;
}
#premiumPage .bough_1 {
  position: absolute;
  right: 0;
  top: 150px;
  max-width: 20%;
}
#premiumPage .bird {
  position: absolute;
  left: -90px;
  top: 100px;
  max-width: 200px;
}
#premiumPage .box {
  width: 100%;
  max-width: 950px;
  background-color: white;
  margin: 100px auto 100px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
  padding: 0 0 30px 30px;
  position: relative;
  z-index: 2;
}
#premiumPage .box .packageTitle {
  margin-bottom: 20px;
}
#premiumPage .box .packageTitle div span {
  height: 50px;
  line-height: 50px;
  font-size: 21px;
  font-weight: 700;
  font-style: italic;
  display: block;
  text-align: center;
}
#premiumPage .box .packageTitle div:nth-child(3) span {
  background-color: #F4A93B;
  color: white;
}
#premiumPage .box .package {
  text-align: center;
}
#premiumPage .box .package >div:first-child {
  text-align: left;
}
#premiumPage .box .package >div:nth-child(2) {
  border-left: 2px dashed #E8DCCE;
  border-right: 2px dashed #E8DCCE;
}
#premiumPage .box .package ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#premiumPage .box .package ul li {
  margin-bottom: 20px;
  font-size: 16px;
  color: #6f360d;
  font-weight: 700;
  border-bottom: 2px dashed #E8DCCE;
  padding-bottom: 7px;
}
#premiumPage .checkboxContainer {
  display: inline-block;
  font-style: italic;
  margin-bottom: 50px;
}
#premiumPage .checkboxContainer .checkmark {
  top: 50%;
  margin-top: -17px;
}
#premiumPage .smsBox .title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
}
#premiumPage .smsBox .btnContainer .btn {
  width: 100%;
  line-height: 130%;
  padding: 16px 20px;
}
#premiumPage .info {
  margin-top: 50px;
}
#premiumPage .payButtons {
  max-width: 950px;
  margin: 50px auto 0;
}
#premiumPage .payButtons .btnContainer .btn {
  width: 100%;
  line-height: 130%;
  padding: 16px 30px;
}
@media (max-width: 1200px) {
  header .menuContainer ul li a {
    padding: 0 7px;
    font-size: 14px;
  }
  #page404 h1 {
    font-size: 60px;
  }
  #termekPage .bough {
    top: 10px;
  }
  .productBox .top {
    padding: 30px 30px 0;
  }
  #gamePage {
    min-height: auto;
  }
}
@media (max-width: 992px) {
  .priseBox.prev .top .priseTitle,
  .priseBox.next .top .priseTitle {
    bottom: 10px;
  }
  header .menuContainer .left ul li:not(:first-child) {
    display: none;
  }
  header .menuContainer .left ul li:first-child .birdLogo {
    display: inline-block;
    width: 60px;
  }
  header .menuContainer .left ul li:first-child .birdLogo + img {
    display: none;
  }
  header .menuContainer .right ul {
    display: none;
  }
  header .menuContainer .outer-menu {
    display: block;
  }
  header .menuContainer #eggMobile {
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
  }
  header .menuContainer #eggMobile img,
  header .menuContainer #eggMobile span {
    vertical-align: middle;
    display: inline-block;
  }
  header .menuContainer #eggMobile span {
    color: #FFFFFF;
    margin-left: 3px;
  }
  header .menuContainer .fbContainer {
    padding-right: 50px;
  }
  header .menuContainer .fb-like {
    margin-right: 30px;
  }
  footer #footerImg {
    display: none;
  }
  footer ul li a {
    font-size: 16px;
    padding: 0 15px;
  }
  #page404 h1 {
    font-size: 6vw;
  }
  .toplistContainer #topList .rightHands,
  .toplistContainer #topList .leftHands {
    display: none;
  }
  .gameBoxWide .left,
  .gameBoxWide .right {
    width: 50%;
  }
  #gameEndPage .gameEndContainer .resultContainer {
    background-position: 100% center;
  }
  #gameEndPage .gameEndContainer .resultContainer .resultBox {
    max-width: 70%;
  }
  #regPage #avatarContainer #avatars .radiobuttonContainer {
    margin: 0 5px 20px;
  }
  #regPage #avatarContainer #avatars .radiobuttonContainer img {
    width: 45px;
  }
  #szovegesPage #content {
    padding: 30px 70px 70px;
  }
  .toplistContainer #topList {
    padding-top: 160px;
  }
  .toplistContainer #topList #podiumContainer #podium {
    width: 280px;
  }
  .toplistContainer #topList #podiumContainer #topListFirst,
  .toplistContainer #topList #podiumContainer #topListSecond,
  .toplistContainer #topList #podiumContainer #topListThird {
    width: 80px;
  }
  .toplistContainer #topList #podiumContainer #topListFirst {
    top: -140px;
    left: 98px;
  }
  .toplistContainer #topList #podiumContainer #topListSecond {
    top: -80px;
    left: 3px;
  }
  .toplistContainer #topList #podiumContainer #topListThird {
    top: -55px;
    left: 190px;
  }
  .toplistContainer #topList #podiumContainer .profileImg {
    width: 100%;
  }
  .toplistContainer #topList #podiumContainer .name {
    font-size: 15px;
  }
  .toplistContainer #topList #podiumContainer .point {
    font-size: 15px;
  }
  .futurePriseContainer #futurePriseImg {
    max-width: 32%;
  }
  #tranzakcioPage .tranzakcioContent .box {
    padding: 30px 50px;
  }
  #tranzakcioPage .tranzakcioContent .box ul li {
    font-size: 17px;
  }
  #premiumPage .box {
    padding-left: 20px;
  }
  #premiumPage .box .packageTitle div span {
    font-size: 16px;
  }
  #premiumPage .box .package ul li {
    font-size: 13px;
  }
  #premiumPage .bird {
    max-width: 130px;
  }
}
@media (max-width: 768px) {
  footer {
    height: auto;
  }
  footer ul:last-child {
    padding-bottom: 30px;
  }
  footer ul:last-child li {
    display: block;
  }
  footer #footerImg {
    top: -50%;
    width: 30%;
  }
  .modal {
    background-image: none !important;
    padding: 15px 20px;
  }
  .modal h1 {
    font-size: 22px;
  }
  .modal h3 {
    font-size: 16px;
  }
  .modal .btnContainer .btn {
    margin-top: 15px;
  }
  #sponsorModal {
    padding-top: 15px;
  }
  #sponsorModal .logo {
    width: 200px;
  }
  #sponsorModal .question {
    font-size: 25px;
    margin-bottom: 0;
  }
  #sponsorModal .btnContainer .btn {
    font-size: 13px;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }
  .priseBox .top .gameTitle {
    font-size: 14px;
  }
  .priseBox .top .priseTitle {
    font-size: 18px;
  }
  .priseBox .bottom .btn {
    font-size: 18px;
  }
  .futurePriseContainer #futurePriseImg,
  .futurePriseContainer #nut_1,
  .futurePriseContainer #nut_2 {
    display: none;
  }
  .futurePriseContainer .left {
    width: 100%;
  }
  .inviteContainer #mailBox {
    right: auto;
    left: 80%;
    width: 160px;
  }
  .inviteContainer #mail {
    right: auto;
    left: 70%;
    width: 18%;
  }
  .whatIsThisPageContainer .whatisthispage {
    width: 40%;
    max-width: 300px;
  }
  .gameBoxWide {
    max-width: 420px;
  }
  .gameBoxWide .left,
  .gameBoxWide .right {
    width: 100%;
    padding: 0;
  }
  #actPrisePage .actPriseDetail .text {
    margin-bottom: 30px;
    text-align: center;
  }
  #actPrisePage .actPriseDetail .btn {
    margin-bottom: 60px;
  }
  #actPrisePage .actPriseDetail .details .right {
    display: none;
  }
  #actPrisePage .actPriseDetail .lead .table .tableCell img {
    width: 50px;
  }
  #actPrisePage .actPriseDetail .lead .table .tableCell .iconContainer {
    width: 50px;
    height: 50px;
    padding: 6px;
  }
  #actPrisePage .actPriseDetail .lead .table .tableCell .iconContainer img {
    width: 36px;
  }
  #expPrisePage .priseContainer .askNewGameContainer img {
    width: 100px;
    left: calc(100% - 70px);
  }
  #expPrisePage .priseContainer .askNewGameContainer .askNewGame {
    width: 90%;
  }
  #expPrisePage .priseContainer .askNewGameContainer .title h1 {
    padding: 0;
  }
  #expPrisePage .priseContainer .askNewGameContainer .btn {
    margin-bottom: 15px;
  }
  #topListPage .toplistContainer .bird_3 {
    max-width: 25vw;
  }
  #gamePage .title {
    text-align: center;
  }
  #gamePage .date {
    text-align: center;
  }
  #gamePage .btnContainer .borderBtn {
    float: none;
  }
  #gameEndPage .best .text {
    text-align: center;
  }
  #gameEndPage .back .btn {
    margin: 0 auto 30px;
    float: none;
    padding-left: 20px;
    padding-right: 20px;
  }
  #gameEndPage .invite {
    text-align: center;
  }
  #gameEndPage .pointCollecting {
    float: none !important;
    display: block;
    text-align: center;
  }
  #szovegesPage #content {
    padding: 30px 40px 70px;
    font-size: 15px;
  }
  #resultPage .resultDataContainer .resultContainer .bird_3 {
    display: none;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox h1 {
    font-size: 20px;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox h2 {
    font-size: 18px;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox .result {
    font-size: 60px;
  }
  #gameViewPage .gameplayContainer .title {
    margin-bottom: 20px;
  }
  #gameViewPage .gameplayContainer .title h2,
  #gameViewPage .gameplayContainer .title span {
    text-align: center;
  }
  #gameViewPage .gameplayContainer .borderBtn {
    float: none;
  }
  #tranzakcioPage .tranzakcioContent .box {
    padding: 30px 30px;
  }
  #tranzakcioPage .tranzakcioContent .box ul li {
    font-size: 15px;
  }
  #tranzakcioPage .tranzakcioContent .box ul li >div .btnContainer .btn {
    padding: 12px 25px;
  }
  #termekPage section {
    padding-top: 0;
  }
  #termekPage .bough {
    display: none;
  }
  #termekPage .box {
    padding: 30px 40px;
  }
  #termekPage .box .price,
  #termekPage .box .btnContainer {
    text-align: center;
  }
  #premiumPage .box {
    padding-left: 0;
  }
  #premiumPage .box .package ul li div {
    margin-bottom: 8px;
  }
  #premiumPage .box .package .packageTitle .yellow {
    color: #FFFFFF;
  }
  #premiumPage .bird {
    display: none;
  }
  #premiumGameModal .box .text {
    font-size: 14px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  header .menuContainer .fb-like {
    margin-right: 20px;
  }
  header .menuContainer #eggMobile {
    margin-right: 20px;
  }
  footer ul {
    display: block;
    text-align: center;
    float: none !important;
  }
  footer ul li {
    display: block;
    margin-bottom: 10px;
  }
  footer #footerImg {
    width: 40%;
  }
  #sponsorModal {
    padding-top: 15px;
  }
  #sponsorModal .logo {
    width: 200px;
  }
  #sponsorModal .question {
    font-size: 22px;
    margin-bottom: 0;
  }
  #sponsorModal .btnContainer .btn {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
    margin-top: 0;
  }
  #page404 {
    min-height: 500px;
  }
  .inviteContainer .left {
    width: 100%;
  }
  .inviteContainer #mail {
    bottom: 180px;
  }
  .inviteContainer #mailBox,
  .inviteContainer #mail {
    display: none;
  }
  .toplistContainer .lastTopList {
    margin-bottom: 0;
  }
  .toplistContainer #topList {
    background-position: calc(50% - 110px) calc(50% - 10px), calc(50% + 120px) calc(50% - 10px);
    background-size: auto 55%;
  }
  .toplistContainer #topList #podiumContainer #podium {
    width: 280px;
  }
  .toplistContainer #topList #podiumContainer #topListFirst,
  .toplistContainer #topList #podiumContainer #topListSecond,
  .toplistContainer #topList #podiumContainer #topListThird {
    width: 80px;
  }
  .toplistContainer #topList #podiumContainer #topListFirst {
    top: -140px;
    left: 98px;
  }
  .toplistContainer #topList #podiumContainer #topListSecond {
    top: -80px;
    left: 3px;
  }
  .toplistContainer #topList #podiumContainer #topListThird {
    top: -55px;
    left: 190px;
  }
  .toplistContainer #topList #podiumContainer .profileImg {
    width: 100%;
  }
  .toplistContainer #topList #podiumContainer .name {
    font-size: 15px;
  }
  .toplistContainer #topList #podiumContainer .point {
    font-size: 15px;
  }
  #expPrisePage .expPriseDetail .bough_1 {
    display: none;
  }
  #expPrisePage .priseContainer .askNewGameContainer img {
    display: none;
  }
  #expPrisePage .priseContainer .askNewGameContainer .askNewGame {
    width: 100%;
  }
  #expPrisePage .priseContainer .askNewGameContainer .title h1 {
    font-size: 16px;
  }
  #topListPage .toplistContainer .bird_3 {
    left: -40px;
    top: -100px;
  }
  #gameEndPage .gameEndContainer .rellax {
    display: none;
  }
  #gameEndPage .gameEndContainer .resultContainer {
    background-position: 100% center;
  }
  #gameEndPage .gameEndContainer .resultContainer .resultBox {
    max-width: 100%;
    margin-bottom: 50px;
  }
  #gameEndPage .gameEndContainer .resultContainer .resultBox h1 {
    font-size: 20px;
    padding: 0;
  }
  #gameEndPage .gameEndContainer .resultContainer .resultBox .result {
    font-size: 80px;
  }
  #gameEndPage .priseContainer {
    padding-bottom: 50px;
  }
  #gameEndPage .favouriteContainer .favourite .favouriteBox h1 {
    margin-top: 0;
    font-size: 20px;
    padding: 0;
  }
  #gameEndPage .favouriteContainer .favourite .favouriteBox .text {
    font-size: 15px;
  }
  #gameEndPage .favouriteContainer .favourite .favouriteBox .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #forgotPasswordPage .fpassContainer .fpass,
  #loginPage .fpassContainer .fpass,
  #regPage .fpassContainer .fpass {
    padding: 30px 30px 60px;
  }
  #forgotPasswordPage .fpassContainer .title h1,
  #loginPage .fpassContainer .title h1,
  #regPage .fpassContainer .title h1 {
    font-size: 18px;
  }
  #szovegesPage #content {
    padding: 10px 20px 70px;
  }
  .priseBox .top {
    padding: 30px 15px 0 !important;
  }
  .priseBox .top .priseTitle {
    display: block;
    height: auto;
  }
  .priseBox .verticalCenter {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 100%;
  }
  .priseBox.next .top {
    display: table;
    width: 100%;
    padding-bottom: 30px;
  }
  .priseBox.next .top img {
    vertical-align: middle;
    display: table-cell;
    margin: auto;
  }
  .priseBox.next .top .priseTitle {
    display: table-cell;
    position: static;
    vertical-align: middle;
    width: 50%;
  }
  .priseContainer,
  .whatIsThisPageContainer,
  .gameContainer,
  .futurePriseContainer,
  .toplistContainer,
  .inviteContainer,
  #gamesPage section {
    padding-bottom: 80px;
  }
  .inviteContainer #inviteLeaf {
    top: -150px;
  }
  .gameContainer .leaf.leaf_1 {
    bottom: -110px;
  }
  .gameContainer .leaf.leaf_2 {
    bottom: -150px;
  }
  .gameBox .fixHeight {
    height: auto;
  }
  #tranzakcioPage .tranzakcioContent .box {
    padding: 20px 15px;
  }
  #tranzakcioPage .tranzakcioContent .box ul li {
    font-size: 14px;
  }
  #tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(1),
  #tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(2) {
    display: block;
    width: 100%;
  }
  #tranzakcioPage .tranzakcioContent .box ul li >div .btnContainer .btn {
    font-size: 12px;
    padding: 7px 15px;
  }
  #tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(4) {
    width: 50px;
  }
  #tranzakcioPage .tranzakcioContent .box ul li >div:nth-child(5) {
    width: 70px;
  }
  #termekPage .box {
    padding: 30px 20px;
  }
  #termekPage .box .name {
    font-size: 20px;
    margin-bottom: 5px;
  }
  #termekPage .box .piece {
    font-size: 13px;
  }
  #termekPage .box .text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .productBox .top {
    padding: 15px;
  }
  .productBox .top .imgContainer {
    float: left;
    width: 50%;
  }
  .productBox .top .nameContainer {
    width: auto;
    height: auto;
  }
  .productBox .top .name {
    font-size: 18px;
  }
  .productBox .top .piece {
    font-size: 13px;
  }
  #resultPage .resultDataContainer .resultContainer {
    padding-top: 30px;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox {
    padding: 15px;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox .title h1 {
    margin: 0;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox .text {
    margin-bottom: 5px;
    font-size: 14px;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox h2 {
    font-size: 14px;
    margin-top: 0;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox #bestResult,
  #resultPage .resultDataContainer .resultContainer .resultBox #bestPoint {
    text-align: left;
    font-size: 15px;
    margin-bottom: 5px;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox .result {
    line-height: 100%;
    font-size: 50px;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox #myEggs {
    margin: 10px 0 10px;
    font-size: 14px;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox .btnContainer .btn {
    width: 100%;
  }
  #resultPage .resultDataContainer .resultContainer .resultBox #fbShare {
    margin-top: 7px !important;
    text-align: center !important;
  }
  #premiumPage .box {
    margin: 100px 0 0;
  }
  #premiumPage #subscription {
    margin-top: 50px;
  }
  #premiumPage .payButtons .btnContainer {
    margin-bottom: 30px;
  }
  #premiumPage .smsBox {
    margin-bottom: 30px;
  }
  #premiumPage .smsBox .title {
    margin-bottom: 10px;
  }
  #premiumPage .info {
    margin-top: 0;
  }
  #premiumGameModal .row-eq-height {
    display: block;
  }
  #premiumGameModal .box {
    margin-bottom: 10px;
  }
  #premiumGameModal .box .text {
    height: auto;
  }
  .priseBox.eggs .top .price span {
    font-size: 16px;
    margin-left: 5px;
  }
  .priseBox.eggs .top .price img {
    height: 20px;
  }
  #actPrisePage .actPriseDetail .details .table .tableCell {
    display: block;
    width: 100%;
    text-align: center;
  }
  #actPrisePage .actPriseDetail .details .table .tableCell .border {
    width: auto;
    position: static;
    margin: 0;
  }
}
