﻿body, html {
    /*font-family: Raleway;*/
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}


.pantalla_completa {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.d_header {
    /*background-color: lightskyblue;*/
    background-color: #46aad7;
    position: fixed;
    top: 0px;
    padding: 10px;
}

.d_footer {
    position: fixed;
    bottom: 0px;
    /*background-color: lightskyblue;*/
    background-color: #46aad7;
    padding: 6px;
}

.txt_centrado {
    text-align: center;
}

.padd-10px {
    padding: 10px;
}

.padd-20px {
    padding: 20px;
}

.padd-30px {
    padding: 30px;
}

.avisos {
    position: fixed;
    z-index: 100;
    margin-top: 45px;
    display: none;
}

.avisos-header {
    background-color: lightsalmon;
    overflow: hidden;
    font-weight: bold;
    font-size: 12px;
    padding-top: 6px;
    text-align: right;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.avisos-body {
    background-color: lightyellow;
    overflow: hidden;
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    opacity: 0.9;
}


.confirmacion {
    position: fixed;
    z-index: 99;
    margin-top: 45px;
    display: none;
}


.confirmacion-body {
    background-color: white;
    overflow: hidden;
    font-weight: bold;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    opacity: 1;
    box-shadow: rgba(0,0,0,0.2) 1px 10px 20px;
}


.btn-cancelar {
    width: 80%;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
    border-style: solid;
    border-width: 1px;
    border-color: grey;
}

.btn-confirmar {
    width: 80%;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
    background-color: lightgreen;
    border-style: solid;
    border-width: 1px;
    border-color: green;
}
