#home-clouds-container {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;

    background: #1e4877;
    background: linear-gradient(to bottom, #1e4877 0%, #4584b4 75%);
}

#home-clouds-container .pan {
    transition-property: transform;
    transition-timing-function: linear;
    position: absolute;
    min-width: 100%;
    left: 100%;
    opacity: 0;
    pointer-events: none;
}

#home-clouds-container #clouds {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
}

#home-clouds-container #clouds .cloud {
    transition-property: transform;
    transition-timing-function: ease-in-out;
    position: absolute;
    display: inline-block;
    opacity: 0;
}

#home-clouds-container #clouds .cloud:not(.disappearing):not(.appearing):not(.active):hover {
    opacity: 1 !important;
    cursor: pointer;
    z-index: 10
}

#home-clouds-container #clouds .cloud img {
    width: 100%;
    height: 100%;
    transition-property: transform;
}

@-webkit-keyframes rotating {
    to {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes rotating {
    to {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.rotating {
    -webkit-animation: rotating 150s ease-in-out infinite alternate;
    -moz-animation: rotating 150s ease-in-out infinite alternate;
    -ms-animation: rotating 150s ease-in-out infinite alternate;
    -o-animation: rotating 150s ease-in-out infinite alternate;
    animation: rotating 150s ease-in-out infinite alternate;
}

.cloud .marker {
    transition: all .5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255,255,255,0);
    border-radius: 100%;
}

.cloud.active {
    z-index: 120;
    opacity: 1 !important;
}

.cloud:not(.disappearing):not(.appearing):not(.active):hover .marker {
    border: 2px solid rgba(255,255,255,1);
    background: rgba(53,108,155,0.75);
}

.cloud.appearing .marker {
    background: rgba(53,108,155,1);
}

#angel-popup-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: none;
    z-index: 10000;
}

#angel-popup {
    position: relative;
    height: 250px;
    width: 500px;
     margin: 250px auto 0 auto;
     overflow: hidden;
} 


/*******POP UP HOME*************/
#angel-popup .picture{
  float:left;
  width:25%;
  height:100%;
  background-color:#76a3be;
/*  display: table;*/
  border-radius: 10px 0px 0px 10px;
  text-align: center;   
}

#angel-popup .info{
  float:left;
  width:75%;
  height:100%;
  border-radius: 0px 10px 10px 0px;
  background: rgba(255,255,255,0.9);
  
}

#angel-popup .picture #photo {
  height: 50%;
  overflow: hidden;
  border-radius: 10px 0px 0px 0px;
    background: #fff;
  /*display: table-cell;
  vertical-align: middle;*/
}

#angel-popup .picture #photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#angel-popup .picture #photo img.noimage {
    height: 50%;
    width: 45%;
    margin: 25% auto;
    display: block;
}

#angel-popup .picture #map {
  height: 50%;
  overflow: hidden;
  border-radius: 0px 0px 0px 10px;

}

#angel-popup .picture #map img {
  height: 125px;
}

#angel-popup .private{
    background: #76a3be url(../img/icons/lock-white.svg) center center no-repeat;
    background-size: 5rem auto;
}

#angel-popup .private p{
    margin-top: 5rem;
}


#angel-popup .info .name{
  color:#286f9d;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 400;
}
#angel-popup .info .dates{
  background-color:#76a3be;
  color: #fff;
  font-weight: bold;
  font-size:  1.4rem;
  height:60px; 
  padding: 10px 20px;
}
    
#angel-popup .info .dates .birth{
    text-align: left;
    float: left;
}

#angel-popup .info .dates .dead{
    text-align: right;
    float: right;
}

#angel-popup .info .dates span.city{
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

#angel-popup .info .description p{
  text-align: justify;
  font-size: 1.2rem;
  font-weight: 300;
  color: #286f9d;
  padding: 10px 20px;
}

#angel-popup .info .icons{
  position:absolute;
  bottom:5px;
  right:5px;
}
#angel-popup .info.private .icons {
    position: absolute;
    bottom: 10px;
    right: 10px;

}

#angel-popup .info .icons img{
  width:50px;
  margin-left: 15px;
}
#angel-popup #popup-angel-follow {
    float: right;
    padding: 5px;
}