body 
{
    margin: 0px;
    overflow: hidden;
    background-color: #33322f;
}

.iframes 
{
    display: none;
    width: 100%;
    height: 100%;
    border: 0px;
}

.labelRotule
{
    font-family: sans-serif;
    pointer-events: none;
    font-weight: bold;
    font-size: 25px;
    color: white;
    text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}

.labelButton 
{
    font-family: sans-serif;
    pointer-events: none;
    font-weight: bold;
    font-size: 15px;
    color: black;
    text-shadow:
		-1px -1px 0 white,
		1px -1px 0 white,
		-1px 1px 0 white,
		1px 1px 0 white;
}

#parentDiv
{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #33322f;
}

#loading-screen 
{
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 1;
 	transition: 1s opacity;
}

#loading-screen.fade-out 
{
    opacity: 0;
}

#loader 
{
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    -webkit-animation: spin 2s ease-in-out infinite;
    animation: spin 2s ease-in-out infinite;
    background: url(../resources/ui/load.png) no-repeat center;
}

@-webkit-keyframes spin 
{
    0%   
    {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% 
    {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin
 {
    0%   
    {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% 
    {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#exitButton
{
    display : block;
    position: fixed;
    border: none;
    height: 0; 
    width: 8%;
    top : 20px;
    right: 20px;
    padding-bottom: 8%; 
    background: url(../resources/ui/back.png) no-repeat center;
    background-size:cover;
}

#maximizeButton
{
    display: none;
    position: fixed;
    border: none;
    height: 0; 
    width: 8%;
    bottom : 20px;
    right: 20px;
    padding-bottom: 8%;
    background: url(../resources/ui/maximize.png) no-repeat center;
    background-size:cover;
}

#swapFarmButton
{
    display: block;
    position: fixed;
    border: none;
    height: 0; 
    width: 8%;
    bottom : 20px;
    left: 20px;
    padding-bottom: 8%;
    background: url(../resources/ui/swap.png) no-repeat center;
    background-size:cover;
}