.flex {
    display: flex;
    align-items: center;
}

.start {
    display: flex;
    justify-content: start;
}

.center {
    display: flex;
    justify-content: center;
}

.end {
    display: flex;
    justify-content: end;
}

.between {
    display: flex;
    justify-content: space-between;
}

.around {
    display: flex;
    justify-content: space-around;
}

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

.pointer {
    cursor: pointer;
}

.sticky {
    top: 10px;
    position: sticky;
}

.h-100vh {
    height: 100vh;
}

.ff-bold {
    font-family: 'BarlowCondensed-Black' !important;
}


/* Colors */
.bg-primary {
    background-color: #0e124f !important;
}

.btn-primary {
    background-color: #0e124f;
    border: 1px solid #0e124f;
}

.btn-primary:hover {
    background-color: #090c3d;
    border: 1px solid #0e124f;
}

.text-primary {
    color: #0e124f !important;
}

.bg-light {
    background-color: #eeeeee !important;
}

.btn-outline-light {
    background-color: transparent;
    color: #eeeeee;
    border: 2px solid #eeeeee;
    transition: all .3s ease-in-out;
}

.btn-outline-light:hover {
    color: #232323;
    background-color: #eeeeee;
}

.text-light {
    color: #eeeeee !important;
}

.bg-secondary {
    background-color: #bbbcbe !important;
}

.text-secondary {
    color: #bbbcbe !important;
}

.bg-danger {
    background-color: #ed1b24;
    border: 1px solid #ed1b24;
}

btn-danger {
    text-align: #fff;
    background-color: #ed1b24 !important;
}

.text-danger {
    color: #ed1b24 !important;
}

.bg-dark {
    background-color: #232323 !important;
}

.text-dark {
    color: #232323 !important;
}



/* Plyr */
:root {
    --plyr-color-main: #fe4e02;
    border-radius: 15px;
}

.plyr {
    border-radius: 15px;
}

.plyr__control--overlaid::after {
    position: absolute;
    content: '';
    inset: -12px;
    border: 12px solid #ffffff1f;
    border-radius: 50%;
}






/* Breadcrumb */
.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb li {
    font-size: 15px;
}



/* Pagination */
.pagination li a {
    color: #ed1b24;
    background-color: #0e124f;
    border: 1px solid #0e124f;
}

.pagination li.active a,
.pagination li:hover a {
    color: #0e124f;
    background-color: #ed1b24;
    border: 1px solid #ed1b24;
}

.pagination li.disabled span {
    color: #ed1b24;
    background-color: #0e124f;
    border: 1px solid #0e124f;
}






/* Loader */
#preloader,
#loader {
    position: fixed;
    inset: 0;
    background: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.preloader {
    width: 320px;
    height: 22px;
    border-radius: 20px;
    color: #090c3d;
    border: 2px solid;
    position: relative;
}

.preloader::before {
    content: "";
    position: absolute;
    margin: 2px;
    inset: 0 100% 0 0;
    border-radius: inherit;
    background: currentColor;
    animation: l6 3s infinite;
}

@keyframes l6 {
    100% {
        inset: 0
    }
}












/* Drop down */
.dropdown a.active {
    background-color: #ed1b24;
    color: #fff !important;
}
