@charset "utf-8";
/* CSS Document */

/* additives */
.shadowed {
    -webkit-filter: drop-shadow(0.2rem 0.2rem 0.2rem #000);
     filter: drop-shadow(0.3rem 0.2rem 0.2rem #000); 
}

.shadowed-2 {
    -webkit-filter: drop-shadow(0 0.3rem 0.3rem #000);
     filter: drop-shadow(0 0.3rem 0.3rem #000); 
}

/* transit */
.transit {	
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-ms-trasition: all 1s ease-in-out;
	transition: all 1s ease-in-out;	format */
}

.transit-05s {	
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-trasition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;	format */
}

.transit-2s {	
	-moz-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	-webkit-transition: all 2s ease-in-out;
	-ms-trasition: all 2s ease-in-out;
	transition: all 2s ease-in-out;	format */
}

/* text-shadow */
.txt-shadow {
	text-shadow: 2px 2px 4px #000;
}

/* grayscale */
.grayscale {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

/* opacity */
.opacity {
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
}

/* shadow */
.shadow-in {
	-webkit-box-shadow: inset 0 2em 2em -2em rgba(0,0,0,0.8);
    -moz-box-shadow: inset 0 2em 2em -2em rgba(0,0,0,0.8);
     box-shadow: inset 0 2em 2em -2em rgba(0,0,0,0.8);
}

.shadow-out {
	-webkit-box-shadow: 0 2rem 2rem -2rem rgba(0,0,0,0.8);
    -moz-box-shadow: 0 2rem 2rem -2rem rgba(0,0,0,0.8);
     box-shadow: 0 2rem 2rem -2rem rgba(0,0,0,0.8);
}

.text-shadow: { 0em 0.1em 0.1em rgba(0,0,0,0.90); }

.pix-shadow: {
	-webkit-filter: drop-shadow(0.1rem 0.1rem 0.1rem #000);
            filter: drop-shadow(0.1rem 0.1rem 0.1rem #000);
}

.text-transform {
	text-transform: uppercase;
}

/* fadein */
.fadein {		
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;	
}

@keyframes fadein {	
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* slideout */
.about {
    color: #F60;    
    line-height: 115%;  
}

#slideout {
    position: fixed;
    top: 3.1rem;
    left: 0;
    display: none;
    transition-duration: 0.3s;
    z-index: 98;
}

#slideout_inner {
    position: fixed;
    top: 3.1rem;
    left: -17rem;
    width: 17rem;
    height: auto;
    background: rgba(0, 0, 0, 0.7);     
    border-radius: 0 1rem 1rem 0;   
    transition-duration: 0.3s;
}

#slideout_container {
    color: #FFF;
    font-family: "Khand Medium";
    font-size: 1.05rem;
    padding: 1rem;
}

#slideout:hover { left: 17rem; }
#slideout:hover #slideout_inner { left: 0; }

/* shake */
.shake {
    animation-name: shake;
    animation-duration: 0.2s;
    transform-origin: 50% 50%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}   

@keyframes shake {
      0% { transform: translate(2px, 1px) rotate(0deg); }
     10% { transform: translate(-1px, -2px) rotate(-1deg); }
     20% { transform: translate(-3px, 0px) rotate(1deg); }
     30% { transform: translate(0px, 2px) rotate(0deg); }
     40% { transform: translate(1px, -1px) rotate(1deg); }
     50% { transform: translate(-1px, 2px) rotate(-1deg); }
     60% { transform: translate(-3px, 1px) rotate(0deg); }
     70% { transform: translate(2px, 1px) rotate(-1deg); }
     80% { transform: translate(-1px, -1px) rotate(1deg); }
     90% { transform: translate(2px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/* preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff; /* change if the mask should have another color then white */
	z-index: 9999; /* makes sure it stays on top */
}

#status {
	width: 200px;
	height: 200px;
	position:absolute;
	left: 50%; /* centers the loading animation horizontally one the screen */
	top: 50%; /* centers the loading animation vertically one the screen */
	background-image: url(../index_files/status.gif); /* path to your loading animation */
	background-repeat: no-repeat;
	background-position: center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}

/* #5f9500  #6C0 */

/* <div id="lang-bar">
  <a href=""><div class="lang-buttons txt-shadow transit">SRPSKI</div></a>
  <a href=""><div class="lang-buttons txt-shadow transit">ENGLESKI</div></a>      
</div> */