﻿.hr-sect {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    color: rgba(0, 0, 0, 0.35);
    margin: 8px 0px;
}

    .hr-sect::before,
    .hr-sect::after {
        content: "";
        flex-grow: 1;
        background: rgba(0, 0, 0, 0.35);
        height: 2px;
        font-size: 0px;
        line-height: 0px;
        margin: 0px 8px;
    }


.flyout-overlay {
    z-index: 1500;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
}

.flyout {
    z-index: 1501;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    padding-top: 0;
    position: fixed;
    top: 1px;
    left: -400px;
    bottom: 1px;
    max-height: 100%;
    width: 400px;
    transition-property: left, box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: 15px 0px 20px 0px rgba(0,0,0,0.0);
}

.flyout-active {
    left: 0;
    box-shadow: 15px 0px 20px 0px rgba(0,0,0,0.4);
}



.olc-styleheader {
    font-family: sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: rgb(64,64,64);
    font-size: 16px;
    font-weight: bold;
    height: 48px;
}

.olc-brandheader {
    text-align: center;
    color: rgb(64,64,64);
    font-size: 14px;
}

.olc-greyfont {
    color: rgb(128,128,128);
    font-weight: normal;
    font-size: 12px;
}


.olc-item {
    display: flex;
    justify-content: space-between;
}

.olc-itemtitle {
    font-size: 12px;
}

.olc-itemtext {
    color: rgb(64,64,64);
    font-size: 12px;
    font-weight: bold;
}

.olc-state {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 100;
    background-color: rgb(240,240,240);
    border-radius: 0px 0px 5px 5px;
    text-transform: uppercase;
}

.olc-tools {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(240,240,240);
    border-radius: 0px 0px 0px 3px;
    display: flex;
    flex-direction: column;
}

.olc-tool-item {
    color: rgb(128,128,128);
    cursor:pointer;
}

    .olc-tool-item:hover {
        color: rgb(32,32,32);
    }
