/* 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,
button,
input,
textarea {
    font-family: HelveticaNeueLTStd-Lt;
}

i,
em {
    font-style: normal;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.85;
}

* {
    outline: none;
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

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


@media screen and (max-width: 680px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .pc-br {
        display: inline;
    }

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