@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

.opacity-8 {
    opacity: .08 !important;
}


.btn-green {
    background: #32ea74;
    color: #000;
    font-weight: 600;
    border-radius: 0;
}

.btn-green:hover,
.btn-green-secondary:hover {
    background: #000;
    color: #32ea74;
}

.btn-green-secondary {
    border-width: 2px;
    border-color: #32ea74;
    background: transparent;
    font-weight: 600;
    border-radius: 0;
}

.btn-bluedark {
    background: #142751;
    color: #fff;
    height: auto;
    line-height: normal;
}

.btn-bluedark:hover {
    background: #000;
    color: #fff;
}

.bg-yellow {
    background: #fbfab9;
}

.bg-yellowlight {
    background: #fbfbe2;
}

.bg-greenlight {
    background: #adefd1;
}

.bg-greenlight-extra {
    background: #ccf5e2;
}

.bg-purplelight {
    background: #c4adef;
}

.bg-greylight {
    background: #f3f5f7;
}

.bg-bluelight {
    background: #adefee;
}

.bg-bluedark {
    background: #0c1c40;
}

.border-pink {
    border-color: #f9c0c1 !important;
}

.bg-pale-chestnut {
    background: #d8efad !important;
}

.bg-desert-sand {
    background: #efd1ad !important;
}

.w-250px {
    width: 250px;
}

.form-group .form-control {
    font-weight: 600;
    padding: 0.675rem 0.75rem 0.675rem 0.75rem;
    border-width: 2px;
    border-radius: 0px;
}

label.error {
    font-size: 14px;
    background: #ffe8ec;
    color: #000;
    padding: 10px 15px;
    margin-top: 10px;
    line-height: 16px;
    width: 100%;
}

.ng-invalid.ng-touched {
    border-color: #e93b3b;
}

.svg-icon {
    stroke-width: 0;
    display: inline-block;
    height: 1em;
    width: 1em;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 800;
}

.ol-numbers {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.ol-numbers li {
    counter-increment: item;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    font-weight: 600;
}

.ol-numbers li:before {
    margin-right: 10px;
    content: counter(item);
    text-align: center;
}

.ol-numbers-sec {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.ol-numbers-sec li {
    counter-increment: item;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-left: 25px;
}

.ol-numbers-sec li:before {
    margin-right: 10px;
    content: counter(item);
    text-align: center;
    position: absolute;
    left: 0px;
}

ul.ul-checklist {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.ul-checklist li {
    display: inline-block;
    margin: 10px 0;
    position: relative;
    padding-left: 35px;
    width: 100%;
}

ul.ul-checklist li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/icons/check-arrow.svg) no-repeat;
    width: 25px;
    height: 25px;
    background-size: 25px;
}

ul.ul-crosslist {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.ul-crosslist li {
    display: inline-block;
    margin: 10px 0;
    position: relative;
    padding-left: 35px;
    width: 100%;
}

ul.ul-crosslist li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    background: url(../img/icons/cross-check.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-size: 20px;
}

.rounded-5 {
    border-radius: 2rem !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.ul-bullets {
    list-style: square;
    padding-left: 20px;
}

.ul-bullets li {
    color: #000;
    margin: 15px 0;
    width: 100%;
    list-style: square;
}

.loader-default {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    top: 0;
    z-index: 9;
}

.loader-default:before {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #fff;
    width: 80px;
    height: 80px;
    z-index: 999;
    position: absolute;
}

.loader-default:after {
    content: "";
    background: rgb(0 0 0 / 24%);
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    top: 0;
}

.loader {
    width: 20px;
    height: 40px;
    background:
        linear-gradient(#0000 calc(1*100%/6), #3f66db 0 calc(3*100%/6), #0000 0),
        linear-gradient(#0000 calc(2*100%/6), #32ea74 0 calc(4*100%/6), #0000 0);
    background-size: 10px 400%;
    background-repeat: no-repeat;
    animation: matrix 1s infinite linear;
    z-index: 999;
}

@keyframes matrix {
    0% {
        background-position: 0% 100%, 100% 100%
    }

    100% {
        background-position: 0% 0%, 100% 0%
    }
}

.radio-btn-default {
    padding: 0;
}

.radio-btn-default label {
    display: flex;
}

.radio-btn-default input[type=radio] {
    position: absolute;
    opacity: 0;
}

.radio-btn-default input[type=radio]+.form-check-label:before {
    content: "";
    background: #ffffff;
    border-radius: 100%;
    border: 2px solid #d5d5d5;
    display: inline-block;
    width: 25px;
    min-width: 25px;
    height: 25px;
    position: relative;
    top: -0.2em;
    margin-right: 10px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.radio-btn-default input[type=radio]:checked+.form-check-label:before {
    background-color: #32ea74;
    box-shadow: inset 0 0 0 4px #ffffff;
    border-color: #32ea74;
}

.radio-btn-default input[type=radio]:focus+.form-check-label:before {
    outline: none;
    border-color: #32ea74;
}

.radio-btn-default input[type=radio]:disabled+.form-check-label:before {
    box-shadow: inset 0 0 0 4px #32ea74;
    border-color: #ffffff;
    background: #ffffff;
}

.radio-btn-default input[type=radio]+.form-check-label:empty:before {
    margin-right: 0;
}


.checkbox-btn-default {
    padding: 0;
}

.checkbox-btn-default label {
    display: flex;
}

.checkbox-btn-default input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.checkbox-btn-default input[type=checkbox]+label:before {
    content: "";
    background: #ffffff;
    border-radius: 5px;
    border: 2px solid #d5d5d5;
    display: inline-block;
    width: 25px;
    min-width: 25px;
    height: 25px;
    position: relative;
    top: -0.2em;
    margin-right: 10px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.checkbox-btn-default input[type=checkbox]:checked+label:before {
    box-shadow: inset 0 0 0 4px #ffffff;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 15px;
    font-weight: 900;
    color: #32ea74;
    border-color: #32ea74;
}

.checkbox-btn-default input[type=checkbox]:focus+label:before {
    outline: none;
}

.checkbox-btn-default input[type=checkbox]:disabled+label:before {
    box-shadow: inset 0 0 0 4px #32ea74;
    border-color: #ffffff;
    background: #ffffff;
}

.checkbox-btn-default input[type=checkbox]+label:empty:before {
    margin-right: 0;
}

.radio-button-grp {
    display: flex;
    align-items: center;
    height: 50px;
}

.radio-button-grp input[type="radio"] {
    appearance: none;
    display: none;
}

.radio-button-grp label {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    transition: linear 0.3s;
    background: transparent;
    padding: .5rem 2.25rem .5rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid #3f66db;
}

.radio-button-grp input[type="radio"]:checked+label {
    background-color: #3f66db;
    color: #fff;
    box-shadow: 0 0 0 0rem rgb(50 234 116 / 40%);
}

.radio-button-grp .form-check {
    padding: 0;
}

/*Header*/
Header Area CSS -------------------------- */ .admin-bar.menu_box_hover .header_content:after {
    top: 105px;
}

.header_content {
    position: fixed;
    top: 0;
    width: 100%;
    background: #eaecf8;
    border-bottom: 1px solid #EAECF8;
}

.space-header {
    height: 64px;
}

@media (max-width:1400px) {
    .space-header {
        height: 46px;
    }
}

@media (max-width:1400px) {
    .space-header {
        height: 46px;
    }
}

.header_area {
    left: 0;
    position: relative;
    width: 100%;
    z-index: 99;
    top: 0;
}

.navbar-brand {
    height: auto;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.topmenu {
    position: inherit;
}

.menu_area .navbar-brand:hover,
.menu_area .navbar-brand:focus {
    color: #fff
}

.menu_area {
    z-index: 2
}

.menu_area .navbar-nav {
    width: 100%;
    z-index: 9;
    font-family: 'Open Sans', sans-serif;
}

@media (min-width:992px) {
    .menu_area .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.navbar-menu {
    text-align: center;
    width: 100%;
}

.menu_area .navbar-nav>li {
    display: inline-block;
    float: none;
    position: inherit;
}

.menu_area .navbar {
    padding-left: 0;
    margin-bottom: 0;
    border: 0;
    background: none;
    position: inherit;
    padding: 0;
}

.menu_area #nav .nav-link {
    color: #142751;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    border-radius: 0;
    padding: 20px 30px;
    position: relative;
}

.menu_area #nav .nav-item:hover,
.menu_area #nav li.active {
    color: #3f66db;
    background: #fff;
}

.menu_area .navbar-nav>li .submenu ul li.active {
    background: none !important;
    color: inherit !important;
}

.menu_area #nav .nav-item:hover a.nav-link,
.menu_area #nav li.active .nav-link,
.menu_area #nav .nav-item.active span.drp_arrow {
    color: #3f66db;
}

.menu_area #nav .nav-item span.drp_arrow {
    display: none;
}

.menu_area #nav .nav-link:after {
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 18px;
    font-weight: bold;
    right: 10px;
    position: absolute;
}

.header_area.sticky .menu_area #nav .nav-item span.drp_arrow {
    right: 5px;
}

.menu_area #nav .nav-item:hover span.drp_arrow,
.menu_area #nav .nav-item:hover .nav-link:after {
    color: #3f66db;
    transform: rotate(180deg);
    transition: all 0.4s ease;
}

.menu_area #nav .nav-link.nonehover:after {
    display: none;
}

.menu_area #nav .nav-item span.drp_arrow i.fa.fa-angle-down {
    font-weight: bold;
}

