/* WISH LIST*/
.sepa-wishlist {
    border-right: 1px solid;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-left: 8px;
}

.wishlist-box {
    position: fixed;
    right: 175px;
    top: 31px;
    color: var(--rosso);
    font-size: 16px;
    font-family: var(--default_font);
    z-index: 3;
}

.wishlist-box a {
    color: var(--main_grey);
    font-weight: 600;
    transition: all 1s;
}

.wishlist-box a:hover {
    color: var(--rosso);
    text-decoration: none;
    transition: all 1s;
}

.wishlist-box svg {
    width: 15px;
    fill: var(--rosso);
    margin-top: -3px;
}

.wishlist-box #icona-lettera {
    width: 35px;
    fill: var(--main_grey);
    transition: all 1s;
}

.wishlist-box a:hover #icona-lettera {
    fill: var(--rosso);
    transition: all 1s;
}

.wishlist-box .counter {
    position: absolute;
    right: -25px;
    top: 4px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
}

.wishlist-box .counter svg {
    width: 28px;
    fill: var(--rosso);
    margin-top: -2px;
}

.wishlist-box .counter span {
    position: absolute;
    right: -4px;
    top: 1px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 13px;
    color: white;
}

#small-dialog {
    background: var(--rosso);
    padding: 75px 30px;
    text-align: left;
    max-width: 480px;
    margin: 40px auto;
    position: relative;
    color: white;
    width: 100%;
}

#small-dialog h3 {
    font-size: 14px;
    text-align: center;
    color: white;
}

#small-dialog p {
    text-align: center;
    font-weight: bold;
    margin-top: -6px;
    line-height: 16px;
    font-size: 20px;
}

#small-dialog span {
    font-size: 12px;
    text-align: center;
    color: white;
    display: block;
}

#small-dialog a {
    color: white;
}

#small-dialog a:hover {
    text-decoration: none;
    color: var(--main_grey_light);
}

#small-dialog .wrapper-bottoni-popup a {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

#small-dialog .wrapper-bottoni-popup a:hover {
    text-decoration: none;
}

.heart {
    position: absolute;
    right: 16px;
    bottom: 0px;
    cursor: pointer;
}

.single-blocchi .heart {
    position: absolute;
    right: 16px;
    bottom: -25px;
    cursor: pointer;
}

.heart .add-to-wishlist-txt {
    opacity: 0;
    position: absolute;
    font-size: 12px;
    right: 20px;
    top: 4px;
    transition: all .3s;
    text-transform: uppercase;
    color: var(--rosso);
    font-family: var(--default_font);
    font-weight: 600;
}

.heart svg {
    width: 25px;
    fill: var(--rosso);
    transition: all .3s;
}

.heart:hover svg {
    width: 25px;
    fill: var(--rosso);
    transition: all .3s;
}

.heart:hover .add-to-wishlist-txt {
    opacity: 1;
    right: 35px;
    transition: all .3s;
}