.breadcrumbs > .separator {
    font-size: 100%;
}

.breadcrumbs > * {
    display: inline-block;
    margin-right: 12px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.quote-form .label {
    display: block;
    font-family: var(--font-kalista);
    margin-bottom: 22px;
    font-size: 14px;
}

.checkbox-list {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.checkbox-list .checkbox {
    margin: 12px;
    background-color: rgba(var(--primary-color), 0.01);
    border: 1px solid rgba(var(--primary-color), 0.2);
    padding: 20px 0 0 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    height: 120px;
    max-width: 100%;
    justify-content: center;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.checkbox-list .checkbox .circle::before,
.checkbox-list .checkbox .circle {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 100px;
    background-color: rgba(var(--heading-color), 0.2);
    z-index: 2;
}

.checkbox-list .checkbox .circle::before {
    content: "";
    right: 0;
    top: 0;
    background: url('https://www.girnarsoft.com/wp-content/themes/girnarsoft/images/tick.svg') no-repeat #47bf44 3px 3px / 6px;
    z-index: 3;
    opacity: 0;
}

.checkbox-list .checkbox input:checked~.circle::before {
    opacity: 1;
}

.checkbox-list .checkbox img {
    height: 40px;
}

.checkbox-list .checkbox input {
    display: none;
}

.checkbox-list .checkbox .box-title {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-family: var(--font-hurme);
    font-weight: 500;
}

.checkbox-list .checkbox svg {
    width: 40px;
    height: 40px;
}

.budget-input {
    position: relative;
    z-index: 1;
}

.budget-input .currency {
    position: absolute;
    left: 17px;
    top: 15px;
}

.budget-input .input-control {
    padding-left: 33px;
    text-transform: capitalize;
}


.budget-input input[type="number"]::-webkit-outer-spin-button,
.budget-input input[type="number"]::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.budget-input input[type="number"] {
    -moz-appearance: textfield;
    /* Firefox */
}


.i-radio {
    display: flex;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    max-width: 400px;
    padding-right: 30px;
}

.i-radio .box {
    position: absolute;
    right: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: #ffb8311f;
    border: 1px solid #ffb8313b;
    transition: 0.3s;
    overflow: hidden;
    border-radius: 3px;
}


.i-radio input:checked ~ .box {
    border-color: #ffb831;
}

.i-radio .box:before {
    content: "";
    position: absolute;
    left: 24%;
    top: 25%;
    width: 10px;
    height: 5px;
    border-bottom: 1px solid #ffb831;
    border-left: 1px solid #ffb831;
    transform: rotate(-45deg);
    transition: 0.3s;
    opacity: 0;
}

.i-radio input:checked ~ .box:before {
    opacity: 1;
}

.elementor-social-icon {
    display: inline-flex !important;
}

.play-button {
    position: relative;
    z-index: 99;
    display: block;
}

.move_element_parent {
    position: relative;
    cursor: none;
}

.move_element_child {
    position: absolute;
    width: 100px;
    height: 50px;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}