﻿/* 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 auto 100%;
    grid-template-areas: 
    'header header header header'
    '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:
	    'header header header header' 
	    '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: 
	    'header header header header' 
	    'sideNav heading heading heading'
	    'sideNav body body body'
	    ;
	}
}
@media screen and (max-width: 992px) {
	.wc__grid {
	    grid-template-columns: 35%;
	    grid-template-areas: 
	    'header header header header' 
	    'sideNav heading heading heading'
	    'sideNav body body body'
	    ;
	}
}


@media screen and (max-width:767px) {
	.wc__grid {
        grid-template-columns:100%;
	    grid-template-areas: 
        'sideNav'
        'header'
	    'heading'
	    'body'
	    ;
	    grid-template-rows: auto;
	 }
}



.feature__sideNav{
  grid-area: sideNav;
  width: 95%;
  margin: 20px 0;
  @media screen and (max-width:767px) {
			  width: 100%;
			  margin-top: 48px;
			  margin-bottom: 0;
	}
}

.feature__header{
    grid-area: header;
}
.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%;
    }
    .grid--2-8 {
		grid-template-columns: 19% 79%;
		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;
}

.overflow-fix{
	overflow:auto;
}
/* .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;
}
.justify-items-left{
    justify-items: left;
}
.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;
}
.webcomp .text-align-left{
    text-align:left !important;
}
.webcomp .text-align-right{
    text-align:right !important;
}
.webcomp .font-size-2em{
    font-size:2em !important;
} 
.webcomp .font-size-1-2em{
    font-size:1.2em !important;
} 
.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;
}
.webcomp .p-0{
    padding: 0 !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 h2.title,
.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;
    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 ul.list-navigation
{
    border-bottom: 1px solid #eceef0;
} 
/* .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;
	}
}
/* full width banner banner-box-overlay */
.webcomp.banner__box__overlay .banner-container{
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.webcomp.banner__box__overlay .banner-container .banner-callout{
    background-color: #17315a;
    color: #fff;
    max-width: 100%;
    padding: 2rem;
    order: 2;
    margin: 0;
    width: 100%;
}
.webcomp.banner__box__overlay .banner-container .banner-callout-gfx{
    width: 100%;
    display: block;
    order: 1;
}
@media screen and (min-width: 750px) {
    .webcomp.banner__box__overlay .banner-container .banner-callout{
        max-width: 20rem;
        margin: 2rem
    }
    .webcomp.banner__box__overlay .banner-container .banner-callout-gfx{
        display: none;
    }
}
.webcomp.banner__box__overlay .banner-container .banner-callout .heading{
    color: #fff !important;
    line-height: 1.1;
}
/* top page nav */
.webcomp.top-page-nav a{
	cursor: pointer;
	padding: 5px 0;
}
.webcomp.top-page-nav{
	font-size: 0.8rem;
	 @media screen and (max-width:767px) {
			  margin-top: 0 !important;
			  margin-bottom: 24px !important;
	}
}
/*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
}

.webcomp.feature__accordion .accordion-item {
    display: none; /* Hide the checkboxes */
  }
  
.webcomp.feature__accordion .accordion-title {
    cursor: pointer;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    font-family: "Public Sans",sans-serif;
    text-decoration: underline;

    color: #2d6e8d !important;
    text-decoration-style: solid !important;
    font-weight: normal !important;
}

.webcomp.feature__accordion.accordion-smallsize .accordion-title {
    font-size: .8em !important;
}

.webcomp.feature__accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out; /* Add a transition effect for the content height */
}

.webcomp.feature__accordion .accordion-item:checked + .accordion-title + .accordion-content {
    max-height: 150vh; /* Set a maximum height for the opened content */
    transition: max-height 0.8s ease-in-out; /* Adjust the transition duration for the opened content */
}

/*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: auto;
    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;
	}
}
.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;
}


/* 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;
    color: #17315a !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;
}

a.btn-icon-primary{
    color: #2d6e8d !important;
    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-icon-primary:hover {
    color: #335969 !important;
}

/* new 2 cards style */

