﻿/* Layout */

.block__header {
    text-align: center;
    margin-bottom: 4rem;
}

.block__heading {
    margin-top: 0;
}

.grid {
    display: grid;
}

.wc__grid {
    display: grid;
    grid-template-columns: 26%;
    grid-gap: 0 3%;
    grid-template-rows: auto;
    grid-template-areas:
        'sideNav heading heading heading'
        'sideNav body body body';
    margin-bottom: 22px;
}

@media screen and (max-width: 1299px) {
    .wc__grid {
        grid-template-columns: 29.8%;
        grid-gap: 0 3%;
        grid-template-areas:
            'sideNav heading heading heading'
            'sideNav body body body';
    }
}

@media screen and (max-width: 1279px) {
    .wc__grid {
        grid-template-columns: 34%;
        grid-gap: 0 3%;
        grid-template-areas:
            'sideNav heading heading heading'
            'sideNav body body body';
    }
}

@media screen and (max-width: 992px) {
    .wc__grid {
        grid-template-columns: 35%;
        grid-template-areas:
            'sideNav heading heading heading'
            'sideNav body body body';
    }
}


@media screen and (max-width:767px) {
    .wc__grid {
        grid-template-columns: 100%;
        grid-template-areas:
            'heading'
            'sideNav'
            'body'
    }
}



.feature__sideNav {
    grid-area: sideNav;
    width: 95%;
    margin: 20px 0;
}

.feature__heading {
    grid-area: heading;
}

.feature__body {
    grid-area: body;
}

@media screen and (min-width: 768px) {
    .grid--1x2 {
        grid-template-columns: 48% 48%;
        column-gap: 4%;
    }

    .grid--4-6 {
        grid-template-columns: 39% 59%;
        column-gap: 2%;
    }

    .grid--3-7 {
        grid-template-columns: 29% 69%;
        column-gap: 2%;
    }

    .grid--custom-3-7 {
        grid-template-columns: 49% 49%;
        column-gap: 2%;
    }
}

@media screen and (min-width: 1024px) {
    .grid--3x3 {
        grid-template: repeat(1, 1fr)/repeat(3, 1fr);
        justify-items: center;
        align-items: top;
        justify-content: center;
        column-gap: 2.5em;
    }

    .grid--custom-3-7 {
        grid-template-columns: 49% 49%;
        column-gap: 2%;
    }
}

@media screen and (min-width: 1280px) {
    .grid--3x3 {
        grid-template: repeat(1, 1fr)/repeat(3, 1fr);
        justify-items: center;
        align-items: top;
        justify-content: center;
        column-gap: 2.5em;
    }

    .grid--custom-3-7 {
        grid-template-columns: 29% 69%;
        column-gap: 2%;
    }
}

.webcomp .card {
    border: 1px solid #d3d3d3;
}

.webcomp h2,
.webcomp h3 {
    font-size: 1.3em;
    color: #17315A !important;
    font-weight: 600;
}

/* page fix */
.feature__body .ms-fullWidth {
    display: flex !important;
}

.ms-rte-embeddialog-preview {
    width: auto !important;
    height: auto !important;
}


/* .webcomp .btn-primary{	
	background: #96368d;
    border-radius: 7px;
    color: white !important;
    text-decoration-line: none !important;
    transition: background-color 1s;
}
.webcomp .btn-primary:hover{	
	background: #455473;
}

.webcomp .btn-outline-primary{	
	background-color: transparent;
	border-color: #333;
	color:#333 !important;
    border-radius: 7px;
    text-decoration-line: none !important;
    transition: background-color 1s;
}
.webcomp .btn-outline-primary:hover{	
	background: #96368d;
	color:white !important;
} */

.isEditMode .webcomp.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}


/* components bottom */
#compontents-btn > * {
    display: block;
}

#compontents-btn {
    position: absolute;
    right: 0;
    z-index: 99999;
    padding: 20px;
    cursor: pointer;
}


/* components selection */
#components-selection {
    background: white;
    position: absolute;
    top: 125px;
    right: 0;
    width: 300px;
    height: 450px;
    z-index: 9999;
    padding: 20px;
    border: 1px solid lightgrey;
    box-shadow: 0px 6px 11px grey;
    overflow: auto;
}

    #components-selection .grid {
        border-bottom: 1px solid lightgray;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }

    #components-selection textarea {
        width: 80%;
    }


    #components-selection .gfx span {
        font-size: 11px;
        font-weight: bold;
    }


