:root {
    --color-1: #ed193a; /*rose*/
    --color-2: #b6b9d0; /*gris*/
    --color-3: #57b5dd;
    --color-4: #00FF00;
    --color-facebook: #3872dd;
    --color-twitter: #4a99e7;
    --color-instagram: #F56040;
    --color-youtube: #ea3423;
    --color-tiktok: #00f2ea;

}

body {
    font-family: 'Helvetica', sans-serif !important;
    background-color: var(--color-1);
    color: rgba(0, 0, 0, .65);
    margin: 0;
    padding: 0;
    font-size: 0.9em;
}

h1 {
    font-size: 1.6em;
    font-weight: 900;
    margin-bottom: .5rem;
}

h2 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: .5rem;
}

h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: .25rem;
}

h4 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--color-1);
}

a:hover, a:visited {
    text-decoration: none;
    color: var(--color-2);
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: white;
    border-bottom: 3px solid var(--color-2);
}

.top-left, .top-right {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0px 20px;
    gap: min(25px, 2.5vw);
}

.top-left {
    justify-content: flex-start;
}

.top-right {
    justify-content: flex-end;
}

.top a {
    color: var(--color-1);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
}

.top a:hover {

    color: var(--color-2);
}

.top .loginbtn {
    background-color: white;
    color: var(--color-1);
}

.top .loginbtn:hover {
    background-color: var(--color-2);
    color: var(--color-1);
}

.header {
    background-color: var(--color-1);
    padding: 50px;
    /*border-bottom: white 1px solid;*/
    /*border-top: white 1px solid;*/
}

.header .logo {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 12Vmax;
}

.header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-1);

    border-bottom: 5px solid var(--color-2);
    padding: 10px 20px;
}

.header-mobile .logo {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 35%;
    height: 15Vmax;

}


.header-mobile .menu-btn a {
    color: white;
    font-size: 30px;
    padding: 20px;
}

.mobilemenu_link {
    display: block;
    background-color: white;
    text-align: center;
    padding: 15px 0px;
    border-bottom: 1px solid grey;
}

.menu {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    border-bottom: 5px solid var(--color-2);
}

.menu .link {
    padding: 10px 10px;
    color: white;
}

.menu .link:hover {
    color: var(--color-2);
}

.menu .dropdown-menu .link {
    color: black;
    display: block;
}

.menu .dropdown-menu .link:hover {
    color: var(--color-1);
}

.sponsors {
    background-color: white;
    padding: 20px 0px;
}

.sponsorsbar {
    background-color: white;
    padding: 10px 0px;
}

.box-shadow {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

.poster {
    display: block;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white;
}


.page {
    padding: 50px 0px;
    min-height: 90vh;
    background-color: white;
}


.pagination > li > a,
.pagination > li > span {
    color: rgb(110 117 124) !important;
    border-color: rgb(110 117 124) !important;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background-color: rgb(110 117 124) !important;
    border-color: grey !important;
    color: white !important;
}

.btn-xs, .btn-group-xs > .btn {
    padding: 0.10rem 0.25rem;
    font-size: 0.65rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-xs + .dropdown-toggle-split, .btn-group-xs > .btn + .dropdown-toggle-split {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}

.btn-xs {
    padding: 0px 5px;
}

.btn-abby {
    border: 2px solid white;
    background-color: white;
    padding: 10px 20px;
    border-radius: 4px;
    color: var(--color-1) !important;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-abby:hover {
    background-color: rgba(255,255,255,.9);
    /*color: white !important;*/

}

.abby_banner {
    margin: auto;
    width: min(900px, 80vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}


@media screen and (max-width: 600px) {
    .abby_banner {
        flex-direction: column;
    }

}


.socialmedia_btn {
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socialmedia_btn:hover {
    background-color: white !important;
}

#facebook {
    background-color: var(--color-facebook);
    border: 1px solid var(--color-facebook);
}

#twitter {
    background-color: var(--color-twitter);
    border: 1px solid var(--color-twitter);
}

#instagram {
    background-color: var(--color-instagram);
    border: 1px solid var(--color-instagram);

}

#tiktok {
    background-color: var(--color-tiktok);
    border: 1px solid var(--color-tiktok);

}

#youtube {
    background-color: var(--color-youtube);
    border: 1px solid var(--color-youtube);

}


.footer-menu {
    background-color: black;
    padding: 30px;
    color: white;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    border-color: black;
}

.footer-menu a:hover {
    color: var(--color-2);
    text-decoration: none;
    border-color: black;
}

.btn-footer-menu {
    color: black !important;
    background-color: white !important;
}

.btn-footer-menu:hover {
    background-color: var(--color-2) !important;
    color: white !important;
    border-color: white !important;

}


footer {
    background-color: black;
}

footer, footer a {
    color: white !important;
}

footer a:hover {
    color: grey !important;
}

.footer-logo > svg {
    fill: white !important;
}

.footer-logo svg:hover {
    fill: var(--color-2) !important;
}


folder {
    display: inline-block;
    padding-left: 20px;
}
