
.cal-rotator {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.cal-rotator-track {
    display: flex;
    transition: transform .4s ease;
    width: 100%;
}
.cal-rotator-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 5px;
}
.cal-rotator-slide img {
    max-width: 100%;
    height: auto;
    display: block;
}
.cal-rotator-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}
.cal-rotator-arrow:hover { background: rgba(0, 0, 0, .6); }
.cal-rotator-prev { left: 6px; }
.cal-rotator-next { right: 6px; }
.cal-rotator-dots {
    text-align: center;
    padding: 6px 0 2px;
}
.cal-rotator-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: #c5c5c5;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}
.cal-rotator-dot.active { background: #337ab7; }
.cal-rotator-footer { padding-top: 8px; }
.cal-widget-btn { margin-top: 10px; }


.cal-style-primary { border-top: 3px solid #337ab7; }
.cal-style-success { border-top: 3px solid #5cb85c; }
.cal-style-info    { border-top: 3px solid #5bc0de; }
.cal-style-warning { border-top: 3px solid #f0ad4e; }
.cal-style-danger  { border-top: 3px solid #d9534f; }
.cal-style-default { border-top: 3px solid #999; }
