/* FONTS */

@font-face {
    font-family: 'Tahoma';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Tahoma.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Tahoma-Bold.ttf');
    font-display: swap;
}

/* GENERAL */

html, body {
    height: 100%;
    font-family: 'Tahoma', sans-serif;
    background-color: #fff;
}

:root {
    --primaryColor: #bd1f26;
    --primaryTextColor: #000000;
    
}

.site {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .3s;
}

/* TOP */

#top {
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #141414;
    background: -webkit-linear-gradient(0deg, rgba(20, 20, 20, 1) 0%, rgba(38, 37, 38, 1) 100%);
    background: -moz-linear-gradient(0deg, rgba(20, 20, 20, 1) 0%, rgba(38, 37, 38, 1) 100%);
    background: linear-gradient(0deg, rgba(20, 20, 20, 1) 0%, rgba(38, 37, 38, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#141414", endColorstr="#262526", GradientType=0);
    border-top: 3px solid #000;
    z-index: 1020;
}
#top .date p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 4px 120px;
    margin: 0;
}
/* #top .social-media {
    padding-right: 550px;
} */
#top .social-media {
  display: flex;
  justify-content: flex-end;
  padding-right: 25px;
  gap: 25px;
}

#top .social-media a {
  font-size: 0;
  margin: 0;
}

/* HEADER */

#header {
    position: sticky;
    top: 0;
    background-color: #bd1f26;
    border-bottom: 2px solid #ac0f1d;
    z-index: 1020;
}

#header .logo img {
    transition: all .3s;
}

#header .user-panel {
    margin-top: -57px;
}
#header .user-panel > p {
    position: relative;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    padding: 18px 0;
    margin: 0;
    background-color: #bd1f26;
    border-top: 2px solid #ac0f1d;
    border-bottom: 2px solid #dc062c;
}
#header .user-panel > p::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #dc062c;
    position: absolute;
    top: 0; left: 0;
}
#header .user-panel > p::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ac0f1d;
    position: absolute;
    bottom: 0; left: 0;
}
#header .user-panel form {
    padding-top: 2px;
    padding-left: 25px;
    padding-right: 25px;
}
#header .user-panel input {
    display: inline-block;
    height: 39px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 12px;
    margin: 0;
    border: 1px solid #dc062c;
    outline: none;
}
#header .user-panel button {
    position: relative;
    top: -1px;
    display: inline-block;
    height: 39px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    padding: 0 14px 3px 14px;
    margin: 0;
    background: #FF9A00;
    background: -webkit-linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    background: -moz-linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF9A00", endColorstr="#FFBB00", GradientType=0);
    border: 1px solid #fe8202;
}
#header .user-panel button span {
    text-decoration: none;
}
#header .user-panel button:hover span {
    text-decoration: underline;
    text-underline-offset: 3px;
}
#header .user-panel .links {
    display: flex;
    flex-direction: column;
    padding-top: 0.5px;
}
#header .user-panel .links a {
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#header .user-panel .links a img {
    padding-right: 4px;
}
#header .user-panel .links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}
#header .user-panel .remember {
    padding-top: 5px;
}
#header .user-panel .remember input {
    height: auto;
    margin-right: 5px;
    margin-left: 25px;
}
#header .user-panel .remember label {
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#header .user-panel .remember label:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* NAV */

#nav {
    position: sticky;
    top: 109px;
    background-color: #bd1f26;
    border-top: 2px solid #dc062c;
    border-bottom: 2px solid #dc062c;
    z-index: 1020;
}
#nav::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ac0f1d;
    position: absolute;
    bottom: 0; left: 0;
}

#nav .navbar {
    padding: 0;
    margin: 0;
}
#nav .main-menu > ul {
    display: flex;
    list-style: none;
    padding: 0 0 0 100px;
    margin: 0;
}
#nav .main-menu > ul > li {
    position: relative;
    color: #FFF;
    font-size: 17px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0 10px;
}
#nav .main-menu > ul > li > a {
    display: inline-block;
    padding: 30px 20px;
    transition: all .3s;
}
#nav.sticky .main-menu > ul > li > a {
    padding: 20px 20px;
}
#nav .main-menu > ul > li:hover > a,
#nav .main-menu > ul > li.active > a {
    background-color: #9c0204;
}

