﻿#GalleryContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.leaderboardOuter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #808080;
    border-width: 3px;
    padding: 5px;
    background-color: blue;
    border-radius: 10px;
}

.leaderboardInner {
    width: 85%;
    background-color: snow;
    padding: 5px;
    border-radius: 10px;
}

.btn.disabled {
    pointer-events: auto;
}

.table.dataTable.no-footer {
    border-bottom: none;
}

.badge-custom {
    font-size: 18px;
    border-radius: 100px;
    padding: 8px;
}

.segmented-control {
    background: #e8e8e8;
    border-radius: 9px;
    margin: 0;
    padding: 3px;
    border: none;
    outline: none;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .segmented-control .option {
        position: relative;
        cursor: pointer;
    }

        .segmented-control .option:hover input:not(:checked) + label span,
        .segmented-control .option:active input:not(:checked) + label span,
        .segmented-control .option:focus input:not(:checked) + label span {
            opacity: .90;
        }

        .segmented-control .option:active input:not(:checked) + label span {
            transform: scale(.92);
        }

        .segmented-control .option label {
            position: relative;
            display: block;
            text-align: center;
            padding: 5px 0px 1px 3px;
            background: #e8e8e8;
            font-weight: 500;
            color: black;
            font-size: 16px;
            font-weight: bold;
        }

            .segmented-control .option label::before,
            .segmented-control .option label::after {
                content: '';
                width: 1px;
                background: #c9c9c9;
                position: absolute;
                top: 20%;
                bottom: 0%;
                border-radius: 10px;
                will-change: background;
                -webkit-transition: background .2s ease;
                transition: background .2s ease;
            }

            .segmented-control .option label::before {
                left: 0;
                transform: translateX(-.5px);
            }

            .segmented-control .option label::after {
                right: 0;
                transform: translateX(.5px);
            }

        .segmented-control .option:first-of-type {
            grid-column: 1;
            grid-row: 1;
            box-shadow: none;
        }

            .segmented-control .option:first-of-type label::before {
                opacity: 0;
            }

        .segmented-control .option:last-of-type label::after {
            opacity: 0;
        }

        .segmented-control .option input {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            outline: none;
            border: none;
            opacity: 0;
        }

        .segmented-control .option label .text {
            display: block;
            position: relative;
            z-index: 2;
            -webkit-transition: all .2s ease;
            transition: all .2s ease;
            will-change: transform;
        }

        .segmented-control .option input:checked + label::before,
        .segmented-control .option input:checked + label::after {
            background: #e8e8e8;
            z-index: 1;
        }

        .segmented-control .option input:checked + label {
            cursor: default;
            color: white;
            font-weight: bold;
        }

.well-custom {
    background-color: #fbfbfb;
    border-color: #eeeeee;
    box-shadow: none;
    border-radius: 6px;
    z-index: 10;
}

.nowrap {
    white-space: nowrap;
}

.handleExcessPhases {
    width: 15vw;
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bannerSortable tr,
.contentSortable tr {
    cursor: pointer;
}

@media screen and (max-width: 760px) {
    .ProgramLogoImg {
        height: 10rem;
    }
}

.anglerNav {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 5em;
}

.programLabel {
    font-size: 2em;
}

@media (max-width: 767px) {
    .programLabel {
        font-size: 1.5em;
    }
}

.carousel-inner .item video,
.carousel-inner .item img {
    display: block;
    margin: 0 auto;
}

.carousel-inner .item {
    text-align: center;
}
