/**
 * Copyright 2015 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

 @import '../css/spinner.css';
 @import '../css/grids.css';
 
*{
	box-sizing: border-box;
}
html,
body {
	font-family: 'Roboto', 'Helvetica', sans-serif;
}

.mdl-layout__header-row {
	 background-color: #F0F8FF;
}

.demo-avatar {
	width: 48px;
	height: 48px;
	border-radius: 24px;
}

.demo-layout .demo-header .mdl-textfield {
	padding: 0px;
	margin-top: 41px;
}

.demo-layout .demo-header .mdl-textfield .mdl-textfield__expandable-holder {
	bottom: 19px;
}

/* BOTON HAMBURGUESA RESPONSIVE */
.demo-layout .mdl-layout__header .mdl-layout__drawer-button {
	display: none;
}

@media screen and (max-width: 1025px) {
    .demo-layout .mdl-layout__header .mdl-layout__drawer-button {
		color: white;
		background: #383838;
		left: -5px;
		border-radius: 0 4px 4px 0px;
		display: flex;
		justify-content: center;
		align-items: center;
		transition-delay: 0.3s;
		transition: all .5s;
		height: 34px;
		top: 6px;
	}
}

.mdl-layout__drawer .avatar {
	margin-bottom: 16px;
}

.demo-drawer {
	border: none;
}

/* iOS Safari specific workaround */
.demo-drawer .mdl-menu__container {
	/*z-index: -1;*/
	z-index: 1;
}

/* .demo-drawer .demo-navigation {
	z-index: -2;
} */

/* END iOS Safari specific workaround */
.demo-drawer .mdl-menu .mdl-menu__item {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}


/* .demo-navigation {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
} */


@media (min-width: 1025px) {
	.demo-content {
		max-width: 1424px;
		margin-left: 0;
		width: 80%;
	}
}

@media (max-width: 1024px) and (min-width: 480px) {
	.demo-content {
		max-width: 1024px;
	}
}

.demo-charts {
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
}

.demo-chart:nth-child(1) {
	color: #ACEC00;
}

.demo-chart:nth-child(2) {
	color: #00BBD6;
}

.demo-chart:nth-child(3) {
	color: #BA65C9;
}

.demo-chart:nth-child(4) {
	color: #EF3C79;
}

.demo-graphs {
	padding: 16px 32px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

/* TODO: Find a proper solution to have the graphs
 * not float around outside their container in IE10/11.
 * Using a browserhacks.com solution for now.
 */
_:-ms-input-placeholder,
:root .demo-graphs {
	min-height: 664px;
}

_:-ms-input-placeholder,
:root .demo-graph {
	max-height: 300px;
}

/* TODO end */
.demo-graph:nth-child(1) {
	color: #00b9d8;
}

.demo-graph:nth-child(2) {
	color: #d9006e;
}

.demo-cards {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	-ms-grid-row-align: flex-start;
	align-items: flex-start;
	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}

.demo-cards .demo-separator {
	height: 32px;
}

.demo-cards .mdl-card__title.mdl-card__title {
	color: white;
	font-size: 24px;
	font-weight: 400;
}

.demo-cards ul {
	padding: 0;
}

.demo-cards h3 {
	font-size: 1em;
}

.demo-updates .mdl-card__title {
	min-height: 200px;
	background-image: url('../images/dog.png');
	background-position: 90% 100%;
	background-repeat: no-repeat;
}

.demo-cards .mdl-card__actions a {
	color: #00BCD4;
	text-decoration: none;
}

.demo-options h3 {
	margin: 0;
}

.demo-options .mdl-checkbox__box-outline {
	border-color: rgba(255, 255, 255, 0.89);
}

.demo-options ul {
	margin: 0;
	list-style-type: none;
}

.demo-options li {
	margin: 4px 0;
}

.demo-options .material-icons {
	color: rgba(255, 255, 255, 0.89);
}

.demo-options .mdl-card__actions {
	height: 64px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	box-sizing: border-box;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

#more-info-pos {
	position: fixed;
	display: block;
	right: 0;
	bottom: 0;
	margin-right: 40px;
	margin-bottom: 40px;
	z-index: 900;
}

#goto-home {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	margin-left: 380px;
	margin-top: 100px;
	z-index: 900;
}

