﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Open Sans", sans-serif;
    color: #111;
    background-color: whitesmoke;
}

.pnlOpciones, .pnlDetalles {
    min-width: 300px;
    max-width: 300px;
}

.flex-container {
    display: flex;
    flex-wrap: nowrap;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;    
}

    #sidebar {
        min-width: 300px;
        max-width: 300px ;
        margin-right: 10px;
    }

.wrapper .box {
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    font-size: large;
}

a {
    color: #1bbd36;
}

    a:hover {
        color: #2ae149;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
}

.ssabutton {
    background: none;
    margin: 0px 3px;
    background: #1bbd36;
    color: #fff;
    border: 0px;
}

.RadFormControl {
    height: auto !important;
    width: auto !important;
}

input[type=text], 
input[type=button], 
input[type=submit], 
input[type=reset],
select{
    font-size: large !important;
}

/*--------------------------------------------------------------
# LOGIN
--------------------------------------------------------------*/
    .login-fondo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.login-div {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 260px;
    top: 100px;
    left: 55px;
    right: 55px;
}

.login-info {
    background: rgba(4, 4, 4, 0.7);
    padding: 20px;
    color: #fff;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    border-top: 5px solid #1bbd36;
    margin :auto auto ;
}

.login-info input {
    width:300px;
}

.login-info h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.login-boton {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #1bbd36;
    background-color: transparent;
}

    .login-boton:hover {
        background: #1bbd36;
        color: #fff;
        text-decoration: none;
    }

@media (min-width: 1024px) {
    .caja-login {
        width: 40%;
    }
}
