.spptb-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spptb-popup-container.active {
    display: flex;
}
.spptb-popup-container .popup-content {
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 570px;
    padding: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}
.spptb-popup-container.active .popup-content {
    opacity: 1;
    transform: scale(1);
}
.spptb-popup-container .popup-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.spptb-popup-container .popup-header h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    margin: 0;
}
.spptb-popup-container .popup-header__icon {
    background: linear-gradient(220.03deg, #fff3dd 39.57%, #ffe3ad 97.5%);
    border-radius: 4px;
    padding: 6px;
}
.spptb-popup-container .popup-content h4 {
	font-size: 17px;
	font-weight: normal;
	color: #656668;
	margin: 15px 0 35px;
}
.spptb-popup-container .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
    background-color: #FF4C4C;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.spptb-popup-container .close-btn:hover {
    background-color: #e02e2e;
}

.spptb-popup-container.active .popup-content {
    -webkit-animation: wobble-show .5s;
    animation: wobble-show .5s;
}

@keyframes wobble-show {
    0% {
        transform: scale(.7);
    }
    45% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(.95);
    }
    100% {
        transform: scale(1);
    }
}

.spptb-popup-container .feature-lists {
    margin-bottom: 20px;
}

.spptb-popup-container .feature-list {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.spptb-popup-container .feature-list > p {
    font-size: 14px;
    line-height: 1.3;
    color: #656668;
    margin: 0 0 18px;
}

.spptb-popup-container .feature-list > p span {
    font-weight: 500;
    color: #000;
}

.spptb-popup-container .feature-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background-color: #139f84;
    border-radius: 50%;
    position: relative;
}

.spptb-popup-container .feature-icon::after {
    position: absolute;
    content: "";
    left: 6px;
    top: 6px;
    width: 7px;
    height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.spptb-popup-container .upgrade-btn {
    display: inline-block;
    background-color: #FF4C4C;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.spptb-popup-container .upgrade-btn:hover {
    background-color: #e02e2e;
    color: #fff;
}

.spptb-popup-container .upgrade-btn-secondary {
	background-color: #00b884;
	color: #fff;
	margin-right: 10px;
}
.spptb-popup-container .upgrade-btn-secondary:hover {
    background-color: #139f84;
    color: #fff;
}

/* .spptb-header-pro-banner {
	background: linear-gradient(176.44deg,#0f5858 2.92%,#145469 42.98%,#0d3458 99%);
	color: #fff;
	padding: 6px 12px;
}
*/
.spptb-header-pro-banner {
	color: #0F585A !important;
	font-weight: bold;
	text-decoration: underline !important;
}
.spptb-header-pro-banner:focus {
	outline: none;
	box-shadow: none;
}
@media only screen and (max-width: 1499px){
    .spptb-header-pro-banner {
        max-width: 150px;
    }
    .spptb-header-pro-banner svg {
        width: 40px;
    }
}
