/* Loader */
#loader {
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
}

#loader .spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #eee;
    border-top: 3px solid #000;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    -webkit-animation: spin 1s infinite linear;
    -moz-animation: spin 1s infinite linear;
    -o-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}

#loader {
    background: rgba(255, 255, 255, 1);
    z-index: 999999;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Loader */

body {
    width: 100%;
}

html,
body,
ul,
li,
form,
p,
dl,
dt,
dd,
ol,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    color: #000;
    font-style: 14px;
    height: 100%;
}

body{
	/*
	background:url(../images/bg_desktop.jpg);
	/*background-size:100%;* /
	background-size:cover;
	background-position:top center;
	*/
	background:transparent;
	/*color:#fff;*/
	/*background:#ffcfa5;*/
	/*background:#eff0f1;*/
}

html{
	/*
	background:url(../images/bg_desktop.png) no-repeat;
	background-size:cover;
	background-position:top center;
	*/
}

body,
button,
input,
select,
textarea {
    /*font-family: HelveticaNeueLTStd-Lt;*/
	font-family:HelveticaNeue;
	font-weight:300;
}

b{
	font-weight:400;
}

i,
em {
    font-style: normal;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.85;
}

* {
    outline: none;
}

img{
	min-height: auto;
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

.wrapper {
    padding: 0 15px;
    max-width: 1200px;
    margin: auto;
}
.pc-br {
    display: block;
}

#isMobile{
	display:none;
}

.vertical-align-middle{
	display: flex;
    flex-direction: column;
    justify-content: center;
	min-height:100vh;
}

.hide{
	display:none !important;
}

@media screen and (max-width:1499px) and (min-width:1201px){
	body { font-size: 14px; }
}
@media screen and (max-width:1200px) and (min-width:1001px){
	body { font-size: 12px; }
}
@media screen and (max-width:1000px) and (min-width:801px){
	body { font-size: 10px; }
}
@media screen and (max-width:800px) and (min-width:681px){
	body { font-size: 8px; }
}


@media screen and (max-width: 680px) {
	body{
		/*
		background-image:url(../images/bg_mobile.jpg);
		background-size:100% 100%;
		*/
	}
	
	html{
		/*
		background-image:url(../images/bg_mobile.png);
		background-size:100% 100%;
		*/
	}
	
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .pc-br {
        display: inline;
    }

    .mo-br {
        display: block;
    }
    .wrapper {
        width: auto;
    }
	
	#isMobile{
		display:block;
	}
}