#calendar-section #no-date .current-score {
    font-size: 22px;
    color: rgb(221,221,221);
    font-weight: 200;
}

#calendar-section {
    position: relative;
}

    #calendar-section .navigation .main-nav-row {
        position: relative;
        z-index: 3;
        background-color: white;
    }

        #calendar-section .navigation .main-nav-row .item {
            white-space: normal;
            vertical-align: top;
            height: 70px;
            line-height: 70px;
            text-align: center;
            display: inline-block;
            position: relative;
        }

        #calendar-section .navigation .main-nav-row .item, #calendar-section .navigation .main-nav-row .main-nav-row-container .item {
            float: left;
            padding: 0 30px;
        }


        #calendar-section .navigation .main-nav-row .pull-right-sm {
            border-bottom: solid 1px rgb(221,221,221);
        }

            #calendar-section .navigation .main-nav-row .pull-right-sm .item {
                border-left: solid 1px;
                border-right: solid 1px;
                border-color: transparent;
            }

                #calendar-section .navigation .main-nav-row .pull-right-sm .item.active {
                    border-color: rgb(221,221,221);
                }

    #calendar-section .main-nav-row .pull-right-sm .item.active:before {
        content: "";
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 1px;
        background: white;
    }


    #calendar-section .navigation .main-nav-row-container {
        width: 100%;
        overflow-x: auto;
        border-bottom: 1px solid rgb(221,221,221);
    }

    #calendar-section .navigation .main-nav-row .item.active {
        color: #c30000;
    }

    #calendar-section .navigation .main-nav-row .item:hover {
        cursor: pointer;
    }

    #calendar-section .navigation .main-nav-row .item:not(.active):hover {
        color: #c30000;
    }

    #calendar-section .navigation .main-nav-row .item p {
        font-size: 16px;
        margin: 0px;
        display: inline-block;
        vertical-align: middle;
        line-height: normal;
        text-transform: uppercase;
    }

    #calendar-section .navigation .main-nav-row .item svg {
        fill: none;
        stroke: #333;
        stroke-width: 4px;
    }

    #calendar-section .navigation .main-nav-row .item:hover svg,
    #calendar-section .navigation .main-nav-row .item.active svg,
    #calendar-section .navigation .main-nav-row .item.selected svg {
        stroke: #c30000;
    }


    #calendar-section .navigation .main-nav-row .item .active-modality svg {
        vertical-align: middle;
    }


    #calendar-section .navigation .main-nav-row .item .active-modality img {
        max-width: 50px;
        height: 30px;
        display: inline-block !important;
        background-color: #c30000;
    }


    #calendar-section .navigation .main-nav-row .item .arrow {
        max-width: 16px;
        height: 10px;
        display: inline-block !important;
        margin-left: 5px;
        -ms-transform: rotate(90deg); /* IE 9 */
        -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
        transform: rotate(90deg);
        transition: transform 0.75s;
    }

    #calendar-section .navigation .main-nav-row .item.active .arrow {
        -ms-transform: rotate(-90deg); /* IE 9 */
        -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
        transform: rotate(-90deg);
    }

    #calendar-section .navigation .main-nav-row .item .arrow.arrow-img {
        margin-top: 8px;
        margin-bottom: 8px;
    }


    #calendar-section .navigation .main-nav-row .item .image-icon.calendar {
        width: 29px;
        height: 24px;
        stroke-width: 3px;
    }

    #calendar-section .navigation .main-nav-row .item:hover .calendar-icon svg.hover,
    #calendar-section .navigation .main-nav-row .item .calendar-icon svg:first-child {
        display: inline-block;
    }

    #calendar-section .navigation .main-nav-row .item .calendar-icon svg.hover,
    #calendar-section .navigation .main-nav-row .item:hover .calendar-icon svg:first-child {
        display: none;
    }

    #calendar-section .navigation .main-nav-row .item .image-icon {
        max-width: 50px;
        height: 30px;
    }

    /*   Dropdowns   */

    #calendar-section .navigation .my-dropdown {
        background-color: white;
        position: absolute;
        min-height: 70px;
        width: 100%;
        padding: 25px;
        opacity: 0;
        border-left: 1px solid rgb(221,221,221);
        border-right: 1px solid rgb(221,221,221);
        border-bottom: 1px solid rgb(221,221,221);
        z-index: 2;
        transform: translate(0,-100%);
        -moz-transition: -moz-transform 0.5s ease-in-out;
        -o-transition: transform 0.5s ease-in-out, opacity 0s linear 0.5s;
        -webkit-transition: -webkit-transform 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out, opacity 0s linear 0.5s;
    }

        #calendar-section .navigation .my-dropdown.open {
            transform: translate(0,0%);
            opacity: 1;
            -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease-in-out, opacity 0s linear 0s;
        }


        #calendar-section .navigation .my-dropdown#modalities-dropdown .modality {
            margin-top: 15px;
        }

            #calendar-section .navigation .my-dropdown#modalities-dropdown .modality .img-wrapper img {
                height: 100%;
                position: relative;
                z-index: 2;
                display: block;
            }

            #calendar-section .navigation .my-dropdown#modalities-dropdown .modality .img-wrapper {
                position: relative;
                height: 75px;
                margin: 0px auto;
                display: inline-block;
                overflow: hidden;
                background-color: rgb(167,167,167);
                vertical-align: middle;
                z-index: 2;
            }

                #calendar-section .navigation .my-dropdown#modalities-dropdown .modality .img-wrapper .hover {
                    position: absolute;
                    bottom: 0px;
                    width: 100%;
                    height: 0%;
                    background-color: #c30000;
                    z-index: 1;
                    -moz-transition: -moz-transform 0.75s ease-in-out;
                    -o-transition: all 0.75s ease-in-out;
                    -webkit-transition: all 0.75s ease-in-out;
                    transition: all 0.75s ease-in-out;
                }


            #calendar-section .navigation .my-dropdown#modalities-dropdown .modality:not(.active):hover .img-wrapper .hover, #calendar-section .navigation .my-dropdown#modalities-dropdown .modality.active .img-wrapper .hover {
                height: 100%;
            }

            #calendar-section .navigation .my-dropdown#modalities-dropdown .modality:not(.active):hover {
                cursor: pointer;
            }

            #calendar-section .navigation .my-dropdown#modalities-dropdown .modality p {
                vertical-align: middle;
                margin: 0;
                font-size: 18px;
                font-weight: 200;
                color: rgb(145,145,145);
                height: 50px;
            }

    /*
    Acordion
*/

    #calendar-section .navigation .section-title {
        font-size: 24px;
        font-weight: 200;
        font-family: 'Roboto Condensed';
        text-transform: uppercase;
        pointer-events: none;
    }

    #calendar-section .navigation .accordion .section-title {
        color: #242424;
    }

    #calendar-section .navigation .accordion .accordion-body form {
        padding-left: 10px;
        padding-bottom: 10px;
    }

        #calendar-section .navigation .accordion .accordion-body form p {
            line-height: 23px;
            margin-top: 15px;
            margin-bottom: 15px;
        }

    #calendar-section .navigation .accordion .button.filter {
        margin: 20px auto 0 auto !important;
        display: block !important;
        width: 94px;
    }

    /* Base for label styling */
    #calendar-section [type="checkbox"]:not(:checked),
    #calendar-section [type="checkbox"]:checked {
        display: none;
    }

        #calendar-section [type="checkbox"]:not(:checked) + label,
        #calendar-section [type="checkbox"]:checked + label {
            position: relative;
            padding-left: 40px;
            cursor: pointer;
            color: rgb(36,36,36);
            font-size: 18px;
            font-weight: 500;
        }

        #calendar-section [type="checkbox"]:not(:checked) + label {
            color: rgb(136,136,136);
        }

            /* checkbox aspect */
            #calendar-section [type="checkbox"]:not(:checked) + label:before,
            #calendar-section [type="checkbox"]:checked + label:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0px;
                width: 23px;
                height: 23px;
                border: 1px solid #bbb;
                background: #fff;
                box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
            }
            /* checked mark aspect */
            #calendar-section [type="checkbox"]:not(:checked) + label:after,
            #calendar-section [type="checkbox"]:checked + label:after {
                content: url("../Images/iconCheck.svg");
                position: absolute;
                top: 0px;
                left: 0px;
                width: 23px;
                height: 23px;
                text-align: center;
                transition: all .2s;
            }
            /* checked mark aspect changes */
            #calendar-section [type="checkbox"]:not(:checked) + label:after {
                opacity: 0;
                transform: scale(0);
            }

    #calendar-section input[type="radio"] {
        display: none;
    }

        #calendar-section input[type="radio"] + label {
            color: rgb(36,36,36);
            cursor: pointer;
            font-size: 18px;
            font-weight: 500;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        #calendar-section input[type="radio"]:not(:checked) + label {
            color: rgb(136,136,136);
        }

        #calendar-section input[type="radio"] + label span {
            display: inline-block;
            margin: -1px 4px 0 0;
            vertical-align: middle;
            -moz-border-radius: 50%;
            border-radius: 50%;
        }

            #calendar-section input[type="radio"] + label span.outer {
                width: 20px;
                height: 20px;
                margin: 0px 10px 0px 0px;
                cursor: pointer;
                border: solid 1px rgb(137,137,137);
                background-color: white;
            }

            #calendar-section input[type="radio"] + label span.inner {
                width: 10px;
                height: 10px;
                margin: 4px 0px 0px 4px;
                background-color: white;
                vertical-align: top;
                text-align: center;
            }

        #calendar-section input[type="radio"]:checked + label span.inner {
            background-color: #CC3300;
        }

        #calendar-section input[type="radio"] + label span,
        #calendar-section input[type="radio"]:checked + label span {
            -webkit-transition: background-color 0.2s linear;
            -o-transition: background-color 0.2s linear;
            -moz-transition: background-color 0.2s linear;
            transition: background-color 0.2s linear;
        }

    #calendar-section .breadcrumb {
        margin: 0px;
        padding: 20px 20px 20px 50px;
        background-color: white;
        z-index: 4;
        position: relative;
    }

        #calendar-section .breadcrumb .breadcrumb-item:not(.active) {
            color: rgb(152,152,152);
        }

        #calendar-section .breadcrumb .breadcrumb-item.active {
            color: rgb(36,36,36);
        }

    #calendar-section .highlight-event {
        width: 100%;
        overflow: hidden;
        position: relative;
        z-index: 4;
        background-color: white;
    }

        #calendar-section .highlight-event .cover-img img {
            min-height: 260px;
            max-height: 300px;
            filter: brightness(0.2);
            display: none;
        }

        #calendar-section .highlight-event .cover-img {
            min-height: 300px;
            max-height: 300px;
            filter: brightness(0.2);
            background-image: url("../Images/calendar_highlight_cover.jpg");
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-position: center 0px;
            background-size: auto 320px;
        }


        #calendar-section .highlight-event .highlight-event-match {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            text-align: center;
            z-index: 3;
            height: 100%;
            display: flex;
            align-items: center;
        }

            #calendar-section .highlight-event .highlight-event-match .wrapper {
                display: inline-block;
            }

            #calendar-section .highlight-event .highlight-event-match .highlight-event-team {
                display: inline-block;
                vertical-align: top;
            }

                #calendar-section .highlight-event .highlight-event-match .highlight-event-team img {
                    display: inline-block;
                    height: 110px;
                }

                #calendar-section .highlight-event .highlight-event-match .highlight-event-team .highlight-event-team-name {
                    color: white;
                    text-transform: uppercase;
                    font-size: 20px;
                    font-weight: 400;
                }

            #calendar-section .highlight-event .highlight-event-match .highlight-event-center:not(.current-event) {
                display: none;
            }



            #calendar-section .highlight-event .highlight-event-match .highlight-event-center {
                display: inline-block;
                color: white;
                margin: 0px 5%;
            }

                #calendar-section .highlight-event .highlight-event-match .highlight-event-center .current-score {
                    line-height: 1;
                    font-size: 16px;
                    font-weight: 300;
                }

                    #calendar-section .highlight-event .highlight-event-match .highlight-event-center .current-score .score {
                        font-size: 40px;
                        vertical-align: middle;
                        margin: 0 16px;
                    }

                #calendar-section .highlight-event .highlight-event-match .highlight-event-center .pre-break {
                    font-size: 20px;
                    font-weight: 300;
                }

                    #calendar-section .highlight-event .highlight-event-match .highlight-event-center .pre-break .score {
                        margin: 0 8px;
                        font-size: 16px;
                    }



                #calendar-section .highlight-event .highlight-event-match .highlight-event-center .match-day {
                    font-weight: 600;
                }

                #calendar-section .highlight-event .highlight-event-match .highlight-event-center .match-hour, #calendar-section .highlight-event .highlight-event-match .highlight-event-center .competition-name {
                    font-weight: 300;
                }

                #calendar-section .highlight-event .highlight-event-match .highlight-event-center .competition-name {
                    margin-bottom: 20px;
                    text-transform: uppercase;
                }

            #calendar-section .highlight-event .highlight-event-match .button {
                border-color: white;
                color: white;
                width: 80%;
                margin-top: 20px;
                max-width: 410px;
            }

                #calendar-section .highlight-event .highlight-event-match .button:hover {
                    border-color: #c30000;
                }

    #calendar-section .wrapper:not(.betclick-row) {
        width: 100%;
    }

    #calendar-section .wrapper-highlight-event {
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /**
    CalendarItem
**/

    #calendar-section .calendar-item {
        overflow: hidden;
        opacity: 0;
        background-color: transparent;
        -webkit-transition: background-color 250ms ease-in-out, opacity 400ms ease-in-out;
        -moz-transition: background-color 250ms ease-in-out, opacity 400ms ease-in-out;
        transition: background-color 250ms ease-in-out, opacity 400ms ease-in-out;
    }

        #calendar-section .calendar-item:hover {
            background-color: #f9f9f9;
        }

            #calendar-section .calendar-item:hover .radial-progress .inset {
                background-color: #f9f9f9 !important;
            }

        #calendar-section .calendar-item .calendar-item-border {
            border-bottom: solid 1px rgb(221,221,221);
            padding: 15px;
        }

        #calendar-section .calendar-item .fixed-live-banner {
            position: absolute;
            top: 0;
            left: 0;
            width: 200px;
            text-align: center;
            background-color: #c30000;
            color: #fff;
            text-transform: uppercase;
            font-size: 14px;
            line-height: 30px;
            -ms-transform: translate(-50%, -50%) rotate(-45deg) translateY(50px); /* IE 9 */
            -webkit-transform: translate(-50%, -50%) rotate(-45deg) translateY(50px); /* Chrome, Safari, Opera */
            transform: translate(-50%, -50%) rotate(-45deg) translateY(50px);
            transform-origin: center center;
        }


        #calendar-section .calendar-item .calendar-item-header {
            text-align: center;
            text-transform: uppercase;
        }

            #calendar-section .calendar-item .calendar-item-header .calendar-squad-type {
                font-size: 12px;
            }

            #calendar-section .calendar-item .calendar-item-header .calendar-date {
                font-size: 24px;
                font-weight: 500;
            }

            #calendar-section .calendar-item .calendar-item-header .calendar-match-location {
                font-size: 12px;
                line-height: 14px;
                font-weight: 500;
                text-transform: uppercase;
            }

            #calendar-section .calendar-item .calendar-item-header .calendar-live-channels img, #calendar-section .calendar-item .calendar-item-header .calendar-match-location {
                vertical-align: middle;
            }


            #calendar-section .calendar-item .calendar-item-header .calendar-live-channels img {
                height: 9px;
                display: inline-block;
            }

        #calendar-section .calendar-item .calendar-item-data {
            text-align: center;
        }

            #calendar-section .calendar-item .calendar-item-data .calendar-competition {
                color: #c30000;
                font-size: 15px;
                text-transform: uppercase;
                padding: 5px 0px;
                padding-bottom: 18px;
            }

            #calendar-section .calendar-item .calendar-item-data .calendar-match-info {
                text-align: center;
            }

                #calendar-section .calendar-item .calendar-item-data .calendar-match-info > * {
                    display: inline-block;
                }

            #calendar-section .calendar-item .calendar-item-data .calendar-item-team .calendar-item-team-name {
                font-size: 14px;
                text-transform: uppercase;
            }

            #calendar-section .calendar-item .calendar-item-data .calendar-item-team img {
                height: 75px;
                max-width: 75px;
            }

            #calendar-section .calendar-item .calendar-item-data .calendar-info-center {
                height: 95px;
                min-width: 135px;
                vertical-align: top;
                padding: 20px 0%;
            }

        #calendar-section .calendar-item.scheduled .calendar-item-data .calendar-info-center .calendar-match-hour {
            font-size: 45px;
        }

        #calendar-section .calendar-item.unscheduled .calendar-item-header .calendar-date {
            color: rgb(221,221,221);
        }

        #calendar-section .calendar-item.unscheduled .calendar-item-data .calendar-info-center {
            padding: 22px 0;
        }

            #calendar-section .calendar-item.unscheduled .calendar-item-data .calendar-info-center .calendar-match-hour {
                font-size: 16px;
                color: rgb(221,221,221);
            }


        #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-generic-result .team-score {
            line-height: 45px;
            font-size: 40px;
            padding-left: 10px;
            padding-right: 10px;
        }

            #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-generic-result .team-score sup {
                font-size: .55em;
                top: -0.65em;
                font-weight: 400;
            }

        #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-generic-result p {
            display: inline-block;
            vertical-align: middle;
        }

        #calendar-section .calendar-item .calendar-item-data .calendar-info-center .under-result-text {
            font-size: 14px;
            color: rgb(36,36,36);
            text-transform: uppercase;
        }

        #calendar-section .calendar-item .calendar-item-data .calendar-info-center .live-result {
            height: 140px;
        }


        #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-partials-result, #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-final-result {
            transition: opacity 1s ease-out;
            overflow: hidden;
            opacity: 1;
            height: auto;
        }

            #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-partials-result._hidden, #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-final-result._hidden {
                opacity: 0;
                height: 0;
            }


            #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-partials-result .set {
                display: inline-block;
                padding: 3px 3px;
            }

                #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-partials-result .set:not(:last-child) {
                    border-right: solid 1px rgb(221,221,221);
                }


                #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-partials-result .set p {
                    font-size: 14px;
                    color: rgb(36,36,36);
                }

                    #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-partials-result .set p:not(.won) {
                        opacity: 0.5;
                    }

        #calendar-section .calendar-item .calendar-item-actions {
            margin-top: 10px;
        }

            #calendar-section .calendar-item .calendar-item-actions .wrapper {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 15px; /* fix mobile sobreposicao */
                padding-bottom: 20px;
            }

            #calendar-section .calendar-item .calendar-item-actions > * {
                display: inline-block;
                text-align: center;
            }


            #calendar-section .calendar-item .calendar-item-actions svg {
                height: 100%;
                max-width: 60px;
                display: inline-block;
                fill: #333;
                transition: fill 250ms ease-in-out;
            }

                #calendar-section .calendar-item .calendar-item-actions svg:hover {
                    fill: #c30000;
                    cursor: pointer;
                }

            #calendar-section .calendar-item .calendar-item-actions .button.button-invisible {
                display: none;
            }

            #calendar-section .calendar-item .calendar-item-actions .my-tooltip {
                height: 41px;
                width: 60px;
                position: relative;
                display: inline-block;
                text-align: center;
            }

                #calendar-section .calendar-item .calendar-item-actions .my-tooltip .tooltiptext {
                    visibility: hidden;
                    width: 60px;
                    text-align: center;
                    /* Position the tooltip */
                    position: absolute;
                    z-index: 1;
                    left: 0%;
                    opacity: 0;
                    transition: opacity 0.8s;
                    line-height: 16px;
                    top: 110%;
                }

                #calendar-section .calendar-item .calendar-item-actions .my-tooltip:hover .tooltiptext {
                    visibility: visible;
                    opacity: 1;
                }

                #calendar-section .calendar-item .calendar-item-actions .my-tooltip .arrow {
                    max-width: 15px;
                    height: 10px;
                    -ms-transform: rotate(90deg); /* IE 9 */
                    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
                    transform: rotate(90deg);
                    stroke: #333;
                    stroke-width: 4px;
                    fill: none;
                    display: none;
                }

    #calendar-section .time-result-wrapper {
        position: relative;
        top: -15px;
    }

        #calendar-section .time-result-wrapper canvas {
            background-color: #fff;
        }

        #calendar-section .time-result-wrapper .time, #calendar-section .time-result-wrapper .result {
            position: absolute;
            top: 25px;
            color: #242424;
            font-size: 24px !important;
            width: 100%;
            -webkit-transition: opacity .5s ease-in-out;
            -moz-transition: opacity .5s ease-in-out;
            -ms-transition: opacity .5s ease-in-out;
            -o-transition: opacity .5s ease-in-out;
            transition: opacity .5s ease-in-out;
            opacity: 0;
        }

            #calendar-section .time-result-wrapper .result > .vs {
                font-size: 18px !important;
                display: inline-block !important;
                position: relative;
                top: -4px;
            }

