﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color:#f6f6f6;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    font-family: Verdana;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

div.divTexto {
    color: black;
    text-align: justify;
}

b, strong {
    color: black;
    font-weight: 900;
}

h1.h1Texto {
    font-size: 18px;
    color: black;
}


ul.feature-icons {
    list-style: none;
    padding-left: 0;
}

    ul.feature-icons li {
        text-decoration: none;
        margin: 0 0 1.6875em 0;
        padding: 0.35em 0 0 3.5em;
        position: relative;
        vertical-align: top;
        /*display: inline-block;*/
        /*width: 48%;*/
    }

        ul.feature-icons li:before {
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            font-family: FontAwesome;
            font-style: normal;
            font-weight: normal;
            text-transform: none !important;
        }

        ul.feature-icons li:before {
            background: #000000;
            border-radius: 100%;
            color: white;
            display: block;
            height: 2.5em;
            left: 0;
            line-height: 2.5em;
            position: absolute;
            text-align: center;
            top: 0;
            width: 2.5em;
        }

ul.icons {
    cursor: default;
    list-style: none;
    padding-left: 0;
}

    ul.icons li {
        display: inline-block;
        padding: 0 1em 0 0;
    }

        ul.icons li:last-child {
            padding-right: 0 !important;
        }

        ul.icons li .icon:before {
            font-size: 1.25em;
        }





/*Estilo para la imagen del logo en el contro carrusel*/
.ImgIntro {
    /*background-repeat: no-repeat;*/
    /*background-size: 300px 150px;*/
    /*max-width:350px; 
        max-height:150px;
        min-width:50px;
        min-height:10px;*/
    width: 776px;
    height: 376px;
    padding: 0px 0px 10px 0px;
    /*Duracion de la animacion. Estos 3 segundos tambien se usa al momento de agregar y quitar la clase*/
    /*animation-duration: 3s;
        -webkit-animation-duration: 3s;
        -moz-animation-duration: 3s;
        -o-animation-duration: 3s;*/
}

.custom-container-carousel {
    background-color: white;
}

/*Estilos para el Carusel*/

.main-container {
    width: 100%;
}

.skyblue {
    background-color: white; /*#2E3035;*/
    opacity: 0.8; /*Opacidad del carusel*/
}

.carousel-indicators {
    bottom: 0;
}

.carousel-control.right,
.carousel-control.left {
    background-image: none;
}

.carousel .item {
    min-height: 500px; /*Tamaño del contenedor de control carrusel*/
    height: 100%;
    width: 100%;
}


.carousel-caption h3 {
    color: black;
}


.carousel-caption h3 {
    padding: .5em;
}

.carousel .icon-container {
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
    padding: 1em;
    text-align: center;
    border-radius: 50%;
}

.carousel-caption button {
    /*border-color: #00bfff;*/
    margin-top: 1em;
}

/* Animation delays */
.carousel-caption h3:first-child {
    animation-delay: 1s;
}

.carousel-caption h3:nth-child(2) {
    animation-delay: 2s;
}

.carousel-caption button {
    animation-delay: 3s;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
}

.p {
    padding-top: 125px;
    text-align: center;
}

    .p a {
        text-decoration: underline;
    }


/*Estilos para el Carusel*/


/*Pantalla de productos*/
#contenedor {
    width: auto;
    height: auto;
    position: relative;
    /*overflow: hidden;*/
}

#carritoCompras {
    width: 450px;
    height: 360px;
    background: url(Images/CarritoCompras.png) no-repeat;
    position: relative;
    background-size: cover;
}

#producto1 {
    width: 153px;
    height: 126px;
    max-width: 100%;
    height: auto;
    background: url(Images/Productos/1.png) no-repeat;
    position: absolute;
    top: 0px;
    left: 0px;
    /*Animacion*/
    animation: AnimarProducto1 5s infinite;
    -moz-animation: AnimarProducto1 5s infinite;
    -o-animation: AnimarProducto1 5s infinite;
    -webkit-animation: AnimarProducto1 5s infinite;
}

#producto2 {
    position: absolute;
    top: 0px;
    left: 0px;
    /*Animacion*/
    animation: AnimarProducto2 5s infinite;
    -moz-animation: AnimarProducto2 5s infinite;
    -o-animation: AnimarProducto2 5s infinite;
    -webkit-animation: AnimarProducto2 5s infinite;
}

.textWhite {
    color: white;
}


/*Animaciones*/
@keyframes AnimarProducto1 {
    from {
        left: 135px;
        top: -150px;
    }

    to {
        left: 135px;
        top: 20px;
    }
}

@-moz-keyframes AnimarProducto1 {
    from {
        left: 135px;
        top: -150px;
    }

    to {
        left: 135px;
        top: 20px;
    }
}

@-o-keyframes AnimarProducto1 {
    from {
        left: 135px;
        top: -150px;
    }

    to {
        left: 135px;
        top: 20px;
    }
}

@-webkit-keyframes AnimarProducto1 {
    from {
        left: 135px;
        top: -150px;
    }

    to {
        left: 135px;
        top: 20px;
    }
}




/*ESTILOS PARA LA PAGINA WEB*/


@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

@media screen and (max-width: 768px) {
    .col-sm-4 {
        text-align: center;
        margin: 25px 0;
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 150px;
    }
}


/*Estilos para modificar la visualización del contro Carousel*/
.carousel-caption-SIGS {
    padding: 0px !important;
    bottom: 0px !important;
    right: 0px !important;
    left: 0px !important;

    background: rgba(0,40,85,.85);
}

    .carousel-caption-SIGS:hover {
        /*background: rgba(0,40,85,.85);*/
    }

.carousel-indicators-SIGS {
    bottom: -12px !important;
    left: 50px !important;
}

.carousel-indicators-SIGS > li {
    background-color: white !important;
}

/*Fin -- Estilos para modificar la visualización del contro Carousel*/


.overlayImagenProducto {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #008CBA;
}

.ImagenProducto:hover .overlayImagenProducto {
  opacity: 1;
}

.textImagen {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}