:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes shakeX {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shakeX {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX;
}

@-webkit-keyframes shakeX {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shakeX {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX;
}

.toggle-panel-wrapper {
    width: 272px;
    position: fixed;
    bottom: 0;
    left: 30px;
    z-index: 9999;
}

a.redirectUrl {
    cursor: pointer;
}

a {
    cursor: pointer;
}

.toggle-panel-wrapper .orange-strip {
    width: 100%;
    height: 64px;
    padding: 18px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 12px 26px -1px rgba(0, 0, 0, 0.14);
    background: #ec6608;
    background: -moz-linear-gradient(top, #ec6608 0%, #b02a30 100%);
    background: -webkit-linear-gradient(top, #ec6608 0%, #b02a30 100%);
    background: linear-gradient(to bottom, #ec6608 0%, #b02a30 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ec6608', endColorstr='#b02a30', GradientType=0);
}

    .toggle-panel-wrapper .orange-strip p {
        font-size: 12px;
        color: #ffffff;
        margin: 0;
        line-height: normal;
    }

        .toggle-panel-wrapper .orange-strip p.first-quote {
            font-size: 11px;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

            .toggle-panel-wrapper .orange-strip p.first-quote span {
                width: 238px !important;
                display: block;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

        .toggle-panel-wrapper .orange-strip p a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            cursor: pointer;
        }

            .toggle-panel-wrapper .orange-strip p a.redirectUrl span, .more-quotes-wrapper span.quote-plan-name {
                display: inline-block;
            }

                .toggle-panel-wrapper .orange-strip p a.redirectUrl span:first-letter, .more-quotes-wrapper span.quote-plan-name:first-letter {
                    text-transform: uppercase;
                }

.toggle-panel-wrapper .panel-close {
    position: absolute;
    right: 7px;
    top: 6px;
    cursor: pointer;
    opacity: 1;
}

.toggle-panel-wrapper .continue-journey {
    position: absolute;
    left: 18px;
    top: -10px;
    width: 130px;
    height: 20px;
    margin: 0;
    border-radius: 4px;
    background-color: #ffd6ba;
    font-size: 13px;
    padding: 1px 10px;
    text-align: center;
}

.toggle-panel-wrapper .blue-strip {
    width: 100%;
    height: 21px;
    margin: 0;
    padding: 2px 18px;
    box-shadow: 0 12px 26px -1px rgba(0, 0, 0, 0.14);
    background: #004a80;
    background: -moz-linear-gradient(top, #004a80 0%, #00305b 100%);
    background: -webkit-linear-gradient(top, #004a80 0%, #00305b 100%);
    background: linear-gradient(to bottom, #004a80 0%, #00305b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004a80', endColorstr='#00305b', GradientType=0);
    font-size: 12px;
    color: #fff;
    cursor: pointer;
}

.more-quotes-wrapper {
    border-radius: 10px;
    box-shadow: 0 5px 8px 1px rgb(0 0 0 / 15%);
    border: solid 1px #cbcdce;
    background-color: #ffffff;
    width: 86%;
    position: absolute;
    bottom: 21px;
    margin: auto;
    left: 0;
    right: 0;
    color: #282828;
    z-index: 2;
}

    .more-quotes-wrapper span.quote-title {
        font-size: 11px;
        font-weight: bold;
        letter-spacing: 0.8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 99%;
        display: inline-block;
        margin-bottom: 0;
        text-transform: uppercase;
        color: #282828;
    }

    .more-quotes-wrapper span.quote-plan-name {
        font-size: 13px;
        color: #6c6c6c;
        margin-top: 0.5rem;
        display: inline-block;
    }

    .more-quotes-wrapper ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .more-quotes-wrapper ul li {
            border-bottom: solid 1px #cbcdce;
            padding: 8px 10px;
            position: relative;
        }

            .more-quotes-wrapper ul li p {
                line-height: normal;
                font-size: 11px;
                color: #282828;
                margin: 0;
            }

                .more-quotes-wrapper ul li p a.redirectUrl {
                    cursor: pointer;
                }

                    .more-quotes-wrapper ul li p a.redirectUrl img.right-arrow {
                        margin-left: 10px;
                        vertical-align: bottom;
                    }

            .more-quotes-wrapper ul li:nth-last-child(2) {
                border-bottom: 0;
            }

.more-quotes-button.arrowToggle img.down-arrow {
    transform: rotate(180deg);
}

.web-version, #quotecnt {
    display: inline-block;
    color: #ffff;
    font-size: 12px;
}

.mobile-version, .dont-show-me {
    display: none;
}

.toggle-panel-wrapper .blue-strip .more-quotes-wrapper .continue-journey-m {
    display: none;
}

#mobile_quotecnt {
    display: none;
}

#quotecnt {
    display: inline-block;
}

#liQuote_1 {
    display: none;
}

@media (min-width: 992px) {
    .more-quotes-wrapper .close {
        display: none;
    }
}

@media (max-width: 991px) {
    #liQuote_1 {
        display: block;
    }

    .ui_get_sticky.fixedBtns {
        z-index: 999;
    }

    .toggle-panel-wrapper .blue-strip .more-quotes-wrapper ul li {
        border-top: 0 !important;
        border-bottom: solid 1px #cbcdce !important;
        padding: 20px 30px !important;
    }

    .more-quotes-wrapper span.quote-title {
        font-size: 15px !important;
        width: 100%;
    }

    .toggle-panel-wrapper .blue-strip .more-quotes-wrapper ul li.dont-show-me {
        font-size: 15px !important;
    }

    .more-quotes-wrapper span.quote-plan-name {
        font-size: 15px !important;
    }

    .blue-strip .more-quotes-wrapper ul li a.redirectUrl img.right-arrow {
        right: 32px;
        width: 9px;
        position: absolute;
    }

    #mobile_quoteavail {
        font-size: 18px !important;
        vertical-align: middle;
        line-height: 22px;
        color: #fff;
    }

    #liQuote_1 {
        display: block !important;
    }

    #quotecnt {
        display: none;
    }

    #mobile_quotecnt {
        display: inline-block;
    }

    .toggle-panel-wrapper .blue-strip {
        display: block !important;
    }

    .toggle-panel-wrapper {
        position: relative;
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        margin-bottom: 25px;
    }

        .toggle-panel-wrapper .blue-strip .more-quotes-wrapper {
            position: fixed;
            bottom: 0;
            top: auto;
            border-radius: 0;
            -webkit-border-top-left-radius: 10px;
            -webkit-border-top-right-radius: 10px;
            -moz-border-radius-topleft: 10px;
            -moz-border-radius-topright: 10px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            width: 100%;
        }

            .toggle-panel-wrapper .blue-strip .more-quotes-wrapper .continue-journey-m {
                display: block;
                padding: 20px 30px 6px;
                color: #004a80;
                font-size: 22px;
            }

            .toggle-panel-wrapper .blue-strip .more-quotes-wrapper ul li.dont-show-me {
                font-size: 13px;
            }

            .toggle-panel-wrapper .blue-strip .more-quotes-wrapper .continue-journey-m .panel-close {
                display: block;
                top: 12px;
                right: 18px;
                opacity: 1;
            }

            .toggle-panel-wrapper .blue-strip .more-quotes-wrapper ul li {
                padding: 8px 30px;
            }

    .backdrop {
        position: fixed;
        background: #000000a1;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

    .orange-strip {
        display: none;
    }

    .toggle-panel-wrapper .blue-strip {
        width: 100%;
        height: 65px;
        padding: 18px 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        box-shadow: 0 12px 26px -1px rgba(0, 0, 0, 0.14);
        background: #ec6608;
        background: -moz-linear-gradient(top, #ec6608 0%, #b02a30 100%);
        background: -webkit-linear-gradient(top, #ec6608 0%, #b02a30 100%);
        background: linear-gradient(to bottom, #ec6608 0%, #b02a30 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ec6608', endColorstr='#b02a30', GradientType=0);
        font-size: 18px;
    }

        .toggle-panel-wrapper .blue-strip span.number {
            width: 30px;
            height: 30px;
            border-radius: 30px;
            background: #fff;
            color: #282828;
            display: inline-block;
            text-align: center;
            line-height: 30px;
            font-weight: bold;
            font-size: 18px;
        }

        .toggle-panel-wrapper .blue-strip .down-arrow {
            position: absolute;
            right: 10px;
            top: 30px;
            width: 18px;
            transform: rotate(270deg);
        }

    .more-quotes-button.arrowToggle img.down-arrow {
        transform: rotate(270deg);
    }

    .continue-journey {
        display: none;
    }

    .toggle-panel-wrapper .panel-close {
        display: none;
    }

    .web-version {
        display: none;
    }

    .mobile-version, .dont-show-me {
        display: inline-block;
    }

    .dont-show-me {
        color: #ec6608;
        padding: 10px;
    }
}

.toggle-panel-wrapper .orange-strip p span {
    font-size: 12px;
    color: #fff;
    margin: 0;
    line-height: normal;
    font-weight: 400;
}

#spnRetrieveQuote {
    cursor: pointer;
}

.bounceEffect {
    animation: bounce 1s;
    -webkit-animation: bounce 1s;
    -moz-animation: bounce 1s;
    -o-animation: bounce 1s;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .more-quotes-wrapper .close {
        position: absolute;
        right: 30px;
        top: 35px;
        display: block;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .more-quotes-wrapper .close {
        right: 20px;
        top: 20px;
    }
}

.why-smart-garage {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.garages-blue-block {
    display: inline-block;
    width: 80%;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #c9c9c9;
    padding: 3rem 5rem;
    position: relative;
}

.blue-list-block {
    display: inline-block;
    width: 50%;
    float: left;
    padding-bottom: 5rem;
    position: relative;
}

.garage-right {
    display: inline-block;
    width: 85%;
    vertical-align: top;
    padding-left: 2rem;
    text-align: left;
}

    .garage-right h3 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .garage-right p {
        font-size: 1.3rem;
        line-height: 22px;
        font-weight: 400;
    }

.garages-blue-block:after {
    background: #c9c9c9;
    width: 90%;
    height: 1px;
    position: absolute;
    content: "";
    bottom: 50%;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.garages-blue-block:before {
    background: #c9c9c9;
    height: 80%;
    margin: 0 auto;
    display: inline-block;
    width: 1px;
    position: absolute;
    content: "";
}

.landing-smart-saver {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 5rem;
}

    .landing-smart-saver img {
        display: inline-block;
        vertical-align: top;
    }

.what-smart-saver {
    display: inline-block;
    width: 70%;
    text-align: left;
    padding-left: 3rem;
}

    .what-smart-saver h2 {
        font-weight: 700;
        font-size: 2.9rem;
    }

.why-smart-garage h2 {
    text-align: center;
    font-size: 2.4rem;
    padding-bottom: 2rem;
    display: block;
}

.blue-list-block:nth-child(2):after, .blue-list-block:nth-child(4):after {
    display: none;
}

.blue-list-block:nth-child(3):before, .blue-list-block:nth-child(4):before {
    display: none;
}

.blue-list-block:nth-child(2), .blue-list-block:nth-child(4) {
    padding-left: 2rem;
}

.blue-list-block:nth-child(3) {
    padding-bottom: 0;
}

.blue-list-block:last-child {
    padding-bottom: 0;
}

.ui-card-wrap {
    display: inline-flex;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 0 0;
}

    .ui-card-wrap .card-block {
        display: flex;
        text-align: left;
        width: 30%;
        margin: 0 auto;
        padding: 2.5rem 3rem;
        border: 1px solid #eaeaea;
        border-radius: 1rem;
    }

.flexclass {
    display: flex;
    align-items: center;
}

.img_section {
    margin-right: 2rem;
}

.ui-card-wrap .card-block span {
    padding-bottom: 0.6rem;
    font-size: 2rem;
    line-height: 25px;
    font-weight: 700;
    color: #f26624;
    text-align: left;
    display: inline-block;
}

.ui-card-wrap p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-align: left;
    position: relative;
}

.ui-card-wrap .card-block p span {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #282828;
    padding: 0 0.6rem;
    position: relative;
}

    .ui-card-wrap .card-block p span:first-of-type {
        padding-left: 0;
    }

    .ui-card-wrap .card-block p span:after {
        top: 7px;
        left: 97%;
    }

.pbm-0.pkg_policy_bg {
    background-color: #fff2eb;
}

.section-content {
    padding: 6rem 0 6rem 0;
}

.container-small {
    max-width: 120rem;
    margin: 0 auto;
}

.section-content h2 {
    font-weight: 700;
}

.pkg_policy {
    padding-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        -webkit-transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        -moz-backface-visibility: hidden;
    }

#pkg_policy_slider .owl-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 70px 40px 40px;
}

.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        -moz-backface-visibility: hidden;
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0;
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        -webkit-transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-item, .owl-carousel .owl-wrapper {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-item {
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-touch-callout: none;
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%;
        }

    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
        display: none;
    }

    .no-js .owl-carousel, .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }

    .owl-carousel.owl-hidden {
        opacity: 0;
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden;
    }

    .owl-carousel.owl-drag .owl-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: -webkit-grab;
        cursor: grab;
    }

    .owl-carousel.owl-rtl {
        direction: rtl;
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right;
        }

    .owl-carousel .animated {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .owl-carousel .owl-animated-in {
        z-index: 0;
    }

    .owl-carousel .owl-animated-out {
        z-index: 1;
    }

    .owl-carousel .fadeOut {
        -webkit-animation-name: fadeOut;
        animation-name: fadeOut;
    }

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.owl-height {
    -webkit-transition: height 0.5s ease-in-out;
    transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.1s ease;
    transition: transform 0.1s ease;
}

    .owl-carousel .owl-video-play-icon:hover {
        -ms-transform: scale(1.3, 1.3);
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

#pkg_policy_slider .owl-nav .owl-next {
    right: -12px;
    top: 28rem;
    background: #fff;
}

#pkg_policy_slider .owl-nav .owl-prev {
    left: -12px;
    top: 28rem;
    background: #fff;
}

#pkg_policy_slider .blog_card {
    width: 405px;
    margin: 0;
}

#pkg_policy_slider .card_content p {
    font-size: 15px;
}

