/* Font settings */
/* OnFly EQ - colors */
/*Obrazek z ptaszkiem w checkbox*/
/*
	Oryginalne rozmiary SVG:
	$fmcheck_checked-img-width: 15.941px;
	$fmcheck_checked-img-height: 12.146px;
*/
body {
  background: #E7EFFD;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

.main-chat {
  padding-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* main-chat zmieniam padding gdy nie ma headera */
header[style*="display: none"] ~ section {
  padding-top: 0rem;
}

header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10;
  height: 5rem;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}
header .logo {
  padding: 1rem;
  height: 5rem;
}
header .chat-progress {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .chat-progress .chat-progress-star[data-which="1"] {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 0rem;
  right: 3.4rem;
}
header .chat-progress .chat-progress-star[data-which="1"] > img {
  width: 12px;
}
header .chat-progress .chat-progress-star[data-which="2"] {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 0.3rem;
  right: 2.2rem;
}
header .chat-progress .chat-progress-star[data-which="2"] > img {
  width: 12px;
}
header .chat-progress .chat-progress-star[data-which="3"] {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 0.3rem;
  right: 4.6rem;
}
header .chat-progress .chat-progress-star[data-which="3"] > img {
  width: 12px;
}
header .chat-progress .chat-progress-star[data-which="4"] {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
}
header .chat-progress .chat-progress-star[data-which="4"] > img {
  width: 12px;
}
header .chat-progress .chat-progress-star[data-which="5"] {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 1.1rem;
  right: 5.3rem;
}
header .chat-progress .chat-progress-star[data-which="5"] > img {
  width: 12px;
}
header .chat-progress-circle {
  margin-top: 1.2rem;
  margin-right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #FFFFFF;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.25);
  -moz-border-radius: 3.5rem;
  -webkit-border-radius: 3.5rem;
  border-radius: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .chat-progress-circle-value {
  background: #4873F7;
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  -moz-border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  border-radius: 2.5rem;
}
header .chat-progress-circle-value-unit {
  font-size: 0.6rem;
}

footer {
  text-align: center;
  color: #98B5E8;
  width: 100%;
  margin-top: 2rem;
  height: 2.5rem; /* Footer height */
}
footer a {
  color: #98B5E8;
}

footer:hover {
  color: #4873F7;
}

.btn-nickname {
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-border-radius: 0px 34px 34px 0px;
  -webkit-border-radius: 0px 34px 34px 0px;
  border-radius: 0px 34px 34px 0px;
  font-size: 1rem;
  padding: 12px 20px 12px 12px;
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #c0c0c0;
  background: #4873F7;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-nickname:hover {
  background: #283D9C;
}
.btn-nickname:disabled {
  background: #E7EFFD;
}

.chat-nav-btn {
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  background: #4873F7;
  color: #ffffff;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 1rem;
  padding: 12px 12px 12px 12px;
  min-width: 185px;
  border: 0px none;
  font-weight: 700;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 10px;
}
.chat-nav-btn-prev {
  background: #A8C7FF;
}
.chat-nav-btn-grp {
  padding: 0;
  justify-content: space-between;
}
.chat-nav-btn-grp > div:first-child {
  padding: 12px 0px 12px 30px;
}
.chat-nav-btn-grp > div:nth-child(2) {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 9px 20px 9px 0px;
}
.chat-nav-btn:hover {
  background: #283D9C;
}
.chat-nav-btn:disabled {
  background: #A8C7FF;
}

@media (max-width: 1024px) {
  .chat-nav-btn {
    min-width: 120px;
  }
}
.chat-nav-btn-sm {
  font-size: 0.85rem;
  padding: 10px 10px 10px 10px;
  min-width: 100px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.fm-form-parent {
  width: 100%;
  max-width: 1000px;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.fm-question-text {
  line-height: 1.4rem;
  font-size: 1rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
}

input.form-control {
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
  -moz-border-radius: 34px;
  -webkit-border-radius: 34px;
  border-radius: 34px;
}

textarea.form-control {
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.fm-question {
  padding-top: 20px;
}

.fm-single-img {
  padding: 1rem 2rem 1rem 2rem;
  cursor: pointer;
  margin: 0.5rem;
}
.fm-single-img img {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .fm-single-img {
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
}
@media (max-width: 700px) {
  .fm-single-img {
    padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  }
}
.fm-single-img:hover {
  outline: 3px solid #E8C152;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.fm-single-img-selected {
  outline: 3px solid #85C400;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.help-block {
  font-weight: 300;
  font-style: italic;
  font-size: 0.9rem;
}

/* Animacja pisania */
.chat-waiter {
  position: relative;
  width: 10px;
  height: 10px;
  left: 15px;
  border-radius: 5px;
  background-color: #4873F7;
  color: #4873F7;
  animation: chatWaiter 1s infinite linear;
}

.chat-waiter::before, .chat-waiter::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.chat-waiter::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #4873F7;
  color: #4873F7;
  animation: chatWaiterBefore 1s infinite linear;
}

.chat-waiter::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #4873F7;
  color: #4873F7;
  animation: chatWaiterAfter 1s infinite linear;
}

@keyframes chatWaiterBefore {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1.5);
  }
  50% {
    transform: scale(1, 0.67);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes chatWaiter {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 1.5);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes chatWaiterAfter {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.67);
  }
  75% {
    transform: scale(1, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fm-chat-questions {
  background: #ffffff;
  box-shadow: 3px 4px 4px rgba(192, 201, 226, 0.4);
  border-radius: 34px 34px 34px 34px;
  padding: 0rem 1rem 1rem 2rem;
}

.fm-chat-bot {
  padding-left: 30px;
}
.fm-chat-bot-time {
  color: #A8C7FF;
  font-size: 0.8rem;
}
.fm-chat-bot-name {
  color: #4873F7;
  font-size: 0.8rem;
}
.fm-chat-bot-avatar {
  position: relative;
}
.fm-chat-bot-avatar div {
  position: absolute;
  top: -5px;
  left: -50px;
}
.fm-chat-bot-avatar div img {
  width: 48px;
}

.fm-chat-send-btn {
  position: relative;
}
.fm-chat-send-btn button {
  position: absolute;
  border: 0px none;
  top: -25px;
  right: -5px;
  background: transparent;
}
.fm-chat-send-btn button img {
  width: 48px;
}
.fm-chat-send-btn button:disabled {
  opacity: 0.5;
}

.fm-chat-answer-parent {
  padding-top: 2rem;
  padding-left: 2rem;
}

.fm-chat-answer-content {
  background: #4873F7;
  color: #ffffff;
  word-break: break-word;
  box-shadow: 3px 4px 4px rgba(192, 201, 226, 0.4);
  border-radius: 34px 34px 34px 34px;
  padding: 15px 1rem 1rem 2rem;
}

.fm-chat-me {
  padding-right: 30px;
  text-align: right;
}
.fm-chat-me-time {
  color: #A8C7FF;
  font-size: 0.8rem;
}
.fm-chat-me-name {
  color: #4873F7;
  font-size: 0.8rem;
}
.fm-chat-me-avatar {
  position: relative;
}
.fm-chat-me-avatar div {
  position: absolute;
  top: -5px;
  right: -50px;
}
.fm-chat-me-avatar div img {
  width: 48px;
}

.row > .other-radiocheck {
  min-height: 27px;
  margin-left: 0px;
  padding-top: 7px;
  margin-right: 0;
}

.row > .other-radiocheck > .other-radiocheck-sub {
  display: table;
}

.row > .other-radiocheck > .other-radiocheck-sub > .other-radiocheck-btn {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}

.row > .other-radiocheck > .other-radiocheck-sub > .other-radiocheck-label {
  padding-left: 5px;
}

.other-input {
  margin-top: 5px;
}

.fm-chat-emot-btn {
  position: relative;
}
.fm-chat-emot-btn > div {
  position: absolute;
  top: 0px;
  right: 10px;
}

.fm-header {
  display: flex;
  justify-content: center;
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
  margin-left: -22px;
  position: absolute;
}

.radio, .checkbox, .radio-inline, .checkbox-inline {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 7px;
}

.radio, .checkbox, .radio-vert {
  display: table;
  min-height: 27px;
  margin-left: 0px;
}
.radio > .radiocheck-label, .checkbox > .radiocheck-label, .radio-vert > .radiocheck-label {
  padding-left: 5px;
}
.radio > .radiocheck-label label, .checkbox > .radiocheck-label label, .radio-vert > .radiocheck-label label {
  padding: 0 !important;
}
.radio > .radiocheck-btn, .checkbox > .radiocheck-btn, .radio-vert > .radiocheck-btn {
  vertical-align: middle;
  display: table-cell;
}

.fm-check {
  cursor: pointer;
  padding-left: 22px;
  float: left;
}
.fm-check input {
  margin-left: -19.8px;
  display: none;
  opacity: 0;
  position: absolute;
}
.fm-check input:checked + i {
  border-color: #000000;
}
.fm-check input:checked + span .active {
  display: inherit;
}
.fm-check input[type=radio] + i {
  border-radius: 50%;
}
.fm-check input[type=radio] + i:before {
  border-radius: 50%;
}
.fm-check input[type=radio]:checked + i:before {
  background-color: #4873F7;
  height: 13px;
  left: 5px;
  top: 5px;
  width: 13px;
}
.fm-check input[type=checkbox]:checked + i:before {
  background-color: #4873F7;
  height: 19.8px;
  width: 19.8px;
  left: 0px;
  top: 0px;
  background: url("https://frame-dev.onfly.pl/assets/img/main/check.svg?q=1");
  background-size: 19.8px 19.8px;
}
.fm-check input[disabled] + i {
  border-color: #C0C0C0;
  background-color: #E6E7E2;
}
.fm-check input[disabled] + i:before {
  background-color: #E6E7E2;
}
.fm-check > i {
  background: #E7EFFD;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: inline-block;
  height: 22px;
  line-height: 1;
  margin-left: -22px;
  margin-right: 4px;
  margin-top: -2px;
  position: relative;
  vertical-align: middle;
  width: 22px;
}
.fm-check > i:before {
  background-color: transparent;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: all 0.2s ease 0s;
  width: 0;
}
.fm-check > span {
  margin-left: -22px;
}
.fm-check > span .active {
  display: none;
}

@media (min-width: 168px) {
  .radio-vert {
    display: inherit;
  }
  .radio-vert > .radiocheck-btn {
    display: inherit;
    text-align: center;
  }
  .radio-vert > .radiocheck-label {
    padding-left: 0px;
    text-align: center;
  }
  .fm-check {
    float: inherit;
    padding-left: 24px;
  }
}

/*# sourceMappingURL=fm.css.map */


.fm-voivmap-map {
  display: none; }

.fm-voivmap-question {
  display: inherit; }

@media (min-width: 768px) {
  .fm-voivmap-map {
    display: inherit; }

  .fm-voivmap-question {
    display: none; } 
}


.fm-hidden-multi-img {
  display: none; }

.fm-multi-img {
  background-color: #ffffff;
  cursor: pointer;
  text-align: center;
  display: block;
  opacity: 1;
  width: auto !important;
  padding-bottom: 10px;
  padding-top: 10px;
    /*img:hover,img:active,img:focus  {
          box-shadow: inset 0 0 0 1000px #EEEEEE;
      }*/ }
  .fm-multi-img > span {
    font-size: 32px;
    line-height: 3em; }
  .fm-multi-img > img {
    border-radius: 10px;
    border: 3px solid transparent; 
  }

  @media (max-width: 720px) {
    .fm-multi-img > img {
      max-width: 100px;
    }
  }



.fm-multi-img-selected > img {
  border: 3px solid #4873F7; }



/* Moje zabawy */
.range-slider {
  display:flex; 
  justify-content:space-between; 
  flex-wrap:nowrap
}

.range-slider > div {
  font-size: 1.0rem;
  border: 1px solid #d6d6d6;
  width: 100%;
  line-height: 2.5rem;
  border-radius: 3px;
  text-align:center;
}

.range-slider > div:hover, .range-slider > div.active {
  background: #4873F7 !important;
  color: white;
  border: 1px solid #4873F7;
  cursor: pointer;
}


.fm-header-text {
  line-height: 1.4rem;
  font-size: 1rem;
  padding-top: 20px;
  padding-bottom: 0.5rem;
  font-weight: 500;
  text-align: left;
}


/*    gry   */
.falling {
  transition: top linear .2s;
}
.active {
  scale: 1.3;   
}
html {  
  font-size: 16px;
  background-color: #e7effd;
}
.main-container {
  width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.games-user-list td {
  padding: 0 2rem;
  border: 1px solid black;
}
.games-user-list td:first-of-type {
  padding: 0 1rem;
}
.loading {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.loading-img {
  display: flex;
  justify-content: center;
  font-size: 5rem;
  
}
.loading-img div {
  opacity: 0;
  transition: all linear 1s;
}
.universal-timer {
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
  color: red;
  font-size: 2rem;
}
.game-shell {
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-shell-mobile {
  background-image: url('../img/pond_mobile_new.png');
  background-size: 100%;
}
.game-shell-loading {
  font-size: 2rem;
}
.exit-button {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
  background-color: red;
  padding: 1rem;
  cursor: pointer;
}
.title-and-start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
}
.game-title {
  text-align: center;
  font-size: 3rem;
}
.start-btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  border-radius: 5px;    
  background-color: green;
  color: white;
  animation: scale 1s infinite; 
  cursor: pointer;
}
@keyframes scale {
  0% {transform: scale(1);}
  50% { transform: scale(1.2);}
  100% { transform: scale(1);}
}


/* Frogs */
.frogs-main-container {
  max-width: 1000px;
  padding: 0;
  position: relative;
  top: -2rem;
}

.intro, .result, .rules {   
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.zuza-img {
  padding: 1.5rem;
}
.rules-text, .result-text {   
  font-family: 'Inter', sans-serif;
  line-height: 2rem;
  font-weight: 600;
  color: #212529;
  padding: 1.5rem 1.5rem 0 1.5rem;
}
.focus-rules {
  flex-direction: column;
}
.rules-text {
  display: flex;
}
.focus-rules .rules-text {
  text-align: center;
  display: block;
  
}
.frog-type__container {
  padding: 0 40px;
  text-align: center;
}
.frog-type__container span {
  color: forestgreen;
}
.focus-example {
  font-size: 8rem;
  line-height: 1;
  text-align: center;
  color: red;
}
.game-field {
  background: url('../img/frog&pond_1000_new.png');
  background-size: 100%;
  background-position: center;
  display: none;
  position: relative;
  overflow: hidden;
}
.game-field-mobile {
  background: url('../img/pond_mobile_new.png');
  background-size: 100%;
  background-position: center;
}
.countdown {
  padding: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 6rem;
}
.count-container {
  width: 100%;
  padding-bottom: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  display: none;
  justify-content: space-around;
}
.count-container span, .result span, .points-count {
  color: forestgreen;
}
.punkt .points-count {
  font-size: 2rem;
}
.time-to-play span{
  color: darkred;
}
.result {
  display: none;
}
.result-count, .points-count {
  padding: 0 5px;
  font-size: 1.5rem;
}
.frog {
  background-size: 100%;
  background-image: url('../img/frog1.png');
  cursor: pointer;
}
.red-frog {
  background-size: 100%;
  background-image: url('../img/frog3.png');
}
.yellow-frog {
  background-size: 100%;
  background-image: url('../img/frog2.png');
}
.blue-frog {
  background-size: 100%;
  background-image: url('../img/frog8.png');
}
.big-frog {
  width: 50px;
  height: 50px;
  position: absolute;
}
.medium-frog {
  width: 40px;
  height: 40px;
  position: absolute;
}
.small-frog {
  width: 30px;
  height: 30px;
  position: absolute;
}
.jumping-frog {
  background-image: url('../img/frog4.png');
}
.splash {
  background-image: url('../img/splash1.png');
}
.fm-header-text {
  width: 100%;
}
.frogs-list-container {
  display: flex;
}

/* Focus */

.focus-main-container {
  /* background: url('../img/focus-background.png'); */
}
.focus-info-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
}
.focus-info-container-result {
  justify-content: center;
}
.focus-info-container div{
  margin-bottom: 1rem;
}
.focus-time-left {
  color: brown;
}
.focus-counts-container {
  width: 90px;
}
.focus-counts-container div {
  transition: all linear .2s;
}
.focus-counts-container img {
  margin-right: 10px;
  width: 50%;
}
.focus-result {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 5rem;

}
.focus-game-field {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  border-radius: 30px;
  transition: all ease .3s;
}
.focus-task {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 200px;
  z-index: 10;
  background-color: white;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  box-shadow: 0 0  15px black;
  transition: transform linear 1s;
}
.focus-circle-container {

  width: 600px;
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: all linear 1s;
}
.focus-button {
  position: absolute;
  top: -30px;
  left: 130px;
  width: 350px;
  height: 350px;
  clip: rect(0, 200px, 400px, 0);
  transform-origin: 50% 100%;
  cursor: pointer;
}
.focus-red {
  background-color: red;
  z-index: 1;
} 
.focus-green {
  transform: rotate(72deg);
  background-color: green;
  z-index: 2;
}
.focus-blue {
  background-color: blue;
  transform: rotate(144deg);
  z-index: 3;
}
.focus-yellow {
  background-color: yellow;
  transform: rotate(216deg);
  z-index: 4;
}
.focus-black {
  background-color: black;
  transform: rotate(288deg);

}
.focus-wrong {
  box-shadow: 0 0 20px red;
}
.focus-correct {
 box-shadow: 0 0 20px green;
}
.focus-results-title, .gtn-results-title {
  display: none;
}

/* Guess the button */

.gtb-game-field {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 50px;
  border-radius: 30px;
  transition: all ease .3s;
}
.gtb-task {
  text-transform: uppercase;
  font-size: 7rem;
  margin: 4rem 0 6rem;
}
.gtb-buttons-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%; 
  align-items: flex-end;  
}
.gtb-percent {    
  width: 80px;
  height: 0;
  max-height: 200px;
  background-color: grey;
  transition: all linear .5s;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  opacity: 0;
}
.-blue {
  background-color: #BAD8FD;
}
.gtb-button-wrapper {
  justify-self: center;
}
.gtb-percent div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.gtb-button {
  width: 80px;
  height: 80px;
  background-color: grey;
  border-radius: 10px;
  cursor: pointer;
  transition: all linear .1s;
  background-size: cover;
}

/* Guess the number */
.gtn-game-field {
  position: relative;
}
.gtn-number {
  transform-origin: top;
  transform: rotate(180deg);
  margin-top: 3rem;
  margin-bottom: -3rem;
  text-align: center;
  height: 100px;
  font-size: 7rem;
  color: rgb(184, 183, 183);
  filter: blur(17px);
}
.gtn-number-result {
  transform: rotate(0deg) !important;
  filter: none !important;
  transition: all linear .5s;
}
.gtn-input-container {
  display: flex;
}
.gtn-input {
  width: 200px;
  border: 2px solid rgb(184, 183, 183);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #E7EFFD;
  font-size: 1.5rem;
  padding-left: 20px;
}
.gtn-submit {
  border: 2px solid rgb(184, 183, 183);
  border-left: none;
  background-color: #0d6efd;
  opacity: .7;
  cursor: pointer;
  color: white;
  padding: 10px 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all linear .05s;
}
.gtn-submit:hover {
  opacity: 1;
}
.gtn-empty-string-alert {
  margin-top: 2rem;
  text-align: center;
}
.gtn-correct {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.gtn-tries-left {
  position: absolute;
  top: 0;
  right: 0;
  color: red;
}

/* Sorting */

.sorting-game-field {
  position: relative;
}
.sorting-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
  
}
.sorting-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 2px solid purple;
  border-radius: 10px;
  position: relative;
  font-size: 0;
}
.sorting-item {
  font-size: 3.5rem;
  position: absolute !important;
  cursor: pointer;
  border-radius: 10px;
  z-index: 10;

}
.sorting-item-animal {
  width: 70px;
  height: 70px;
  font-size: 2rem;
  background-size: 100%;

}
.sorting-correct {
  font-size: 3.5rem;
  border: 3px solid green;
  box-shadow:  0 0 5px green;
  transition: box-shadow linear .2s;
}
.sorting-correct-animal {
  font-size: 0;
  background-size: 100%;    
  border: 3px solid green;
  box-shadow:  0 0 5px green;
  transition: box-shadow linear .2s;
}
.sorting-wrong {
  border: 3px solid red;
  box-shadow:  0 0 5px red;
  transition: box-shadow linear .2s;
}
.sorting-timer {
  font-size: 2rem;
  display: flex;
  margin-bottom: 2rem;
}
.sorting-count {
  font-size: 3.5rem;
  color: red;
}
.sorting-text {
  display: none;
}
.sorting-results {
  display: none;
  font-size: 2rem;
  margin-bottom: 3rem;
}

/* Memory */

.memory-example {
  text-align: center;
  margin: 1rem;
}
.memory-rules  {
  text-align: center;
}
.memory-game-field {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding-bottom: 2rem;
}
.memory-card, .memory-card-example {
  width: 70px;
  height: 70px;
  margin: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 5px;    
}
.memory-card-shirt {
  position: absolute;
  top: 0;
  width: 100%;
  transform: rotateY(0deg) !important;
  transition: transform linear .2s;
}
.memory-turned {
  transform: rotateY(90deg);
}
.memory-card-picture {
  position: absolute;
  top: 0;
  width: 100%;
  transition: transform linear .2s;
}
.memory-card-picture-turned {
  transform: rotateY(0deg) !important;
  transition: transform linear .2s;
}
.memory-card-shirt-turned {
  transform: rotateY(90deg) !important;
  transition: transform linear .2s;
}
.memory-results {
  font-size: 3rem;
  text-align: center;
  display: none;
  margin-bottom: 2rem;
}

/* Fridge */

.fridge-main-container {
  position: relative;
}
.fridge-game-field {
  position: relative;
  display: flex;
  align-items: center;
}
.fridge {
  position: relative;
  width: 300px;
  height: 969px;
  background-image: url('../img/Fridge/fridge_closed1.png');
  background-size: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10px;
  padding:  135px 35px 215px 30px;
}
.fridge-opened {
  width: 355px;
  left: 30px;
  background-image: url('../img/Fridge/fridge_open1.png');
  padding: 135px 95px 215px 15px;
}
.fridge-handle {
  position: absolute;
  width: 30px;
  height: 300px;
  top: 347px;
  cursor: pointer;
}
.fridge-glass {
  position: absolute;
  width: 244px;
  height: 643px;
  top: 167px;
  left: 28px;
  z-index: 100;
  overflow: hidden;
}
.fridge-glass>img {
  width: 80px;
  opacity: 0;
  z-index: 101;
}
.fridge-item {
  width: 50px;
  height: 155px;
  display: flex;
  align-items: end;
  justify-content: center;
  opacity: .8;
}
.fridge-item>img {
  width: 100%;
}
.fridge-wanted-item {
  margin-left: 100px;
}
.fridge-wanted-item>img {
  width: 100px;
}
.fridge-timer {
  position: absolute;
  right: 10%;
  top: 10%;
  font-size: 3rem;
  color: red;
}
.fridge-results {
  font-size: 1rem;
  display: none;
  margin-bottom: 2rem;
}
.fridge-results>span {
  color: red;
}

/* Alphabet */

.alphabet-main-container {
  background-image: url('../img/Alphabet.png');
  background-size: cover;
  margin: 0 3rem 0 2rem;
  width: unset;
  padding-right: 1rem;
}
.alphabet-game-field {
  margin-top: 100px;
}
.alphabet-latter {
  margin-bottom: 50px;
  text-align: center;
  font-size: 3rem;
  display: none;
  color: white;
  text-shadow:  0 0 5px black;
} 
.alphabet-input {
  width: 250px;
  font-size: 1.5rem;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 5px gray;
  padding: 15px 30px;
  border: 2px solid #008ebc;
  border-radius: 15px;
}
.alphabet-time-left {
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-top: 2rem;
  text-shadow:  0 0 5px black;
}
.alphabet-timer {
  margin-top: 20px;
  font-size: 3rem;
  text-align: center;
  color: red;
  line-height: normal;
  border: 2px solid #008ebc;
  box-shadow: 0 0 5px grey;
  border-radius: 15px;
  background-color: white;
}
.alphabet-zero, .alphabet-good, .alphabet-perfect {
  display: none;
}

/* Maze */

.maze-main-container {
  padding: 1rem 2rem 2rem 0rem;
}
#maze_container {
  position: relative;
  margin: 1em auto;
  width: fit-content;
}
#maze {
  position: relative;
  background-color: #4873f7;
  background-image: radial-gradient(circle at 0% 0%, transparent 50%, rgba(0,0,0,0.1) 50%), radial-gradient(circle at center, rgba(0,0,0,0.1) 50%, transparent 50%), radial-gradient(circle at 100% 100%, transparent 50%, rgba(0,0,0,0.1) 50%), radial-gradient(circle at 0% 100%, transparent 50%, rgba(0,0,0,0.1) 50%), radial-gradient(circle at 100% 0%, transparent 50%, rgba(0,0,0,0.1) 50%);
  background-size: 8em 8em;
}
#maze div {
  display: flex;
}
#maze div div {
  position: relative;
  width: 1em;
  height: 1em;
}
#maze div div::after {
  position: absolute;
  left: -3px;
  top: -4px;
  text-align: center;
  text-shadow: 0 0 1px black;
  font-size: 1.2em;
  z-index: 10;
}
#maze div div.door.exit::after {
  content: "\1F6AA";
}
#maze div div.nubbin::after {
  content: "\1F33C";
}
#maze div.nubbin:nth-of-type(3n)::after {
  content: "\1F344";
}
#maze div.nubbin:nth-of-type(5n)::after {
  content: "\1F33B";
}
#maze div.nubbin:nth-of-type(7n)::after {
  content: "\1F48E";
}
#maze div.nubbin:nth-of-type(13n)::after {
  content: "\1F381";
}
#maze div.hero::after {
  content: "\1F6B6" !important;
}
#maze.face-right div.hero::after {
  transform: scale(-1, 1);
}
#maze div div.wall, #maze div div.nubbin.wall, #maze div div.door.exit {
  background-color: #454545;
  background-image: linear-gradient(45deg, rgba(0,0,0,0.2) 45%, transparent 55%), linear-gradient(to bottom, rgba(0,0,0,0.2) 45%, transparent 55%);
  background-size: 0.5em 0.5em;
}
#maze div div.nubbin.wall::after {
  content: "";
}
#maze div div.sentinel.wall {
  background: transparent;
}
#maze div div.sentinel.wall::after {
  content: "\1F40A";
}
#maze div.sentinel.wall:nth-of-type(3n)::after {
  content: "\1F40D";
}
#maze div div.key::after {
  content: "\1F511";
} 
#maze div div:nth-child(odd) {
  width: 1em;
}
#maze div:nth-child(odd) div {
  height: 1em;
} 
#maze.finished::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  content: "Game Over";
  background: rgba(0,0,0,0.4);
  text-align: center;
  text-transform: uppercase;
  /* font-family: monospace; */
  font-size: 3em;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.8);
  color: #fff;
  z-index: 10;
} 
#maze_output {
  display: flex;
  margin: 0.5em auto;
}
#maze_score, #maze_message {
  font-size: 1em;
}
#maze_score {
  flex: 1;
  white-space: nowrap;
  text-align: left;
}
#maze_score::before {
  content: "Steps: ";
}
#maze_score.has-key::after {
  content: "\00a0\1F511";
}
#maze_message {
  flex: 3;
  text-align: right;
}
#maze .wall {
  background-color: #e7effd !important;
}
.maze-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.maze-up-btn, .maze-right-btn, .maze-down-btn, .maze-left-btn  {
  cursor: pointer;
  background-image: linear-gradient(45deg, rgba(0,0,0,0.2) 45%, transparent 55%), linear-gradient(to bottom, rgba(0,0,0,0.2) 45%, transparent 55%);
  background-size: 0.5em 0.5em;
  margin: 5px;
  font-size: 2rem;
  padding: 5px 20px;
}
.maze-moves {
  display: flex;
}
.maze-move {
  width: 30px;
  text-align: center;
}

