.viewer-dialog {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 12;
    background: rgba(255,255,255,0.9);
}

.viewer-container {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    width: 90%;
    height: 90%;
}

.menu-page-title {
    font: normal normal bold 4vw/126px Roboto Slab;
    letter-spacing: 0;
    color: #777777;
}

.close-dialog-button {
    z-index: 21;
    top: 7%;
    left: 6%;
    width: 30px;
    height: 30px;
    position: absolute;
    background-size: cover;
    background-image: url("../assets/img/close_icon.svg");
}

.menus-container {
    display: flex;
}

.menu-button-container {
    margin-right: 20px;
    cursor: pointer;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 32%;
    height: 310px;
    background: #FFFFFF 0 0 no-repeat padding-box;
    box-shadow: 0 3px 40px #0000000d;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.menu-button-container:hover {
    background: #f6f6f6;
    box-shadow:0 62px 70px #0000000d;
}

.menu-button-container:hover .menu-image{
    width: 230px;
    height: 230px;
}

.menu-image {
    transition: all 0.3s ease-in-out;
    width: 201px;
    height: 201px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../assets/img/logo_green_parrot_menu.png);
}

.menu-title {
    text-align: center;
    font: normal normal bold 20px/26px Roboto Slab;
    letter-spacing: 0;
    color: #777777;
}



@media (max-width: 986px) {
    .viewer-container {
        width: 95%;
        height: 95%;
    }

    .close-dialog-button {
        z-index: 21;
        top: 4%;
        left: 6%;
        width: 30px;
        height: 30px;
        position: absolute;
        background-size: cover;
        background-image: url("../assets/img/close_icon.svg");
    }
}