@import url("https://fonts.googleapis.com/css?family=Montserrat:400,800");
* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  /* overflow: hidden; */
}

main.content {
  /* margin-top: 60px; */
  width: 100%;
  min-height: calc(100% - 120px);
  /* overflow-x: auto; */
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.page-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: baseline;
}

.page-title {
  margin-bottom: 2rem;
}

/* HEADER */
header {
  height: 60px;
  width: 100%;
  background-color: #5B95CF;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}
header > .brand {
  padding-left: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
}
header > .brand > a {
  color: #f6f6f5;
  text-decoration: none;
}
header > .brand > a:hover {
  border-top: 1px solid #f6f6f5;
  border-bottom: 1px solid #f6f6f5;
}

/* FOOTER */
footer {
  height: 60px;
  width: 100%;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
}

footer > .footer-copyright {
  font-size: small;
  color: #8e8e8e;
}

footer > .footer-links > a {
  color: #ff416c;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* BUTTONS */
.btn {
  border-radius: 20px;
  border: 1px solid #5B95CF;
  background-color: #5B95CF;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
  position: relative;
}

.btn:hover {
  background-color: #ff416c;
}

.btn.btn-loading::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -10px;
  width: 12px;
  height: 12px;
  border: 2px solid;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  animation: 0.8s linear infinite rotate;
}
.btn.sending {
  pointer-events: none;
  cursor: not-allowed;
}
.btn.sending:before {
  transition-delay: 0.5s;
  transition-duration: 1s;
  opacity: 1;
}

.btn-icon {
  font-size: 16px;
  padding: 12px 12px;
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE TABLE */
:root {
  --bg-table-stripe: #f6f6f5;
  --b-table: #e3e3e2;
  --caption: #242423;
}

table {
  background-color: transparent;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
  table-layout: auto;
}

th {
  text-align: left;
}

.dcf-txt-center {
  text-align: center !important;
}

.dcf-txt-left {
  text-align: left !important;
}

.dcf-txt-right {
  text-align: right !important;
}

.dcf-table caption {
  color: var(--caption);
  font-size: 1.13em;
  font-weight: 700;
  padding-bottom: 0.56rem;
}

.dcf-table thead {
  font-size: 0.84em;
}

.dcf-table tbody {
  border-bottom: 1px solid var(--b-table);
  border-top: 1px solid var(--b-table);
  font-size: 0.84em;
}

.dcf-table tfoot {
  font-size: 0.84em;
}

.dcf-table td,
.dcf-table th {
  padding-right: 1.78em;
}

.dcf-table-bordered,
.dcf-table-bordered td,
.dcf-table-bordered th {
  border: 1px solid var(--b-table);
}

.dcf-table-bordered td,
.dcf-table-bordered th,
.dcf-table-striped td,
.dcf-table-striped th {
  padding-left: 1em;
  padding-right: 1em;
}

.dcf-table-bordered tr:not(:last-child),
.dcf-table-striped tr:not(:last-child) {
  border-bottom: 1px solid var(--b-table);
}

.dcf-table-striped tbody tr:nth-of-type(2n) {
  background-color: var(--bg-table-stripe);
}

.dcf-table thead td,
.dcf-table thead th {
  padding-bottom: 0.75em;
  vertical-align: bottom;
}

.dcf-table tbody td,
.dcf-table tbody th,
.dcf-table tfoot td,
.dcf-table tfoot th {
  padding-top: 0.75em;
  vertical-align: top;
}

.dcf-table tbody td,
.dcf-table tbody th {
  padding-bottom: 0.75em;
}

.dcf-table-bordered thead th {
  padding-top: 1.33em;
}

.dcf-wrapper-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-bottom: 1em;
  position: relative;
  right: 50%;
  width: 100vw;
}

@media only screen and (max-width: 42.09em) {
  .dcf-table-responsive thead {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    white-space: nowrap;
  }
  .dcf-table-responsive tr {
    display: block;
  }
  .dcf-table-responsive td {
    -webkit-column-gap: 3.16vw;
    -moz-column-gap: 3.16vw;
    column-gap: 3.16vw;
    display: grid;
    grid-template-columns: 1fr 2fr;
    text-align: left !important;
  }
  .dcf-table-responsive.dcf-table-bordered,
  .dcf-table-responsive.dcf-table-bordered thead th {
    border-width: 0;
  }
  .dcf-table-responsive.dcf-table-bordered tbody td {
    border-top-width: 0;
  }
  .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
    padding-bottom: 0.75em;
  }
  .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
    padding-bottom: 0;
  }
  .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped)
    tbody
    td {
    padding-right: 0;
  }
  .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
    border-bottom-width: 0;
  }
  .dcf-table-responsive tbody td:before {
    content: attr(data-label);
    float: left;
    font-weight: 700;
    padding-right: 1.78em;
  }
}

.dcf-overflow-x-auto {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

.dcf-w-100\% {
  width: 100% !important;
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  flex-flow: row wrap;
  column-gap: 1rem;
  height: 100%;
  padding-right: 1rem;
}
.nav-element {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-link {
  color: #f6f6f5;
  padding-top: 4px;
  padding-bottom: 4px;
}

.d-none {
  display: none !important;
}
/* ERRORS */
#errorMessage {
  font-weight: 500;
  font-size: 15px;
}

#errorMessage > ul{
  list-style: none;
  padding: 0px; 
  margin: 0px;
}
#errorMessage > ul > li{
  display: list-item;
}