/* --------------------------- */
/*       Play-Cricket-Api      */
/* --------------------------- */

.play-api{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}
.play-api > *{
    box-sizing: border-box;
    flex: 1 0 100%;
}
.play-api > .play-api-title{
    width: 100%;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
    font-weight: bold;
    text-align: center;
    padding: 0.5rem 0;
    color: #00573d;
    margin-bottom: 1rem;
}
.play-api > .play-api-sub-title{
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    font-size: x-large;
    font-weight: bold;
    padding: 0.5rem 0 0.5rem 1rem;
    color: #000;
}
.play-api > .play-api-element{
    display: grid;
    grid-template-columns: 6rem calc(100% - 6rem);
    width: 100%;
    padding: 0.25rem;
    border: 1px solid #00573d;
    border-style: solid none solid none;
    margin-top: -1px;
    place-items: center;

    /* override the a element */
    text-decoration: none!important;
    color: black!important;
}
.play-api > .play-api-element:hover{
    background-color: rgba(0, 0, 0, 0.2);
}
.play-api > .play-api-element > .play-api-date{
    display: flex;
    flex-wrap: wrap;
}
.play-api > .play-api-element > .play-api-date > p{
    box-sizing: border-box;
    flex: 1 0 100%;
    text-align: center;
    font-size: medium;
}
.play-api > .play-api-element > .play-api-date > p:nth-child(1){
    font-weight: bold;
}
.play-api > .play-api-element > .play-api-content{
    width: 100%;
    text-align: center;
    font-size: large;
    font-weight: medium;
    font-size: medium;
}
.play-api > .play-api-element > .play-api-content > p:nth-child(1){
    font-weight: bold;
    font-size: x-large;
}
@media only screen and (max-width: 1024px) {
    .play-api > .play-api-element > .play-api-date > p{
        font-size: small;
    }
    .play-api > .play-api-element > .play-api-content{
        font-size: medium;
    }
    .play-api > .play-api-element > .play-api-content > p:nth-child(1){
        font-size: large;
    }
}