.calendar-title {
    background-color: #dc4600;
    color: #fff;
    text-align: center;
    margin-top: -60px;
    padding: 20px 0;
    font-weight: bold;

    width: 100%;
    float: left;
}

.calendar-spacer {
    width: 100%;
    float: left;
    height: 55px;
}

.calendar-container {
    background-color: #EE4459;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 15px;
}

.calendar-share {
    background-color: #f9f9f9;
    color: #666666;
    padding-top: 15px;
    padding-bottom: 15px;
}

.share-list {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.share-list li {
    margin-right: 10px;
    float: left;
}

.calendar-times {
    color: #fff;
    background-color: #dc4600;
    padding-top: 30px;
    padding-bottom: 30px;
}

.calendar-times:before {
    content: ' ';
    display: block;
    background-color: #dc4600;
    width: 10px;
    height: 10px;
    position: absolute;
    top: -5px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
}

.divisor {
    border-top: 1px solid #fff;
}

.footerButton {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.05) !important;
    border-top: 1px solid #EBEBEB !important;
}

.subscriptionBar {
    transition-property: all;
    transition-duration: 0.2s;
    opacity: 0;
}

.subscriptionBar.active { 
    opacity: 1;
}