@import url('color-dark.css');

* {
    box-sizing: border-box
}

@font-face {
    font-family: Montserrat sans-serif;
    font-style: normal;
    font-weight: 300;
    src: url(za_Assets/Font/Montserrat/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    src: url(za_Assets/Font/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf);
}

@font-face {
    font-family: 'Gloock', serif;
    font-style: normal;
    src: url(za_Assets/Font/Montserrat/Gloock-Regular.ttf);
}

body,
html {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background-color: var(--background);
    color: var(--text-color-grey);
    font-size: 14px;
    height: auto;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

.row.w-100.m-0.d-flex.flex-sm-row {
    min-width: 320px;
}

.rows-mob {
    width: 100vw;
    min-width: 320px;
    height: calc(100vh - 140px);
    overflow-y: auto;
    padding: 0 15px;
    z-index: 1;
}

.rows-mob-s {
    width: 100vw;
    min-width: 320px;
    height: calc(100vh - 140px);
    overflow-y: auto;
    z-index: 1;
}

.rows-mob-s.fixture-detail-open > :not(#colonna-centrale-live-fixture) {
    display: none !important;
}

.rows-mob-s.fixture-detail-open > #colonna-centrale-live-fixture {
    display: block !important;
}

.rows-mob-t {
    width: 100vw;
    min-width: 320px;
    height: calc(100vh - 140px);
    overflow-y: auto;
    z-index: 1;
    overflow-x: hidden;
}

footer {
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    min-width: 320px;
    z-index: 999;
    height: 70px;
    background-color: var(--background-nav);
    box-shadow: 0 0 30px 15px rgb(0 0 0 / 40%);
}

footer a {
    color: var(--text-color-grey);
}

footer .active {
    color: var(--accent)!important;
    text-shadow: 0px -2px 20px var(--button-outline);
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.material-icons-outlined {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: var(--text-color-hilight);
}


/*---Stile Bottoni con Icone---*/

.divcontbtn {
    z-index: 1;
    background: var(--container-accent);
    min-height: 30px;
    margin: 10px 0;
    padding: 5px;
    border-radius: 3px;
    outline: 10px solid var(--background);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.btn-primary {
    --bs-btn-color: var(--text-color-grey);
    --bs-btn-bg: var(--container-accent);
    --bs-btn-border-color: none;
    --bs-btn-hover-color: var(--text-color-hilight);
    --bs-btn-hover-bg: var(--accent);
    --bs-btn-hover-border-color: none;
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: var(--text-color-hilight);
    --bs-btn-active-bg: var(--accent);
    --bs-btn-active-border-color: none;
    --bs-btn-active-shadow: none;
}

.btn-primary-darker {
    --bs-btn-color: var(--text-color-grey);
    --bs-btn-bg: var(--background-nav-sec);
    --bs-btn-border-color: none;
    --bs-btn-hover-color: var(--text-color-hilight);
    --bs-btn-hover-bg: var(--accent);
    --bs-btn-hover-border-color: none;
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: var(--text-color-hilight);
    --bs-btn-active-bg: var(--accent);
    --bs-btn-active-border-color: none;
    --bs-btn-active-shadow: none;
}


/* modal sign in */

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.83;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--text-color-hilight);
    pointer-events: auto;
    background-color: var(--container-background);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

#logModal .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color-hilight);
    background-color: var(--background);
    background-clip: padding-box;
    border: var(--bs-border-width);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#logModal .form-control:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.form-label {
    color: var(--text-color-grey);
}

.sign-close-icon {
    font-size: 1.6rem;
    color: var(--accent);
    background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: var(--bs-btn-close-opacity);
}

.sign-close-icon:hover {
    opacity: 0.75;
}

.show-circle:focus+.circle,
.show-circle:active+.circle {
    opacity: 100;
}

.league-head {
    color: var(--text-color-hilight);
}


/*---Navbar Top (x tutte le pagine)---*/

#mob-navigation {
    background-color: var(--background-nav) !important;
    height: 73px;
    padding: 0 10px;
    box-shadow: 0 0 30px 15px rgb(0 0 0/ 40%);
    position: sticky;
    top: 0;
    z-index: 999;
    min-width: 320px;
}

#mob-navigation .nav-link {
    color: var(--text-color-grey);
    font-size: 14px;
    text-decoration: none;
}

#mob-navigation .material-icons {
    color: var(--accent);
    font-size: 2rem;
}