.radial-progress {
    margin: 0 auto !important;
    background-color: #eee !important;
    width: 80px !important;
    height: 80px !important;
}

    .radial-progress .circle .shadow {
        width: 80px !important;
        height: 80px !important;
    }


    .radial-progress .circle .mask, .radial-progress .circle .fill {
        width: 80px !important;
        height: 80px !important;
    }

    .radial-progress .circle .mask {
        clip: rect(0px, 80px, 80px, 40px) !important;
    }

        .radial-progress .circle .mask .fill {
            background-color: #242424 !important;
            clip: rect(0px, 40px, 80px, 0px) !important;
        }



#calendar-section .radial-progress .inset {
    background-color: #fff !important;
    width: 75px !important;
    height: 75px !important;
    margin-top: 2.5px;
    margin-left: 2.5px;
}


#calendar-section .calendar-item .calendar-item-actions .button {
    width: 106px;
}

    #calendar-section .calendar-item .calendar-item-actions .button:nth-child(n+3) {
        margin-top: 10px;
    }

#calendar-section .calendar-items-container {
    margin-bottom: 40px;
}

#calendar-section .loading-gif {
    background-image: url(/Images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    height: 200px;
}

#calendar-section .ad .pub-container {
    padding: 30px 0;
    border-bottom: solid 1px rgb(221,221,221);
}

