.flyout {
    display: block;
    position: fixed;
    bottom: 13vh;
    left: -300px;
    width: 300px;
    height: 450px;
    padding: 1.5rem;
    text-align: left;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 24px, rgba(0, 0, 0, 0.05) 0px 2px 6px;
    opacity: 0;
    transform: translate(0,0);
    transform-style: preserve-3d;
    transition: transform .35s cubic-bezier(.455, .03, .515, .955) 0s, opacity .3s cubic-bezier(.455, .03, .515, .955) 0s;
    border: none;
    overflow-y: scroll;
    z-index: 999;
}

.flayout-content .csc-header {
    width: 100%;
}

.flyout h3,
.flyout p {
    margin: 2rem 0;
}

.flyout.open {
    opacity: 1;
    transform: translate(105%,0);
    transition: transform .3s cubic-bezier(.455, .03, .515, .955) 0s, opacity .8s cubic-bezier(.455, .03, .515, .955) .0s;
}

.flyout .csc-textpic .csc-textpic-imagewrap img {
    margin: 1rem 0;       
}

.flyout__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #d21213;
    outline: none;
}
.flyout__close:hover {
    text-decoration: underline;
}

.flyout__button {
    display: block;
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d21213;
    z-index: 999;
    transform: scale(1);
    transform-style: preserve-3d;
    transition: transform .3s cubic-bezier(.455, .03, .515, .955);
    outline: none;
    cursor: pointer;
}

.flyout__button:hover {
    transform: scale(1.15);
}

.flyout__button img {
    width: 35px;
}

@media only screen and (min-width: 40em) {
    .flyout {
        bottom: 10vh;
        left: -400px;
        width: 400px;
        height: auto;
        overflow-y: visible;
    }
    
}

