* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
}

:root {
    --primary-color: #006295;
    --second-color: #161616;
}

a {
    text-decoration: none;
}

.out-box-content {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.box-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 11.5rem;
    margin-bottom: 6rem;
}

.tag-for-data {
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
    line-height: 1.8em;
    color: var(--primary-color);
    margin: 15px 0;
    margin-bottom: 1rem;
}

.box-card-top-read-page {
    position: fixed;
    top: 0;
    max-width: 1024px;
    width: 100%;
    background: #fff;
    z-index: 100;
    padding: 20px 0;
    padding-bottom: 0;
}

.card-top-side-read-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 20px;
}

.card-top-side-read-page .logo {
    width: 180px;
}

.card-top-side-read-page .logo img {
    width: 100%;
    object-fit: cover;
}

.icon-bar-menu,
.icon-search-show-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 32px;
    height: 32px;
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.icon-bar-menu:hover,
.icon-search-show-mobile:hover {
    background: rgb(128, 128, 128, 0.07);
}

.search-form-read-page {
    display: flex;
    max-width: 350px;
    width: 100%;
}

.search-form-read-page form {
    display: flex;
    outline: 1px solid rgb(128, 128, 128, 0.2);
    overflow: hidden;
    width: 100%;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.cardinp-search-read-page {
    display: flex;
    align-items: center;
    width: 100%;
}

.cardinp-search-read-page input {
    padding: 12px 20px;
    padding-right: 15px;
    background: none;
    outline: none;
    border: none;
    font-size: 16px;
    letter-spacing: .1px;
    font-family: 'Poppins', sans-serif;
    font-display: swap;
    color: #161616;
    width: 100%;
}

.cardinp-search-read-page span {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    padding: 5px;
    padding-right: 20px;
}

.btn-submit-search {
    background: none;
    border: none;
    outline: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
}

.btn-submit-search span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.btn-submit-search:hover {
    filter: brightness(90%);
    -webkit-filter: brightness(90%);
}

#clear-val-inp {
    display: none;
}

.list-opt-top-read-page {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    overflow-x: auto;
}

.list-opt-top-read-page::-webkit-scrollbar {
    display: none;
}

.card-btn-opt-read-page a p {
    padding: 16px 10px;
    color: #fff;
    line-height: 1.52em;
    letter-spacing: .1px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-display: swap;
    white-space: nowrap;
    color: #fff;
    background: var(--primary-color);
}

.card-btn-opt-read-page a:hover {
    filter: brightness(90%);
    -webkit-filter: brightness(90%);
}

.out-sidebar-mobile-menu.show {
    left: 0;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
}

.out-sidebar-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100rem;
    background: #fff;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.09);
    z-index: 101;
    max-width: 300px;
    width: 100%;
    height: 100%;
    padding: 20px 0;
    transition: .7s all;
    -webkit-transition: .7s all;
    -moz-transition: .7s all;
    -ms-transition: .7s all;
    -o-transition: .7s all;
}

.box-sidebar-mobile-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.top-sidebar {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 0 15px;
}

.top-sidebar .icon-close-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 32px;
    height: 32px;
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.top-sidebar .icon-close-sidebar:hover {
    background: rgb(128, 128, 128, 0.07);
}

.logo-mobile {
    width: 100px;
}

.logo-mobile img {
    width: 100%;
    object-fit: cover;
}

.top-middle-sidebar {
    margin-top: 2rem;
}

.list-opt-category-sidebar {
    display: flex;
    flex-direction: column;
}

.list-opt-category-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: rgb(128, 128, 128);
}

.list-opt-category-sidebar a:hover {
    background: rgb(128, 128, 128, 0.07);
    color: var(--second-color);
}

.card-link-category-sidebar {
    font-size: 15px;
    letter-spacing: .2px;
    line-height: 1.52em;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
}

.icon-list-category-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.out-search-form-mobile.show {
    top: 5rem;
}

.out-search-form-mobile {
    position: fixed;
    top: -100rem;
    left: 0;
    width: 100%;
    height: fit-content;
    display: none;
    z-index: 101;
}

.box-search-form-mobile {
    width: 100%;
    padding: 0 20px;
}