#calendar-section .pub-container.wide-mobile, #calendar-section .pub-container.leaderboard {
    height: 187px !important;
}

@media screen and (max-width: 500px) {
    #calendar-section .navigation .main-nav-row-container .width {
        display: flex;
        white-space: nowrap;
    }

    #calendar-section .navigation .main-nav-row .main-nav-row-container .item {
        width: 35%;
        padding: 0;
        display: inline-block;
        float: none;
        flex: 1 0 35%;
    }

    #players-detail-page .player-detail .navigation .main-nav-row .main-nav-row-container .item {
        flex: 1 0 29%;
    }
}

@media screen and (max-width: 400px) and (min-width: 350px) {
    #players-detail-page .player-detail .navigation .main-nav-row .main-nav-row-container .item {
        flex: 1 0 34%;
    }
}
/***** MOBILE *****/
@media screen and (max-width: 1199px) {
    #calendar-section .calendar-item .calendar-item-data .calendar-item-team .calendar-item-team-name {
        margin-top: 10px;
    }

    #calendar-section .calendar-item .calendar-item-data .calendar-match-info > * {
        text-align: center;
    }
}

@media screen and (max-width: 991px) {

    #calendar-section .calendar-item .calendar-item-header .calendar-match-location, #calendar-section .calendar-item .calendar-item-header .calendar-live-channels {
        display: inline-block;
        text-align: center;
    }

        #calendar-section .calendar-item .calendar-item-header .calendar-live-channels img {
            margin-left: 10px;
        }

    #calendar-section .highlight-event .cover-img {
        max-height: 400px;
        min-height: 260px;
    }

    #calendar-section .highlight-event .highlight-event-match .highlight-event-center .competition-name {
        font-size: 20px;
    }

    #calendar-section .highlight-event .highlight-event-match .highlight-event-center .match-day, #calendar-section .highlight-event .highlight-event-match .highlight-event-center .match-hour {
        font-size: 28px;
    }

    #calendar-section .calendar-item .calendar-item-header p.observation {
        display: none;
    }

    #calendar-section .calendar-item .calendar-item-data p.observation {
        font-size: 12px;
        line-height: 16px;
        margin-top: 10px;
        padding-right: 40%;
        z-index: 1;
        position: relative;
        text-transform: none;
    }
}