/* Guess the country */

.countries-main-container {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  margin-left: -.5rem;
}
.countries-round-container {
  margin-top: 2rem;
  font-size: 4rem;
}
.countries-points-and-tries {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.countries-tries {
  transition: all linear .2s;
}
.countries-tries>span {
  color: red;
}
.countries-task {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  padding: 10px;
}
.countries-task>img {
  width: 100%;
  max-height: 500px;
}
.countries-answers-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.countries-answer {
  margin: 5px;
  padding: 5px 20px;
  text-align: center;
  border-radius: 10px;
  background-color: #4873f7;
  color: white;
  cursor: pointer;
}
.countries-wrong {
  background-color: red;
}
.countries-results {
  display: none;
  margin-bottom: 2rem;
}

/* Wheel of fortune */

.wof-main-container {
  padding: 0;
  position: relative;
  overflow: hidden;

}
.wof-game-field {
  display: flex;
  align-items: center;
  transition: all linear .5s;
}
.wof-zoomed {
  position: relative;
  transform: scale(2);
  left: 250px;
}
.wof-zoomed-question {
  width: 150px !important;
  transform: rotate(220deg);
  top: -30px !important;
  right: 19px;
  text-shadow:  0 0 10px black;
  font-size: 1.5rem;
}
.wof-arrow {
  height: fit-content;
}
.wof-arrow img{
  width: 100px;
}
.wof-wheel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border-radius: 50%;
  transition: all linear .2s;
  margin: 2rem;
  box-shadow:  0 0 10px grey;
}
.wof-button {
  height: fit-content;
  cursor: pointer;
  padding: 1rem 2rem;
  border-radius: 15px;
  background-color: #4873f7;
  color: white;
  box-shadow:  0 0 10px grey;
}
.wof-mobile-button {
  display: none;
  z-index: 5;
}
.wof-question-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wof-question {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all linear .4s;
  color: white;
  overflow-wrap: break-word;
  text-align: center;
}
.wof-question-wrapper:nth-child(1) .wof-question {
  top: 30px;
}
.wof-question-wrapper:nth-child(2) .wof-question{
  top: 30px;
}
.wof-question-wrapper:nth-child(3) .wof-question {
  top: -30px;
}
.wof-question-wrapper:nth-child(4) .wof-question {
  top: -30px;
}
.wof-input-container {
  position: relative;
  box-shadow: 0 0 10px grey;
  opacity: 0;
  position: absolute;
  bottom: 67px;
  display: none;
  align-items: center;
  border-radius: 23px;
}
.wof-answer-input {   

  z-index: 2;
  margin-right: -2rem;
  font-size: 2rem;
  padding: 1rem;
  border: none;
  border-radius: 23px;
  transition: all linear .2s;
}
.wof-answer-input:focus-visible {
  outline: none;
}
.wof-answer-button {
  cursor: pointer;
  color: white;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  border-radius: 23px;
  border: 2px solid white;
  font-size: 2rem;
  background-color: red ;
}
.wof-answer-button:hover {
  background-color: rgb(163, 0, 0);
}
.wof-alert {
  position: absolute;
  bottom: -77px;
  right: 0;
}
.wof-results {
  display: none;
  padding: 1rem;
}

