.xscores-widget .custom-select .text-wrapper {
    background-color: #EF4144;
    padding: 12px 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    transition: all .3s ease-out;
    cursor: pointer;
}

.xscores-widget .custom-select .text-wrapper .text,
.xscores-widget .custom-select .dropdown .item {
    color: #FFF;
    font-family: 'AeonikPro-Bold';
    font-size: 14px;
    font-weight: 700;
    line-height: 125%; /* 17.5px */
    letter-spacing: 0.28px;
    cursor: pointer;
}

.xscores-widget .custom-select .text-wrapper .chevron {
    position: relative;
    width: 17px;
    flex: 0 0 17px;
    height: 15px;
}

.xscores-widget .container {
    gap: 10px;
    align-items: center;
}

.xscores-widget .swiper-wrapper-cont {
    flex: 1
}

.xscores-widget .custom-select .text-wrapper .chevron::before,
.xscores-widget .custom-select .text-wrapper .chevron::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    height: 2px;
    width: 50%;
    background-color: #fff;
    transition: all .3s ease-in-out;
}

.xscores-widget .custom-select .text-wrapper .chevron::after {
    left: 2px;
    transform: rotate(45deg);
}

.xscores-widget .custom-select .text-wrapper .chevron::before {
    left: calc(50% - 2px);
    transform: rotate(-45deg);
}

.xscores-widget .container > img {
    width: 133px;
    flex: 0 0 133px;
    height: 39px; 
}

.xscores-widget {
    width: 1110px;
    margin-left: auto;
    background-color: #000;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.xscores-widget .swiper-slide {
    background-color: #000;
    gap: 25px;
    padding: 0;
}

.xscores-widget .swiper-wrapper {
    gap: 25px;
}

.xscores-widget .swiper-slide .item {
    gap: 8px;
}

.xscores-widget .swiper-slide .item .text {
    color: rgba(255, 255, 255, 0.50);
    font-family: 'AeonikPro-Regular';
    font-size: 14px;
    font-weight: 400;
    line-height: 125%; /* 17.5px */
    letter-spacing: 0.42px;
}

.xscores-widget .custom-select .dropdown {
    position: absolute;
    top: 100%;
    background-color: #ef4243;
    z-index: 10;
    width: 100%;

    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
}

.xscores-widget .custom-select.on .text-wrapper {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.xscores-widget .custom-select.on .dropdown {
    max-height: 500px;
    transition: max-height .3s ease-out .3s;
}

.xscores-widget .custom-select.on .text-wrapper .chevron::after {
    left: 7px;
}

.xscores-widget .custom-select.on .text-wrapper .chevron::before {
    left: calc(50% - 7px);
}

.xscores-widget .custom-select .dropdown .item {
    padding-inline: 14px;
}

.xscores-widget .custom-select .dropdown .item:not(:last-child) {
    padding-bottom: 4px;
}

.xscores-widget .custom-select .dropdown .dropdown-wrapper {
    padding-bottom: 14px;
}

@media screen and (max-width: 1180px) {
    .xscores-widget {
        width: 100%;
    }
}

