* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  list-style: none;
  text-decoration: none;
}

body {
  font-size: 14px;
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  height: 100vh;
  /*background: linear-gradient(to bottom right, #114357 60%, #f29492);*/
  line-height: 1.6;
  background:#f3f3f3;
  padding-bottom: 100px;
}

.collapse-content {
  width: 50vw;
  margin: auto;
  /*box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);*/
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.collapse {
  background: #fff;
}

.actions {
  background: #fff;
}

.collapse .menu {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.4rem 0.4rem;
  padding-top: 0.2rem;
  text-decoration: none;
  color: #666;
  position: relative;
}

/*.collapse .menu i{
  margin-right: 0.5rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  padding-top: 0.5rem;
  border-radius: 1.4rem;
  background-color: #bbb;
  color:#eee;
  width: 2.3rem;
  height: 2.3rem;
  text-align: center;
}*/

.collapse .menu:link {
  color:#666;
}
a:visited {
  color: #666;
}

/*.collapse .complete i{
  color: #fff;
  background-color: #90caf9;
  border: solid 2px #2196f3;
}*/
.collapse .complete {
  color: #1dabdd;
}

.title .menu{
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 0.8rem;
  color: rgb(52, 68, 160);
  position: relative;
  text-decoration: none;
}

.actions .links {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 0.8rem;
  color: rgb(52, 68, 160);
  position: relative;
  text-decoration: none;
}

.collapse .selected{
  color: rgb(52, 68, 160);
}


.collapse .menu.notjet {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.collapse a.instagram {
  background: #db2e7d;
}

.collapse a.twitter {
  background: #1dabdd;
}

.collapse a.dribbble {
  background: #444;
}

.collapse a.youtube {
  background: #ff0000;
}

.collapse .menu:before {
  content: "";
  border-top: 7px solid #47b1f7;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  position: absolute;
  top: 25px;
  right: 30px;
}

.inner-content {
  padding: 1.8rem;
}

.content {
  max-height: 0em;
  transition: 0.3s linear 0s;
  overflow: hidden;
}

.collapse + .collapse .menu{
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

h3 {
  margin-bottom: 15px;
}

.collapse:target .content {
  max-height: 100em;
}

.actions:target .content {
  max-height: 100em;
}

.collapse:target .menu:before {
  transform: rotate(-90deg);
}

.actions:target a:before {
  transform: rotate(-90deg);
}

@media (max-width: 768px) {
  .collapse-content {
    width: 100vw;
    margin: auto;
    /*box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);*/
    box-shadow: none;
  }
  body{
    padding-bottom: 0px;
  }
}
@media (max-width: 425px) {
  body {
    line-height: 1.3;
    padding-bottom: 0px;
  }
  .collapse-content {
    width: 100vw;
    box-shadow: none;
  }
  .inner-content {
    padding: 1.2rem;
  }
  .inner-content h3 {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 320px) {
  body {
    line-height: 1.3;
    padding-bottom: 0px;
  }
  .collapse-content {
    width: 100vw;
    box-shadow: none;
  }
  .inner-content {
    padding: 0.8rem;
  }
  .inner-content h3 {
    margin-bottom: 0.3rem;
  }
}

.input{
  width:90%;
  height:40px;
  background:transparent;
  border:none;
  outline:none;
  border-bottom:3px solid #1dabdd;
  color:#1dabdd;
  font-size:1.3em;
  
}

.input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666;
  opacity: 0.7; /* Firefox */
}

.button2 {
  display:inline-block;
  padding:0.5em 3em;
  border:0.16em solid #1dabdd;
  background: #fff;
  margin:0 0.3em 0.3em 0;
  box-sizing: border-box;
  text-decoration:none;
  text-transform:uppercase;
  font-family:'Roboto',sans-serif;
  font-weight:400;
  color:#1dabdd;
  text-align:center;
  transition: all 0.15s;
}

.button2:hover {
  color:#116b8c;
  border-color:#116b8c;
}
.button2:active {
  color:#49cfff;
  border-color:#49cfff;
}
@media all and (max-width:30em) {
  .button2 {
    display:block;
    margin:0.4em auto;
  }
}
.custom-radio-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: arial;
}

/* Modificador para dar la imagen de checkbox */
.custom-radio-checkbox__show--checkbox {
  background-image: url("https://isapi.intelisis-solutions.com/static/images/uncheck.png");
}

/* Oculta input original */
.custom-radio-checkbox > .custom-radio-checkbox__input {
  display: none;
}

/* Radio personalizado usando <span> */
.custom-radio-checkbox > .custom-radio-checkbox__show {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: .5rem;
  background-size: cover;
}

/* Cambia el checkbox personalizado cuando es pulsado */
.custom-radio-checkbox > .custom-radio-checkbox__input:checked + .custom-radio-checkbox__show--checkbox {
  background-image: url("https://isapi.intelisis-solutions.com/static/images/check.png");
}


/* Estilo para tablas responsivas */
.table {
  margin: 0 0 40px 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: table;
}
@media screen and (max-width: 580px) {
  .table {
    display: block;
  }
}

.row {
  display: table-row;
  background: #f6f6f6;
}
.row:nth-of-type(odd) {
  background: #e9e9e9;
}
.row.header {
  font-weight: 900;
  color: #ffffff;
  background: #ea6153;
}
.row.green {
  background: #27ae60;
}
.row.blue {
  background: #2980b9;
}
@media screen and (max-width: 580px) {
  .row {
    padding: 14px 0 7px;
    display: block;
  }
  .row.header {
    padding: 0;
    height: 6px;
  }
  .row.header .cell {
    display: none;
  }
  .row .cell {
    margin-bottom: 10px;
  }
  .row .cell:before {
    margin-bottom: 3px;
    content: attr(data-title);
    min-width: 98px;
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #969696;
    display: block;
  }
}

.cell {
  padding: 6px 12px;
  display: table-cell;
}
@media screen and (max-width: 580px) {
  .cell {
    padding: 2px 16px;
    display: block;
  }
}


/* Estilo para tablas chiquitin*/
#tabla{
  width: 100%;
}

.td .tercios{
  flex-basis: 20%;
  text-align: center;
  border: solid 1px gray;
}

.td{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5px;
  font-size: 10px;
}

/*Estilo para cards*/
.a-box {
  display: inline-block;
  width: 180px;/*240px;*/
  text-align: center;
}

.img-container {
    height: 175px;/*230px;*/
    width: 160px;/*200px;*/
    overflow: hidden;
    border-radius: 0px 0px 15px 15px;/*0px 0px 20px 20px;*/
    display: inline-block;
}

.img-container img {
    transform: skew(0deg, -7deg);
    height: 177px;/*250px;*/
    margin: -10px 0px 0px -15px;/*-35px 0px 0px -70px;*/
}

.inner-skew {
    display: inline-block;
    border-radius: 15px;/*20px;*/
    overflow: hidden;
    padding: 0px;
    transform: skew(0deg, 7deg);
    font-size: 0px;
    margin: 22px 0px 0px 0px;/*30px 0px 0px 0px;*/
    background: #c8c2c2;
    height: 185px;/*250px;*/
    width: 160px;/*200px;*/
}

.text-container {
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
  padding: 102px 10px 10px 10px;
  border-radius: 20px;
  background: #fff;
  margin: -120px 0px 0px 0px;
  line-height: 19px;
  font-size: 14px;
}

.text-container h3 {
  margin: 20px 0px 10px 0px;
  color: #04bcff;
  font-size: 18px;
}

.cards { 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 5px;
  align-items: stretch;
}
/*Titulo principal*/
.containtitle{
  color: #2980b9; 
  font-family: 'Open Sans Condensed', sans-serif; 
  font-size: 24px; 
  font-weight: 700; 
  line-height: 48px; 
  margin: 0 0 0; 
  padding: 20px 30px; 
  text-align: center; 
  text-transform: uppercase;
}

.detail-row{
  color: #525e61;
  text-align: left;
}

.detail-row i{
  color: #484949;
  width: 30px;
}

.menu-content-icon{
  width: 2rem; 
  height: 2rem;
  float: left;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: -0.3rem;
  border-radius: 1.16rem;
  background-color: #ffffff;
  border: solid 3px #2196f3;
}

.menu-content-icon-pending{
  width: 2rem; 
  height: 2rem;
  float: left;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: -0.3rem;
  border-radius: 1.16rem;
  background-color: #ffffff;
  border: solid 3px #dadada;
}

.menu-content-status{
  width: 1rem; 
  height: 1rem;
  float: left;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 0.3rem;
  margin-left: -0.4rem;
  margin-right: 1rem;
  border-radius: 1rem;
  background-color: #90caf9;
  border: solid 2px #2196f3;
}

.menu-content-status-pending{
  width: 1rem; 
  height: 1rem;
  float: left;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 0.3rem;
  margin-left: -0.4rem;
  margin-right: 1rem;
  border-radius: 1rem;
  background-color: #fafafa;
  border: solid 2px #dadada;
}

.menu-content-status i{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color:#fff;
  text-align: center;
  font-size: 0.7rem;
}

.menu-content-status-pending i{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color:#dadada;
  text-align: center;
  font-size: 0.7rem;
}

.collapse .line{
  height: 0.9rem;
  margin-left: 1.5rem;
  margin-top: -0.9rem;
  border-left: 2px solid #2196f3;
  position: absolute;
}

.collapse .line-pending{
  height: 0.9rem;
  margin-left: 1.5rem;
  margin-top: -0.9rem;
  border-left: 2px solid #dadada;
  position: absolute;
}

.line-lg{
  height: 2rem;
  margin-left: 1.5rem;
  margin-top: -1.8rem;
  border-left: 2px solid #2196f3;
  position: absolute;
}

@media (max-width: 425px) {
  .containtitle{
    font-size: 18px; 
    line-height: 30px; 
  }
  .cards{
    align-items: center;
  }
  .a-box {
    width: 80%;
    margin-left: 10%;
  }
  .collapse .line{
    height: 0.4rem;
    margin-top: -0.4rem;
  }
}
@media (max-width: 320px) {
  .containtitle{
    font-size: 18px; 
    line-height: 30px; 
  }
  .cards{
    align-items: center;
  }
  .a-box {
    width: 80%;
    margin-left: 10%;
  }
  .collapse .line{
    height: 0.4rem;
    margin-top: -0.4rem;
  }
}

.imageDiv img{
  display: inline-block;
  width: 85%;
  margin: 10px;
}
.imageDiv{
  width: 100%;
  height: auto;
  overflow: auto;
  white-space: nowrap;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}