#nav .main-menu > ul > li > .sub-menu {
    width: 310px;
    position: absolute;
    top: 100%; left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #9c0204;
    border-bottom: 3px solid #000;
    transform-origin: 50% 0;
    transform: scaleY(0);
    transition-duration: 250ms;
    z-index: 99;
}
#nav .main-menu > ul > li:hover > .sub-menu {
    transform: scaleY(1);
}

#nav .main-menu > ul > li > .sub-menu > li > a {
    position: relative;
    display: block;
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 17px 20px 17px 40px;
    margin: 0;
}
#nav .main-menu > ul > li > .sub-menu > li:nth-child(odd) > a {
    background-color: #aa0204;
}
#nav .main-menu > ul > li > .sub-menu > li > a::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background-image: url('../img/icons/menu-arrow.webp');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 23px; left: 20px;
}
#nav .main-menu > ul > li > .sub-menu > li > a:hover,
#nav .main-menu > ul > li > .sub-menu > li.active > a {
    text-decoration: underline;
    text-underline-offset: 4px;
}
#nav .main-menu > ul > li > .sub-menu > li.active > a {
    font-weight: 700;
}

#nav .search form {
    display: none;
}
#nav .search form.active {
    display: flex;
}
#nav .search input {
    min-width: 400px;
    height: 51px;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 15px;
    margin: 0;
    border: 1px solid #dc062c;
    border-right-width: 0;
}
#nav .search .show-search,
#nav .search button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    padding: 0 14px 3px 14px;
    margin: 0;
    background: #FF9A00;
    background: -webkit-linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    background: -moz-linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF9A00", endColorstr="#FFBB00", GradientType=0);
    border: 1px solid #fe8202;
    cursor: pointer;
}

/* HERO */

#hero {
    position: relative;
    background-color: #171717;
    overflow: hidden;
}
#hero .main a {
    display: flex;
    align-items: flex-end;
    width: calc(100% + 140px);
    height: 1005px;
    padding-bottom: 80px;
    margin-left: -70px;
    background-color: #dc062c;
    background-size: cover;
    background-position: center;
}
#hero .main h2 {
    display: inline-block;
    color: #FFF;
    font-size: 35px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 20px 25px;
    margin: 0 0 0 70px;
    background-color: var(--primaryColor);
    border-bottom: 6px solid #000;
    transition: all .3s;
}
#hero .main a:hover h2 {
    text-decoration: underline;
    text-underline-offset: 6px;
    transform: translateY(-10px);
}

/* MATCHES */

#matches, #trophies {
    position: relative;
    background-color: var(--primaryColor);
    border-top: 2px solid #ac0f1d;
    border-bottom: 2px solid #dc062c;
}

#matches .container-fluid,
#trophies .container-fluid {
    position: relative;
    border-bottom: 2px solid #dc062c;
}
#matches .container-fluid::before,
#trophies .container-fluid::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #dc062c;
    position: absolute;
    top: 0; left: 0;
}
#matches .container-fluid::after,
#trophies .container-fluid::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ac0f1d;
    position: absolute;
    bottom: 0; left: 0;
}
#matches .headline .title,
#trophies .headline .title {
    position: relative;
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 30px 0;
    margin: 0;
}

#matches .match {
    display: flex;
    padding-top: 25px;
    padding-bottom: 25px;
}
#matches .match .team img {
    max-height: 130px;
}
#matches .match .score {
    color: #FFF;
    font-size: 65px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 40px;
    margin: 0;
}
#matches .match .details {
    padding-left: 40px;
}
#matches .match .details p {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0;
    padding: 0;
}
#matches .match .details p:first-of-type {
    font-size: 20px;
}
#matches .match .details p:last-of-type {
    margin-bottom: 0;
}

/* NEWS */

#news .headline .title {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 30px 0;
    margin: 0;
    border-bottom: 4px solid #000;
}

#news .item {
    padding-top: 30px;
}

#news .item .photo {
    display: block;
    width: 100%;
    height: 300px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

#news .item .content {
    position: relative;
    padding: 15px 30px 30px 30px;
    background-color: #f5f7f9;
    border-bottom: 3px solid transparent;
    transition: all .3s;
}
#news .item a:hover .content {
    border-color: var(--primaryColor);
}
#news .item .content .details p,
#others .item .content .details p {
    color: #a3a5aa;
    font-size: 15px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#news .item .content .details p.date,
