﻿/* Estilo del panel de notificación*/
.pushbar-panel {
    -webkit-box-shadow: -7px 0px 18px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 0px 18px -4px rgba(0,0,0,0.75);
    box-shadow: -7px 0px 18px -4px rgba(0,0,0,0.75);
    color: #002f74;
    font-size: 12px;
    text-align: center;
}

/*.pushbar-panel a {
        text-decoration: none;
        color: #002f74;
    }*/

.title {
    margin: 0px;
    color: black;
    text-align: center;
    text-shadow: -5px 2px 4px rgba(0,47,116,0.21);
}

.flight-number {
    font-size: large;
}

#div-pushbar-cards {
    overflow-y: scroll;
}

.box {
    text-align: center;
    height: 74px;
}

.box-actual-times {
    background: #ff8f8f;
    color: #B71C1C;
}

.box-new-times {
    background: #c3f8c5;
    color: #1B5E20;
}

.notification-list {
    list-style: none;
}

.margin {
    margin: 10px auto;
    border-bottom-style: solid;
    border-bottom-width: thin;
    border-bottom-color: #CCC;
}

.add-margin-top {
    margin-top: 10px;
}

.delete-padding-left {
    padding-left: 0px;
}

.delete-padding-right {
    padding-right: 0px;
}

.div-card-notification-container {
    background: #edf2fa;
    border-top: solid rgba(210, 213, 217, 0.21) 1px;
    border-bottom: solid rgba(210, 213, 217, 0.21) 1px;
    max-width: 550px;
}

    .div-card-notification-container.read {
        background: white;
    }

    .div-card-notification-container:hover {
        background: rgb(211, 216, 223);
    }

.blinking { /* Parpadeo */
    /*border: solid 1px;*/
    animation-name: blinking;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: 5;
    -webkit-animation-name: blinking;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 5;
}

