@import url("theme.css");
/* Using a url */

body {
	background-color: --color-second-light;
	margin: auto;
	font-family: var(--font-family-roboto);
	font-weight: var(--font-weight-normal);
}

/* Header */
.header-title {
	color: #000000;
	font-size: 20px;
	margin: 0px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	display: block;
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
	margin-top: 10px;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
	padding: 0 18px;
	background-color: white;
	display: none;
	overflow: hidden;
	width: 100%;
}

#accordion-menu {
	width: inherit;
}

/* Styles for accordion */
.accordion {
	margin: 20px;
}

.accordion-section {
	border: 1px solid #ccc;
	margin-bottom: 10px;
}

.accordion-section-header {
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	/* Smooth color transition */
	color: #000000 !important;
}

.accordion-section-header button {
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 8px 16px;
	cursor: pointer;
}

.accordion-section-header button:hover {
	background-color: #0056b3;
}

.accordion-section-body {
	overflow: hidden;
	/* Hide overflowing content */
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.26s ease;
	display: none;
	/*transition: max-height 3s ease; /* Smooth height transition */
	/*max-height: 0; /* Start with collapsed height */
}

.accordion-section-body.show {
	display: block;
	height: auto;
	/* Expand to auto height when shown */
	max-height: 1000px;
	transform: scaleY(1);
	/*transition: max-height 3s ease; /* Smooth height transition */
}

.accordion-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 10px;
}

.accordion-table th,
.accordion-table td {
	border: 1px solid #ddd;
	padding: 8px;
}

.accordion-table th {
	background-color: #f2f2f2;
}

.accordion-table th:nth-child(odd) {
	background-color: #e0e0e0;
}

.accordion-commit-img {
	height: 50px;
}

/* Apply alternating background colors using nth-child selector */
.accordion-section:nth-child(odd) .accordion-section-header {
	background-color: #D2F0FF;
}

.accordion-section:nth-child(even) .accordion-section-header {
	background-color: #FFFFFF;
}

/* Apply active color to section header */
.accordion-section-header.active {
	background-color: #0072A9 !important;
	color: #FFFFFF !important;
}

.accordion-section-header.active .customer-info-line .telpriv {
	color: #FFFFFF !important;
}

.customer-info-line .telpriv {
	color: #000000;
}

.customer-info-line .telurgency {
	color: red !important;
}

.customer-info {
	display: flex;
	align-items: baseline; /* Align items on their baselines */
	flex-direction: column; /* Align items vertically */
}


.customer-name {
	font-size: 1.5em;
	margin-right: 10px;
	/* Adjust spacing between name and address */
}

.checkbox-container {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.checkbox-container .checkmark {
	height: 15px;
	width: 15px;
	border: solid #000000;
	border-width: 1px;
	background-color: #FFFFFF;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -15px;
}

.checkbox-container input[type="checkbox"] {
	opacity: 0;
	cursor: pointer;
	width: 15px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: #2196F3;
}

.checkbox-container .checkmark::after {
	content: "";
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	display: none;
}

.checkbox-container input[type="checkbox"]:checked+.checkmark::after {
	display: block;
}

.quantity-wrapper {
	display: flex;
	align-items: center;
}

.quantity-text {
	margin-left: 5px;
	font-size: 0.9em;
	color: #555;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.quantity-control {
	width: 25px;
	margin-left: 10px;
}

input[type=number] {
	-moz-appearance: textfield;
}

.exception-icon, 
.allphones-icon {
    width: 50px;
}

textarea {
	width: 99%;
	font-family: var(--font-family-roboto);
}

.info-right-section{
	display: flex;
	flex-direction: column;
	text-align: center;
}

.info-secundary {
	margin-right: 5px;
}

.name-header {
	display: flex;
}

.header-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
	flex: 1;
}

.plus-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.phone-table th,
.phone-table td {
	border: 1px solid #ddd;
	padding: 8px;
}

/* By default don't show errors */
.errors{
	color:red;
	display:none;
}

.signature-pad-wrapper {
    margin-top: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 800px; /* Match the canvas width */
}

.signature-canvas {
    border: 1px solid #000;
    cursor: crosshair;
	background: white;
}

/**
* BREADCRUMP
*/

#breadcrumb {
	display: flex;
	justify-content: space-between;
	margin: auto;
	width: 30vw;
	min-width: 500px;
	max-width: 800px;
}

.breadcrumb_text_mobile {
	display: none;
}

.breadcrumb_text_desktop {
	display: inline;
}

