﻿/* DEFAULTS
----------------------------------------------------------*/

body {
    margin: 90px auto 5px auto;
    padding: 70px 10px 10px 10px;
}

.cc_margen_boton {
    margin-top: 5px;
    margin-bottom: 5px;
}

.validacionalert {
    border-radius: 10px;
    background: #F8D7DA;
    border: 1px solid #F5C2C7;
    padding: 20px;
    width: 100%;
}

.wd_margen_boton_asocia {
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
}

/* ----------------------------------------------------------
    CC - Apariencia de Botones
----------------------------------------------------------*/

.wd_boton {
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    background-color: #3F8080;
    color: white;
    border: 2px solid #3F8080;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    margin-top: 5px;
    margin-bottom: 5px;
    width: 170px;
    height: 40px;
}

    .wd_boton:hover {
        background-color: #C3C3C3;
        border: 2px solid #C3C3C3;
        color: white;
    }

.wd_boton_op {
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    background-color: #99a3a4;
    color: white;
    border: 2px solid #99a3a4;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    width: 150px;
    height: 40px;
}

    .wd_boton_op:hover {
        background-color: #ccd1d1;
        border: 2px solid #ccd1d1;
        color: white;
    }

.wd_boton_op_icono {
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    background-color: #99a3a4;
    color: white;
    border: 2px solid #99a3a4;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    width: 50px;
    height: 35px;
}

    .wd_boton_op_icono:hover {
        background-color: #ccd1d1;
        border: 2px solid #ccd1d1;
        color: white;
    }

/* ----------------------------------------------------------
    SPINNER
----------------------------------------------------------*/

#WDFondoSpinner {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #e6e6e6;
    filter: alpha(opacity=80);
    opacity: 0.8;
    z-index: 100000;
}

#WDSpinnerProgress {
    position: fixed;
    top: 46%;
    left: 43%;
    height: 20%;
    width: 13%;
    z-index: 100001;
    background-color: transparent;
    border: 0px solid Gray;
    background-image: url('../imagenes/spinner2.gif');
    background-repeat: no-repeat;
    background-position: center;
}

.Spinner_Fondo {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #F0F0F0;
    filter: sepia();
    opacity: 0.8;
    z-index: 100000;
}

.Spinner_Progress {
    position: fixed;
    top: 40%;
    left: 40%;
    height: 20%;
    width: 20%;
    z-index: 100001;
    background-color: #FFFFFF;
    background-image: url('../imagenes/spinner.gif');
    background-repeat: no-repeat;
    background-position: center;
}

.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

.loader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: .8em solid rgba(218, 219, 223, 1);
    border-left: .8em solid rgba(58, 166, 165, 1);
    animation: spin 1.1s infinite linear;
}

    .loader, .loader:after {
        border-radius: 50%;
        width: 8em;
        height: 8em;
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -4.05em;
    }

@keyframes spin {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}