#pkg_policy_slider .owl-next.disabled, .owl-prev.disabled {
    opacity: 1;
    background: #fff;
}

#pkg_policy_slider img {
    max-width: 170px;
}

#pkg_policy_slider .owl-nav .owl-next, .ui-reviews-slider .owl-nav .owl-next {
    right: 0;
    background: #fff;
}

#pkg_policy_slider .owl-nav .owl-prev, .ui-reviews-slider .owl-nav .owl-prev {
    left: 0;
    background: #fff;
}

#pkg_policy_slider .owl-nav .owl-prev, .ui-reviews-slider .owl-nav .owl-prev {
    position: absolute;
    left: -6rem;
    top: 40%;
    font-size: 0;
    height: 5rem;
    width: 5rem;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 0;
    box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.1);
    background: #ec6625;
    border: 1px solid #eaeaea;
}

#pkg_policy_slider .owl-nav .owl-next, .ui-reviews-slider .owl-nav .owl-next {
    position: absolute;
    right: -6rem;
    top: 40%;
    font-size: 0;
    height: 5rem;
    width: 5rem;
    border-radius: 50px;
    cursor: pointer;
    margin-right: 0;
    box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.1);
    background: #ec6625;
    border: 1px solid #eaeaea;
}

#pkg_policy_slider .owl-nav .owl-prev:before, .ui-reviews-slider .owl-nav .owl-prev:before {
    border-color: transparent;
    border-style: none;
    border-width: 0;
    background-image: url(../images/white-review-arrow.svg);
    background-repeat: no-repeat;
    height: 16px;
    width: 18px;
    vertical-align: text-top;
    transform: rotate(180deg);
    left: 16px;
    top: 16px;
    content: "";
    display: inline-block;
    vertical-align: text-top;
    box-sizing: inherit;
    margin: 0;
    position: absolute;
}

