
/* -----------------------------------------
   Custom.css - put your own changes here
----------------------------------------- */
.centrado{
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-0%, -25%) !important;

}
.centrado-carrito{
    position: absolute !important;
    top: 70% !important;
    left: 50% !important;
    transform: translate(-0%, -25%) !important;

}
.price{
  background: #1e6ca9 !important; color:white !important;
}

/*select*/
#sel {
    width: 500px;
    margin-bottom: 1em;
    padding: .25em;
    border: 0;
    border-bottom: 2px solid currentcolor;
    font-weight: bold;
    letter-spacing: .15em;
    border-radius: 0;
    &:focus, &:active {
      outline: 0;
      border-bottom-color: red;
    }

  }
  #sel2 {
      width: 500px;
      margin-bottom: 1em;
      padding: .25em;
      border: 0;
      border-bottom: 2px solid currentcolor;
      font-weight: bold;
      letter-spacing: .15em;
      border-radius: 0;
      &:focus, &:active {
        outline: 0;
        border-bottom-color: red;
      }

    }


/*select*/

/*esta vaina es para el estilo de la invoice osea factura*/

.invoice-box {
  max-width: 800px;
  margin: auto;
  padding: 30px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  font-size: 16px;
  line-height: 24px;
  font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
  color: #555;
}

.invoice-box table {
  width: 100%;
  line-height: inherit;
  text-align: left;
}

.invoice-box table td {
  padding: 5px;
  vertical-align: top;
}

.invoice-box table tr td:nth-child(2) {
  text-align: right;
}

.invoice-box table tr.top table td {
  padding-bottom: 20px;
}

.invoice-box table tr.top table td.title {
  font-size: 30px;
  line-height: 45px;
  color: #333;
}

.invoice-box table tr.information table td {
  padding-bottom: 40px;
}

.invoice-box table tr.heading td {
  background: #eee;
  border-bottom: 0.5px solid #ddd;

}

.invoice-box table tr.details td {
  padding-bottom: 20px;
}

.invoice-box table tr.item td {
  border-bottom: 1px solid #eee;
}

.invoice-box table tr.item.last td {
  border-bottom: none;
}

.invoice-box table tr.total td:nth-child(2) {
  border-top: 2px solid #eee;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .invoice-box table tr.top table td {
    width: 100%;
    display: block;
    text-align: center;
  }
  .invoice-box table tr.information table td {
    width: 100%;
    display: block;
    text-align: center;
  }
}

/** RTL **/

.rtl {
  direction: rtl;
  font-family: Tahoma, 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
}

.rtl table {
  text-align: right;
}

.rtl table tr td:nth-child(2) {
  text-align: left;
}

/*____________________________________________________*/

/*esta vina de aqui es para hacer los toolkit de mensajes de informacion a los botones*/

/* Tooltip container */

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  /* If you want dots under the hoverable text */
}

/* Tooltip text */

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/*esta vina de aqui es para hacer los toolkit de mensajes de informacion a los botones*/

/* este dara el estilo oculto a las pestañas papu */

#basica {
  visibility: collapse;
}

#lista {
  visibility: visible;
}

/*.dx-datagrid-header-panel .dx-toolbar-after .dx-texteditor-input:focus {
  width: 100% !important;
  background-color: #d5f6eb !important;
}
*/

/*esta vaina es por el toolbar****/

/* esto que hare aquii es para pónerle un fondo chevere al toolbar de abajo */

/* #totalfooter{
  background: #2A507C url("https://js.devexpress.com/Demos/WidgetsGallery/JSDemos/images/icons/arrow.png") no-repeat 100% 50%;
  border-radius: 15px 15px 15px 15px !important;
} */

/* esto que hare aquii es para pónerle un fondo chevere al toolbar de abajo */

/****************estilo de div oculto para busqueda por formula de producto*************/

.formula {
  height: 40px;
  width: 100%;
  background-color: rgba(255, 0, 0, 0.70);
  border-radius: 15px 15px 15px 15px;
  padding-left: 20px;
  display: table;
}

/****************estilo de div oculto para busqueda por formula de producto*************/

/*span[class="k-widget k-dropdown k-header k-dropdown-operator"] {
  display: none !important;
}

button[class="k-button k-button-icon"] {
  display: none !important;
}*/

/*aqui va los input types custom que sean radios para elejir porcentajes de comkision*/

/*.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}*/

/* Hide the browser's default radio button */

/*.container input {
  position: absolute;
  opacity: 0;
}*/

/* Create a custom radio button */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */

.container input:checked~.checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */

.container input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */

.container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*aqui va los input types custom que sean radios para elejir porcentajes de comkision*/

/*aqi va el loader de carga*/