.two__icon__cards .card-container{
    display: flex;
    justify-content: space-between;
    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 */
    line-height: 1.25;
}
.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,
.two__icon__cards .card-container a.card h2{
    /*line-height: 1.25;*/
    color: #17315A !important;
}
.two__icon__cards .card-container a.card:hover h4,
.two__icon__cards .card-container a.card:hover h2{
    text-decoration: underline;
}
.two__icon__cards .card{
    width: 49%;
    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,
.webcomp.three__icon__cards .card-container a.card:hover h2 {
    background-color: white !important;
    color: #335969 !important;
}

.webcomp.three__icon__cards .card-container a.card h4,
.webcomp.three__icon__cards .card-container a.card h2 {
    color: #2d6e8d !important;
}
.webcomp .cards-btn-buttom-right .card{
    position: relative;
}
.webcomp .card .btn-buttom-right > i{
    position: absolute;
    right: 25px;
    bottom: 25px;
}
.webcomp a.card.gray-bgcolor,
.webcomp a.card.gray-bgcolor h4,
.webcomp a.card.gray-bgcolor h2 {
    color: #17315A !important;;
    text-decoration: none;
    background-color: #ECEEF0 !important;
    transition: all 0.3s;
}
.webcomp .card-container a.card:hover.gray-bgcolor h4,
.webcomp .card-container a.card:hover.gray-bgcolor h2,
.webcomp .card-container a.card:hover.gray-bgcolor {
    color: #17315A !important;
    background: #D3D6D8 !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;
}
.custom-headering-testing.kyc-page.webcomp.full__banner .banner-text {
    font-size: 3.5rem;
    min-height: 2.5em;
}
@media screen and (max-width: 1279px){
.custom-headering-testing.kyc-page.webcomp.full__banner .banner-text {
    font-size: 3rem;
    min-height: 2.5em;
}	
}
@media screen and (max-width: 992px){
.custom-headering-testing.kyc-page.webcomp.full__banner .banner-text {
    font-size: 2.5rem;
    min-height: 3.5em;
}
}
@media screen and (max-width: 750px){
.custom-headering-testing.kyc-page.webcomp.full__banner .banner-text {
    font-size: 2.5rem;
    min-height: 2.5em;
}}	
@media screen and (max-width: 453px){
.custom-headering-testing.kyc-page.webcomp.full__banner .banner-text {
    font-size: 2rem;
    min-height: 3.5em;
}}	

.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;
}
}
/*newrooms component */
.webcomp .img-fluid {
    object-fit: cover;
    width: 100%;
    min-height: 100%;
}

.webcomp .align-to-bottom{
    align-self: end;
}

