/*
* @Author: Davi Backendorf
* @Date:   2020-03-05 22:31:23
* @Last Modified by:   Davi Backendorf
* @Last Modified time: 2020-03-06 21:06:35
*/
/*Pure css collapsible*/
.wrap-collabsible {
	margin-bottom: 1.2rem 0;
}

.wrap-collabsible input[type='checkbox'] {
	display: none;
}

.lbl-toggle {
	display: block;

	font-weight: bold;
	font-family: monospace;
	font-size: 1.2rem;
	text-transform: uppercase;
	text-align: center;

	padding: 1rem;

	color: #A77B0E;
	background: #FAE042;

	cursor: pointer;

	border-radius: 7px;
	transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
	color: #7C5A0B;
}

.lbl-toggle::after {
	content: ' ';
	display: inline-block;

	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid currentColor;
	vertical-align: middle;
	margin-right: .7rem;
	transform: translateY(-2px);

	transition: transform .2s ease-out;
	float: right;
	margin-top: 5px;
}

.toggle:checked + .lbl-toggle::after {
	transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
	max-height: 0px;
	overflow: hidden;
	transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
	max-height: 100vh;
}

.toggle:checked + .lbl-toggle {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
	background: rgba(250, 224, 66, .2);
	border-bottom: 1px solid rgba(250, 224, 66, .45);
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	padding: .5rem 1rem;
}
/*Pure css collapsible*/

.backendorf-parcelamento .footer-message {
	font-size: 9px;
	color: #a9a9a9;
	line-height: 1.2;
}

.backendorf-parcelamento .installments.title {
	font-size: 12px;
}

.backendorf-parcelamento .installments-options {
	padding: 5px 10px;
	font-size: 1.1em;
}

.backendorf-parcelamento .installments-options .installment-option {
	text-transform: uppercase;
	list-style: none;
	margin: 5px 0;
}

.backendorf-parcelamento .installments-options .installment-option strong {
	color: #f2703e;
}

.best-installment {
	color: #737373;
	font-size: 12px;
	white-space: nowrap;
	font-weight: 500;
	margin: 5px 0 20px;
	overflow: hidden; 
	text-overflow: ellipsis; 
	text-transform: uppercase;
}

.best-installment span {
	color: #f2703e;
}

.desconto-a-vista .preco-com-desconto {
	font-size: 22px;
	font-weight: 700;
	display: block;
}