.custom-slider .ui-slider-handle {
    border: 2px solid #044370;
    background: #044370;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.custom-slider .ui-widget-header {
    background-color: black;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -0.7em;
}
.calculator-progress-bar {
    width: 100%;
    height: 10px;
    background-color: #dbdbdb;
}

.calculator-progress-bar .progress-bar__fill {
    height: 100%;
    background-color: #c9424d;
    transition: width 0.3s ease;
    position: relative;
}
.progress-tooltip {
    position: absolute;
    top: -30px;
    left: 100%;
    transform: translateX(-50%);
    background-color: #044370;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}
.mc-multistep-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: #eee;
    padding: 20px;
}

.mc-multistep-form-wrap .step-heading h2 {
    color: #c9424d !important;
    font-size: 33px;
    font-weight: 700;
}

.mc-multistep-form-wrap .step-heading {
    text-align: center;
    margin-bottom: 35px;
}

.mc-multistep-form-wrap .next-btn,.mc-multistep-form-wrap button {
    text-align: center;
    background: #ff8201;
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    border-color: #ff8201;
    color: #fff;
}
.mc-multistep-form-wrap .next-btn.disabled,#mc-calculator-submit.disabled{
    pointer-events: none;
    opacity: 0.4;
}
.mc-multistep-form-wrap .next-btn a,.mc-multistep-form-wrap .next-btn a:hover {
    color: #fff;
}
.mc-multistep-form-wrap .mc-step{
    display: none;
}
.mc-multistep-form-wrap .mc-step.active{
    display: block;
}
.mc-multistep-form-wrap .step-option {
    text-align: center;
}
.mc-multistep-form-wrap .form-group {
    max-width: 60%;
    margin: 0 auto;
    position: relative;
}
.form-group label {
    font-weight: 700;
}
.info-message {
    color: #b30029;
    margin-bottom: 35px;
    background: #ffe5e5;
    padding: 10px 20px;
}
.error-message {
    color: red;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}
.mc-multistep-form-wrap  input,.mc-multistep-form-wrap .step-option .form-group select{
    width: 100%;
    text-align: center;
    border: 2px solid #423d3d !important;
}
.mc-multistep-form-wrap .step-option .form-group select {
    width: 100%;
    height: 50px;
    padding: 10px !important;
    background: #fff;
}
.mc-multistep-form-wrap  input::placeholder{
    text-transform: uppercase;
}
.mc-multistep-form-wrap .form-group.zip-field{
    position: relative;
    max-width: 30%;
    margin: 0 auto;
}
.zip-field i,.phone-field i {
    position: absolute;
    right: 10%;
    top: 50%;
    font-size: 24px;
}
.phone-field i {
    top: 18% !important;
}
.zip-loader,.phone-loader{
  width: 20px;
  animation: rotation 2s infinite linear;
}
.zip-success,.phone-success {
    color: #3cde07;
}
.zip-failed,.phone-failed {
    color: #ff0e0e;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}
.calculator-header{
    margin-bottom: 30px;
}
.calculator-header section.container-wrap.main-color {
    background: #eee;
}
.calculator-header section.container-wrap.main-color .calculator-header-logo img {
    max-width: 340px;
}
.calculator-header .calculator-header-logo {
    margin-right: 6%;
}
.calculator-header .calculator-header-phone a {
    font-size: 23px;
    color: #131c43 !important;
    font-weight: 700;
}
.prev-btn {
    display: inline-block;
}
.slider-value {
    margin-bottom: 15px;
}
.info-text figure {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text figure img {
    max-width: 180px;
    margin-right: 12px;
}

.info-text {
    margin-top: 20px;
}

.disclosure {
    max-height: 65px;
    overflow-y: overlay;
    border: 2px solid #ddd;
    padding: 10px;
    margin-top: 30px;
    font-size: 13px;
}
.table-wrap table {
    border: 2px solid #131c43;
    border-collapse: collapse;
    width: 100%;
}

.table-wrap table tr.theading {
    background: #131c43;
    color: #fff;
}

.table-wrap table tr.theading th {
    padding: 15px;
}

.table-wrap table tr td {
    padding: 10px;
}

.table-wrap table tr:nth-child(even) {
    background: #dd333321;
}
@media (max-width:767px) {
    .wpb_single_image.vc_align_right.calculator-header-logo{
        text-align: center !important;
    }
    .calculator-header section.container-wrap.main-color .calculator-header-logo img {
        max-width: 265px;
    }
    .calculator-header .calculator-header-phone p {
        text-align: center !important;
    }
    .mc-multistep-form-wrap .step-heading h2 {
        font-size: 26px;
    }
    .mc-multistep-form-wrap .form-group {
        max-width: 90%;
    }
    .mc-multistep-form-wrap .form-group.zip-field {
        max-width: 65%;
    }
    .info-text figure img {
        max-width: 135px;
    }
    .table-wrap table tr td,.table-wrap table tr.theading th {
        font-size: 12px;
    }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}