/* Notifications */
#notification-container {
   display: block;
    position: fixed;
   /* position: absolute; */
    top: 10px;
    right: 10px;
    z-index:999999;
}

.notification {
border: 3px solid #FFFFFF;
-webkit-box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.34);
-moz-box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.34);
box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.34);
}
.notification-message{
   font-size: 15px !important;
}
.notification {
    display: block;
    position: relative;
    padding: 10px 10px 10px 55px;
    overflow: hidden;
    width: 250px;
    border-radius: 5px;
    color: #fff;
    -webkit-animation: show-notification 2s ease-out;
    animation: show-notification 5s ease-out;
}
.notification-close {
    padding: 0;
    cursor: pointer;
    background: none;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    text-shadow: 0 1px 0 #000;
}
.notification-close:hover {
    padding: 0;
    cursor: pointer;
    background: none;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    position: absolute;
    top: 6px;
    right: 9px;
    color: #fff;
    text-shadow: 0 0px 0 #000;
}
.notification-close::before {
    font-family: 'FontAwesome';
    font-size: 12px;
    font-weight: normal;
    content: '\f00d';
}
.notification-title {
    font-size: 1.1em;
    font-weight: bold;
}
.notification-style1::before,
.notification-style2::before,
.notification-style3::before,
.notification-style4::before {
    font-family: 'FontAwesome';
    font-size: 30px;
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.notification-style1 {
    background-color: #006400;
}
.notification-style2 {
    background-color: #e85656;
}
.notification-style3 {
    background-color: #2dacd1;
}
.notification-style4 {
    background-color: #dfb81c;
}
/***** ICONS *****/
/* car (reserva) */
.icon-car::before {
    content: '\f1b9';
}
/* envelope (contacto) */
.icon-envelope::before {
    content: '\f0e0';
}
/* fa-smile-o (voto) */
.icon-fa-smile-o::before {
    content: '\f118';
}
/* fa-map-marker (servcio zona) */
.icon-fa-map-marker::before {
    content: '\f277'; 
    /* content: '\f041'; */
}
/* fa-plane  (llegada) */
.icon-fa-plane::before {
    content: '\f072';
}
/* fa-map-signs (rutas) */
.icon-fa-map-signs::before {
    content: '\f277';
}
/* fa-bus  (bus cortesia) */
.icon-fa-bus::before {
    content: '\f207';
}
/***** /ICONS *****/
@-webkit-keyframes show-notification {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, -100%);
    }
    10% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
    }
    90% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(0, -100%);
    }
}
@keyframes show-notification {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
    }
    10% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    90% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
    }
}