.main-menu {
    /* border: 1px dotted red; */
}

.main-container {
    /* border: 1px dotted blue; */
}

.main-footer {
    /* border: 1px dotted green; */
    text-align: right;
}
.no-padding {
    padding: 5px;
}

.template {
    display: none !important;
}

.transparent {
    opacity: 0 !important;
}

.navbar a.nav-link.active,
.navbar a.dropdown-item.active {
    font-weight: bold;
}

.toast .toast-countdown {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
}

.toast .toast-countdown circle {
    fill: none !important;
    stroke: #fff !important;
    stroke-width: 2.5 !important;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;

    stroke-dasharray: 56.55;
    stroke-dashoffset: 0;

    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.toast .toast-countdown circle.animate {
    animation-name: toast-countdown;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes toast-countdown {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 56.55;
    }
}

.text-align-end {
    text-align: end;
}