/* Underline */

.bar {
	position: relative;
	display: block;
	width: 104%;
}


.bar:before,
.bar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 1px;
	position: absolute;
	background: #4a89dc;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.bar:before {
	left: 50%;
}

.bar:after {
	right: 50%;
}

/* Ripples container */

.ripples {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: transparent;
}

/* Ripples circle */

.ripplesCircle {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
	-webkit-animation: ripples .4s ease-in;
	animation: ripples .4s ease-in;
}

/* Ripples animation */

@-webkit-keyframes ripples {
	0% {
		opacity: 0;
	}

	25% {
		opacity: 1;
	}

	100% {
		width: 200%;
		padding-bottom: 200%;
		opacity: 0;
	}
}

@keyframes ripples {
	0% {
		opacity: 0;
	}

	25% {
		opacity: 1;
	}

	100% {
		width: 200%;
		padding-bottom: 200%;
		opacity: 0;
	}
}

@media (orientation:portrait) {

	/*@media (max-width: 1024px) and (orientation:portrait) {*/
	body {
		display: none;
		background-color: white;
		background-image: url('../images/rotate_landscape.png');
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-position: center;
	}
}

@media only screen and (max-width: 767px) {
	body {
		display: none;
		background-color: white;
		/*background-image: url('../images/rotate_landscape.png'); */
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-position: center;
	}
}


