* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    color: inherit;
}

body {
    background-image: linear-gradient(120deg, #4f0088 0%, #000000 100%);
    height: 100vh;
    font-family: Arial,sans-serif;
}

h1 {
    font-size: 45vw;
    text-align: center;
    position: fixed;
    width: 100vw;
    z-index: 1;
    color: #ffffff26;
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: bold;
}

.main {
    background: rgba(0, 0, 0, 0);
    width: 70vw;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0 auto;
    padding: 30px 30px 10px;
    box-shadow: 0 0 150px -20px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

P {
    color: #f5f5f5;
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.2;
}

span {
    color: #f0c674;
}

i {
    color: #8abeb7;
}

.main a {
	color: #ffffff;
    text-decoration: none;
    cursor:pointer;
}

b {
    color: #81a2be;
}

a.avatar {
    position: fixed;
    bottom: 15px;
    right: -100px;
    -webkit-animation: slide 0.5s 4.5s forwards;
            animation: slide 0.5s 4.5s forwards;
    display: block;
    z-index: 4
}

a.avatar img {
    border-radius: 100%;
    width: 44px;
    border: 2px solid white;
}
/* Precon Options */ 
.elena-options {
    position: fixed;
    display: block;
    z-index: 99998;
    padding: 20px;
    width: 200px;
    background: #fff;
    text-align: left;
    top: 50%;
    margin-top: -172.95px;
    -webkit-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    z-index: 1300000;
    right: -200px;
    margin-top: -215px;
}
.elena-options .icon {
	position: absolute;
	left: -50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	border-radius: 5px 0 0 5px;
	background: #fff;
	color: #444;
	text-align: center;
	background: #fff;
	color: #555 !important;
	top: 0;
	cursor: pointer;
	box-shadow: -7px 1px 8px #00000012;
}
.elena-options .icon i {
	cursor: pointer;
	color: #000;
}
.elena-options h4 {
	display: block;
	font-size: 15px;
	margin-bottom: 10px;
}
.elena-options .single-option p {
	line-height: 20px;
	margin-bottom: 15px;
}
.elena-options ul li{
	font-weight:500;
	font-size:14px;
}
.elena-options ul li a{
	color:#555;
}

.elena-options .select-layout a {
	border: 1px solid #ccc;
	text-align: center;
	padding: 5px 0;
	outline: none;
	display: inline-block;
	padding: 5px 17px;
	color: #353535;
	cursor:pointer;
}
.elena-options .single-option .bg-pattern {
    margin-top: -3px;
}
.elena-options .single-option .bg-pattern li {
    display: inline-block;
    margin-top: 3px;
}
.elena-options .single-option .bg-pattern li img {
    width: 46px;
    height: 36px;
}
.elena-options span {
    width: 48px;
    height: 40px;
    cursor: pointer;
    display: inline-block;
    border: 2px solid #f5f5f5;
	position:relative;
}
.elena-options span:before,
.elena-options span:after{
    content: "";
    position: absolute;
	width: 100%;
    height: 100%;
	left:0;
}
/* Skin 1 */
.elena-options span.skin1:before {
    background: #2d7dff;
}
.elena-options span.skin2:before {
    background: #4f0088;
}
.elena-options .single-option {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	outline:none;
	    transform: unset;
}
.elena-options .single-option:last-child{
	margin:0;
	padding:0;
	border:none;
}
.elena-options span{
	position:relative;
}
.icon-gear-fill {
	display: inline-block;
    animation:revolve 2s infinite linear;
	-webkit-animation:revolve 2s infinite linear;
}
@keyframes revolve {
	from {
		-webkit-transform:rotate(0deg);
		transform:rotate(0deg);
	}
	to {
		-webkit-transform:rotate(359deg);
		transform:rotate(359deg);
	}

}

@-webkit-keyframes slide {
    from {
        right: -100px;
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
        opacity: 0;
    }
    to {
        right: 15px;
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes slide {
    from {
        right: -100px;
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
        opacity: 0;
    }
    to {
        right: 15px;
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
        opacity: 1;
    }
}