@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: formulaBold;
    src: url(../fonts/Formula1-Bold.otf);
}

@font-face {
    font-family: formulaRegular;
    src: url(../fonts/Formula1-Regular.otf);
}

@font-face {
    font-family: formulaWide;
    src: url(../fonts/Formula1-Wide.otf);
}

.f1bold {
    font-family: formulaBold;
}

.f1regular {
    font-family: formulaRegular;
}

.f1wide {
    font-family: formulaWide;
}

:root {
    --start: #ae0e0e;
    --end: #750c0c;
}

* {
    font-family: 'Rajdhani', sans-serif;
}

.dm {
    font-family: 'DM Sans', sans-serif;
}

.mask-arrow {
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
}

.nav-item .active {
    background-color: #dc2626;
    border-radius: 10px 10px 0 0;
    color: #fff !important;
}

#playerMenu .nav-item .active {
    border-color: #dc2626;
    background-color: #601623;
}

.bg-primary-gradient {
    background: var(--start);
    background: linear-gradient(90deg, var(--start) 0%, var(--end) 100%) !important;
}

.f1bg {
    background-image: url(../images/line.png);
    background-size: 12px;
    background-repeat: repeat;
    background-size: 5px;
    width: 100%;
}

.f1bg-gradient {
    background: var(--gradentTeamColor);
    background: linear-gradient(112deg, var(--gradentTeamColor) 0%, #15151e 60%);
}

.f1bg-gradient.defaultColor {
    background: #15151e;
    background: linear-gradient(112deg, #15151e00 0%, #15151e 60%);
}

.bannerVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient {
    background: rgb(13,13,13);
    background: linear-gradient(180deg, #15151e00 0%, #15151e 100%);
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.headerUp {
    transform: translateY(-50px);
    background: #000000d0 !important;
}

input.tagSelected + label {
    background-color: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: #888;
    border-radius: 5px;
    transition: all 200ms ease-in-out;
    padding: 5px 15px;
    user-select: none;
    cursor: pointer;
}

input:checked.tagSelected + label {
    background-color: #dc2626;
    color: #fff;
    border: 2px solid #dc2626;
}

#newsContent {
    color: white !important;
}

#newsContent p {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
}

#newsContent strong {
    color: #dc2626;
}

#newsContent img {
    max-width: 100%;
    margin: 15px 0;
}

#newsContent blockquote {
    padding: 25px;
    font-style: italic;
    font-weight: bold;
    border-bottom-right-radius: 20px;
    border: 2px #dc2626 solid;
    margin-bottom: 15px;
    background-color: #00000015;
    clip-path: polygon(0 0, 50px 0, 99% 5%, 100% 70%, 100% 100%, 70% 100%, 1% 95%, 0 50px);
}

#newsContent blockquote p {
    margin: 0 !important;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
  
::-webkit-scrollbar-track {
    background: transparent;
}
  
::-webkit-scrollbar-thumb {
    background: #dc2626;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #555;
}