#pkg_policy_slider .owl-nav .owl-next:before, .ui-reviews-slider .owl-nav .owl-next:before {
    border-color: transparent;
    border-style: none;
    border-width: 0;
    background-image: url(../images/arrow_pointer_review.svg);
    background-repeat: no-repeat;
    height: 16px;
    width: 18px;
    transform: rotate(360deg);
    left: 16px;
    top: 17px;
    content: "";
    display: inline-block;
    vertical-align: text-top;
    box-sizing: inherit;
    margin: 0;
    position: absolute;
}

#pkg_policy_slider .owl-nav .owl-prev.disabled, #pkg_policy_slider .owl-nav .owl-next.disabled, .ui-reviews-slider .owl-nav .owl-next.disabled, .ui-reviews-slider .owl-nav .owl-prev.disabled {
    background: #fff;
    border: 1px solid #cbcdce;
    cursor: not-allowed !important;
}

    #pkg_policy_slider .owl-nav .owl-prev.disabled:before, #pkg_policy_slider .owl-nav .owl-next.disabled:before, .ui-reviews-slider .owl-nav .owl-next.disabled:before, .ui-reviews-slider .owl-nav .owl-prev.disabled:before {
        background-image: url(../images/review_arrow.png);
        opacity: 0.5;
    }

#pkg_policy_slider .owl-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 70px 40px 40px;
    min-height: 300px;
}

    #pkg_policy_slider .owl-item img {
        border-radius: 10px;
    }

.pbm-0.pkg_policy_bg {
    background-color: #fff2eb;
}

.pkg_policy {
    padding-top: 30px;
}

#pkg_policy_slider .owl-dots {
    text-align: center;
    padding: 20px 0 44px;
}

.common-insurance-blocks.flex_class {
    display: flex;
    margin: 15px 0;
    background: #fff;
    padding: 30px 40px 30px 30px;
    border-radius: 15px;
    min-height: 200px;
}

.svg_content {
    padding-right: 30px;
}

.right-policy-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right-policy-holder {
    background: #00305b;
    border: 1px solid #065e9e;
    border-radius: 15px;
    padding: 3rem 3rem 3rem 2rem;
    width: 32%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.num-holder {
    font-weight: 700;
    font-size: 45px;
    line-height: 47px;
    color: #f26624;
    padding-right: 2rem;
}

.car-ins-head {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    padding-bottom: 1rem;
    padding-right: 2.4rem;
}

.car-ins-p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

section.section-content.pay-you-block, section.section-content.how-does-icici-work-block, section.section-content.what-factors-impact-idv {
    background: #f8f6e4;
}

.view-more-content .paraHide {
    display: block;
}

.view-more-content a.vMore, .view-more-content a.rMore {
    display: none;
}

.pad-word-wrap {
    padding-right: 11rem;
}

.table_para {
    width: 80%;
    margin: 0 auto;
}

@media only screen and (max-width: 1280px) {
    #pkg_policy_slider .owl-nav .owl-prev {
        left: 0;
    }

    #pkg_policy_slider .owl-nav .owl-next {
        right: 0;
    }
}

