

/*============================================
=            Module cataloguelist            =
============================================*/
#catalogueList {
    width: 100%;
    position: relative;
    height: 100%;
    border: 2px solid #555555;
    border-radius: 5px;
    transition-duration: 0.5s;
    transition-property: all;
    animation: openShelfList 0.5s cubic-bezier(.77,0,.18,1);
}

#catalogueList ul {
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children a{
    width: 20rem;
    background-color: red;
    color: white;
    margin-left: 3rem;
    margin-right: 2rem;
    border: 0.3rem solid black;
}

#catalogueList div.menu-item {
    float: left;
}

#catalogueList .button-small {
    transition-duration: 0.5s;
    transition-property: all;
    padding-top: 6px;
    padding-top: 0.375rem;
    padding-bottom: 2.4px;
    padding-bottom: 0.15rem;
    margin-left: auto;
    margin-right: auto;
    margin: 0px 3.6px 6px 0px;
    margin: 0 0.225rem 0.375rem 0;
    background: none;
    display: block;
    text-align: center;
    text-decoration: none;
    background: #FFFFFF;
    color: #555555;
    border: 2px solid #555555;
    border-radius: 5px;
    width: 186px;
    font-size: 13px;
    cursor: pointer;
}

#catalogueList .button-small:hover, #catalogueList .button-small.active {
    color: #FFFFFF;
    background: #555555;
    border: 2px solid #555555;
}

#catalogueList .button-small.menu-item-object-regale {
    /* display:none; */
    animation: fadeInFromNone 1.5s cubic-bezier(.77,0,.18,1);
}

#catalogueList .regalsarchiv-menu{
    float: left;
}

#catalogueList .regalsarchiv-body {
    margin-top: 1rem;
}

#catalogueList .regalsarchiv-head{
    width: 95%;
}

#catalogueList #regalsarchiv-close {
    position: absolute;
    right: 0.5rem;
    float: right;
    width: 2rem;
    font-weight: bold;
    font-size: 1rem;
    padding-top: 0.15rem;
}
@keyframes fadeInFromNone {
    0% {
        transform: translateY( -500rem);
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    50% {
        transform: translateY(0);
    }


    100% {
        transform: translateY(0);
        display: block;
        opacity: 1;
    }
}

@keyframes openShelfList {
    0% {
        transform: scale(0.1,0.1);
        z-index: 0;
    }

    1% {
        display: block;
        transform: scale(0.1,0.1);
        z-index: 100;
    }

    100% {
        display: block;
        transform: scale(1,1);
        z-index: 100;
    }
}

/*=====  End of Module cataloguelist  ======*/
/*============================================
=            Module fullsize/screen buttons  =
============================================*/
button.btFullwindow {
    display: inline-block;
    background: none;
    background-color: white;
    border: 2px solid #555555;
    border-radius: 5px;
    font-size: 0.6rem;
    font-weight: bold !important;
    width: 113px;

    color:black;
    margin-bottom:0.5rem;
    margin-left: 0.25rem;
    cursor: pointer;
}
span.btFullwindow {
    font-style: normal;
    font-size: 1.15rem;
    font-weight: bold !important;
}
button.btFullwindow:hover{
    color: #cc5d58;
}
/*=====  End of Module fullsize/sree  ======*/
