@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body{
    font-family: 'Poppins', sans-serif;
}

.container_x{
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
}

#header{
    box-shadow: 0px 4px 7px 0px rgb(106 90 205 / 26%);
}
#header h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 30px 0;
    color:#fff;
    background-color: #696088;
    padding: 10px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    box-shadow: 0 0 5px rgba(0 0 0/ 0.05);
}

#content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}
#content > p{
    width: 60%;
    line-height: 2;
}
#content > p > span{
    color: brown;
    font-weight: bold;
}
#content .address{
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px;    
}
#content .address > p > span{
    font-weight: bold;
}

.links > h3{
    text-transform: capitalize;
    font-size: 16px;
    color: #004085;
    margin-bottom: 20px;
}
.links > h3 > i{
    font-size: 10px;
    vertical-align: top;
    padding: 0 5px;
}
.links .track{
    padding-left: 60px;
}
.links .track h5{
    color: #004085;
}
.links .track h5 i {
    font-size: 12.5px;
    vertical-align: top;
}
.links .track .dots{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.links .track .dots ul{
    list-style-type: none;
}

.links .track .dots ul li{
    list-style-type: none;
}

.links .track .dots ul li i{
    color: #004085;
    
}

.tracks{
    padding-left: 30px;
}
.tracks .dots{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.tracks .dots ul{
    list-style-type: none;
}
.tracks .dots ul h5,
.tracks .dots ul h5 i,
.tracks .dots ul li i{
    color: #004085;
}
.tracks .dots ul li{
    padding-left: 30px;
    list-style-type: none;
}

#fee ul,
#time ul{
    list-style-type: none;
}
#fee ul li,
#time ul li{
    list-style-type: none;
}
#fee ul li i,
#time ul li i{
    font-size: 10px;
    color: #004085;
}
#fee ul li span,
#time ul li span{
    font-weight: bold;
}
#fee p span,
#time p span{
    font-weight: bold;
    color: brown;
}

#pay .title{
    font-size: 16px;
    text-transform: capitalize;
    background-color: #ddd;
    padding: 10px 15px;
    color: #666;
}
.table-striped>tbody>tr:nth-of-type(even){
    background-color: rgb(238, 238, 238);
}
.table-striped>tbody>tr:nth-of-type(odd){
    background-color: #625983;
}
table > tbody > tr:nth-of-type(odd) > th{
    color: #fff;
}
table > tbody > tr:nth-of-type(odd) > td{
    color: #fff;
}
#pay .table > thead > tr{
    background-color: #3b3b3b;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    width: 100%;
    color: #fff;
}
#pay .table > thead > tr > th{
    text-align: center;
}
#pay .table > tbody > tr > td{
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}
#pay .table > tbody > tr > td > a{
    text-decoration: none;
    color: #3b3b3b;
    transition: all 0.3s ease;
}
#pay .table > tbody > tr:nth-of-type(odd) > td > a{
    color: #fff;
    
}
#pay .table > tbody > tr:nth-of-type(odd) > td:hover > a{
    color: rgb(255, 205, 140);
}
#pay .table > tbody > tr:nth-of-type(even) > td:hover > a{
    color: brown;
}

.single-state-page b{
    color: #625983;
}
.single-state-page h3{
    color: #004085;
}
.single-state-page .content h2{
    color: #625983;
}
.single-state-page p{
    margin-bottom: 15px;
}
.single-state-page h4{
    cursor: pointer;
    margin: 0;
    padding: 10px 10px;
    width: fit-content;
}
.single-state-page h4:hover{
    color: darkblue;
    text-decoration: underline;
    background-color: #cee1e7a6;
}
.single-state-page h4 + ul {
    display: none;
  }
@media screen and (max-width: 767px) {
    #content{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 15px 0;
    }
    #content > p{
        width: 100%;
    }

    .links .track{
        padding-left: 0;
    }
    .links .track .dots{
        grid-template-columns: repeat(1, 1fr);
    }
    
    .table{
        font-size: 12px;
    }
    
    .tracks{
        padding-left: 0;
    }

    .tracks .dots{
        grid-template-columns: repeat(1, 1fr);
    }
}