.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;
}

.h-100vh {
    height: 100vh;
}

.sticky {
    position: sticky;
    top: 25px;
}

/* Colors */
.bg-warning {
    background-color: #0c3a85 !important;
}



.input {
    position: relative;
}

.input button {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}




/* Pagination */
.pagination a {
    color: #000;
}

.pagination li.active a {
    background-color: #000;
    border: none;
}








/* Tags */
.tags ul {
    margin: 0;
    padding: 0;
}

.tags ul li {
    display: inline-block;
    font-size: small;
    margin-bottom: 5px;
    margin-right: 2px;
    transition: all .3s ease-in-out;
}

.tags ul li a {
    display: flex;
    /* font-size: 11px; */
    padding: 5px 10px;
    color: #fff;
    background-color: #0c3a85;
    border: 2px solid #0c3a85;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.tags ul li a:hover {
    background-color: #d3a50c;
    border: 2px solid #d3a50c;
}

.ff-bold {
    font-family: "Peyda-Bold";
}

.ff-extra-bold {
    font-family: "Peyda-ExtraBold";
}



/* Rating */
.rating>label {
    color: #90A0A3;
    cursor: pointer;
}

.rating>input {
    display: none;
}

.rating>input:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #F79426;
}

.rating>input:checked+label:hover,
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
.rating>input:checked~label:hover~label {
    color: #FECE31;
}







/* Loader */
#site-loader {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    /* backdrop-filter: blur(15px); */
    z-index: 1000;
    transition: all .3s ease-in-out;
}

#site-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 350px;
    aspect-ratio: 1;
    --c: no-repeat radial-gradient(farthest-side, #0c3a85 92%, #0000);
    background:
        var(--c) 50% 0,
        var(--c) 50% 100%,
        var(--c) 100% 50%,
        var(--c) 0 50%;
    background-size: 50px 50px;
    animation: l18 1s infinite;
    position: relative;
}

.loader::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: 15px;
    background: repeating-conic-gradient(#0000 0 35deg, #0c3a85 0 90deg);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 15px), #000 0);
    border-radius: 50%;
}

@keyframes l18 {
    100% {
        transform: rotate(.5turn)
    }
}

.container{
    /* max-width: 1000px !important; */
}

.btn-primary{
    background-color: #003776;
    border-color: #003776;
}
.btn-primary{
    background-color: #003776;
    border-color: #003776;
}
.btn-primary:hover{
    background-color: #10519c;
    border-color: #10519c;
}
.btn-primary{
    background-color: #003776;
    border-color: #003776;
}

.glow-text {
  color: #fff;
  text-shadow: 0 0 0.3px rgb(255, 255, 255), 0 0 2px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255);
}


.btn-blue{
    background-color: #0c59e3;
    color: #fff;
}
.bg-blue{
    background-color: #0c59e3;
}