/*SubMenu*/
.submenu {
    position: absolute;
    left: 0;
    right: 0;
    min-width: 520px;
    background: #ffffff;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    display: none;
    -webkit-transition: 200ms ease;
    -moz-transition: 200ms ease;
    -o-transition: 200ms ease;
    transition: 200ms ease;
}

.submenu.singlerow {
    min-width: 230px;
}

@media (min-width: 991px) {
    .menu_area .navbar-nav>li:hover .submenu {
        visibility: visible;
        display: block;
    }
}

.menu_area .navbar-nav>li .submenu ul {
    max-width: 300px;
}

.menu_area .navbar-nav>li .submenu ul li {
    text-align: left;
    padding: 5px 0;
    list-style: none;
}

.menu_area .navbar-nav>li .submenu ul li a {
    color: #212529;
    font-weight: 600;
    font-size: 14px;
}

.menu_area .navbar-nav>li .submenu ul li a:hover {
    color: #3f66db;
}

.menu_area .navbar-nav>li .submenu ul li.title-menu {
    color: #232882;
    font-weight: 800;
    font-size: 16px;
}

.mega-menu-icons {
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgba(191, 211, 226, 0.56);
    background: #fff;
    padding: 20px;
    text-align: center;
}

.mega-menu-icons span {
    display: block;
    margin: 15px 0;
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.menu_area .submenu .title-menu {
    color: #232882;
    font-weight: 800;
    font-size: 16px;
    padding: 5px 0;
    line-height: 1.5;
    display: block;
}

.mega-menu-icons h3 {
    font-size: 18px;
    margin-top: 0;
}

.mega-menu-icons h3 a {
    color: #232882;
}

/*Footer*/
.footer .toplink {
    margin: 0 0 30px;
    text-align: center;
}

.footer .toplink ul {
    padding: 0;
    list-style: none;
}

.footer .toplink ul li {
    display: inline-block;
}

.footer .toplink ul li a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.footer .toplink ul li a:hover {
    color: #1fea67;
}

.footer .toplink ul li::after {
    content: "|";
    margin: 0 10px;
    color: #fff;
}

.footer .toplink ul li:last-child::after {
    display: none;
}

.footer-link-title {
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-link h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.footer-link ul {
    padding: 0;
    list-style: none;
}

.footer-link ul li {
    margin-bottom: 5px;
}

.footer-link ul li a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.footer-link ul li a:hover {
    color: #1fea67;
}

.us-footer-title {
    font-size: inherit;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0;
}

.us-footer-title span.text {
    font-size: 20px;
    position: relative;
    color: #fff;
    display: inline-block;
}

.footer .safe-logos {
    margin: 0 0 50px;
    text-align: center;
}

.safehand {
    margin-top: 20px;
    display: inline-block;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}

.footer .safehand .logo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer .safehand .logo-content a {
    color: #fff;
    opacity: 1;
    padding: 0 15px;
    vertical-align: top;
    display: inline-block;
    text-decoration: none;
}

.footer .safehand .logo-content .review-trusted {
    height: 45px;
}

.footer-social {
    margin-bottom: 30px;
    text-align: center;
}

.footer-social ul {
    padding: 0;
    list-style: none;
}

.footer-social ul li {
    margin: 0 5px;
    display: inline-block;
}

.footer-social ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    border: 2px solid #fff;
    text-decoration: none;
}

.footer-social ul li a:hover {
    background: #1fea67;
    border: 2px solid #1fea67;
}

.footer-social ul li a svg {
    fill: #fff;
}

.footer-social ul li a:hover svg {
    fill: #0c1c40;
}

.footer-text p {
    color: #fff;
    font-size: 14px;
}

/*Hero Banner*/


/* .hero-banner .hero-img img {
    margin-bottom: -3rem;
} */

@media (min-width:992px) {
    .postcode-box {
        max-width: 550px;
    }
}

.postcode-box h1 {
    font-size: 40px;
    font-weight: 800;
}

.postcode-box h2 {
    font-size: 21px;
    font-weight: 800;
}

.postcode-box form {
    display: flex;
    margin-top: 30px;
    margin-bottom: 10px;
}

.postcode-box form .postcode-field-container {
    width: 100%;
}

.postcode-box form input.form-control {
    background: #fff;
    height: 70px;
    border-radius: 0;
    border: 0;
    font-size: 18px;
    font-weight: 700;
}

.postcode-box form .btn {
    height: 70px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    max-width: 220px;
    width: 100%;
}

.address_dropdown-list {
    position: relative;
}

.address_dropdown {
    background-color: white;
    width: 550px;
    border-radius: 0;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    z-index: 99;
    list-style: none;
    padding: 5px 5px 7px 5px;
}

body.filter-open {
    position: relative;
    overflow: hidden;
}

body.filter-open:after {
    content: "";
    opacity: 0.5;
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.address_dropdown ul {
    max-height: 40vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.address_dropdown ul li {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #3F66DB;
    font-size: 14px;
    cursor: pointer;
    color: #000;
    font-style: normal;
    font-weight: 500;
}

.address_dropdown ul li:hover {
    background-color: #E6EAFB;
}

.suppliers-logos {
    margin-top: 30px;
}

.suppliers-logos ul {
    display: grid;
    width: 100%;
    list-style: none none;
    margin: 0;
    padding: 0;
    gap: 15px;
    grid-template-columns: repeat(6, 1fr);
}

.suppliers-logos ul li {
    background: #fff;
    box-shadow: 0 0 15px 0 rgba(191, 211, 226, 0.56);
    padding: 15px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suppliers-logos ul li img {
    max-height: 50px;
    width: 100%;
}

.postcode-box .fs-7 {
    font-size: 14px;
}

/*Review*/

.reviewbar-section {
    padding: 20px 0;
}

.reviewbar-col {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.reviewbar-col strong {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    margin-right: 10px;
}

.reviewbar-col.trustpilot-logo a>strong {
    color: #009262
}

.reviewbar-col.reviewuk-logo a>strong {
    color: #14a032;
}

.reviewbar-col a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.reviewbar-col img {
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    width: auto;
}

.reviewbar-col img.trustpilot-logo,
.reviewbar-col img.review-logo {
    margin-left: 5px;
    width: auto;
}

.total-review-text span {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
}

/*Accordion*/



.accordion-tab .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.accordion-tab .accordion-button:not(.collapsed),
.accordion-tab .accordion-button:focus {
    background: none;
    box-shadow: 0 0 0;
}

.accordion-button::after {
    width: 2.25rem;
    height: 2.25rem;
    background-position: center;
    background-color: #f3f6ff;
    background-size: 0.825rem;
    transition: all .35s;
    border-radius: 50%;
}

.accordion-tab .accordion-body {
    color: #000;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
}

/*Testimonial*/
.testimonial-title {
    margin-bottom: -40px;
}

.testimonial-main {
    display: flex;
    align-items: end;
    position: relative;
    justify-content: space-between;
}

.testimonial-main:before {
    content: "";
    background: #fff;
    left: 0;
    right: 0;
    position: absolute;
    width: 80%;
    height: calc(100% - 63px);
}

.testimonial-content {
    max-width: 700px;
    position: relative;
    padding: 50px 50px 50px 60px;
}

.testimonial-content:before {
    position: absolute;
    left: 0;
    background: #c4adef;
    width: 10px;
    height: 100%;
    content: "";
    max-height: 100%;
    top: 0;
}

.testimonial-profile {
    position: relative;
}

.testimonial-profile img {
    width: 100%;
    max-width: 400px;
}

.testimonial-main1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.testimonial-main1:after {
    background: #bdcaf1;
    content: "";
    width: 400px;
    height: 100%;
    position: absolute;
    border-radius: 30px;
}

.testimonial-profile1 {
    position: relative;
    bottom: -50px;
    z-index: 1;
    border: 4px solid #fff;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    text-align: center;
}

.testimonial-profile1 img {
    max-width: 160px;
    margin-top: -35px;
}

.testimonial-content1 {
    max-width: 900px;
    border-radius: 30px;
    box-shadow: 0 0 0 0.25rem #bdcaf1;
    padding: 35px;
    background: #fff;
    z-index: 1;

}

.testimonial-content1 p {
    font-size: 14px;
    line-height: 22px;
}

.testimonial-profile-details1 {
    z-index: 1;
    margin: 25px 0;
}

.testimonial-profile-details1 p strong {
    display: block;
    text-align: center;
}

.testi-content {}


.redirect-section-link ul {
    display: grid;
    width: 100%;
    list-style: none none;
    margin: 0;
    padding: 0;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width:991px) {
    .redirect-section-link ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:767px) {
    .redirect-section-link ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:575px) {
    .redirect-section-link ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.redirect-section-link ul li {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redirect-section-link ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.tab-section .nav-tabs {
    border-bottom: 1px solid #1fe665;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

.tab-section .nav-tabs li {
    width: 100%;
}

.tab-section .nav-tabs .nav-link {
    margin-bottom: 0;
    border: 0;
    color: #000;
    font-weight: 600;
    padding: 15px;
    width: 100%;
}

.tab-section .nav-tabs .nav-link.active {
    background: #1fe665;
}

/*Inner pages*/
.main-heading h1,
.main-heading h2 {
    font-size: 43px;
    font-weight: 800;
}

@media (min-width: 1199px) {
    .pe-lg-100 {
        padding-right: 100px !important;
    }
}

.address-info .change-address {

    font-size: 13px;
}

.box-design .icon-box {
    display: flex;
    font-size: 14px;
    align-items: center;
    width: 100%;
    font-weight: 700;
}

.box-design .icon-box svg {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    margin-right: 15px;

}

.box-design .change-button {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.box-design .supplier-tarrif,
.box-design .spend,
.box-design .usage,
.box-design .usage-info {
    font-size: 13px;
    display: inline-block;
}

.box-design .spend-title,
.box-design .usage-title {
    font-size: 16px;
}

.box-design .supplier-tarrif p {
    font-size: 14px;
}

.next.arrow-btn {
    display: flex;
    font-size: 20px;
    text-transform: uppercase;
    align-items: center;
    font-weight: 800;
    justify-content: center;
    padding: 15px 0;
    gap: 20px;
}

.next-btn-arrow {
    transform: rotate(0.25turn);
    height: 30px;
    width: 30px;
}

.next.arrow-btn:hover .next-btn-arrow path {
    fill: #32ea74;
    stroke: #32ea74;
}

.sidebar-usage.main-heading h1 {
    font-size: 20px;
}

.sidebar-usage p {
    font-size: 14px;
}

.sidebar-usage p .change-button {
    color: #000;
}

.sidebar-usage .ul-checklist li {
    font-size: 14px;
}

.figurbutton li {
    background: transparent;
    color: #000;
    border-color: #dee2e6;
    padding: 5px 20px;
    border-width: 2px;
}

.figurbutton li:hover {
    color: #3f66db;
    background: #fff;
    border-color: #3f66db;
}

.figurbutton li.active {
    background: #3f66db;
    color: #ffffff;
    border-color: #3f66db;
}


.modal.modal-fixed .modal-dialog {
    transform: none;
    position: fixed;
    right: 0;
    top: 0;
    margin: 0;
    bottom: 0;
    height: 100%;
    max-width: 450px;
}

.modal.modal-fixed .modal-dialog .modal-content {
    background: #f3f5f7;
    border-radius: 0;
    border: 0;
}

.modal-body .md-desc {
    border: 1px solid #dddddd;
    font-size: 14px;
    padding: 15px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-label {
    display: block;
    font-weight: 500;
    font-size: 14px;
}


.modal-body .form-group .form-select,
.modal-body .form-group .form-control {
    font-weight: 600;
    padding: 0.675rem 2.25rem 0.675rem 0.75rem;
    border-width: 2px;
    border-radius: 0;

}

.usage-inpt-grp {
    display: flex;
    align-items: center;
    position: relative;
}

.usage-inpt-grp span {
    position: absolute;
    right: 10px;
    font-size: 15px;
    background: #f3f5f7;
    border-radius: 5px;
    padding: 2px 10px;
}


/*Result page*/
.back-drawer-content .back-btn {
    color: #000;
    font-size: 14px;
}

.back-drawer-content .calc-text {
    max-width: 700px;
}

.filter-row {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.filter-row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.filter-field .form-check {
    margin-right: 0;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.filter-field .form-check .form-check-input {
    margin-right: 10px;
}

.filter-field .form-check .form-check-label {
    font-size: 14px;
    cursor: pointer;
}

.filter-field .checkbox-block {
    margin-right: 0;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.filter-field .checkbox-block input {
    margin-right: 10px;
}

.filter-field .checkbox-block label {
    font-size: 14px;
    cursor: pointer;
}

.result-row {
    background: #fff;
    margin-bottom: 30px;
    cursor: pointer;
}

.result-row:hover {
    border: 1px solid #232882 !important;
    box-shadow: 0 18px 25px -8px rgb(0 0 0 / 14%), 0 8px 8px -8px rgb(0 0 0 / 20%);
}

.result-supplier-name .logo img {
    max-width: 100px;
    max-height: 50px;
}

.result-supplier-details .tarrif-name {
    font-size: 14px;
    font-weight: 600;
}

.results-tariff-details .other-text .text-row {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* display: flex; */
    align-items: center;
    font-size: 14px;
    justify-content: space-between;
}

.results-tariff-details .other-text .text-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.results-tariff-details .cost-box {
    display: inline-block;
    width: 100%;
    border-radius: 5px;
}

.cost-box .monthly-cost span,
.cost-box .annual-cost span {
    font-size: 18px;
    line-height: 20px;
    display: block;
}

.cost-box .monthly-cost strong.cost-price,
.cost-box .annual-cost strong.cost-price {
    font-size: 18px;
    color: #142751;
}

.results-tariff-details .cost-box .saving-cost-text span {
    font-size: 13px;
    line-height: 18px;
    display: block;
}

.tarrif-detail-modal .modal-dialog {
    transform: none;
    position: fixed;
    right: 0;
    top: 0;
    margin: 0;
    bottom: 0;
    height: 100%;
    max-width: 800px;
    width: 100%;
}

.tarrif-detail-modal .modal-dialog .modal-content {
    border-radius: 0;
    border: 0;
    position: static;
}

.tarrif-detail-modal .modal-header {
    position: absolute;
    left: -39px;
    background: #ffff;
    border-radius: 0;
    padding: 0;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.tarrif-detail-modal .modal-header .btn-close {
    margin: 0;
    padding: 0;
}

.tarrif-full-detail {
    font-size: 14px;
}

.tarrif-full-detail ul {
    list-style: none;
    padding: 0;
}

.tarrif-full-detail ul li {
    background: transparent;
    color: #000;
    border-color: #dee2e6;
    padding: 5px 20px;
    border-width: 2px;
}

.tarrif-full-detail ul li:hover {
    background: #fff;
    color: #3f66db;
    border-color: #3f66db;
}

.tarrif-full-detail ul li.active {
    background: #3f66db;
    color: #fff;
    border-color: #3f66db;
}

.tarrif-full-detail .detail-row {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 1rem;
}

.about-text a {
    color: #000;
    text-decoration: none;
}

/*Future Supply*/
.future-supply {}

.future-supply .form-group .form-select,
.future-supply .form-group .form-control {
    border: 1px solid #C6C6C6;
    height: 55px;
    box-sizing: border-box;
    border-radius: 7px;
    cursor: pointer;
}

.future-supply .form-group .form-select:hover,
.future-supply .form-group .form-control:hover {
    border: 1px solid #232882;
}

.direct-debit {
    display: flex;
    justify-content: space-between;
}

.direct-debit img.img-fluid {
    max-width: 110px;
    margin-left: 15px;
}

.future-sidebar {
    top: 6rem;
    z-index: 1;
}

.review-sidebar strong {
    font-size: 70px;
    line-height: normal;
}

.review-sidebar span {
    display: block;
    line-height: 20px;
}

.invalid-fields-error a {
    text-decoration: none;
    color: #000
}

.fn-error {
    border: 1px solid red;
    border-radius: 14px;
    width: auto;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 350px;
    padding: 5px;
    font-size: 14px;
    background: rgba(238, 112, 112, 0.2);
    color: #000;
}

.header-switched-box h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.header-switched-box .switched-box {
    background: #fff;
    text-align: center;
    min-height: 175px;
    padding: 20px;
    vertical-align: middle;
    border-radius: 10px;
}

.header-switched-box .suppliers-logo img {
    width: auto;
    margin-bottom: 10px;
    max-height: 75px;
}

.header-switched-box .switched-box p {
    display: block;
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 0;
}

.header-switched-box .saving-price p span {
    display: block;
}

.header-switched-box .saving-price p span.thank-you-summary-savings-amount {
    font-size: 40px;
    font-weight: 700;
    color: #232882;
}

.header-switched-box .saving-price p span {
    display: block;
}

.header-switched-box .summary-reference span {
    display: block;
    font-size: 25px;
    color: #232882;
    font-weight: 700;
}

.header-switched-box .summary-reference {
    padding-top: 50px;
}

.section-title h2 {
    margin-top: 0;
    color: #232882;
    font-size: 26px;
    margin-bottom: 10px;
}

.section_padding_70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.white-bg {
    background: #fff;
}

.thanks-left {
    background: #fff;
    padding: 50px;
    border: 2px dashed #1fea67;
    text-align: center;
    border-radius: 15px;
}

.thanks-left h {
    font-size: 27px;
}


.mortgage-thankyou .right-side-mortgage {
    box-shadow: 0px 0px 15px 0px rgba(191, 211, 226, 0.56);
    border-radius: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    background: #fff;
}

.mortgage-thankyou .our-services {
    display: inline-block;
    width: 49%;
    padding-right: 20px;
    border-right: 2px solid #eaecf8;
}

.mortgage-thankyou .our-services:last-child {
    border-right: 0;
}

.mortgage-thankyou .our-services h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.mortgage-thankyou .our-services h3 {
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
    line-height: 33px;
    color: #3f66db;
}

.thanks-header h3,
.facebook-quate h3,
.reveiw-quate h3 {
    color: #232882;
    font-weight: bold;
    margin: 30px 0;
}

.product-box1 .img {
    position: relative;
}

.product-box1 .img>a {
    position: relative;
    display: inline-block;
    width: 100%
}

.product-box1 .img>a img {
    width: 100%
}

.product-box1 {
    box-shadow: 0px 0px 15px 0px rgba(191, 211, 226, 0.56);
    text-align: center;
    margin-bottom: 27px;
    background: #fff;
}

.product-box1 .info {
    padding: 20px 0 0px 0;
}

.product-box1 .info .hd {
    color: inherit;
    font-size: 20px;
    margin: 0;
    margin-bottom: 20px;
}

.product-box1 .price {
    background-color: rgba(0, 0, 0, 0.46);
    border-radius: 0;
    color: rgb(63, 102, 219);
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: absolute;
    display: inline-block;
    bottom: 0;
    right: 0;
    left: 0;
}

.product-box1 .price span {
    width: 100%;
    color: #fff;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.857143%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.accordion-tab .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.accordion-tab .accordion-button:not(.collapsed),
.accordion-tab .accordion-button:focus {
    background: none;
    box-shadow: 0 0 0;
}

.accordion-button::after {
    width: 2.25rem;
    height: 2.25rem;
    background-position: center;
    background-color: #efd1ad;
    background-size: 0.825rem;
    transition: all .35s;
    border-radius: 50%;
}

.accordion-tab .accordion-body {
    padding-right: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    line-height: 30px;
}

.energy-landing-page h3,
.energy-landing-page h4 {
    color: #232882;
}

.energy-landing-page .footer .footer-link h3 {
    color: #fff;
}

.energy-content .border-box {
    padding: 20px;
    height: 100%;
    text-align: center;
}

.energy-content .border-box h3 {
    font-size: 20px;
    font-weight: bold;
}


.h5 {
    font-weight: 800 !important;
}

.text-blue {
    color: #232882;
}

.table-responsive .table {
    margin-bottom: 0
}

.table-responsive .table thead tr td {
    background: #eaecf8;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    vertical-align: middle
}

.table-responsive .table,
.table-responsive table tr th,
.table-responsive table tr td {
    border: 1px solid #cfd1da
}

.table-responsive .table tbody tr:nth-child(odd) {
    background: #f5f9fc
}

.table-responsive .table tr th {
    background: #eaecf8;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    vertical-align: middle
}

.table-responsive .table tr td {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    vertical-align: middle
}

.table-responsive .table tbody tr:nth-child(2n+1) {
    background: #f5f9fc;
}

.box-white-shadow {
    box-shadow: 9.642px 11.491px 0 0 rgba(188, 203, 231, 0.56);
    background: #fff;
    border-radius: 20px;
}

.looking-deal-content .banner-img {
    padding: 20px;

}

.looking-deal-content .banner-img img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
}

.looking-deal-content .banner-img h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
    color: #232882;
    font-weight: 800;
}

.breadcrumb {
    background: 0 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    list-style: none;
    border-radius: .25rem;
}

a.change-button {
    text-decoration: underline;
}

@media(max-width:990px) {

    .future-sidebar .review-sidebar strong {
        font-size: 50px;
        line-height: normal;
    }
}

@media(max-width:800px) {
    .tarrif-full-detail .detail-container {
        overflow-x: auto;
    }

    .tarrif-full-detail .detail-container .elec-detail,
    .tarrif-full-detail .detail-container .gas-detail {
        min-width: 700px;
    }

    .future-sidebar .review-sidebar {
        text-align: center;
    }

    .future-sidebar .review-sidebar .img-fluid {
        max-width: 70%;
    }
}

@media(max-width:768px) {
    .address_dropdown {

        width: 100%;
    }

}







/* custom css */
.sign-in-form-home-energy,
.emailsent-screen {
    border: 1px solid #d9d9d9;
    margin-bottom: 20px;
}

.sign-in-form-home-energy p,
.emailsent-screen p {
    font-size: 14px;
}

.sign-in-form-home-energy button {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.policy_text {
    text-align: center;
}

.policy_text small {
    font-size: .700em;
}

.ul-new-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ul-new-list li {
    padding: 10px 0px;
    margin-bottom: 10px;
    cursor: pointer;
    border-bottom: 1px solid #d9d9d9;
}

.ul-new-list li a {
    color: #142751;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ul-new-list li.active {
    border-left: 3px solid #000;
}

.ul-new-list li.active a {
    margin-left: 10px;
}

.account-svg {
    align-items: center;
    gap: 10px;
    background: #142751;
    padding: 7px 15px;
    color: #fff;
    border-radius: 7px;
    width: 120px;
}

.sing-in-user-detail {
    width: 280px;
}

.box_shadow_sidebar {
    overflow: hidden;
    height: 100%;
}

.main_list_icon {
    display: flex;
    align-items: center;
    gap: 10px;
}


.all_service_provider_area {
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin-top: 24px;
}

.all_service_provider_area .service_provider_icon {
    padding: 13px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0.1em 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
    width: 75px;
    height: 75px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.service_provider_icon i {
    font-size: 20px;
}

.all_service_provider_area a {
    color: #142751;
}

span.see_all {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width:1200px) {
    .all_service_provider_area .service_provider_icon {
        display: flex;
        padding: 10px;
    }

    .all_service_provider_area {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width:400px) {
    .all_service_provider_area {
        gap: 15px;
    }
}

.energy-detail.table-responsive h2 {
    font-size: 24px;
}

a.email-sending-btn {
    display: inline-flex;
    justify-content: space-between;
    border-bottom: 1px solid #142751;
    color: #142751;
    padding-bottom: 5px;
}

.bg-yellowlight.min-hight,
.bg-greenlight-extra.min-hight {
    /* height: 100%; */
    /* min-height: 100%; */
    display: inline-grid;
    gap: 5px;
    /* width: 100%; */
    /* justify-content: center; */
    /* align-items: center; */
    text-align: center;
    border-radius: 5px;
}


.bg-greenlight-extra .cost-price {
    font-size: 26px !important;
    line-height: 26px;
}

.result_main_header h1 {
    font-size: 30px;
}

@media only screen and (max-width:500px) {

    .bg-yellowlight.min-hight,
    .bg-greenlight-extra.min-hight {
        min-height: 100%;
        gap: 1px;
        width: 100%;
    }

    .bg-greenlight-extra .cost-price {
        font-size: 22px !important;
    }

    .cost-box .monthly-cost span,
    .cost-box .annual-cost span {
        font-size: 13px;
    }

    .main-heading.result_main_header {
        text-align: center;
    }
}

.card-hover-style:hover {
    box-shadow: 0 18px 25px -8px rgb(0 0 0 / 14%), 0 8px 8px -8px rgb(0 0 0 / 20%);
}










/* solar quotes custom css */

.page-template-solar-quote h3 {
    font-size: 1.6rem;
}

.page-template-solar-quote p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.page-template-solar-quote .form-control {
    border: 1px solid #e8e8e9;
    font-size: 15px !important;
    border-radius: 10px;
    text-align: center;
}

.page-template-solar-quote .form-control {
    border: 1px solid #b2b6cc;
    margin-top: 0;
    color: #000;
}

.page-template-solar-quote .form-control {
    height: 72px;
    font-size: 16px;
    font-weight: normal;
    vertical-align: top;
    border: 0;
    display: inline-block;
    padding: 5px 10px;
    color: #000000;
    width: 100%;
}

.page-template-solar-quote .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 10px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.page-template-solar-quote .form-control:focus {
    color: #142751 !important;
    box-shadow: none;
    border: 3px solid #3f66db !important
}

.page-template-solar-quote .next.arrow-btn {
    display: flex;
    font-size: 17px;
    text-transform: none;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    padding: 16px 0;
    gap: 9px;
    font-weight: 600;
}

.page-template-solar-quote .next-btn-arrow {
    height: 20px;
    width: 20px;
}

.page-template-solar-quote .form-select {
    height: 60px;
    padding: .375rem .75rem;
    font-size: 15px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 10px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-weight: normal;
}

.page-template-solar-quote .form-check {
    background: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
}

.page-template-solar-quote .form-check-input {
    float: none;
    margin-left: 0;
}

.page-template-solar-quote span.quote-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.page-template-solar-quote .back-anchor {
    color: #142751;
    font-size: 12px;
}

.page-template-solar-quote .back-anchor.button {
    color: #fff;
    font-size: 12px;
    background: #142751;
    padding: 5px 10px;
    border-radius: 5px;
}

.page-template-solar-quote .card {
    padding: 1rem;
}

.page-template-solar-quote .card .card-body {
    padding: 0;
}

.page-template-solar-quote .special_tag-catagory {
    background: #E9EDF0;
    padding: 10px;
    font-size: 13px;
    border-radius: 50px;
}

.page-template-solar-quote input::-webkit-outer-spin-button,
.page-template-solar-quote input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.page-template-solar-quote .agree-section .form-check {
    background: transparent;
    padding: 10px 0;
    display: flex;
    border-radius: 0;
    border: none;
    gap: 16px;
}

.page-template-solar-quote-percentage-area .progress_bar_percentage {
    background: #eaecf8;
    border-radius: 25px;
    height: 10px;
    display: flex;
    align-items: center;
    padding: 0;
    max-width: 450px;
    margin: 25px auto;
}

.page-template-solar-quote-percentage-area .progress_bar_percentage .progress {
    border-radius: 25px;
    background: #1fea67;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 10px;
    color: #000;
    text-indent: 9999px;
}



.page-template-solar-quote .accordion-item_conservation {
    background: transparent;
}

.page-template-solar-quote .accordion-item_conservation .accordion-button:not(.collapsed) {
    background: transparent;
    padding: 20px 5px;
}

.page-template-solar-quote .accordion-item_conservation .accordion-button:not(.collapsed)::after,
.page-template-solar-quote .accordion-item_conservation .accordion-button::after {
    display: none;
}

.page-template-solar-quote .accordion-item_conservation .accordion-button.collapsed {
    padding: 20px 5px;
    background: transparent;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 13px;
    padding: 10px;
}










/* Boiler quotes custom css */

.page-template-boiler-quote .wellcome-heading>h1 {
    font-size: 50px;
    font-weight: 600;
    color: #142751;
    position: relative;
    z-index: 3;
    margin-bottom: 30px;
}

.page-template-boiler-quote .details_form h3 {
    font-size: 20px;
}

.page-template-boiler-quote .details_form p {
    font-size: 13px;
}

.page-template-boiler-quote .form-check {
    background: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    font-size: 18px;
}

.page-template-boiler-quote .details_form .form-check-input {
    float: none;
    margin-left: 0;
}

.page-template-boiler-quote .details_form .form-control {
    border: 1px solid #e8e8e9;
    font-size: 15px !important;
    border-radius: 10px;
    text-align: center;
}

.page-template-boiler-quote .details_form .form-control {
    border: 1px solid #b2b6cc;
    margin-top: 0;
    color: #000;
}

.page-template-boiler-quote .details_form .form-control {
    height: 60px;
    font-size: 16px;
    font-weight: normal;
    vertical-align: top;
    border: 0;
    display: inline-block;
    padding: 5px 10px;
    color: #000000;
    width: 100%;
}

.page-template-boiler-quote .details_form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 10px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.page-template-boiler-quote .details_form .form-control:focus {
    color: #142751 !important;
    box-shadow: none;
    border: 3px solid #3f66db !important
}

.page-template-boiler-quote .details_form .next.arrow-btn {
    display: flex;
    font-size: 15px;
    text-transform: none;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    padding: 15px 30px;
    gap: 9px;
    font-weight: 600;
}

.page-template-boiler-quote .details_form .next-btn-arrow {
    height: 20px;
    width: 20px;
}

.page-template-boiler-quote-percentage-area .progress_bar_percentage {
    background: #eaecf8;
    border-radius: 25px;
    height: 10px;
    display: flex;
    align-items: center;
    padding: 0;
    max-width: 450px;
    margin: 25px auto;
}

.page-template-boiler-quote-percentage-area .progress_bar_percentage .progress {
    border-radius: 25px;
    background: #1fea67;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 10px;
    color: #000;
    text-indent: 9999px;
}





/* home energy quotes css */

.page-template_energy_quotes h1 {
    font-size: 25px;
    font-weight: 800;
}

.page-template_energy_quotes h2 {
    font-size: 20px;
    font-weight: 800;
}

.page-template_energy_quotes h3 {
    font-size: 16px;
}

.page-template_energy_quotes .quote_info_section select {
    height: 50px;
    border: 1px solid #C6C6C6;
}

.page-template_energy_quotes .quote_info_section select:hover {
    border: 1px solid #232882;
}

.page-template_energy_quotes .quote_info_section .progress_bar_percentage {
    background: #eaecf8;
    border-radius: 25px;
    height: 6px;
    display: flex;
    align-items: center;
    padding: 0;
    width: 100%;
}

.page-template_energy_quotes .quote_info_section .progress_bar_percentage .progress {
    border-radius: 25px;
    background: #1fea67;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 6px;
    color: #000;
    text-indent: 9999px;
}

.page-template_energy_quotes .modal .modal-header button.close {
    border: none;
    background: transparent;
    font-size: 25px;
}

.page-template_energy_quotes a.modal_popup_address {
    color: #142751;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
    align-self: end;
    justify-content: end;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-template_energy_quotes .form-check-input:focus {
    border-color: #142751;
    outline: 0;
    box-shadow: 0 0 0 0.05rem rgb(50 234 116 / 10%);
}

.page-template_energy_quotes .form-check.confirmation_check {
    border: 1px solid #d9d9d9;
    padding: 10px 2.5em;
    border-radius: 5px;
    font-size: 13px;
}

.page-template_energy_quotes .quote_info_section .details_disclaimer p {
    font-size: 11px;
    color: #706d6d;
    line-height: 16px;
    margin-bottom: 15px !important;
}

.page-template_energy_quotes .quote_info_section .next.arrow-btn {
    display: flex;
    font-size: 15px;
    text-transform: uppercase;
    align-items: center;
    font-weight: 700;
    justify-content: center;
    padding: 15px 0;
    gap: 10px;
}

.nomenu-header .navbar-expand-lg {
    justify-content: space-between;
}

.nomenu-header .header_content {
    min-height: 64px;
}

.page-template_energy_quotes .quote_info_section .next-btn-arrow {
    transform: rotate(0.25turn);
    height: 20px;
    width: 20px;
}

.page-template_energy_quotes .quote_info_section .back-anchor.button {
    color: #142751;
    font-size: 12px;
    background: transparent;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template_energy_quotes .quote_info_section .back-anchor.solar_back{
    justify-content: end !important;
}

.page-template_energy_quotes .quote_info_section span.quote-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.page-template_energy_quotes .quote_info_section .form-check {
    background: #fff;
    padding: 15px;
    display: flex;
    border-radius: 7px;
    border: 1px solid #C6C6C6;
    font-size: 15px;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.page-template_energy_quotes .quote_info_section .form-check:hover {
    border: 1px solid #232882;
}

.page-template_energy_quotes .quote_info_section .form-check.check-confirm {
    background: #fff;
    padding: 12px;
    display: flex;
    border-radius: 7px;
    border: 1px solid #142751;
    font-size: 14px;
    justify-content: space-evenly;
}

.page-template_energy_quotes .quote_info_section .form-check-input {
    float: none;
    margin-left: 0;
    font-size: 20px;
    margin-top: 0;
    border: 1px solid #C6C6C6;
}

.page-template_energy_quotes .quote_info_section .frequancy .form-check {
    padding: 0px;
    border: 0px;
}

.page-template_energy_quotes .quote_info_section .form-control.static_lable {
    position: relative;
    height: 50px;
    border: 1px solid #C6C6C6;
}

.page-template_energy_quotes .quote_info_section .form-control {
    height: 50px;
    border: 1px solid #C6C6C6;
}

.page-template_energy_quotes .quote_info_section .form-control:hover {
    border: 1px solid #232882;
}

.page-template_energy_quotes .quote_info_section .static-value_label {
    position: absolute;
    right: 5%;
    font-weight: normal;
    font-size: 16px;
    color: #142751;
    top: 2px;
    bottom: 0;
    z-index: 6;
}

.relative_postion {
    position: relative;
}

.page-template_energy_quotes .quote_info_section .static-value_label span {
    font-size: 25px;
}

.page-template_energy_quotes .quote_info_section ul.ul-checklist {
    font-size: 13px;
    line-height: 1;
}

.page-template_energy_quotes .quote_info_section ul.ul-checklist li:before {
    content: "";
    position: absolute;
    left: 0;
    top: -3px;
    background: url(../img/icons/check-arrow.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-size: 20px;
}

.page-template_energy_quotes .informatic_area {
    padding-left: 100px;
}
.page-template_energy_quotes .form-select:focus {
  border-width: 3px;
  border-color: #3f66db;
}
.form-select:focus {
  border-color: #3f66db;
  outline: 0;
  box-shadow: 0 0 0 0rem rgb(50 234 116 / 40%);
}
.page-template_energy_quotes .quote_info_section .form-check:hover, .page-template_energy_quotes .quote_info_section .form-check.active,.page-template_energy_quotes .quote_info_section .form-control:hover  {
  border: 1px solid #232882;
  box-shadow: 0 0 0 2px #232882;
}

@media screen and (max-width:767px) {
    .page-template_energy_quotes .preloader {
        height: 100%;
        width: 100%;
    }
}

.page-template_energy_quotes .preloader {
    height: auto;
    width: 400px;
    background: #d8efad;
    color: #142751;
    font-size: 22px;
    text-align: center;
    padding: 20px;
    display: inline-grid;
    gap: 20px;
    border-radius: 20px;
    max-width: 100%;
}

.page-template_energy_quotes .preloader img {
    margin: 0 auto;
}





.border-box-padding {
    padding: 20px;
    position: relative;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.border-box-padding:hover {
    box-shadow: 0 18px 25px -8px rgb(0 0 0 / 14%), 0 8px 8px -8px rgb(0 0 0 / 20%);
}

.border-box-padding .icons-switching img.img-fluid {
    position: absolute;
    left: 30px;
    right: 0px;
    top: -35px;
}


.block-qoute {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-qoute .btn-bluedark {
    background: #142751;
    color: #fff;
    height: auto;
    line-height: normal;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border: 0;
    box-sizing: border-box;
    border-radius: 0;
    min-width: 200px;
}

.block-qoute .btn-bluedark:hover {
    background: #1fea67;
    color: #142751;
}

.business-energy-link {
    color: #232882;
    font-size: 18px;
    font-weight: 500;
    line-height: 39px;
    vertical-align: middle;
    display: inline-block;
    font-family: Montserrat;

}

.business-energy-link i {
    margin-left: 0px;
    vertical-align: middle;
}

.business-energy-link:hover i {
    margin-left: 10px;
}

.business-energy-link:hover {
    text-decoration: underline;
}

.safe_secure {
    font-size: 12px;
}

@media only screen and (max-width:393px) {
    .page-template_energy_quotes a.modal_popup_address {
        font-size: 12px;
    }
}

@media only screen and (max-width:330px) {
    .page-template_energy_quotes a.modal_popup_address {
        justify-content: space-between;
    }
}

.reviewbar-section.home-energy-review {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}









.btn-sidefilters,
.btn-editDetails {
    gap: 5px;
    background: transparent;
    padding: 5px 10px;
    border: 1px solid #c6c6c6;
    font-size: 12px;
}

.btn-sidefilters:hover,
.btn-editDetails:hover {
    background: #142751;
    color: #fff !important;
}

.btn-sidefilters:hover svg,
.btn-editDetails:hover svg {
    fill: #fff !important;
}

.btn-SwitchPlan .plan_details {
    font-size: 13px;
}

.filter-container-fixed {
    position: fixed;
    top: 0;
    z-index: 111;
    height: 100%;
    overflow-y: auto;
    max-width: 300px;
    left: -310px;
    display: none;
}

.switch_supplier_btn svg {
    transform: rotate(0.25turn);
    height: 25px;
    width: 25px;
}

.switch_supplier_btn:hover svg path {
    fill: #32ea74;
    stroke: #32ea74;
}

.effect_hover_about {
    cursor: pointer;
    border: 1px solid #C6C6C6 !important;
    border-radius: 5px;
}

.effect_hover_about:hover {
    box-shadow: 0 18px 25px -8px rgb(0 0 0 / 14%), 0 8px 8px -8px rgb(0 0 0 / 20%);
    border: 1px solid #232882 !important;
}

@media only screen and (max-width:767px) {
    .future-supply h2 {
        font-size: 1rem !important;
    }

    .future-supply p {
        font-size: 12px;
    }

    .future-supply label {
        font-size: 13px;
    }

    .future-supply .form-group .form-select,
    .future-supply .form-group .form-control {
        height: 40px;
    }

    .switch_supplier_btn svg {
        height: 20px;
        width: 20px;
    }
}

.tarrif-detail-modal .result-row{
    padding: 10px;
    border: 1px solid #c6c6c6;
}
.page-template_energy_quotes.solar_thank_you p small{
    font-size: 0.675rem;
    line-height: normal;
}