.breadcrumb_step {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.breadcrumb_step img {
	width: 40px;
}

.breadcrumb_step p {
	color: #798E9A;
	font-family: var(--font-family-roboto-bold);
	font-size: 12px;
}

.breadcrumb_separator {
	margin-top: 20px;
	width: 13px;
}

.breadcrumb_active .breadcrumb_number,
.breadcrumb_active .breadcrumb_text,
.breadcrumb_active .breadcrumb_dot {
	color: var(--color-main);
}

/**
* HEADER
*/
#header-logo {

	margin: 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center 0;
	height: 50px;
}

.header-body {
	display: var(--page-header);
	width: 65vw;
	min-width: 800px;
	margin: auto;
	flex-direction: column;
	flex-wrap: nowrap;
}

.header-title {
	display: var(--card-image-title-header);
	width: 45vw;
	min-width: 600px;
	letter-spacing: var(--character-spacing-0);
	text-align: left;
	opacity: 1;
	font-family: var(--font-family-roboto-light);
	font-weight: var(--font-weight-light);
	line-height: var(--line-spacing-55);
	font-style: var(--font-style-normal);
	font-variant: normal;

}

.lang-card {
	display: flex;
	flex-direction: row;
}

.lang-card-element {
	width: 50%;
	min-width: 350px;
}

#card-and-discount {
	display: var(--card-image-title-header);
	background-repeat: no-repeat;
	height: 130px;
	background-size: contain;
}

.menu-lang-button {
	width: 100px;
	height: 32px;
	background-color: white;
	border: 1px solid #dddddd;
	border-radius: 7px;
	text-align: center;
	font-size: 20px;
	font-family: var(--font-family-roboto-medium);
	font-weight: var(--font-weight-medium);
	position: relative;
	display: inline-block;
	float: right;

}

.menu-lang-button:hover .menu-lang-content {
	display: block;
	/*background-color:  #F6F6F6;*/
}

.menu-lang-content {
	width: 100%;
	display: none;
	position: absolute;
	border: 1px solid #dddddd;
	background-color: white;
	border-radius: 7px;
	text-align: center;
	z-index: 1;
	top: 30px;
	left: 0px;

}

.menu-lang-content a {
	display: block;
	font-size: var(--font-size-14);
	line-height: var(--line-spacing-20);
	font-family: var(--font-family-roboto-medium);
	font-weight: var(--font-weight-medium);
	text-decoration: none;
	display: block;
	color: var(--color-dark-grey);
	padding: 12px 16px;
	border-bottom: 1px solid #DDDDDD;
}

.menu-lang-content a:last-child {
	border-bottom: 0px;
}

.menu-lang-content a:hover {
	background-color: #f1f1f1;
	font-family: var(--font-family-roboto-medium);
	font-weight: var(--font-weight-medium);
}

#back-button {
	display: var(--back-button-header);
}

#back-button a {
	padding-left: 4vw;
	color: var(--color-button-primary);
	font-family: var(--font-family-roboto);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-16);
	line-height: var(--line-spacing-20);
	font-style: var(--font-style-normal);
	font-weight: var(--font-weight-normal);
}


/**
* =====================================
* Content Home Page
* =====================================
* */

#content {
	margin: 0;
	width: 100%;
	background-color: var(--color-second-light);
	position: absolute;
	left: 0;
}

.body-content {
	display: var(--home-page);
	justify-content: space-around;
	width: 65vw;
	min-width: 800px;
	margin: auto;
	padding-bottom: 30px;
}

.body-panel {
	width: 35%;
	margin-top: 0px;
}

.left-body-panel-desc {
	min-width: 300px;
}

.right-body-panel {
	width: 400px;
	max-width: 32vw;
	min-width: 300px;
}

.left-body-panel-desc {
	color: var(--color-dark-grey);
	font-size: var(--font-size-20);
	font-family: var(--font-family-roboto);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-spacing-28);
	font-style: var(--font-style-normal);
	margin-top: 0px;
	max-width: 500px;
}

.body-panel-fantom {
	width: 50px;
}

.help-button {
	font-size: 16px;
	width: 32px;
	height: 32px;
	text-align: center;
}

.help-button:hover {
	background-color: #F6F6F6;
}

.single-icon {
	color: var(--color-dark-grey);
	font-size: 23px;
}

.single-icon:hover {
	color: var(--color-icon-hover);
}

/**
* =====================================
* Footer
* =====================================
*/
#footer {
	margin: auto;
	width: 55vw;
	color: var(--color-dark-grey);
	font-family: var(--font-family-roboto);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-14);
	line-height: var(--line-spacing-20);
	margin-bottom: 20px;
	padding-top: 30px;
	padding-bottom: 30px;

}

#footer a {
	color: var(--color-dark-grey);
	text-decoration: underline;
}

#footer img {
	margin-top: 30px;
}

