.common_modal {
    padding: 20px;
    overflow: hidden;
}

.common_modal .uk-modal-dialog {
    width: 100%;
    max-width: 1240px !important;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.modal_container .modal_header {
    background: var(--black);
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.modal_container .modal_header .modal_close button {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 20px !important;
}

.modal_container .modal_header .modal_close svg {
    transform: scale(2.5);
}

.modal_container .player_bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.modal_container .white_filter:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
}



.modal_container .modal_content {
    padding: 40px 20px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.modal_container .teams_cat li span {
    background: var(--black);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    display: block;
    text-align: center;
    font-weight: bold;
}


.modal_main_text .name {
    background: var(--red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    display: block;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}


.team_name .modal_main_text {
    height: 100%;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--red);
    background-image: url(../../img/ssc_logo.svg);
    background-size: auto 90%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}

.team_name .modal_main_text .name {
    background: none;
    margin-bottom: 0;
}


.appeal_point_container {
    position: relative;
}

.appeal_point_container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: var(--gray01);
    z-index: -1;
    margin-left: calc(-50vw + 50%);
}

.appeal_point_container .appeal_card {
    background: white;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.appeal_point_container .appeal_card .title {
    background-color: var(--black);
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-align: center;
}


.appeal_point_container .appeal_card .content{
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
} 

.appeal_point_container .appeal_card .content .img{
    margin-top: auto;
    padding-top: 15px;
}




@media screen and (max-width: 959px) {
    .modal_container .teams_cat li span{
        padding: 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 640px) {
    .modal_container .modal_header{
        padding: 20px 30px;
    }
    .modal_container .modal_header .modal_title{
        font-size: 2rem;
    }
    .modal_container .modal_header .modal_close svg{
        transform: scale(2);
    }
    .modal_container .modal_header .modal_close button{
        right: 10px!important;
    }

    .modal_main_text .name{
        font-size: 1.8rem;
    }
}