@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
body{
    margin:0;
    background-color: #f4f5f7!important;
    font-family: 'Montserrat', sans-serif;
    color:#333;
    font-weight: 700;


}
html{
    /*height:100%;*/
    display: flex;
    flex-direction: column;

    justify-content: center;
}
.input_wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items:center;
}
.model_input{
        height: 25px;
    font-size: 25px;
}
.box{
    border: 2px solid rgba(255,255,255,0);
    cursor:pointer;
    width: 25%;
    height:220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 6px 6px 10px rgba(0,0,0,.038);
}

.box:hover,.box.selected_problem{
    /*background: #bdc3c7;*/
        border: 2px solid var(--main-bg-color);

}
.box-name{
    text-align:center;
}

.box-small{
    width:20%;
}
.box-tiny{
    width:16%;
}
.box-image{
    height:100px;
}
.frame-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 80%;
    margin: 0 auto 50px auto;
    flex-wrap: wrap;
    gap: 25px;
    /*min-height:340px;*/

}
.steps{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 50%;
    margin: 0 auto;
    z-index: 1;
}
.step{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.progress-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
    margin-top: 60px;

}

.circle{
    background-color: #fff;
    border: 1px solid #868686;
    color:#fff;
    padding: 5px;

    border-radius: 100px;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 1;
}
.line{
    width: 40%;
    height: 0.7px;
    display: block;
    position: absolute;
    background-color: #868686;
    top: 13px;


}
.completed{
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
    width:0;
    background-color: var(--main-bg-color);
    height: 2px;
}
.checked{
    cursor:pointer;
}
.next-button-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.confirm-problems,.select-location,.focusLocation,.send_data,.call_now_button,.confirm-model{
    border: none;
    width: 200px;
    height: 40px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: var(--main-bg-color);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 10px auto 0;
}

#map{
    height: 600px;
    width: 75%;
    display: none;
}

.custom-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;  /* Width of the pin */
    height: 30px; /* Height of the pin */
    background-color: #333; /* Background color of the pin */
    border-radius: 50% 50% 50% 0; /* Rounded top and flat bottom */
    transform: rotate(-45deg); /* Rotate to give pin shape */
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Ensures the content stays within the marker */
}

.custom-marker i.fa-gear {
    color: #fff;            /* Color of the gear icon */
    font-size: 16px;        /* Adjust size as needed */
    transform: rotate(45deg); /* Counter-rotate to keep the icon upright */
}

.custom-marker::before {
    content: "";
    position: absolute;
    top: 30px; /* Position of the pin's pointed end */
    left: 50%;
    transform: translateX(-50%);
    width: 14px;  /* Width of the pointed end */
    height: 14px; /* Height of the pointed end */
    border-radius: 50%;
    background-color: #333; /* Color of the pointed end */
}

.location-wrapper{
    display: flex;
    gap:20px;
    width:100%;
}
.location-sidebar{
    max-width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    max-height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.location-box-wrapper,.search-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 6px 6px 10px rgba(0,0,0,.038);
    padding:10px;
    width: 90%;
}
.locationAddress{
    font-size: 12px;
    font-weight: 500;
}
#findClosest{
    border: none;
    width: 200px;
    height: 40px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 10px auto 0;
}
#postalCode{
    height: 30px;
    width: 220px;
    border: none;
    border-radius: 5px;
    background-color: #f4f5f7;
    padding-left: 5px;
}
.form-background{

    width: 100%;
    /*height:220px;*/
    display: flex;

    gap:10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 6px 6px 10px rgba(0,0,0,.038);
}
.contact-form-wrapper{
    border-right:0.5px solid #e2e2e2;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 10px;
}
.contact-form-headline{
    font-size:18px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-top:20px;
    /*position: relative;*/
}
.underline{
    content: "";
    display: block;
    width: 124px;
    height: 3px;
    background: var(--main-bg-color);

    margin: 7px auto;
}
.location_address,.summary-form-wrapper div{
    font-weight: 100;

    margin-bottom: 20px;
}
.box-selected-shop{
    display: flex;
    margin: 0 auto 20px;
    min-width: 300px;
    text-align: center;
    height: 200px;
    vertical-align: middle;
    width: 25%;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #f4f5f7;
    padding:10px;
    border-radius: 5px;
    box-shadow: 6px 6px 10px rgba(0,0,0,.038);
}
.radio-form,.radio-form-express-service{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;

}
.radio-form input,.radio-form-express-service input{
    width: 25px;
}
.fields-wrapper{
    display: flex;
    flex-direction: column;
    margin-top: 30px;

    justify-content: center;
    align-items: center;

}
.fields-wrapper input{
    height: 30px;
    border-radius: 5px;
    width: 70%;
    padding-left:5px;
    border:1px solid var(--main-bg-color);
}
.fields-wrapper textarea{
    width: 70%;
    border-radius: 5px;
    padding-left:5px;
    border:1px solid var(--main-bg-color);
}
@media only screen and (max-width: 600px) {
    .logo{
        width:120px !important;
    }
    .frame-wrapper{
        width:95%;
    }
    .box{
        min-width: 300px;
    }
    .line{
        width: 70%;
    }
    .steps{
        width:90%;
    }
    .step{
        font-weight: 100;
    }
    .location-wrapper{
        flex-wrap: wrap;
    }
    .location-sidebar{
        width: 100%;
        max-width:100%;
    }
    #map{
        width:100%;
    }
    .form-background{
        flex-wrap: wrap;
    }
    .result-summary{
        padding-left: 10px;
        padding-right: 10px;
    }
    .box-selected-shop{
        min-width: 250px;
    }
}