.shadow {
	box-shadow: 0 4px 64px 0 rgba(0, 0, 0, 0.10);
}

.activePolicy.policyHeader {
	background-color: #466580;
	color: #fff;
}

.policyWip.policyHeader {
	background-color: #F8FDFF;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.policyExpired {
	.policyHeader {
		background-color: #F7F7F7;
		filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
	}

	.policySubDetails {
		color: #4E4D4E;
		opacity: 0.4;
	}

	.policyDetails {
		.accent-color {
			color: #4E4D4E;
		}
	}
}

.policyError {
	background-color: #D53581;
	color: #fff;

	.shield-icon path {
		stroke: #fff;
	}
}

.icon-fucsia path {
	stroke: #D53581;
}

.arrow_ap {
	transition: transform 150ms linear;
}

.section.open .arrow_ap {
	transform: rotate(90deg);
}

.btn-fucsia {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
	text-transform: uppercase;
	cursor: pointer;
	background-color: #D53581;
	color: #fff;
	font-weight: 600;

	&:disabled {
		pointer-events: none;
		background-color: #F7F7F7;
		color: #C0C0C0;
		border: 2px solid #E7E7E7;
	}
}

.policyHeader button:enabled {
	path {
			fill: #D53581;
	}
}

.section_ap:not(:last-of-type) {
	border-bottom: 1px solid #CFCFCF;
}

.activePolicy .shield-icon path {
	stroke: #fff;
}

.shield-icon path {
	stroke: #4E4D4E;
}

.grid-template-columns-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

#btn-signature.btn-blue {
	path {
		fill: #3796C2;
	}
}

input[type=radio]:checked {
	background-image: url(res/ball.svg);
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center;
}

.privacy-content p {
	margin: 0 0 14px 0;
	font-weight: 400;
}

.privacy-intro {
	margin-bottom: 20px;
}

.privacy-section-title {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #3796C2;
	margin: 24px 0 12px 0;
}

.privacy-content ul {
	margin: 0 0 16px 18px;
	padding: 0;
}

.privacy-content ul li {
	margin-bottom: 8px;
	line-height: 1.5;
}

.menu-item {
	padding: 10px 16px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	cursor: pointer;
	background-color: transparent;
	font-weight: 400;
	color: #4E4D4E;
}

.menu-item.active {
border-radius: 8px;
background: var(--White, #FFF);
box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.20);
color: #3796C2;
font-weight: 600;
}

.menu-item.disabled {
	cursor: not-allowed;
	opacity: 0.5;
	background-color: transparent;
	font-weight: 400;
}

.productCard svg {
 width: 140px;
 height: 140px;
}

.gray-shield path{
	stroke: #676767;
}

.section_ap > div:nth-child(2) {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 0.50s ease,
    opacity 0.50s ease,
    transform 0.50s ease;
}

.section_ap.open > div:nth-child(2) {
  max-height: 500px; 
  opacity: 1;
  transform: translateY(0);
}

.policyBox .logo svg {
	width: 120px;
	height: auto;
	padding: 27px 15px
}