/*body {
     background: rgb(49,0,144);
     background: radial-gradient(circle, rgba(49,0,144,1) 0%,rgba(15,0,48,1) 80%);
     min-height: 100vh;
}*/
body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: linear-gradient(to right, rgba(0,0,0, 0.65) 0 100%), url(/static/images/bg.jpg);
  background-size: cover;
  color: white;
}
 .loader-container {
     max-width: 210px;
     margin: 0 auto;
}
 .cookie-machine {
     max-width: 400px;
     width: fit-content;
     margin: 0 auto;
     position: relative;
}
 .cookie-machine > img {
     display: block;
     position: relative;
     right: -20px;
}
h2 {
  text-align: center;
  color: white;
}
span {
  text-align: center;
  color: #ffd700;
}
#flag {
  text-align: center;
  color: #ffd700;
  font-weight: bold;
}
.cookiewrapper {
    position: absolute;
    overflow: hidden;
    display: flex;
    height: 200px;
    width: 93%;
    bottom: 20px;
    padding: 0 25px;
    margin-left: 22px;
      background: #fff;
}
.cookiewrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    float: left;
    width: 200px;
    height: 200px;
    font-size: 150px;
    line-height: 200px;
    text-align: center;
}
.cookiewrapper ul li img {
    vertical-align: top;
}
.cookiewrapper > ul > li {
    background: #fff;
    font-size: 0.5em;
/*   box-shadow: 0px 0px 49px 15px rgba(0,0,0,0.37) inset;
-webkit-box-shadow: 0px 0px 49px 15px rgba(0,0,0,0.37) inset;
-moz-box-shadow: 0px 0px 49px 15px rgba(0,0,0,0.37) inset; */
  
}
.cookie-machine-btn {
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translate(0, -50%);
    background: transparent;
    border: none;
    width: 80px;
    margin-top: 70px;
    transition: 0.4s all ease-in-out;
}
.cookie-machine-btn.clicked {
    transform: translate(0, -50%) rotateX(190deg);
}
button#btn-example1:hover > img {
    filter: drop-shadow(2px 4px 6px yellow);
}
button#btn-example1 > img {
    transition: 0.4s all ease-in-out;
   user-select: none;
}
:not(button) img {
  pointer-events: none;
}
