/* -------------------------------- 

xBackground 

-------------------------------- */
body {
  /* this is the page background */
  background-color: #ffffff;
}

/* -------------------------------- 

xPatterns

-------------------------------- */
.cd-box {
  /* this is the container of various design elements - i.e. the 2 logo of the branding section */
  /* border: 1px solid #e6e6e6; */
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  padding: 6px;
  border-radius: 5px;
  text-align: center;
  /* color: white; */
}

/* -------------------------------- 

xNavigation 

-------------------------------- */
header {
  background-color: black;
}

.cd-logo {
  /* logo box style */
  background-color: black;
  width: 120px;
}

@media only screen and (min-width: 1024px) {
  .cd-logo {
    width: 180px;
  }
}

.cd-main-nav {
  /* main navigation background color - full screen on small devices */
  background: #19191a;
}

.cd-main-nav li a {
  color: #ffffff;
  border-color: #262627;
}

@media only screen and (min-width: 1024px) {
  .cd-main-nav li a {
    color: #cacaca;
  }

  .cd-main-nav li a.selected {
    color: #ffffff;
    box-shadow: 0 2px 0 #5f8ee4;
  }

  .no-touch .cd-main-nav li a:hover {
    color: #ffffff;
  }
}

.cd-nav-trigger span {
  /* hamburger menu */
  background-color: #ffffff;
}

.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
  /* upper and lower lines */
  background-color: #ffffff;
}

.nav-is-visible .cd-nav-trigger span {
  /* hide line in the center on mobile when nav is visible */
  background-color: rgba(255, 255, 255, 0);
}

.nav-is-visible .cd-nav-trigger span::before,
.nav-is-visible .cd-nav-trigger span::after {
  /* preserve visibility of upper and lower lines - close icon */
  background-color: white;
}

.cd-download {
  /* download button top-right visible on big devices */
  background-color: #323234;
}

.no-touch .cd-download:hover {
  background-color: #3f3f41;
}

.cd-download span {
  /* tooltip */
  background: #5f8ee4;
  color: #ffffff;
}

.cd-download span::before {
  /* right arrow color */
  border-color: #5f8ee4;
}

/* -------------------------------- 

xPage title 

-------------------------------- */
main>h1 {
  color: #19191a;
}

@media only screen and (min-width: 4500px) {
  main>h1 {
    /* title goes into the header on big devices */
    color: #ffffff;
  }
}

/* -------------------------------- 

xTypography 

-------------------------------- */
h1,
h2,
h3 {
  font-family: "Montserrat";
  color: #19191a;
}

h1 {
  font-size: 2em;
  line-height: 1.2;
  margin: 0 0 .4em;
}


@media only screen and (max-width: 1450px) {
  h1 {
      font-size: 1.8em;
  }
}

@media only screen and (max-width: 1024px) {
  h1 {
      font-size: 1.6em;
  }
}

h3 {
  font-size: 1.2em;
  line-height: 1;
  margin: 0 0 .2em;
}

@media only screen and (max-width: 1450px) {
  h3 {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 1em;
  }
}



h5 {
  font-size: 1em;
  font-weight: 100;
  line-height: 1;
  margin: 0 0 .2em;
}

@media only screen and (max-width: 1450px) {
  h5 {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 1024px) {
  h5 {
    font-size: 0.8em;
  }
}

h2 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 1em 0;
}

@media only screen and (min-width: 768px) {
  h2 {
    font-size: 1.8rem;
    margin: 1em 0 1.4em;
  }
}

section>h2::before {
  /* number before each section title */
  color: black;
}

p {
  font-size: 0.9em;
  line-height: 1.4;
  color: black;
}

@media only screen and (max-width: 1450px) {
  p {
      font-size: 0.75em;
  }
}

@media only screen and (max-width: 1024px) {
  p {
      font-size: 0.63em;
  }
}

p a {
  color: #fdd900;
  text-decoration: underline;
}

/* @media only screen and (min-width: 768px) {
  p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
} */

/* -------------------------------- 

xButtons 

-------------------------------- */
.btn {
  border: none;
  box-shadow: none;
  border-radius: 2px;
  font-size: 1.1em;
  font-family: "Montserrat";
  color: black;
  padding: .6em 2em;
  cursor: pointer;
  background: #FDD92F;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1450px) {
  .btn {
      font-size: 1em;
  }
}

