.anuncio{
    z-index: 0;
    position: relative;
    /* left: 2%; */
    /* margin: 10px 0; */
    padding: 0;
    padding-left: 35px;
    background-color: white;
}
.evento{
    margin: 10px 0px;
    font-size: 19px;
    display: inline-flex;
    width: 100%;
    font-weight: bold;
    color: #888;
    position: unset;
    padding: 0;
    padding-left: 45px;

}
.vazio {
    display: flex;
    align-items: center;
    justify-content: center;
    height: -webkit-fill-available;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
.proximoTitulo{
    font-weight: bolder;
    text-transform: uppercase;
    color: #999;
    font-size: 2ch;
}
.dataEvento {
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    margin: 0 15px 0 0;
}
.dataText p{
    margin: 0;
    text-transform: uppercase;
    color: #002d7b;
}
.dataEvento .dataText {
    text-align: center;
    word-wrap: break-word;
    font-size: 19px;
    line-height: 1;
    width: inherit;
    padding: 10px;
}
.rotated{
    color: white!important;
    background-color: transparent!important;
    position: absolute!important;
    text-align: center!important;
    justify-content: center;
    left: 29.7%!important;
    top: 36%!important;
    padding: 0px;
}
.fadeIn{
    animation: fadeIn 1s;
}
.fadeOut{
    animation: fadeOut 0.8s;
}

.slideIn{
    animation: slideIn .6s;
}
.slideOut{
    animation: slideOut .6s;
}
.nomeEvento {
    background: #ddd;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #002d7b;
}

.imgHolder {
    margin: 0;
    padding: 0;
}
.default > img {
    width: auto;
    height: 350px;
    overflow: hidden;
}

.imgHolder div {
    position: absolute;
    top: 0;
    left: 0;
}
.spacer {
    /* top: 50%; */
    /* left: 35%; */
    position: relative;
    z-index: 1;
    /* transform: translate(-50%, -50%); */
    width: 0;
    height: -webkit-fill-available;
}

.medalha{
    width: 180px;
    height: 180px;
    background: #ddd;
    border-radius: 100px;
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 1;
    transform: translate(-50%, -50%);

}
.medalhaInner{
    width: 150px;
    height: 150px;
    background: url(../img/line.png);
    opacity: 0.7;
    border-radius: 100px;
    border: 3px solid #044561;
    top: 15px;
    left: 15px;
    margin: auto;
    position: absolute;
    z-index: 0;
}

.showanimate{
    transform: rotate3d(0, 0, 0, 0deg);
    background-color: #002d7b;
    animation: showSpin 2s forwards;

}
.hideanimate{
    transform: rotate3d(45, 45, 0, 360deg);
    background-color: #002d7b;
    animation: hideSpin 1s;
}
@keyframes showSpin {
    0% {
        background-color: transparent;
        transform: rotate3d(0, 0, 0, 0);
    }
    100% {
        transform: rotate3d(45, 45, 0, 360deg);
    }
}
@keyframes hideSpin {
    0% {
        transform: rotate3d(45, 45, 0, 360deg);
    }
    100% {
        background-color: transparent;
        transform: rotate3d(0, 0, 0, 0);
    }
}
@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes fadeOut{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@keyframes slideIn {
    0%{
        opacity: 0;
        transform: translateX(200px);
    }
    40%{
        opacity: 0;
    }
    80%{
        opacity: .5;
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes slideOut {
    0%{
        opacity: 1;
        transform: translateX(0px);
    }
    40%{
        opacity: .5;
    }
    80%{
        opacity: 0;
    }
    100%{
        opacity: 0;
        transform: translateX(200px);
    }
}
/*teste de conteudo */
.conteudoEvento {
    display: none;
    position: absolute;
    padding: 0;
    width: 86%;
    float: right;
    z-index: 2;
    top: 10px;
}
.titleBar {
    padding: 0;
    margin: 0;
}
.descEvento {
    background-color: #ddd;
    width: 100%;
    height: 330px;
    word-wrap: break-word;
    color: #666;
    padding: 0;
    margin: 0;
}
.conteudoEvento .nomeEvento {
    height: 33px;
}
.closeBtn {
    background-color: #bbb;
    background-image: url(../img/x.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    height: 33px;
    width: 33px;
    float: right;
    z-index: 999;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.nomeText h4{
    font-size: 23px;
    padding: 10px;
    font-weight: bold;
    width: 93%;
    margin: 0;
}
.nomeText p{
    padding: 0 10px;
    font-weight: 300;
    font-size: 15px;
}

#agenda > div > h3{
    color:#044561;
    text-transform: uppercase;
}
/* Media Querys */

@media only screen and (max-width:1199px) {
    .default > img {
        width: 690px;
        height: 350px;
        overflow: hidden;
    }
    .imgHolder {
        grid-area: imagem;
        min-height: 355px;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    .spacer{
        grid-area: moeda;
        top: 50%;
        left: 20%;
        position: absolute;
        z-index: 1;
        transform: translate(-50%, -50%);
    }
    .anuncio{
        grid-area: eventos;
        z-index: 0;
        position: relative;
        width: 100%;
        left: 0%;
        padding: 20px;
    }
    .evento{
        padding: 0;
    }
    .nomeText {
        font-size: 23px;
    }
    
    .imagemEvento{
        height: 350px!important;
    }
    .rotated {
        left: 15.5%!important;
        top: 36%!important;
    }
    .conteudoEvento {
        display: none;
        position: absolute;
        padding: 0;
        width: 95%;
        float: right;
        z-index: 2;
        top: 10px;
    }
    .nomeEvento {
        width: 100%;
    }
    .descEvento {
        background-color: #f7f7f7;
        position: relative;
        width: 100%;
        height: 300px;
        word-wrap: break-word;
        color: #666;
        margin-top: -1px;
    }
    .titleBar {
        padding: 0;
        margin: 0;
        position: relative;
        display: grid;
        grid-template-columns: repeat(20, 1fr);
    }
    .conteudoEvento .nomeEvento {
        background: #d0d0d0;
        color: #595959;
        width: 100%;
        display: flex;
        align-items: center;
        grid-column: span 19;
    }
    .closeBtn {
        background-color: #bbb;
        background-image: url(../img/x.svg);
        background-size: 20px;
        background-position: center;
        background-repeat: no-repeat;
        height: 33px;
        width: 33px;
        z-index: 999;
        top: 0px;
        right: 0;
        padding: 0;
    }

    .faixa2 .moduletable>h3 {
        
        left: 10.5% !important;
        
    }

    .faixa2 .moduletable> h3.rotated {
        left: 15% !important;
    }

}
@media only screen and(min-width: 319px) and (max-width: 767px){
    .nomeText {
        font-size: 14px!important;
    }
}

.faixa2 #agenda {
    display: block;
    position: relative;
    background: white;
    height: 350px;
    /* box-shadow: 0px 0px 2px 2px #07365863; */
  }
  .faixa2 .moduletable>h3 {
    color: #002d7b;;
    font-size: 30px;
    position: absolute;
    top: 44%;
    left: 25.5%;
    z-index: 9999;
    line-height: 0;
  }
  .faixa2 .agenda {
    position: absolute;
    display: inline-flex;
    height: 350px;
    width: 100%;
  }
  .showanimate{
    background-color: #073658;
  }