﻿/*   Color per League   */
:root {
    --Concacaf_Gold_Cup: #FFCB4F;
    --Concacaf_Nations_League: #1E1247;
    --Concacaf_Mens_Olympic_Qualifying: #E90028;
    --Concacaf_Mens_Under_20: #662D90;
    --Concacaf_Mens_Under_17: #00A0DF;
    --Concacaf_Boys_Under_15: #69BF4B;
    --Concacaf_Beach_Soccer: #00B8AF;
    --Concacaf_Futsal: #F6931C;
    --Concacaf_Scotiabank_Champions_League: #2F3331;
    --Concacaf_Scotiabank_League: #EC1C24;
    --Concacaf_Scotiabank_Under_13_Champions_League: #EC1C24;
    --Concacaf_Flow_Caribbean_Club_Championship: #00539B;
    --Concacaf_Caribbean_Club_Shield: #00539B;
    --Concacaf_Futsal_Club: #F6931C;
    --Concacaf_Womens: #6551A2;
    --Concacaf_W: #D41F7B;
    --Concacaf_Womens_Olympic_Qualifying: #E90028;
    --Concacaf_Womens_Under_20: #662D90;
    --Concacaf_Womens_Under_17: #00A0DF;
    --Concacaf_Girls_Under_15: #69BF4B;
    --Concacaf_black: #222B45;
    --Concacaf_dark_grey: #242529;
    --Concacaf_gold: #D8B97D;
    --GoldCup_border_nav: rgba(255, 255, 255, 0.2);
    --GoldCup_navy: #0B141E;
    --GoldCup_gold: #BE7A0B;
    --GoldCup_smooth_navy: #00133F;
}

/*The root var combined with de media queries will help to control the typography*/
/*   Extra small devices   */
@media (max-width: 575.98px) {
    :root {
        --bigResponsiveFont: 1.2rem;
        --fontMedium: 13px;
        --fontSmall: 9px;
        --fontBig: 18px;
    }
}

/*   Small devices (landscape phones, 576px and up)    */
@media (min-width: 576px) and (max-width: 767.98px) {
    :root {
        --bigResponsiveFont: 1.7rem;
        --fontMedium: 13px;
        --fontSmall: 12px;
        --fontBig: 18px;
    }
}

/*   Medium devices (tablets, 768px and up)   */
@media (min-width: 768px) and (max-width: 991.98px) {
    :root {
        --bigResponsiveFont: 2.3rem;
        --fontMedium: 14px;
        --fontSmall: 12px;
        --fontBig: 18px;
    }
}

/*   Large devices (desktops, 992px and up)   */
@media (min-width: 992px) and (max-width: 1199.98px) {
    :root {
        --bigResponsiveFont: 2.5rem;
        --fontMedium: 15px;
        --fontSmall: 12px;
        --posResp: 50vh;
        --fontBig: 18px;
    }
}

/*   Extra large devices (large desktops, 1200px and up)   */
@media (min-width: 1200px) {
    :root {
        --bigResponsiveFont: 3.0rem;
        --posRespHero: 35vh;
        --fontMedium: 15px;
        --fontSmall: 12px;
        --fontBig: 18px;
    }
}



/*   GLOBAL STYLES   */
body {
    font-family: 'CircularStd_Book';
}

a {
    color: #212529;
}

    a:hover {
        text-decoration: none;
    }

    a.focus,
    a:focus,
    .btn.focus,
    .btn:focus {
        box-shadow: none;
        outline: none;
    }

img {
    max-height: 100%;
    max-width: 100%;
}

ul {
    list-style: none;
}

.rte ul {
    list-style: disc;
    padding-inline-start: 40px;
}

.row.no-gutters > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.container .container {
    padding-right: 0;
    padding-left: 0;
}

.no-margin {
    margin: 0 !important;
}

.scroll-x {
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}

.search.search-bar {
    border: 1px solid #ced4da;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    height: 40px;
}

    .search.search-bar input {
        background-color: transparent;
        padding: 5px 15px;
        box-shadow: none;
        outline: none;
        height: auto;
        border: none;
    }

