:root {
    --wpt__bg-color: #f5f6fa;
    --wpt__text-color: #273c75;
    --wpt__border-color: #dcdde1;
    --wpt__heading-color: #273c75;
    --wpt__icons-color: #273c75;
}

.wptime_adv_text {
    background-color: var(--wpt__bg-color);
    border-radius: 5px;
    padding: 30px;
    margin: 20px 0;
    color: var(--wpt__text-color);
    box-sizing:border-box;
}

.wptime_adv_text p:last-child{
    margin-bottom: 0 !important;
}

.post-content .wptime_adv_text h3{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--wpt__heading-color);
    margin-bottom: 12px;
}

.wptime_adv_text h3:before {
    margin-right: 7px;
    font-weight: 400;
}

.wpt__content {
    font-size: 14px;
    color: var(--wpt__text-color);
}

.wpt__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--wpt__border-color);
    font-size: 12px;
}

.wpt__date, 
.wpt__author {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--wpt__icons-color);
}

/* Light Theme */
.wptime_adv_text.wat__light_theme {
    --wpt__bg-color: #f5f6fa;
    --wpt__text-color: #273c75;
    --wpt__border-color: #d0d2dc;
    --wpt__heading-color: #273c75;
    --wpt__icons-color: #273c75;
}

/* Dark Theme */
.wptime_adv_text.wat__dark_theme {
    --wpt__bg-color: #2f3640;
    --wpt__text-color: #dcdde1;
    --wpt__border-color: #414d68;
    --wpt__heading-color: #dcdde1;
    --wpt__icons-color: #dcdde1;
}

/* Error Theme */
.wptime_adv_text.wat__error_theme {
    --wpt__bg-color: #842b2b;
    --wpt__text-color: #ffd1d1;
    --wpt__border-color: #9e4a4a;
    --wpt__heading-color: #ffd1d1;
    --wpt__icons-color: #ffd1d1;
}

/* Success Theme */
.wptime_adv_text.wat__success_theme {
    --wpt__bg-color: #2b8443;
    --wpt__text-color: #e9ffef;
    --wpt__border-color: #68c281;
    --wpt__heading-color: #e9ffef;
    --wpt__icons-color: #e9ffef;
}

/* Coupon Theme */
.wptime_adv_text.wat__coupon_theme{
    background:#eafbeb;
    border: 1px solid #77d67c;
}

.wptime_adv_text.wat__coupon_theme .wpt__meta{
    display:none;
}

.wptime_adv_text.wat__coupon_theme h3{
    font-size:20px;
    color: #238728;
    text-align: center;
}

.wptime_adv_text.wat__coupon_theme h3:before{
    display: block;
    font-size:32px;
    margin:0;
    margin-bottom: 12px;
}

.wptime_adv_text.wat__coupon_theme .wpt__content{
    font-size:16px;
    color: #238728;
    text-align: center;
}

.wpt__coupon-btn{
    background-color: #238728;
    color: #fff;
    padding: 3px 15px;
    line-height: 1;
    border-radius:5px;
    border: 3px dotted #fff;
    font-size:14px;
    cursor:pointer;
}

.wptime_adv_text.wat__coupon_theme p{
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .wptime_adv_text {
        padding: 20px;
    }
    
    .wpt__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
}