.mt {
    margin-top: 12px;
}

.mt-alot {
    margin-top: 28px;
}

.pagination {
    justify-content: center;
    flex-wrap: wrap;
}

.navbar.fixed-top {
    z-index: 9999;
}

/** **/
body {
    overflow-y: scroll;
    padding-top: 60px;
    background: #14143d !important;
}

#xtra {
    color: pink;
}

.channel {
    display: block;
    background-size: cover;
    opacity: 0.8;
    transition: all 0.1s;
    position: relative;
    background-color: #333;
    cursor: pointer;
    color: #fff !important;
    border-radius: 2px;
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
}


.channels {
    grid-gap: 15px;
    --cols: 1;
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    margin-bottom: 25px;
    justify-content: space-evenly;
}


.navbar {
    padding: 10px 1rem;
}

.channel span {
    position: absolute;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.7);
    background-color: rgba(0, 0, 0, 0.9);
    top: 5px;
    right: 5px;
    border-radius: 4px;
    font-size: 0.9em;
    padding: 8px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.9;
}

.page-link {
    background: darkorange;
    color: #000;
}


.page-item.disabled .page-link {
    opacity: 0.5;
}

.page-link:hover {
    background: orangered;
}

@media screen and (min-width : 320px) and (max-width : 550px) {
    .channels {
        --cols: 2;
    }
}

@media screen and (min-width : 550px) and (max-width : 800px) {
    .channels {
        --cols: 3;
    }
}

@media screen and (min-width : 800px) and (max-width : 1000px) {
    .channels {
        --cols: 4;
    }
}

@media screen and (min-width : 1000px) and (max-width : 1200px) {
    .channels {
        --cols: 4;
    }
}

@media screen and (min-width : 1200px) and (max-width : 1400px) {
    .channels {
        --cols: 5;
    }
}

@media screen and (min-width : 1400px) and (max-width : 1600px) {
    .channels {
        --cols: 6;
    }
}

@media screen and (min-width : 1600px) and (max-width : 1800px) {
    .channels {
        --cols: 7;
    }
}

@media screen and (min-width : 1800px) and (max-width : 2000px) {
    .channels {
        --cols: 6;
    }
}

@media screen and (min-width : 2000px) {
    .channels {
        grid-template-columns: repeat(auto-fill, 250px);
    }
}

h4 {
    margin: 25px 0;
    font-size: 1.25em;
    color: darkorange;
}


.footer a:not(:last-child) {
    margin: 0 7px !important;
}

.channel:not(.online) {
    opacity: 0.7;
    filter: grayscale(95%);
}

@media screen and (min-width : 2000px) {
    .channels {
        grid-template-columns: repeat(auto-fill, 250px);
    }
}

.bg-dark {
    background-color: #5f5f5f !important
}

.bg-dark.navbar-dark .navbar-nav .nav-link:focus,
.bg-dark.navbar-dark .navbar-nav .nav-link:hover,
.bg-dark.navbar-dark .navbar-nav .active>.nav-link {
    color: darkorange !important;
}

.cam-info-box {
    display: block;
}

.cam-info-box div img {
    max-width: 100%;
}

@media screen and (min-width: 750px) {
    .cam-info-img-contain {
        width: 30%;
        flex-shrink: 0;
    }

    .cam-info-box {
        display: flex;
        gap: 20px;
    }

    .cam-info-box h4 {
        margin-top: 0;
    }
}

@keyframes pulseBackground {
    0% {
        background-color: yellow;

    }

    50% {
        background-color: darkorange;
    }

    100% {
        background-color: yellow;
    }
}


.cta {
    margin: 10px 0;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    white-space: break-spaces;
}

.cta i {
    margin-right: 5px;
}

.cta.cancel,
.cta.wait {
    background: darkgrey;
    color: #fff;
}

.cta.profile {
    background: transparent;
    border: 1px solid lightblue;
    color: lightblue;
}

.btn.cta.sub {
    animation: pulseBackground 2s infinite;
    color: black;
}

.cam-info-img-contain img {
    width: 100%;
    filter: blur(22px);
}

.cam-info-img-contain {
    overflow: hidden;
}

.channel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--image);
    background-size: cover;
    background-position: center;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
}


.channel>* {
    position: relative;
    z-index: 1;
}