/* General */

html,
body {
  font-size: 0.9rem;
/*  background-color: #d9fdd3; */
  background-color: #c0c0c0;
}

body {
  color: #000;
  font-family: 'Montserrat';
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  background-color: #c0c0c0;
  /* background: url(../img/background.png) no-repeat center center fixed;*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: -1;
}

.font-bold {
  font-weight: bold;
}

.font-italic {
  font-style: italic;
}

.font-color-red {
  color: #FF0000;
}

.border-input-right-radius-10 {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.border-input-left-radius-10 {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.border-radius-10 {
  border-radius: 10px;
}

.padding-0 {
  padding: 0;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-top-0 {
  margin-top: 0;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-right-0 {
  margin-right: 0;
}

.margin-right-10 {
  margin-right: 10px;
}

.margin-right-20 {
  margin-right: 20px;
}

.margin-left-0 {
  margin-left: 0;
}

.margin-left-10 {
  margin-left: 10px;
}

.margin-left-20 {
  margin-left: 20px;
}

.padding-left-0 {
  padding-left: 0;
}

.padding-left-5 {
  padding-left: 5px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-left-20 {
  padding-left: 20px;
}

.padding-right-0 {
  padding-right: 0;
}

.padding-right-5 {
  padding-right: 5px;
}

.padding-right-10 {
  padding-right: 10px;
}

.padding-right-20 {
  padding-right: 20px;
}

.vertical-align-top {
  vertical-align: top;
}

/* Header */

.header-height {
  height: 88px;
}

.header-titulo {
  color: #c0c0c0;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  margin: auto;
  padding-top: 10px;
}

/* Carousel */
.carousel-height {
  height: calc(100vh - 160px);
}

.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Login */

.login-form {
  margin: 0 auto;
  padding: 0;
  background-color: #c0c0c0;
  padding-top: 10px;
  padding-bottom: 60px;
}
/*
.login-form form {
  background-color: #c0c0c0;
  background: url(../img/background.png) no-repeat center center fixed;
  padding-top: 10px;
  padding-bottom: 60px;
}
*/
.login-form .form-control,
.login-form .btn {
  min-height: 40px;
  transition: all 0.5s;
}
.form-control , .form-select, .form-control[readonly]{
  background-color: #CCC;
}

.login-form .form-control,
.login-form .form-select,
.login-form .form-control[readonly]   {
  background-color: #fff;
  
}

.login-form .btn {
  background: #3e607c;
  border: none;
  line-height: normal;
  border-radius: 10px;
}

.login-form .btn:hover,
.login-form .btn:focus {
  background: #496d83;
}

/* Tablas y botones de tabla */

table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15)
}

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15)
}

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none
}

.btn-margen-right {
  margin-right: 5px;
}

/* Switch */

input[switch] {
  display: none;
}

input[switch]+label {
  font-size: 1em;
  line-height: 1;
  width: 12rem;
  height: 2rem;
  background-color: #ddd;
  background-image: none;
  border-radius: 2rem;
  padding: 0.1666666667rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2) inset;
  font-family: inherit;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

input[switch]+label:before {
  /* Label */
  text-transform: uppercase;
  color: #b7b7b7;
  content: attr(data-off-label);
  display: block;
  /*            
  font-family: inherit;
  font-family: FontAwesome, inherit;
  font-weight: 500;
  font-size: 0.6rem;
*/
  line-height: 1.22rem;
  position: absolute;
  right: 0.2166666667rem;
  margin: 0.2166666667rem;
  top: 0;
  text-align: center;
  min-width: 1.6666666667rem;
  overflow: hidden;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

input[switch]+label:after {
  /* Slider */
  content: '';
  position: absolute;
  left: 0.1666666667rem;
  background-color: #f7f7f7;
  box-shadow: none;
  border-radius: 2rem;
  height: 1.67rem;
  width: 1.67rem;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

input[switch]:checked+label {
  background-color: lightblue;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.2));
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3) inset;
}

input[switch]:checked+label:before {
  color: #fff;
  content: attr(data-on-label);
  right: auto;
  left: 0.2166666667rem;
}

input[switch]:checked+label:after {
  left: 10.20rem;
  background-color: #f7f7f7;
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.3);
}

input[switch="bool"]+label {
  background-color: #ee6562;
}

input[switch="bool"]+label:before {
  color: #fff !important;
}

input[switch="bool"]:checked+label {
  background-color: #BCE954;
}

input[switch="bool"]:checked+label:before {
  color: #fff !important;
}

input[switch="default"]:checked+label {
  background-color: #a2a2a2;
}

input[switch="default"]:checked+label:before {
  color: #fff !important;
}

input[switch="success"]:checked+label {
  background-color: #BCE954;
}

input[switch="success"]:checked+label:before {
  color: #fff !important;
}

input[switch="warning"]:checked+label {
  background-color: gold;
}

input[switch="warning"]:checked+label:before {
  color: #fff !important;
}

/* Footer */
.padding-footer {
  padding: 0.75rem;
}

.item.social {
  margin-top: 15px;
  margin-right: 15px;
}

.item.social>a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
  margin: 0 8px;
  margin-right: 15px;
  color: #fff;
  opacity: 0.75;
}

.item.social>a:hover {
  opacity: 0.3;
}

.whatsapp {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 15px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 9000;
}

.titulo_mas_frecuentes {
  color: #f7f7f7;;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  background: #293e4f;
  /* margin: 0 0 25px; */
  overflow: hidden;
  padding: 15px;
  border-radius: 35px 0px 35px 0px;
  -moz-border-radius: 35px 0px 35px 0px;
  -webkit-border-radius: 35px 0px 35px 0px;
  border: 2px solid #293e4f;
}
.required {
  color: #FF0000;
}
.card{
  background-color: #b3b3b3 !important;
}
.badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
  font-size: 13px;
  background: #ff0000;
  color: #fff;
  padding: 0 5px;
  vertical-align: top;
  margin-left: 0px;
}

.label-warning[href],
.badge-warning[href] {
  background-color: #c67605;
}

.carrito {
  background-color: #b3b3b3;
  display: none;
  position: absolute;
  top: 100px;
  right: 10px;
  z-index: 1000;
  border: 2px solid white;
}