body {
    width: 300 dp;
}

/* The animation code */
@keyframes preload-image-anim {
    0%   {opacity:0}
    40%  {opacity:0}
    50%  {opacity:100}
    90%  {opacity:100}
    100% {opacity:0}
  }
  
  @keyframes preload-image-flip-front {
    0%   {transform: rotateY(0deg);}
    40%  {transform: rotateY(0deg);}
    50%  {transform: rotateY(180deg);}
    90%  {transform: rotateY(180deg);}
    100% {transform: rotateY(360deg);}
  }

  @keyframes preload-image-flip-back {
    0%   {transform: rotateY(180deg);}
    40%  {transform: rotateY(180deg);}
    50%  {transform: rotateY(360deg);}
    90%  {transform: rotateY(360deg);}
    100% {transform: rotateY(540deg);}
  }
  

.start-img {
    position: relative;
    max-width: 80%;
    max-height: auto;
    animation-name: preload-image-anim;

}

.start-img-flip {
   width:100%;
   height:100%;

}

.start-img-anim {
    max-width: 80%;
    max-height: auto;
    animation-name: preload-image-anim;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    opacity: 0;
  

}


.flip-card {
    background-color: transparent;
    width: 75vw;
    height:75vw;
/*     border: 1px solid #f1f1f1; */
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  
  
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    animation-duration: 5s;
    animation-iteration-count: infinite;

    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    transform-style: preserve-3d;
    animation-name:  preload-image-flip-front;

  }
  
  /* Style the back side */
  .flip-card-back {
   /*  background-color: dodgerblue; */
    color: white;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    animation-name:  preload-image-flip-back;

  }


.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }



.start-img-round {
    max-width: 220px;
    max-height: 220px;
}

.wrapper {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    perspective: 1000px;
}

.progress-bar {
    background-color: #ffffff !important;
    /*max-width: 300px;*/
    max-width: 220px;
    -ms-flex-preferred-size: 220px;
    flex-basis: 220px;
    /*max-height: 150px;*/
    max-height: 15px;
}


.percentage {
    font-size: 2.6rem;
    fill: #FF4D5A;
    font-family: "CharliePro-Medium", sans-serif;
}

.cookies-title {
    font-size: 1.2rem;
    font-family: "Charlie-Med";
}

.cookies-txt {
    margin: 0 auto;
    color: #002D4C;
    font-size: 0.7rem;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
    line-height: 1.1;
    max-width: 300px;
    /*opacity: 0;*/
    opacity: 0.7;
    display: none;
}

.continue-btn, .more-btn, .back-btn {
    width: 240px;
    font-size: 1.2rem;
    border-radius: 25px;
    /*padding: 1vh 30px;*/
    padding: 13px 20px 9px;
    /*background-color: rgba(255,77,90,0.5);*/
    background-color: rgb(255, 77, 90);
    color: rgb(255, 255, 255);
    border: 1px rgba(255, 77, 90, 1) solid;
    /*padding-bottom: 10px;*/
    cursor: pointer;
    /*opacity: 0;  */
    display: none;
    margin: 0 auto 16px;
    transition: all 0.2s ease-in;
}

.button-wrapper {
    height: 68px;
}

.continue-btn:focus, .more-btn:focus {
    outline: none;
}


html {
    overflow: hidden;
}

body {
    overflow: hidden;
}

.vertical-center {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 16px;
}

.wrapper-container {
    margin-top: 20px;
}

@media (min-height: 500px) {
    .cookies-title {
        font-size: 1.3rem;
    }

    .cookies-txt {
        font-size: 0.9rem;
    }

    /*
    .vertical-center{
        margin-top: -40px;
    }
    */
    .wrapper-container {
        margin-top: 50px;
    }

}

@media (min-height: 650px) {

    .wrapper-container {
        margin-top: 70px;
    }

}

@media (min-height: 800px) {
    .cookies-title {
        font-size: 1.3rem;
    }

    .cookies-txt {
        font-size: 0.9rem;
    }
}

@media (min-width: 900px) {

    .cookies-title {
        font-size: 1.8rem;
    }

    .cookies-txt {
        font-size: 1.2rem;
        max-width: 800px;
    }

    .progress-bar {
        max-width: 220px;
        -ms-flex-preferred-size: 220px;
        flex-basis: 220px;
        max-height: 15px;
        /*
        max-height: 220px;
        max-width: 300px;
     */
    }

    .start-img {
        max-width: 400px;
        max-height: 400px;

    }
    .start-img-anim {
        max-width: 400px;
        max-height: 400px;

    }

    
    .start-img-round {
        max-width: 220px;
        max-height: 220px;
    }


    .flip-card {
        max-width: 400px;
        max-height: 400px;

      }

}

@font-face {
    font-family: "Charlie-Med";
    src: url(font/CharliePro-Medium.woff) format("woff");
}

@-ms-viewport {
    width: device-width;
}

@media only screen and (min-device-width: 800px) {
    html {
        overflow: hidden;
    }
}

#content_div {
    -webkit-transition: width 3000ms ease-in-out, height 3000ms ease-in-out;
    -moz-transition: width 3000ms ease-in-out, height 3000ms ease-in-out;
    -o-transition: width 3000ms ease-in-out, height 3000ms ease-in-out;
    transition: width 3000ms ease-in-out, height 3000ms ease-in-out;
}
