





/*Buttons CSS Starts*/
.steps-bg .button{
    white-space: normal;
    min-height: 45px;
    border-radius: 40px;
    font-size: 17px!important;
    font-weight: 600;
    padding: 10px 20px;
    height: auto;
    border: none;
    line-height: 10px;
    align-items: center;
    display: inline-flex;
    justify-content: flex-start;
    position: relative;
    vertical-align: top;
    overflow: hidden;
    cursor: pointer;
}
.steps-bg .icon{
    height: 20px;
    width: 20px;
    margin-right: 4px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}
.steps-bg .icon.rightIcon{
    margin-left: 4px !important;
    margin-right: 0px;
}
.steps-bg .icon svg {
    width: 20px;
    height: 20px;
    background-color: transparent;
    stroke-width: 0;
    pointer-events: none;
}
.steps-bg .button .icon svg{
    fill: #fff;
    stroke: #fff;
}
.steps-bg .button-primary{
    background: #185abc;
    color:#fff;
    box-shadow: 0 1px 4px 0 #185abc33;
}
.steps-bg .button.is-blicked:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(90deg,hsla(0,0%,100%,.1) 10%,hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.6));
    width: 20px;
    -webkit-transform: skewX(-45deg);
    transform: skewX(-45deg);
    left: -20%;
    transition: all .6s ease;
    animation-name: blick;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}
