
.button:hover {
    background: orange;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /*background: rgba(0, 0, 0, 0.4);*/
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    display: none;
}
.overlay[data-opened=opened],
.overlay:target {
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 200;
}

.overlay-wrapper {
    position: fixed;

}

.popup {
    top: 146px;
    margin: -50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 800px;
    min-height: 100px;
    position: fixed;
    left: 0;
    right: 0;
    /*transition: all 5s ease-in-out;*/
	box-shadow: 1px 5px 10px rgba(0, 0, 0, .3);

}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    /*font-weight: bold;*/
    text-decoration: none;
    color: #333;
    z-index: 101;
}
/*
.popup .close:hover {
    color: orange;
}
*/
.popup .content {
    margin-top: 40px;
    max-height: 60vh;
    overflow: auto;
}

/*cookie policy*/
.overlay:target.cookie-policy,
.overlay[data-opened=opened].cookie-policy{
    position: fixed;
    top: 0;
    /*background: rgba(0, 0, 0, 0.4);*/
    background: url('/js_plugins/fancybox/source/fancybox_overlay.png');
    z-index: 500;
}