.box-search-form-mobile form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.09);
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.card-inp-search-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.card-inp-search-mobile input {
    padding: 12px 20px;
    background: none;
    outline: none;
    border: none;
    width: 100%;
    color: #161616;
    width: 100%;
    font-size: 14.5px;
    letter-spacing: .1px;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
}

.card-inp-search-mobile span {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(128, 128, 128);
    width: 34px;
    height: 30px;
    margin-right: 10px;
}

.btn-search-mobile {
    padding: 12px;
    border: none;
    outline: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
}

.btn-search-mobile span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-mobile:hover {
    filter: brightness(90%);
    -webkit-filter: brightness(90%);
}

footer {
    background-color: var(--second-color);
    padding: 20px;
}

.box-footer {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.logo-footer {
    width: 120px;
    margin: 0 auto;
}

.logo-footer img {
    width: 100%;
    object-fit: cover;
}

.list-opt-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    margin: 1rem 0;
    margin-bottom: 11px;
}

.list-opt-footer li {
    color: #fff;
    margin-right: 5px;
    font-size: 15px;
    letter-spacing: .2px;
    line-height: 1.52em;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
}

.list-opt-footer li a {
    color: #fff;
}

.list-opt-footer li a:hover {
    text-decoration: underline;
}

footer .copyright {
    text-align: center;
    color: #fff;
    font-size: 15px;
    letter-spacing: .2px;
    line-height: 1.52em;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
}

.out-control-content {
    display: flex;
    width: 100%;
}

.box-left-side-content {
    max-width: 760px;
    width: 100%;
    overflow: hidden;
    margin-right: 1rem;
    padding: 15px;
    padding-top: 0;
}

.card-main-img-content {
    position: relative;
}

.card-main-img-content img {
    object-fit: cover;
    max-width: 1024px;
    width: 100%;
    height: 420px;
    vertical-align: middle;
}

.card-info-main-content {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    background: linear-gradient(to right, #02203158, #2a475123);
    font-family: 'Poppins', sans-serif;
    font-display: swap;
    letter-spacing: .1px;
    line-height: 1.52em;
    font-weight: 600;
    width: 100%;
}

.card-info-main-content h3 {
    color: #fff;
    padding: 40px 14px;
}

.list-opt-main-content {
    display: flex;
    width: 100%;
    margin-top: 5px;
}

.card-opt-main-cont {
    width: 100%;
}

.card-opt-main-cont img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
    outline: 1px solid #fff;
}

.card-opt-main-cont p {
    font-size: 14.5px;
    letter-spacing: .2px;
    line-height: 1.52em;
    color: var(--second-color);
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
}

.card-opt-main-cont p:hover {
    color: var();
}

.slider {
    display: none;
    position: relative;
    max-width: 1024px;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.card-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    display: none;
    flex-direction: column;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
}

.card-slider img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card-info-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    background: linear-gradient(to right, #02203158, #2a475123);
    font-family: 'Poppins', sans-serif;
    font-display: swap;
    letter-spacing: .1px;
    line-height: 1.52em;
    box-sizing: border-box;
}

.card-info-slider h3 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    padding: 20px;
}

.card-slider.visible {
    display: flex;
}

.card-slider.hidden {
    display: none;
}

.hidden {
    opacity: 0;
}

.visible {
    opacity: 1;
}


.control-button-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: linear-gradient(to right, #022031aa, #2a475123);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

#next {
    right: 0;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

#prev {
    left: 0;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

.control-button-slider button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-bottom-content {
    margin-top: 2rem;
}

.card-mod-cont {
    display: flex;
    list-style: none;
    margin-bottom: 1rem;
    width: 100%;
}

.card-info-middle-cont {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 11px;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
}

.card-info-middle-cont span a,
.card-arc-info-most-view-by-ctg span a {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .1px;
    color: var(--primary-color);
}

.card-info-middle-cont p {
    margin-top: 5px;
}

.card-info-middle-cont .title-arc-by-ctg a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    color: #161616;
    letter-spacing: .2px;
    line-height: 1.52em;
    width: 100%;
}

.card-info-middle-cont .title-arc-by-ctg a:hover {
    color: var(--primary-color);
}

.time-post-arc {
    display: flex;
    justify-content: flex-end;
    font-size: 12.5px;
    color: rgb(128, 128, 128);
    letter-spacing: .2px;
    line-height: 1.52em;
    width: 100%;
}

