﻿/* RIPPLE EFFECT */
.ripple {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    -webkit-transform: translateZ(0); /* to contain zoomed ripple */
    transform: translateZ(0);
    border-radius: inherit; /* inherit from parent (rounded buttons etc) */
    pointer-events: none; /* allow user interaction */
    animation: ripple-shadow 0.4s forwards;
    -webkit-animation: ripple-shadow 0.4s forwards;
}

.rippleWave {
    backface-visibility: hidden;
    position: absolute;
    border-radius: 50%;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    background: rgba(255,255,255, 1);
    opacity: 0.45;
    animation: ripple 2s forwards;
    -webkit-animation: ripple 2s forwards;
}

@keyframes ripple-shadow {
    0% {
        box-shadow: 0 0 0 rgba(0,0,0,0.0);
    }

    20% {
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }

    100% {
        box-shadow: 0 0 0 rgba(0,0,0,0.0);
    }
}

@-webkit-keyframes ripple-shadow {
    0% {
        box-shadow: 0 0 0 rgba(0,0,0,0.0);
    }

    20% {
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }

    100% {
        box-shadow: 0 0 0 rgba(0,0,0,0.0);
    }
}

@keyframes ripple {
    to {
        transform: scale(24);
        opacity: 0;
    }
}

@-webkit-keyframes ripple {
    to {
        -webkit-transform: scale(24);
        opacity: 0;
    }
}

@-webkit-keyframes fadeIt {
    0% {
        background-color: darkgray;
    }

    100% {
        background-color: white;
    }
}

@-moz-keyframes fadeIt {
    0% {
        background-color: darkgray;
    }

    100% {
        background-color: white;
    }
}

@-o-keyframes fadeIt {
    0% {
        background-color: darkgray;
    }

    100% {
        background-color: white;
    }
}

@keyframes fadeIt {
    0% {
        background-color: darkgray;
    }

    100% {
        background-color: white;
    }
}


.list-item {
    background: #fff;
    box-shadow: 0 1px 2px #999;
    font-family: sans-serif;
    height: 60px;
    line-height: 30px;
    list-style: none;
    margin: 6px 2px;
    padding: 15px 10px;
    text-align: left;
    transform: translateZ(0);
    transition: box-shadow 0.15s ease-in;
}

.list-remove-btn:hover {
    background: #F44336;
}

.list-item:hover .list-remove-btn {
    cursor: pointer;
    right: 0;
}

.list-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.list-item-container {
    width: 100%;
    margin: 0 auto;
    max-height: 800px;
}

.list-title {
  background-color: darkred;
  padding: 15px 10px;
  color: white;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  padding-left: 15px;
  font-size: 20px;
}

.birthnumber {
    float: left;
    margin-top: -20px;
}

.amount {
    float: right;
    margin-top: -20px;
}

/* delete button */
.list-remove-btn {
    position: absolute;
    right: -110px;
    width: 100px;
    top: 0;
    background: darkred;
    padding: 15px 0;
    border-radius: 3px;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    transition: 500ms cubic-bezier(0.58, 0.54, 0.41, 1.38);
}

.faded-text {
    list-style-type: none;
    font-size: small;
    color: rgba(0, 0, 0, 0.54);
}

.strong-text {
    list-style-type: none;
    font-size: medium;
    font-weight: bolder;
}

.strong-text-error {
    list-style-type: none;
    font-weight: bolder;
}

li.show {
    background-image: none !important;
    -webkit-animation: fadeIt 0.6s ease-out;
    -moz-animation: fadeIt 0.6s ease-out;
    -o-animation: fadeIt 0.6s ease-out;
    animation: fadeIt 0.6s ease-out;
}