@media only screen and (max-width: 992px) {
    .common-insurance-blocks.flex_class {
        min-height: 325px;
    }

    .table_para {
        width: 90%;
    }

    .img-wrap {
        min-height: 45px;
    }

    #pkg_policy_slider .owl-item {
        padding: 30px 10px;
        min-height: 600px;
    }

    #pkg_policy_slider img {
        max-width: 160px;
        margin: 0 auto;
        margin-bottom: 32px;
    }

    .ui-card-wrap {
        display: flex;
        flex-direction: column;
        gap: 15px;
        column-gap: 15px;
    }

        .ui-card-wrap .card-block {
            width: 100%;
            padding: 2rem;
        }

    .svg_content {
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .table_para {
        width: 100%;
    }

    .common-insurance-blocks.flex_class {
        margin: 7px 0;
        padding: 25px;
        min-height: auto;
    }

    .section-content {
        padding: 4rem 1rem 4rem 1rem;
    }

    .pkg_policy_bg.section-content {
        padding: 4rem 0 6rem 0;
    }

    .pad-mob-lr {
        padding: 0 1rem;
    }

    .section-content h2 {
        font-size: 2.4rem;
    }

    .img_pdt_mob {
        padding-top: 4rem;
    }

    .table_wrapper {
        margin: 30px auto 0 auto;
        width: 100% !important;
    }

    .right-policy-holder {
        width: 100%;
        min-height: 363px;
    }

    .owl-dots {
        text-align: center;
    }

    .right-policy-container {
        padding-top: 3rem !important;
    }

    .choose_right_policy {
        padding: 4rem 2rem 6rem;
    }

    .pd_top5_mob {
        padding-top: 5rem !important;
    }

    .premium_calulation .text-blue {
        margin: 30px 0 0 0;
    }

    .view-more-content .paraHide {
        display: none;
    }

    .view-more-content a.vMore, .view-more-content a.rMore {
        display: block;
    }

    .pad-word-wrap {
        padding-right: 0;
    }

    .container-small h2 {
        padding-left: 0;
    }

    #pkg_policy_slider .owl-item {
        min-height: 463.64px;
    }
}

.img-section-h {
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 2rem;
}

.bg-lightblue {
    background: #e1f4fd;
}

@media (max-width: 1199px) {
    .garages-blue-block {
        width: 100%;
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .ui-policy-documents p a.policy_doc {
        margin-top: 10px;
        display: block;
        color: #ec6608;
        padding: 10px 15px;
        border: 1px solid #c9c9c9;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        background-image: url(../images/forward_arrow.svg);
        background-repeat: no-repeat;
        background-position-x: right;
        background-position-y: center;
        background-origin: content-box;
    }

    .ui-policy-documents p {
        position: relative;
        padding-left: 0;
    }

        .ui-policy-documents p > span {
            position: relative;
            display: block;
        }

    .landing-smart-saver {
        text-align: left;
    }

    .what-smart-saver {
        width: 100%;
        padding-left: 0;
    }

        .what-smart-saver h2 {
            font-size: 2.2rem;
            padding: 2rem 0;
        }

    .why-smart-garage h2 {
        text-align: left;
        font-size: 2.2rem;
    }

    .why-smart-garage {
        text-align: left;
    }

    .garages-blue-block {
        width: 100%;
        padding: 3rem 2rem;
    }

    .blue-list-block {
        width: 100%;
        float: none;
        padding-bottom: 3rem;
    }

        .blue-list-block:nth-child(2), .blue-list-block:nth-child(4) {
            padding-left: 0;
        }

    .garage-right {
        display: block;
        width: 100%;
        padding-left: 0;
        text-align: left;
        padding-top: 1rem;
    }

    .blue-list-block:after {
        display: none;
    }

    .blue-list-block:before {
        display: none;
    }

    .blue-list-block:nth-child(3) {
        padding-bottom: 3rem;
    }

    .garages-blue-block:after, .garages-blue-block:before {
        display: none;
    }
}

.section-content.key-features .tableWrapp td {
    text-align: left;
    padding-left: 20px;
}

.section-content.key-features .tableWrapp tr:nth-child(even) {
    background-color: #f5f6f6;
}

.section-content.key-features .tableWrapp th {
    padding-left: 30px;
}

.section-content.key-features .tableWrapp tr:nth-child(odd) {
    background-color: transparent;
}

.ui-policy-documents p > span {
    font-size: 1.7rem;
    font-weight: 600;
}

.ui-policy-documents p {
    position: relative;
}

.claim_know_btn {
    color: #ec6608 !important;
    background: transparent;
    border: 1px solid #ec6608;
}

    .claim_know_btn:hover {
        color: #fff !important;
        background: #ec6608;
    }

.quote_click {
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
    color: #ec6625;
}

.link-btn {
    font-weight: 700;
    font-size: 15px;
    text-decoration: underline;
    color: #ec6625;
}

.inc-exc-tab sup {
    font-size: 17px;
    color: #282828;
}

.inc-exc-tab h3 {
    font-size: 15px;
    font-weight: 700;
    padding: 28px 0;
}

.section-content .popular-search h2 {
    font-weight: 500;
    padding-bottom: 3rem;
    line-height: 44px;
}

.flexs {
    display: flex;
    align-items: center;
}

.popular-search {
    padding-left: 40px;
}

.section-content.key-features .tableWrapp th {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #282828;
    padding: 2rem;
}

.section-content.key-features .tableWrapp td {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #282828;
    padding: 15px 20px;
}

.section-content.search-bg {
    background: #f8f6f6;
}

.pro-code-wrap {
    width: 60%;
    margin: 2rem auto;
}

.products-code-block {
    padding: 2rem 0;
    border-top: solid 1px #ddd;
}

.pro-code-wrap .tableWrapp th {
    text-align: center !important;
}

.popular-search a {
    background-color: #fff;
    color: #000;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    border-radius: 100px;
    padding: 8px 15px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    text-decoration: none;
}

    .popular-search a:hover {
        background: #fff2eb;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        border: none;
        text-decoration: none;
    }

    .popular-search a:focus {
        border: none;
    }

@media (max-width: 991px) {
    .pro-code-wrap {
        width: 100%;
    }
}

a#keepMeposted.btn-white {
    margin-top: 0;
}

.input-block.js-veh-block.blockInpdis label {
    top: 4px;
    font-size: 2rem;
}

.ui-form-block .check-feild span a {
    font-weight: 500;
}

.banner-para h1 {
    font-weight: 700;
}

.banner-para span {
    font-weight: 300;
}

ul.ui-banner-list li {
    font-weight: 500;
}

.lineN {
    font-size: 18px;
    padding: 0 5px;
    bottom: 0;
    font-weight: 100;
}

p {
    font-weight: 500;
}

.disc_text sub {
    position: relative;
    font-size: 1rem;
    bottom: 8px;
}

