﻿
/*********************************** 
  Source Instrucitons https://atomiks.github.io/tippyjs/ 
***********************************/

.tippy-box[data-animation="scale"][data-placement^="top"] {
    transform-origin: bottom;
}

.tippy-box[data-animation="scale"][data-placement^="bottom"] {
    transform-origin: top;
}

.tippy-box[data-animation="scale"][data-placement^="left"] {
    transform-origin: right;
}

.tippy-box[data-animation="scale"][data-placement^="right"] {
    transform-origin: left;
}

.tippy-box[data-animation="scale"][data-state="hidden"] {
    transform: scale(0.5);
    opacity: 0;
}

.tippy-box[data-theme~="light"] {
    color: #26323d;
    box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
    background-color: #fff;
}

.tippy-box[data-theme~="light"][data-placement^="top"] > .tippy-arrow:before {
    border-top-color: #fff;
}

.tippy-box[data-theme~="light"][data-placement^="bottom"] > .tippy-arrow:before {
    border-bottom-color: #fff;
}

.tippy-box[data-theme~="light"][data-placement^="left"] > .tippy-arrow:before {
    border-left-color: #fff;
}

.tippy-box[data-theme~="light"][data-placement^="right"] > .tippy-arrow:before {
    border-right-color: #fff;
}

.tippy-box[data-theme~="light"] > .tippy-backdrop {
    background-color: #fff;
}

.tippy-box[data-theme~="light"] > .tippy-svg-arrow {
    fill: #fff;
}

label + label {
    margin-left: 10px;
}

.tip_container {
    /* Center vertically and horizontally */
    position: absolute;
}

.tip_title {
    padding: 4px;
    background: linear-gradient(red, #b30000);
    color: white;
    font-weight: 400;
    font-size: 1.5rem;
}

.tip_title_small {
    padding: 4px;
    background: linear-gradient(red, #b30000);
    color: white;
    font-weight: 400;
    font-size: .9rem;
}

