:root{
    --color-primary: #e72582;
}

/* Layout */ 
.container.main-container {
    max-width: 1450px !important;
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 1200px) {
    .header-nav {
        height: 100px;
    }
}


.spinner-border{
    border: 0.25em solid var(--color-primary);   
    border-right-color: transparent;
}
.btn-primary .spinner-border{
    border: 0.25em solid #fff;   
    border-right-color: transparent;
}
.country-flag {
    display: flex;
    align-items: center;
    gap: 5px;
}

.country-flag img {
    width: 25px !important;
    height: 25px !important;
    object-fit: contain !important;
}

.dataTables_filter{
    display: none;
}
.gx-2 {
    gap: 0.5rem;
}
.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
    display: flex;
}
@keyframes skeleton-loading {
    0% {
    background-color: hsl(200, 20%, 80%);
    }
    100% {
    background-color: hsl(200, 20%, 95%);
    }
}
.skeleton-text {
    width: 100%;
    height: 0.7rem;
    border-radius: 0.25rem;
}
.skeleton-text__body {
    width: 75%;
}
.skeleton-footer {
    width: 30%;
} 
.text-underline{
    text-decoration: underline !important;
}