/* Collapsable snippet styles START */
.rCollapse {
	flex: 1;
}
div .rCollapse {
	border-top: 1px solid #ebebeb;
}
div .rCollapse:last-child {
	border-bottom: 1px solid #ebebeb;
}
.rCollapse input[type="checkbox"] {
	display: none;
}
.rCollapse label {
	display: block;
	position: relative;
	padding: 1.2rem 3.5rem 1.2rem 0.4rem;
	margin-bottom: 0;
	background: white;
	color: black;
	/* font-weight: 300; */
	font-size: 1rem;
	transition: all 0.25s ease-out;
	cursor: pointer;
}
.rCollapse label:hover {
	cursor: pointer;
}
.rCollapse label::after {
	content: " ";
	position: absolute;
	width: 0;
	height: 0;
	top: 34px;
	right: 20px;
	float: right;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid gray;
	transition: transform 0.2s ease-out;
}
.rCollapse input[type="checkbox"]:checked + label::after {
	transform: rotate(-180deg);
}
.rCollapse__wrapper {
	overflow: hidden;
	max-height: 0px;
	font-size: 15px;
	line-height: 23px;
	transition: max-height 0.25s ease-in-out;
}
input[type="checkbox"]:checked + label + .rCollapse__wrapper {
	max-height: 1500px;
}
.rCollapse__wrapper .rCollapse__wrapper-content {
	background: white;
	padding: 0 1.2rem 1.2rem 1.8rem;
}
/* Collapsable snippet styles END */

input[type="submit"]:disabled {
	background-color: gray;
}
input[type="checkbox"].useragree {
	transform: scale(1.5);
	margin: 0.5em 1rem;
}





/* ADDONS FOR CONSTRUCTOR */
@media (min-width: 640px) {
    .sm\:h-48 {
        height: 12rem;
    }
    .sm\:h-64 {
        height: 16rem;
    }
    .sm\:h-72 {
        height: 18rem;
    }
    .sm\:object-cover {
        object-fit: cover;
    }
    .min-h-full {
        min-height: 100%;
    }
    .max-h-full {
        max-height: 100%;
    }
}
.w-max-revert{
	/* max-width: revert!important; */
}
