body{
    background-color: #f0f0f0;
}
.header{
    width: 100%;
    background-color: #04AD4F;
    position: fixed;
    padding: 20px;
    z-index: 10;
}
.logo-box{
    width: 250px;
}
.content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-box{
    width: 550px;
    padding: 15px;
    margin: 0 auto;
    margin-bottom: 50px !important;
    margin-top: 150px !important;
    background-color: #fff;
    box-shadow: 0px 0px 28px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 0px 28px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 28px 0px rgba(0,0,0,0.15);
    border-radius: 5px;
}

.label-new{
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #999;
}
.input-style{
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    outline-color: #04AD4F;
    margin-bottom: 10px;
}
.bottom-nuevo{
    width: 100%;
    display: flex;
    justify-content: right;
    padding-top: 5px;
}
.btn-guardar-nuevo{
    background-color: #04AD4F;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}
.btn-guardar-nuevo:hover{
    background-color: #068238;
    cursor: pointer;
}

.link-pass{
    font-weight: bold;
    color: #04AD4F;
    font-size: 14px;
}
input.checkbox{
  margin: 4px;
  -webkit-appearance: checkbox !important;
  appearance: checkbox !important;
}

button.btn{
  margin-left: 4px;
}
.hide{
  display: none;
}
.show{
  display: block;
}
form .leftAlign{
  float: left !important;
  position: relative !important;
  width: auto;
  height: auto;
}
form .rightAlign{
  float: right !important;
  position: relative !important;
  width: auto;
  height: auto;
}
.content-input input,
.content-select select{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.content-select input,
.content-select select{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.content-select select::-ms-expand {
    display: none;
}
.content-select{
    width: auto;
	position: relative;
}
.content-select.content-editableSelect{
  position: unset !important;
}
.attachment{
  display: flex;
}
.content-select input,
.content-select select{
	display: inline-block;
	width: 100%;
	cursor: pointer;
  	padding: 7px 10px;
  	height: 42px;
  	outline: 0;
  	border: 0;
	border-radius: 0;
	background: #fff;
	color: #ccc;
	font-size: 1em;
	border:1px solid #ccc;
    border-radius: 5px;
    position: relative;
    transition: all 0.25s ease;
}
.content-select input:not([value=""]){
  color: #000000;
}
.content-select select option[value]:not([value=""]){
  color: #000000 !important;
}
.content-select select[value]:not([value=""]){
  color: #000000 !important;
}
.content-select input:hover,
.content-select select:hover{
	background: #04AD4F;
    border: 1px solid #068238;
    color: #FFFFFF;
}
.content-select span{
	position: absolute;
	right: 1px;
	top: calc(50% - 25px);
	width: auto;
	height: 40px;
	display: block;
    padding: 10px;
    color: #BFBFBF;
    cursor: pointer;
}
.content-select span:hover{
    background-color: #BFBFBF;
    color: #FFFFFF;
}
.content-select i{
	position: absolute;
	right: 20px;
	top: calc(50% - 13px);
	width: 16px;
	height: 16px;
	display: block;
	border-left:4px solid #04AD4F;
	border-bottom:4px solid #04AD4F;
	transform: rotate(-45deg);
	transition: all 0.25s ease;
}
.content-select:hover i{
    border-left:4px solid #fff;
	border-bottom:4px solid #fff;
}
.content-select ul.es-list li.option-selected{
  font-weight: bold !important;
}
.content-select ul.es-list li.option-hide{
  display: none !important;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-float i {
    margin-top: 15px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    text-decoration: none;
}
@media (max-width: 550px) {
    .login-box{
        width: 95%;
    }
}