:root {
    --bg-color: #002845;
}

html:lang(ar) body {
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
}

html:not(:lang(ar)) button,
html:not(:lang(ar)) input,
html:not(:lang(ar)) body {
    direction: ltr;
    font-family: 'Roboto', sans-serif;
}

html:lang(ar) button,
html:lang(ar) input {
    font-family: 'Tajawal', sans-serif;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #0F1B0D;
    --button-bg-c: var(--bg-color);
    --button-tt-c: #ffffff;
}

body * {
    box-sizing: border-box;
    vertical-align: middle;
}

.dc-container {
    max-width: 1350px;
    padding: 0 15px;
    margin: auto;
}

input,
button {
    border: none;
    background: none;
    outline: none;
    font-weight: 300;
    padding: 0px;
    margin: 0;
}

.dc-edit {
    border-radius: 2px;
    background-color: #ffffff;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    font-size: 28px;
}

.dc-button {
    padding: 10px;
    border-radius: 3px;
    font-size: 20px;
    outline: none;
    font-weight: 300;
    background-color: var(--bg-color);
    color: #ffffff;
}

.dc-w-s {
    width: 10px;
}

.dc-image-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.dc-sections>.dc-section:not(:last-child) {
    margin-bottom: 15px;
}

.dc-section h2 {
    background-color: var(--bg-color);
    color: #ffffff;
    padding: 10px 5px;
    margin: 0;
    font-size: 20px;
    margin-bottom: 1px;
}

.dc-before-filter {
    position: relative;
    z-index: 1;
    /* transition: 1s; */
}

.dc-before-filter::before {
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.dc-sep-hrz::after {
    content: "";
    display: block;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 30px 15px;
    /* box-shadow: 0 2px 3px rgb(0 0 0 / 10%); */
}

.dc-play {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 2px #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 15px;
    user-select: none;
    /* box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff; */
}

.dc-play:not(:hover) {
    animation: play 1s infinite linear;
}

.dc-play::before {
    content: "";
    background-color: #ffffff;
    display: inline-block;
    width: 15px;
    height: 23px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin-right: -7.5px;
}

.dc-play:not(:hover)::before {
    animation: play-before 1s infinite linear;
}

.dc-link-j {
    padding: 5px;
    color: #0F1B0D;
    border-radius: 100px;
}

.dc-link-j:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--bg-color);
}

.dc-link-j .dc-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: currentColor;
}

@keyframes play {
    0% {
        filter: drop-shadow(0 0 0px #f2f2f2);
        border-color: #f2f2f2;
    }
    50% {
        filter: drop-shadow(0 0 40px #ffffff);
        border-color: #ffffff;
    }
    100% {
        filter: drop-shadow(0 0 0px #f2f2f2);
        border-color: #f2f2f2;
    }
}

@keyframes play-before {
    0% {
        background-color: #f2f2f2;
    }
    50% {
        background-color: #ffffff;
    }
    100% {
        background-color: #f2f2f2;
    }
}

.dc-margin-bt-15 {
    margin-bottom: 15px;
}

.dc-body-loading .dc-page {
    overflow: hidden;
    width: 0;
    display: none;
}


/**/

.dc-loading {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: white;
}

.dc-loading .dc-svg-loading polygon,
.dc-loading .dc-svg-loading path {
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke: var(--bg-color);
    stroke-dashoffset: 0;
    stroke-dasharray: 100px;
    transform: translate(calc(50% - 138.67px), calc(50% - 85.515px));
    transition: stroke-width 0.5s;
}

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: 0.7; }
    }
.dc-svg-loading{
    width: 250px;
    height: 250px;
    animation: pulse 2s infinite ease-in-out;
}
/* .dc-loading{
      width: 150px;
      height: 150px;
      animation: pulse 2s infinite ease-in-out;
} */
.dc-loading.anm .dc-svg-loading polygon,
.dc-loading.anm .dc-svg-loading>path {
    /* -webkit-transition: stroke-width 0.2s, stroke-dashoffset 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95), stroke-dasharray 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: stroke-width 0.2s, stroke-dashoffset 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95), stroke-dasharray 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: stroke-width 0.2s, stroke-dashoffset 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95), stroke-dasharray 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: stroke-width 0.2s, stroke-dashoffset 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95), stroke-dasharray 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: stroke-width 0.2s, stroke-dashoffset 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95), stroke-dasharray 5.5s cubic-bezier(0.445, 0.05, 0.55, 0.95); */
    /* -webkit-animation: stroke 5s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95); */
    animation: stroke 5s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.dc-loading.after .dc-svg-loading polygon,
.dc-loading.after .dc-svg-loading>path {
    stroke-dashoffset: 0;
    stroke-dasharray: 1600px;
    stroke-width: 10px;
}

.dc-loading.fill .dc-svg-loading polygon,
.dc-loading.fill .dc-svg-loading>path {
    stroke-dashoffset: 0;
    stroke-dasharray: 1600px;
    stroke-width: 0px;
    fill: var(--bg-color);
}

.dc-loading.close {
    background-color: var(--bg-color);
}

.dc-loading.close .dc-svg-loading polygon,
.dc-loading.close .dc-svg-loading>path {
    transform: translate(0, 0);
    fill: #ffffff;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 1000;
    }
}

.dc-audio-item {
    padding: 15px;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, .1); */
    border: solid 1px rgba(0, 0, 0, .05);
    background-color: #fafafa;
    margin-bottom: 15px;
}

