.calendar {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
    max-width: 420px;
}
.calendar table tr th {
    background-color: lightgray;
    border: 1px solid #000;
    width: 60px;
    padding: 5px 0;
    text-align: center;
    font-size: 1.4rem;
}
.calendar table tr td {
    border: 1px solid #000;
    text-align: right;
    font-size: 1.3rem;
}
.calendar table tr td a {
    color: #585858;
    display: block;
    padding: 4px 6px;
    text-decoration: none !important;
}
.calendar table tr td.bold a { font-weight: bolder }
.calendar table tr td.event a {
    background-color: #F03438;
    color: #FFFFFF;
}

.calendar form { float: left; }
.calendar select { 
    height: 32px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 1.4rem;
    margin: 0 2px 0 8px; 
    width: 220px;
    padding: 0;
    -webkit-appearance: menulist;
}

.prevarrow{
    margin-bottom: 5px;
    z-index: 99999;
    position: relative;
    text-transform: uppercase;
    float: left;
    color: #fff !important;
    letter-spacing: 1px;
    font-size: 13px;
    background-color: #f03438;
    padding: 8px 9px;
    border-radius: 0px;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}
.prevarrow a{
    color:#fff;
    font-weight: 800;
}
.prevarrow:after{
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(240, 52, 56, 0);
    border-right-color: #f03438;
    border-width: 10px;
    margin-top: -10px;
}

.nextarrow{
    margin-bottom: 5px;
    z-index: 99999;
    position: relative;
    text-transform: uppercase;
    float: right;
    color: #fff !important;
    letter-spacing: 1px;
    font-size: 13px;
    background-color: #f03438;
    padding: 8px 12px;
    border-radius: 0px;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}
.nextarrow a{
    color:#fff;
    font-weight: 800;
}
.nextarrow:after{
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(240, 52, 56, 0);
    border-left-color: #f03438;
    border-width: 10px;
    margin-top: -10px;
}

section.content-view div.text h4 { padding: 0; }
.box_conteudo { margin-bottom: 20px; }

@media only screen and (max-width: 480px) {
    .prevarrow,
    .nextarrow {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
    .calendar form { width: 100%; }
    .calendar select {
        margin: 5px 0;
        padding: 0;
        width: 100%;
    }
}