@charset "utf-8";
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}
.overlay:target {
    visibility: visible;
    opacity: 1;
}
#popupBody{
    width: 50%;
    padding: 2%;
    box-shadow: 0 0 5px #CCC;
    background: #FFF;
    position: relative;
    bottom: 40%;
    transition: all 5s ease-in-out;
    margin: 20% auto;    
}
#cerrar{
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #F00;
}

.ppbody h2 {
    color: #047464;
}

.popupContent {
    padding-left: 20px;
  


}

.brand {
    margin-top: 20px;
    width: 100%;
    height: 30px;
    background: #047464;
    display: flex;
    justify-content: flex-end;
}

.brand img {
width: 30%;
}

.conentList {
    display: flex;
    flex-direction: row;
}

.popupList, .popupInfo {
    margin: 10px;
    padding-left: 10px;
    border-left: solid 3px black;
    text-align:  justify;
}

.carta h2 a{
    color: #047464;
    text-decoration: none;
}