.ui-form-block .input-block:first-child {
    margin-bottom: 0;
}

.input-block.notewrap {
    bottom: 10px;
}

.note a.js-know-reg {
    display: none;
}

.input-block.blockInpdis {
    opacity: 0.6;
    pointer-events: none;
}

    .input-block.blockInpdis.focus {
        opacity: 0.6;
        pointer-events: none;
    }

    .input-block.blockInpdis input[type="text"] {
        pointer-events: none;
    }

    .input-block.blockInpdis.focus input[type="text"] {
        pointer-events: none;
    }

.js-veh-block input::placeholder {
    color: #8097ac !important;
}

.js-veh-block input:-ms-input-placeholder {
    color: #8097ac !important;
    font-weight: 400 !important;
}

.note a.js-already-reg {
    display: none;
}

.js-veh-block.blockInpdis input::placeholder {
    font-size: 0;
    color: #8097ac !important;
}

.js-veh-block.blockInpdis input:-ms-input-placeholder {
    font-size: 0;
    color: #8097ac !important;
}

.js-veh-block input.uppercase::placeholder {
    text-transform: none !important;
}

a {
    font-weight: 700;
}

ul.ui-banner-list li {
    font-size: 2rem;
}

.input-block .note a {
    color: #ec6608;
    text-decoration: underline;
    font-size: 1.4rem;
    font-weight: 600;
}

    .input-block .note a:hover {
        text-decoration: none;
    }

.ui-banner-content {
    padding: 2rem 5rem 0;
}

.ui-form-block .check-feild span {
    color: #fff;
}

    .ui-form-block .check-feild span a {
        color: #fff;
        cursor: pointer;
        font-size: 1.3rem;
        text-decoration: underline;
    }

.ui-form-block a.renewal-link {
    background: none;
    border: 1px solid #6e8ba5;
}

.input-block input {
    font-size: 1.7rem;
}

ul.ui-banner-list li img {
    vertical-align: middle;
}

.ui-form-block a.renewal-link img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.banner-para h1 {
    font-size: 4.5rem;
}

.ui-card-wrap .card-block span .sup_script {
    font-size: 1.2rem;
    line-height: 12px;
    padding-bottom: 0;
}

.ui-card-wrap .card-block p span {
    font-weight: 500;
}

.ui-card-wrap .card-block span {
    font-weight: 700;
}

.common-insurance-blocks em {
    color: #f26624;
    font-weight: 700;
}

.inc-exc-tab .ui-check-list.exclusion-tabs li {
    font-size: 16px;
}

p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.pay-you-block .row, .what-factors-impact-idv .row, .what-are-the-benefits .row, .why-renewing-your-car .row {
    display: flex;
    align-items: center;
}

.premium_calulation ul.arrow-tab-list li, .save_premium ul.arrow-tab-list li {
    padding-bottom: 0;
    line-height: 1.76;
    font-size: 16px;
}

.premium_calulation .text-blue {
    color: #282828;
}

ul.arrow-tab-list {
    padding: 1rem 0rem 0;
}

.premium_calulation .common-insurance-blocks p {
    font-size: 16px;
}

.premium_calulation .common-insurance-blocks em {
    top: 16px;
}

ul.arrow-tab-list.green_tick li {
    font-size: 1.6rem;
}

.tab-head li {
    color: #6c6c6c;
}

.paraHide {
    display: none;
    font-size: 1.6rem;
    font-weight: 500;
}

.package-policy-wording p a {
    text-decoration: underline;
    border-bottom: none;
}

a.vMore, a.rMore {
    color: #fe6625;
    text-decoration: underline;
}

    a.vMore:after, a.rMore:after {
        content: "";
        border: solid #ec6625;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-left: 0.7rem;
        vertical-align: baseline;
    }

    a.vMore.vLess:after, a.rMore.rLess:after {
        transform: rotate(-135deg);
        vertical-align: middle;
    }

.btn-orange {
    font-weight: 500;
}

.ui-form-block a.renewal-link span {
    font-weight: 500;
}

.banner-para sub {
    color: #fff;
    font-size: 1.1rem;
    bottom: 20px;
    position: relative;
}

ul.ui-banner-list li sub {
    bottom: 1.1rem;
    font-size: 1rem;
}

#viewListp.overlayN {
    z-index: 9999;
}

#login_verificationEc_lp {
    z-index: 99999;
}

.inc-exc-tab h3 {
    padding: 10px 0;
}

.bg-blue .input-block.blockInpdis input {
    border-bottom: 1px solid #3e6c8f;
}

.input-block.js-veh-block.blockInpdis label {
    color: #3e6c8f;
    top: 0;
    font-size: 2rem;
}

.input-block.blockInpdis sup {
    color: #3e6c8f;
}

.input-block.blockInpdis.focus input[type="text"] {
    pointer-events: all;
    cursor: not-allowed;
}

.input-block.blockInpdis input[type="text"] {
    pointer-events: all;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .ui-banner-content {
        padding: 0;
    }

    .flexs {
        display: flex;
        flex-direction: column-reverse;
    }

    ul.ui-banner-list li {
        font-size: 1.6rem;
    }

    .banner-para sub {
        font-size: 1.1rem;
        bottom: 12px;
    }

    .dth-hd-img {
        margin-top: 5rem;
    }

    .list-right-wrap {
        padding: 2rem 0 0 !important;
    }
}

@media (max-width: 767px) {
    .popular-search {
        padding-left: 10px;
    }

        .popular-search a {
            margin-right: 3px;
        }

    .flexs {
        display: flex;
        flex-direction: column-reverse;
    }

    .row.flexs img {
        max-width: 100%;
    }

    .popular-search {
        margin-bottom: 50px;
    }

    #awards_recognize .awards-block {
        min-height: 75rem;
    }

    .banner-para h1 {
        font-size: 3rem;
    }

    .ime-tips-list {
        overflow: initial;
    }

    .pro-code-wrap .tableWrapp td:first-child {
        width: 300px;
        display: inline-block;
    }

    .pro-code-wrap .tableWrapp th:nth-child(2) {
        display: inline-block;
    }

    .input-block input {
        border-radius: 0;
        letter-spacing: 0;
    }

    .img-cr-pre {
        margin-top: 5rem;
    }

    img.whatsapp-img {
        width: auto;
    }

    .io-img-dth {
        margin-top: 3rem;
    }

    .input-block input {
        padding-left: 0;
        margin-left: 0;
        left: 0;
    }

    .common-insurance-blocks .tableWrapp td:first-child {
        width: 300px;
        display: inline-block;
    }

    .common-insurance-blocks .tableWrapp th:last-child {
        width: 300px;
        display: inline-block;
    }

    .common-insurance-blocks .tableWrapp td {
        padding-left: 20px !important;
    }

    #Compareplans .tableWrapp td:first-child {
        width: 300px;
        display: inline-block;
    }

    #Compareplans .tableWrapp td:nth-child(3) {
        width: 200px;
        display: inline-block;
    }

    #Compareplans .tableWrapp th:nth-child(2) {
        width: 200px;
        display: inline-block;
    }

    #Compareplans .tableWrapp th:last-child {
        width: 200px;
        display: inline-block;
    }
}

