.login_bg {
/*	background-image: url('../images/main_bg_solid.jpg');*/
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	height: 100vh;
	padding: 0 !important;
	overflow-x: hidden;
	overflow-y: hidden;
}
#imageContainer {
	position: relative;
    width: calc(120vh);
    height: calc(140vh);
    left: calc(50% - 70vh);
    background: transparent;
    overflow: hidden;
    top: calc(50% - 90vh);
}

#imageContainer::before {
	content: "";
    position: absolute;
    width: 250%;
    height: 100%;
    background-image: url(../images/main_bg_shape_new.jpg);
    background-size: 100% 100%;
    background-position: center;
    transform: rotate(85deg) scale(3);
    animation: bg_rotate 100s linear infinite !important;
/*    opacity: 0.2;*/
    left: calc(50% - 65vh);
    top: calc(50% - 70vh);
    overflow: hidden;
}

.body_content {
	max-width: 500px;
	position: absolute;
	top: 0;
	height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    z-index: 11;
}

@keyframes bg_rotate {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}
.login_name {
	padding: 5px 25px 10px 60px;
    font-size: 14px;
	color: #69b8f7 !important;
	font-family: 'Invention Regular';
	border: 0;
	background-image: url('../images/login_name_box.png');
	background-size: contain;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 80% center;
	height: 80px;
	width: 60%;
	margin: 0 auto;
}
.login_name:focus {
	background-color: transparent;
	border: 0 !important;
	outline: none !important;
    -webkit-box-shadow: none;
		box-shadow: none;
}
*:focus {
    outline: none !important;
    -webkit-box-shadow: none;
		box-shadow: none;
}
.login_name::placeholder {
	color: #69b8f7;
	opacity: 0.5;
}
.login_name::-ms-input-placeholder {
	color: red;
}
.play_btn {
	margin: 0 auto;
	width: 35%;
	filter: grayscale(1);
	cursor: not-allowed;
}
.play_link_btn {
	margin: 0 auto;
	width: 35%;
	filter: grayscale(1);
}
.checkbox_bg {
	width: 40%;
	float: right;
}
.checked_checkbox_bg {
	width: 50%;
	float: right;
}

.login_word {
	position: absolute;
}
.login_word_G {
    width: 13%;
    left: 34%;
    top: 29%;
    animation: rollintop 1s ease 0s 1 normal forwards, floating 20s linear infinite;
}
.login_word_T {
	width: 21%;
    right: 15%;
    top: 23%;
    filter: blur(3px);
    z-index: 10;
    animation: rollintop 1s ease 0s 1 normal forwards, floating2 20s linear infinite;
/*    animation-delay: 5s;*/
}
.login_word_V {
    width: 6%;
    top: 34%;
    left: 55%;
    animation: rollintop 1s ease 0s 1 normal forwards, floating 20s linear infinite;
/*    animation-delay: 10s;*/
}
.login_word_P {
    width: 6%;
    top: 40%;
    left: 50%;
    animation: rollintop 1s ease 0s 1 normal forwards, floating2 20s linear infinite;
/*    animation-delay: 15s;*/
}
.login_word_F {
	width: 11%;
    right: 20%;
    top: 40%;
    z-index: 9;
    animation: rollintop 1s ease 0s 1 normal forwards, floating 20s linear infinite;
/*    animation-delay: 5s;*/
}
.login_word_Y {
	    width: 6%;
    right: 21%;
    top: 60%;
    animation: rollintop 1s ease 0s 1 normal forwards, floating2 20s linear infinite;
/*    animation-delay: 10s;*/
}
.login_word_M {
	width: 26%;
    left: 25%;
    top: 75%;
    filter: blur(3px);
    animation: rollintop 1s ease 0s 1 normal forwards, floating 20s linear infinite;
/*    animation-delay: 15s;*/
}
.login_word_S {
	width: 14%;
    left: 54%;
    top: 82%;
    animation: rollintop 1s ease 0s 1 normal forwards, floating2 20s linear infinite;
/*    animation-delay: 5s;*/
}
.login_word_D {
	width: 16%;
    right: 15%;
    top: 77%;
    animation: rollintop 1s ease 0s 1 normal forwards, floating 20s linear infinite;
/*    animation-delay: 10s;*/
}

@keyframes rollintop {
	0% {
		animation-timing-function: ease-in;
		transform: translateY(-250px);
	}

	38% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateY(-65px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateY(-28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateY(-8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}
}

@keyframes floating {
	0%,
	100% {
		transform: translateY(0);
	}

	10%,
	30%,
	50%,
	70% {
		transform: translateY(-8px);
	}

	20%,
	40%,
	60% {
		transform: translateY(8px);
	}

	80% {
		transform: translateY(6.4px);
	}

	90% {
		transform: translateY(-6.4px);
	}
}
@keyframes floating2 {
	0%,
	100% {
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70% {
		transform: translateX(-10px);
	}

	20%,
	40%,
	60% {
		transform: translateX(10px);
	}

	80% {
		transform: translateX(8.4px);
	}

	90% {
		transform: translateX(-8.4px);
	}
}

.puzzle_icon {
	width: 360px;
	display: block;
	margin: 0 auto;
	margin-bottom: -10px;
	animation: puzzle_icon 1s ease 0s 1 alternate forwards;
	/*filter: drop-shadow(10px 10px 30px #00000030);*/
}
@keyframes puzzle_icon {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: scale(0);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(1);
	}

	55% {
		animation-timing-function: ease-in;
		transform: scale(0.7);
	}

	72% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}

	81% {
		animation-timing-function: ease-in;
		transform: scale(0.84);
	}

	89% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}

	95% {
		animation-timing-function: ease-in;
		transform: scale(0.95);
	}

	100% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}
}

.promomat {
	padding: 20px;
    background-color: #00857c90;
    width: 85%;
    margin: 0 30px;
    position: absolute;
    bottom: -40px;
}

@media (max-width: 432px) and (min-width: 392px) {
    #imageContainer::before {
		width: 130%;
	    height: 100%;
	    left: calc(50% - 67vh);
	    top: calc(50% - 60vh);
	}
	.puzzle_icon {
    	width: 340px;
    }
}
@media only screen and (min-width: 501px) {
    .body_content {
    	height: 100vh;
    }
    #imageContainer::before {
		left: calc(50% - 140vh);
    	top: calc(50% - 50vh);
	}
	.puzzle_icon {
        width: 330px;
	}
	.space_before_promomat {
        height: 20px;
    }
    .promomat {
        bottom: 10px;
    }
}
@media only screen and (max-width: 391px) {
	.login_name {
        font-size: 13px;
		padding: 5px 25px 10px 55px;
    }
    .puzzle_icon {
    	width: 340px;
    }
    #imageContainer::before {
        left: calc(-10% - 65vh);
        top: calc(50% - 70vh);
    }
}