#others .item .content .details p.date {
    padding-right: 10px;
}
#news .item .content .details p img,
#others .item .content .details p img {
    position: relative;
    top: -2px;
    padding-right: 5px;
}
#news .item .content .details p.author img,
#others .item .content .details p.author img {
    top: -1px;
}
#news .item .content .title,
#others .item .content .title {
    color: #000;
    font-size: 25px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 20px 0 0 0;
    margin: 0;
    transition: all .3s;
}
#news .item a:hover .content .title {
    color: var(--primaryColor);
}

#news .archive a {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 20px 0;
    margin: 30px 0 0 0;
    background-color: #f5f7f9;
    border-bottom: 3px solid var(--primaryColor);
}
#news .archive a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* STATS */

#stats .box .title {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 30px 0;
    margin: 0;
    border-bottom: 4px solid #000;
}

#stats .box table {
    width: 100%;
}
#stats .box table thead th {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 30px 0;
    margin: 0;
    border-bottom: 1px solid #e4e7ed;
}
#stats .box table tbody td {
    height: 74px;
    vertical-align: middle;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e4e7ed;
}
#stats .box table tbody td img {
    max-width: 30px;
}
#stats .box table tbody tr.active td {
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--primaryColor);
}

#stats .box .all,
#trophies .all,
#others .all {
    display: inline-block;
    width: 290px;
    height: 55px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0;
    text-align: center;
    padding: 0 14px 3px 14px;
    margin: 30px 0 0 0;
    background: #FF9A00;
    background: -webkit-linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    background: -moz-linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF9A00", endColorstr="#FFBB00", GradientType=0);
    border: 1px solid #fe8202;
}
#others .all {
    width: 320px;
}
#stats .box .all:hover,
#trophies .all:hover,
#others .all:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

#stats .box.motm .top {
    padding-top: 25px;
}
#stats .box.motm .top .player {
    display: block;
    width: 60%;
    height: 350px;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}
#stats .box.motm .top .score {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../img/icons/score.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
#stats .box.motm .top .score p {    
    color: var(--primaryColor);
    font-size: 90px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}

#stats .box.motm .bottom {
    padding: 54px 0;
    background-color: var(--primaryColor);
}
#stats .box.motm .bottom .name {
    color: #ffbb00;
    font-size: 37px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#stats .box.motm .bottom .team {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 5px 0 0 0;
    margin: 0;
}
#stats .box.motm .bottom .details {
    padding-top: 30px;
}
#stats .box.motm .bottom .details p {
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#stats .box.motm .bottom .details span {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}

/* TROPHIES */

#trophies {
    padding-bottom: 35px;
    margin-top: 30px;
}

#trophies .headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#trophies .slick-track {
    display: flex !important;
}

#trophies .item {
    width: 12.5%;
    height: inherit !important;
    padding-top: 25px;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}
#trophies .item .box {
    position: relative;
    height: 100%;
    padding: 35px 0;
    background-color: #dc062c;
    border-bottom: 4px solid transparent;
    transition: all .3s;
}
#trophies .item .box:hover {
    border-bottom-color: #ffbb00;
}
#trophies .item .box img {
    max-height: 175px;
    margin: 0 auto;
}
#trophies .item .box .name {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0;
    padding: 10px 0;
    margin: 0;
}
#trophies .item .box .value {
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}

/* MEDIA */

#media, #others {
    position: relative;
    background-color: #171717;
}

#media .media h3,
#others .item h3 {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 35px 0 25px 0;
    margin: 0;
    border-bottom: 4px solid #FFF;
}
#media .media .item {
    display: block;
    padding: 30px;
    margin-top: 25px;
    background-color: #212121;
}
#media .media .item .box {
    display: block;
    width: 100%;
    height: 510px;
    background-size: cover;
    background-position: center;
}
#media .media .item p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 25px 0 0 0;
    margin: 0;
}

/* OTHERS */

#others {
    padding-bottom: 35px;
}

#others .item.archive .box a,
#others .item.ads-stats .box,
#others .item.inj-survey .box a,
#others .item.inj-survey .survey .box {
    position: relative;
    display: block;
    padding: 25px 30px;
    background-color: #212121;
    border-bottom: 2px solid #2f2f2f;
}
#others .item.archive .box a:hover {
    border-bottom-color: #FFF;
}
#others .item.archive .content .title,
#others .item.inj-survey .content .title {
    color: #fff;
}
#others .item.archive .box a:hover .title {
    color: #FFF;
}
#others .item.inj-survey .content p,
#others .item.inj-survey .survey .box p,
#others .item.inj-survey .survey .box label {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0;
    padding: 10px 0 0 0;
    margin: 0;
}
#others .item.inj-survey .survey .box p {
    font-weight: 700;
}
#others .item.inj-survey .survey .box label {
    padding-top: 15px;
}

