/*
.html-select__field > select {
	display: none !important;
	margin-left: 5%;
	width: 90%;
	height: var(--form-text-1_height);
	opacity: 0;
	-webkit-appearance: none;
} */

/*
.html-select__options {
	/*visibility: hidden;*/
/* }

.html-select {
	// --html-select_padding-left: var(--form-text-1_padding-left);
	// --html-select_height: var(--form-text-1_height);
	// --html-select_border-radius: 10px;
	// --html-select_border: var(--form-text-1_border);
	// --html-select_background-color: transparent;
	// --html-select_color: #fff;
	// --html-select_font-size: var(--html-select_px16);
	// --html-select_line-height: var(--html-select_px22);
	// --html-select_arrow_font-size: var(--html-select_px28);
	// --html-select_html-select__options_padding: 12px 0;
	--azul-claro-dark-resaltado-texto: #46C0A9;
	position: relative;
	z-index: 20;
	margin-top: calc(var(--html-select_height) * -1);
	width: 100%;
	font-size: var(--html-select_font-size);
	line-height: var(--html-select_line-height);
} */

/* .html-select.active .html-select__selected {
			border-color: var(--html-select_azul-secundario);
		}

.html-select.active .html-select__selected::after {
			transform: rotate(180deg);
		} */

		/*
.html-select.active .html-select__options {
			visibility: visible;
			opacity: 1;
}
*/

/* .html-select__selected,
.html-select__options {
	border: var(--html-select_border);
	border-radius: var(--html-select_border-radius);
	background: var(--html-select_background-color);
	color: var(--html-select_color);
	font-family: var(--html-select_font-family-2);
} */

/* .html-select__selected {
	position: relative;
	display: -webkit-box;
	display: none;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-left: var(--html-select_padding-left);
	padding-right: var(--html-select_padding-left);
	width: 100%;
	height: var(--html-select_height);
	text-align: left;
}

.html-select__selected::after {
		// @extend %fa-icon;
		// @extend .fa-solid;
		// content: fa-content($fa-var-chevron-down);
		font-family: var(--font-family-3);
		content: "\e5cf";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		display: flex;
		align-items: center;
		margin: auto;
		font-size: var(--html-select_arrow_font-size);
		transition: .3s ease-out transform;
}

.html-select__selected:focus {
		outline: 0;
		// border-color: var(--html-select_green-3);
} */

/* .html-select__options {
	/*
	position: absolute;
	top: calc(100% + 10px);
	left: 0;*/
	/*
	display: flex;
	flex-direction: column;
	align-items: flex-start;*/
	/* padding: var(--html-select_html-select__options_padding);
	width: 100%;
	transition: .3s ease-out all;
	// opacity: 0;
	// max-height: 220px;
} */

/*
.html-select__scroll {
	max-height: 320px;
	// overflow-y: scroll;

	.simplebar-track {
		right: 11px;
	}

	.simplebar-scrollbar {
		&::before {
			width: 5px;
			background: #F0F8FF !important;
			border-radius: 5px !important;
		}
	}
}
*/

/* .html-select__option {
	display: flex;
	align-items: center;
	padding: 8px var(--html-select_padding-left) 7px;
	min-height: 35px;
	line-height: var(--html-select_px16);
	line-height: var(--html-select_px21);
	color: var(--html-select_color);
	cursor: pointer;
}



.html-select__option:is(:hover, :focus) {
		background: var(--azul-claro-dark-resaltado-texto);
		color: var(--azul-principal);
		text-decoration: none;
}

.html-select__option a {
		display: flex;
		align-items: center;
		margin: -8px -14px -7px;
		padding: 8px 14px 7px;
		width: calc(100% + 28px);
		color: inherit;
		text-decoration: none;
}

.html-select__option[data-value="_none"] {
	display: none !important;
}

.html-select__option {
	width: 100%;
	text-align: start;
}

.html-select__option:hover,
.html-select__option.selected {
		// background-color: var(--html-select_green-4);
}

.html-select__option:first-child {
	//	border-radius: 8px 8px 0 0;
}

.html-select__option[data-value="0"] {
	display: none;
}

.html-select__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 140px));
	gap: 30px;
} */




/*---------------------------------- nuevos estilos select --------------------------------------------*/
.html-select{
	width: 100%;
	max-width: 206px;
	margin: auto;
	position: relative;
}



.html-select__selected{
	height: 45px;
	color: #fff;
	background: #46C0A9 url("../../images/svg/arrowdown.svg") no-repeat;
	background-position-x: 90%;
	background-position-y: center;
	border-radius: 10px;
	position: relative;
	z-index: 1;
	width: 100%;
	text-align: left;
}

.html-select__option{
	height: 30px;
	text-align: left;
}
/* .html-select__selected{

	height: 40px;
	border-radius: 10px;
	position: relative;
	z-index: 1;
	background: #F2F2F2;
} */

.html-select__option:hover,
.html-select__option.selected:hover{
	color: #fff;
	background: #46C0A9;
}

