.bootstrap-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .bootstrap-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .bootstrap-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .bootstrap-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .bootstrap-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .bootstrap-container {
        max-width: 1320px;
    }
}
* {
    box-sizing: border-box;
    position: relative;
    clear: both;
}

html,
body,
#root,
#root2 {
    display: block;
    width: 100%;
    overflow: visible;
    font-family: "Roboto",sans-serif;
    margin: 0;
    box-sizing: border-box;

}

#root,
#root2 {
    min-height: 100vh;
}

/* WebKit (Chrome, Safari, Opera) */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #ee7c31;
    border-radius: 5px;
}

/* common - end */

#root2 {
    min-height: 100vh;
}

#root2 > .landing-page:first-child {
    /*position: fixed;*/
    position: relative;
    height:100px;
    padding-top: 20px;
    left: 0;
    right:0;
    top:0;
}

.landing-page .landing-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.landing-page .landing-logo > div:first-child {
    width: auto;
    border-radius: 50px;
    color: #ffffff;
    align-items: center;
    padding: 15px 20px 15px 15px;
    max-height: 70px;
}

.logo-img-large {
    height: 40px;
}
.logo-img-small {
    height: 40px;
    display: none;
}

.landing-page.landing-content {
    margin-top: 100px;
}
.landing-page.landing-content > div {
    padding: 0;
}

.landing-page.landing-content > div > div {
    justify-content: left;
    text-align: center;
    display: flex;
    flex-direction: column
}

.landing-page.landing-content > div > div > div {
    flex: 1;
    margin-left: auto;
    margin-right: auto;
}
.landing-page.landing-content h1 {
    font-size: 80px;
    margin-bottom: 0;
    flex: 1;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    color: black;
    letter-spacing: .3rem;
}
.landing-page.landing-content h2 {
    font-size: 20px;
    flex: 1;
    margin-left: auto;
    margin-right: auto;
    color: black;
    letter-spacing: .1rem;
    font-weight: 300;
}
.landing-loading.container {
    padding-left: 20px;
    padding-right: 20px;
}

.landing-loading button {
    background: #ee7c31;
    border: none;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
    font-weight: bold !important;
}
.landing-loading.landing-content button {
    padding: 15px 30px;
}

.landing-page-cta-btn {
    cursor: pointer;
    color: #ffffff !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 40px !important;
    padding: 6px 40px !important;
    height: auto !important;
    border-radius: 50px !important;
    margin-top: 40px !important;
}
@media (max-width: 670px) {
    /*** *** *** Menu *** *** ***/
    .landing-logo > div {
        display: flex;
        flex: 1;
        padding: 10px 10px 10px 10px !important;
    }
    .landing-logo img {
        height: 30px !important;
    }
    .landing-logo .logo-img-large {
        display: flex !important;
    }
    .landing-logo .logo-img-small {
        display: none !important;
    }
    /*** *** *** Content *** *** ***/
    .landing-page h1 {
        font-size: 60px !important;
    }
    .landing-page h2 {
        font-size: 16px !important;
    }
    .landing-page .landing-page-cta-btn {
        font-size: 30px !important;
    }
}

@media (max-width: 490px) {
    /*** *** *** Menu *** *** ***/

    /*** *** *** Content *** *** ***/
    .landing-page h1 {
        font-size: 50px !important;
        letter-spacing: 0.0rem !important;
    }
}

@media (max-width: 370px) {
    /*** *** *** Menu *** *** ***/
    .landing-logo .logo-img-large {
        display: none !important;
    }
    .landing-logo .logo-img-small {
        display: flex !important;
    }

    /*** *** *** Content *** *** ***/
    body {
        zoom: 90%;
    }

    .landing-page .landing-page-cta-btn {
        font-size: 30px !important;
    }
}
@media (max-width: 370px) {
    /*** *** *** Menu *** *** ***/

    /*** *** *** Content *** *** ***/
    body {
        zoom: 90%;
    }

    .landing-page .landing-page-cta-btn {
        font-size: 20px !important;
    }
}

.footer-section {
    background: var(--header-background-color);
    display: flex;
    flex-direction: row;
    border-bottom: 2px solid var(--momentum-header-color);
    /*display: none;*/
}
.footer-section > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-section > div > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
    min-width: 200px;
}

.footer-section > div > div h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--no-available-game-color);
}

.footer-section li {
    margin-bottom: 10px;
}
.footer-section a {
    /*black*/
    color: var(--team-names-color);
    font-size: 16px;
}
#copyright-wrapper {
    background: #ee7c31;
}
#copyright {
    background: #ee7c31;
    color: #ffffff;
    padding: 10px;
}

.sr-momentum__event-icon {
    cursor: pointer;
    fill: var(--momentum-color);
}

.srt-fill-soccer-yellow-card {
    fill: #ffbf00;
    width: 5px;
}
.srt-fill-soccer-red-card {
    fill: #e43b3b;
    width: 5px;

    path {
        fill: #e43b3b !important;
    }
}


.MuiPopover-paper {
    padding: 5px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.MuiPopover-paper .time-element{
    display: flex;
    background: #ee7c31;
    color: white;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
}

.MuiPopover-paper svg {
    width: 10px;
}