/* Eggs Catcher */

.catcher-main-container {
   background: url('../img/Eggs/sky_1.png') no-repeat;
   overflow: hidden;
}
.catcher-game-field {
  position: relative;
  height: 300px;
 
}
.catcher-game-field-mobile {
  height: 500px;
}
.catcher-sun {
  position: absolute;
  top: 0;
  right: -400px;
  width: 150px;
  transform: rotateX(1deg);

}
.catcher-sun-mobile {
  right: -100px;
}
.catcher-bird {
  position: absolute;
  top: 100px;
  left: -600px;
  width: 100px;
}
.catcher-basket {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 10px;
  z-index: 1;
  background-image: url('../img/Eggs/basket.png');
  background-size: 100%;
}
.catcher-egg {
  position: absolute;
  top: 0;
  left: -225px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: 100%;
}
.catcher-buttons-container {    
  background-color: white;
  overflow: hidden;
  padding-top: 5rem;
  display: flex;
  justify-content: space-around;
  width: 110%;
  z-index: 100;
}
.catcher-grass {
  position: absolute;
  bottom: 0;
  left: -420px;
}
.catcher-button {
  border-radius: 20px;
  text-align: center;
  width: 80px;
  padding: 1rem 1rem;
  background-color: #4873f7;
  color: white;

}
.catcher-mark-red {
  border: 2px solid red;
}
.catcher-mark-green {
  border: 2px solid green;
}
.catcher-timer {
  margin-bottom:  -2rem;
  z-index: 101;
}