.action span {
    font-size: 30px;
    color: lightgray;
    float: right;
    cursor: pointer;
}

.color-green-action {
    color: green !important;
}

/* common */
.add-space {
    margin: 3rem 0;
}

.addspace-line {
    border-bottom: 1px solid rgb(209, 209, 209);
    padding: 0.5rem;
    margin-bottom: 1.5rem;
}

.webcomp span.material-symbols-outlined {
    font-size: 40px;
}

.webcomp .text-huge {
    font-size: 6rem !important;
    padding: 20px 0 30px 0;
}

.webcomp .text-center > * {
    display: block;
    text-align: center;
}

.bg-gray-50, .bg-gray-50-hover:hover, .bg-gray-50-hover:focus {
    background-color: #fafafa !important;
}

.rounded-4 {
    border-radius: 4px !important;
}

.bg-gray-100, .bg-gray-100-hover:hover, .bg-gray-100-hover:focus {
    background-color: #ededef !important;
}

.order-2 {
    order: 2 !important;
}

.order-1 {
    order: 1 !important;
}

@media (min-width: 768px) {
    .order-md-2 {
        order: 2 !important;
    }
}

@media (min-width: 768px) {
    .order-md-1 {
        order: 1 !important;
    }
}

.p-y-lg {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.color-white {
    color: #fff !important;
}

.p-a-lg {
    padding: 3rem !important;
}

.text-3rem {
    font-size: 3rem !important;
}

.line-height-1-5em {
    line-height: 1.5em !important;
}

.text-1-5rem {
    font-size: 1.5rem !important;
}
/* .btn-highlight {
    color: #000;
    background-color: #fdc341;
    border-color: #fdc341;
    font-weight: 600;
} */
a:link.btn-highlight {
    text-decoration: none;
}

.btn-darkblue {
    color: #fff !important;
    background-color: #17315A;
    border-color: #17315A;
}

.btn-lightblue {
    color: #fff !important;
    background-color: #2d6e8d;
    border-color: #2d6e8d;
}

a:link.btn-lightblue {
    text-decoration: none;
}

/* call script */
.webcomp.feature__callscript h2.heading,
.webcomp.feature__callscript h4.heading,
.webcomp.feature__callscript h3.heading {
    border-bottom: 1px solid rgb(209, 209, 209);
    padding-bottom: 0.5rem;
}

.webcomp.feature__callscript .part span {
    font-weight: bold;
}

.webcomp.feature__callscript .part {
    margin: 0.5rem 0;
}


/* Card icon v2 */
.webcomp.card__icon .component-cards .card-gfx {
    text-align: center;
    padding: 40px 0;
}

    .webcomp.card__icon .component-cards .card-gfx span {
        font-size: 4rem !important;
    }

.webcomp.card__icon .component-cards .card-content h4.title,
.webcomp.card__icon .component-cards .card-content h3.title {
    margin-bottom: 0.75em;
}

.webcomp.card__icon .component-cards .card-content ul {
    padding-left: 0;
}

.webcomp.card__icon .component-cards .card-content li {
    list-style-type: none;
    padding-bottom: 0.75em;
}

@media screen and (max-width: 1024px) {
    .webcomp.card__icon .component-cards {
        text-align: center;
    }
}

/* Card equal height cards grid */
.equal-height-card-grid {
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}

/* Card icon */
.webcomp.card__icon .component-cards {
    margin-bottom: 1.25rem;
}

.webcomp.card__icon h3 {
    font-size: 1.3em;
    color: #17315A !important;
    font-weight: 600;
}


/* card imagery */
.webcomp.card__imagery .img-responsive {
    max-width: 100%;
    height: auto;
    display: inline-block
}

.webcomp.card__imagery .img-card {
    max-width: 480px;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
}

.webcomp.card__imagery .img-fluid {
    display: inline-block
}

.webcomp.card__imagery .img-fluid {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.webcomp.card__imagery .card .card-body p {
    margin-bottom: 0;
}

.webcomp.card__imagery .card-body p {
    padding-top: 1.2rem;
}

/* feature banner */
.webcomp.feature__banner,
.webcomp.feature__banner .feature-image-block {
    margin-bottom: 1.25rem;
}

    .webcomp.feature__banner .feature-img {
        display: block;
        min-height: 320px;
        width: 100%;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: 50% 50% !important;
    }

@media screen and (min-width: 768px) {
    .webcomp.feature__banner .feature-img {
        min-height: 100%;
    }
}

.webcomp.feature__banner .banner-gfx {
    width: 100%;
    height: 290px;
    overflow: hidden;
}

/* sidebar layout */
.webcomp.feature__banner .cagov-with-sidebar {
    overflow: hidden;
}

    .webcomp.feature__banner .cagov-with-sidebar > * {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }

        .webcomp.feature__banner .cagov-with-sidebar > * > * {
            margin: 0;
            flex-grow: 1;
        }

.webcomp.feature__banner .cagov-with-sidebar-left > * > :last-child {
    flex-basis: 0;
    flex-grow: 999;
    min-width: calc(30% - var(0px));
}

.webcomp.feature__banner .cagov-with-sidebar-right > * > :first-child {
    flex-basis: 0;
    flex-grow: 999;
    min-width: calc(30% - 0px);
}

/* generic utility styles, should come from base-css */
.webcomp.feature__banner .stack * + * {
    margin-top: 1.5rem;
}

.webcomp.feature__banner .cagov-border {
    border: solid 1px;
}

.webcomp.feature__banner .no-deco {
    text-decoration: none;
}

/* spacing overrides, can these come from base-css? */
.webcomp.feature__banner .cagov-hero-body-content p {
    margin-bottom: 16px;
}

.webcomp.feature__banner .cagov-p-2 {
    padding: 1.5rem;
}

.webcomp.feature__banner .cagov-bkgrd-gry {
    /* background-color: var(--gray-100, #f9f9fa); */
}

/* featured section specific style */
.webcomp.feature__banner .cagov-featured-sidebar {
    max-width: 400px;
    margin-top: 0;
}

.webcomp.feature__banner .cagov-featured-section {
    /* margin: 0 0 3rem 0; */
}

    .webcomp.feature__banner .cagov-featured-section .components-button.image-button {
        display: block;
        height: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
    }

.webcomp.feature__banner .cagov-featured-image {
    object-fit: cover;
    width: 100%;
    display: block;
    height: 100%;
    min-width: 18rem;
    min-height: 20rem;
    max-height: 420px;
}

/* hero sidebar swap image on left to go on top when it wraps */
@media (max-width: 719px) {
    .webcomp.feature__banner .cagov-with-sidebar > * {
        flex-direction: column-reverse;
    }
}

@media (min-width: 992px) {
    .webcomp.feature__banner .cagov-featured-sidebar {
        max-width: 50%;
    }
}

@media (min-width: 1260px) {
    .webcomp.feature__banner .cagov-featured-sidebar {
        max-width: 32%;
    }
}


/* feature flyer */
.webcomp.feature__flyer {
    background: #efefef;
}

    .webcomp.feature__flyer h2.heading,
    .webcomp.feature__flyer h3.heading,
    .webcomp.feature__flyer h4.heading {
        padding: 1rem 0 0 1rem;
        margin-bottom: 1rem;
    }

    .webcomp.feature__flyer img {
        width: 100%;
    }

    .webcomp.feature__flyer .grid > * {
        padding-bottom: 1rem;
    }

    .webcomp.feature__flyer .grid {
        padding: 0 1rem;
    }

    .webcomp.feature__flyer .download_click {
        padding: 0 1rem 1rem;
    }

        .webcomp.feature__flyer .download_click a {
            text-decoration: none;
        }

        .webcomp.feature__flyer .download_click span.icon.material-symbols-outlined {
            font-size: 20px;
            bottom: -3px;
            position: relative;
        }
/* .feature__flyer .img {
    background: grey;
    width: 100%;
    height: 100%;
    text-align: center;
} */


/* full banner */
.webcomp.full__banner {
    margin: 1.25rem 0;
}

    .webcomp.full__banner .header-primary-banner {
        position: relative;
        text-align: center;
        color: white;
        background-color: #17315A;
    }

    .webcomp.full__banner .header-primary-banner-body {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

@media (max-width: 767px) {
    .webcomp.full__banner .header-primary-banner {
        display: block;
    }
}

/* side navigation */
.webcomp.side__navigation .list-navigation li {
    list-style: none;
    margin: 0;
    /* padding-left: 1rem; */
    padding-bottom: 0;
}

    .webcomp.side__navigation .list-navigation li a,
    .webcomp.side__navigation .list-navigation li span {
        position: relative;
        display: block;
        text-decoration: none !important;
        padding-bottom: .7rem;
        padding-top: .7rem;
        padding-left: 1rem;
    }

        .webcomp.side__navigation .list-navigation li a.active {
            color: #4a4958;
            text-decoration: none;
            font-weight: 700;
            background-color: #f3f3f4
        }

            .webcomp.side__navigation .list-navigation li a.active:hover, .list-navigation li a.active:focus {
                color: #000;
                text-decoration: none
            }

            .webcomp.side__navigation .list-navigation li a.active:before {
                content: "";
                border-left: 3px solid;
                position: absolute;
                top: 0;
                left: 0;
                width: 3px;
                height: 100%;
                border-radius: 0
            }

        .webcomp.side__navigation .list-navigation li a:hover, .list-navigation li a:focus {
            text-decoration: none;
            background-color: #ededef
        }

        .webcomp.side__navigation .list-navigation li a:focus {
            outline: solid 2px #2ea3f2 !important
        }

    .webcomp.side__navigation .list-navigation li ul {
        padding-left: 0
    }

        .webcomp.side__navigation .list-navigation li ul li {
            margin: 0
        }

            .webcomp.side__navigation .list-navigation li ul li a.active {
                color: #4a4958;
                text-decoration: none;
                font-weight: 700
            }

                .webcomp.side__navigation .list-navigation li ul li a.active:hover,
                .webcomp.side__navigation .list-navigation li ul li a.active:focus {
                    color: #000;
                    text-decoration: none
                }

                .webcomp.side__navigation .list-navigation li ul li a.active:before {
                    content: "";
                    border-left: 3px solid;
                    position: absolute;
                    top: 0;
                    left: -1rem;
                    width: 3px;
                    height: 100%;
                    border-radius: 0
                }

    .webcomp.side__navigation .list-navigation li a {
        color: #5e5e6a
    }

        .webcomp.side__navigation .list-navigation li a:hover,
        .webcomp.side__navigation .list-navigation li a:hover {
            background-color: #fafafa;
        }

        .webcomp.side__navigation .list-navigation li a.active:before {
            border-left-color: #96368d
        }

    .webcomp.side__navigation .list-navigation li ul li a.active::before {
        border-left-color: #96368d
    }

.webcomp.side__navigation #page-navigation-label {
    /* display: none; */
}

@media screen and (min-width: 768px) {
    .webcomp.side__navigation #page-navigation-label {
        display: block;
    }
}

.feature__sideNav ul {
    padding-left: 0;
}

.feature__sideNav li {
    list-style-type: none;
    padding-bottom: 0.75em;
}


/* side navigation  */
.webcomp.side__navigation.side__nav__parent ul.list-navigation .sublinks-object {
    font-weight: 700;
}

    .webcomp.side__navigation.side__nav__parent ul.list-navigation .sublinks-object a,
    .webcomp.side__navigation.side__nav__parent ul.list-navigation .sublinks-object {
        color: #96368d;
    }

.webcomp.side__navigation.side__nav__current ul.list-navigation,
.webcomp.side__navigation.side__nav__sibling ul.list-navigation a,
.webcomp.side__navigation.side__nav__parent .sublinks-object {
    border-bottom: 1px solid #f3f1f1;
}
/* .webcomp.side__navigation.side__nav__current{
	padding-left: 17px;
}
.webcomp.side__navigation.side__nav__current ul.childernlinks {
    padding-bottom: 0.75rem;
} */
.webcomp.side__navigation.side__nav__current ul.childernlinks a {
    padding-left: 30px;
}


.webcomp.side__navigation ul.list-navigation {
    margin: 0;
}


/* Social media  */
.webcomp.feature__socialmedia h2.heading,
.webcomp.feature__socialmedia h3.heading,
.webcomp.feature__socialmedia h4.heading {
    border-bottom: 1px solid rgb(209, 209, 209);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.webcomp.feature__socialmedia .kcard .title {
    font-weight: bold;
}

.webcomp.feature__socialmedia .kcard {
    padding-top: 0.25rem;
    padding-bottom: 1.25rem;
}


.webcomp.feature__socialmedia .img .icon {
    margin: 60px 0;
    color: white;
}

.webcomp.feature__socialmedia .download_click {
    padding: 0 1rem 1rem 0;
}

    .webcomp.feature__socialmedia .download_click a {
        text-decoration: none
    }

        .webcomp.feature__socialmedia .download_click a span.icon {
            font-size: 20px;
            bottom: -3px;
            position: relative;
        }

.webcomp.feature__socialmedia .gfx img {
    padding-bottom: 1rem;
}

.webcomp.feature__socialmedia .gfx img {
    width: 100%;
}
/* full width banner */
.webcomp.fullwidth__banner {
    background-color: #96368d;
}

    .webcomp.fullwidth__banner .container {
        height: 450px;
        position: relative;
    }

    .webcomp.fullwidth__banner .left-part {
        float: left;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        padding: 10px;
    }

    .webcomp.fullwidth__banner h1 {
        color: white !important;
    }

    .webcomp.fullwidth__banner .right-part {
        float: right;
        display: none;
    }

@media screen and (min-width: 1280px) {
    .webcomp.fullwidth__banner .right-part {
        display: block;
    }
}

/* top page nav */
.webcomp.top-page-nav a {
    cursor: pointer;
}

.webcomp.top-page-nav {
    font-size: 0.8rem;
}
/*accordion*/
details.webcomp.feature__accordion {
    margin-bottom: 0;
    min-height: 3rem;
    margin-top: 1rem;
    overflow: visible
}

    details.webcomp.feature__accordion summary {
        cursor: pointer;
        padding: .5rem 3rem .5rem 3.75rem;
        background-color: #fafafa;
        position: relative;
        line-height: 2rem;
        margin: 0;
        color: #4a4958;
        font-size: 1.125rem;
        font-weight: bold;
        border: 1px solid #d4d4d7
    }

        details.webcomp.feature__accordion summary:before {
            position: absolute;
            height: 100%;
            width: 2.75rem;
            border-right: 1px solid #d4d4d7;
            top: 0;
            left: 0;
            background-color: #fafafa;
            border-radius: 3px 0 0 3px;
            content: ""
        }

        details.webcomp.feature__accordion summary:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(0,0,0,0);
            height: 100%;
            width: 100%;
            border-radius: 3px 3px 3px 3px
        }

        details.webcomp.feature__accordion summary .cagov-open-indicator {
            position: absolute;
            left: .5rem;
            top: .4rem;
            width: 0;
            height: 0;
            transition-property: transform;
            transition: transform .2s
        }

            details.webcomp.feature__accordion summary .cagov-open-indicator::before {
                font-family: "CaGov";
                content: "5";
                position: absolute;
                font-size: 1.6rem;
                transition-property: transform,left;
                transition: transform .2s,.2s
            }

        details.webcomp.feature__accordion summary:hover {
            color: #000
        }

            details.webcomp.feature__accordion summary:hover:before {
                background-color: #ededef
            }

    details.webcomp.feature__accordion .accordion-body {
        padding: 1rem;
        border: none;
        border-radius: 0 0 4px 4px;
        border: 1px solid #d4d4d7;
        border-top: none
    }

details.webcomp.feature__accordion {
    transition: height .2s;
    overflow: visible
}

    details.webcomp.feature__accordion summary::-webkit-details-marker {
        display: none
    }

    details.webcomp.feature__accordion summary {
        list-style: none;
        border-radius: 4px 4px 4px 4px
    }

        details.webcomp.feature__accordion summary:focus:before {
            background-color: #ededef
        }

        details.webcomp.feature__accordion summary:focus:after {
            outline: solid 2px #2ea3f2 !important;
            outline-offset: -2px
        }

    details.webcomp.feature__accordion[open] {
        height: auto
    }

        details.webcomp.feature__accordion[open] .cagov-open-indicator::before {
            transform: rotate(90deg) translateY(-0.2rem)
        }

        details.webcomp.feature__accordion[open] summary {
            border-radius: 4px 4px 0 0
        }

            details.webcomp.feature__accordion[open] summary:before {
                border-radius: 3px 0 0 0;
                background-color: #ededef
            }

            details.webcomp.feature__accordion[open] summary:focus::after {
                border-radius: 3px 3px 0 0
            }

/*fix kyc-page*/
.kyc-page h2 {
    color: #2d6e8d !important;
}

.kyc-page .number {
    color: #2d6e8d;
}

.kyc-page .xgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 380px);
    grid-gap: 5%;
}

