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

.derecha {
  display: flex;
  justify-content: right;
  align-items: right;
}

.boton-opcion-card {
  margin-left: 12px;
}

.boton-agregar-item {
  height: 36px;
  width: 46px;
  display: inline-block;
}

body {
  background-color: #ECECEC;
}

.bg-azul-suave {
  background-color: #3F88A3;
}

.bg-amarillo-suave {
  background-color: #E9E1B5;
}

.info-input-multiple {
  font-size: large;
  font-weight: bolder;
  font-style: italic;
  color: #6d6d6d;
}

.bg-azul-clarep {
  background-color: #333a99;
}

.btn-clarep,
.btn-clarep:hover,
.btn-clarep:active,
.btn-clarep:visited {
  background-color: #333a99;
}

.modal-body label {
  margin-top: 8px;
}

/*
##
## TOGGLE SWITCH
##
*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

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

input:checked+.slider {
  background-color: #40cf40;
}

input:focus+.slider {
  box-shadow: 0 0 1px #40cf40;
}

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

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

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

/*
##
## END TOGGLE SWITCH
##
*/

/*
##
## AUTOCOMPLETE INPUT
##
*/

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
  width: 100%;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}

.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/*
##
## END AUTOCOMPLETE INPUT
##
*/

/*
##
## SPIN LOADING
##
*/

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #DEDEDE;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: 1s all;
  opacity: 0;
}

.loading.show {
  opacity: 1;
}

.loading .spin {
  border: 3px solid hsla(185, 100%, 62%, 0.2);
  border-top-color: #3cefff;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spin-chico {
  border: 3px solid hsla(185, 100%, 62%, 0.2);
  border-top-color: #3cefff;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: spin 1s linear infinite;
}

@keyframes spin-chico {
  to {
    transform: rotate(360deg);
  }
}

/*
##
## END SPIN LOADING
##
*/

select:required:invalid {
  color: gray;
}

.unicode-emoji-color-azul {
  color: transparent; text-shadow: 0 0 0 rgb(80, 117, 238);
}