.card-mod-cont img {
    max-width: 200px;
    width: 200px;
    height: 100px;
    vertical-align: middle;
    object-fit: cover;
}

.show-more-btn-middle-cont {
    margin-top: 1rem;
}

.show-more-btn-middle-cont {
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    outline: none;
    width: fit-content;
    font-size: 15px;
    letter-spacing: .1px;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
    cursor: pointer;
}

.show-more-btn-middle-cont:hover {
    filter: brightness(90%);
    -webkit-filter: brightness(90%);
}

.box-right-side-content {
    max-width: 300px;
    width: 100%;
    padding: 5px;
    padding-top: 0;
}

.card-arc-most-view-by-ctg {
    display: flex;
    margin-bottom: 11px;
}

.card-arc-most-view-by-ctg img {
    max-width: 100px;
    width: 100px;
    height: 65px;
    object-fit: cover;
}

.card-arc-info-most-view-by-ctg {
    margin-left: 11px;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
}

.card-arc-info-most-view-by-ctg span {
    display: none;
}

#time-post-most {
    display: none;
}

.card-arc-info-most-view-by-ctg p {
    margin-top: 5px;
}

.card-arc-info-most-view-by-ctg p a {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    letter-spacing: .1px;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
    color: #161616;
}

.card-arc-info-most-view-by-ctg p a:hover {
    color: var(--primary-color);
}

.show-btn-list {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.09);
    overflow: hidden;
    color: #161616;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 270px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.show-btn-list p {
    padding: 10px;
    font-size: 14.5px;
    width: 100%;
    letter-spacing: 0.1px;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
    white-space: nowrap;
}

.icon-chev-klasemen {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
}

.icon-chev-klasemen.show {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
}

.list-opt-league.show {
    display: flex;
}

.list-opt-league {
    display: none;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.09);
    overflow: hidden;
    border-radius: 6px;
    margin: .7rem 0;
    width: 270px;
}

.list-opt-league p {
    font-size: 14.5px;
    letter-spacing: 0.1px;
    font-family: 'DM Sans', sans-serif;
    font-display: swap;
    color: grey;
    padding: 10px;
    cursor: pointer;
    background: #fff;
}

.list-opt-league p:hover {
    filter: brightness(90%);
    color: #161616;
}

.box-list-klasement {
    display: flex;
    flex-direction: column;
}

.seriea,
.laliga {
    display: none;
}

@media (max-width: 1025px) {
    .card-top-side-read-page {
        padding: 20px;
        padding-top: 0;
    }
}

@media (max-width: 768px) {

    .card-arc-info-most-view-by-ctg span,
    #time-post-most {
        display: flex;
    }

    .card-arc-most-view-by-ctg img {
        max-width: 200px;
        width: 200px;
        height: 100px;
    }

    .out-control-content {
        flex-direction: column;
    }

    .out-list-opt-main-content {
        display: none;
    }

    .slider {
        display: block;
    }

    .card-main-img-content img {
        height: 350px;
    }

    .box-right-side-content {
        padding: 15px;
        max-width: 100%;
    }

    .show-btn-list,
    .list-opt-league {
        width: 100%;
    }

    .box-left-side-content {
        margin-right: 0;
        max-width: 100%;
    }

    .box-card-top-read-page {
        box-shadow: 0 2px 6px rgb(0, 0, 0, 0.09);
    }

    .card-top-side-read-page {
        padding: 15px;
        padding-top: 0;
    }

    .card-top-side-read-page .logo {
        width: 110px;
    }

    .icon-bar-menu,
    .icon-search-show-mobile {
        display: flex;
    }

    .search-form-read-page {
        display: none;
    }

    .list-opt-top-read-page {
        display: none;
    }

    .out-sidebar-mobile-menu {
        display: block;
    }

    .out-search-form-mobile.show {
        display: block;
    }

    .box-content {
        margin-top: 6rem;
    }
}

@media (max-width: 500px) {
    .card-mod-cont img,
    .card-arc-most-view-by-ctg img {
        max-width: 100px;
        width: 100px;
    }

    .card-arc-most-view-by-ctg img {
        height: 100px;
    }
}

@media (max-width: 400px) {
    .out-sidebar-mobile-menu {
        max-width: 100%;
    }

    .card-main-img-content img {
        height: 300px;
    }

    .slider,
    .card-slider img {
        height: 300px;
    }
}