/* preloader styles */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	white-space: nowrap;
	text-align: center;
	background: $desert-storm;
	z-index: 99;
	transition: all linear .3s;
	background-color: #474D4B;

	&:before {
		content: '';
		display: inline-block;
		vertical-align: middle;
		height: 100%;
		margin-right: -0.25em;
	}

	&.loaded {
		opacity: 0;
		visibility: hidden;
		z-index: -1;
	}

	.holder {
		display: inline-block;
		vertical-align: middle;
		white-space: normal;
	}
}

/*coffee cup*/
.coffee_cup{
    width: 40px;
    height: 50px;
    border: 2px #6B6957 solid;
    border-radius: 0px 0px 5px 5px;
    position: relative;
    margin: 36px auto;
}

.coffee_cup:after, .coffee_cup:before{
    position: absolute;
    content: "";
}

.coffee_cup:after {
    width: 10px;
    height: 20px;
    border: 2px #6B6957 solid;
    border-left: none;
    border-radius: 0 20px 20px 0;
    left: 40px;
    top: 5px;
}

.coffee_cup:before{
    width: 3px;
    height: 10px;
    background-color: #6B6957;
    top: -16px;
    left: 12px;
    box-shadow: 5px 0px 0px 0px #6B6957,
                5px -5px 0px 0px #6B6957,
                10px 0px 0px 0px #6B6957;
    -webkit-animation: steam 700ms linear infinite alternate;
       -moz-animation: steam 700ms linear infinite alternate;
            animation: steam 700ms linear infinite alternate;
}

@-webkit-keyframes steam{
    0%{height: 0px;}
    100%{height: 10px;}            
}
@-moz-keyframes steam{
    0%{height: 0px}
    100%{height: 10px;}            
}
@keyframes steam{
    0%{height: 0px}
    100%{height: 10px;}            
}