.background{
    background-color: var(--background-color);
}

#state-grid{
    padding-bottom: 50px;
    width: 100%;
    height: inherit;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background: none;
}

.state-card{
    width: 85%;
    height: auto;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 3px 3px rgba(0,0,0,0.08);
    border-radius: 5px;
    margin-top: 15px;
}
.state-heading{
    background: #41646bb8;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.state-card h5{
    margin: 0;
    padding: 10px;
}

#school-grid{
    padding: 15px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.city-centre-group{
    padding-top: 10px;
}

.school-centre-container{
    height: 160px;
    overflow: auto;
    width: 350px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 3px 3px rgba(0,0,0,0.08);
    border-radius: 4px;
    border: 1px solid #ffea9c;
}

.school-centre-container img{
    width: 50px;
    height: 50px;
    margin: 5px;
    margin-top: 15px;
}

.school-cente-profile{
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
}
.school-cente-info{
    padding-left: 10px;
}

@media (max-width : 550px){
    .school-centre-container{
        width: 90%;
    }
    #school-grid{
        padding: 15px;
        height: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}



.city-pointer {
    width: 200px;
    height: 45px;
    position: relative;
    background: #ffd5997d;
}
/*.city-pointer:after {*/
    /*content: "";*/
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 0;*/
    /*width: 0;*/
    /*height: 0;*/
    /*border-left: 20px solid var(--background-color);*/
    /*border-top: 20px solid transparent;*/
    /*border-bottom: 20px solid transparent;*/
/*}*/
.city-pointer:before {
    content: "";
    position: absolute;
    right: -21px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 21px solid #ffd5997d;
    border-top: 22px solid transparent;
    border-bottom: 23px solid transparent;
}
.city-pointer h5 {
    color: var(--primary-color);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.4rem;
}
.school-cente-info p {
    text-align: left;
    font-size: small;
    margin-top: 0
}
.school-centre-container a {
    padding-left: 15px;
    width: fit-content;
}
.school-centre-container a>i {
    margin:0 5px 0 0 ;
}
