html,
body,
button,
input,
select,
textarea,
figure,
h1,
h2,
h3,
h4,
h5,
ul,
li,
dl,
dt,
dd,
p,
span,
form {
    margin: 0;
    padding: 0
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #F7F8FA;
}

a,
a:hover {
    text-decoration: none;
}

ol,
ul,
li,
input {
    list-style: none
}

.play-wrap {
    height: 100vh;
    background-color: #e5e5e5;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.iframes {
    width: 100%;
    height: 100%;
    border: 0 none;
}

/* .ad-box{
    height: 50px;
    border: 1px red solid;
} */
.popupLayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: opacity 0.5s ease-in-out;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -999999;
    opacity: 0;
}

.slideBox {
    height: 100%;
    position: relative;
}

.slideBox .countdownBox {
    border-radius: 1.25rem;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    padding: .1875rem .9375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: .875rem;
    min-width: 3.125rem;
    min-height: 1.25rem;
}

.countdownBox .closeBtn {
    font-size: .875rem;
    color: #fff;
}

.slideBox .bd {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-box {
    height: 50px;
}

.side-menu {
    position: absolute;
    right: 5px;
    top: 100px;
    width: 3.75rem;
    height: 3.75rem;
}

.menu-icon {
    width: 100%;
    user-select: none;
    animation: heartBeat 1s ease-in-out infinite alternate;
    box-shadow: 0px 5px 5px 0px #f1f8f7;
    border-radius: 100%;
}

.menu-box {
    position: fixed;
    z-index: 999;
    top: 100px;
    right: 0px;
    padding: 10px;
    border-radius: 10px;
    background: rgb(39, 49, 54);
    display: none;
}
.menu-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-height: 450px;
    overflow: auto;
}
.icon-box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.icon-box a{
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
}
.icon-box a img{
    width: 30px;
}
.list-item{
    display: block;
    overflow: hidden;
    width: 70px;
    height: 70px;
    margin: 5px;
    border-radius: 8px;
}
.list-item img{
    width: 100%;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}