.dc-audio-item h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    color: var(--bg-color);
    margin-bottom: 0px;
}

.dc-audio-item .dc-audio-desc {
    font-size: 14px;
    color: #555555;
    margin-bottom: 10px;
}

.dc-audio-item .dc-audio-desc p {
    margin: 0;
}

.dc-audio-date {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 10px;
}

.dc-audio {
    user-select: none;
    direction: ltr;
}

.dc-controls .dc-play-audio {
    display: inline-block;
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.dc-controls .dc-play-audio svg path {
    transition: 0.3s;
}

.dc-progressbar {
    height: 5px;
    --progress: 0;
    background-color: rgba(0, 0, 0, .1);
}

.dc-progressbar::before {
    content: "";
    display: block;
    height: 100%;
    width: calc(var(--progress) * 100%);
    background-color: var(--bg-color);
}

.dc-date-audio {
    color: #000000;
    font-size: 14px;
    padding: 0 5px;
}

.dc-article_extract p {
    margin: 0;
    margin-bottom: 15px;
}

.dc-sport24-mainmenu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='250' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.07'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/svg%3E");
}

.dc-sport24-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: 80px;
}

.dc-sport24-nav>li {
    margin: 0 10px;
}

.dc-sport24-nav>li>span {
    display: block;
    height: 20px;
    width: 1px;
    background-color: #000428;
}

.dc-sport24-nav>li a {
    color: #000428;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.dc-sport24-nav>li a:hover {
    color: var(--bg-color);
}


/* */

.dc-video-items {
    padding: 15px 0;
}

.dc-video-item {
    min-height: 300px;
    background-color: #222222;
    text-align: center;
    --progress: 0;
    --progress-over: 0;
    --progress-button: 0;
    position: relative;
    overflow: hidden;
    display: block;
    /* align-items: center; */
}

.dc-video-item video {
    max-width: 100%;
    display: block;
    /* vertical-align: middle; */
}

.dc-video-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .6));
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    transition-delay: 0.5s;
}

.dc-controls-video {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1));
    padding-top: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    transition: 0.2s;
    transition-delay: 0.5s;
    direction: ltr;
}

.dc-video-item:not(.dc-not-over) .dc-video-title,
.dc-video-item:not(.dc-not-over) .dc-controls-video {
    opacity: 0;
}

.dc-video-item:hover .dc-video-title,
.dc-video-item:hover .dc-controls-video,
.dc-video-item.dc-video-played .dc-video-title,
.dc-video-item.dc-video-played .dc-controls-video {
    opacity: 1;
    transition-delay: 0s;
}

.dc-controls-video button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #ffffff;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.50));
    width: 20px;
    height: 20px;
}

.dc-audio-item .dc-controls-video {
    position: initial;
}

.dc-audio-item .dc-controls-video button {
    color: #6BA32F;
}

.dc-controls-video button:hover {
    color: #6BA32F;
}

.dc-controls-video button svg path {
    transition: 0.2s;
}

.dc-controls-video button.dc-play-fullscreen {
    position: absolute;
    right: 5px;
    top: 5px;
}

.dc-controls-video .dc-progressbar-content {
    padding: 0 15px;
    padding-bottom: 25px;
}

.dc-date-video {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 0;
}

.dc-audio-item .dc-date-video {
    color: #6BA32F;
}

.dc-controls-video .dc-progressbar-video {
    height: 3px;
    overflow: hidden;
    transition: 0.2s;
    position: relative;
    z-index: 1;
    user-select: none;
}

.dc-controls-video .dc-progress {
    background-color: rgba(107, 163, 47, 0.30);
    height: 3px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.dc-controls-video .dc-progress::before,
.dc-controls-video .dc-progress::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
}

.dc-controls-video .dc-progress::before {
    background-color: #6BA32F;
    width: calc(var(--progress) * 100%);
}


/* .dc-controls-video .dc-progress::after {
    background-color: rgba(255, 255, 255, 0.2);
    width: calc(var(--progress-over) * 100%);
    z-index: 1;
} */

.dc-controls-video .dc-progress-button {
    display: inline-block;
    user-select: none;
    border-radius: 50%;
    background-color: #6BA32F;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(var(--progress) * calc(100% - 15px));
    width: 0px;
    height: 0px;
    transition: 0.2s width, 0.2s height;
}

.dc-video-item:hover .dc-progressbar-video {
    height: 17px;
}

.dc-video-item:hover .dc-progress {
    height: 5.5px;
}

.dc-video-item:hover .dc-progress-button {
    width: 15px;
    height: 15px;
}

.dc-audio-item {
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    min-height: 120px;
    margin-bottom: 15px;
}

.dc-audio-item .dc-controls-video {
    background: none;
    box-shadow: none;
}

.dc-audio-item-text {
    text-align: initial;
}

.dc-audio-item-text .dc-audio-item-title {
    font-weight: 500;
    margin: 0;
    margin-bottom: 5px;
    color: #6BA32F;
}

.dc-audio-item-text .dc-audio-item-desc {
    font-size: 14px;
    color: #555555;
    margin: 0;
    margin-bottom: 15px;
}

.dc-audio-item-date {
    color: #aaaaaa;
    font-size: 12px;
}

.dc-video_audio-h {
    background-color: #6BA32F;
    margin: 0;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
    padding: 5px;
    color: #ffffff;
}
.weather a {
    text-decoration: none;
    color: #f17c24;
}
.fortune a {
    text-decoration: none;
    color: #f17c24;
}