.diario-show {
    margin-bottom: 63px!important;
}

.daily-call {
    width: 50%;
    margin: 0 12px;
}

.daily-call .daily-call-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 27px;
}

.daily-call .daily-call-top .heading {
    display: flex;
    align-items: center;
   
}

.daily-call .daily-call-top .heading h3 {
    font-size: 22px;
    margin-bottom: 0;
    margin-left: 7px;
}

.daily-call .daily-call-top .time p {
    font-size: 12px;
}

.daily-call.bom-dia .daily-call-top .heading h3 span {
    color: #E5BF44;
}

.daily-call.boa-noite .daily-call-top .heading h3 span {
    color: #18A09E;
}

.daily-call .daily-call-image {
    width: 100%;
    position: relative;
    cursor: pointer;
}

.daily-call .daily-call-image img {
    width: 100%;
    height: auto;
    position: relative;
}

.daily-call .daily-call-image .overlay, .daily-call .daily-call-image .overlay-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.daily-call .daily-call-image .overlay-gradient {
    z-index: 2;
}

.daily-call .daily-call-image .play-button {
    position: absolute;
    bottom: 15px;
    left: 16px;
    right: 16px;
    height: 42px;
    z-index: 4;
    display: flex;
    justify-content: start;
    align-items: center;
}

.daily-call .daily-call-image .play-button p {
    color: #fff;
    font-size: 12px;
    margin-left: 12px;
}

.daily-call.bom-dia .daily-call-image .overlay {
    background-color: #C4A748;
    mix-blend-mode: multiply;
    
}

.daily-call.bom-dia .daily-call-image .overlay-gradient {
    background: linear-gradient(0deg, rgba(231,194,61,1) 0%, rgba(231,194,61,0) 25%);
}


.daily-call.boa-noite .daily-call-image .overlay {
    background-color: #589CA6;
    mix-blend-mode: multiply;
    
}

.daily-call.boa-noite .daily-call-image .overlay-gradient {
    background: linear-gradient(0deg, rgba(24,160,158,1) 0%, rgba(24,160,158,0) 25%);
}

.daily-call.fechamento .daily-call-image .overlay {
    background-color: #07535F;
    mix-blend-mode: multiply;
    
}

.daily-call.fechamento .daily-call-image .overlay-gradient {
    background: linear-gradient(0deg, rgba(7,83,95,1) 0%, rgba(7,83,95,0) 25%);
}



.daily-call .daily-call-image .countdown-wrapper{
   width: 100%;
    text-align: center;
    
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.daily-call .daily-call-image .countdown-wrapper h4 {
  font-size: 16px;
  color: #fff;
}

.daily-call .daily-call-image .countdown-wrapper .is-countdown {
    width: 100%;
    background-color: transparent;
    border: 0 none;
    color: #fff;
}

.daily-call .daily-call-image .countdown-wrapper .countdown-amount {
    font-size: 34px;
    position: relative;
}

.countdown-amount::after {
    content: ":";
    position: absolute;
    right: -30px;
}

.countdown-section:last-child .countdown-amount::after {
    content: "";
    display: none;
}

.daily-call .daily-call-image .countdown-wrapper .countdown-period {
    font-size: 12px;
}

.daily-call .daily-call-image .date {
    width: 50px;
    height: 45px;
    text-align: center;
    
    position: absolute;
    right: 12px;
    top: 7px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.daily-call .daily-call-image .date .day{
    font-size: 24px;
    color: #fff;
    line-height: 1em;
}

.daily-call .daily-call-image .date .month{
   font-size: 14px;
   color: #fff;
   font-weight: 300;
   line-height: 1em;
}

.daily-call.bom-dia .daily-call-image .date {
    background-color: #E6C035;
}

.daily-call.boa-noite .daily-call-image .date {
    background-color: #18A09E;
}

.daily-call .daily-call-excerpt {
    margin-top: 30px;
}

.daily-call .daily-call-excerpt p {
    font-size: 16px;
    line-height: 1.2em;
    
}

.slider-arrow  {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    border: solid #00A09E 1px;
}

.slider-arrow.slick-disabled {
    background-color: #DFDFDF;
    border: 0;
}

.slider-arrow svg {
     fill: #00A09E;
}

.slider-arrow.slick-disabled svg {
    fill: #B1B1B1;
}

.slider-arrow.next-arrow {
    right: -69px;
}

.slider-arrow.prev-arrow {
    left: -69px;
}

.slider-arrow.prev-arrow svg {
    transform: rotate(180deg);
}