/* Jumper */
.jumper-main-container {
  background-image: url('../img/Jumper/desert.png');
  background-repeat: no-repeat;
  background-size: 150%;

  border-radius: 15px;
}

.jumper-game-field {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  border-bottom: 2px solid rgb(194, 165, 103);
}
.jumper-jump-button {
  margin-top: 2rem;
  box-shadow: 0 0 10px grey;
  cursor: pointer;
  background-color: burlywood;
  padding: 1rem;
  border-radius: 5px;
  font-size: 2rem;
}
.jumper-rock {
  position: absolute;
  bottom: -2px;
  right: -100px;
  width: 100px;
  z-index: 2;
  transition: left linear .1s;
}
.jumper-rock-mobile {
  width: 50px;
}
.jumper-rock img {
  width: 100%;
}
.jumper-falling {
  transition: bottom cubic-bezier(0.75,-0.05, 0.68, 0.56) .3s !important;
}
.jumper-character {
  position: absolute;
  bottom: 0;
  left: 100px;
  width: 100px;
  transition: bottom cubic-bezier(0.4, 1.23, 0.78, 0.86) .4s;
}
.jumper-character-mobile {
  left: 0;
  width: 50px;
}
.jumper-character img {
  width: 100%;
}
.jumper-counter {
  position: absolute;
  width: 100%;
  top: 10px;
  text-align: center;
  font-size: 2rem;
}