@media screen and (max-width: 876px) {


    #calendar-section .navigation .my-dropdown#modalities-dropdown .modality p {
        text-align: center;
    }
}

@media screen and (max-width: 799px) {
    #calendar-section .navigation .my-dropdown#modalities-dropdown .modality p {
        max-width: 100px;
    }
}

@media screen and (max-width: 767px) {
    /* -------------------------- BETCLICK BUTTON -------------------------- */
    #calendar-section .calendar-item .calendar-item-actions .wrapper.betclick {
        padding-bottom: 5px;
    }

    #calendar-section .navigation .main-nav-row-container .width {
        margin-left: 0;
    }

    #calendar-section .navigation .my-dropdown#modalities-dropdown {
        padding: 35px 0px 0px 10%;
    }

    #calendar-section .navigation .accordion .accordion-body {
        -webkit-transition: max-height 0.75s ease-in-out;
        -moz-transition: max-height 0.75s ease-in-out;
        -ms-transition: max-height 0.75s ease-in-out;
        -o-transition: max-height 0.75s ease-in-out;
        transition: max-height 0.75s ease-in-out;
        overflow: hidden;
        max-height: 0;
    }

        #calendar-section .navigation .accordion .accordion-body.open {
            max-height: 500px;
        }

    #calendar-section .navigation .accordion .tab:not(:last-child) {
        border-bottom: 1px solid rgb(221,221,221);
    }

    #calendar-section .navigation .accordion .tab {
        padding: 10px 0px;
    }

    #calendar-section .navigation .accordion .section-title {
        font-size: 22px;
        font-weight: 200;
        font-family: 'Roboto Condensed';
        pointer-events: all;
    }

    #calendar-section .navigation .accordion .section-title {
        color: #242424;
    }

    #calendar-section .navigation .accordion .tab.active .section-title,
    #calendar-section .navigation .accordion .tab:hover .section-title {
        color: #c30000;
    }


    #calendar-section .navigation .accordion .section-title:hover {
        cursor: pointer;
    }

    #calendar-section .navigation .my-dropdown#modalities-dropdown .modality p {
        max-width: 75px;
    }

    #calendar-section .navigation .accordion .accordion-body form {
        padding-bottom: 0px;
        display: inline-block;
    }

    #calendar-section .calendar-item .calendar-item-data {
        margin-top: 7px;
    }

    #calendar-section .calendar-item .calendar-item-actions {
        margin-top: 15px;
    }

    #calendar-section .calendar-item .calendar-item-header {
        padding: 0px 60px;
    }
}

