/*package options start*/

.package-options{
	display: flex;
	flex-direction: column;
	padding: 100px var(--site-padding);
}

.package-options__tiles{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 10px;
}

.package-options__option{
		position: relative;
    border-style: solid;
    border-radius: 20px;
    border-width: 1px;
    border-color: var(--tertiary-color);
    
}

.package-options__option--scroll{
	overflow: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 20px;
	scrollbar-width: none;
}

/* .package-options__option:not(.shadow-top)::before{
	opacity: 0;
}

.package-options__option:not(.shadow-bottom)::after{
	opacity: 0;
}

.package-options__option::before,
.package-options__option::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    pointer-events: none;
    z-index: 10;
	transition: 0.2s ease;
}

.package-options__option::before {
    top: 0;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.12), transparent);
}

.package-options__option::after {
    bottom: 0;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.12), transparent);
} */

.package-options__top-banner{
	background-color: #ebebeb;
	border-radius:  15px 15px 0px 0px ;
	margin: 0px;
	padding: 7px 20px;
}

.package-options__top-header{
	font-style: italic;
	font-size: var(--body-size);
	line-height: var(--body-height);
}

.package-options__internal-wrapper{
	display: flex;
	flex-direction: column;
	padding: 10px 20px 20px;
}

.package-options__image{
	max-width: 50%;
	margin: 0px auto;
}

.package-options__tile-header{
	text-align: center;
	margin-bottom: 30px;
	font-size: var(--header-sub-size);
}

.package-options__lists{
	margin-bottom: auto;
}

.package-options__list:has(ul){
	margin-bottom: 30px;
}

.package-options__list--header{
	font-size: 18px;
	margin-bottom: 10px;
}

.package-options__ul:not(.package-options__ul--bullets){
	list-style: none;
}

.package-options__ul:not(.package-options__ul--bullets) .package-options__line{
	padding: 7px 20px;
	text-align: center;
	background-color: #ebebeb;
	margin-bottom: 3px;
	border-radius: 6969px;
}

.package-options__ul--bullets{
	list-style: none;
}

.package-options__ul--bullets li::before{
	content: '>';
	color: var(--accent-color);
	font-weight: 600;
	margin-right: 5px;
}

.package-options__ul--bullets li{
	display: flex;
}

.package-options__ul--bullets li:not(:last-child){
	margin-bottom: 10px;
}

.package-options__internal-wrapper a.chevron-small{
	margin: 17px auto 0px auto;
}


.package-options__form{
	border-style: none;
    border-radius: 20px;
	flex-direction: column;
}

.package-options__form input{
	border-style: none;
	background-color: #ebebeb;
	border-radius: 6969px;
	
}

.package-options__form textarea{
	border-style: none;
	background-color: #ebebeb;
	border-radius: 20px;
	padding: 7px 20px;
}

.package-options__form--close{
	padding: 6px 10px 10px 10px;
	background-color: var(--accent-color);
	color: white;
	font-size: 35px;
	font-weight: 400;
	line-height: 20px;
	width: 40px;
	height: 40px;
	border-style: none;
	border-radius: 6969px;
	float: right;
	cursor: pointer;
}


.package-options__form #gform_submit_button_1{
	padding: 5px 15px;
    width: 150px;
    height: 40px;
    transition: 0.2s ease;
}

@media(max-width: 768px){
	.package-options__tiles{
	grid-template-columns: repeat(1, 1fr);
		row-gap: 10px;
}
}



/*package options end*/