/*Animations*/
@-webkit-keyframes blick {
    15%,
    to {
        left: 110%;
    }
}
@keyframes blick {
    15%,
    to {
        left: 110%;
    }
}
/*==============
Steps CSS Starts
================*/
.steps-bg {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}
.steps-pt {
    width: 500px;
    height: 450px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 0px 1px #dfdfdf;
    border-radius: 15px;
}
.steps {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    transform: translateX(100%);
    transition: .3s all ease-out;
    position: absolute;
}
.steps.left{
    transform: translateX(-100%) !important;
    transition: .3s all ease-in;
}
.steps.active {
    transform: translateX(0%) !important;
    transition: .3s all ease-in;
}
.step-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    width: 90%;
    float: left;
    margin-top: 20px;
    padding: 0 5%;
    color: #000;
}
.steps-bg .choices{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.steps-bg .choices .choice{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.steps-bg .pills {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.steps-bg .pills .pill {
    padding: 5px 15px;
    border-radius: 50px;
    border: 2px solid #ececec;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    float: left;
    margin: 5px 7px;
}
.steps-bg .pills .pill.active{
    border: 2px solid #eaf0fe;
    background-color: #eaf0fe;
}
.steps-bg .choices .choice .choice-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 2px solid #ececec;
    cursor: pointer;
}
.steps-bg .pills .pill .pill-icon{
    width: 20px;
    height: 20px;
    margin-right: 4px;
}
.steps-bg .choices .choice.active .choice-icon{
    background-color: #eaf0fe;
    border: 2px solid #eaf0fe;
    cursor: pointer;
}
.steps-bg .choices .choice span{
    margin-top:5px;
    font-weight: 500;
    color: #000;
}
.steps-bg .choices .choice.active span,
.steps-bg .pills .pill.active span{
    color: #185abc;
}
.steps-bg .choices .choice .choice-icon svg {
    fill: #000;
    width: 35px;
    height: 35px;
}
.steps-bg .pills .pill .pill-icon svg{
    width: 20px;
    height: 20px;
    color: #000;
}
.steps-bg .choices .choice.active .choice-icon svg,
.steps-bg .pills .pill.active .pill-icon svg {
    fill: #185abc;
}

/*=====================
Range Slider CSS Starts
=======================*/

.steps .multi-range-slider {
    width: 85%;
    margin: 15px auto;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
}
.steps input[type=range] {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 2;
    height: 7px;
    width: 100%;
    opacity: 0;
    left: 0;
}
.steps .slider {
    position: relative;
    z-index: 1;
    height: 7px;
    margin: 0 15px;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .4s;
}
.steps .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 2px;
    background-color: #fff!important;
    transition: .4s;
}
.steps .slider>.track {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #ececec;
}
.steps .slider>.range {
    position: absolute;
    z-index: 2;
    left: 25%;
    right: 25%;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #185abc;
}

.steps .slider>.thumb {
    position: absolute;
    z-index: 5;
    width: 23px;
    height: 23px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    border-color: #185abc;
    background-color: #fff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.steps .slider>.thumb.left {
    left: 25%;
    -webkit-transform: translate(-3px,-9px);
    transform: translate(-3px,-9px);
}
.steps .slider>.thumb.right {
    right: 25%;
    -webkit-transform: translate(3px,-9px);
    transform: translate(3px,-9px);
}
.steps .slider .tooltip {
    position: absolute;
    color: #000;
    z-index: 4;
    top: 5px;
    min-width: 65px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    -webkit-tap-highlight-color: transparent;
}

.steps .slider .tooltip.left {
    -webkit-transform: translate(-25px,10px);
    transform: translate(-25px,10px);
}
.steps .slider .tooltip.right {
    -webkit-transform: translate(25px,10px);
    transform: translate(25px,10px);
}

/*===================
FORM INPUT CSS STARTS
=====================*/
.steps-bg .form {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.steps-bg .form .form-group {
    width: 75%;
    display: flex;
    position: relative;
    margin: 0 auto;
}
.steps-bg .form .form-group svg {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 10px;
    top: 11px;
    fill: #185abc;
}
.steps-bg .form .form-group #input-close {
    left: auto;
    right: 10px;
    top: 17px;
    fill: #185abc;
    width: 15px;
    height: 15px;
    cursor: pointer;
    display: none;
}
.steps-bg .form.horizontal-fieldss .form-group #input-close {
    left: auto !important;
    right: 10px !important;
    top: 55px !important;
    display: none;
}
.steps-bg .form.horizontal-fieldss,
.steps-bg .form-group #input-close.showcross {
    display: block !important;
}
.steps-bg .form.horizontal-fieldss .form-group {
    flex-direction: column !important;
    width: calc(50% - 40px) !important;
    margin: 0 20px !important;
    display: block;
    float: left;
}
.steps-bg .form.horizontal-fieldss .form-group label {
    padding-left: 30px;
    padding-top: 2px;
    margin-bottom: 15px;
    float: left;
}
.steps-bg .form.horizontal-fieldss .form-group svg {
    left: 0 !important;
    top: 0 !important;
    fill: #185abc;
}
.steps-bg .form.horizontal-fieldss .form-group svg#max-price{
    transform: rotate(-180deg) !important;
} 
.steps-bg .form.horizontal-fieldss .form-group input {
    width: 100% !important;
    padding: 15px !important;
    display: block;
    float: left;
    box-sizing: border-box;
}
.steps-bg .form .form-group .alert {
    display: none;
    text-align: center;
    font-size: 10px;
    margin-top: -5px;
    margin-bottom: 0;
    color: red;
    position: absolute;
    right: 0px;
    top: 50px;
}
.steps-bg .form .form-group input {
    width: 100%;
    padding: 15px 45px 15px 40px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 1px 5px 1px #e5d9d9;
    border: 0 solid;
    margin-bottom: 20px;
    max-height: 46px;
}
.steps-bg .form .form-group input:focus {
    outline: none !important;
}
.steps-bg .form .form-group input.focus-visible{
    outline: none;
}
.steps-bg .alert-validate .alert{
    display: block !important;
}
/*=======================
THANKS MESSAGE CSS STARTS
=========================*/
.steps-bg .thanks{
    text-align: center;
}
.steps-bg .thanks p{
    display: block !important;
    clear: both !important;
}
.steps-bg .thanks svg{
    width: 80px;
    height: 80px;
    fill: #185abc;
}

/*===================
PAGINATION CSS STARTS
=====================*/
.steps-pagination {
    width: 90%;
    position: relative;
    top: 30px;
    margin: 0 auto;
    z-index: 1;
}
.steps-bg .pagination-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.steps-bg .pagination-list li{
    background-color: rgba(185, 167, 167, 0.6);
    height: 4px;
    width: 100%;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
}
.steps-bg .pagination-list li.active{
    background-color: #185abc;
}
.steps-bg .step-4.active{
    z-index: 99;
}
@media(max-width:640px){
    .steps-pt{
        width: 100% !important;
        min-width: 350px;
        margin: 0 auto !important;
        box-shadow: 0px 0px 0px 0 #dfdfdf !important;
    }
    .steps-bg .form .form-group{
        width: 85% !important;
    }
    .steps-bg .pills {
        width: 90% !important;
    }
    .step-title{
        font-size: 24px;
        line-height: 28px;
        width: 95%;
        padding: 20px 5px 0 5px;
        margin: 0 auto;
    }
}