﻿@charset "UTF-8";
/* CSS Document */

/* ==========================================================
   Header Survey Promotion
   ========================================================== */

.survey-promo {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding: 8px 14px 8px 8px;
    margin: 4px 0;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    line-height: 1.2;
}


/* Survey graphic
   ---------------------------------------------------------- */

.survey-promo-image {
    display: block;
    flex: 0 0 auto;
    line-height: 0;
}

    .survey-promo-image img {
        display: block;
        width: auto;
        height: 82px;
        border-radius: 6px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .survey-promo-image:hover img,
    .survey-promo-image:focus img {
        transform: scale(1.025);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    }


/* Main promotional text
   ---------------------------------------------------------- */

.survey-promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 210px;
}

.survey-promo-prize {
    margin-bottom: 4px;
    color: #d71948;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.survey-promo-details {
    margin-bottom: 7px;
    color: #444;
    font-size: 12px;
    white-space: nowrap;
}

    .survey-promo-details strong {
        color: #111;
    }

.survey-promo-dot {
    display: inline-block;
    margin: 0 5px;
    color: #aaa;
}


/* Survey call-to-action button
   ---------------------------------------------------------- */

.survey-promo-button {
    display: inline-block;
    padding: 6px 15px;
    background: #002855;
    border-radius: 4px;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .survey-promo-button:hover,
    .survey-promo-button:focus {
        background: #d71948;
        color: #fff !important;
        text-decoration: none !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.20);
    }


/* Free shipping message
   ---------------------------------------------------------- */

.survey-promo-shipping {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
    padding-left: 14px;
    border-left: 1px solid #ddd;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

    .survey-promo-shipping .fa {
        color: #d71948;
        font-size: 16px;
    }