@media screen and (max-width: 425px) {
    #calendar-section .highlight-event .highlight-event-match .highlight-event-team img {
        height: 90px;
    }

    #calendar-section .highlight-event .highlight-event-match .highlight-event-center {
        margin: 0 !important;
    }

    #calendar-section .highlight-event .highlight-event-match .button {
        width: 90%;
    }

    #calendar-section .highlight-event .highlight-event-match .highlight-event-team .highlight-event-team-name {
        font-size: 16px;
    }

    #calendar-section .calendar-item .calendar-item-data .calendar-info-center .calendar-generic-result .team-score {
        line-height: 45px;
        font-size: 40px;
        padding-left: 9px;
        padding-right: 9px;
    }

    #calendar-section .navigation .accordion .accordion-body form label {
        font-size: 15px;
    }

    #calendar-section .navigation .accordion .accordion-body form {
        padding-left: 0;
        padding-bottom: 0;
        margin-left: 0;
    }
}

@media screen and (max-width: 334px) {
    #calendar-section .calendar-item .calendar-item-data .calendar-item-team img {
        height: 50px;
        max-width: 50px;
    }

    #calendar-section .calendar-item .calendar-item-data .calendar-item-team .calendar-item-team-name {
        font-size: 12px;
    }
}
/* -------------------------- BETCLICK BUTTON -------------------------- */
#calendar-section .calendar-item .calendar-item-actions .button.betclick {
    margin-left: 10px;
}
/**** MOBILE FIRST ****/
@media screen and (min-width: 992px) {
    #calendar-section .navigation .my-dropdown#modalities-dropdown .modality {
        margin-top: 10px;
    }

        #calendar-section .navigation .my-dropdown#modalities-dropdown .modality .img-wrapper img {
            max-width: 100px;
            height: 100px;
        }

        #calendar-section .navigation .my-dropdown#modalities-dropdown .modality .img-wrapper {
            height: 100px;
        }

    #calendar-section .navigation .my-dropdown#modalities-dropdown .section-title {
        padding-left: 10px;
    }

    #calendar-section .navigation .my-dropdown {
        padding: 25px 50px;
        min-height: 80px;
    }

    #calendar-section .navigation .main-nav-row {
        border-bottom: 1px solid rgb(221,221,221);
    }

    #calendar-section .calendar-item .calendar-item-header p.observation {
        font-size: 12px;
        line-height: 16px;
        margin-top: 40px;
        z-index: 1;
        position: relative;
        text-transform: none;
    }

    #calendar-section .calendar-item .calendar-item-data p.observation {
        display: none;
    }

    #calendar-section .calendar-item .calendar-item-actions {
        margin-top: 45px;
        text-align: right;
        max-width: 300px;
        float: inline-end;
        padding-right: 5%;
    }

        #calendar-section .calendar-item .calendar-item-actions .wrapper {
            padding-top: 0; /* fix mobile sobreposicao */
        }

    #calendar-section .navigation .main-nav-row-container {
        overflow-x: inherit;
        border: none;
    }


    #calendar-section .navigation .main-nav-row .pull-right-sm {
        position: relative;
        width: auto;
        float: right;
        border: none;
    }

        #calendar-section .navigation .main-nav-row .pull-right-sm > * {
            text-align: right;
        }

        #calendar-section .navigation .main-nav-row .pull-right-sm .item {
            width: auto;
        }



    #calendar-section .navigation .section-title {
        font-weight: 400;
        font-size: 18px;
        color: #333;
    }


    #calendar-section .main-nav-row .pull-right-sm .item {
        border-top: none;
        border-bottom: none;
    }

        #calendar-section .main-nav-row .pull-right-sm .item.active {
            border-color: rgb(221,221,221);
        }

    #calendar-section .navigation .accordion .accordion-body form {
        display: block;
        width: 100%;
    }

        #calendar-section .navigation .accordion .accordion-body form:not(:last-child) {
            border-bottom: 1px solid rgb(238,238,238);
        }

    #calendar-section .calendar-item .calendar-item-actions .button.button-invisible {
        display: block;
        visibility: hidden;
    }



    #calendar-section .navigation .main-nav-row .item {
        height: 80px;
        line-height: 80px;
    }
}

