@font-face {
    font-family: Greco;
    src: url(../fonts/FOT-GrecoStd-DB.otf);
    font-weight: 600;
}

@font-face {
    font-family: Greco;
    src: url(../fonts/FOT-GrecoStd-B.otf);
    font-weight: 700;
}


.popup {
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    translate: 0 200%;
    padding: 26px 0 58px 0;
    box-sizing: border-box;
    width: 980px;
    height: 700px;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(209, 209, 209, 0.5)), linear-gradient(#f1f1f1 30%, #E3E3E3 40%);
    background-size: 100%, 56.57px 7px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.5);
    z-index: 4;
    transition: translate 0.4s ease-in-out;
}

.popup::before,
.popup::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 34px;
    top: 0;
    left: 0;
    background: #C7C7C7;
}

.popup::before {
    top: unset;
    bottom: 0;
}

.popup-text-wrapper {
    box-sizing: border-box;
    padding: 0 25pt;
    display: flex;
    flex: 1;
    align-items: center;
}

.popup-text {
    font-family: Greco;
    line-height: 1.1;
    font-size: 30pt;
    color: #686868;
    text-align: center;
}

.wii-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: scale 0.1s ease-in-out;
}

@keyframes pressdatshit {
    0% {
        scale: 1;
    }

    15% {
        scale: .95;
        filter: contrast(1) brightness(1);
    }

    30% {
        scale: 1.08;
        filter: contrast(0) brightness(2);
    }

    100% {
        scale: 1;
        filter: contrast(1) brightness(1);
    }
}

.button-bg {
    width: 410px;
    height: auto;
}

.button-text {
    position: absolute;
    font-family: Rodin Pro;
    font-size: 34pt;
    color: #444648;
    pointer-events: none;
}

.wii-button:hover {
    scale: 1.08;
}