/* form */


.section_form {
	width: calc(100% - 0rem);
    display: flex;
    flex-direction: column;
}

.section_form_border {
	padding: 0 0 1.25rem;
	/* border-bottom: 0.125rem solid var(--white); */
}

.section_form_single {
	display: grid;
	grid-template-columns: calc(100% - 0rem);
}

.section_form_double {
	display: grid;
	grid-template-columns: calc(50% - 0.625rem) calc(50% - 0.625rem);
	column-gap: 1.25rem;
}

.section_form_data {
	margin: 0 0 1.25rem;
	display: flex;
	flex-direction: column;
}

.section_form_data h4 {
	color: var(--text-label);
	font-size: 0.625em;
	font-weight: 300;
	line-height: 1.5;
	text-align: justify;
}

.section_form_data input[type="text"],
.section_form_data input[type="number"] {
	width: calc(100% - 2rem);
  	max-width: calc(100% - 2rem);
	height: calc(3rem - 2rem);
  	padding: 1rem;
  	background-color: var(--bg-input);
  	outline: none;
  	border: none;
  	border-radius: var(--radius-default);
  	font-size: 0.875em;
}

.section_form_data span {
	min-height: calc(1.25rem - 0rem);
  	display: flex;
  	align-items: center;
  	color: var(--text-negative);
  	font-size: 0.75em;

  	display: none;
}

.section_form_data p {
    width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    height: calc(3rem - 2rem);
    padding: 1rem;
    display: flex;
    align-items: center;
    background-color: var(--bg-text);
    border-radius: var(--radius-default);
    font-size: 0.875em;
}

.section_form_data ul {
	min-height: calc(3rem - 2rem);
	padding: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: var(--bg-primary-lighter);
	border-radius: var(--radius-default);
}

.section_form_data ul li {
	width: fit-content;
	margin: 0 1.25rem 0 0;
	display: flex;
	flex-direction: column;
}

.section_form_data ul li:last-child {
	margin: 0;
}

.section_form_data ul li img {
	width: calc(7rem - 0rem);
	height: calc(7rem - 0rem);
	border-radius: var(--radius-default);
	border: 0.125rem solid var(--border-default);
	cursor: pointer;
}

.section_form_data_row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.section_form_data_row .box_container {
	margin: 0.625rem 0 0;
	display: flex;
	flex-direction: row;
}

.section_form_data_row .switch {
	position: relative;
 	display: inline-block;
	width: 56px;
 	height: 30px;
}

.section_form_data_row .switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}

.section_form_data_row .switch span { 
	display: flex;
}

.section_form_data_row .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--grey-dark);
	-webkit-transition: .4s;
	transition: .4s;
}

.section_form_data_row .slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 4px;
	bottom: 4px;
	background-color: var(--white);
	-webkit-transition: .4s;
	transition: .4s;
}

.section_form_data_row input:checked + .slider {
	background-color: var(--color-secondary);
}

.section_form_data_row input:focus + .slider {
	/* box-shadow: 0 0 1px var(--color-secondary); */
}

.section_form_data_row input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* rounded sliders */
.section_form_data_row .slider.round {
	border-radius: 34px;
}

.section_form_data_row .slider.round:before {
	border-radius: 50%;
}

.section_form_data_row button,
.section_form_buttons button {
	height: calc(3rem - 0rem);
	margin: 0 0 0 1rem;
    padding: 0.8rem 1rem 1.2rem;
    background-color: var(--bg-button);
    color: var(--white);
    font-size: 0.875em;
    font-weight: 500;
    text-decoration: none;
    outline: none;
    border: none;
    border-radius: var(--radius-button);
    transition: all 0.4s;
    cursor: pointer;
}

.section_form_data_row button:hover,
.section_form_buttons button:hover {
    background-color: var(--bg-button-hover);
}

.section_form_data_row button:disabled,
.section_form_buttons button:disabled {
    background-color: var(--bg-button-disabled);
    color: var(--text-button-disabled);
    cursor: not-allowed;
}


@media only screen and (max-width: 1024px) {}


@media only screen and (max-width: 768px) {}


/* form */