.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.text-justify {
	text-align: justify !important;
}

/* WORDS SWAP */

[data-words]{
	vertical-align: top;
	position: static;
}

[data-words] > span{
	color: gold;
	position: absolute;
	text-shadow: 1px 1px 5px #000;
}

.logo-image {
	width: 100%;
	border-radius: 50%;
	transition: all .5s ease-in-out;
	filter: blur(5px);
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
}

.logo-image:hover {
	transform: scale(5);
	z-index: 9999;
	margin-top: 150px;
}

.blur {
	-webkit-animation: blur 0.5s linear forwards;
	-moz-animation: blur 0.5s linear forwards;
	-ms-animation: blur 0.5s linear forwards;
	-o-animation: blur 0.5s linear forwards;
	animation: blur 0.5s linear forwards;
	-webkit-animation-delay: .5s;
	-moz-animation-delay: .5s;
	animation-delay: .5s;
}

.delay {
	-webkit-animation-delay: .5s;
	-moz-animation-delay: .5s;
	animation-delay: .5s;
}

@-webkit-keyframes blur {
	to {
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}

@-moz-keyframes blur {
	to {
		-moz-filter: blur(0);
		filter: blur(0);
	}
}

@keyframes blur {
	to {
		-webkit-filter: blur(0);
		-moz-filter: blur(0);
		filter: blur(0);
	}
}

/* The whole thing */
.custom-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    overflow: hidden;
    border: 1px solid #CCC;
    white-space: nowrap;
    /* font-family: sans-serif; */
    background: #FFF;
    color: #333;
    border-radius: 5px;
    padding: 0;
}

/* Each of the items in the list */
.custom-menu li {
    padding: 0;
    cursor: default;
    list-style-type: none;
    transition: all .3s ease;
}

.custom-menu li:hover {
    background-color: #DEF;
}

ul.tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: transparent;
	display:table;
    width:100%;
}

/* Float the list items side by side */
ul.tab li {
	padding: 0;
	margin: 0;
	display:table-cell;
}

/* Style the links inside the list items */
ul.tab li a {
    display: block;
    color: #f1f1f1;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
	text-transform: uppercase;
}

/* Change background color of links on hover */
ul.tab li a:hover {
    background-color: #ddd;
	color: #000;
}

/* Create an active/current tablink class */
ul.tab li a:focus, .active {
    background-color: #a1a1a1;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 10px 0;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

#error {
	display: none;
}