/**
 * Copyright © 2016 Wyomind. All rights reserved.
 * See LICENSE.txt for license details.
 */
#easypopup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, .5);
}

.easypopup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#easypopup {
    background-color: white;
    position: fixed;
    z-index: 1000001;
    text-align: center;
    padding: 25px;
    width: 100%;
    max-width: 100%;
    overflow: auto;
}

#easypopup.top {
    top: 0;
    left: 50%;
    max-height: 50%;
    transform: translate(-50%, 0);
}

#easypopup.left {
    top: 50%;
    left: 0;
    max-width: calc(100% - 100px);
    transform: translate(0, -50%);
}

#easypopup.center {
    max-height: calc(100% - 100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#easypopup.right {
    top: 50%;
    right: 0;
    max-width: calc(100% - 100px);
    transform: translate(0, -50%);
}

#easypopup.bottom {
    bottom: 0;
    left: 50%;
    max-height: 50%;
    transform: translate(-50%, 0);
}