/*
 * Custom style goes here.
 * A template should always ship with an empty custom.css
 */

/*FAQS VICTOR RODENAS https://victor-rodenas.com/2017/06/04/anadir-preguntas-frecuentes-en-prestashop/*/
/* CSS Preguntas Frecuentes */

.faq_question {
margin: 0px;
padding: 8px;
display: inline-block;
cursor: pointer;
font-weight: bold;
color: white;
}

.faq_answer_container {
height: 0px;
overflow: hidden;
background:#fff
}

.faq.open .faq_question {
color: #fff;
}

.faq {
background: #1875b4;
border-bottom: 3px solid #fff;
}

.faq.open {
background: #3399cc;
border:none;
}

/*Table Sample*/
*{
font-family: sans-serif;
}
.feature-table{
width: 80%;
margin: 0 auto;
border-collapse: collapse;
}
.feature-table tr td{
border: 1px solid #eee;
padding: 15px;
width: 33%;
vertical-align: top;
}
.feature-table h5 {
text-transform: uppercase;
text-align: center;
width: 75%;
margin: 0 auto 10px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.feature-table tr td ul{
list-style: none;
}
.feature-table tr td li{
line-height: 1.9em;
font-size: 1.1em;
}
.feature-icon{
display: block;
color: #ccc;
font-size: 30px;
text-align:center;
height: 50px;
}
/*Titulo Azul*/
.tituloazul{
background-color: #1875b4;
color: #ffffff;
border-radius: 5px;
padding: 1px 10px;
}
/*Logos en iconos*/
.iconologo{
border: 1px #c7c7c7;
border-radius: 5px;
box-shadow: 0px 2px 3px #c7c7c7;
display: block;
margin-left: auto;
margin-right: auto;
}
/*Carrusel Imagenes de Producto en Blog*/
.carruimgblog{
border: 1px #ffffff;
border-radius: 10px;
display: block;
margin-left: auto;
margin-right: auto;
}
/*Titulo de Carrusel Imagenes de Producto en Blog*/
.tituloimgblog{
text-align: center;
font-size: 14px;
color: #1875b4;
}

/*gh*/
@mixin border-radius($radius) {
  -webkit-border-radius: $radius;
  -moz-border-radius: $radius;
  -ms-border-radius: $radius;
  border-radius: $radius;
}

@mixin transition($args...) {
  -webkit-transition: $args;
  -moz-transition: $args;
  -ms-transition: $args;
  -o-transition: $args;
  transition: $args;
}

body {
  color: slategray;
}

.table {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 2rem 0rem 0rem 0rem;
  max-width: 1100px;
}

.table-cell {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  padding: 0.8em 1.2em;
  overflow: hidden;
  list-style-type: none;
  outline: 1px solid #ddd;
  text-align: center;
  font-weight: 300;
  margin: {
    top: 1px;
    left: 1px;
  }
  &:first-child {
  	outline: 1px solid #fff;
    background: transparent;
  	@media only screen and (max-width : 768px) {
			display: none;
		}
  }
  &:nth-child(3) {
    outline: 1px solid #30305b;
  }
  &:nth-child(-n+3) {
  	padding: {
  		top: 40px;
  		bottom: 40px;
  	}
  }
  > h3 {
    font-size: 26px;
  	margin: {
  		top: 0;
  		bottom: 3rem;
  	}
  }
  &.cell-feature {
	  text-align: left;
    font-size: 18px;
  }
  &.plattform {
    color: limegreen;
    a.btn {
      color: limegreen;
      &:hover {
        background-color: limegreen;
        border-color: limegreen;
        color: white;
      }
    }
  }
  &.enterprise {
    background-color: #30305b;
    color: #85bafc;
    a.btn {
      color: #85bafc;
      &:hover {
        background-color: #85bafc;
        border-color: #85bafc;
        color: #30305b;
      }
    }
  }
}

/* Table columns
================================== */
.table-cell  {
  width: calc(33.33% - 1px);
  &.cell-feature {
	  @media only screen and (max-width : 768px) {
		  width: 100%;
		  text-align: center;
	  }
  }
}

svg.enterprise-check path {
  fill: #30305b !important;
}

a.btn {
  border: 2px solid;
  padding: .6rem .9rem .6rem .9rem;
  font-weight: 400;
  text: {
    transform: uppercase;
    decoration: none;
  }
  @include transition(0.2s ease-in-out);
  @include border-radius(.3rem);
}


/*indice*/
.idc-box {
	background: #f9f9f9 none repeat scroll 0 0;
	border: 1px solid #aaa;
	display: table;
	font-size: 95%;
	margin-bottom: 1em;
	padding: 20px;
	width: auto;
}

.idc-box .idc-titulo {
	font-weight: 700;
	text-align: center;
}

.idc-box li, .idc-box ul, .idc-box ul li{
	padding: 0 5px;
	list-style: outside none none !important;
}