﻿* {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Segoe UI", MYRIADPRO, Arial, Helvetica, Verdana, sans-serif;
}

    *:focus {
        outline: none;
    }

p {
    font-family: "Segoe UI", MYRIADPRO, Arial, Helvetica, Verdana, sans-serif;
}

span {
    font-family: "Segoe UI", MYRIADPRO, Arial, Helvetica, Verdana, sans-serif;
}

a {
    font-family: "Segoe UI", MYRIADPRO, Arial, Helvetica, Verdana, sans-serif;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Segoe UI", MYRIADPRO, Arial, Helvetica, Verdana, sans-serif;
}

body {
    background: #282828;
    background-color: #282828;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    font-family: "Segoe UI", MYRIADPRO, Arial, Helvetica, Verdana, sans-serif;
}
.stl_Notf_Contenedor {
    width: 310px;
    height: 100vh;
    background-color: #f2f2f2;
    margin: 0px;
    padding: 0px;
    overflow-x:hidden;
    overflow-y:auto;
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:10px 5px;
}
.stl_Notf_ContenedorOpc2 {
    position:fixed;
    top:0;
    right:0;
    width: 310px;
    height: auto;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 5px;
}
.stl_Notf_Info, .stl_Notf_Error, .stl_Notf_Espere,
.stl_Notf_Advertencia, .stl_Notf_Exito {
    position: relative;
    display:flex;
    flex-direction:column;
    width: 300px;
    height: auto;
    padding:4px;
    color: #ffffff;
    border-left: solid 5px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
    border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;
}
.stl_Notf_Info > h6, .stl_Notf_Error > h6, .stl_Notf_Espere > h6,
.stl_Notf_Advertencia > h6, .stl_Notf_Exito > h6 {
    border-left:0px;
    color:#ffffff;
    font-size:20px;
    font-weight:600;
    text-transform:uppercase;
    margin:0px;
    padding:2px 6px;
}
    .stl_Notf_Info > p, .stl_Notf_Error > p, .stl_Notf_Espere > p,
    .stl_Notf_Advertencia > p, .stl_Notf_Exito > p {
        border-left: 0px;
        color: #ffffff;
        font-size: 16px;
        font-weight:400;
        margin: 0px;
        padding: 2px 6px 6px 6px;
        text-align:left;
    }
    .stl_Notf_Info > a, .stl_Notf_Error > a, .stl_Notf_Espere > a,
    .stl_Notf_Advertencia > a, .stl_Notf_Exito > a {
        border-left: 0px;
        font-size: 16px;
        font-weight: 400;
        margin: 0px;
        padding: 2px 6px 6px 6px;
        text-align: left;
    }
.stl_Notf_ibt_Cerrar {
    position:absolute;
    top:2px;
    right:2px;
    width: 26px;
    height: 26px;
    padding: 6px;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    background-color: rgba(0,0,0,0.2);
}
.stl_Notf_btn_Notf {
    margin: 8px;
    padding: 6px 12px;
    background-color: rgba(0,0,0,0.2);
    color: #ffffff;
    border: 0;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
}
    .stl_Notf_btn_Notf:hover {
        background-color: #057b6f;
        background-color: rgba(0,0,0,0.4);
    }
.stl_Notf_Info {
    background-color: #6bc6e1;
}
.stl_Notf_Error {
    background-color: #dc6460;
}
.stl_Notf_Espere {
    background-color: #5596cf;
}
.stl_Notf_Advertencia {
    background-color: #f1b560;
}
.stl_Notf_Exito {
    background-color: #6cbf6c;
}