#mob-navigation .nav-link:hover {
    color: var(--accent);
    text-decoration: none;
}

#mob-navigation .nav-link :active {
    color: var(--text-color-hilight);
    text-decoration: none;
    font-weight: 700;
}

#mob-navigation .nav-item .active {
    color: var(--accent);
    text-decoration: none;
}


/* MODAL SIGN */


/*----OFFCANVAS bottom------*/

.offcanvas.offcanvas-bottom {
    top: 70px;
    bottom: 70px;
    right: 0;
    width: 100vh;
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
}

#offSearch.offcanvas-backdrop {
    position: fixed;
    top: 70px;
    bottom: 70px;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}


/*----OFFCANVAS MENU------*/

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 80%;
    height: calc(100vh - 70px);
    color: var(--text-color-grey);
    visibility: hidden;
    background-color: var(--background);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
    /* border-top: 1px solid var(--accent); */
}

.offcanvas.offcanvas-start {
    top: 70px;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
}

.offcanvas-backdrop {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}


/* OFFCAMNVAS MENU CONTENT */

.offcanvas-raw {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-bottom: 1px;
    cursor: pointer;
    color: var(--text-color-hilight);
    font-size: 1.2rem;
    min-height: 48px;
    border-bottom: 1px solid rgba(235, 235, 235, 0.29);
    margin-bottom: 3px;
    background-color: var(--background-nav-mob);
}

.offcanvas-body .active {
    /* background-color: var(--container-accent); */
    color: var(--accent);
}

#sport .accordion-button {
    background-color: var(--background-nav-mob);
}

#sport .graydark {
    background-color: var(--background-nav-sec)!important;
    max-height: 45px !important;
}

#sport .subselect .collapsed {
    background-color: var(--background-nav-ter)!important;
    max-height: 35px !important;
}

#sport .graydark2 {
    background-color: var(--background-nav-ter-act) !important;
    max-height: 35px !important;
}

.sub-raw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1px;
    padding: 0 0.5rem;
    cursor: pointer;
    background-color: var(--background-nav-quat)!important;
    color: var(--text-color-grey);
    min-height: 32px;
}

.sub-raw:active {
    background-color: var(--accent);
}

.leaguename {
    float: left;
    color: var(--text-color-hilight);
    width: 70%;
    text-align: left;
    padding-right: 1.5rem;
    font-size: 14px !important;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
}


/*--------------------*/

.sign-button {
    color: var(--text-color-hilight);
    background-color: var(--accent);
}

.btn-i-cont {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding-right: 3px;
}

.sign-button img {
    font-size: 15px;
    margin-right: 0.2rem;
    margin-bottom: 4px;
}

.sign-button:hover {
    color: white;
    border-color: var(--accent) 70%;
}

.show-circle:focus+.circle,
.show-circle:active+.circle {
    opacity: 100;
}


/*---Language selector (x tutte le pagine)---*/

.lang-icon {
    width: 15px;
    margin-right: 5px;
}

.dropdown-menu {
    --bs-dropdown-min-width: 0;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: var(--text-color-hilight);
    --bs-dropdown-bg: var(--container-accent);
    --bs-dropdown-border-color: var(--container-accent);
    --bs-dropdown-border-radius: 0.375rem;
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(0.375rem - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: 0 0.7rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
    --bs-dropdown-link-color: var(--text-color-grey);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: var(--accent);
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--text-color-hilight);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) 0.5rem;
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}

.btn-i-cont {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding-right: 3px;
}

.sign-button img {
    font-size: 15px;
    margin-right: 0.2rem;
    margin-bottom: 4px;
}

.sign-button:hover {
    color: white;
    border-color: var(--accent) 70%;
}

.show-circle:focus+.circle,
.show-circle:active+.circle {
    opacity: 100;
}

.navdarker {
    background-color: var(--background);
}


/*---Layout Pagina  Sport---*/

.rows {
    height: calc(100vh - 60px);
    width: 100vw;
    min-width: 350px;
    padding: 0 10px;
}

.rows-c {
    height: 800px;
    width: 100vw;
    min-width: 350px;
    padding: 0 6.3rem;
    overflow-y: auto;
    height: 100vh;
}

.left-column-v::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

.left-column-v:hover::-webkit-scrollbar-thumb {
    background-color: var(--accent-scrollbar);
    width: 3px;
    border-radius: 10px;
    box-shadow: inset 0 0 3px gray;
}