.new_ht h3 {
    padding-top: 10px;
    font-size: 15px;
    line-height: 27px;
    font-weight: 300;
}

.list-right-wrap h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.disclaimer-content {
    text-align: right;
    padding-right: 35px;
}

    .disclaimer-content a {
        font-size: 13px;
        font-weight: 700;
        color: #ec6608;
        line-height: 21px;
        text-decoration: underline;
    }

ul.arrow-tab-list.green_tick li {
    width: 46%;
    float: none;
    color: #fff;
}

.number-tab-list {
    display: inline-block;
    text-align: left;
    width: 100%;
    padding: 2rem 0 0;
}

.number-list-container {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

    .number-list-container p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #282828;
    }

.num_holder {
    font-weight: 800;
    font-size: 20px;
    line-height: 25px;
    color: #ec6625;
    margin-right: 15px;
    display: inline-block;
}

.pointer-list-head {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
    margin-bottom: 2rem;
}

.pointer-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    position: relative;
    padding-left: 30px;
    padding-bottom: 10px;
}

    .pointer-list li:before {
        content: "";
        display: inline-block;
        background-image: url(../images/pointer_bullet.svg);
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 6px;
    }

.pad-rig-4 {
    padding-right: 4rem;
}

.pad-lef-4 {
    padding-left: 4rem;
}

.secondary-btn {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding: 1.3rem 2.4rem;
    font-size: 1.6rem;
    border-radius: 5px;
    text-decoration: none;
    outline: none;
    border: 1px solid #ec6625;
    font-weight: 700;
    text-align: center;
    background: #fff;
    color: #ec6625;
}

    .secondary-btn:hover {
        position: relative;
        background: #fff2eb;
        border: 1px solid #ec6625;
        color: #ec6625;
    }

    .secondary-btn:focus-visible {
        position: relative;
        background: #fff9f6;
        border: 1px solid #ec6625;
        color: #ec6625;
    }

    .secondary-btn:active {
        position: relative;
        background: #fff9f6;
        border: 1px solid #bb5106;
        color: #bb5106;
    }

.mar-top-5 {
    margin-top: 5rem;
}

.input-block.ripple-bar.js-veh-block.focus a.wit-popuplink {
    display: inline-block !important;
}

.input-block.ripple-bar.js-veh-block.blockInpdis.focus a.wit-popuplink, .input-block.ripple-bar.js-veh-block.blockInpdis a.wit-popuplink {
    display: none !important;
}

a.wit-popuplink {
    position: absolute;
    right: 0;
    bottom: 67px;
    font-weight: 400;
    text-decoration: underline;
    color: #fff;
}

.wit-popuplink {
    display: none;
}

.whtLink {
    display: inline-block;
}

.js-veh-block.focus .a.wit-popuplink {
    display: inline-block;
}

a.wit-popuplink:hover, a.wit-popuplink:active {
    text-decoration: none;
}

.input-block .note a {
    outline: none;
}

    .input-block .note a.js-reg-no {
        display: none;
    }

.input-block.js-veh-block.blockInpdis label sup {
    display: none;
}

#understand-reg-no .popup.light.js-popup-body.commonpop-pad {
    max-width: 650px;
}

.vehicle-reg-popup {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
}

    .vehicle-reg-popup h2 {
        font-size: 2rem;
        font-weight: 700;
    }

    .vehicle-reg-popup p {
        font-size: 1.6rem;
        line-height: 24px;
        padding-bottom: 1rem;
    }

        .vehicle-reg-popup p.b-test {
            color: #004a80;
            margin-bottom: 1rem;
        }

.img-para-block {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
}

    .img-para-block img {
        display: inline-block;
        vertical-align: top;
    }

ul.popup-veh-list {
    display: inline-block;
    width: 48%;
    padding-left: 3rem;
}

    ul.popup-veh-list li {
        font-size: 1.4rem;
        padding-bottom: 2rem;
        font-weight: 400;
        line-height: 21px;
        position: relative;
        padding-left: 3rem;
    }

        ul.popup-veh-list li sub {
            top: 2px;
            font-size: 1.4rem;
            position: absolute;
            left: 0;
            z-index: 1;
            background: #0ed531;
            height: 2.2rem;
            width: 2.2rem;
            border-radius: 30px;
            display: inline-block;
            padding: 6px;
            line-height: 11px;
            font-weight: 700;
        }

@media (max-width: 991px) {
    .input-block .note a {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    #understand-reg-no .popup.light.js-popup-body.commonpop-pad {
        margin: 7rem auto;
        border-radius: 2rem 2rem 0 0;
        margin-bottom: 0;
    }

    ul.popup-veh-list {
        width: 100%;
        padding-left: 0;
        margin-top: 2rem;
    }

    .input-block .note a {
        font-size: 1.2rem;
    }

    .breadcrumb-main-block .disclaimer-content {
        text-align: left;
        padding-top: 20px;
        border-top: 1px solid #dfdfdf;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    a.wit-popuplink {
        font-size: 1.2rem;
    }

    .pad-rig-4 {
        padding-right: 1rem;
    }

    .pad-lef-4 {
        padding-left: 1rem;
    }

    .pay-you-block .row, .what-factors-impact-idv .row, .what-are-the-benefits .row, .why-renewing-your-car .row {
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }

    ul.arrow-tab-list li {
        margin-right: 0;
    }
}

@media (max-width: 400px) {
    .input-block .note a {
        font-size: 1.1rem;
    }
}

.inc-exc-tab sup {
    font-size: 9px;
    color: #282828;
}

sup {
    color: #000;
    font-size: 1rem;
}

.bg-white.insurance-madeeasy-block h2 {
    margin-bottom: 30px;
}

.flex-columns {
    display: flex;
    flex-wrap: wrap;
}

.row.flex .flex-align {
    display: flex;
}

