/* перенесенные / отмененные матчи */

.postponed-matches {
    width: 100%;
    margin: 10px 0 0;
}

.postponed-matches__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
    border-bottom: 1px solid #d0d0d0;
    cursor: pointer;
    position: relative;
}

.postponed-matches__heading-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.postponed-matches .postponed-matches__heading .postponed-matches__heading-icon {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.postponed-matches.is-active .postponed-matches__heading .postponed-matches__heading-icon {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
}

.postponed-matches__heading .icn {
    margin-right: 0.5rem;
    transition: transform .2s ease-in-out;
}

.postponed-matches__total-items {
    height: 18px;
    width: 18px;
    background: #5873a4;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 85%;
}

.postponed-matches__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-in-out;
}

.postponed-matches:after {
    content: "";
    position: absolute;
    width: 568px;
    height: 0;
    background: linear-gradient(270deg,#D9F2FF,#5873a4);
    transition: height .2s ease-in-out;
}

.postponed-matches:hover:after,
.postponed-matches.is-active:after {
    height: 1px;
}

.postponed-matches.is-active .postponed-matches__heading {
    border: 0;
}

.postponed-matches.is-active .postponed-matches__content {
    max-height: 200rem;
}

.postponed-matches .postponed-matches__content ul.match-list
{
    clear: both;
    margin-top: 0;
    margin-bottom: 5px!important;
}

.postponed-matches .postponed-matches__content .match-list>li,
.postponed-matches .postponed-matches__content .match-list>li:last-child {
    border-bottom: 1px solid #ddd;
}

.postponed-matches .postponed-matches__content .match-list .match-row {
    position: relative;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #242424;
    text-decoration: none;
    position: relative;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .overview
{
    display: block;
    min-height: 10px;
    width: 80%;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .teams
{
    width: 100%;
    margin-right: -4px;
    position: relative;
    font-size: 12px;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture span,
.postponed-matches .postponed-matches__content .match-list .match-row .fixture .teams time
{
    display: inline-block;
    vertical-align: middle;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .teams .team:first-of-type
{
    text-align: right;
    padding-left: 0;
    float: left;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .teams .team
{
    width: 50%;
    position: relative;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .teams .team .teamName:first-of-type
{
    padding-right: 55px;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .teams .team .teamName
{
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 1em;
    line-height: 2.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .teams .team .teamName:not(:first-of-type)
{
    padding-left: 55px;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .overview time
{
    line-height: 2em;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture time
{
    background: #a0a0a0;
    color: #fff;
    font-size: 1em;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture time
{
    width: 3em;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -1.5em;
    margin-top: -1em;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .team:first-of-type .badge
{
    right: 27px;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .team:not(:first-of-type) .badge
{
    left: 27px;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .badge
{
    position: absolute;
    top: 50%;
    margin-top: -10.5px;
    width: 20px;
    height: 20px;
    display: block;
}

.postponed-matches .postponed-matches__content .match-list .match-row .fixture .info {
    cursor: default;
    height: 18px;
    width: 18px;
    background: transparent;
    border-radius: 100%;
    border: 1px solid #5873a4;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 85%;
    margin-right: 8px;
}
