#add2cart-caption.add2cart-caption--container {
    position: absolute;
    width: 210px;
    height: 100px;
    text-align: center;
    border: 1px solid #0076db;
    background: linear-gradient(to bottom, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 61%);
    border-radius: 4px;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInAddToCartContainer 1s ease-in-out forwards;
    z-index: 1;
}

#add2cart-caption .add2cart-caption--paragraph {
    margin-top: 8px;
}

#add2cart-caption .add2cart-caption--paragraph p {
    padding: 10px 36px;
    font-size: 12px;
    text-indent: 0px;
    font-style: normal;
}

#add2cart-caption .add2cart-caption--paragraph a {
    display: inline;
    text-decoration: none;
}

#add2cart-caption .add2cart-caption--anchor {
    display: block;
    font-size: 14px;
    text-decoration: none;
    margin-top: 5px;
    text-transform: uppercase;
    font-style: normal;
    width: auto;
    height: auto;
}

#add2cart-caption .add2cart-caption--close {
    position: absolute;
    border: 0;
    background: transparent;
    top: 2px;
    right: 5px;
    font-size: 24px;
    color: #0076db;
    cursor: pointer;
}

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