.easy-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.easy-content {
    display: flex;
    position: relative;
    min-width: 200px;
    min-height: 200px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
}

.easy-close {
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    right: 15px;
    top: 10px;
    cursor: pointer;
    color: #333333;
    z-index:99;
}

.easy-close:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    margin: auto;
    background-color: currentColor;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.easy-close:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    margin: auto;
    background-color: currentColor;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
}

.easy-close:hover {
    transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
}

.easy-inner {
    background: #fff;
    position: relative;
    max-width: 100%; 
}

.center-title {
    font-family: Caveat;
    font-style: normal;
    font-weight: bold;
    font-size: 34px;
    text-align: center;
    color: #219653;
    line-height: 1;
    margin: 20vh 0;
}

.easy-scroll {
    overflow: auto;
    max-height: 100%;
    max-width: 100%;
}

body.easy-blocked {
    overflow: hidden;
}

@media (max-width:768px) {
    .easy-content {
        /* align-items:flex-start; */
        /* display: block; */
        /* min-height: 0; */
    }
}