/*==========================expandable content==============================*/

.expandable-zone {
    background-color: #373a3c;
    color: white;
    border-radius: 5px;

    transition: all 500ms;
}

.expandable-content {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    padding: 30px;

    overflow-y: scroll;

    background-color: white;
    border: 5px solid #373a3c;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;

    visibility: hidden;
    z-index: -1;
    opacity: 0;
}

.expandable-content > .img-section {
    width: 100%;
}

.expandable-zone:hover > .expandable-content {
    visibility: visible;
    z-index: 9999;
    opacity: 1;
}

.expandable-zone:hover {
    background-color: white;
    color: #373a3c;
    border-radius: 5px;
}