@media screen and (min-width: 800px) {

    #calendar-section .navigation .my-dropdown#modalities-dropdown .modality p {
        display: inline-block;
        height: auto;
    }
}

@media screen and (min-width: 992px) {
    /* -------------------------- BETCLICK BUTTON -------------------------- */

    #calendar-section .calendar-item .calendar-item-actions .wrapper.betclick {
        float: right;
    }

    #calendar-section .calendar-item .calendar-item-actions .button:not(:first-of-type) {
        margin-top: 10px;
        margin-left: 15%;
    }

    #calendar-section .calendar-item .calendar-item-actions .wrapper.betclick-row:not(.betclick) {
        padding-top: 20px;
    }

    #calendar-section .calendar-item .calendar-item-actions .my-tooltip .tooltiptext {
        top: 110%;
        line-height: 20px;
    }

    #calendar-section .calendar-item .calendar-item-actions .button {
        margin-left: 15%;
    }

    #calendar-section .calendar-item .calendar-item-header {
        text-align: left;
        padding-left: 5%;
        margin-top: 45px;
    }

        #calendar-section .calendar-item .calendar-item-header .calendar-date {
            display: table-row-group;
        }

        #calendar-section .calendar-item .calendar-item-header .calendar-match-location {
            display: table-header-group;
        }

        #calendar-section .calendar-item .calendar-item-header .calendar-live-channels {
            display: table-footer-group;
        }


        #calendar-section .calendar-item .calendar-item-header .calendar-squad-type {
            position: absolute;
            top: 30%;
            left: 5%;
            width: 35%;
        }

    #calendar-section .highlight-event .highlight-event-match .highlight-event-team {
        padding-top: 20px;
    }

        #calendar-section .highlight-event .highlight-event-match .highlight-event-team img {
            height: 140px;
        }

        #calendar-section .highlight-event .highlight-event-match .highlight-event-team:first-child img {
            float: right;
        }

        #calendar-section .highlight-event .highlight-event-match .highlight-event-team img:nth-child(2) {
            float: left;
        }

        #calendar-section .highlight-event .highlight-event-match .highlight-event-team .highlight-event-team-name {
            font-size: 45px;
            display: inline-block;
            vertical-align: middle;
            line-height: 140px;
            font-weight: 400;
        }

    #calendar-section .highlight-event .highlight-event-match .highlight-event-center {
        margin: 0;
    }



        #calendar-section .highlight-event .highlight-event-match .highlight-event-center .current-score {
            line-height: 1;
            font-size: 30px;
        }

            #calendar-section .highlight-event .highlight-event-match .highlight-event-center .current-score .score {
                font-size: 65px;
                vertical-align: middle;
                font-weight: 400 !important;
                margin: 0 24px;
            }

        #calendar-section .highlight-event .highlight-event-match .highlight-event-center .pre-break {
            font-size: 20px;
        }

        #calendar-section .highlight-event .highlight-event-match .highlight-event-center .competition-name {
            font-size: 20px;
            margin-bottom: 20px;
        }

        #calendar-section .highlight-event .highlight-event-match .highlight-event-center .match-day, #calendar-section .highlight-event .highlight-event-match .highlight-event-center .match-hour {
            font-size: 33px;
        }

    #calendar-section .highlight-event .highlight-event-match .button {
        width: 120px;
        height: 38px;
        display: block;
        margin: 30px auto 0;
    }
}

