/* Modal Base CSS */
.dataprotection-overlay
{
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;

    opacity: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -ms-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;

    background: rgba(0,0,0,.6);
}

.dataprotection-content {
    font-family: "Josefin Sans",Verdana,Geneva,sans-serif;
    height: 100%;
    margin: 0px 0 0 15px;
    overflow-y: scroll;
    width: 100%;
}

.dataprotection-modal
{
    position: absolute;
    z-index: 9999;
    top: 12%;
    left: 50%;
    position: fixed;
//overflow-y: scroll;

    height: 75%;

//margin-top: -60px;

    margin-bottom: 30px;

    opacity: 0;

    width: 75%;
    padding: 0 20px 10px 0;

    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -ms-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;

    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0);

    border-radius: 2px;
    background: #fff;
}

.dataprotection-modal.dataprotection-open.dataprotection-anchored
{
    top: 20px;

    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.dataprotection-modal.dataprotection-open
{
    opacity: 1;
}

.dataprotection-overlay.dataprotection-open
{
    opacity: 1;

}

/* Close Button */
.dataprotection-close
{
    font-family: Helvetica,Arial,sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 12px;

    position: fixed;
    top: 15px;
    right: 30px;

    padding: 7px 7px 7px;

    cursor: pointer;

//color: #fff;
    outline: none;


    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;

    border-radius: 4px;
//border: solid 1px #00AFCC;

    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);

//background: #00AFCC;
}

.dataprotection-close:hover
{
    background: gray;
}

/* Default Animation */

.dataprotection-overlay.fade-and-drop
{
    display: block;

    opacity: 0;
}

.dataprotection-modal.fade-and-drop
{
    top: -300%;

    opacity: 1;

    display: block;
}

.dataprotection-modal.fade-and-drop.dataprotection-open
{
    top: 12%;

    -webkit-transition: 500ms top 500ms ease;
    -moz-transition: 500ms top 500ms ease;
    -ms-transition: 500ms top 500ms ease;
    -o-transition: 500ms top 500ms ease;
    transition: 500ms top 500ms ease;
}

.dataprotection-modal.fade-and-drop.dataprotection-open.dataprotection-anchored
{

    -webkit-transition: 500ms top 500ms ease;
    -moz-transition: 500ms top 500ms ease;
    -ms-transition: 500ms top 500ms ease;
    -o-transition: 500ms top 500ms ease;
    transition: 500ms top 500ms ease;
}

.dataprotection-overlay.fade-and-drop.dataprotection-open
{
    top: 0;

    -webkit-transition: 500ms opacity ease;
    -moz-transition: 500ms opacity ease;
    -ms-transition: 500ms opacity ease;
    -o-transition: 500ms opacity ease;
    transition: 500ms opacity ease;

    opacity: 1;
}

.dataprotection-modal.fade-and-drop
{
    -webkit-transition: 500ms top ease;
    -moz-transition: 500ms top ease;
    -ms-transition: 500ms top ease;
    -o-transition: 500ms top ease;
    transition: 500ms top ease;
}

.dataprotection-overlay.fade-and-drop
{
    -webkit-transition: 500ms opacity 500ms ease;
    -moz-transition: 500ms opacity 500ms ease;
    -ms-transition: 500ms opacity 500ms ease;
    -o-transition: 500ms opacity 500ms ease;
    transition: 500ms opacity 500ms ease;
}


#dataProtectionModal, #impressumModal
{
    display: none;
}

.trigger-button
{
    font-size: 17px;

    position: relative;
    top: 100px;

    display: block;

    margin: auto;
    padding: 10px 30px;

    cursor: pointer;

    color: #fff;
    border: 0;
    border-radius: 3px;
    outline: none;
    background: #2ecc71;
    box-shadow: 0 5px 1px #27ae60;
}

.trigger-button:hover
{
    background: #27ae60;
    box-shadow: 0 5px 1px #145b32;
}

.trigger-button:focus
{
    border-top: 5px solid white;
    box-shadow: none;
}