﻿/*
 * MDLH 2020-11-03
 * Sitecore applies these styles to the actual <option> element in the "Apply CSS Class" dropdown in the rich text editor,
 * which results in some options being hidden on desktop or simply having weird spacing and formatting based on the rules
 * defined here. With that in mind, keep the properties on these styles to a minimum and define them in the main
 * stylesheets instead.
 */

.align-left {
    float: left;
}

.align-right {
    float: right;
}

.inline-twitter-link {
    color: #84bd00;
}

.show-on-desktop {
    display: none;
    margin: 1em auto 2em
}

@media only screen and (min-width: 768px) {
    .show-on-desktop {
        display: block
    }
}

.show-on-mobile {
    margin: 1em auto 2em
}

@media only screen and (min-width: 768px) {
    .show-on-mobile {
        display: none
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