.row.flex .covid-pandemic-block.thumbnailBox {
    flex: 1;
}

.covid-pandemic-block {
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    border: solid 1px #eaeaea;
    overflow: hidden;
}

.thumbnailBox img {
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.cp-contentblock {
    display: inline-block;
    width: 100%;
    padding: 3rem 2rem;
}

    .cp-contentblock h6 {
        font-size: 1.8rem;
        font-weight: 600;
        padding: 0;
        margin-bottom: 10px;
    }

    .cp-contentblock p {
        display: inline-block;
        font-size: 1.6rem;
        padding: 0;
        line-height: 3rem;
        margin-bottom: 15px;
        margin-right: 1rem;
        font-weight: 400;
        line-height: 24px;
    }

    .cp-contentblock .date {
        font-size: 14px;
        padding-bottom: 0;
        float: left;
        width: 100%;
        color: #6c6c6c;
    }

a.read-mr {
    font-size: 1.4rem;
    color: #ec6608;
    text-decoration: underline;
    font-weight: 600;
}

.row.flex .covid-pandemic-block.thumbnailBox {
    flex: 1;
    cursor: pointer;
}

.covid-pandemic-block.thumbnailBox:hover {
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 13%);
}

@media (max-width: 767px) {
    .row.flex .flex-align {
        margin-bottom: 30px;
    }

    .covid-pandemic-block {
        margin-bottom: 0;
        margin-top: 0;
    }

    .read-morebtn {
        padding-top: 25px;
        float: none;
        padding-bottom: 30px;
    }

    .p-made-easy {
        margin-bottom: 30px;
    }

    .bg-white.insurance-madeeasy-block a.btn-white {
        margin-right: 0;
        margin-top: 0;
    }

    .bg-white.insurance-madeeasy-block.section-content {
        padding: 4rem 0 3rem 0;
    }
}

.pkg_policy .common-insurance-blocks h3 {
    font-size: 2rem;
    line-height: 2.5rem;
}

a.rMore:visited, a.rMore:focus, a.rMore:active, a.rMore:focus-visible, a.rMore:hover, a.rMore.rLess:visited, a.rMore.rLess:focus, a.rMore.rLess:active, a.rMore.rLess:focus-visible, a.rMore.rLess:hover, a.vMore:visited, a.vMore:focus, a.vMore:active, a.vMore:focus-visible, a.vMore:hover, a.vMore.vLess:visited, a.vMore.vLess:focus, a.vMore.vLess:active, a.vMore.vLess:focus-visible, a.vMore.vLess:hover {
    color: #fe6625;
    text-decoration: underline;
}

.fw-widget-wrap {
    width: 100%;
    max-width: 471px;
}

.banner-content h1 {
    margin: 0;
}

.carlanding-wrap .bannerTitle {
    font-size: 2.8rem;
}

.banner-content ul {
    display: block;
}

    .banner-content ul li {
        width: 100%;
        background: linear-gradient(270deg, #ffffff -9.13%, #fff2eb 100%);
        border: none;
        margin-bottom: 1rem;
        width: 60%;
        padding: 1rem 2rem;
    }

.carlanding-wrap::before {
    display: none;
}

.banner-content {
    width: 60%;
    position: relative;
    padding: 5rem 0 0;
}

.carlanding-wrap.section-content {
    padding: 3rem 0 10rem 0;
}

.carlanding-wrap .widget-mn-img {
    top: 3rem;
    right: 0;
    bottom: auto;
    position: absolute;
}

.banner-content ul li span {
    padding: 1rem 1rem;
    font-size: 1.6rem;
}

.ui-submit-btn a:nth-child(2) {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: #fff2eb;
    border: none;
    color: #ec6625;
    text-decoration: underline;
    width: 88%;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-radius: 0 0 1.5rem 1.5rem;
}

.carlanding-wrap .bannerFormblock {
    position: relative;
    padding: 35px 30px 15px;
}

.il-input-block {
    margin-bottom: 2.5rem;
}

.wid-mob-content {
    display: none;
}

.wid-mob-im {
    display: none;
}

span.tpSpn:after {
    background: linear-gradient(270deg, #ffffff 0%, #c9c9c9 100%);
}

.ui-submit-btn a:last-child {
    display: none;
}

.ui-card-wrap .card-block {
    background: #fff;
    border: none;
}

#navjumpid li button.btn.btn-whites {
    background: #ec6608;
    padding: 8px;
    min-width: 100px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 12px;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    border: 0;
}

span.tpSpn {
    font-size: 1.2rem;
}

#keyboardbindLast {
    display: block;
    width: 100%;
}

a#whatReg {
    color: #ec6625;
}

.ui-submit-btn a:nth-child(3) {
    margin: 2rem 0;
}

.ui-submit-btn {
    margin: 3rem 0 0;
}

.banner-content ul li span span {
    padding: 0;
}

.carlanding-form-block .il-input-block:first-child {
    margin-bottom: 2.5rem;
}

