﻿/*START Yellow Sticky Note style */
@import url('https://fonts.googleapis.com/css2?family=Kalam&display=swap');

/* Some positioning and ratios */
.container-sticky {
    display: inline-block;
    vertical-align: top;
}

.sticky-outer {
    display: flex;
    padding-top: 90%;
    position: relative;
    width: 100%;
}

.sticky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

    /* Shadow behind the sticky note */
    .sticky:before {
        box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, 0.5);
        background-color: rgba(0, 0, 0, 0.25);
        content: '';
        width: 90%;
        left: 5px;
        height: 75%;
        position: absolute;
        top: 30%;
    }

/* The sticky note itself */
.sticky-content {
    /*font-family: "Lucida Handwriting", "Brush Script";*/
    background: linear-gradient( 180deg, rgba(255, 230, 111, 1) 0%, rgba(255, 230, 111, 1) 12%, rgba(255,255,153, 1) 75%, rgba(255,255,153, 1) 100% );
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    padding: 30px 10px 0 5px;
    clip-path: url(#stickyClip);
}

.sticky-setup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sticky-container {
    min-width: 245px;
    margin: -20px 30px 40px 0;
}
/*END Yellow Sticky Note style */


/*START Card style */
.card-price {
    display: inline-block;
    z-index: 10;
    width: 200px;
    height: 70px;
    background-color: #943B82;
    -webkit-border-radius: 3px 4px 4px 3px;
    -moz-border-radius: 3px 4px 4px 3px;
    border-radius: 3px 4px 4px 3px;
    border-left: 1px solid #943B82;
    /* This makes room for the triangle */
    margin: 5px 0 0 19px;
    position: relative;
    color: white;
    font-weight: 300;
    font-size: 22px;
    line-height: 25px;
    padding: 10px;
}

    /* Makes the triangle */
    .card-price:before {
        content: "";
        position: absolute;
        display: block;
        left: -19px;
        top: 0;
        width: 0;
        height: 0;
        border-top: 35px solid transparent;
        border-bottom: 35px solid transparent;
        border-right: 19px solid #943B82;
    }

    /* Makes the circle */
    .card-price:after {
        content: "";
        background-color: white;
        border-radius: 50%;
        width: 4px;
        height: 4px;
        display: block;
        position: absolute;
        left: -9px;
        top: 33px;
    }
/*END Card style */


/*START Ribbon style */
.ribbon {
    position: absolute;
    top: 0;
    left: 25px;
    text-align: center;
    background: #ffd8a3;
    display: block;
    width: 30px;
    height: 35px;
    padding-top: 0;
}

    .ribbon:after {
        content: "";
        width: 100%;
        top: 100%;
        position: absolute;
        display: block;
        border-width: 0 15px 15px 15px;
        border-color: #ffd8a3;
        border-bottom-color: transparent;
        border-style: solid;
        box-sizing: border-box;
    }
/*START Ribbon style */