@import 'src/Components/GlobalStyles/colors';

.cardContainer {
	cursor: pointer;
	position: relative;
	padding: 8px 28px 26px 23px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-shadow: 0 3px 13px 0 $dropShadow;
	transition: all 0.3s ease-in-out;

	&:hover {
		transform: scale(1.05);
		border: 2px solid var(--primary-color);
	}

	label {
		font-size: 1.125em;
		font-weight: 600;
		color: $dark;
	}

	p {
		font-weight: 400;
		font-size: 1em;
		line-height: 20px;
		color: $dark;
	}

	input {
		appearance: none;
	}

	h4 {
		margin: auto 0 24px;
		font-size: 1.125em;
	}

	svg {
		transform: scale(1.3);
		position: absolute;
		top: 22px;
		right: 18px;
	}

	.nonActive,
	.active {
		transform: scale(1.3);
		position: absolute;
		top: 22px;
		right: 17px;
	}

	.active {
		path {
			fill: var(--primary-color);
		}
	}

	.nonActive {
		path {
			fill: $grey-button;
		}
	}

	.radioButtonThird {
		path {
			fill: $grey-button;
		}
	}
}
