.stepper-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.stepper-progress {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    z-index: 0;
    height:3px !important;
}
.stepper-progress .bg-success{
    background:#85be3d !important;
}

.step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: gray;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.completed .circle {
    background: #85be3d;
    color: white;
}

.completed .circle::after {
    content: "✔";
    font-size: 20px;
    font-weight: bold;
}

.active .circle {
    background: #102e6c;
    color: white;
}

.step-title {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .circle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .step-title {
        font-size: 12px;
    }
}


.form-control-search{
    height: 30px !important;
    color:#102e6c !important;
    background: #85be3d;
    font-weight: bold;
    width:150px !important;
    
}

.bg-alt{
    background: #85be3d;
}

.form-control-search::placeholder {
    color: white;
    opacity: 1;
}

/* NAVIGÁCIÓS SÁV*/
.page-title-area{
    border-bottom: 2px solid #85be3d !important;
    border-top: 2px solid #85be3d !important;
}
/* A szűrő beállítása úgy hoyg a kiválasztott szűrők fixen a lap tetején, a választhatók
pedig töltsék a maradék magasságot.
*/
.woocommerce-sidebar-area{
    display: flex;
    flex-direction: column;
    height: 90vh;
}
#filters{
    flex: 1;
    overflow: auto;
    border-top: 4px solid gray;
    padding-top: 5px;
}



@media only screen and (max-width: 767px) {
    /* A navigációs sávon megjelenő kép */
    .comero-mobile-nav img{
        height:50px !important;
        width:auto !important;
    }    
    .comero-mobile-nav .logo{
        top:0px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* A navigációs sávon megjelenő kép */
    .comero-mobile-nav img{
        height:50px !important;
        width:auto !important;
    }      
    .comero-mobile-nav .logo{
        top:0px !important;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1199px)  {
    /* A navigációs sávon megjelenő kép */
    .navbar-brand img{
        height:60px;
        width:auto;
    }     
    .comero-mobile-nav .logo{
        top:0px !important;
    }
}

@media only screen and (min-width: 1200px)   {
    /* A navigációs sávon megjelenő kép */
    .navbar-brand img{
        height:80px;
        width:auto;
    }     
    
}