@media only screen and (max-width: 1024px) {
  .btn {
      font-size: 0.9em;
  }
}


.cd-box-btn {
  text-align: left;
}

pre {
  text-align: left;
  padding: 5px;
  font-size: 0.9em;
  white-space: pre-wrap; /* To wrap long lines */
}

@media only screen and (max-width: 1450px) {
  pre {
      font-size: 0.75em;
  }
}

@media only screen and (max-width: 1024px) {
  pre {
      font-size: 0.63em;
  }
}

.btn:focus {
  outline: none;
}

.no-touch .btn:hover {
  background: #AA4197;
  color: white;
}

.btn.btn-success {
  background: #FDD92F;
  color: black;
}

.no-touch .btn.btn-success:hover {
  background: #82d485;
}

.btn.btn-alert {
  background: #e4655f;
}

.no-touch .btn.btn-alert:hover {
  background: #e87a75;
}

.btn.btn-outline {
  color: #5f8ee4;
  background: transparent;
  box-shadow: inset 0 0 0 1px #5f8ee4;
}

.no-touch .btn.btn-outline:hover {
  color: #ffffff;
  background: #5f8ee4;
}

/* @media only screen and (min-width: 768px) {
  .btn {
    font-size: 1.6rem;
  }
} */

.cd-buttons .cd-box:nth-of-type(2) span {
  /* CSS class name color */
  color: #fdd900;
}

/* -------------------------------- 

xIcons 

-------------------------------- */
.cd-icons li {
  /* icons size */
  width: 80px;
  height: 50px;
}

/* -------------------------------- 

xForm 

-------------------------------- */
input[type=text],
select {
  border: 1px solid #e6e6e6;
  border-radius: .25em;
  background: #ffffff;
}

input[type=text]:focus,
select:focus {
  outline: none;
}

input[type=text] {
  padding: .6em 1em;
  box-shadow: inset 1px 1px rgba(0, 0, 0, 0.03);
}

input[type=text].success {
  border-color: #6fce72;
  box-shadow: 0 0 6px rgba(111, 206, 114, 0.2);
}

input[type=text].alert {
  border-color: #e4655f;
  box-shadow: 0 0 6px rgba(228, 101, 95, 0.2);
}

input[type=text]:focus {
  border-color: #5f8ee4;
  box-shadow: 0 0 6px rgba(95, 142, 228, 0.2);
}