.underline-title {
    border-bottom: 1px solid rgba(216, 185, 125, 0.2);
}

    .underline-title span {
        font-family: 'CircularStd_Bold';
        position: relative;
        line-height: 25px;
        font-size: 14px;
        color: #2B292D;
    }

        .underline-title span::before {
            background-color: #D8B97D;
            background-color: var(--Concacaf_gold);
            position: absolute;
            bottom: -7px;
            width: 100%;
            height: 4px;
            content: '';
        }

.block-title {
    border-bottom: 1px solid rgba(216, 186, 125, 0.2);
    margin-bottom: 20px;
}

    .block-title.collapsable {
        display: flex;
    }

        .block-title.collapsable a {
            cursor: pointer;
            color: #222B45;
            display: flex;
            align-items: center;
        }

            .block-title.collapsable a i {
                transition: 0.5s;
            }

            .block-title.collapsable a[aria-expanded="true"] i {
                transform: rotate(-180deg);
            }



.symbol-title {
    color: #00133F;
    color: var(--GoldCup_smooth_navy);
    font-family: 'FFBasicGothic_Bold';
    background: url(../goldcup/assets/svg/goldcup-xs.svg) no-repeat;
    background-position: left;
    letter-spacing: -0.6px;
    background-size: 30px;
    padding-left: 35px;
    line-height: 40px;
    font-size: 20px;
    margin: 0;
}

.logo-title {
    display: flex;
    width: 100%;
}

    .logo-title img {
        max-height: 40px;
        max-width: 40px;
        padding: 5px;
    }

    .logo-title h2 {
        color: #00133F;
        color: var(--GoldCup_smooth_navy);
        font-family: 'FFBasicGothic_Bold';
        letter-spacing: -0.6px;
        align-items: center;
        margin: 0 15px 0 0;
        line-height: 30px;
        min-height: 40px;
        font-size: 20px;
        display: flex;
    }

iframe {
    max-width: 100%;
}

@keyframes mymove {
    from {
        fill: var(--Concacaf_gold);
    }

    to {
        fill: transparent;
    }
}

.spinner-container-parent {
    position: relative;
    pointer-events: none;
    cursor: auto;
}

.spinner-container {
    position: absolute;
    background-color: rgba(255,255,255,0.8);
    height: 100%;
    width: 100%;
    z-index: 100;
}

    .spinner-container svg {
        width: 75px;
        height: 75px;
        margin: auto;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%);
    }

.grid-section {
    padding-bottom: 30px;
    padding-top: 30px;
}

    .grid-section .row > .col-xl-auto {
        width: 350px; /*320px (Ad/widget) + 15px*2 padd*/
    }

.break-word {
    word-break: break-word;
}

footer.with-ticker {
    margin-bottom: 54px;
}

.card {
    border: none;
}

.hidden {
    display: none !important;
}

.alert {
    transform: translateX(-50%);
    padding: 10px 15px;
    border-radius: 4px;
    line-height: 22px;
    margin-bottom: 0;
    font-size: 16px;
    position: fixed;
    display: none;
    z-index: 3;
    left: 50%;
    top: 5px;
}

    .alert.show {
        display: flex;
    }

    .alert ul {
        margin-bottom: 0;
        padding-left: 0;
    }

    .alert button.close {
        margin-left: 10px;
        transition: 0.5s;
        font-size: 14px;
        color: inherit;
        display: flex;
        outline: none;
    }

        .alert button.close i {
            line-height: 22px;
        }

.img-error {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000 80%);
    opacity: 0.6;
    transition: 0.5s;
}

    .img-error:hover {
        opacity: 1;
    }

/*CUSTOM SCROLL BAR*/
/* width */
::-webkit-scrollbar {
    height: 4px;
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #242529;
    }



/*MEDIA QUERIES*/
@media (max-width: 425.98px) {
    main:not(.v2) .advert-desk,
    main:not(.v2) .advert-mobile {
        margin-right: -15px;
        margin-left: -15px;
    }
}