@media screen and (max-width: 1279px) {
    .kyc-page .xgrid {
        grid-template-columns: auto;
        grid-gap: 0;
    }
}

.kyc-page.webcomp.full__banner img.img-desktop {
    margin-right: 40px;
}

.kyc-page .signup {
    margin-top: 40px;
}

.kyc-page.side__nav__parent {
    margin-top: -28px;
}

.kyc-page.full__banner h1.banner-text {
    font-size: 4.25rem;
    max-width: 740px;
    text-align: left;
    padding-left: 50px;
    line-height: 5rem;
    font-weight: bold;
    color: white !important;
}

@media screen and (max-width: 750px) {
    .kyc-page.full__banner img.img-desktop {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .kyc-page.full__banner h1.banner-text {
        font-size: 2.5rem;
        line-height: 3.25rem;
        padding-left: 32px;
        padding-right: 20px;
    }
}



@media screen and (max-width:767px) {
    .keepyoucoverage .wc__grid {
        grid-template-columns: minmax(0,1fr);
        grid-template-areas:
            'heading'
            'body'
            'sideNav'
    }
}

.kyc-page .smcx-embed {
    border: 0 !important;
}

.kyc-page .survey-page-body {
    padding: 0 !important;
    height: 450px !important;
}

.kyc-page details summary {
    border: 4px solid #2d6e8d;
}

.kyc-page details .accordion-body {
    border-left: 4px solid #2d6e8d;
    border-right: 4px solid #2d6e8d;
    border-bottom: 4px solid #2d6e8d;
}

.kyc-page .header-primary-banner-body {
    position: inherit !important;
}

.kyc-page img {
    position: relative !important;
}

.kyc-page .header-primary-banner {
    background-color: #17315A !important;
    color: White !important;
}

    .kyc-page .header-primary-banner img.img-desktop {
        right: -40px;
        bottom: 0 !important;
        float: right !important;
        width: 447px !important;
        background: orange;
        color: black;
        padding: 50px 40px 0 40px;
    }

    .kyc-page .header-primary-banner .imgbg-mobile {
        background: orange;
        margin-bottom: -100px;
        padding-top: 30px;
        ;
        display: none;
    }

        .kyc-page .header-primary-banner .imgbg-mobile img.img-mobile {
            width: 139px;
        }

@media screen and (max-width: 750px) {
    .kyc-page .header-primary-banner .imgbg-mobile {
        display: block;
    }
}

.kyc-page .updateyourinfo,
.kyc-page .signup,
.kyc-page .checkyourmail {
    margin-left: 40px;
}

.kyc-page .number {
    font-size: 3rem;
    font-weight: 600;
    position: absolute;
    margin-left: -37px;
    margin-top: -8px;
}

.kyc-page .webcomp.feature__callscript .part {
    padding: 20px;
    padding-right: 0;
    position: relative;
    padding-bottom: 50px;
}

.kyc-page .signup-form {
    max-width: 570px;
}

    .kyc-page .signup-form > * {
        display: block;
        margin: 10px 0;
    }

    .kyc-page .signup-form > input {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

.kyc-page .xgrid {
    display: grid;
}

.kyc-page .webcomp.feature__callscript .part .counties ul {
    vertical-align: text-top;
}

.kyc-page .webcomp.feature__callscript .part .counties {
    padding-bottom: 50px;
}

.kyc-page .webcomp.feature__callscript .part a.btn {
    position: absolute;
    bottom: 30px;
}


/* feature__accordion2  */
.accordion,
.webcomp.feature__accordion2 {
    list-style: none;
    margin: 0;
    padding: 0
}

    .webcomp.feature__accordion2 > li {
        margin: 0
    }

        .webcomp.feature__accordion2 > li:before {
            content: "​";
            position: absolute
        }

    .webcomp.feature__accordion2 .accordion__heading {
        padding: 0;
        font-size: inherit;
        margin-top: 0;
        margin-bottom: .5rem;
        padding-bottom: 0;
        font-family: "Public Sans",sans-serif
    }

    .webcomp.feature__accordion2 .accordion__trigger {
        color: #046b99;
        text-decoration: underline;
        text-decoration-style: dotted;
        text-decoration-thickness: from-font;
        font-weight: 700;
        -webkit-appearance: none;
        background: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        cursor: pointer;
        display: block;
        font-size: inherit;
        margin: 0;
        position: relative;
        text-align: left;
        width: 100%;
        z-index: 2;
        padding: 0;
    }

        .webcomp.feature__accordion2 .accordion__trigger:hover {
            color: #02374e
        }

        /* .accordion__trigger:before {
    border-left: .3em solid rgba(0,0,0,0);
    border-right: .3em solid rgba(0,0,0,0);
    border-top: .3em solid #222;
    bottom: 0;
    content: "";
    height: 0;
    margin: auto;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform .2s ease-in-out;
    transform-origin: center center;
    transform: rotate(-90deg);
    width: 0
}

.accordion__trigger[aria-expanded=true]:before {
    transform: rotate(0deg)
} */

        .webcomp.feature__accordion2 .accordion__trigger:focus {
            outline: solid 2px #2ea3f2 !important
        }


    .webcomp.feature__accordion2 .accordion__panel {
        background-color: inherit;
        max-height: 0vh;
        overflow: hidden;
        padding: 0;
        position: relative;
        visibility: hidden;
        z-index: 1
    }

    .webcomp.feature__accordion2 .accordion__panel--transition {
        transition: max-height .2s ease-in-out,padding-top .2s ease-in-out,padding-bottom .2s ease-in-out
    }

    .webcomp.feature__accordion2 .accordion__panel > :last-child {
        margin-bottom: 0
    }

    .webcomp.feature__accordion2 .accordion__panel[aria-expanded=false] {
        max-height: 1000px;
        padding-left: 1em;
        padding-right: 1em;
        padding-bottom: 1.5rem;
        overflow: auto;
        visibility: visible;
    }

.disclaimer {
    color: #2d6e8d !important;
    text-decoration-style: solid !important;
    font-weight: normal !important;
    font-size: .8em !important;
}

.disclaimer-body {
    font-size: .8em !important;
}


/* for testing only  */
.navigation-search {
    border-bottom: 5px solid #2d6e8d;
}

h2, .h2 {
    color: #2d6e8d !important;
    font-weight: bold;
}

h3, .h3 {
    color: #17315a !important;
    font-weight: bold;
}

h4, .h4,
h5, .h5 {
    color: #2d6e8d !important;
    font-weight: 500;
}

.webcomp.side__navigation .list-navigation li a.active:before {
    border-left-color: #f9a71c !important;
}

.webcomp.side__navigation.side__nav__parent ul.list-navigation .sublinks-object a, .webcomp.side__navigation.side__nav__parent ul.list-navigation .sublinks-object {
    color: #2d6e8d !important;
}

.main-primary a:hover {
    color: #2d6e8d !important;
    fill: #2d6e8d !important;
}

.navigation-search {
    border-bottom: 1px solid #e4e4e4 !important;
}

.branding .header-cagov-logo img {
    top: -32px;
    height: 25px;
    position: absolute;
    margin-left: 0;
}


/* button style */
.btn {
    text-decoration: none !important;
    border-radius: 7px;
    font-weight: 600;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

a.btn-primary {
    background-color: #2d6e8d !important;
    color: white !important;
}

    a.btn-primary:hover {
        background-color: #335969 !important;
        color: white !important;
    }

a.btn-outline-primary {
    color: #2d6e8d !important;
    background-color: transparent;
    background-image: none;
    border-color: #2d6e8d;
}

    a.btn-outline-primary:hover {
        background-color: #2d6e8d !important;
        color: white !important;
    }

a.btn-highlight {
    background-color: #E47225 !important;
    color: white !important;
}

    a.btn-highlight:hover {
        background-color: #c57326 !important;
        color: white !important;
    }

a.btn-outline-highlight {
    color: #E47225 !important;
    background-color: transparent;
    background-image: none;
    border-color: #E47225 !important;
}

    a.btn-outline-highlight:hover {
        background-color: #E47225 !important;
        color: white !important;
    }

a.btn-standout {
    background-color: #F9A71C !important;
    color: #17315a !important;
}

    a.btn-standout:hover {
        background-color: #ee9022 !important;
    }

a.btn-outline-standout {
    color: #F9A71C !important;
    background-color: transparent;
    background-image: none;
    border-color: #F9A71C;
}

    a.btn-outline-standout:hover {
        background-color: #F9A71C !important;
        color: white !important;
    }

/* new 2 cards style */

.two__icon__cards .card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.two__icon__cards a.card.card-right {
    order: 1;
}

.two__icon__cards a.card.card-right {
    order: 2;
}

.two__icon__cards .card-container a,
.two__icon__cards .card-container a.card,
.two__icon__cards .card-container a.card > * {
    -webkit-transition: background 0.5s; /* For Safari 3.0 to 6.0 */
    transition: background 0.5s; /* For modern browsers */
}

    .two__icon__cards .card-container a.card {
        color: #17315A;
        text-decoration: none;
        background-color: #ECEEF0;
    }

        .two__icon__cards .card-container a.card:hover {
            color: #17315A !important;
            background: #D3D6D8 !important;
        }

        .two__icon__cards .card-container a.card h4 {
            line-height: 1.25;
            color: #17315A !important;
        }

        .two__icon__cards .card-container a.card:hover h4 {
            text-decoration: underline;
        }

.two__icon__cards .card {
    width: 48%;
    background-color: #f9f9f9;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
    border: 0;
    margin-bottom: 2%;
}

    .two__icon__cards .card h2 {
        margin-top: 0;
    }

@media only screen and (max-width: 768px) {
    .two__icon__cards .card {
        width: 100%;
    }
}

.two__icon__cards .card-left {
    order: 1;
}

.two__icon__cards .card-right {
    order: 2;
}

@media only screen and (max-width:768px) {
    .two__icon__cards .card-right, .card-left {
        order: initial;
    }
}

.two__icon__cards .text-huge {
    padding: 20px 0 0 0;
}

.two__icon__cards .center {
    text-align: center;
}

.two__icon__cards a.card.card-border {
    background: white !important;
    ;
    border: 1px solid #d3d3d3;
}

    .two__icon__cards a.card.card-border:hover {
        background: white !important;
    }

.webcomp .small-icon {
    font-size: 3.75rem !important;
}

.webcomp.three__icon__cards .card {
    width: 32% !important;

    @media screen and (max-width: 992px) {
        width: 100% !important;
    }
}

.webcomp.two__icon__cards_nobg .card {
    width: 48% !important;

    @media screen and (max-width: 992px) {
        width: 100% !important;
    }
}

.webcomp.three__icon__cards .card-container a.card {
    color: #2d6e8d;
    text-decoration: none;
    /* background-color: #ECEEF0; */
    background-color: white;
    transition: 0.3s;
}

    .webcomp.three__icon__cards .card-container a.card:hover,
    .webcomp.three__icon__cards .card-container a.card:hover h4 {
        background-color: white !important;
        color: #335969 !important;
    }

    .webcomp.three__icon__cards .card-container a.card h4 {
        color: #2d6e8d !important;
    }
/*fix the header banner */

.custom-headering-testing.kyc-page.webcomp.full__banner .header-primary-banner {
    height: 250px !important;
}

    .custom-headering-testing.kyc-page.webcomp.full__banner .header-primary-banner img.img-desktop {
        height: 100%;
        width: initial !important;
    }

@media screen and (max-width: 1279px) {
    .custom-headering-testing.kyc-page.webcomp.full__banner .banner-text {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 992px) {
    .custom-headering-testing.kyc-page.webcomp.full__banner .banner-text {
        font-size: 2.5rem;
    }

    .custom-headering-testing.kyc-page.webcomp.full__banner .header-primary-banner {
        height: 330px !important;
    }
}

@media screen and (max-width: 467px) {
    .custom-headering-testing.kyc-page.webcomp.full__banner .header-primary-banner {
        height: 400px !important;
    }
}