/* Alert Box */
.container-header-modal {
	/* background-color: aliceblue; */
	background-image: linear-gradient(to top, #00bcd436 0%, #ffffff 100%);
	/* margin: -1.5% -1.5% 1.5% -1.5%; */
	/* margin: -28px -15px 10px -13px; */
	margin: -15px -17px 10px -20px;
	border-radius: 5px;
}

.container-header-modal-alert {
	position: fixed;
	z-index: 1;
}

.container-title {
	display: flex;
	justify-content: space-between;
}

.alert {
	color: #FFF;
	padding: 1%;
	font-size: 1em;
	width: 85rem !important;
}

.alert.alert-primary {
	background-color: #41B8D2;
	border-color: #41B8D2
}

.alert.alert-danger {
	background-color:  var(--warning-color);
	border-color: var(--warning-color);
}

.header-title {
	width: 70%;
	padding: 0 2%;
	font-size: 1.2em;
	color: #37474F;
}


/*  Style ScrollBar */

.scrollbar-hx {
	overflow-x: hidden;
}

.scrollbar-hy {
	overflow-y: hidden;
}

.scrollbar-h {
	overflow: hidden;
}

.style-scrollbar::-webkit-scrollbar {
	width: .8rem;
	background-color: #F1F8FF;
	border-radius: 25px;
}

.not-style-scrollbar::-webkit-scrollbar {
	background-color: transparent !important;
}

.style-scrollbar::-webkit-scrollbar-thumb {
	border-radius: 10px;
	/* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0); */
	background-color: #B5B7C5;
}

.style-scrollbar::-webkit-scrollbar-thumb:hover
{
	border-radius: 10px;
	background-color: #a0a1a7;
}

.container-button-header {
	margin: 1.2% 1% auto;
	display: flex;
}

.container-button-header .btn-space {
	margin-right: 4%;
}

/* Style Accordion */
.animate-accordion-up {
	position: relative;
    width: 100%;
    top: 0;
	border-radius: 4px;
	background: #F2F6FF;
	-webkit-animation-name: animation-accordion-up;
	-webkit-animation-duration: 4s;
	animation-name: animation-accordion-up;
	animation-duration: 1s;
	transition: all 0.25s ease;
	z-index: 10;
}

/* Accordion Animate*/
@keyframes animation-accordion-up {
	0% {
		top: 80%;
	}

	50% {
		top: 40.9%;
	}
}


/* Accordion */
.main-acordion-btnClose {
	left: 29%;
}

.main-accordion-btnClose {
	margin-top: 40%;
	border-radius: 5px;
	padding: 10%;
}


/* Header page */
.header-page{
	padding-bottom: 2%;
  border-bottom: solid 1px #F0F0F0;
	width: 100%;
	margin-bottom: 1.5%;
}

.border-style-container{
	border: solid 1px #F0F0F0;
  padding: 1% 0;
	border-radius: 5px;
	margin: 2% 0;
}

/* Style input[type="date"] */
[type="date"] {
	background:#fff url(/resources/images/icons/calendar_2.png)  97% 50% no-repeat ;
  }
  [type="date"]::-webkit-inner-spin-button {
	visibility: hidden;
  }

  [type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
  }

  [type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
  }
  /* custom styles */

  input {
  border: none;
	  border-bottom: 1px solid rgba(0,0,0,.12);
	  display: block;
	  font-size: 16px;
	  font-family: "Helvetica","Arial",sans-serif;
	  margin: 0;
	  padding: 4px 0;
	  width: 20%;
	  background: 0 0;
	  text-align: left;
	  color: inherit;
  }

  /* Style Leyend */
  .s-legend{
	margin-left: .5%;
    font-size: 1.1rem;
	color: #7F7F7F;


	
	/* font-size: 1.1rem;
    color: #7F7F7F;
    padding: 1% 1.5%;
    background: rgb(255, 255, 255);
    border-bottom: solid 1px #cccccc29;
    border-radius: 15px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px; */
  }

  /* Style Icons Forms */
  .s-icons{
	margin: .5% auto;
    color: #C8C8C8;
  }

  .s-icons-top{
	margin-top: 2%;
  }

  .center-elements{
	display: flex;
  justify-content: space-around;
	}

	.center-elements-btn{
		display: flex;
		justify-content: space-between;
		align-items: center;
		}

	/* ESTILOS USADOS EN REITERADAS OCACIONES */
	/* USO DE WIDTH */
	.w-100 {
		width: 100%
	}

	.w-75 {
		width: 75%
	}

	.w-50 {
		width: 50% !important;
	}

	.w-25 {
		width: 25%
	}

	/* USO DE MARGIN */
	.m-1 {
		margin: 1%;
	}

	.m-2 {
		margin: 2%;
	}

	.m-3 {
		margin: 3%;
	}

	.m-4 {
		margin: 4%;
	}

	.m-5 {
		margin: 5%;
	}

		/* USO DE MARGIN */
		.mb-1 {
			margin-bottom: 1%;
		}
	
		.mb-2 {
			margin-bottom: 2%;
		}
	
		.mb-3 {
			margin-bottom: 3%;
		}
	
		.mb-4 {
			margin-bottom: 4%;
		}
	
		.mb-5 {
			margin-bottom: 5%;
		}

	/* USO DE PADDING */

	.p-1 {
		padding: 1%;
	}

	.p-2 {
		padding: 2%;
	}

	.p-3 {
		padding: 3%;
	}

	.p-4 {
		padding: 4%;
	}

	.p-5 {
		padding: 5%;
	}

	/* MARGIN-RIGHT */
	.mr-1 {
		margin-right: 1%
	}

	.mr-2 {
		margin-right: 2%
	}

	.mr-4 {
		margin-right: 4% !important;
	}

		/* MARGIN-LEFT */
	.ml-1 {
		margin-left: 1%
	}

	.ml-2 {
		margin-left: 2%
	}

	.ml-4 {
		margin-left: 4%
	}

	/* MARGIN-TOP */
	.mt-1 {
		margin-top: 1%
	}

	.mt-2 {
		margin-top: 2%
	}

	.mt-4 {
		margin-top: 4%
	}

	.mt-5 {
		margin-top: 5%
	}

	/* COLOR TITULOS DE FORM */
	.color-primary-title {
		color: var(--color-primary-text-title);
	}

	.d-flex {
		display: flex;
	}

	/* ESTILO PARA PLACEHOLDERS */
	input::-webkit-input-placeholder {
		color: rgba(184, 183, 184, 0.87);
	}
	input:-moz-placeholder {
		color: rgba(184, 183, 184, 0.87);
	}
	input:-ms-input-placeholder { 
		color: rgba(184, 183, 184, 0.87);
	}

	/* STYLE NAV COMBOBOX GENERATE WITH SUMOSELECT ONLY COMBOBOX EXTRAGARANTS */
	div.exonerationType :nth-child(2) :nth-child(3) > ul{
		position: fixed;
    z-index: 1000;
    background-color: white;
		border-radius: 10px;
		width: 43%;
	}	

	div.nationality > .SumoSelect :nth-child(3) > ul {
		height: 11rem;
	}
	


label.style, div.style {
	margin: 2% auto; 
	font-weight: 600
}

	/* MODALS ERRORS */

	.modal-header{
		align-items: center; 
		width: 15%;
		margin-left: 1%;
	}

	div.modal-header-color {
		background-color: #D23848;
	}

	div.modal-header-color-success {
		background-color: #28A745;
	}

	div.modal-header-color-warning {
		background-color: #FFC107;
	}

	.modal-header-icon {
		font-size: 3.5em; 
		color: white;
	}

	.modal-header-text {
		color: white; font-weight: 600;
	}

	.modal-header-btnClose {
		color: #eee;
	}

	.modal-header-btnClose:hover {
		color: red;
    background: #eee;
	}
	
	.modal-body {
		padding: 2%;
		border-radius: 15px;
		border: solid 1px #eee;
		height: auto;
	}

	.modal-body-text-title {
		color: grey;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 1%;
    letter-spacing: .08rem;
	}

	.modal-body-text {
		font-size: 1.2rem;
    color: grey;
		font-weight: 500;
		line-height: 2em;
	}

	.modal-footer-btn-second {
		margin-right: 5%;
    border: solid 2px;
    padding: 3%;
    border-radius: 5px;
		text-transform: uppercase;
		margin-right: 5%;
		cursor: pointer;
		width: 100%;
	}

	.modal-footer-btn-second:hover {
		border: solid 2px var(--info-color);
    background-color: var(--info-color);
    color: white;
	}

	.modal-footer-btn-first {
		padding: 1%;
    height: 100%;
    width: 50%;
	}

	.modal-aling-item {
		align-items: baseline;
	}


	.modal-method-payments {
		border: solid 1px #F1F7FF;
    border-radius: 15px;
    padding: 3%;
	}


	/* CSS PARA MOSTRAR NOT FOUND */

	.error-page {
		margin-top: 10%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		height: 100%;
		font-family: Arial,"Helvetica Neue",Helvetica,sans-serif;
	}
	
	.error-page h1 {
		font-size: 10vh;
		font-weight: bold;
		position: relative;
		margin: -8vh 0 0;
		padding: 0;
	}
	
	.error-page h1:after {
		content: attr(data-h1);
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		color: transparent;
		background: -webkit-repeating-linear-gradient(-45deg, #71b7e6, #69a6ce, #b98acc, #ee8176, #b98acc, #69a6ce, #9b59b6);
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-size: 400%;
		text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.25);
		animation: animateTextBackground 10s ease-in-out infinite;
	}
	
	.error-page h1 + p {
		color: #d6d6d6;
		font-size: 3vh;
		font-weight: bold;
		line-height: 5vh;
		max-width: 600px;
		position: relative;
	}
	
	.error-page h1 + p:after {
		content: attr(data-p);
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		color: transparent;
		text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
		-webkit-background-clip: text;
		-moz-background-clip: text;
		background-clip: text;
	}
	
	#particles-js {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	
	@keyframes animateTextBackground {
		0% {
			background-position: 0 0;
		}
	
		25% {
			background-position: 100% 0;
		}
	
		50% {
			background-position: 100% 100%;
		}
	
		75% {
			background-position: 0 100%;
		}
	
		100% {
			background-position: 0 0;
		}
	}
	
	@media (max-width: 767px) {
		.error-page h1 {
			font-size: 32vw;
		}
	
		.error-page h1 + p {
			font-size: 8vw;
			line-height: 10vw;
			max-width: 70vw;
		}
	}
	
	a.back {
		position: fixed;
		right: 40px;
		bottom: 40px;
		background: -webkit-repeating-linear-gradient(-45deg, #71b7e6, #69a6ce, #b98acc, #ee8176);
		border-radius: 5px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 24px;
		padding: 15px 30px;
		text-decoration: none;
		transition: 0.25s all ease-in-out;
	}
	
	a.back:hover {
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	}

	/* ESTILOS PANTALLA ONBASE */
	.secction {
		background-color: rgba(252, 252, 252, 0.5) !important;
		border-radius: 20px;
		/* background-color: #ffffff !important;
		border-radius: 20px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); */
	}

	.secction-head {
		color: grey;
    margin: 1% 2%;
    border-bottom: solid 1px #eee;
    padding-bottom: 1%;
	}

	.secction-head-title {
		font-size: 1.3rem;
	}

	.secction-body {
		padding: 2%;
	}

	.secction-body-title {
		padding: 2%;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(39, 110, 204);
    letter-spacing: .1rem;
	}

	.secction-body-title-icon {
		color: red;
    cursor: pointer;
    font-size: 1.5rem !important;
	}

	.container-input {
		margin-left: 1%;
	}
	.container-body-check{
    width: 80%;
    padding-bottom: 10%;
	}

	.add-cursor {
		cursor: pointer;
	}

	div.SumoSelect > p.CaptionCont {
		background: transparent;
	}

	.expand-less {
		height: 104px;
		overflow: hidden;
		transition: all 0.3s;
	}

	.expand-more {
		height: 610px;
		overflow: inherit;
	}

	.rotate-icon-closed{
		transform: rotate(180deg);
    transition: transform 0.3s;
	}

	.rotate-icon-open{
		transform: rotate(0);
		transition: transform 0.3s;
	}

	textarea:focus {
		border: none !important;
	}

	.is-valid {
		color: cyan;
	}	
	
	.is-invalid {
		color: red;
	}

	.is-disabled > * {
		color: #ccc !important;
	}

	.isTransparent {
		background: transparent !important;
	}

	input:read-only { 
		cursor: not-allowed;
	}

	.cursor {
		cursor: pointer;
	}

	.format-select {
		border-bottom: solid 1px #ccc !important;
    padding: 1.5% !important;
	}

	.dialog-error-container {
		display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
	}

	.mayus {
		text-transform: uppercase !important;
	}

	.hidden {
		display: none;
	}

	.required-asterisc {
		color: red; 
		font-size: 1.2rem;
	}

	div.spinner-button-container {
		padding: 20px;
		width: 12%;
		margin: auto;
		align-items: center;
		justify-content: center;
		display: flex;
		position: relative;
		cursor: no-drop;
	}

	div.spinner-button {
		border-left: 1.1em solid yellow;
		border-top: 1.1em solid yellow;
		font-size: .2rem;
	}

	.style-input-observations {
		resize: none;
		width: 100%;
		border: none;
		position: relative;
		background: transparent;
		height: 100%;
		font-size: 1rem;
		color: #444444;
		padding: 3%;
	}

.btn-more {
	color: #3C9FCF;
}

.btn-more:hover {
	color: rgb(45, 119, 156);
}

.btn-more-disabled {
	color: #aaa;
}

.row-confirm {
	background-color: rgba(0, 255, 61, 0.52);
}

.style-button-send-onbase {
	padding: 5%;
    display: flex;
    justify-content: center;
}

div textarea.style-text-area {
	width: 100%;
	display: flex;
	background: white;
	border: 1px solid rgb(238, 238, 238);
	border-radius: 15px;
	padding: 1%;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 48px;
	font-weight: 600;
	resize: none;
	overflow: hidden;
	color: grey
}

.selecction-none::selection {
	background: transparent;
    color: #508eff;
    text-shadow: 1px 1px #fff;
}

table.format-table > thead > tr > th, table.format-table > tbody > tr > td {
	min-width: 0 !important;
	width: 10% !important;
}

table.format-table > thead > tr > th {
	color: #508eff;
}

.required-text {
    color: white;
	background: #ff00004a;
	letter-spacing: 1px;
    border-radius: 25px;
    position: absolute;
    text-align: right;
    top: 80px;
    left: -19px;
    padding: 2px 1.7%;
    z-index: 1;
    width: 216px;
}

.complete-success-card {
	font-weight: 500;
    box-shadow: 0.4px -1px 0px 0px rgb(0, 255, 43);
}

.incomplete-alert-card {
	box-shadow: 0.4px -1px 0px 0px rgb(255, 0, 0);
    /* font-weight: 500; */
    /* box-shadow: 0px 5px 6px 0px rgba(255, 0, 0, 0.25), 0 3px 1px -2px rgb(255, 0, 0), 0 1px 5px 0 rgb(247, 0, 0); */
}

svg.icon-draft-header {
	width: 50px;
    margin-right: 0px;
    height: 35px;
}

table .header-style-table {
	/* background-image: linear-gradient(to top, #c471f5 10%, #40C4FF 100%); */
	background-image: linear-gradient(to top, #B9EDF3 0%, #ffffff 100%);
	color: #444444;
}

/* table .header-style-table th {
	color: white !important;
} */

.a-center {
	align-items: center;
}

/* STYLE CHECKBOX SMALL */

.container-check {
	margin: 4% auto;
	font-size: 20px;
	font-weight: 600;
	display: flex;
    align-items: center;
}

input[type="checkbox"].switch {
    position: absolute;
	margin: 8px 0 0 16px;    
	visibility: hidden;
}

input[type="checkbox"].switch + label {
    position: relative;
    padding: 5px 0 0 65px;
    /* line-height: 2.0em; */
}

input[type="checkbox"].switch + label:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 50px;
    height: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #d9d9d9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

input[type="checkbox"].switch + label:after {
    content: "";
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 34px;
    height: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #d9d9d9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

input[type="checkbox"].switch + label:hover:after {
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

input[type="checkbox"].switch:checked + label:after {
    margin-left: 16px;
}

input[type="checkbox"].switch:checked + label:before {
    background: #7EDBE7;
}

div.style-button-footer-modal {
	background: rgba(255, 255, 0, 0.27);
    position: absolute;
    bottom: 0;
    padding: 2%;
    left: 0;
}

div.container-search {
    display: flex;
    justify-content: space-between;
    width: 50%;
    background: rgba(204, 204, 204, 0.2);
    padding: 5px;
    border-radius: 25px;
    margin: 2% 0;
}

div.container-search:focus-visible{
    box-shadow: 5px 3px 4px 0px rgba(40, 45, 49, 0.16);
}

div.container-search input {
    border: none;
    padding: 9px;
    width: 100%;
    outline: 0px;
}

div.container-search input::-webkit-input-placeholder {
    color:  rgb(39, 110, 204);
    font-weight: 500;
}


.btn-search {
    border-radius: 25px;
    width: 10%;
    margin: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-search:hover {
    background: #F7EB45;
}

.btn-search i {
    color: #276ECC;
}

label.style-btn-check-car:before {
	width: 32px !important;
    height: 16px !important;
}
label.style-btn-check-car:after {
	width: 17px !important;
    height: 17px !important;
}