.JLTi_Popover_Toast {
    /* top: 35px; */
    animation: fade-out 0.5s ease-out;
    
    /* Toast表示位置にfixedなどの表示があった場合、hidePopover時に後ろに隠れてしまうため、最前面に表示させアニメーションが表示されるようにするための設定 */
    z-index: 10000;
    
    /* 大きさ */
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    
    /* デザイン */
    padding: 15px 20px;
    border-radius: 5px;
    border: none;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: rgb(70, 70, 70);
    color: #fff;
    /* box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3); */
    filter: drop-shadow(2px 4px 6px #555);

    transition: all 0.5s;
}

.JLTi_Popover_Toast.Info    { background-color: #63a0ba; }
.JLTi_Popover_Toast.Warning { background-color: #edaa49; }
.JLTi_Popover_Toast.Success { background-color: #80b277; }
.JLTi_Popover_Toast.Failure { background-color: #bc6055; }

.JLTi_Popover_Toast:popover-open {
    animation: fade-in 0.5s ease-out;
}

.JLTi_Popover_Toast .Message {
    font-weight: 300;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
  
    100% {
        opacity: 1;
    }
}
  
@keyframes fade-out {
    0% {
        opacity: 1;
        display: block;
    }
  
    100% {
        opacity: 0;
        display: none;
    }
}