.isp-wrapper {
    width: 100%;
    margin:50px 0px;
}

/* Cities */
.isp-cities {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}

.isp-city {
    position: relative;
    display: inline-block;
    padding: 15px 17px;
    border: 1px solid transparent  !important;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
    background-color: #eee !important;
    border-radius: 4px !important;
    font-size: 18px;
    color: #777777;
    transition:all 0.5s;
}
.isp-city:hover{
    color:#000;
}
.isp-city.active {
    border-color: #06235f  !important;
    background-color: #06235f !important;
    color: #fff  !important;
}

/* Layout */
.isp-body {
    display: flex;
    gap: 20px;
}

/* Categories */
.isp-categories {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.isp-category {
    cursor: pointer;
    padding: 14px 10px;
    background: #eeeeee !important;
    color: #000;
    border-radius: 4px;
    font-size: 17px;
    transition:all 0.5s;
}
.isp-category:hover{
    color:#000;
}
.isp-category.active {
    background-color: #06235f !important;
    color: #fff;
}

/* Packages */
.isp-packages {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.isp-card ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    transition: 0.3s;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #f26b21;
}
.isp-card ul li{
    border-bottom: 1px solid #eee;
    padding: 10px 15px;
    text-align: center;
}
.isp-card ul li.header{
    background-color: #06235f;
    color: white;
    font-size: 25px;
}
.isp-card .price .grey {
    background-color: #eee;
    font-size: 20px;
}
.price {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price .header {
    font-weight: bold;
    font-size: 18px;
}







.isp-wrapper {
    position: relative;
}
.isp-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.isp-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: isp-spin 1s linear infinite;
}

@keyframes isp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width:1024px){
    .isp-packages{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:768px){
    .isp-packages{
        grid-template-columns: 1fr;
    }
}

@media (max-width:620px){
    .isp-body{
      flex-direction: column;
    }
    .isp-categories{
        width:100%;
    }
}
