.nps-get-quote-button-wrapper {
    .nps-get-quote-button {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #E2E2E2;
        font-size: 12px;
        font-weight: 400;
        fill: var(--e-global-color-7d0d9e1);
        color: var(--e-global-color-7d0d9e1);
        border-radius: 4px;
        padding: 6px 8px 5px;
        transition: background-color 0.3s, color 0.3s;
        line-height: 1;
        
        &:hover {
            background-color: var(--e-global-color-accent);
            color: var(--e-global-color-a4952ee);
            
            .get-quote-icon {
                fill: #fff;
                transition: fill 0.3s;
            }
        }

        .get-quote-icon {
            width: 12px;
            height: 12px;
            margin-inline-end: .3em;
        }
    }
}