html{
  scroll-behavior:smooth;
}

body::-webkit-scrollbar {
  width: 10px;
  background: rgba(219, 219, 219, 0.5);
}

body::-webkit-scrollbar-thumb {
  background: rgba(108, 108, 108, 0.5);
  border-radius: 10px;
  border-right: 2px solid  rgba(219, 219, 219, 0.5);
}

body::-webkit-scrollbar:hover {
  background: #DBDBDB;
}

body::-webkit-scrollbar-thumb:hover {
  background: #6C6C6C;
  border-right: 2px solid #DBDBDB;
}

video {
  width: 100% ;
  height: auto  ;
}

.notify-badge{
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 18px;
  width: 100%;
  max-width: 93px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  column-gap: 5px;
  row-gap: 3px;
}

.days-badge{
  position: absolute; 
  bottom: 5px; 
  right: 5px; 
  font-size: 14px; 
  width: auto; 
  display: flex; 
  flex-wrap: wrap; 
  flex-direction: column; 
  column-gap: 5px; 
  row-gap: 3px;
}

.rating-star {
  color: #FFD800;
  -webkit-text-stroke: 1px #DCBB03;
}

.text-line-t{
  text-decoration: line-through;
  color: #EA0000;
}

.bg-inkadroid {
  background: url(../../assets/images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
}

.bg-contacto {
  background: url(../../assets/images/contacto.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
}

.bg-legales {
  background: url(../../assets/images/legales.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
}

.bg-tesis {
  background: url(../../assets/images/tesis.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
}

.bg-software {
  background: url(../../assets/images/software.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
}


.facebook {
  color: #0174DF;
}

.facebook:hover {
  color: #0060BA;
}

.twitter {
  color: #1DA0F0;
}

.twitter:hover {
  color: #1888CC;
}

.youtube {
  color: #e52117;
}

.youtube:hover {
  color: #c61f16;
}

.btn-whatsapp {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  font-size: 40px;
  border-radius: 100%;
  background: green;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
}

.btn-whatsapp > a, .btn-whatsapp > a:hover, .btn-whatsapp > a:visited {
  color: white;
}

.btn-whatsapp:hover {
  -webkit-transform: rotate(0deg) scale(1.2);
  -moz-transform: rotate(0deg) scale(1.2);
  -o-transform: rotate(0deg) scale(1.2);
}

video[poster]{
  object-fit: fill;
}

#vid1 .vjs-poster{
  background-size: cover;
}

.modal-dialog-slideout {min-height: 100%; margin: 0 0 0 auto !important;background: #fff;}
.modal.fade .modal-dialog.modal-dialog-slideout {-webkit-transform: translate(100%,0)scale(1);transform: translate(100%,0)scale(1);}
.modal.fade.show .modal-dialog.modal-dialog-slideout {-webkit-transform: translate(0,0);transform: translate(0,0);display: flex;align-items: stretch;-webkit-box-align: stretch;height: 100%;}
.modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body{overflow-y: auto;overflow-x: hidden;}
.modal-dialog-slideout .modal-content{border: 0;}
.modal-dialog-slideout .modal-header, .modal-dialog-slideout .modal-footer {display: block;} 
.modal-dialog-slideout .modal-header h5 {float:left;}

.btn-remove-cart-item{
  position: absolute;
  top: 0px;
  right: 0px;
  /*transform: translate(-50%, -50%);*/
}

.row-product img{
  max-width: 80px;
}

.row-product > div{
  align-content: center;
}

/* Oculta los botones de radio predeterminados */
.opciones-pago input[type="radio"] {
  display: none;
}

/* Estilo para las imágenes de las etiquetas */
.opciones-pago label img {
  width: 100px; /* Tamaño de la imagen, ajusta a tu gusto */
  height: auto;
  cursor: pointer; /* Cambia el cursor para indicar que se puede hacer clic */
  border: 2px solid transparent; /* Borde transparente por defecto */
  border-radius: 8px; /* Bordes redondeados */
  transition: all 0.2s ease-in-out; /* Animación suave al seleccionar */
}

/* Efecto al pasar el mouse por encima */
.opciones-pago label:hover img {
  border-color: #007bff; /* Color del borde al pasar el mouse */
}

/* Efecto para el elemento seleccionado */
.opciones-pago input[type="radio"]:checked + label img {
  border-color: #007bff; /* Color del borde cuando está seleccionado */
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); /* Sombra para resaltar */
}