.tinyfrog-popup-wrap {
    display: grid;
    justify-items: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    opacity: 0;
}

.tinyfrog-popup-wrap .tinyfrog-popup,
.tinyfrog-popup-wrap .tinyfrog-popup .tinyfrog-popup-content {
    position: relative;
    background-color: #fff;
}

.tinyfrog-popup-wrap .tinyfrog-popup {
    display: flex;
    width: 80%;
    max-width: 1140px;
    height: fit-content;
    opacity: 0;
}

.tinyfrog-popup-wrap .tinyfrog-popup::before {
    content: "\f335";
    display: grid;
    position: absolute;
    top: -8px;
    right: -8px;
    font: normal 34px/1 'dashicons';
    color: #fff;
    background-color: #747474;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
}

.tinyfrog-popup-wrap .tinyfrog-popup .tinyfrog-popup-content {
    max-height: 80vh;
    overflow-y: auto;
}