@media screen and (min-width: 1025px) {
    #calendar-section .highlight-event .cover-img {
        background-size: auto 480px;
    }
}

@media screen and (min-width: 1200px) {

    #calendar-section .navigation .accordion .accordion-body form {
        padding-left: 0px;
        padding-right: 10px;
    }

        #calendar-section .navigation .accordion .accordion-body form > div {
            display: inline-block;
            min-width: 45%;
        }

        #calendar-section .navigation .accordion .accordion-body form > p {
            display: inline-block;
            min-width: 45%;
        }


        #calendar-section .navigation .accordion .accordion-body form:not(:first-child) {
            padding-top: 10px;
        }

    #calendar-section .calendar-item .calendar-item-header .calendar-live-channels img:not(:first-child) {
        margin-left: 10px;
    }

    #calendar-section .calendar-item .calendar-item-data .calendar-match-info .calendar-item-team.home-team {
        text-align: right;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    #calendar-section .calendar-item .calendar-item-data .calendar-match-info .calendar-item-team.away-team {
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    #calendar-section .calendar-item .calendar-item-data .calendar-item-team > * {
        display: inline-block;
    }


    #calendar-section .calendar-item .calendar-item-data .calendar-match-info .calendar-item-team.home-team img {
        float: right;
        margin-left: 10px;
    }

    #calendar-section .calendar-item .calendar-item-data .calendar-match-info .calendar-item-team.away-team img {
        float: left;
        margin-right: 10px;
    }


    #calendar-section .calendar-item .calendar-item-data .calendar-item-team .calendar-item-team-name {
        font-size: 20px;
        font-weight: 300;
        white-space: nowrap;
    }

    #calendar-section .pub-container.leaderboard {
        height: unset !important;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */

    #calendar-section .highlight-event .cover-img:before {
        position: absolute;
        z-index: 2;
        display: block;
        content: "";
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: hsla(0,0%,0%,0.8);
    }
}
