.estimation-top-con {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.estimation-top-con .estimation-fields{
    display: flex;
    gap: 15px;
    width: 100%;
}
.estimation-top-con .estimation-action{
    display: flex;
    gap: 20px;
}
.estimation-top-con .field-item {
    width: 100%;
}
.estimation-top-con .field-item label{
    font-weight: 700;
    color: var(--e-global-color-primary);
    font-size: 16px;
    margin-bottom: 8px;
}
.estimation-top-con .field-item select {
    height: 61px;
    border-radius: 30px;
    padding-left: 25px;
    border: none;
    font-size: 16px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    
}
.estimation-top-con .field-item select{
    padding: 0 30px 0 25px;
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 93% 27px !important;
    background-image: url(../img/dropdown-arrow.png) !important;
}
.estimation-top-con .estimate-btn {
    font-size: 18px;
    min-width: 340px;
    height: 65px;
    line-height: 65px;
    font-weight: 700;
    text-align: center;
    border-radius: 32.5px;
    position: relative;
    display: inline-block;
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    padding-right: 35px;
}

.estimation-top-con .estimate-btn i {
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-primary);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    position: absolute;
    right: 11px;
    top: 11px;
    transform: rotate(-45deg);
}
.estimation-top-con .estimate-btn:hover {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-white);
}
.estimation-top-con .valvoro-zip-result{
    text-align: center;;
}

.estimation-top-con .price-box {
    border: 2px dashed #cbd9f1;
    min-width: 380px;
    border-radius: 40px;
    padding: 10px 20px;
    text-align: center;
}
.estimation-top-con .price-box span.estimate-price {
    font-size: 16px;
    font-weight: 400;
    color: var(--e-global-color-primary);
    top: -7px;
    position: relative;
}
.estimation-top-con .price-box span#price {
    font-size: 40px;
    line-height: 40px;
    font-weight: 800;
    margin-left: 30px;
    color: #2a5aa2;
}

@media screen and (max-width: 1366px) {
    .estimation-top-con .field-item select {
        padding: 0 18px 0 18px;
        font-size: 16px;
    }
    .estimation-top-con .estimate-btn{
        height: 61px;
        line-height: 61px;
    }
    .estimation-top-con .price-box {
        min-width: 350px;
    }
}
@media screen and (max-width: 1024px) {
    .estimation-top-con {
        gap: 20px;
    }
     .estimation-top-con .field-item select {
        padding: 0 18px 0 18px;
        font-size: 14px;
    }
    .estimation-top-con .estimate-btn{
        height: 57px;
        line-height: 57px;
        min-width: 310px;
    }
    .estimation-top-con .price-box {
        min-width: 300px;
    }
    .estimation-top-con .price-box span.estimate-price {
        top: -2px;
    }
    .estimation-top-con .price-box span#price {
        font-size: 30px;
        line-height: 30px;
        margin-left: 11px;
    }
    .estimation-top-con .estimate-btn i {
        right: 6px;
        top: 7px;
    }
}
@media screen and (max-width: 575px) {
    .estimation-top-con .estimation-fields
    {
        flex-direction: column;
    }
    .estimation-top-con .estimation-action {
        flex-direction: column;
    }
    .estimation-top-con .estimate-btn {
        height: 57px;
        line-height: 57px;
        min-width: 280px;
        width: 280px;
        font-size: 14px;
    }
    .estimation-top-con .price-box {
        min-width: 280px;
        width: 280px;
    }
    .estimation-top-con .price-box span#price {
        font-size: 22px;
        line-height: 22px;
    }
        .estimation-top-con .price-box span.estimate-price {
        top: 0px;
    }
}