:root {
  --main-color: #4F58FD;
  --main-color-gradient: #149BF3;
  --secondary-color: rgb(13, 13, 14);
}

.text-primary {
  color: var(--main-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.background {

  background-color: var(--main-color);

}

.tabletext {
  background-color: #ffffff;
}

table,
th,
td {

  border-style: solid 2px;
  border-width: thin;
  border-collapse: collapse;

  padding: 3px;


}

.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.div1 {
  grid-area: 1 / 1 / 2 / 3;
}

.div2 {
  grid-area: 1 / 3 / 2 / 6;
}

.cookietable.table,
.cookieth.th,
.cookietd.td {
  padding: 10px;
  border-bottom: 1px solid black;
  border-collapse: collapse;
}

li.check:before {
  content: '✓';
  margin-left: -1em;
  margin-right: 10px;
  margin-right: .200em;

}

.ul.checklist {
  padding-left: 20px;
  text-indent: 20px;
  list-style: none;
  list-style-position: outside;

}


.footer {
  background-color: #404040;
  color: #cccccc;
}

table,
td,
div,
h1,
p {
  font-family: Arial, sans-serif;
  line-height: 40px;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 32px;
  font-weight: bold;
  letter-spacing: -0.02em;
}

h2 {

  line-height: 40px;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 530px) {
  .unsub {
    display: block;
    padding: 8px;
    margin-top: 14px;
    border-radius: 6px;
    background-color: #fffddd;
    text-decoration: none !important;
    font-weight: bold;
  }

  .col-lge {
    max-width: 100% !important;
  }
}


ul#footer li {
  display: inline;
}

#text-dark {
  color: #ffffff;
}

.column {
  float: left;
  width: 50%;
}


/* BUTTONS */
.button-21 {
  align-items: center;
  appearance: none;
  background-color: #3EB2FD;
  background-image: linear-gradient(1deg, #4F58FD, #149BF3 99%);
  background-size: calc(100% + 20px) calc(100% + 20px);
  border-radius: 100px;
  border-width: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  font-family: CircularStd, sans-serif;
  font-size: 1rem;
  height: auto;
  justify-content: center;
  line-height: 1.5;
  padding: 6px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s, background-position .2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.button-21:active,
.button-21:focus {
  outline: none;
}

.button-21:hover {
  background-position: -20px -20px;
}

.button-21:focus:not(:active) {
  box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 .125em;
}

/* INPUT TEXT */
.input-mc{
  width: 100%;
  border-radius: 100px;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

.input-mc:focus {
  border: 3px solid #555;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 531px) {
  .col-sml {
    max-width: 27% !important;
  }

  .col-lge {
    max-width: 73% !important;
  }
}