.html-select__options{
	z-index: 2;
	position: absolute;
	top: 0;
	width: 100%;
	display: none;
}
.html-select__option[data-value="_none"]{
	display: none;
}
.html-select.op .html-select__options{
	display: block;
}
.html-select__inner{
	display: flex;
	flex-direction: column;
	border: 1px solid #46C0A9;
	border-radius: 10px;
	overflow: hidden;
	background: #F2F2F2 url("../../images/svg/arrowup.svg") no-repeat;
	background-position-x: 90%;
	background-position-y: 14px;
}
#edit-unit-price-wrapper label{
	display: none;
}
#edit-unit-price-wrapper{
	display: none;
}
#edit-unit-price-wrapper.clicked{
	display: block;
	margin-bottom: 0 !important;
}
#edit-field-cantidades{
	display: none;
}
#edit-field-cantidades-wrapper h2{
	width: 100%;
}
#edit-field-cantidades-wrapper .js-form-item-field-cantidades{
	width: 100%;
}
#edit-field-cantidades-wrapper .field--name-field-nombre{
	order: 1;
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
}
#edit-field-cantidades-wrapper .field--name-field-apellidos{
	order: 2;
	width: 50%;
	width: calc(50% - 10px);
}
#edit-field-cantidades-wrapper .field--name-field-apellidos label,
#edit-field-cantidades-wrapper .field--name-field-nombre label,
#edit-field-cantidades-wrapper .field--name-field-correo-electronico label{
	color: var(--orange);
	margin: 0;
	text-align: left;
}
#edit-field-cantidades-wrapper .field--name-field-apellidos label::after,
#edit-field-cantidades-wrapper .field--name-field-nombre label::after,
#edit-field-cantidades-wrapper .field--name-field-correo-electronico label::after{
	content: "*";
	display: unset !important;
	background: unset;
	margin: 0;
	vertical-align: unset;
}
#edit-field-cantidades-wrapper .field--name-field-correo-electronico{
	order: 3;
	max-width: 355px;
	margin: 0 auto;
}

#edit-field-cantidades-wrapper p{
	order: 4;
	text-align: center;
	width: 100%;
	max-width: 420px;
	margin: 15px  auto;
}

#edit-field-cantidades-wrapper .form-action-button{
	order: 5;
	margin: 0 auto;
}

#edit-field-cantidades-wrapper .form-action-button.disabled{
	opacity: 0.5;
}

#edit-submit--2,
#edit-submit{
	width: 100%;
	background: #F27259;
	max-width: 190px;
	height: 40px;
	color: #FFFFFF;
	border-radius: 20px;
	display: block;
    margin: 0 auto 0 0;
}

#edit-submit--3{
	margin: 0 0 0 auto;
	background: #fff;
	color: #F27259;
	border: 1px solid #F27259;
}

#edit-field-tipo-de-documento{
	max-width: 81px;
}


.field--name-field-tipo-de-documento{
	width: 15% !important;
}

.field--name-field-numero-de-documento{
	width: 75% !important;
}

.field--name-field-ciudad-departamento .choices .choices__item--selectable button {
	display: none;
}

.field--name-field-ciudad-departamento .choices,
.field--name-field-ciudad-departamento .choices.is-open{
	border-radius: 10px;
	background: #F2F2F2;
	color: #302F2F;
}


.field--name-field-ciudad-departamento .choices.is-open .choices__inner{
	border-radius: 10px;
}

.choices__inner{
	border: none;
	background: #F2F2F2;
	color: #302F2F;
}

.field--name-field-ciudad-departamento .choices:after{
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	background: url(/themes/custom/fundacion_new_theme/images/svg/orange-down-arrow.svg) no-repeat;
	display: block;
    width: 19.75px;
    height: 13px;
    content: '';
    position: absolute;
    border: none;
    top: 44%;
}

.field--name-field-ciudad-departamento .choices.is-open:after{
    top: 40%;
	transform: rotate(180deg);
	border: none;
	margin: 0;
}
.commerce-order-item-add-to-cart-form-commerce-product-1.commerce-order-item-add-to-cart-form .js-form-item{
	margin-bottom: 0 !important;
}

#commerce-checkout-flow-multistep-default.commerce-checkout-flow-multistep-default{
	/* display: none !important; */
}

.donate-form-with-2-blocks.path-checkout #commerce-checkout-flow-multistep-default.commerce-checkout-flow-multistep-default > .layout-checkout-form:not(:has(.checkout-complete)) > div,
.donate-form-with-2-blocks.path-checkout #commerce-checkout-flow-multistep-default.commerce-checkout-flow-multistep-default > .layout-checkout-form:not(:has(.checkout-complete)) > input,
.donate-form-with-2-blocks.path-checkout #commerce-checkout-flow-multistep-default.commerce-checkout-flow-multistep-default > .layout-checkout-form:not(:has(.checkout-complete)) > fieldset{
	display: none;
	opacity: 0;
}

.donate-form-with-2-blocks.path-checkout #commerce-checkout-flow-multistep-default.commerce-checkout-flow-multistep-default > .layout-checkout-form > p{
	text-align: center;
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
	color: #302F2F;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.donate-form-with-2-blocks.path-checkout #commerce-checkout-flow-multistep-default.commerce-checkout-flow-multistep-default > .layout-checkout-form::before{
	background: url("../images/svg/progress-activity.svg") center center no-repeat;
	content: '';
	display: block;
	margin: 0 auto 20px;
	width: 75px;
	height: 75px;
	position: relative;
	animation: rotation 2s infinite linear;
}
.form-type-commerce-price .input-group::before{
	content: '$';
	background: none;
	color: #000000;
	font-size: 18px;
	line-height: 43px;
	height: max-content;
	margin: 10px auto ;
}

.form-type-commerce-price{
	margin-bottom: 0 !important;
}

.form-type-commerce-price:after{
	content: '*El monto mínimo de donación son $10.000';
	text-align: center;
	color: #45403E;
	font-size: 12px;
	line-height: 21px;
	margin: 0 -38px 0;
}

/* New styles */
.alias-path-dona-y-unete-nuestra-causa .html-select__inner .html-select__option,
.alias-path-dona-y-unete-nuestra-causa .html-select__selected {
	font-weight: 700;
	padding: 0 20px;
	border: none;
	outline: none;
	height: 45px;
}