<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wp-container{
    display:flex;
    justify-content: space-around;
    align-items: center;
    background-color:#1EAB53;
    width: calc(100% - 16px); 
    height:52px;
    margin-bottom:24px;
    position: relative;
    padding: 5px 0 5px 60px;
    margin-left: 16px;       
}

.wp-img {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(1px 0px 3px rgba(0, 0, 0, 0.10)) drop-shadow(5px -1px 5px rgba(0, 0, 0, 0.09)) drop-shadow(11px -1px 7px rgba(0, 0, 0, 0.05)) drop-shadow(19px -2px 8px rgba(0, 0, 0, 0.01)) drop-shadow(30px -4px 9px rgba(0, 0, 0, 0.00));
}

.wp-text, .wp-phone {
    font-size:14px;
    color: #FFF;
    font-weight:700;
    line-height:140%;
}

.line {
    height:1px;
    background: #FFF;
    margin: 4px 0;
}

.wp-phone {
    font-size:22px;

}

@media (max-width: 350px) {
    .wp-container {
        width: 100%;
        display: flex;
        align-items: flex-start;
        height: 100px;
        padding: 8px 12px;
        margin: 0 0 24px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .wp-img {
        left: 20px;
    }

    .wp-text, .wp-phone {
        width: 100%;
        text-align: center;
        display: block;
        margin-left: 80px;
    }

    .wp-text {
        margin-bottom: 4px;
    }

    .wp-phone {
        margin-top: 0;
        font-size:20px;
    }

    .line {
        width: auto;
    }
}

</pre></body></html>