.webcomp.newsroom__item {
    position: relative;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.webcomp.newsroom__item:after {
    position: absolute;
    bottom: 0;;
    width: 100%;
    border-bottom: solid 1px;
    opacity: 0.2;
    content: '';
}

.webcomp.newsroom__cards .card {
    padding: 10px 30px 50px;
    transition: all 0.5s;
    border-radius: 5px;
}
.webcomp.newsroom__cards a.card {
    text-decoration: none;
}
.webcomp.newsroom__cards a.card:hover {
    background-color: #ECEEF0;
}
.webcomp.newsroom__cards a.card:hover h4 {
    text-decoration: underline;
}
.webcomp.newsroom__cards .card p {
    color: black;
}
.webcomp.newsroom__list{
    position: relative;
    padding: 10px 0 20px 0;
}
.webcomp.newsroom__list:after {
    position: absolute;
    width: 100%;
    border-bottom: solid 1px;
    opacity: 0.2;
    content: '';
    margin-top: 15px;
}

/*feature__tabs.tabs component */

.webcomp.feature__tabs.tabs {
    position: relative
}

.webcomp.feature__tabs.tabs [role=tablist] {
    padding: 0;
    margin-bottom: 0
}
.webcomp.feature__tabs.tabs [role=tablist] a,.tabs [role=tablist] li {
    display: inline-block
}

.webcomp.feature__tabs.tabs [role=tablist] a {
    text-decoration: none;
    margin: 0;
    font-weight: 600;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #949494;
}

.webcomp.feature__tabs.tabs [role=tablist] a:focus {
    outline: solid 2px #e4e4e4!important;
    outline-offset: -2px
}

.webcomp.feature__tabs.tabs [role=tablist] [aria-selected] {
    border: none;
    position: relative;
    margin: 0;
}

.webcomp.feature__tabs.tabs [role=tablist] [aria-selected]::after {
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
    width: 100%;
    border-bottom: 3px solid
}
.webcomp.feature__tabs.tabs [role=tablist] li > a {
    border-radius: 0;
} 

.webcomp.feature__tabs.tabs [role=tablist] li > a:hover{
    border-color: transparent;
}


.webcomp.feature__tabs.tabs [role=tabpanel] {
    border: 1px solid var(--bs-border-color);
    padding: 1.1rem;
    margin-top: -2px
}

.webcomp.feature__tabs.tabs [role=tabpanel] a:focus {
    outline: solid 2px #e4e4e4!important
}
.webcomp.feature__tabs.tabs [role=tabpanel]:focus {
    outline: solid 2px #e4e4e4!important;
    outline-offset: -2px
}
.webcomp.feature__tabs .toggletab-mobile{
    display: none;
    cursor: pointer;
    font-weight: bold;
}
@media (max-width: 767px) {
    .webcomp.feature__tabs.tabs.responsive [role=tabpanel] {
        border:none
    }
    .webcomp.feature__tabs .nav-tabs{
        display:none;
    }
    .webcomp.feature__tabs.tabs section{
        display: block !important;
    }
    .webcomp.feature__tabs .toggletab-mobile{
        display: block;
    }
    .webcomp.feature__tabs .toggletab-mobile[toggle-state="open"]{
        padding-bottom: 15px;
    }
}


.webcomp.feature__tabs .nav-tabs>li {
    margin-bottom: -2px;
    margin-left: 1px
}

.webcomp.feature__tabs .nav-tabs>li:first-child {
    margin-left: 0
}
.webcomp.feature__tabs .nav-tabs>li>a {
    cursor: pointer !important;
}

.webcomp.feature__tabs .nav-tabs>li>a.active {
    background-color: transparent!important;
    border: none!important;
    cursor: default;
    color: #17315a !important;
    position: relative
}

.webcomp.feature__tabs .nav-tabs>li>a.active:hover {
    color: #5e5e6a!important
}

.webcomp.feature__tabs .nav-tabs>li>a.active::after {
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
    width: 100%;
    border-bottom: 3px solid
}

.webcomp.feature__tabs .nav-tabs>li>a:hover {
    color: #17315a !important;
}

.webcomp.feature__tabs .nav-tabs>li>a:focus {
    outline: solid 2px #e4e4e4!important;
    outline-offset: -2px
}

.webcomp.feature__tabs .nav-tabs>li>a.active:focus {
    outline: solid 2px #e4e4e4 !important;
    outline-offset: -2px
}

@media (min-width: 768px) {
    .webcomp.feature__tabs.responsive .nav-tabs {
        display:flex;
        background-color: transparent!important
    }

    .webcomp.feature__tabs.responsive.tab-group .card {
        border: none;
        padding: 0;
        margin-bottom: 0;
        background-color: transparent
    }

    .webcomp.feature__tabs.responsive.tab-group .card .card-header {
        display: none
    }

    .webcomp.feature__tabs.responsive.tab-group .card .collapse {
        display: block
    }

    .webcomp.feature__tabs.tabs.responsive .card-header {
        display: none;
    }

    .webcomp.feature__tabs.tabs.responsive .collapse {
        display: block !important;
    }
}
.webcomp.feature__tabs.tabs [role=tablist] [aria-selected="true"]::after {
    border-color: #f9a71c;
    }
.webcomp.feature__tabs.tabs [role=tablist] [aria-selected="false"]::after {
    content: none;
}

.webcomp.feature__tabs .nav-tabs .nav-link.active::after {
    border-color: #f9a71c;
}
.webcomp.feature__tabs .toggletab-mobile::before {
    font-family: "CaGov";
    content: "5";
    font-size: 1.6rem;
    transition-property: transform,left;
    transition: transform .2s,.2s;
    position: absolute;
    left: -8px;
    margin-top: -7px;
}
.webcomp.feature__tabs .toggletab-mobile[toggle-state="open"]::before {
    transform: rotate(90deg) translateY(-0.2rem);
}
.webcomp.feature__tabs .nav-tabs {
    border-bottom: 1px solid #e4e4e4;
}
.webcomp.feature__tabs .collapse {
    min-height:300px;
}

/* feature tab version 2 */
.webcomp.feature__tabs.tab_v2 .toggletab-mobile{
    background: #eaf1f4;
    font-weight: bold;
    padding: 10px;
    margin-left: -10px;
}

.webcomp.feature__tabs.tab_v2 .toggletab-mobile::before {
    right: 30px;
    left: initial;
}
.webcomp.feature__tabs.tab_v2.tabs [role=tabpanel] {
    border: 1px solid var(--bs-border-color);
    padding: 5px 1.1rem;
    margin-top: 0;
}
.webcomp.feature__tabs.tab_v2 h2{
    font-size: 1.7em;
    color: #2d6e8d !important;
    font-weight: bold;
}
.webcomp.feature__tabs.tab_v2 h3{
    font-size: 1.5em;
    color: #17315a !important;
    font-weight: bold;
}
.webcomp.feature__tabs.tab_v2 h4{
    font-size: 1.3em;
    color: #2d6e8d !important;
}
.webcomp.feature__tabs.tab_v2 h5{
    font-size: 1.2em;
    color: #2d6e8d !important;
}
.webcomp.feature__tabs.tab_v2 h6{
    font-size: 1.1em;
    color: #17315a !important;
}

.webcomp.feature__tabs.tab_v2 table tr:nth-child(odd) td{
    background: #eaf1f4;
}

.webcomp.feature__tabs.tab_v2 i{
    color: #2D6E8D;
    font-size: 2rem;
    text-align: center;
}

.webcomp.feature__tabs.tab_v2 .table > tbody > tr > td{
    border-top: none;
    vertical-align: middle;
}

.webcomp.feature__tabs.tab_v2  .nav-tabs>li>a{
    font-size: 1.2em !important;
    font-weight: bold;
    color: #949494 !important;
}
.webcomp.feature__tabs.tab_v2  .nav-tabs>li>a.active{
    color: #17315a !important;
}

/* flex fix the elememt to bottom*/
.flex-column{
    display: flex;
    flex-direction: column;	
}	
.element-flex-bottom{
	margin-top: auto;
    width: fit-content;
}


/* Mobile-side-nav Basic styles for the triangle icon */
.wc__grid .feature__sideNav page-nav-section {
    position: relative;
}

.wc__grid .feature__sideNav page-nav-section .page-navigation-label {
    margin-top: -3px !important;
    padding-top: 0 !important;
}
.wc__grid .feature__sideNav page-nav-section .triangle-div{
    display: none;
}
.wc__grid .feature__sideNav .triangle-icon {
    display: none;
    margin-left: 5px;
    vertical-align: middle;
    /* border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 13px solid #17315A; */

    border-top: solid 7px #2d6e8d;
    border-left: solid 7px transparent;
    border-right: solid 7px transparent;

    cursor: pointer;
    transition: transform 0.3s;

    /* position: absolute;
    top: 5px;
    right: 0;
    z-index: 999; */
}
.wc__grid .feature__sideNav .triangle-icon:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -7px;
    height: 0px;
    width: 0px;
    border-top: solid 7.5px white;
    border-left: solid 7.5px transparent;
    border-right: solid 7.5px transparent;
}
.wc__grid .feature__sideNav .triangle-icon {
    transform: rotate(360deg);
}
.wc__grid .feature__sideNav .triangle-icon.open {
    transform: rotate(180deg);
}

