﻿.hoc-side-modal {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -70%;
    width: 70%;
    height: max-content;
    display: block;
    z-index: 1;
    background: #ffffff;
    transition: all .3s;
    z-index: 1003;
    box-shadow: -5px 5px 20px rgba(69, 65, 78, 0.21);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: all .5s;
}

    .hoc-side-modal.open {
        right: 0px;
    }

    .hoc-side-modal .title {
        padding: 15px;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        color: #575d6b;
        border-top-left-radius: 5px;
        border-bottom: 1px solid #ebedf2;
    }

    .hoc-side-modal .hoc-side-content {
        padding: 20px 15px;
        height: calc(100vh - 60px);
        overflow: auto;
    }



    .hoc-side-modal .modal-footer {
        position: absolute;
        width: 100%;        
        bottom: 10px;
    }

.black_overlay {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.5;
    opacity: .50;
    filter: alpha(opacity = 50);
}  