 

html{  background-color: #000;}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.bg {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
        text-align: center;
    }
.bg p#l1 {
    color: #7d6060;
    font-size: 27pt;
    text-shadow: 0 0 1px #fff, 0 0 2px #000000, 0 0 5px #000000, 0 0 11px #7b2c2c, 0 0 20px #8d304f, 0 0 30px #eb707a, 0 0 55px #eb7070, 0 0 80px #eb7070;    
}
.bg p#l2 {
    color: #2081a0;
    font-size: 27pt;
    text-shadow: 0 0 1px #fff, 0 0 2px #000000, 0 0 5px #000000, 0 0 11px #2c547b, 0 0 20px #305f8d, 0 0 30px #70afeb, 0 0 55px #70afeb, 0 0 80px #70afeb;
}
.bg #text {
  position: relative;
  font-size: 38pt;
  color: #fff;
  opacity: 0.6;
}
.bg .fog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.bg .fog img {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  animation: fog_effect calc(3s * var(--i)) ease-in infinite;
}
.bg #v1 {background-color: red;}
.bg #v2 { background-color: blue;}

.fl1small, .fl2small {
  width: 80%;
}


@keyframes fog_effect {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  25%,
  75% {
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

#share { text-align: center; }
#share a, #sharediv a {text-decoration: none;color: #fff;}

#sharediv {
  display: none;
  text-align: center;
}
#sharediv img {
    width: 80%;
}

.form_radio_btn {
	display: inline-block;
	margin-right: 10px;
}
.form_radio_btn input[type=radio] {
	display: none;
}
.form_radio_btn label {
    display: inline-block;
    cursor: pointer;
    padding: 0px 15px;
    line-height: 34px;
    border: 1px solid #999;
    color: #fff;
    border-radius: 6px;
    user-select: none;
    width: 140px;
    height: 70px;
    text-align: center;
    font-size: 15pt;
    margin-top: 10px;
    padding-top: 15px;
    margin-bottom: 25px;
    border-radius: 50px;
}
 
.form_radio_btn.v1 label {
    background-color: #6b6b6b;
}
.form_radio_btn.v2 label {
    background-color: #6b6b6b;
}

/* Checked */
.form_radio_btn.v1 input[type=radio]:checked + label {
	//background: #ffe0a6;
    border:3px solid #fff;
    background-color: #d34d00;
}

.form_radio_btn.v2 input[type=radio]:checked + label {
	//background: #ffe0a6;
    border:3px solid #fff;
    background-color: #3091ae;
}

/* Hover */
.form_radio_btn label:hover {
	//color: #666;
}
 
/* Disabled */
.form_radio_btn input[type=radio]:disabled + label {
	background-color: #8d8d8d;
	//color: rgb(255, 255, 255);
}

.fl3 {
    width: 100% ; 
    position: absolute; 
    opacity: 0.3;}

.fl1, .fl2 {opacity: 0;  width: inherit; position: absolute;}

#vote {
  width: 90%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    color: #fff;
    font-size: 13pt;
text-align: center;
}
#vote img {width: 80%;}
#vote span {   color: #fff;
    font-size: 40pt;}

.imgflow{
    position: absolute;
    width: 100%;
    height: 400px;
 
        display: flex;
    justify-content: center;
}

.hidealertdiv {   opacity: 0;}

.hidealert {     
    background: #0000005e;
    padding: 10px 35px;
    border: 2px solid #753c3c;
    border-radius: 50px;
    margin-bottom: 10px;

}

.hidealert .aller {
    font-size: 20pt;
    color: #fff;
    text-align: center;
}




button {
	width: 150px;
	height: 50px;
	background: #fff;
	border: 4px solid #006335;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 100ms;
}

span,
svg {
	position: absolute;
	color: #000;
	fill: transparent;
	text-transform: uppercase;
	letter-spacing: 2px;
  font-weight: bold;
}

button.act {
	outline: none;
	border: 2px solid #1e2a78;
	width: 50px;
	border-left: 4px solid #1e2a78;
	border-bottom: 4px solid #1e2a78;
	animation: spin 2s 500ms forwards;
}

button.act span {
	color: transparent;
}

button.act svg {
	animation: check 500ms 2300ms forwards;
}

@keyframes spin {
	80% {
		border: 4px solid transparent;
		border-left: 4px solid #303a52;
	}
	100% {
		transform: rotate(1080deg);
		border: 4px solid #303a52;
	}
}

@keyframes check {
	to {
		fill: #17b978;
	}
}

@keyframes circle {
	to {
		border: 4px solid #303a52;
    color: blue;
	}
}