/* Transition styles for the mobile-side-nav */
.wc__grid .feature__sideNav #mobile-side-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}


/* Mobile-specific styles */
@media (max-width: 767px) {
    /* .wc__grid .feature__sideNav #mobile-side-nav {
        display: none;
    } */
    .wc__grid .feature__sideNav .triangle-icon,
    .wc__grid .feature__sideNav page-nav-section ul.list-navigation .sublinks-object {
        display: inline-block;
    }
    .wc__grid .feature__sideNav page-nav-section ul.list-navigation li a,
    .wc__grid .feature__sideNav page-nav-section ul.list-navigation .sublinks-object {
        width: 100%;
    }
    .wc__grid .feature__sideNav page-nav-section .triangle-div{
        display: inline-block;
        padding: 0 0 0 50px;
        cursor: pointer;
        right: 0;
        position: absolute;
        z-index: 999;
        color: #2d6e8d;
        padding-right: 1rem;
    }
}

/* flex container */
.flex-container{
    display: flex;
    padding: 20px 0;
}

/* icon container */
.icon-container {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-right: 15px;
    padding-top: 10px;
    max-width: 40px;

}

.icon-container i {
    font-size: 2.5rem;
    color: #f9a71c;
}

.align-to-center  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}
.align-to-center h3, .align-to-center p {
    margin: 0; 
}

/* align ul items */
.ul-align-left{
    padding-left: 20px;
}


/*---------------
Modal Feature Start
-----------------*/
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}


.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2
}

.close:focus,.close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5
}

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0
}

.modal-open {
  overflow: hidden
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;

  /* background-color: rgba(0, 0, 0, 0.5); */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Transition for opacity and visibility */

}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0,-25%);
  -ms-transform: translate(0,-25%);
  -o-transform: translate(0,-25%);
  transform: translate(0,-25%)
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0)
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  box-shadow: 0 3px 9px rgba(0,0,0,.5)
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
  margin-top: -2px
}

.modal-title {
  margin: 0;
  line-height: 1.42857143
}

.modal-body {
  position: relative;
  padding: 15px
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
  margin-bottom: 0;
  margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
  margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
  margin-left: 0
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll
}

@media (min-width: 768px) {
  .modal-dialog {
      width:600px;
      margin: 30px auto
  }

  .modal-content {
      -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
      box-shadow: 0 5px 15px rgba(0,0,0,.5)
  }

  .modal-sm {
      width: 300px
  }
}

@media (min-width: 992px) {
  .modal-lg {
      width:900px
  }
}

.modal.show {
    display: block;
    opacity: 1;
    visibility: visible;
  }

/* Modal backdrop styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;

    transition: opacity 0.3s ease; 
}
.modal-backdrop.show{
    background-color: rgba(0, 0, 0); 
    opacity: 0.5;
    transition: opacity 0.3s ease; 
}

button.close {
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;
}
/*---------------
Modal Feature End
-----------------*/