@font-face {
    font-family: "BarConMed";
    src: url("/themes/custom/aguila/css/../dist2.0/fonts/barlow/BarlowCondensed-Medium.woff2") format("woff2"), url("/themes/custom/aguila/css/../dist2.0/fonts/barlow/BarlowCondensed-Medium.woff") format("woff"), url("/themes/custom/aguila/css/../dist2.0/fonts/barlow/BarlowCondensed-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "BarConExtra";
    src: url("/themes/custom/aguila/css/../dist2.0/fonts/barlow/BarlowCondensed-ExtraBold.woff") format("woff"), url("/themes/custom/aguila/css/../dist2.0/fonts/barlow/BarlowCondensed-ExtraBold.woff2") format("woff2"), url("/themes/custom/aguila/css/../dist2.0/fonts/barlow/BarlowCondensed-ExtraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap
}

.passion-points-popup {
    background: rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.passion-points-popup:not(.passion-points-popup--active) {
    opacity: 0;
    pointer-events: none;
}

.passion-points-popup__bg {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

.passion-points-popup__container {
    background-color: #103EFF;
    border: 2px solid #FFEA49;
    border-radius: 2px;
    max-width: 480px;
    padding: 10px 15px 30px;
    position: relative;
    text-align: center;
    width: 100%;
}

.passion-points-popup__close {
    cursor: pointer;
    color: #fff;
    font-family: 'BarConExtra';
    position: absolute;
    left: 30px;
    top: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.passion-points-popup__close::before {
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    background: url("/themes/custom/aguila/css/../sources-loyalty/dist/assets/images/icons/icon_arrow_left.svg") center/contain no-repeat;
}

.passion-points-popup__body {
    position: relative;
    z-index: 1;
}

.passion-points-popup__logo {
    margin-bottom: 20px;
}

.passion-points-popup__title p {
    color: #103EFF;
    font-family: 'BarConExtra';
    font-weight: bold;
    font-size: 32px;
    line-height: 1;
    margin: 0 auto;
    max-width: 350px;
    text-shadow: -3px 3px 0 #FFEA49;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFEA49;
}

@media (min-width: 991px) {
    .passion-points-popup__title p {
        font-size: 40px;
    }
}

.passion-points-popup__desc p {
    color: #fff;
    font-family: 'BarConExtra';
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.passion-points-popup__select {
    background: transparent url("/themes/custom/aguila/css/../sources-loyalty/dist/assets/images/icons/icon_dropdown_yellow.svg") center right 15px no-repeat;
    border: 2px solid #FFEA49;
    color: white;
    border-radius: 8px;
    font-family: 'BarConMed';
    height: 40px;
    width: 100%;
    padding: 0 18px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.passion-points-popup__select option {
    color: #000;
}

.passion-points-popup__error {
    color: #ff606b;
    font-size: 12px;
    margin-top: 2px;
    text-align: left;
}

.passion-points-popup__submit {
    background: #FFEA49;
    color: #103EFF;
    border-radius: 80px;
    font-family: "BarConExtra";
    font-size: 18px;
    margin-top: 20px;
    margin-inline: auto;
    max-width: 320px;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.passion-points-popup__submit::before {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-left-color: #103eff;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    animation: spinPassion .6s linear infinite;
}

.passion-points-popup__form[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.passion-points-popup__form[disabled] .passion-points-popup__submit {
    font-size: 0;
}

.passion-points-popup__form[disabled] .passion-points-popup__submit::before {
    content: "";
}

@keyframes spinPassion {
    to {
        transform: rotate(360deg);
    }
}