@media (max-width: 1280px) {
    .carlanding-wrap .bannerTitle {
        font-size: 2rem;
    }

    #fw_jumplink .jump-list li {
        margin-right: 12px;
    }

    .banner-content ul li {
        width: 100%;
    }

        .banner-content ul li span {
            font-size: 1.4rem;
        }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .wid-desk-im {
        width: 65%;
        float: right;
    }

    .carlanding-wrap .widget-mn-img {
        top: auto;
        bottom: 0;
    }

    .banner-content ul li span {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .wid-desk-im {
        display: none;
    }

    .wid-mob-im {
        display: block;
        border-bottom: 1px solid #c9c9c9;
    }

    .carlanding-wrap .widget-mn-img {
        position: relative;
        padding-bottom: 5rem;
    }

    .banner-content {
        width: 100%;
    }

    .carlanding-wrap .bannerTitle {
        font-size: 2rem;
        line-height: normal;
        padding-top: 0;
    }

    .carlanding-wrap.section-content {
        padding: 3rem 0 0 0;
    }

    .carlanding-wrap ul li span {
        font-size: 1.4rem;
    }

    .carlanding-wrap .widget-mn-img {
        top: 0;
    }

    .banner-content {
        padding: 0;
    }

    section#why {
        padding-bottom: 6rem !important;
    }

    span.tpSpn {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .ui-submit-btn a:nth-child(2) {
        bottom: -36px;
        width: 88%;
        padding: 7px 0 13px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .banner-content ul li span span {
        display: block;
        font-size: 1.2rem;
        font-weight: 500;
    }

    .wid-mob-content {
        display: block;
    }

    .banner-content {
        width: 100%;
    }

        .banner-content ul li {
            width: 100%;
            margin-right: 0;
            flex: none;
            min-height: auto;
            padding: 0.8rem 1rem;
        }

    .banner-content {
        margin-bottom: 0;
        padding: 0;
    }

        .banner-content ul li img {
            display: none;
        }

        .banner-content ul li span {
            font-weight: 700;
            font-size: 1.3rem;
        }

    #mobile_quoteavail {
        font-size: 1.4rem !important;
    }

    #mobile_quotecnt {
        font-size: 14px;
    }

    .toggle-panel-wrapper .blue-strip {
        height: auto;
        padding: 8px 10px;
    }

        .toggle-panel-wrapper .blue-strip:after {
            top: 18px;
            width: 1rem;
            height: 1rem;
        }

    .section-content h2 {
        font-size: 2.4rem;
    }

    .owl-carousel, .tab-content.active {
        z-index: 0;
    }

    .carlanding-wrap .bannerFormblock {
        border: 1px solid #e6e6e6;
        padding: 2rem;
        margin: 0;
    }

    .wid-mob-content h2 {
        font-size: 1.4rem;
        text-align: center;
        padding: 0;
    }

    .wid-mob-content span.tpSpn {
        display: block;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        text-align: center;
    }

    span.tpSpn:after {
        display: none;
    }

    .carlanding-wrap .widget-mn-img {
        top: auto;
        right: 0;
        bottom: 0;
        position: absolute;
    }

    .wid-mob-im {
        display: block;
    }

    .carlanding-wrap.section-content {
        padding: 1rem 0 8rem 0;
    }

    input.default-input {
        padding: 1.3rem;
    }

    .il-input-block label {
        font-size: 1.3rem;
        left: 15px;
        top: 15px;
    }

    .wid-desk-content {
        display: none;
    }

    .banner-content ul li span img {
        display: inline;
    }

    .banner-content ul li span {
        padding: 0rem 1rem;
    }

    .fixedBtn {
        top: auto;
        bottom: 0;
    }

    .ui-submit-btn a:first-child {
        margin-bottom: 0;
    }

    .ui-submit-btn {
        padding: 5px;
        text-align: center;
    }

    .carlanding-form-block .il-input-block:first-child {
        margin-bottom: 2.5rem;
    }

    .ui-submit-btn a:nth-child(3) {
        text-align: center;
    }

    .toggle-panel-wrapper {
        margin-bottom: 15px;
    }

    .carlanding-wrap .widget-mn-img {
        padding-bottom: 0;
    }

    .wid-mob-im {
        border-bottom: none;
    }

    .ui-submit-btn a:nth-child(3) {
        margin: 2rem 0 1rem;
    }

    .iltc-wrapper {
        display: none !important;
    }

    .il-header .top-menu-wrap.pad-Top {
        padding-top: 0 !important;
    }
}

.fw-widget-wrap {
    width: 100%;
    max-width: 471px;
}

.toggle-panel-wrapper.motor-quote-wrap {
    position: relative;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    left: 0;
    z-index: 2;
}

    .toggle-panel-wrapper.motor-quote-wrap .orange-strip {
        background: #fcf2ce;
        padding: 0 2rem;
        height: auto;
        box-shadow: none;
    }

    .toggle-panel-wrapper.motor-quote-wrap .continue-journey {
        background-color: #e7dbb3;
        position: static;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 0 0 1rem 1rem;
    }

    .toggle-panel-wrapper.motor-quote-wrap .motor-quote-details {
        padding: 1rem 0;
        display: flex;
        justify-content: space-between;
    }

        .toggle-panel-wrapper.motor-quote-wrap .motor-quote-details p span {
            color: #282828;
        }

    .toggle-panel-wrapper.motor-quote-wrap .orange-strip p {
        color: #6c6c6c;
    }

    .toggle-panel-wrapper.motor-quote-wrap p.first-quote span {
        font-weight: 700 !important;
        font-size: 1.2rem;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width: 150px !important;
    }

.motor-veh-prm {
    padding: 0 1rem;
}

    .motor-veh-prm p span {
        display: block;
    }

        .motor-veh-prm p span strong {
            font-weight: 900;
        }

    .motor-veh-prm span#motor-prm-amt, .motor-veh-prm span.rupee-icon {
        font-size: 1.2rem;
        font-weight: 900;
    }

    .motor-veh-prm span#fw-recentquote-gst {
        font-size: 1rem;
        font-weight: 400;
    }

.smallSecondry-btn {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding: 0.7rem 1.6rem;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    outline: none;
    border: 0;
    font-weight: 700;
    text-align: center;
    color: #ec6625;
    border: 1px solid #ec6625;
    background: #fff;
}

    .smallSecondry-btn:hover {
        background: #fff2eb;
        border: 1px solid #ec6625;
        color: #ec6625;
    }

    .smallSecondry-btn:focus-visible {
        background: #fff9f6;
        border: 1px solid #ec6625;
        color: #ec6625;
    }

    .smallSecondry-btn:active {
        background: #fff9f6;
        border: 1px solid #bb5106;
        color: #bb5106;
    }

span#quoteidvAmt {
    font-weight: 600;
}

@media (max-width: 992px) {
    .toggle-panel-wrapper.motor-quote-wrap p.first-quote span {
        width: 120px !important;
    }

    .toggle-panel-wrapper.motor-quote-wrap .orange-strip {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .motor-quote-wrap .orange-strip {
        display: block;
    }
}

@media (max-width: 767px) {
    .motor-veh-name {
        width: 100%;
    }

    .toggle-panel-wrapper.motor-quote-wrap .motor-quote-details {
        flex-wrap: wrap;
        padding: 1rem 0 0;
        align-items: center;
    }

    .motor-veh-prm {
        padding: 1rem 0 0;
    }

    .toggle-panel-wrapper.motor-quote-wrap .continue-journey {
        display: block;
        border-radius: 10px 0px 20px 0px;
        margin: 0;
        margin-left: -10px;
    }

    .motor-veh-btn {
        width: 50%;
    }

    .redirectUrl.smallSecondry-btn {
        display: block;
    }

    .toggle-panel-wrapper.motor-quote-wrap {
        padding: 0 1rem;
    }
}

.scrollTop {
    bottom: 4.5rem;
    right: 0px;
    background: url(../images/scroll_top_icon.png) no-repeat;
    background-position: 0;
    width: 31px;
    height: 40px;
    position: fixed;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    opacity: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.29);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.29);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
}
