﻿/*---- doitac---*/
.columndt {
  border-radius: 8px;
  float: left;
  width: 14%;
  margin: 8px;
  padding: 8px;
  border: 1px solid #ccc;
  float: left;
}
.columnsp {

  float: left;
  width: 24%;
  margin: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  float: left;
}
div.columndt:hover {
  border: 1px solid #777;
}

div.columndt img {
  width: 100%;
  height: 100px;
}
div.columnsp img {
  width: 100%;
  height:170px;
}

div.descdt {
  padding-top: 5px;
  font-size:12px;
  height:60px;
  text-align:center;
  vertical-align:middle;
}
div.descsp {
  padding-top: 5px;
  font-size:12px;
  height:65px;
  text-align:center;
  vertical-align:middle;
}

/* Clearfix (clear floats) */
.rowdt::after {
  content: "";
  clear: both;
  display: table;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 850px) {
  .columndt{
    width: 29%;
  }
  .columnsp{
    width: 46%;
  }
}

@media screen and (max-width: 600px) {
  .columndt{
    width: 45%;
  }
   .columnsp{
    width: 46%;
  }
}
/*---- doitac---*/