<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.admaster-container {
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    padding: 20px;
    max-width: 420px;
    background-color: white;
    box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
}

.admaster-container-text-and-button {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.admaster-container-image {
    align-self: center;
    width: 68px;
    height: 68px;
    border-radius: 68px;
}

.admaster-button {
    border-radius: 10px;
    background-color: #6D788D;
    border: 0px white;
    color: white;
    width: fit-content;
    padding: 10px;
    font-family: 'Arial';font-size: 14px;
    transition: background-color 0.3s, transform 0.3s;
}

.admaster-button:hover {
    background-color: #57647C;
}

.admaster-button:active {
    transform: scale(0.95);
}

.admaster-fill {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.admaster-title {
    color: #4C4E64;
    font-family: 'Arial';
    font-size: 14px;
}

.admaster-text {
    color: #4C4E64;
    font-family: 'Arial';
    font-size: 12px;
}

.admaster-hide {
    display: none;
}</pre></body></html>