.left-column-v::-webkit-scrollbar-track {
    display: none;
}

.center-column-v::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

.right-column-v::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

.right-column-v:hover::-webkit-scrollbar-thumb {
    background-color: var(--accent-scrollbar);
    width: 3px;
    border-radius: 10px;
    box-shadow: inset 0 0 3px gray;
}

.right-column-v::-webkit-scrollbar-track {
    display: none;
}

.center-column-v:hover::-webkit-scrollbar-thumb {
    background-color: var(--accent-scrollbar);
    width: 3px;
    border-radius: 10px;
    box-shadow: inset 0 0 3px gray;
}

.center-column-l::-webkit-scrollbar-track {
    display: none;
}

.center-column-l::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

.center-column-l:hover::-webkit-scrollbar-thumb {
    background-color: var(--accent-scrollbar);
    width: 3px;
    border-radius: 10px;
    box-shadow: inset 0 0 3px gray;
}

.center-column-l::-webkit-scrollbar-track {
    display: none;
}

.left-column-e::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

.left-column-e:hover::-webkit-scrollbar-thumb {
    background-color: var(--accent-scrollbar);
    width: 3px;
    border-radius: 10px;
    box-shadow: inset 0 0 3px gray;
}

.left-column-e::-webkit-scrollbar-track {
    display: none;
}

.center-column-e::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

.right-column-e::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

.right-column-e:hover::-webkit-scrollbar-thumb {
    background-color: var(--accent-scrollbar);
    width: 3px;
    border-radius: 10px;
    box-shadow: inset 0 0 3px gray;
}

.right-column-e::-webkit-scrollbar-track {
    display: none;
}

.center-column-e:hover::-webkit-scrollbar-thumb {
    background-color: var(--accent-scrollbar);
    width: 3px;
    border-radius: 10px;
    box-shadow: inset 0 0 3px gray;
}

.divl,
.divr,
.divc {
    z-index: 1;
    background: var(--container-background);
    min-height: 30px;
    margin: 10px 0;
    border-radius: 3px;
    outline: 10px solid var(--background);
}

.divcont {
    z-index: 1;
    background: var(--container-background);
    min-height: 30px;
    margin: 10px 0;
    border-radius: 3px;
    outline: 10px solid var(--background);
}

.divcont-c {
    z-index: 1;
    background: var(--container-background);
    min-height: 30px;
    border-radius: 3px;
    outline: 10px solid var(--background);
}

.divl:hover {
    background: var(--background);
}

.divr:hover {
    background: var(--background);
}

.sticktop {
    background: var(--background);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 4;
    border-top: 10px solid var(--background);
}

.head-Sc {
    background: var(--container-accent);
    color: var(--text-color-hilight);
    font-weight: 500;
    margin: 0;
    padding: 15px 0 15px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.head-Sc img {
    margin-right: 10px;
}


/*===Kit dettagli accentati===*/


/*---attribuisci questa al div che contiene il resto---*/

.head-orangebar {
    position: relative;
    border-radius: 3px;
}


/*---attribusci questa classe ad un div vuoto all'intenro del div con la classe precedente---*/

.left-side-color-S {
    margin-right: 7px;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
    height: 100%;
    width: 3px;
    position: absolute;
    left: 0;
    top: 0;
    border-top-left-radius: 3px;
    background-color: var(--accent);
}

.bottom-side-color-S {
    margin-top: 5px;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: var(--accent);
}


/*============================*/


.fs-7 {
    font-size: 0.7rem; /* O qualsiasi dimensione desideri */
}

.live-button-style {
    font-weight: bold;
    border: 1px solid;
    padding: 5px;
}


img.bandiera {
    float: left;
    width: 20px;
}

.input-error {
    border: 2px solid red !important;
}



/* Spinner generico centrato */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.mobile-data-loading-overlay {
    background: rgba(7, 13, 35, 0.58);
    cursor: wait;
    pointer-events: all;
}

body.mobile-data-loading {
    cursor: wait;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #f28c00; /* colore arancione piattaforma */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.day-separator-mob {
    background-color: #f2f2f2;
    border-top: 2px solid #ddd;
    padding: 8px 12px;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 4px;
}

.day-label-mob {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: capitalize;
}

    .day-label-mob i {
        font-size: 1rem;
        color: #777;
    }
