/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
#css-only-modals {
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    text-align: center;
    white-space: nowrap;
    height: 100%;
}

#css-only-modals:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.css-only-modal-check {
    pointer-events: auto;
}

.css-only-modal-check:checked ~ .css-only-modal {
    opacity: 1;
    pointer-events: auto;
}

.css-only-modal {
    width: 80%;
    background: #FFF;
    z-index: 1;
    display: inline-block;
    position: relative;
    padding: 25px;
    text-align: right;
    border-radius: 4px;
    white-space: normal;
    vertical-align: middle;
    opacity: 0;
    pointer-events: none;
    overflow-y: scroll;
}

.css-only-modal h2 {
    text-align: center;
}

.css-only-modal p {
    text-align: left;
}

.css-only-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
}

.css-only-modal-check {
    display: none;
}

.css-only-modal-check:checked ~ #screen-shade {
    opacity: 0.5;
    pointer-events: auto;
}

#screen-shade {
    opacity: 0;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    transition: opacity 0.8s;
}

.stripe > .container > p,
.stripe > .container > ul {
    text-align: left;
    padding: 35px;
    margin: 0;
}

.stripe > .container > hr {
    margin: 50px 0;
}

#nav-spacer {
    display: block;
    height: 50px;
}

.stripe {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.default {
    color: White;
    background: DarkCyan;
}

.inverse {
    color: DarkCyan;
    background: White;
}

.grey {
    color: White;
    background: DimGrey;
}

.grey-light {
    color: DimGrey;
    background: White;
}

.color {
    color: DarkOrange;
}
.css-only-modal::-webkit-scrollbar { width: 0 !important }
.css-only-modal { -ms-overflow-style: none; }