.loader {
  border-top: 16px solid blue;
  border-right: 16px solid green;
  border-bottom: 16px solid red;
  border-left: 16px solid pink;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

/* Safari */

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*aqi va el loader de carga*/

/*Esta vaina es la que hace que la cantidad de compra se mantenga a flote viendo cantidad y boton compar*/

.my-fixed-item {
  position: fixed;
  min-height: 50px;
  width: 140px;
  text-align: center;
  word-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  right: 40px;
  border: 1px;
  border-color: #FFFFFF;
  z-index: 2;
  padding: 8px;
  top: 160px;
}

/*Esta vaina es la que hace que la cantidad de compra se mantenga a flote viendo cantidad y boton compar*/

td[role="gridcell"] {
  font-size: 10pt !important;
  text-align: left;
  vertical-align: top;
  border: 0.2 solid #000;
  border-collapse: collapse;
  padding: 0.3em;
  caption-side: bottom;
}

.k-grid-header {
  font-size: 12pt !important;
  font-weight: bold !important;
}

.paddingnone {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/*.k-widget k-dropdown k-header k-dropdown-operator[role="listbox"] {
  visibility: hidden !important;
}
*/
/*elementos que modifican las reglas de kendo y bootstrap*/

.sidebar-scrollarea {
  z-index: 100 !important;
}

/*reglas de diseño propias para elementos de grid*/

.style-button {
  font-family: calibri !important;
  color: #3E3D3D !important;
}

.producto {
  height: 100px !important;
  width: 200px !important;
  font-size: 13pt;
}

/*tr td:first-child {
  width: 150px !important;
}
*/
.laboratorio {
  width: 200px !important;
  font-size: 11pt;
  font-style: italic;
}

.precio {
  width: 150px !important;
  font-size: 12pt;
  font-weight: bold !important;
}

.cantidad {
  width: 120px;
}

.subtotal, .carsubtotal {
  font-size: 10pt;
}

.carsubtotal {
  color: #3772A4;
  cursor: pointer;
}

.estrellaFavorito {
  color: #FFBA25;
}

.eliminarCarrito {
  color: #FF7272;
}

.cesta {
  color: #16B8D5 !important;
}

.check {
  color: #FB8050;
  cursor: pointer !important;
}

/*** PANEL INFO ***/

/* .with-nav-tabs.panel-info .nav-tabs>li>a, .with-nav-tabs.panel-info .nav-tabs>li>a:hover, .with-nav-tabs.panel-info .nav-tabs>li>a:focus {
  color: #31708f;
}

.with-nav-tabs.panel-info .nav-tabs>.open>a, .with-nav-tabs.panel-info .nav-tabs>.open>a:hover, .with-nav-tabs.panel-info .nav-tabs>.open>a:focus, .with-nav-tabs.panel-info .nav-tabs>li>a:hover, .with-nav-tabs.panel-info .nav-tabs>li>a:focus {
  color: #31708f;
  background-color: #bce8f1;
  border-color: transparent;
}

.with-nav-tabs.panel-info .nav-tabs>li.active>a, .with-nav-tabs.panel-info .nav-tabs>li.active>a:hover, .with-nav-tabs.panel-info .nav-tabs>li.active>a:focus {
  color: #31708f;
  background-color: #fff;
  border-color: #bce8f1;
  border-bottom-color: transparent;
}

.with-nav-tabs.panel-info .nav-tabs>li.dropdown .dropdown-menu {
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.with-nav-tabs.panel-info .nav-tabs>li.dropdown .dropdown-menu>li>a {
  color: #31708f;
}

.with-nav-tabs.panel-info .nav-tabs>li.dropdown .dropdown-menu>li>a:hover, .with-nav-tabs.panel-info .nav-tabs>li.dropdown .dropdown-menu>li>a:focus {
  background-color: #bce8f1;
}

.with-nav-tabs.panel-info .nav-tabs>li.dropdown .dropdown-menu>.active>a, .with-nav-tabs.panel-info .nav-tabs>li.dropdown .dropdown-menu>.active>a:hover, .with-nav-tabs.panel-info .nav-tabs>li.dropdown .dropdown-menu>.active>a:focus {
  color: #fff;
  background-color: #31708f;
} */

/********************************************************************/

/*reglas de medias querys para responsividad del sitio*/

/********************************************/

/*toda esta vaina solo es para el modal xl*/

/************************************/
/*
 @media (min-width: 800px) {
	.modal-xl{
		width:750px !important;
	}
}
@media (min-width: 900px) {
	.modal-xl{
		width:850px !important;
	}
}
@media (min-width: 1000px) {
	.modal-xl{
		width:1000px !important;
	}
}
@media (min-width: 1400px) {
	.modal-xl{
		width:1200px !important;
	}
}
@media (min-width: 1024px) {
  .padding-left-none{
	padding-left: 0px !important;
	}
}

@media (max-width: 1024px) {
  .margin-bottom-10{
		margin-bottom: 16px !important;
	}
} */

/***************************************/

//*toda esta vaina solo es para el modal xl*/
/*reglas a aplicar a los cuatros de direcciones*/

.direccion {
  border: 2px solid #B1B1B1;
  background-color: #DDDADA;
  padding: 10px;
  cursor: pointer;
  min-height: 160px;
}

.direccion:hover {
  background-color: #BDBDBD;
}

.direccion:active {
  border: 2px solid #565555 !important;
  background-color: #BDBDBD !important;
}

.margenInferior {
  margin-bottom: 10px !important;
}

.icono {
  color: #434242;
  font-size: 12pt !important;
}

.content {
  font-size: 12pt !important;
  color: #1D1D1D;
  font-family: calibri;
}

.options {
  width: 100% !important;
  border-top: 1px solid #7F7E7E !important;
  border-bottom: none !important;
  margin-bottom: 5px !important;
}

.opciones {
  margin: 5px;
  font-size: 14pt !important;
  cursor: pointer;
}

.opciones:hover {
  color: #60B1E6;
}

.selected {
  background-color: #A6E7FC;
  border: 2px solid #565555 !important;
}

.selected:hover {
  background-color: #A6E7FC !important;
  border: 2px solid #565555 !important;
}

.relleno {
  height: 400px;
}

.pendiente {
  color: #F76060 !important;
}

.margenright {
  margin-right: 15px !important;
}

#direcciones {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}

.direccion {
  min-width: 260px;
}