#others .item.ads-stats .ads .box {
    padding-top: 0;
}
#others .item.ads-stats .ads .box a {
    margin-top: 30px;
}
#others .item.ads-stats .ads .box a > img {
    max-width: 100%;
}

#others .item.ads-stats .stats .box {
    padding: 34px 30px;
}
#others .item.ads-stats .stats p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    padding: 0;
}
#others .item.ads-stats .stats p:last-of-type {
    margin-bottom: 0;
}
#others .item.ads-stats .stats p b {
    font-weight: 700;
}

/* FOOTER */

#footer {
    position: relative;
    background-color: #ac0f1d;
}

#footer .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

#footer .container-fluid {
    position: relative;
    background-color: #bd1f26;
    border-top: 2px solid #ac0f1d;
}
#footer .container-fluid::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #dc062c;
    position: absolute;
    top: 0; left: 0;
}

#footer .menu {
    padding-top: 20px;
    padding-bottom: 25px;
}
#footer .menu a {
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0 25px;
}
#footer .menu a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

#footer .social-media a {
    margin: 0 20px;
}

#footer .copyright p {
    color: #d13252;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0;
    padding: 0;
}
#footer .copyright p:first-of-type {
    color: #FFF;
    font-size: 20px;
}
#footer .copyright p:last-of-type {
    margin-bottom: 0;
}

/* PAGE CONTENT */

#page-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

#page-content h1.title,
#page-content .comments .title {
    color: #000;
    font-size: 35px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0 0 40px 0;
    margin: 0;
}

#page-content .font-size {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}
#page-content .font-size p span {
    cursor: pointer;
}
#page-content .font-size p span:nth-child(2) {
    font-size: 30px;
}
#page-content .font-size p span:nth-child(3) {
    font-size: 35px;
}

#page-content .content h2 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 20px 0;
    margin: 0;
}
#page-content .content h3 {
    color: #000;
    font-size: 29px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 20px 0;
    margin: 0;
}
#page-content .content h4 {
    color: #000;
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 20px 0;
    margin: 0;
}

#page-content .font-size p,
#page-content .content p,
#page-content .content li {
    color: #000;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    padding: 0;
}
#page-content .content p:last-of-type {
    margin-bottom: 0;
}
#page-content .content p.bigger-text {
    font-size: 27px;
    line-height: 32px;
}
#page-content .content p.biggest-text {
    font-size: 29px;
    line-height: 34px;
}

#page-content .content li {
    margin-top: 10px;
}



#page-content .tags {
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
}
#page-content .tags .tag a {
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 10px 12px 12px 12px;
    margin: 0 15px 0 0;
    background-color: var(--primaryColor);
    border-bottom: 3px solid #FFF;
}
#page-content .tags .tag a:hover {
    font-weight: 700;
    border-bottom-color: #000;
}

#page-content .details {
    display: flex;
    padding-top: 30px;
}
#page-content .details p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 35px 0 0;
    margin: 0;
}
#page-content .details p img {
    position: relative;
    top: -2px;
    max-height: 16px;
    padding-right: 6px;
}
#page-content .details p a {
    color: var(--primaryColor);
    font-weight: 700;
}
#page-content .details p a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

#page-content .comments {
    padding-top: 60px;
}
#page-content .comments form {
    padding-bottom: 20px;
}
#page-content .comments textarea {
    width: 100%;
    height: 200px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    padding: 20px 25px;
    margin: 0;
    border: 1px solid #e4e7ed;
    resize: none;
}
#page-content .comments textarea:focus {
    outline: none;
    border-color: #FF9A00;
}
#page-content .comments button {
    display: inline-block;
    height: 55px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0;
    text-align: center;
    padding: 0 40px 3px 40px;
    margin: 20px 0 0 0;
    background: #FF9A00;
    background: -webkit-linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    background: -moz-linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(255, 154, 0, 1) 0%, rgba(255, 187, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF9A00", endColorstr="#FFBB00", GradientType=0);
    border: 1px solid #fe8202;
}
#page-content .comments button:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

#page-content .comments .comment {
    display: flex;
    padding-top: 30px;
}
#page-content .comments .comment .avatar {
    width: 80px;
    height: 80px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}
