#tooltip {
    background: #333;
    color: white;
    font-weight: bold;
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 4px;
    display: none;
}

#tooltip[data-show] {
    display: block;
}

#arrow,
#arrow::before {
    position: absolute;
    width: 8px;
    height: 8px;
    background: inherit;
}

#arrow {
    visibility: hidden;
}

#arrow::before {
    visibility: visible;
    content: '';
    transform: rotate(45deg);
}

#tooltip[data-popper-placement^='top']>#arrow {
    bottom: -4px;
}

#tooltip[data-popper-placement^='bottom']>#arrow {
    top: -4px;
}

#tooltip[data-popper-placement^='left']>#arrow {
    right: -4px;
}

#tooltip[data-popper-placement^='right']>#arrow {
    left: -4px;
}

.my-custom-scrollbar {
    position: relative;
    height: 300px;
    overflow: auto;
}

.table-wrapper-scroll-y {
    display: block;
}

.blink_me {
    animation: blinker 5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: black;
}

input:focus+.slider {
    box-shadow: 0 0 1px black;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.cart {
    animation: wiggle 2.7s infinite;
    border:1px solid white;
}

.cart span {
    margin-left: .4rem;
}

@keyframes wiggle {
    2% {
        -webkit-transform: translateX(4px) rotate(2deg);
        transform: translateX(4px) rotate(2deg);
    }
    4% {
        -webkit-transform: translateX(-4px) rotate(-2deg);
        transform: translateX(-4px) rotate(-2deg);
    }
    6% {
        -webkit-transform: translateX(4px) rotate(2deg);
        transform: translateX(4px) rotate(2deg);
    }
    8% {
        -webkit-transform: translateX(-4px) rotate(-2deg);
        transform: translateX(-4px) rotate(-2deg);
    }
    10% {
        -webkit-transform: translateX(3px) rotate(1deg);
        transform: translateX(3px) rotate(1deg);
    }
    12% {
        -webkit-transform: translateX(-3px) rotate(-1deg);
        transform: translateX(-3px) rotate(-1deg);
    }
    14% {
        -webkit-transform: translateX(3px) rotate(1deg);
        transform: translateX(3px) rotate(1deg);
    }
    16% {
        -webkit-transform: translateX(-3px) rotate(-1deg);
        transform: translateX(-3px) rotate(-1deg);
    }
    18% {
        -webkit-transform: translateX(2px) rotate(0);
        transform: translateX(2px) rotate(0);
    }
    20% {
        -webkit-transform: translateX(-2px) rotate(0);
        transform: translateX(-2px) rotate(0);
    }
}

.cart:hover {
    animation: none;
}


/*@keyframes animatecart {
    0% {
        box-shadow: 0 0 0 0 rgba(89, 171, 110, .6), 0 0 0 0 rgba(89, 171, 110, .6);
    }
    30% {
        box-shadow: 0 0 0 30px rgba(89, 171, 110, .0), 0 0 0 30px rgba(89, 171, 110, .6);
    }
    65% {
        box-shadow: 0 0 0 30px rgba(89, 171, 110, .0), 0 0 0 10px rgba(89, 171, 110, .0);
    }
    100% {
        box-shadow: 0 0 0 30px rgba(89, 171, 110, .0), 0 0 0 10px rgba(89, 171, 110, .0);
    }
}*/


#data {
    border:1px solid #adadad;
    max-height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 4px;
    text-align: center;
    margin-bottom:4rem;
}

#return-to-top {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 12;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}