@-moz-keyframes blinking {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinking {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinking {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.no-notifications-message {
    color: #002f74;
    font-size: xx-large;
    margin: auto;
    text-align: center;
}

.btn-confirm-change {
    bottom: 5px;
    font-size: 12px;
    padding: 3px;
    position: relative;
    margin-top: 5px;
}

    .btn-confirm-change[disabled] {
        color: black;
    }
/* Estilo para el texto que almacena la base y el origen */
.label-origen-base {
    margin-top: 4px;
}

.mark-all-as-read {
    color: #002f74;
    cursor: pointer;
    font-size: 20px;
}

/* Estilos para el contador de las notificaciones */
.counter-notifications {
    background-color: #dc3545;
    border-radius: 5px;
    color: white;
    font-weight: normal;
    font-size: 14px;
    height: 18px;
    position: absolute;
    text-align: center;
    left: 8px;
    top: -500px;
    width: 20px;
}

.notification-contexmenu-timeline {
    float: right;
    top: -17px;
    font-size: 16px;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.aodblink {
    color: #fff;
    text-decoration: underline;
}

/*---------------prueba tarjeta dinamica --------------------------------

*/

html, body {
    font-family: Abel, Arial, Verdana, sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Abel');

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
}

.card {
    width: 400px;
    height: 100px;
    background-color: #fff;
    background: linear-gradient(#f8f8f8, #fff);
    box-shadow: 0 8px 16px -8px rgba(0,0,0,0.4);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin: 1.5rem;
    opacity: 1;
}

.Noread {
    opacity: 0.4;
}

/*.card h5 {
        text-align: center;
    }*/

.card .titlecard {
    color: #726f6f;
    margin-bottom: 0px;
    margin-left: 3.5em;
    text-align: left;
    font-family: Abel,Arial,Verdana,sans-serif;
}

.titlenonotification {
    color: hsl(214, 89%, 52%);
    margin-bottom: 0px;
    margin-left: 3.5em;
    text-align: left;
    font-family: Abel,Arial,Verdana,sans-serif;
}

.card .subtitlecard {
    color: #9c9595;
    margin-bottom: 0px;
    margin-left: 4em;
    text-align: left;
    font-family: Abel,Arial,Verdana,sans-serif;
}

.card .titlecardaditional {
    color: #fff;
    margin-bottom: 0px;
    text-align: left;
    font-family: Abel,Arial,Verdana,sans-serif;
}

.card .additional {
    position: absolute;
    width: 150px;
    height: 100%;
    background: linear-gradient(#ff6e40, #ff3d00);
    transition: width 0.4s;
    overflow: hidden;
    z-index: 2;
}

.card.green .additional {
    background: linear-gradient(#92bCa6, #A2CCB6);
}

.card.yellow .additional {
    background: linear-gradient(#ffea00,#e3d535);
}

.card.orange .additional {
    background: linear-gradient(#ffd180, #ff9100);
}

.card.blue .additional {
    /*background: linear-gradient(#26418f, #5c6bc0);*/
    background: linear-gradient(#346981,#6497b1);
}

.card:hover .additional {
    width: 100%;
    border-radius: 0 5px 5px 0;
}

.card:active {
    opacity: 1;
}

.card .additional .user-card {
    width: 150px;
    height: 100%;
    position: relative;
    float: left;
}

    .card .additional .user-card::after {
        content: "";
        display: block;
        position: absolute;
        top: 10%;
        right: -2px;
        height: 80%;
        border-left: 2px solid rgba(0,0,0,0.025);
    }

    .card .additional .user-card .level,
    .card .additional .user-card .points {
        top: 15%;
        color: #fff;
        text-transform: uppercase;
        font-size: 0.90em;
        font-weight: bold;
        background: rgba(0,0,0,0.15);
        padding: 0.125rem 0.75rem;
        border-radius: 100px;
        white-space: nowrap;
    }

    .card .additional .user-card .points {
        top: 85%;
    }

    .card .additional .user-card svg {
        top: 50%;
    }

.card .additional .more-info {
    width: 300px;
    float: left;
    position: absolute;
    left: 150px;
    height: 100%;
}

    .card .additional .more-info h5 {
        color: #fff;
        margin-bottom: 0;
    }

.card.green .additional .more-info h5 {
    color: #224C36;
}

.card .additional .coords {
    margin: 0 1rem;
    color: #fff;
    font-size: 1rem;
}

.card.green .additional .coords {
    color: #325C46;
}

.card .additional .coords span + span {
    float: right;
}

.card .additional .stats {
    font-size: 2rem;
    display: flex;
    position: absolute;
    bottom: 3.5rem;
    left: 1rem;
    right: 1rem;
    top: auto;
    color: #fff;
}

.card.green .additional .stats {
    color: #325C46;
}

.card .additional .stats > div {
    flex: 1;
    text-align: center;
}

.card .additional .stats i {
    display: block;
}

.card .additional .stats div.titleAODB {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.card .additional .stats div.valueAODB {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5rem;
}

    .card .additional .stats div.valueAODB.infinity {
        font-size: 2.5rem;
    }

.card .general {
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 1rem;
    padding-top: 0;
}

    .card .general .stats div.titleAODB {
        font-size: 1.0rem;
        font-weight: bold;
        /*text-transform: uppercase;*/
        color: #9c9595;
        vertical-align: bottom;
        margin-left: 5em;
        text-align: left;
    }

    .card .general .stats div.valueAODB {
        font-size: 1.25rem;
        font-weight: bold;
        line-height: 1.5rem;
        color: #918A8A;
        vertical-align: bottom;
        margin-left: 4em;
        text-align: left;
    }

    .card .general .more {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9em;
    }

.svgAODBArrival {
    fill =rgba(0,0,0,0.15);
    position: absolute;
    top: 30%;
    left: 40%;
    -webkit-transform: translate(-50%, -50%);
    font-size: 3em;
    color: #fff;
}

.svgAODBDeparture {
    fill =rgba(0,0,0,0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    font-size: 3em;
    color: #fff;
}

.svgAODB {
    fill =rgba(0,0,0,0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    font-size: 3em;
    color: #fff;
}

.svgNoread {
    fill =rgba(0,0,0,0.15);
    position: absolute;
    top: 20%;
    right: 2.5%;
    -webkit-transform: translate(-50%, -50%);
    font-size: 1em;
    color: #3366CC;
    visibility: visible;
}

.svgNoreadhidden {
    fill =rgba(0,0,0,0.15);
    position: absolute;
    top: 20%;
    right: 2.5%;
    -webkit-transform: translate(-50%, -50%);
    font-size: 1em;
    color: #3366CC;
    visibility: hidden;
}

.notifications {
    display: none;
    width: 300px;
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    border: solid #9c9595;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .20);
    z-index: 0;
}

    .notifications:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        color: transparent;
        border: 10px solid #CCC;
        border-color: transparent transparent #FFF;
        margin-top: -20px;
        margin-left: 10px;
    }

.notiheadertitle {
    display: block;
    color: black;
    background: white;
    font-weight: bold;
    /*padding: 2px;*/
}

/* SCROLL BAR
================================================== */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #002f74;
    border-radius: 0px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #002f74;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #002f74;
    }

::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none bisque;
    border-radius: -46px;
}

    ::-webkit-scrollbar-track:hover {
        background: transparent;
    }

    ::-webkit-scrollbar-track:active {
        background: transparent;
    }

::-webkit-scrollbar-corner {
    background: transparent;
}

.field-validation-error {
    display: block !important
}