.content-margin {
    margin-bottom: 1em;
}

.disabled-event {
    cursor: not-allowed;
}

.line-through {
    text-decoration: line-through;
}

.tooltipster-sbm-danger .tooltipster-box {
    color: #721c24 !important;
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0px 10px 24px -9px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 10px 24px -9px rgba(66, 68, 90, 1);
    box-shadow: 0px 10px 24px -9px rgba(66, 68, 90, 1);
}

.tooltipster-sbm-danger .tooltipster-content {
    color: #721c24 !important;
}

.tooltipster-sbm-danger .tooltipster-arrow .tooltipster-arrow-border {
    border-top-color: #f8d7da !important;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #f8d7da !important;
}



#checkout-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    cursor: pointer;
}

#checkout-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

.dot-pulse {
    position: relative;
    left: -9335px;
    top: -23px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: white;
    color: white;
    box-shadow: 9999px 0 0 -5px white;
    animation: dotPulse 1.5s infinite linear;
    animation-delay: .25s;
}

    .dot-pulse::before, .dot-pulse::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: white;
        color: white;
    }

    .dot-pulse::before {
        box-shadow: 9984px 0 0 -5px white;
        animation: dotPulseBefore 1.5s infinite linear;
        animation-delay: 0s;
    }

    .dot-pulse::after {
        box-shadow: 10014px 0 0 -5px white;
        animation: dotPulseAfter 1.5s infinite linear;
        animation-delay: .5s;
    }

@keyframes dotPulseBefore {
    0% {
        box-shadow: 9984px 0 0 -5px white;
    }

    30% {
        box-shadow: 9984px 0 0 2px white;
    }

    60%, 100% {
        box-shadow: 9984px 0 0 -5px white;
    }
}

@keyframes dotPulse {
    0% {
        box-shadow: 9999px 0 0 -5px white;
    }

    30% {
        box-shadow: 9999px 0 0 2px white;
    }

    60%, 100% {
        box-shadow: 9999px 0 0 -5px white;
    }
}

@keyframes dotPulseAfter {
    0% {
        box-shadow: 10014px 0 0 -5px white;
    }

    30% {
        box-shadow: 10014px 0 0 2px white;
    }

    60%, 100% {
        box-shadow: 10014px 0 0 -5px white;
    }
}


.skeleton-loading .skeleton-line, .skeleton-checkbox {
    background: #e0e0e0;
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}