﻿body {
    padding: 0px;
    margin: 0px;
}


@font-face {
    font-family: "Montserrat_SemiBold";
    src: url("../FuentesApp/Montserrat-SemiBold.ttf");
}


/* style input field text */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #494949;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #494949;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #494949;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #494949;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #494949;
}



#content-principal {
    position: absolute;
    width: 100%;
    min-height: 100%;
    font-family: Montserrat_SemiBold;
    background: #00bf8f; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #00bf8f,#001510); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left,#00bf8f,#001510); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

#content-header {
    width: 90%;
    height: 50px;
    margin: auto;
    margin-top: 40px;
}

#content-header img {
    height: 100%;
}

#content-body {
    width: 90%;
    margin: auto;
    margin-top: 100px;
}

footer {
    position: fixed;
    width: 90%;
    height: 20px;
    bottom: 10px;
    margin-left: 5%;

}

#content-politica-privacidad {
    float: right;
    font-size: 12px;
    color: #fff;
}

#content-politica-privacidad a{
    text-decoration: none;
    color: #001510;
    opacity: .8;
}

#content-loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0,.7);
    z-index: 10000;
    transition: all .1s ease-in-out;
    display: none;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #689F38;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2E7D32;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #AFB42B;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-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);
    }
}