div.toast-container{
    position: fixed;
    right: 10px;
    top: 100px;
}
div.toast-container img{
    width: 30px;
    height: 30px;
    object-fit: cover;
}
div.toast-container .toast-body.tags-error{
    color: red;
}
div.toast-container .toast-body.tags-success{
    color: green;
}


/* Single-Post.html Style */
section.single-post-content .single-post figure img{
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* hovers */
a.register{
    position: relative;
}
#p_hover{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 30px;
    font-size: 0.8em;
    padding: 3px 10px;
    left: -20px;
    background-color: white;
    border-radius: 4px;
    /* border: 1px solid #959595; */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    transition: 200ms;
}

a.register:hover p#p_hover{
    top: 40px;
    opacity: 1;
    visibility: visible;
}

a.register p#p_hover::before{
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: -10px;
    height: 10px;
}

a.register p#p_hover::after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    transform: rotate(45deg) translate(0, -50%);
    top: 0;
    left: calc(50% - 7.5px);
    background: rgb(255, 255, 255);
}
.grecaptcha-badge{
    /* border: 10px solid green; */
    opacity: 0;
    pointer-events: none;
}