input[type=radio],
input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.radio-label,
.checkbox-label {
  padding-left: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-label::before,
.radio-label::after,
.checkbox-label::before,
.checkbox-label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-label::before,
.checkbox-label::before {
  left: 0;
  border: 1px solid #e6e6e6;
  box-shadow: inset 1px 1px rgba(0, 0, 0, 0.03);
}

.radio-label::after,
.checkbox-label::after {
  left: 3px;
  background: url("../assets/form/icon-check.svg") no-repeat center center;
  display: none;
}

.radio-label::before {
  border-radius: 50%;
}

.checkbox-label::before {
  border-radius: 3px;
}

input[type=radio]:checked+label::before,
input[type=checkbox]:checked+label::before {
  background-color: #19191a;
  border: none;
  box-shadow: none;
}

input[type=radio]:checked+label::after,
input[type=checkbox]:checked+label::after {
  display: block;
}

.cd-select::after {
  /* switcher arrow for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../assets/form/icon-select.svg") no-repeat center center;
  pointer-events: none;
}

select {
  position: relative;
  padding: .6em 2em .6em 1em;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

/* -------------------------------- 

xBasic style

-------------------------------- */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Montserrat";
}

a {
  text-decoration: none;
}

img {
  padding: 5px;
  max-width: 100%;
}

input,
textarea,
select {
  font-family: "Merriweather", serif;
  font-size: 1.6rem;
}

header {
  position: fixed;
  height: 60px;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

header nav {
  display: inline-block;
  height: 60px;
}

@media only screen and (min-width: 1024px) {
  header {
    height: 60px;
  }

  header:after {
    content: "";
    display: table;
    clear: both;
  }
}

.cd-logo {
  display: inline-block;
  height: 100%;
  position: relative;
}

.cd-logo img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media only screen and (min-width: 4500px) {
  .cd-logo {
    margin-left: 5%;
  }
}

.cd-nav-trigger {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
}

.cd-nav-trigger span {
  position: absolute;
  height: 2px;
  width: 20px;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -10px;
  -webkit-transition: background-color 0.3s 0.3s;
  -moz-transition: background-color 0.3s 0.3s;
  transition: background-color 0.3s 0.3s;
}

.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}

.cd-nav-trigger span::before {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

.cd-nav-trigger span::after {
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}

@media only screen and (min-width: 1024px) {
  .cd-nav-trigger {
    display: none;
  }
}

.cd-main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 50px 0;
  text-align: center;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

.cd-main-nav li a {
  display: block;
  font-size: 1.8rem;
  padding: 1em 0;
  border-bottom-width: 1px;
  border-style: solid;
}

.cd-main-nav li:first-of-type a {
  border-top-width: 1px;
}

@media only screen and (min-width: 1024px) {
  .cd-main-nav {
    position: static;
    display: table;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    width: auto;
    height: 60px;
    background: transparent;
    padding: 0 2em;
    text-align: left;
  }

  .cd-main-nav li {
    display: table-cell;
    vertical-align: middle;
    padding: 0 1em;
  }

  .cd-main-nav li a {
    display: inline-block;
    font-size: 1.8rem;
    padding: .4em .2em;
    border-bottom: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
  }

  .cd-main-nav li:first-of-type a {
    border-top: none;
  }
}

/* @media only screen and (min-width: 1600px) {
  .cd-main-nav {
    display: none;
  }
} */

.nav-is-visible .cd-nav-trigger span::before {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

.nav-is-visible .cd-nav-trigger span::after {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.nav-is-visible .cd-main-nav {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-download {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80px;
  background-image: url("../assets/icon-download.svg");
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-download span {
  /* tooltip */
  position: absolute;
  right: 120%;
  top: 50%;
  margin-top: -20px;
  width: 140px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  text-align: center;
  font-size: 1.2rem;
  -webkit-transition: opacity .2s 0s, visibility 0s .2s;
  -moz-transition: opacity .2s 0s, visibility 0s .2s;
  transition: opacity .2s 0s, visibility 0s .2s;
}

.cd-download span::before {
  /* right arrow */
  content: '';
  position: absolute;
  top: 12px;
  left: 100%;
  height: 0;
  width: 0;
  border-width: 8px;
  border-style: solid;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.no-touch .cd-download:hover span {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .2s 0s, visibility 0s 0s;
  -moz-transition: opacity .2s 0s, visibility 0s 0s;
  transition: opacity .2s 0s, visibility 0s 0s;
}

@media only screen and (min-width: 1024px) {
  .cd-download {
    display: block;
  }

  .cd-download span {
    opacity: 0;
    visibility: hidden;
  }
}

@media only screen and (min-width: 4500px) {
  .cd-download {
    right: 5%;
  }
}

main {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 50px 0;
}

main>h1 {
  text-align: center;
  margin: 3em 0;
}

@media only screen and (min-width: 1024px) {
  main {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 4500px) {
  main {
    max-width: none;
    padding: 120px 0 50px;
  }

  main>h1 {
    position: fixed;
    top: 0;
    left: 50%;
    height: 80px;
    line-height: 80px;
    width: 400px;
    margin: 0 0 0 -200px;
    font-size: 2.6rem;
    z-index: 20;
  }
}

section {
  margin: 3em 0;
}

section:after {
  content: "";
  display: table;
  clear: both;
}

/* section:nth-of-type(1) h2::before {
  content: '1. ';
}

section:nth-of-type(2) h2::before {
  content: '2. ';
}

section:nth-of-type(3) h2::before {
  content: '3. ';
}

section:nth-of-type(4) h2::before {
  content: '4. ';
}

section:nth-of-type(5) h2::before {
  content: '5. ';
}

section:nth-of-type(6) h2::before {
  content: '6. ';
}

section:nth-of-type(7) h2::before {
  content: '7. ';
}

section:nth-of-type(7) h2::before {
  content: '7. ';
}

section:nth-of-type(7) h2::before {
  content: '7. ';
}

section:nth-of-type(8) h2::before {
  content: '8. ';
}

section:nth-of-type(9) h2::before {
  content: '9. ';
}

section:nth-of-type(10) h2::before {
  content: '10. ';
} */

@media only screen and (min-width: 768px) {
  section {
    margin: 3em 0 5em;
  }
}

@media only screen and (min-width: 4500px) {
  section {
    width: 48%;
    float: left;
    margin: 0 4% 4em 0;
  }

  section:nth-of-type(2n) {
    margin-right: 0;
  }
}

/* xBranding section - basic style */
.cd-branding .cd-box {
  margin-bottom: 1em;
}

.cd-branding img {
  display: block;
  width: 100%;
  padding: 20px;
}

.cd-branding ul:last-of-type {
  padding-top: .6em;
}

.cd-branding ul:last-of-type li {
  display: inline-block;
  margin-right: 1em;
}

.cd-branding ul:last-of-type li:nth-of-type(1) img {
  padding: 10px;
  width: 90px;
  border-radius: 1em;
  margin: 2px;
}

.cd-branding ul:last-of-type li:nth-of-type(2) img {
  width: 60px;
  border-radius: .6em;
  padding: 10px;
  margin: 2px;
}

.cd-branding ul:last-of-type li:nth-of-type(3) img {
  width: 40px;
  border-radius: .6em;
  padding: 10px;
  margin: 2px;
}

.cd-branding ul:last-of-type li:nth-of-type(4) img {
  width: 90px;
  border-radius: .4em;
  padding: 10px;
  margin: 2px;
}

.cd-branding ul:last-of-type li:nth-of-type(5) img {
  width: 60px;
  border-radius: .2em;
  padding: 10px;
  margin: 2px;
}

.cd-branding ul:last-of-type li:nth-of-type(6) img {
  width: 40px;
  border-radius: .2em;
  padding: 10px;
  margin: 2px;
}

@media only screen and (min-width: 768px) {
  .cd-branding .cd-box {
    width: 49%;
    float: left;
    margin: 0 2% 2em 0;
  }

  .cd-branding .cd-box:nth-of-type(2n) {
    margin-right: 0;
  }

  .cd-branding ul:last-of-type {
    clear: left;
  }

  .cd-branding ul:last-of-type li {
    margin-right: 3em;
  }
}

/* xColor section - basic style */
.cd-colors li {
  text-align: center;
  width: 48%;
  float: left;
  margin: 0 4% 1em 0;
}

.cd-colors li:nth-of-type(2n) {
  margin-right: 0;
}

.cd-colors .cd-color-swatch {
  position: relative;
  width: 100%;
  padding: 50% 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cd-colors .cd-color-swatch::before,
.cd-colors .cd-color-swatch::after {
  /* lighter and darker color shades of the same swatch */
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 20%;
}

.cd-colors .cd-color-swatch::before {
  left: 0;
}

.cd-colors .cd-color-swatch::after {
  right: 0;
}

.cd-colors b {
  display: block;
  padding: .6em 0;
  color: black;
}

.cd-colors li:nth-of-type(1) .cd-color-swatch {
  background: #091F40;
}

/* .cd-colors li:nth-of-type(1) .cd-color-swatch::before {
  background: #759de8;
}
.cd-colors li:nth-of-type(1) .cd-color-swatch::after {
  background: #497fe0;
} */
.cd-colors li:nth-of-type(2) .cd-color-swatch {
  background: #FDD900;
}

/* .cd-colors li:nth-of-type(2) .cd-color-swatch::before {
  background: #262627;
}
.cd-colors li:nth-of-type(2) .cd-color-swatch::after {
  background: #0d0d0d;
} */
.cd-colors li:nth-of-type(3) .cd-color-swatch {
  background: #DF1F36;
}

/* .cd-colors li:nth-of-type(3) .cd-color-swatch::before {
  background: #e87a75;
}
.cd-colors li:nth-of-type(3) .cd-color-swatch::after {
  background: #e05049;
} */
.cd-colors li:nth-of-type(4) .cd-color-swatch {
  background: #AC4399;
}

/* .cd-colors li:nth-of-type(4) .cd-color-swatch::before {
  background: #f3f3f3;
}
.cd-colors li:nth-of-type(4) .cd-color-swatch::after {
  background: #d9d9d9;
} */
.cd-colors li:nth-of-type(5) .cd-color-swatch {
  background: #3AAE2A;
}

/* .cd-colors li:nth-of-type(5) .cd-color-swatch::before {
  background: white;
}
.cd-colors li:nth-of-type(5) .cd-color-swatch::after {
  background: #f2f2f2;
} */

.cd-colors li:nth-of-type(6) .cd-color-swatch {
  background: #0B5740;
}

.cd-colors li:nth-of-type(7) .cd-color-swatch {
  background: #FD8189;
}

.cd-colors li:nth-of-type(8) .cd-color-swatch {
  background: #61C8B9;
}

.cd-colors li:nth-of-type(9) .cd-color-swatch {
  background: #C0DE88;
}

.cd-colors li:nth-of-type(10) .cd-color-swatch {
  background: #008FBE;
}

.cd-colors li:nth-of-type(11) .cd-color-swatch {
  background: #F28B20;
}

.cd-colors li:nth-of-type(12) .cd-color-swatch {
  background: #016099;
}

@media only screen and (min-width: 768px) {
  .cd-colors li {
    width: 19%;
    float: left;
    margin: 0 1.25% 1em 0;
  }

  .cd-colors li:nth-of-type(2n) {
    margin-right: 1.25%;
  }

  .cd-colors li:nth-of-type(5n) {
    margin-right: 0;
  }
}


/* xColor section - basic style */
.cd-colors-agt li {
  position: relative;
  text-align: center;
  width: 48%;
  float: left;
  margin: 0 4% 1em 0;
  color: black;
}

.cd-colors-agt li:nth-of-type(2n) {
  margin-right: 0;
}

.cd-colors-agt .cd-color-swatch-agt {
  position: relative;
  width: 100%;
  padding: 50% 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cd-colors-agt .cd-color-swatch::before,
.cd-colors-agt .cd-color-swatch::after {
  /* lighter and darker color shades of the same swatch */
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 20%;
}

.cd-colors-agt .cd-color-swatch-agt::before {
  left: 0;
}

.cd-colors-agt .cd-color-swatch-agt::after {
  right: 0;
}

.cd-colors-agt b {
  display: block;
  padding: .6em 0;
}

.cd-colors-agt li:nth-of-type(1) .cd-color-swatch-agt {
  background: #0B5740;
}

.cd-colors-agt li:nth-of-type(2) .cd-color-swatch-agt {
  background: #AC4399;
}

.cd-colors-agt li:nth-of-type(3) .cd-color-swatch-agt {
  background: #61C8B9;
}

.cd-colors-agt li:nth-of-type(4) .cd-color-swatch-agt {
  background: #F28B20;
}

@media only screen and (min-width: 768px) {
  .cd-colors-agt li {
    width: 19%;
    float: left;
    margin: 0 1.25% 1em 0;
  }

  .cd-colors-agt li:nth-of-type(2n) {
    margin-right: 1.25%;
  }

  .cd-colors-agt li:nth-of-type(5n) {
    margin-right: 0;
  }
}


/* xColor section - basic style */
.cd-colors-stg li {
  text-align: center;
  width: 48%;
  float: left;
  margin: 0 4% 1em 0;
  color: black;
}

.cd-colors-stg li:nth-of-type(2n) {
  margin-right: 0;
}

.cd-colors-stg .cd-color-swatch-stg {
  position: relative;
  width: 100%;
  padding: 50% 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cd-colors-stg .cd-color-swatch::before,
.cd-colors-stg .cd-color-swatch::after {
  /* lighter and darker color shades of the same swatch */
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 20%;
}

.cd-colors-stg .cd-color-swatch-stg::before {
  left: 0;
}

.cd-colors-stg .cd-color-swatch-stg::after {
  right: 0;
}

.cd-colors-stg b {
  display: block;
  padding: .6em 0;
}

.cd-colors-stg li:nth-of-type(1) .cd-color-swatch-stg {
  background: #016099;
}

.cd-colors-stg li:nth-of-type(2) .cd-color-swatch-stg {
  background: #DF1F36;
}

.cd-colors-stg li:nth-of-type(3) .cd-color-swatch-stg {
  background: #FD8189;
}

.cd-colors-stg li:nth-of-type(4) .cd-color-swatch-stg {
  background: #FDD900;
}

.cd-colors-stg li:nth-of-type(5) .cd-color-swatch-stg {
  background: #3AAE2A;
}

.cd-colors-stg li:nth-of-type(6) .cd-color-swatch-stg {
  background: #7B8AD6;
}


.cd-colors-stg li:nth-of-type(7) .cd-color-swatch-stg {
  background: #c0de88;
}


@media only screen and (min-width: 768px) {
  .cd-colors-stg li {
    width: 19%;
    float: left;
    margin: 0 1.25% 1em 0;
  }

  .cd-colors-stg li:nth-of-type(2n) {
    margin-right: 1.25%;
  }

  .cd-colors-stg li:nth-of-type(5n) {
    margin-right: 0;
  }
}



/* xColor section - basic style */
.cd-colors-act li {
  text-align: center;
  width: 48%;
  float: left;
  margin: 0 4% 1em 0;
  color: black;
}

.cd-colors-act li:nth-of-type(2n) {
  margin-right: 0;
}

.cd-colors-act .cd-color-swatch-act {
  position: relative;
  width: 100%;
  padding: 50% 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cd-colors-act .cd-color-swatch::before,
.cd-colors-act .cd-color-swatch::after {
  /* lighter and darker color shades of the same swatch */
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 20%;
}

.cd-colors-act .cd-color-swatch-act::before {
  left: 0;
}

.cd-colors-act .cd-color-swatch-act::after {
  right: 0;
}

.cd-colors-act b {
  display: block;
  padding: .6em 0;
}

.cd-colors-act li:nth-of-type(1) .cd-color-swatch-act {
  background: #2980B9;
}

.cd-colors-act li:nth-of-type(2) .cd-color-swatch-act {
  background: #D62728;
}

.cd-colors-act li:nth-of-type(3) .cd-color-swatch-act {
  background: #BCBD22;
}

.cd-colors-act li:nth-of-type(4) .cd-color-swatch-act {
  background: #9467BD;
}

.cd-colors-act li:nth-of-type(5) .cd-color-swatch-act {
  background: #03A9F4;
}

.cd-colors-act li:nth-of-type(6) .cd-color-swatch-act {
  background: #E377C2;
}

.cd-colors-act li:nth-of-type(7) .cd-color-swatch-act {
  background: #198038;
}

.cd-colors-act li:nth-of-type(8) .cd-color-swatch-act {
  background: #FF7F0E;
}

.cd-colors-act li:nth-of-type(9) .cd-color-swatch-act {
  background: #8C564B;
}

.cd-colors-act li:nth-of-type(10) .cd-color-swatch-act {
  background: #F1C40F;
}


@media only screen and (min-width: 768px) {
  .cd-colors-act li {
    width: 19%;
    float: left;
    margin: 0 1.25% 1em 0;
  }

  .cd-colors-act li:nth-of-type(2n) {
    margin-right: 1.25%;
  }

  .cd-colors-act li:nth-of-type(5n) {
    margin-right: 0;
  }
}


/* xColor section - basic style */
.cd-colors-pagt li {
  text-align: center;
  width: 48%;
  float: left;
  margin: 0 4% 1em 0;
  color: black;
}

.cd-colors-pagt li:nth-of-type(2n) {
  margin-right: 0;
}

.cd-colors-pagt .cd-color-swatch-pagt {
  position: relative;
  width: 100%;
  padding: 50% 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cd-colors-pagt .cd-color-swatch::before,
.cd-colors-pagt .cd-color-swatch::after {
  /* lighter and darker color shades of the same swatch */
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 20%;
}

.cd-colors-pagt .cd-color-swatch-pagt::before {
  left: 0;
}

.cd-colors-pagt .cd-color-swatch-pagt::after {
  right: 0;
}

.cd-colors-pagt b {
  display: block;
  padding: .6em 0;
}

.cd-colors-pagt li:nth-of-type(1) .cd-color-swatch-pagt {
  background: #34495E;
}

.cd-colors-pagt li:nth-of-type(2) .cd-color-swatch-pagt {
  background: #657585;
}

.cd-colors-pagt li:nth-of-type(3) .cd-color-swatch-pagt {
  background: #F4A425;
}

@media only screen and (min-width: 768px) {
  .cd-colors-pagt li {
    width: 19%;
    float: left;
    margin: 0 1.25% 1em 0;
  }

  .cd-colors-pagt li:nth-of-type(2n) {
    margin-right: 1.25%;
  }

  .cd-colors-pagt li:nth-of-type(5n) {
    margin-right: 0;
  }
}


.cd-colors-trd {
  margin-bottom: 0px;
}
/* xColor section - basic style */
.cd-colors-trd li {
  text-align: center;
  width: 48%;
  float: left;
  margin: 0 4% 1em 0;
  color: black;
}

.cd-colors-trd li:nth-of-type(2n) {
  margin-right: 0;
}

.cd-colors-trd .cd-color-swatch-trd {
  position: relative;
  width: 100%;
  padding: 50% 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cd-colors-trd .cd-color-swatch::before,
.cd-colors-trd .cd-color-swatch::after {
  /* lighter and darker color shades of the same swatch */
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 20%;
}

.cd-colors-trd .cd-color-swatch-trd::before {
  left: 0;
}

.cd-colors-trd .cd-color-swatch-trd::after {
  right: 0;
}

.cd-colors-trd b {
  display: block;
  padding: .6em 0;
}

.cd-colors-trd li:nth-of-type(1) .cd-color-swatch-trd {
  background: #091F40;
}

.cd-colors-trd li:nth-of-type(2) .cd-color-swatch-trd {
  background: #CCCCCC;
}

.cd-colors-trd li:nth-of-type(3) .cd-color-swatch-trd {
  background: #7B8AD6;
}

.cd-colors-trd li:nth-of-type(4) .cd-color-swatch-trd {
  background: #FFFFFF;
}

@media only screen and (min-width: 768px) {
  .cd-colors-trd li {
    width: 19%;
    float: left;
    margin: 0 1.25% 1em 0;
  }

  .cd-colors-trd li:nth-of-type(2n) {
    margin-right: 1.25%;
  }

  .cd-colors-trd li:nth-of-type(5n) {
    margin-right: 0;
  }
}


.cd-typography .cd-box,
.cd-buttons .cd-box,
.cd-icons .cd-box,
.cd-form .cd-box {
  padding: 1em;
}

@media only screen and (min-width: 768px) {

  .cd-typography .cd-box .cd-box,
  .cd-buttons .cd-box .cd-box,
  .cd-icons .cd-box .cd-box,
  .cd-form .cd-box .cd-box {
    padding: 2em;
  }
}

/* xTypography section - basic style */
/* .cd-typography h1::before {
  content: 'Aa - ';
  color: #fdd900;
} */

/* .cd-typography h3::before {
  content: 'Aa - ';
  color: #fdd900;
}

.cd-typography h6::before {
  content: 'Aa - ';
  color: #fdd900;
} */

.cd-buttons .cd-box:first-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cd-buttons .cd-box:last-of-type {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cd-buttons button {
  margin: .4em;
}

@media only screen and (min-width: 1024px) {
  .cd-buttons button {
    margin: 1em;
  }
}

/* xIcons section - basic style */
.cd-icons li {
  width: 100px;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 1em;
}

.cd-icon-1, .cd-icon-2, .cd-icon-3, .cd-icon-4, .cd-icon-5, .cd-icon-6, .cd-icon-7,
.cd-icon-8, .cd-icon-9, .cd-icon-10, .cd-icon-11, .cd-icon-12, .cd-icon-13, .cd-icon-14
 {
  text-align: center;
  font-size: 14px;
}

/* .cd-icons .cd-icon-2 {
  background-image: url("../assets/icons/network.png");
} */

/* .cd-icons .cd-icon-3 {
  background-image: url("../assets/icons/process.png");
}

.cd-icons .cd-icon-4 {
  background-image: url("../assets/icons/trend.png");
}

.cd-icons .cd-icon-5 {
  background-image: url("../assets/icons/icon-5.svg");
}

.cd-icons .cd-icon-6 {
  background-image: url("../assets/icons/icon-6.svg");
}

.cd-icons .cd-icon-7 {
  background-image: url("../assets/icons/icon-7.svg");
}

.cd-icons .cd-icon-8 {
  background-image: url("../assets/icons/icon-8.svg");
} */

/* xForm section - basic style */
.cd-form input[type=text],
.cd-form .cd-input-wrapper {
  margin: 1em;
}

.cd-form .cd-input-wrapper {
  position: relative;
  display: inline-block;
}

.cd-form select::-ms-expand {
  display: none;
}

@-moz-document url-prefix() {

  /* hide custom arrow on Firefox */
  .cd-select::after {
    display: none;
  }
}

.no-csstransitions .cd-select::after {
  display: none;
}