/**
 * @fileoverview Promoter Component Styles
 * 
 * This file contains styles for promoter selection cards, promoter information
 * display, and promoter-related UI components used in product pages.
 * 
 * Key Features:
 * - Promoter card layouts
 * - Promoter selection states
 * - Promoter information display
 * - Mobile promoter interactions
 */

/* Promoter Card Styles */
.promotor .tarjeta-redonda {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 15px;
}

.promotor .scaem-title {
    padding: 0;
}

.promotor .img-nueva-tarjeta {
    padding: 0 15px;
}

.detalles-promotor {
    color: var(--themecolor);
    line-height: 15px;
}

.atributos-promotor li {
    color: #767676;
    list-style: none;
    font-size: 13px;
}

.atributos-promotor li i {
    width: 20px;
}

/* Promoter Selection Styles */
.promotor input[type=radio] {
    display: none;
}

.promotor input[type=radio]:checked + label,
.label-promotor-seleccionado {
    display: none;
}

/* Promoter Information Styles */
.promotor-info-oculto {
    display: none;
    padding: 0px;
    padding-top: 15px;
}

/* Mobile Promoter Styles */
@media (max-width: 600px) {
    .promotor {
        margin-bottom: 20px;
    }

    .promotor .img-nueva-tarjeta {
        text-align: center;
    }

    /* .promotor img {
        width: 35%;
        border-radius: 50%;
    } */

    .promotor .scaem-title {
        padding-top: 0;
    }

    .promotor .scaem-title h3 {
        text-align: center;
    }
}