/********************
  Divided Price Format
  Price displayed with separate euro and cents
********************/
.divided-format__price {
    display         : flex;
    align-items     : flex-start;
    font-size       : 1em;
    line-height     : 1;
    color           : var(--color-primary);
    font-weight     : 700;
}

.divided-format__price .unit {
    font-size   : 1em;
    line-height : 1;
}

.divided-format__price .right {
    display         : flex;
    flex-direction  : column;
    justify-content : flex-start;
    margin-left     : 2px;
    padding-top     : 2px;
}

.divided-format__price .currency {
    font-size   : 0.5em;
    line-height : 1;
    font-weight : 600;
}

.divided-format__price .cent {
    font-size   : 0.45em;
    line-height : 1;
    font-weight : 600;
}

/* Product page specific size */
.product-price__current-price .divided-format__price {
    font-size : 2.5rem;
}

/* Product miniature size */
.product-price-and-shipping .divided-format__price {
    font-size : 1.5rem;
}
