﻿.kps-lrp-container {
    display: flex;
    /*height: 100vh;*/
    position: relative;
    width:100%;
}

.kps-lrp-left-panel {
    min-width: 25vw;
    width: 25vw;
    background-color: #ffffff;
    border-right: 1px solid #ccc;
    transition: width 0.3s ease;
    transition: min-width 0.3s ease;
    overflow: visible;
}

    .kps-lrp-left-panel.collapsed {
        min-width: 0px;
        width: 0;
        display: none;
    }

.kps-lrp-toggle-btn {
    top: 10px;
    left: 0;
    min-width: 40px;
    width: 40px;
    background-color: lightsteelblue;
    border: 1px solid #ccc;
    border-right: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
}

.kps-lrp-toggle-btn:hover {
    top: 10px;
    left: 0;
    min-width: 40px;
    width: 40px;
    background-color: steelblue;
    border: 1px solid #ccc;
    border-right: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
}

    .kps-lrp-toggle-btn-text {
        color: white;
        margin-top: 50px;
        margin-bottom: auto;
        transform: rotate(270deg);
        text-transform: uppercase;
        font-size: x-large;
        display: flex;
    }

.kps-lrp-toggle-btn-icon {
    transform: rotate(90deg);
    margin-left:10px;
}

.kps-lrp-toggle-btn-text-text {

}


.kps-lrp-filter-content {
    padding: 15px;
}

.kps-lrp-right-panel {
    flex-grow: 1;
    padding: 0px;
    padding-left: 10px;
    background-color: #fff;
    z-index: 10;
    width: 80%;
}
