/*
SquareKnot
Version: 6.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

html { font-size: 62.5%; }

body {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*-------------------------------*/
/*- Framework -------------------*/
/*-------------------------------*/

.container, .container-fluid {
  position: relative;
  width: 100%;
  max-width: 1350px;
  margin: auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  position: relative;
  margin: 0;
}

[class*='square-column'] {
  position: relative;
  margin: 0 0 20px 0;
  width: 100%;
  max-width: 100%;
}

.square-column.flush {
  margin: 0;
  max-width: 100%;
}

/*-------------------------------*/
/*- Grid System -----------------*/
/*-------------------------------*/

/* Larger than mobile */
@media (min-width: 750px) {

  .row {
    margin: 0 -10px;
  }

  [class*='square-column'] {
    margin: 0 10px 20px 10px;
  }

  .square-column.col-1 { width: calc((100% / 12) * 1 - 20px); }
  .square-column.col-2 { width: calc((100% / 12) * 2 - 20px); }
  .square-column.col-3 { width: calc((100% / 12) * 3 - 20px); }
  .square-column.col-4 { width: calc((100% / 12) * 4 - 20px); }
  .square-column.col-5 { width: calc((100% / 12) * 5 - 20px); }
  .square-column.col-6 { width: calc((100% / 12) * 6 - 20px); }
  .square-column.col-7 { width: calc((100% / 12) * 7 - 20px); }
  .square-column.col-8 { width: calc((100% / 12) * 8 - 20px); }
  .square-column.col-9 { width: calc((100% / 12) * 9 - 20px); }
  .square-column.col-10 { width: calc((100% / 12) * 10 - 20px); }
  .square-column.col-11 { width: calc((100% / 12) * 11 - 20px); }
  .square-column.col-12 { width: calc((100% / 12) * 12 - 20px); }

  /* Flush columns */
  .square-column.flush.col-1 { width: calc((100% / 12) * 1); }
  .square-column.flush.col-2 { width: calc((100% / 12) * 2); }
  .square-column.flush.col-3 { width: calc((100% / 12) * 3); }
  .square-column.flush.col-4 { width: calc((100% / 12) * 4); }
  .square-column.flush.col-5 { width: calc((100% / 12) * 5); }
  .square-column.flush.col-6 { width: calc((100% / 12) * 6); }
  .square-column.flush.col-7 { width: calc((100% / 12) * 7); }
  .square-column.flush.col-8 { width: calc((100% / 12) * 8); }
  .square-column.flush.col-9 { width: calc((100% / 12) * 9); }
  .square-column.flush.col-10 { width: calc((100% / 12) * 10); }
  .square-column.flush.col-11 { width: calc((100% / 12) * 11); }
  .square-column.flush.col-12 { width: calc((100% / 12) * 12); }

}

/*-------------------------------*/
/*- Utilities -------------------*/
/*-------------------------------*/

.text-center { text-align: center; }

.text-right { text-align: right; }

.text-left { text-align: left; }

.justify-content-between { justify-content: space-between; }

.justify-content-center { justify-content: center; }

.justify-content-start { justify-content: flex-start; }

.justify-content-end { justify-content: flex-end; }

.align-items-top { align-items: start; }

.align-items-center { align-items: center; }

.align-items-bottom { align-items: end; }


/*-------------------------------*/
/*- Lists -----------------------*/
/*-------------------------------*/

ol {
  list-style: decimal outside;
  padding-left: 40px;
}

ul {
  list-style: disc outside;
  padding-left: 40px;
}

/*-------------------------------*/
/*- Table -----------------------*/
/*-------------------------------*/

table {
  border-spacing: 0;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid #e1e1e1;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

td:last-child,
th:last-child {
  padding-right: 0;
}

th {
  font-weight: 400;
}