/* Bomb */
.bomb-timer {
  text-align: center;
}
.bomb-items-container, .bomb-buttons-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding: 2rem;
  margin-top: 1rem;
}
.bomb-items-container {
  padding: 2.5rem 5px 2rem;
  background-color: grey;
  border-radius: 10px;
}
.bomb-bomb {
  background: url('../img/bomb3.png') no-repeat;
  height: 212px;
  width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bomb-item, .bomb-button {
  margin: .5rem;
  padding: 1rem;
  border-radius: 5px;
}
.bomb-item {
  background-color: white;
  margin: 5px;
}
.bomb-button {
  cursor: pointer;
  box-shadow: 0 0 5px black;
  text-align: center;
}
.bomb-active {
  color: red;
}
.bomb-closed {
  background-color: black;
}

/* Guitar */

.guitar-main-container {
  background-color: #f1f1f1;
  border-radius: 15px;
  margin-left: -.5rem;
  padding: 0;
}
.guitar-game-field {
 height: 500px;
 background-color: #f1f1f1;
 border-radius: 15px;
}
.guitar-track-container {
  width: 100%;
  position: relative;
  height: 460px;
}
.guitar-buttons-container {
  height: 75px;
  width: 100%;
  position: relative;
}
.guitar-note {
  background-image: url('../img/note.png');
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  width: 55px;
  height: 75px;
  z-index: 100;
  opacity: 0;
  cursor: pointer;
}
.guitar-note-falling {
  animation: fall;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

@keyframes fall {
  0% {
      top: 0;
      opacity: 1;
  }
  100% {
      top: 500px;
      opacity: 1;
  }
}

.guitar-button {
  position: absolute;
  width: 55px;
  height: 75px;
  border-radius: 5px;
  z-index: 1;
  border: 1px solid black;
  top: -40px;
}
.guitar-button-active {
  transform: scale(1.4);
  transition: all linear .2s;
  box-shadow:  0 0 5px black;

}
.guitar-start-button {
  position: absolute;
  top: 0;
  width: 100px;
  height: 50px;
  left: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #008ebc;
}
.guitar-start-button::after {
  content: 'Start';
}

/* Piano */

.piano-game-field {
  position: relative;
  width: 100%; 
  height: 300px;  
  display: flex;
  align-items: center;
  justify-content: center;
}
.piano-start-button-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.piano-start-button {
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #008ebc;
  cursor: pointer;
}
.piano-start-button::after {
  content: 'Start';
}
.piano-buttons-container {
  position: relative;
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  border: 1px solid black;
  border-radius: 5px;
}
.piano-button {
  position: relative;
  width: 50px;
  height: 200px;
  border: 1px solid black;
  cursor: pointer;
  transition: all linear .2s;
}
.piano-button-mobile {
  position: relative;
  width: 40px;
  height: 150px;
  border: 1px solid black;
  cursor: pointer;
  transition: all linear .2s;
}
.piano-black-button {
  position: absolute;
  top: 0;
  right: -15px;
  width: 30px;
  height: 140px;
  background-color: black;
  z-index: 100;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.piano-black-button-mobile {
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 105px;
  background-color: black;
  z-index: 100;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.piano-button-correct {
  background-color: green;
  box-shadow: inset 0 0 5px grey;
}
.piano-button-wrong {
  background-color: red;
  box-shadow: inset 0 0 5px grey;
}
.piano-button-not-active {
  pointer-events: none;
  touch-action: none;
}
.piano-blocker {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.piano-tries {
  position: absolute;
  top: 0;
  right: 0;
  color: red;
}

/* Puzzle , Puzzle 2 */

.puzzle-game-field, .puzzle2-game-field {
  position: relative;
  width: 600px;
  height: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 10px;
  overflow: hidden;
}
.puzzle2-game-field {
  border: 1px solid grey;
}
.puzzle-piece, .puzzle2-piece {
  width: 200px;
  height: 200px;
  display: flex;
  font-size: 3rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}
.puzzle2-piece {
  position: absolute;
  z-index: 2;
}
.puzzle-piece-img, .puzzle2-piece-img {
  width: 100%;
}
.puzzle2-img {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 2;
  cursor: pointer;
  opacity: 0.8;
}
.puzzle2-img-locked {
  opacity: 1 !important;
  pointer-events: none;
}
.puzzle2-drop-container, .puzzle2-drop-container-locked {
  position: relative;
  width: 200px;
  height: 200px;
  border: 1px solid grey;
}

/* Bird */

.bird-main-container {
  position: relative;
  top: 10px;
  background-repeat: no-repeat;
  background-size: 150%;
  border-radius: 15px;
  padding: 0;
}
.bird-game-field {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  border-top: 5px solid #979c9f;
  border-bottom: 5px solid #979c9f;
  background: url('../img/bird/bcgr.png');
  background-size: 100%;
}
.bird-jump-button-container {
  width: 100%;
  background-color: black;
}
.bird-jump-button {
  margin: 0 auto 2rem;
  width: 100px;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 0 10px grey;
  cursor: pointer;
  background-color: #a76c6f;
  padding: .5rem 1rem;
  border-radius: 5px;
  font-size: 2rem;
}
.bird-rock {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 100px;
  height: 250px;
  z-index: 2;
  transition: left linear .1s;
  background: url('../img/bird/pipe1.png');
  background-size: 100%;
}
.bird-rock-mobile {
  right: -200px;
}
.bird-rock-up {
  bottom: unset;
  top: 0;
}
.bird-rock-mobile {
  width: 50px;
}
.bird-rock img {
  width: 100%;
}
@keyframes fall {
  0% {
      bottom: 100%;
  }
  100% {
      bottom: 0;
  }
  
}
.bird-character {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 60px;
  transition: bottom linear .2s;
  background: url('../img/bird/bird2.png');

  background-size: 100%;
}
.bird-wings-up {
  background: url('../img/bird/bird1.png');
  background-size: 100%;

}
.bird-character-mobile {
  left: 0;
  width: 50px;
}
.bird-counter {
  position: absolute;
  width: 100%;
  top: 10px;
  text-align: center;
  font-size: 2rem;
}
.bird-game-shell {
  background-size: 100%;
}


@media(max-width: 1000px) {
  .countries-main-container {
      padding: 10px 0;
  }
  .countries-task>img {
      max-height: 300px;
  }
  .jumper-main-container {
      background-size: 200%;
  }
}
@media(max-width: 920px) {
  .sorting-box {
      width: 60px;
      height: 60px;
  }

  .sorting-item {
      font-size: 3rem;
  }

  .sorting-correct {
      font-size: 3rem;
  }

  .sorting-count {
      font-size: 3rem;
  }
}
@media(max-width: 850px) {
  .gtb-game-field {
      padding: 50px 0;
  }
  .wof-question-wrapper {
      width: 150px;
      height: 150px;
  }
  .wof-question {
      font-size: .8rem;
      margin: 1rem;
  }
  .wof-zoomed-question{
      top: -45px;
  }
  .wof-question-wrapper:nth-child(1) .wof-question {
      margin-bottom: 1rem;
  }
  .wof-question-wrapper:nth-child(2) .wof-question {
      margin-bottom: 1rem;
  }
  .wof-question-wrapper:nth-child(3) .wof-question {
      text-align: end;
  }
  .wof-input-container {
      bottom: 50px;
  }
  .wof-alert {
      bottom: -73px;
  }
  .wof-answer-input, .wof-answer-button {
      font-size: 1.5rem;
  }
  .wof-answer-button {
      padding: 1.2rem 1rem 1.2rem 2rem;
  }
}
@media(max-width: 768px) {
  .focus-result {
      font-size: 4rem;
  }
  .gtb-game-field {
      padding: 50px;
  }
  .gtb-buttons-container {
      grid-template-columns: repeat(3, 1fr);        
  }
  .gtb-buttons-container>:nth-child(1), .gtb-buttons-container>:nth-child(2), .gtb-buttons-container>:nth-child(3){
      margin-bottom: 40px;
  }
  .sorting-main-container {
      padding: 0;
  }
  .sorting-box {
      width: 55px;
      height: 55px;
  }
  .memory-results {
      font-size: 2rem;
  }
  .wof-answer-input, .wof-answer-button {
      font-size: 1rem;
  }
  .wof-answer-button {
      padding: 1rem 1rem 1rem 2rem;
  }
  .jumper-main-container {
      background-size: 250%;
  }
  .puzzle-game-field, .puzzle2-game-field {
      width: 450px;
      height: 450px;
  }
  .puzzle-piece, .puzzle2-piece, .puzzle2-img, .puzzle2-img-locked {
      width: 150px;
      height: 150px;
  }
  .puzzle2-drop-container, .puzzle2-drop-container-locked {
      width: 150px;
      height: 150px;
  }
  .bird-main-container {
      padding: 0;
  }
}
@media(max-width: 700px) {
  .focus-circle-container {
      scale: .8;
  }
  .sorting-box {
      width: 50px;
      height: 50px;
  }
  .sorting-text, .sorting-results {
      font-size: 1.5rem;
  }
  .sorting-count {
      font-size: 2rem;
  }
  .wof-wheel {
      margin: 1rem;
  }
}
@media(max-width: 650px) {
  .rules-text {
      line-height: normal;
  }
  .frog-type__container {
      padding: 0 10px;
  }
  .frog-type__description {
      font-size: .8rem;
  }
  .focus-main-container {
      padding: 0 1rem 0 0;
  }
  .focus-game-field {
      padding: 1rem;
  }
  .focus-example {
      font-size: 4.5rem;
  }
  .focus-result {
      margin-top: 2rem;
  }
  .memory-game-field {
      grid-template-columns: repeat(4, 1fr);
  }
  .memory-results {
      font-size: 1.5rem;
  }
  .alphabet-main-container {
      margin: 0 1rem 0 0;

  }
  .wof-desktop-button {
      display: none;
  }
  .wof-mobile-button {
      display: block;
      padding: 1rem 5rem;
  }
  .wof-zoomed {
      left: 173px;
  }
  .bomb-bomb {
      width: fit-content;
      height: 150px;
      background-size: 100%;
      margin: 0 auto;
  }
  .bomb-items-container {
      margin: 0 2rem;
      padding: 1rem .5rem;
  }
  .bomb-item {
      padding: .5rem;
  }
  .bomb-buttons-container {
      grid-template-columns: repeat(4, 1fr);
  }
}
@media(max-width: 600px) {
  .focus-circle-container {
      scale: .7;
  }
  .gtb-game-field {
      padding: 40px 0;
  }
  .gtb-buttons-container>:nth-child(1), .gtb-buttons-container>:nth-child(2), .gtb-buttons-container>:nth-child(3){
      margin-bottom: 20px;
  }
  .sorting-box {
      width: 70px;
      height: 70px;
  }
  .sorting-text, .sorting-results {
      font-size: 1rem;
  }
  .sorting-count {
      font-size: 1.5rem;
  }
  .fridge {
      width: 200px;
      height: 649px;
      padding: 120px 35px 132px 30px;
  }
  .fridge-item {
      width: 35px;
      height: 80px;
  }
  .fridge-opened {
      width: 238px;
      padding: 120px 62px 132px 15px;
  }
  .fridge-handle {
      width: 15px;
      height: 193px;
      top: 240px;
  }
  .fridge-glass {
      width: 161px;
      height: 432px;
      top: 110px;
      left: 20px;
  }
  .fridge-wanted-item {
      margin-left: 30px;
  }
  #maze.finished::after {
      font-size: 2rem;
  }
  .wof-arrow {
      margin-right: -2rem;
      z-index: 2;
  }
  .jumper-main-container {
      background-size: 350%;
      background-position: center;
  }
  .puzzle2-main-container {
      justify-content: center;
  }
  .puzzle-game-field, .puzzle2-game-field {
      width: 300px;
      height: 300px;
  }
  .puzzle-piece, .puzzle2-piece, .puzzle2-img, .puzzle2-img-locked {
      width: 100px;
      height: 100px;
  }
  .puzzle2-drop-container, .puzzle2-drop-container-locked {
      width: 100px;
      height: 100px;
  }
  
}
@media(max-width: 500px) {
  .frogs-game-shell {
      background-image: url('../img/pond_mobile_new.png') !important;
  }
  .focus-result {
      font-size: 2rem;
  }
  .gtb-main-container {
      padding: 0;
  }
  .gtb-buttons-container {
      margin-left: -1rem;
  }
  .gtn-correct {
      font-size: 1.5rem;
  }
  .fridge-wanted-item>img {
      width: 50px;
  }
  .wof-arrow {
      width: 60px;

  }
  .wof-zoomed .wof-arrow {
      margin-right: -.5rem;
      transform: scale(.7);
  }
  .wof-zoomed-question {
      scale: .8;
      font-size: 1.3rem;
  }
  .wof-answer-input {
      width: 270px;
  }
  .jumper-main-container {
      background-image: url('../img/Jumper/desert_mobile.png');
      background-size: 150%;
  }
  .bird-game-shell {
      background-size: 150%;
  }
}
@media(max-width: 450px) {
  .sorting-box {
      width: 60px;
      height: 60px;
  }
  .memory-card {
      margin: 5px;
  }
  .maze-main-container {
      margin-left: -.5rem;
      padding: 1rem 0rem 2rem 0rem;
  }
  .wof-zoomed-question {
      top: -35px;
  }
  .wof-input-container {
      bottom: 46px;
  }
  .bomb-bomb {
      height: 110px;
  }
  .bomb-items-container {
      margin: 0;
      padding: 2px;
  }
  .bomb-buttons-container {
      padding: 0;
  }
}
@media(max-width: 400px) {
  .frog-type__container img {
      width: 40px;
  }
  .frog-type__description {
      font-size: .65rem;
  }
  .focus-circle-container {
      top: -150px;
      scale: .5;
  }
  
}