/* -> Variables */
:root {
--red:          #C62026;
--orange: 		#ec5215;
--redd:         #C62026;
--gray:         #EEEEEE;
--graym:        #A6A6A6;
--grayd:        #BBBBBB;
--green:        #389e10;
--black:        #000000;
--blackd:       #000000;
--white:        #FFFFFF;
}
.datepicker-select.orig-select-year, .datepicker-select.orig-select-month{
	display: block !important;
}
.select-wrapper.select-year .select-dropdown.dropdown-trigger,.select-wrapper.select-month .select-dropdown.dropdown-trigger{
	display: none !important;
}
/*----------------------
	Fuentes
----------------------*/
@font-face {
    font-family: 'FontAwesome'; 
    src: url('font/font-awesome/fontawesome-webfont.eot?v=4.4.0'); 
    src:url('font/font-awesome/fontawesome-webfont.eot #iefix&v=4.4.0') format('embedded-opentype'), 
        url('font/font-awesome/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), 
        url('font/font-awesome/fontawesome-webfont.woff?v=4.4.0') format('woff'),
        url('font/font-awesome/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),
        url('font/font-awesome/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg'); 
    font-weight: normal; 
    font-style: normal;
}

@font-face {
	font-family: 'Roboto', sans-serif !important;
	src: url("font/roboto/Roboto-Regular.ttf");
}

@font-face {
	font-family: 'Lato Light', sans-serif !important;
	src: url('font/Lato/Lato-Light.ttf') format('ttf'),
	url('font/Lato/Lato-Light.woff') format('woff');
	font-weight: 300;
}

@font-face {
	font-family: 'Lato', sans-serif !important;
	src: url('font/Lato/Lato.ttf') format('ttf'),
	url('font/Lato/Lato.woff') format('woff');
	font-weight: 500;
}

@font-face {
	font-family: 'Lato Black', sans-serif !important;
	src: url('font/Lato/Lato-Black.ttf') format('ttf'),
	url('font/Lato/Lato-Black.woff') format('woff');
	font-weight: 700;
}

@font-face {
	font-family: 'Lato Bold', sans-serif !important;
	src: url('font/Lato/Lato-Bold.ttf') format('ttf'),
	url('font/Lato/Lato-Bold.woff') format('woff');
	font-weight: 900;
}

@font-face {
  text-rendering: optimizeLegibility;
}

*, body, h1, h2, h3, h4, h5, h6, p, a, i, b, button{
	font-family: 'Lato Light', sans-serif;
}
body{
	margin:0;
	box-sizing: border-box;
}

label {
	color: var(--black);
	font-weight: bold;
	font-size: 14px;
}

.latolight{
	font-family: 'Lato Light', sans-serif !important;
	font-weight: 300 !important;
}

.latoblack{
	font-family: 'Lato Black', sans-serif !important;
	font-weight: 700 !important;
}

.latobold{
	font-family: 'Lato Bold', sans-serif !important;
	font-weight: 900 !important;
}

.clr_red{
	color: var(--red);
}

.clr_black{
	color: var(--black);
}

.clr_white{
	color: var(--white);
}

.clr_green{
	color: var(--green);
}

.clr_orange{
	color: var(--orange);
}

/* Centrado de texto */
.text-bold {
	font-weight: bold
}

.text-center {
	text-align: center
}

.text-left {
	text-align: left
}

.text-right {
	text-align: right
}

.text-justify {
	text-align: justify
}

.text-uppercase {
	text-transform: uppercase
}

.text-capitalize {
	text-transform: capitalize
}

.text-lowercase {
	text-transform: lowercase
}

/* Ancho y Alto 100 */
.w100 {
	width: 100% !important;
}

.hAuto {
	height: auto !important;
	line-height: 15px;
}

.h100 {
	height: 100%
}

.vw100 {
	width: 100vw
}

.vh100 {
	height: 100vh
}

.vh80 {
	height: 80vh
}

.verticalMid {
	vertical-align: middle !important;
}

.flexbox {
	display: flex;
	flew-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.flexCenter{
	display: flex;
	justify-content: center;
	align-items: center;
}

.flexColumn{
	display: flex;flex-direction: column;
}

.m-0 {
	margin: 0 !important;
}

.mt-0,
.my-0 {
	margin-top: 0 !important;
}

.mr-0,
.mx-0 {
	margin-right: 0 !important;
}

.mb-0,
.my-0 {
	margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
	margin-left: 0 !important;
}

.m-1 {
	margin: 0.25rem !important;
}

.mt-1,
.my-1 {
	margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
	margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
	margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
	margin-left: 0.25rem !important;
}

.m-2 {
	margin: 0.5rem !important;
}

.mt-2,
.my-2 {
	margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
	margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
	margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
	margin-left: 0.5rem !important;
}

.m-3 {
	margin: 1rem !important;
}

.mt-3,
.my-3 {
	margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
	margin-right: 1rem !important;
}

.mb-3,
.my-3 {
	margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
	margin-left: 1rem !important;
}

.m-4 {
	margin: 1.5rem !important;
}

.mt-4,
.my-4 {
	margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
	margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
	margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
	margin-left: 1.5rem !important;
}

.m-5 {
	margin: 3rem !important;
}

.mt-5,
.my-5 {
	margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
	margin-right: 3rem !important;
}

.mb-5,
.my-5 {
	margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
	margin-left: 3rem !important;
}

.p-0 {
	padding: 0 !important;
}

.pt-0,
.py-0 {
	padding-top: 0 !important;
}

.pr-0,
.px-0 {
	padding-right: 0 !important;
}

.pb-0,
.py-0 {
	padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
	padding-left: 0 !important;
}

.p-1 {
	padding: 0.25rem !important;
}

.pt-1,
.py-1 {
	padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
	padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
	padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
	padding-left: 0.25rem !important;
}

.p-2 {
	padding: 0.5rem !important;
}

.pt-2,
.py-2 {
	padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
	padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
	padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
	padding-left: 0.5rem !important;
}

.p-3 {
	padding: 1rem !important;
}

.pt-3,
.py-3 {
	padding-top: 1rem !important;
}

.pr-3,
.px-3 {
	padding-right: 1rem !important;
}

.pb-3,
.py-3 {
	padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
	padding-left: 1rem !important;
}

.p-4 {
	padding: 1.5rem !important;
}

.pt-4,
.py-4 {
	padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
	padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
	padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
	padding-left: 1.5rem !important;
}

.p-5 {
	padding: 3rem !important;
}

.pt-5,
.py-5 {
	padding-top: 3rem !important;
}

.pr-5,
.px-5 {
	padding-right: 3rem !important;
}

.pb-5,
.py-5 {
	padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
	padding-left: 3rem !important;
}

.m-auto {
	margin: auto !important;
}

.mt-auto,
.my-auto {
	margin-top: auto !important;
}

.mr-auto,
.mx-auto {
	margin-right: auto !important;
}

.mb-auto,
.my-auto {
	margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
	margin-left: auto !important;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.inDiv {
	white-space: normal;
	word-break: break-word;
	font-size: 10px;
}
.borderTable {
	border-top-right-radius: 10px;
}

.iconInside {
	position: absolute;
	right: 20px;
	top:48px;
}
.iconSearchCompInter {
	position: absolute;
	font-size: 1.5em;
	right: 18px;
	top: 32px;
}

td .iconInside {
	position: absolute;
	right: 20px;
	top:30px;
}

.indent {
	text-indent: 10px;
}

a.ancla {
	color:#000;
}
.dropdown-content{
	overflow-y: scroll;
}



input[type=text],
input[type=file],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search],
select,
.select2-container--default,
textarea.textarea {
	background: #fff !important;
	border: 1px solid #ffb3b2 !important;
	border-radius: .5rem !important;
	padding-left: 5px !important;
}
.form-app-pago {
    height: 2rem !important;
}

textarea{
	padding-top: 10px;
}

input::placeholder,
textarea::placeholder{
	padding-left: 5px;
}

.select2-container--default .select2-selection--single{
	background-color: transparent !important;
	border: none !important;
	outline: none;
}

input[type=text]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=date]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=search]:focus:not([readonly]),
select:focus:not([readonly]),
textarea.textarea:focus:not([readonly]) {
	border: 1px solid #ffb3b2 !important;
	border-bottom: 1px solid var(--black) !important;
	box-shadow: none !important;
}
.dropdown-content li > a, .dropdown-content li > span{
	color: var(--blackd);
}

[type="checkbox"]:checked + span:not(.lever):before{
	border-right: 2px solid var(--red);
	border-bottom: 2px solid var(--red);
}

input.inputTable {
	height: 2rem !important; 
}

.input-field{
	margin-bottom: 0rem !important;
}

.input-field p {
	margin: 0rem !important;
}
.file-field input.file-path {
	width: 96%;
}
.select,
.textarea,
textarea {
	background: #fff !important;
	border: 1px solid #ffb3b2 !important;
	text-indent: 10px;
}

.modal .modal-salir{
	width: 30% !important;
}

.border{
	border: 1px solid var(--graym);
}

.radius{
	border-radius: .5rem;
}

.footer{
	background: var(--gray);
	border-top: 1px solid #ddd;
	color: var(--blackd);
	margin-bottom: -1rem;
	z-index: 1;
}

.footer-lg{
	background: var(--gray);
	margin-bottom: -1rem;
	z-index: 1;
	border-top: 1px solid #ddd;
	position: fixed;
	width: 100%;
	bottom: 0;
    z-index: 1 !important;
}

.footer p a{
	color: var(--redd);
}

.footer a:hover{
	color: var(--blackd);
}

.table{
	width:100% !important;
}

.dataTables_wrapper{
	/*z-index: -1;*/
}

.collapsible-header{
	padding: 5px;
	text-align: center;
}

.collection, .collapsible-header{
	background-color: var(--redd) !important;
	color: #fff !important;
	text-align: center;
}

.collection-item{
    border-bottom: 1px solid #e0e0e0 !important;
}

.collapsible-item, .collection-item{
	background-color: #fff !important;
    line-height: 1.5rem !important;
    padding: 5px !important;
    margin: 0 !important;
}

.collection-item a, .collapsible-item a{
    color: #222;
}

table thead th{
	background: var(--blackd);
	color: var(--white);
}

table th{
	padding: 1rem !important;
	font-size: 12px;
}

table td .btn{
	padding: 0rem .5rem 0rem .5rem;
}

table td .btn i{
	font-size: 1rem;
}

/*---------------- Botones -------------------*/
.btn{
	border-radius: .5rem;
}

.btn-black {
	background-color: var(--blackd);
	color: var(--white);
	font-weight: bold;
	text-transform: none;
}

.btn-black:hover,
.btn-black:focus {
	background-color: var(--blackd);
	color: var(--white);
	font-weight: bold;
	text-transform: none;
	opacity: 0.7;
}

.btn-red {
	background-color: var(--red);
	color: var(--white);
	font-weight: bold;
	text-transform: none;
}

.btn-red:hover,
.btn-red:focus {
	background-color: var(--red) !important;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
	opacity: 0.7;
}
.btn-orange {
	background-color: var(--orange);
	color: var(--white);
	font-weight: bold;
	text-transform: none;
}

.btn-orange:hover,
.btn-orange:focus {
	background-color: var(--orange) !important;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
	opacity: 0.7;
}
.btn-green {
	background-color: var(--green);
	color: var(--white);
	font-weight: bold;
	text-transform: none;
}

.btn-green:hover,
.btn-green:focus {
	background-color: var(--green) !important;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
	opacity: 0.7;
}
.btn-blue {
	background-color: #2196f3;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
}

.btn-blue:hover,
.btn-blue:focus {
	background-color: #2196f3 !important;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
	opacity: 0.7;
}
.btn-green {
	background-color: #6dbd10;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
}

.btn-green:hover,
.btn-green:focus {
	background-color: #6dbd10 !important;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
	opacity: 0.7;
}

.btn-yellow {
	background-color: #ff9800;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
}

.btn-yellow:hover,
.btn-yellow:focus {
	background-color: #ff9800 !important;
	color: var(--white);
	font-weight: bold;
	text-transform: none;
	opacity: 0.7;
}

.btn-transparente{
	background-color: var(--white);
	border: 1px solid var(--redd);
	color: var(--redd);
	border-radius: .5rem;
	font-weight: bold;
	text-transform: none;
}

.btn-transparente:hover,
.btn-transparente:focus {
	background-color: var(--redd);
	border: 1px solid var(--white);
	color: var(--white);
	font-weight: bold;
	text-transform: none;
}

.btn-cerrar{
	float: right;
	color: var(--red);
}

.secondary-content{
	color: var(--red);
}

/*------------- Fin De Botones ---------------*/
/*--------------- LOGIN ----------------*/
.boxHead {
	background: var(--redd);
	color: var(--white);
	padding: .5rem;
	margin-top: 1rem;
}

.boxAccount__head {
	background: var(--blackd);
	color: var(--white);
	padding: .5rem;
}

.boxAccount__img{
	display:block;
	margin:auto;
	width: 45%;
}

.boxAccount__form {
	background: var(--white);
	border: 1px solid var(--graym);
	width: 50%;
}

.boxAccount__form .input-field span {
	background: var(--blackd);
	color: var(--white);
	padding: 1rem;
	position: absolute;
}

.boxAccount__body {
	padding: 1rem;
}

.boxAccount__form label {
	font-size: 1rem;
	color: var(--text-color);
}

/*--------------- MENU ----------------*/
.nav-wrapper,
.dropdown-content,
.dropdown-content li>a {
	background: var(--white);
	border-bottom: 1px solid #ddd;
}

.dropdown-content.active{
	top: auto !important;
}

.dropdown-content {
	margin: 0;
	display: none;
	min-width: 300px;
	color: var(--white) !important;
	max-height: auto;
	margin-left: -1px;
	overflow: hidden;
	opacity: 0;
	position: absolute;
	white-space: nowrap;
	z-index: 1;
	will-change: width, height;
}

.dropdown-content li>a {
	color: var(--black);
}

.dropdown-content li>a:hover {
	background: var(--second-color);
	color: var(--black);
}
.dropdown-noti li>a{
	font-size: 10px;
}

nav ul a {
	color: var(--red) !important;
    padding: 0rem .7rem;
}

nav ul a:hover {
	background: transparent !important;
	color: var(--blackd) !important;
	opacity: .6;
}

.fa-caret-down:before{
    vertical-align: middle;
}

.dropdown-content.dp2 li:hover, .dropdown-content.dp2 li.active {
	background-color: #fff;
}

.dp3{
	width: 250px !important;
	height: auto !important;
	max-height: 500px;
	overflow-y: auto;
}

.dropdown-content.dp3 li:hover, .dropdown-content.dp3 li.active {
	background-color: #f1f1f1;
}

ul.dp3 {
	top: -64px;
	/*left: 60px;*/
}

/*------------- Modal full -----------------*/
.modalFull {
	width: 100%;
	height: 100%;
	max-height: 100%;
	top: 0px !important;
	overflow-y: auto;
	z-index: 9999;
}

.modalMedium {
	width: 90%;
	max-height: 95%;
	top: 10px !important;
	overflow-y: auto;
	z-index: 9999;
}

.modal70 {
	width: 70%;
	max-height: 85%;
}

.btnCerrar{
	color: var(--white);
	padding: .5rem;
	top: .5rem;
	position: absolute;
	right: .5rem;
}

/*--------------- Perfil----------------*/
.boxPerfil {
	background: var(--white);
	margin-bottom: 2rem;
}

.boxPerfil--img  {
	border-radius: 50%;
	margin: .5rem;
	height: 120px;
	width: 120px;
	object-fit: cover;
	object-position: top center;
}

.modal-salir h3{
	font-size: 24px;
}

/*--------------- Notificaciones----------------*/
.boxNotificaciones tr{
	padding: 1rem;
	font-size: 18px;
}

.boxNotificaciones time{
	font-size: 0.7rem;
	color: #9e9e9e;
	margin: 0rem;
	cursor: default;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.card-notifi{
	color: var(--black);
	padding: .1rem;
}

.card-notifi h6{
	color: var(--blackd);
}

.titulo{
	color: var(--redd);
	font-weight: bold;
	text-transform: uppercase;
}

.boxAccount--title{
	background-color: var(--red);
	color: var(--white);
	padding: .5rem;
	margin: 0rem;
}

nav .nav-wrapper i{
	color: var(--red);
}

.boxBuscartrabajo{
	background-color: #fff;
	border:1px solid #ddd; border-radius: .5rem;padding: .5em;
}

.boxInicio{
	border: 2px solid var(--red);
	border-radius: .5rem;
	padding: .5rem 0rem;
}

.boxFlag{
	background-color: #fff;
	border: 1px solid var(--blackd);
	display: inline-block;
	border-radius: .5rem;
	padding: .5rem .3rem .2rem .4rem;
}

.collection a{
	color: var(--blackd);
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating){
	color: var(--red);
}
.switch label input[type=checkbox]:checked + .lever,
.switch label input[type=checkbox]:checked + .lever:after{
	background-color: var(--redd);
}

.img-post{
	border-radius: .5rem;
	text-align: center;
	object-fit: cover;
	object-position: center center;
}

.img-vernegocio,
.img-reclutador{
	width: 50%;
	border-radius: .5rem;
	text-align: center;
	object-fit: cover;
	object-position: center center;
}

.img-verpostulado{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	text-align: center;
	object-fit: cover;
	object-position: center center;
}

.img-negocio{
    width: 200px;
	height: auto;
	text-align: center;
	object-fit: cover;
	object-position: center center;
}

.word-break{
	word-break: break-word;
}


/*--------------- Notificaciones----------------*/
.boxNotificaciones{
  border: 1px solid #ddd;padding: .1rem;
}

.boxNotificaciones time{
  font-size: 0.7rem;
  color: #888;
  margin: 0rem;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.btn-floating{
	z-index: 0;
}


.img_nav{
	vertical-align: middle;
	width: 30px;
	height: 30px;
	border:2px solid var(--blue);
	object-fit: cover;
	object-position: top center;
    margin-top: -.9rem;
}

.nom_log span{
	color: #333;
	text-transform: capitalize !important;
    display: flex;
    font-size: 10px;
    justify-content: center;
    align-items: center;
    height: 0px;
    margin-top: -.5rem;

}
.text_panel span{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -.5rem;
    font-size: 10px;	
    height: 0px;
    color: var(--red);
}

.material-tooltip {
	color: white;
	background-color: #C62026;
	font-weight: bold;
}

.collection .collection-item{
	padding: 5px;
}

.toast{
	background: var(--red);
	color: var(--white);
}

.toast .toast-action{
	color: var(--white);
}

.cont_tabs .tabs .tab a, .icon_ast{
	color: var(--red) !important;
}

.cont_tabs .tabs .indicator{
	background: var(--red);
}

.btn-password {
    position: absolute !important;
    top: 2rem !important;
    right: 0 !important;
    background: #fff !important;
    color: #0a8a9a !important;
    border: none !important;
    box-shadow: none !important;
}

.spin {
	-webkit-animation:spin 4s linear infinite;
	-moz-animation:spin 4s linear infinite;
	animation:spin 4s linear infinite;
}

.brand-logo p{
	color: var(--red);
	padding: 0rem 0rem 0rem 1rem;
	margin: 0;    
	font-size: 1.2rem;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
	
/*--------------- MEDIA ----------------*/
@media(max-width: 600px) {
	.publicaciones a{
		font-size: 10px;
		top: -.8rem;
	}
	.boxAccount {
		margin: 1rem;
	}
	.boxAccount__form {
		border-radius: 0px 0px 12px 12px;
		margin-top: 1rem;
		width: 80%;
	}
	.boxPerfil--info {
		background: #eee;
	}

	.brand-logo {
		margin-left: 0rem;
	}

	.boxBienvenido, .boxHome{
		background-image: url(../img/fondo-mv.jpg); background-size: 100vh; background-repeat: no-repeat;
		object-fit: cover;
		object-position: top center;
	}

	.boxBienvenido h1, .boxBienvenido h2,
	.boxHome h1{
		font-size: 30px;
	}

	nav .nav-wrapper i{
		margin-bottom: -2rem !important;
	}
	nav ul .opc_nav{    
		padding: 1rem 0rem !important;
	}
	nav ul a {
		color: var(--blackd);
		padding: 0rem .3rem;
	}
	ul.dp3 {
	 top: -55px;
	}
	.boxInicio p{
		font-size: 12px;
	}
	ul.dp2{
		top: 56px !important;
	}

	.modalFullmv{
		width: 100%;
		height: 100%;
		max-height: 100%;
		top: 0px !important;
		overflow-y: auto;
		z-index: 9999;
	}

	.img-wonoma{
		object-fit: cover;
		object-position: top center;
		position: relative;
		width: 100%;
		height: 120px;
	}
}

@media(min-width: 601px) {
	.publicaciones a{
		font-size: 14px;
		top: -1.1rem;
	}
	.boxAccount__form {
		border: 1px solid var(--gray);
	}
	.boxBienvenido, .boxHome{
		background-image: url("https://trabajoenbelleza.com/static/img/fondo.jpg"); background-size: cover; background-repeat: no-repeat;
		width: 100%;
		overflow-y: hidden;
	}
	nav ul .opc_nav{    
		padding: 0rem !important;
	}

	ul.dp2 {
		top: -64px;
	}
	.img-wonoma{
		width: 100%;
	}
}

@media(max-width: 767px) {
	.mapa{
		height: 300px;
		width: 100%;
	}
	.display-mv{
		display: none;
	}
	.img-post{
		width: 100%;
		height: auto;
	}
	.boxAccount--title,
	.txt-registro h3{
		font-size: 20px;
	}
	.txt-registro h5{
		font-size: 18px;
	}

	.modal-salir {
		width: 80%;
		max-height: 100%;
	}

	.boxHome--texto{
		margin-top: 8rem;
	}

	.boxHome--texto h1{
		font-size: 30px;
	}

	.boxHome--texto h4{
		font-size: 20px;
	}

	.footer{
		text-align: center;
	}
	
	.brand-logo p{
		color: var(--red);
		padding: 0rem 0rem 0rem 3rem;
		margin: 0;    
		font-size: .8rem;
	}

	.titulo{
		font-size: 20px;
	}

	nav .nav-wrapper .fa-th{
		margin-top: 1rem;
	}

	nav .nav-wrapper .fa-bell{
		margin-top: 1rem;
	}

	.icon_flag b{
		font-size: .8rem !important;
	}

	.icon_flag .fa-caret-down:before{
		font-size: 1rem !important;
		position: relative;
		top: .2rem !important;
	}
}

@media(min-width: 768px) {
	.footer{
		text-align: left;
	}
	.mapa{
		height: 350px;
		width: 100%;
	}
	.img-post{
		width: 80%;
		height: auto;
	}

	.boxAccount .card-login {
		margin-top: 8rem;
		margin-bottom: 8rem;
	}

	.modal-salir {
		width: 30%;
		max-height: 100%;
	}

	.display-lp{
		display: none !important;
	}

	.icon_flag{
		margin-top: -.4rem;
	}

	.col_puesto, .col_ubicacion{
		display: block !important;
	}
}

@media(min-width: 768px) and (max-width: 1200px) {
	.boxAccount--title,
	.txt-registro h3{
		font-size: 22px;
	}
	.txt-registro h5{
		font-size: 18px;
	}
	.boxHome--texto{
		margin-top: 5rem;
	}

	.boxHome--texto h1{
		font-size: 45px;
	}

	.boxHome--texto h4{
		font-size: 25px;
	}
}

@media(min-width: 1201px) and (max-width: 1300px) {
	.boxHome--texto{
		margin-top: 8rem;
	}

	.boxHome--texto h1{
		font-size: 55px;
	}

	.boxHome--texto h4{
		font-size: 25px;
	}
}
@media(min-width: 1301px) and (max-width: 1400px) {
	.boxHome--texto{
		margin-top: 9rem;
	}

	.boxHome--texto h1{
		font-size: 55px;
	}

	.boxHome--texto h4{
		font-size: 25px;
	}
}

@media(min-width: 1401px) {
	.boxHome--texto{
		margin-top: 10rem;
	}

	.boxHome--texto h1{
		font-size: 60px;
	}

	.boxHome--texto h4{
		font-size: 28px;
	}
}

@media(min-width: 1201px) {
	.boxAccount--title,
	.txt-registro h3{
		font-size: 24px;
	}
	.txt-registro h5{
		font-size: 20px;
	}
}

@media(min-width: 601px) and (max-width: 992px){
	.cont{
		min-height: 600px;
		margin-bottom: 5rem;
	}
}

@media (min-width: 993px){
	.cont{
		min-height: 700px;
		margin-bottom: 5rem;
	}
}

/*--------------- SCROLL ----------------*/
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(150, 144, 144, 0.9);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: var(--blackd);
	background-image: -webkit-linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4) 50%, transparent, transparent)
}

@media only screen and (max-width: 992px){
	nav .brand-logo{
		left: 11% !important;
	}
}

