body{   
    background: lightblue;  
    overflow-x: hidden;
    min-width: 600px;
    animation: bodyopacity 2s;
}  
.divlogo {
    text-align: center;
    filter: drop-shadow(5px 5px 5px #222);
    font-size:calc(8px + 0.5vw);
}
.info {
    filter: drop-shadow(5px 5px 5px #222);
    opacity: 0.95;
}
.info .infotext {
    margin: 15px;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s;
    width: 300px;
    background-color: lightgrey;
}
.info:hover .infotext {
    visibility: visible;
    opacity: 1;
    border-style: outset;
    border-width: 3px;
    border-color: grey;
}
.info .infotext::after {
    content: " ";
    position: absolute;
    top: 70%;
    right: 100%; /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}
#frm{  
    position: relative;
    border: solid gray 1px;  
    width: 25%;
    min-height: 400px;
    min-width: 400px;
    border-radius: 10px;  
    margin: 50px auto;  
    background-color: blue;
    background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(48,87,229,1) 0%, rgba(173,216,230,1) 100%);  
    opacity: 0.95;
    padding: 50px;
    text-align: center;
}  
#btn{  
    color: #fff;  
    background: #337ab7;  
    padding: 20px;  
    text-align: center;
    font-size: 25px;
    border-radius: 10px;
    margin-top: 10px;
}  
.buttonHolder{ 
    margin: 0;
    position: absolute;
    top: 80%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    filter: drop-shadow(5px 5px 5px #222);
}
.container{
    font-size: 20px;
}
input[type=text], select, textarea {
    margin: 10px 10px 10px 10px;
    width: 100%;
    padding: 12px;
    border: 3px solid grey;
    border-radius: 8px;
    resize: vertical;
    letter-spacing: 5px;
    font-weight: bold;
    text-align: center;
    border-style: double;
}
/* droplet water */
.drop {
  position: relative;
	width: 20px;
	height: 20px;
  top: -20px;
  margin: 0 auto;
  background: #FFF;
/*  -moz-border-radius: 20px;*/
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -moz-animation-name: drip;
  -webkit-animation-name: drip;
  animation-name: drip;
  -moz-animation-timing-function: cubic-bezier(1,0,.91,.19);
  -webkit-animation-timing-function: cubic-bezier(1,0,.91,.19);
  animation-timing-function: cubic-bezier(1,0,.91,.19);
  -moz-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.drop:before {
  content: "";
  position: absolute;
  width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 30px solid rgba(255,255,255,1);
  top: -22px;
}

@keyframes drip {
    to {
      top: 900px;
    }
}

/* END DRIP */
/* OCEAN WAVE */
.ocean {overflow-x: clip; height: 15%; width: 100%; position: relative; bottom: -120px; left: 0; background: #015871;} 
.wave {background: url(/images/wave.svg) repeat-x; position: absolute; top: -198px; width: 6400px; height: 198px; animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite; transform: translate3d(0, 0, 0);} 
.wave:nth-of-type(2) {top: -175px; animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite; opacity: 1;}
.waveopa {height: 100vw; position: relative; animation: waveopacity 10s 1;}
@keyframes waveopacity {0%   {opacity: 1;} 1%  {opacity: 0.1;} 100% {opacity: 1;}}
@keyframes wave {0% {margin-left: 0;} 100% {margin-left: -1600px;}} @keyframes swell {0%,100% {transform: translate3d(0, -25px, 0);} 50% {transform: translate3d(0, 5px, 0);}} .endWave{display:none;}
@keyframes bodyopacity {0%   {opacity: 1;} 1%  {opacity: 0.1;} 100% {opacity: 1;}}

/*GDPR*/
.gdpr {
  -webkit-animation: gdprshake 15s forwards;
  border: solid black 1px;
  width: 70%;
  min-width: 350px;
  padding: 20px;
  transition: all 0.5s;
  border-radius: 5px;
  position: relative;
  background: lightgreen;
  text-align: center;
  font-weight: bold;
  margin: 10px auto;
  display: block;
  opacity: 0.4;
  filter: drop-shadow(5px 5px 5px #222);
}
.gdprcontainer:hover .gdpr{
  opacity: 0.95 !important;
}
.gdprcontainer {
  background-image: url("../images/fingerprint64.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 70%;
  min-width: 350px;
  min-height: 100px;
  transition: all 0.5s;
  border-radius: 5px;
  position: relative;
  text-align: center;
  font-weight: bold;
  margin: 10px auto;
  display: block;
}

.gdpricon {
  filter: drop-shadow(5px 5px 5px #222);
  font-weight: normal;
}
@-webkit-keyframes gdprshake {
  0% {
    transform: translateX(-5px);
  }
  5% {
    transform: translateX(5px);
  }
  10% {
    transform: translateX(-5px);
  }
  15% {
    opacity: 0.95;
    transform: translateX(5px);
  }
  20% {
    transform: translateX(-5px);
  }
  25% {
    transform: translateX(5px);
  }
  25% {
    transform: translateX(0);
  }
  90% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

.paper {
  z-index: 1;
  margin-top: 50px;
  margin-right: 30px;
  float: right;
  border: 1px solid rgba(0,0,0,0.2);
  border-top-right-radius: 68px 2px;
  border-top-left-radius: 2px 53px;
  border-bottom-right-radius: 2px 73px;
  border-bottom-left-radius: 78px 1.3px;
  box-shadow: 15px 28px 25px -18px rgba(0,0,0,.9);
  font-family: 'Comic Sans MS', 'sans-serif';
}

.sticky-notes {
  background-color: white;
  width: 200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: lightyellow;
  transform: rotate(10deg);
  position: relative;
}

.sticky-notes::before,
.sticky-notes::after {
  content: '';
  background-color: darkred;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #4C0000;
}

.sticky-notes::before {
  width: 20px;
  height: 20px;
  top: -10px;
  left: -10px;
}

.sticky-notes::after {
  width: 10px;
  height: 10px;
  top: -5px;
  left: -5px;
}
