/* Media query for sizing here */



button.nav-link {
    border: 0;
    background: 0 0;
}

.nav-item > button.nav-link {
    color: #6ea8fe;
    padding: 0px;
    margin: 2px 10px;
}

.nav-item > button.nav-link:hover {
    color: #cfe2ff;
}

.nav-item > button.nav-link.active {
    color: var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

@-webkit-keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--bs-blue);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--bs-blue);
    }
}

div.modal-custom-size.modal-dialog.modal-dialog-centered {
    max-width: 80vw;
    height: 80vh;
}
div.modal-content {
    height: 100%;
}
div.overflow-container.modal-body {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.placeholder-content {
    height: 100%;
    width: 100%;
    flex: 0 0 auto;
    margin-right: 2em;
    scroll-snap-align: center;
    font-weight: bold;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.placeholder-content:nth-of-type(1) {
    background-color: var(--bs-blue);
}

.placeholder-content:nth-of-type(2) {
    background-color: var(--bs-green);
}

.placeholder-content:nth-of-type(3) {
    background-color: var(--bs-purple);
}
