.fit-single p {
    margin: 0;
}

.fit-single p,
.fit-single a {
    font-size: 24px;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
}

.fit-single a {
    margin-bottom: 5px;
    color: var(--blue-main);
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fit-single {
    background: #f5f5f5;
    padding: 50px;
    border-radius: 20px;
    position: relative;
}

.fit-grid h3 {
    margin-top: 0;
}

input.find-station {
    font-size: 32px;
    font-family: 'Comfortaa';
    padding: 35px 40px;
    width: 80%;
    border-radius: 20px;
    outline: none;
    border: 0px;
    background: #f5f5f5;
    margin: 20px 0 50px;
}
input.find-station::placeholder{
    color:var(--blue-main) ;
}

select#county-select {
    padding: 20px;
    border-radius: 20px;
    font-size: 24px;
    font-family: 'Comfortaa';
    width: 60%;
}

.floating-county {
    background: var(--blue-main);
    width: fit-content;
    color: #fff;
    padding: 7px 10px 6px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

button#load-more {
    display: block;
    margin: 50px auto;
}

.fitting-station-top .col-2 {
    display: grid;
    gap: 0;
    grid-template-columns: 53% 47%;
}

.container-main.fitting-station-top .left h3 {
    font-weight: 300;
    margin: 0 0 50px;
    color: var(--black-main);
}

.circle-core {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
}

.circle-border {
    width: 300px;
    height: 300px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(0, 149, 218);
    background: linear-gradient(0deg, rgba(0, 149, 218, 0.1) 33%, rgba(0, 149, 218, 1) 100%);
    animation: spin .8s linear 0s infinite;
}

.spinner-box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-bottom: 300px;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

h3.not-found {
    text-align: center;
    display: block;
    color: var(--black-main);
    padding: 100px 0;
    background: #f5f5f5;
    border-radius: 20px;
}

@media only screen and (max-width:1200px){
    .fit-grid {
        grid-template-columns: 49% 49%;
        gap: 20px;
    }
    .fit-single p,
    .fit-single a {
        font-size: 22px;
        line-height: 26px;
    }
}
@media only screen and (max-width:1024px){
    input.find-station,.select{
        width: 100%;
        height: 70px;
    }
    .fit-grid {
        gap:
         20px;
    }
    .fit-single {
        padding: 30px;
    }

}
@media only screen and (max-width:767px) {
    .fitting-station-top .col-2 {
        grid-template-columns: 1fr;
        gap: 30px;

    }

    .left {
        order: 2;
        text-align: center;
    }

    input.find-station {
        font-size: 24px;
        width: 100%;
        text-align: center;
        padding: 20px;
    }

    .fit-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fit-single {
        padding: 30px 25px;
    }

    .fit-single p,
    .fit-single a {
        font-size: 18px;
        line-height: 20px;
    }

    .fitting-station-top .right {
        display: none;
    }
    .circle-border {
        width: 100px;
        height: 100px;
    }

}