#footer-links {
	display: var(--footer-links);
}

/**
* =====================================
* Buttons
* =====================================
*/
button {
	border: 1px solid #DDDDDD;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 7px;
	color: var(--color-dark-grey);
	font-size: 12px;
	font-family: var(--font-family-roboto-light);
	font-weight: var(--font-weight-light);
	line-height: 14px;
	font-style: var(--font-style-normal);
	letter-spacing: var(--character-spacing-0);
	text-align: left;
	cursor: pointer;
}

.action-button {
	background-color: white;
	border: 1px solid var(--color-button-primary);
	border-radius: 22px;
	color: var(--color-button-primary);
	font-family: var(--font-family-roboto-medium);
	font-weight: var(--font-weight-medium);
	font-size: var(--font-size-20);
	line-height: var(--line-spacing-24);
	text-align: center;
	width: 100%;
	height: 45px;
}

.action-button:hover {
	background-color: #F6F6F6;
}

.disabled-action-button {
	background-color: var(--color-disable-button);
	border: 0px;
	border-radius: 22px;
	color: white;
	font-family: var(--font-family-roboto-medium);
	font-weight: var(--font-weight-medium);
	font-size: var(--font-size-20);
	line-height: var(--line-spacing-24);
	text-align: center;
	width: 100%;
	height: 45px;
}

.enabled-action-button {
	background-color: var(--color-button-primary);
	border: 0px;
	border-radius: 22px;
	color: white;
	font-family: var(--font-family-roboto-medium);
	font-weight: var(--font-weight-medium);
	font-size: var(--font-size-20);
	line-height: var(--line-spacing-24);
	text-align: center;
	width: 100%;
	height: 45px;
}

.enabled-action-button:hover {
	background-color: var(--color-button-hover) !important;
}

/**
* =====================================
* Titles
* =====================================
*/
h1 {
	color: var(--color-main);
	font-size: var(--font-size-25);
	font-family: var(--font-family-roboto-medium);
	font-weight: var(--font-weight-medium);
	line-height: var(--line-spacing-30);
	font-style: var(--font-style-normal);
	margin-bottom: 10px;
}

h2 {
	color: var(--color-second);
	font-size: var(--font-size-20);
	font-family: var(--font-family-roboto-medium);
	font-weight: var(--font-weight-medium);
	line-height: var(--line-spacing-28);
	font-style: var(--font-style-normal);
	margin-bottom: 0px;
}

h3 {
	color: var(--color-main);
	font-size: var(--font-size-20);
	font-family: var(--font-family-roboto);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-spacing-24);
	font-style: var(--font-style-normal);
	margin-top: 0px;
}

/**
* =====================================
* INPUT
* =====================================
*/
input[type=text],
input[type=email],
input[type=date],
select {
	box-sizing: content-box;
	width: 80%;
	margin: 5%;
	max-width: 300px;
	margin-top: 10px;
	margin-bottom: 10px;
	height: 42px;
	border: 2px solid #dddddd;
	border-radius: 7px;
	padding: 1px 5%;

	color: var(--color-dark-grey);
	font-size: var(--font-size-16);
	font-family: var(--font-family-roboto);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-spacing-20);
	font-style: var(--font-style-normal);
	letter-spacing: var(--character-spacing-0);
}

select {
	padding-right: 24px;
	border-radius: 10px;
	margin-left: 14px;
}

a {
	text-decoration: none;
	color: var(--color-button-primary);
}

input[type=checkbox]:before {
	font-family: "FontAwesome";
	content: "\2714";
	font-size: 15px;
	color: transparent !important;
	display: block;
	margin-right: 7px;
	border: 2px solid var(--color-second);
	border-radius: 3px;
	width: 20px;
	height: 20px;
}
/*
input[type=checkbox]:checked:before {
	color: var(--color-second) !important;
	text-align: center;
}*/

.unchecked-checkbox:before {
	border: 2px solid red !important;
}

.inputfailed {
	color: var(--color-red) !important;
}

.inputfailed::-webkit-input-placeholder {
	color: var(--color-red) !important;
}

/* Fieldset */
.input-field {
	display: flex;
	flex-direction: column;
	width: 500px;
	max-width: 95%;
}

.input-field label {
	margin-left: 30px;
	font-size: var(--font-size-14);
	font-family: var(--font-family-roboto);
	font-weight: var(--font-weight-normal);
	color: #8d8d8d;
}

.input-field label .label-style {
	background: #FFF;
	padding: 0 5px;
	position: relative;
}

.input-field input {
	height: 25px;
	margin-top: -10px;
	padding: 10px 20px;
	border-radius: 10px;
	margin-left: 15px;
	margin-right: 25px;
}