.cbanotebooks-price-display {
    --primary: #2279D3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cbanotebooks-price-display .special-price,
.cbanotebooks-price-display .list-price {
    box-shadow: 0 1px 5px rgba(0,0,0,.2);
    padding: 1rem;
    border-radius: 5px;
}

.cbanotebooks-price-display .amount {
    font-weight: bold;
}

.ligth-blue {
    box-shadow: 0 1px 5px var(--primary); 
    position: relative;
}

.ligth-blue:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 1px 10px var(--primary);
    opacity: 0;
}

.ligth-blue:after {
    animation: opacityChange 500ms infinite alternate ease-in-out;
}

.ligth-blue {
    font-size: 1.25em;
}

.cbanotebooks-price-display .price-box {
    display: flex;
    align-items: center;
    gap: .25em;
}


.cbanotebooks-price-display .badge {
    font-size: .8em;
    padding: .25em .5em;
    font-weight: 500;
    border-radius: 4px;
    background: lightgray;
    text-transform: uppercase;
    line-height: 1;
}

.cbanotebooks-price-display .ligth-blue .badge {
    background: var(--primary);
    color: white;
}

.cbanotebooks-price-display .list-price {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
	font-weight: normal;
}

.cbanotebooks-price-display .list-price .fee_value {
    display: flex;
    margin: auto;
    padding: 5px;
    justify-content: space-between;
    align-items: center;
    /*gap: 15px;*/
}

.cbanotebooks-price-display .view-installments {
    background: 0;
    margin: 0;
    padding: 0;
    color: var(--primary);
    border: 0;
}

@keyframes opacityChange {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}