/* Skip Ads */

.only-mobile {
    display: none;
}

.skip-ads {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: rgb(0 0 0 / 50%);
    padding: 20px 0;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    /* background-color: rgb(245 245 245); */
}

.skip-ads::-webkit-scrollbar {
    width: 10px;
    display: none;
}

.skip-ads::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.skip-ads::-webkit-scrollbar-thumb {
    background: #888;
}

.skip-ads-wrap {
    position: relative;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skip-ads-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skip-ads-head img {
    width: auto;
}

.skip-ads-col img {
    height: 650px;
    width: auto;
}

.skip-ads-head .btn {
    /* background: #ED193F; */
    border: none;
    padding: 7px 20px;
    border-radius: 3px;
    font-weight: 500;
}

.skip-ads-head .btn:focus {
    outline: none !important;
    box-shadow: none !important;
    /* background: #8c061e; */
}

.skip-ads.active {
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out .5s;
}

.skip-ads-wrap .btn {
    position: absolute;
    right: 135px;
    top: 38px;
    height: 30px;
    width: 30px;
    line-height: 32px;
    text-align: center;
    padding: 0;
    border-radius: 100%;
    border: none;
    /* background: var(--color-orange); */
}

.skip-ads-wrap .btn:focus {
    box-shadow: none;
}


/* Skip Ads End */