#page-content .comments .comment .content {
    width: calc(100% - 80px);
    padding-left: 35px;
}
#page-content .comments .comment .content p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    padding: 0;
}
#page-content .comments .comment .content p:last-of-type {
    margin-bottom: 0;
}
#page-content .comments .comment .content p a {
    font-weight: 700;
}
#page-content .comments .comment .content p a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* JUMP TO TOP */

span.jump {
    width: 79px;
    height: 79px;
    display: table;
    position: fixed;
    bottom: 55px;
    right: 50px;
    z-index: 98;
    background-image: url("../img/top.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
}
span.jump.show {
    visibility: visible;
    opacity: 1;
}


ul.list {
  display: flex;
  flex-wrap: wrap;  /* pozwala zawijać elementy */
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.list li a {
  color: inherit; /* żeby link dziedziczył kolor z rodzica */
  text-decoration: none; /* opcjonalnie usuwa podkreślenie */
  transition: color 0.3s ease; /* płynna zmiana koloru */
}

ul.list li a:hover {
  color: #dc062c;
}

ul.list li {
  width: 50%;       /* dwie kolumny (po 50%) */
}




ul.list3 {
  display: flex;
  flex-wrap: wrap;  /* pozwala zawijać elementy */
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.list3 li a {
  color: inherit; /* żeby link dziedziczył kolor z rodzica */
  text-decoration: none; /* opcjonalnie usuwa podkreślenie */
  transition: color 0.3s ease; /* płynna zmiana koloru */
}

ul.list3 li a:hover {
  
  text-decoration: underline;
}

ul.list3 li {
  width: 50%;       /* dwie kolumny (po 50%) */
}




ul.list2 {
  display: flex;
  flex-wrap: wrap;  /* pozwala zawijać elementy */
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.list2 li {
  width: 100%;       /* dwie kolumny (po 50%) */
}

ul.list2 li a {
  color: inherit; /* żeby link dziedziczył kolor z rodzica */
  text-decoration: none; /* opcjonalnie usuwa podkreślenie */
  transition: color 0.3s ease; /* płynna zmiana koloru */
}

ul.list2 li a:hover {
  color: #dc062c;
}



ul.list4 {
  display: flex;
  flex-wrap: wrap;  /* pozwala zawijać elementy */
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.list4 li {
  width: 100%;       /* dwie kolumny (po 50%) */
}

ul.list4 li a {
  color: inherit; /* żeby link dziedziczył kolor z rodzica */
  text-decoration: none; /* opcjonalnie usuwa podkreślenie */
  transition: color 0.3s ease; /* płynna zmiana koloru */
}

ul.list4 li a:hover {
  text-decoration: underline;
}








table a {
    text-decoration: none;
    color: inherit
  }

  


table a:hover {
    text-decoration: underline; /* Po najechaniu – pojawia się podkreślenie */
	text-decoration-color: currentColor; /* podkreślenie w kolorze tekstu */
  }
  
  
table td a {
    text-decoration: none;
    color: inherit;
  }

  /* Po najechaniu kursorem na link */
table td a:hover {
    text-decoration: underline;
	text-decoration-color: currentColor; /* podkreślenie w kolorze tekstu */
  }
  
 




.wrexbox,.pagination,.notice{overflow:hidden;clear:both;padding:0 10px}
.wrexbox a,.pagination a,.notice a{color:black;}
.notice2{background-image:url(acp_images/icons/info.png);background-position:0% 50%;padding:10px;padding-left:25px;background-repeat:no-repeat;;overflow:hidden;margin-bottom:10px;clear:both}
.wrexbox h1{line-height:32px;border-bottom:0px solid #BBB;color:#444;font-family:"Trebuchet MS",sans-serif;font-size:21px;font-weight:400;margin:10px 10px 10px 0;padding:0}
.wrexbox h2{font-size:12px;font-weight:700;margin:10px 10px 10px 0;padding:0}
.wrexbox p{line-height:19px;margin-bottom:5px}
.wrexbox .small{margin-top:5px;color:#A0A0A0;clear:both}
.wrexbox img.opacity {
	opacity: 0.5;
	filter: alpha(opacity=50);
	}	
	
.wrexbox img.opacity:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	}
.comment{overflow:hidden;clear:both;width:100%;margin:10px 0}
.comment img.avatar{float:left;border:10px solid #eaeaea;width:50px;height:50px}
.comment .message{-moz-border-radius:2ex;-webkit-border-radius:2ex;width:100%;float:left;margin-left:10px;background:#eaeaea;padding:10px}
.comment .message .info{margin-bottom:10px;overflow:hidden;color:#A0A0A0}
.comment .message p{font-size:12px}
blockquote {margin:0;width:90%;background:#FFF;padding:10px;border:1px solid #aaa;font-size:12px;font-style:italic}
ul.list{list-style:circle;line-height:18px;margin:0 0 0 10px;padding:5px}
fieldset{width:100%;background:#FFF;margin:10px auto;padding:15px; float:center;}
legend{font-size:13px;font-weight:700;margin-left:5px;padding:0 10px}
fieldset{width:95%;background:#FFF;border:1px solid #AAA;-moz-border-radius:1ex;-webkit-border-radius:1ex;margin:10px auto;padding:15px}
legend{font-size:13px;font-weight:700;margin-left:5px;padding:0 10px}
fieldset div{overflow:hidden;width:95%;margin:10px auto;padding:5px}
fieldset div.subForm{background:#FAFAFA;border:1px solid #A0A0A0;-moz-border-radius:3ex;-webkit-border-radius:3ex}
fieldset label{float:left;width:25%;font-size:12px;border-right:1px solid #aaa;margin-right:30px}
fieldset input,fieldset textarea{float:left;border:1px solid #CCC;color:#000;font-size:11px;font-family:Verdana;width:auto;background:#fff;padding:5px}
fieldset select{float:left;border:1px solid #CCC;color:#000;font-size:11px;font-family:Verdana;margin-left:1px;padding:4px}
fieldset input.submit,fieldset input.checkbox,fieldset input.radio{width:auto}
fieldset input.submit{background:#eee}
table.wrextable {font-size: 20.5px;}
table.wrextable{border:1px solid #C4C4C4;width:100%;border-right-width:2px;border-bottom-width:2px;margin:10px auto}
table.wrextable td{background:#FAFAFA;padding:7px}
table.wrextable td img{padding:3px}
table.wrextable td img:hover{background:#cfcfcf}
table.wrextable tr:hover td{background:#EFEFEF}
table.wrextable thead td{text-align:center;background:#8b0000;color:#fff;border-bottom:0px; }
table.wrextable thead {font-weight: bold;}
table.wrextable thead tr:hover td{background:#8b0000}
table..wrextable td {height: 50px;} 
table.wrextablea td{background:#FAFAFA;padding:7px}
table.wrextablea td img{padding:3px}
table.wrextablea td img:hover{background:#cfcfcf}
table.wrextablea tr:hover td{background:#edcf39}
table.wrextablea thead td{text-align:center;background:#8b0000;color:#fff;border-bottom:0px; }
table.wrextablea thead tr:hover td{background:#084B8A}
table.wrextable2 td{background:#ffffff;padding:7px}
table.wrextable2 td img{padding:3px}
table.wrextable2 td img:hover { background:#edcf39; }
table.wrextable2 tr:hover td { background:#ffffff; }
table.wrextable2 thead td{text-align:center;background:#ffffff;color:#fff;border-bottom:0px; }
table.wrextable2 thead tr:hover td{background:#ffffff}
table.wrextable3{border:1px solid #C4C4C4;width:95%;border-right-width:2px;border-bottom-width:2px;margin:10px auto}
table.wrextable3 td{background:#ffffff;padding:7px}
table.wrextable3 td img{padding:3px}
table.wrextable3 td img:hover{background:#edcf39}
table.wrextable3 tr:hover td{background:#ffffff}
table.wrextable3 thead td{text-align:center;background:#ffffff;color:#fff;border-bottom:0px; }
table.wrextable3 thead tr:hover td{background:#ffffff}
table.wrextable4{border:1px solid #ffffff;width:95%;border-right-width:2px;border-bottom-width:2px;margin:10px auto}
table.wrextable4 td{background:#ffffff;padding:7px}
table.wrextable4 td img{padding:3px}
table.wrextable4 td img:hover{background:#ffffff}
table.wrextable4 tr:hover td{background:#ffffff}
table.wrextable4 thead td{text-align:center;background:#ffffff;color:#fff;border-bottom:0px solid #222}
table.wrextable4 thead tr:hover td{background:#ffffff}
.wrexlist{margin:5px 0px 5px 0px;clear:both;border:0px solid #cbcbcb;padding:10px;overflow:hidden}
.wrexlist .left{margin-right:10px}
.wrexlist .right{float:left}
.wrexlist h3{font-size: 13px;margin:0;padding:0;margin-bottom:10px}
.wrexlist div{margin-bottom:5px}



