
/**
 * Action banner
 *
 * This collection is never use. It will be removed in the next release.
 *
 * @deprecated
 */
.floating-banner {
    background: linear-gradient(143deg, #F66093 23.13%, #F682F2 104.42%);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    color: white;
    border: 0;
    width: 351px;
}

.banner-title {
    /*font-family: DailySans;*/
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
    color: #fff;
}

.banner-subtitle {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin: 5px 0;
}

.contact-button {
    background: white;
    color: #FF1493;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #FF69B4;
    color: white;
}

/* Adding star and clapperboard icons using pseudo-elements */
.signup-banner:before,
.signup-banner:after {
    content: url('path_to_your_star_icon.svg');
    position: absolute;
    top: 10px;
}

.signup-banner:before {
    left: 10px;
}

.signup-banner:after {
    right: 10px;
}

/* Adjust the content URL to your clapperboard icon */
.contact-button:before {
    content: url('path_to_your_clapperboard_icon.svg');
    margin-right: 5px;
    vertical-align: middle;
}