#spb-root .spb-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#spb-root .spb-box {
    display: flex;
	align-items: stretch; 
    width: 900px;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
}

#spb-root .spb-left {
    width: 60%;
	background:#f47528;
	padding:20px;
	text-align:center;
}

#spb-root .spb-left h1{
	color:#fff;
	font-size:50px;
	font-weight:400;
}

#spb-root .spb-left h3{
	color: #fff;
	font-size: 22px;
	padding: 0 50px;
}

#spb-root .spb-left video,
#spb-root .spb-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#spb-root .spb-right {
    width: 40%;
    padding: 0px;
	display: flex;
}

#spb-root .spb-countdown {
    margin-top: 10px;
	justify-content:center;
}
.spb-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 9999;

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.spb-popup.spb-visible {
    opacity: 1;
    transform: translateY(0);
}

.spb-content {
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    display: flex;
    overflow: hidden;
}

.spb-left {
    width: 60%;
}


.spb-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

/* Countdown */
.spb-countdown {
    display: flex;
	justify-content:center;
	align-items:center;
    gap: 2px;
    margin-top: 15px;
	color:#fff;
	font-size:40px;
}

.spb-time-box {
    background: #f15f22;
    color: #fff;
    padding: 10px;
    border-radius: 0px;
    text-align: center;
	min-width:105px !important;
}

.spb-time-box span {
    font-size: 34px;
    display: block;
}
.spb-time-box small {
    font-size: 16px;
	letter-spacing:1px;
	text-transform:uppercase;
    display: block;
}

.spb-box {
    position: relative;
}

/* Close Button */
.spb-close {
    position: absolute;
    top: 12px;
    right: 15px;
    z-index: 10;

    background: rgba(0,0,0,0.6);
    color: #fff;

    border: none;
    width: 32px;
    height: 32px;

    border-radius: 50%;
    font-size: 20px;
    line-height: 32px;

    cursor: pointer;
    transition: all 0.2s ease;
}

.spb-close:hover {
    background: #000;
    transform: scale(1.1);
}

.spb-video-thumb {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
}

.spb-play-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;
    border-radius: 50%;

    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

.spb-video-container {
	position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
}

.spb-video-container iframe {
 position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    width: calc(100% * 3);
    height: 100%;
    transform: translate(-50%, -50%);
}

.spb-logo {
    margin: 15px 0 0 0;
}

.spb-logo img {
    max-width: 140px;
    height: auto;
}

@media (max-width: 800px) {
	
#spb-root .spb-left h1{
	color:#fff;
	font-size:30px;
	font-weight:400;
}

#spb-root .spb-left h3{
	color: #fff;
	font-size: 16px;
	padding: 0 10px;
}

    #spb-root .spb-box {
        flex-direction: column;
        width: 95%;
    }
	 #spb-root .spb-left{
		  width: calc(100% - 40px);
	 }
 
    #spb-root .spb-right {
        width: 100%;
    }


    #spb-root .spb-right {
         height: auto;
		 display:none !important;
    }

    .spb-video-container {
		width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .spb-video-container iframe {
		width: 100%;
        height: 100%;
        display: block;
    }
	.spb-time-box {
		padding: 5px;
		min-width:auto !important;
	}
	.spb-countdown {
	flex-wrap:wrap;
	}
	.spb-time-box span {
		font-size: 24px;
	}
	.spb-time-box small {
		font-size: 12px;
	}
}