﻿/* ####################################
   Content Cycler

   - Critical Rendering Path: Optional/Recommended (it might be used on landing pages)
   - Hide items except the first one at load time
   - Create some opinionated defaults for columns and boxes
   - Don't apply some rules in the CMS visual editor so authors can edit it easily
   - Other themed layouts might be added here in the future
   ################################## */

/*
    Hide items except the first one at load time
*/

body:not(.mce-content-body) .cycle-slideshow > * {
    display: none;
}

body:not(.mce-content-body) .cycle-slideshow > :first-child {
    display: inherit;
}

/*
    Default treatment for columns and boxes
*/

.col .cycle-slideshow {
    height: 100%;
}

body:not(.mce-content-body) .cycle-slideshow .box {
    height: 100% !important;
    margin-bottom: 0;
}

    .cycle-slideshow .box[class*=cycle-slide] {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
    }
