/*********************** UI ************************* *
 *  1. Buttons
 *  2. Forms
 *      2.1. Input
 *      2.2. Placeholder
 *      2.3. Misc Form Elements
 *  3. Misc UI Elements
 *  4. Animations
****************************************************/

/******************* 1. Buttons ********************/
.round-btn {
  border: 2px solid #0D0D0D;
  border-radius: 50%;
  padding: 7px 17px;
  color: #0D0D0D;
  text-align: center;
  font-family: "Roboto Mono";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  position: static;
  transition: 0.1s ease-in-out;
  max-width: none;
  width: auto;
}

html body.dark .round-btn {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}

.round-btn:hover,
.round-btn:focus {
  background-color: #0D0D0D;
  border-color: #0D0D0D;
  color: #fff;
  text-decoration: none;
}

body.dark .round-btn:hover,
body.dark .round-btn:focus {
  background-color: #fff;
  color: #0D0D0D;
}

#main div .read-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #0D0D0D;
  text-align: right;
  font-family: Helixa;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 106.4%; /* 17.024px */  
  margin-top: 50px;
  margin-bottom: 0;
}

#main div .read-toggle:hover {
  opacity: 0.85;
}


/******************** 2. Forms *********************/

/**** 2.1. Input ****/



/**** 2.2. Placeholder ****/



/**** 2.3. Misc Form Elements ****/



/*************** 3. Misc UI Elements ****************/

/* Logo content */
html body .logo-content {
  min-height: auto;
  color: #0D0D0D;
  font-family: "Roboto Mono";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;  
  display: flex;
  padding: 0;
  transition: 0.1s ease-in-out;
}

html body.dark .logo-content {
  color: #fff;
}

html body .logo-content:hover,
html body li.logo-content-wrapper:hover,
html body li.logo-content-wrapper:hover > .logo-content {
  color: initial;
  opacity: 0.85;
  cursor: pointer;
  text-decoration: none;
}

html body.dark .logo-content:hover,
html body.dark li.logo-content-wrapper:hover,
html body.dark li.logo-content-wrapper:hover > .logo-content {
  color: #fff;
  opacity: 0.85;
  cursor: pointer;
  text-decoration: none;  
}

/* HR rule */
hr {
  border-top: 1px solid #000;
  margin-top: 20px;
  margin-bottom: 20px;
}

body.dark hr {
  border-color: #fff;
}

/* Content classes */
.roboto-text, 
.roboto_small, 
.roboto_small p, 
.roboto_small h1, 
.roboto_small h3, 
.roboto-text p {
  margin: 0;
  color: #0D0D0D;
  font-family: "Roboto Mono";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 138.462% */
  text-transform: uppercase;  
}

.helixa_small,
.helixa_small p {
  color: #0D0D0D;
  font-family: Helixa;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120.5%; /* 21.69px */  
}

body.dark .helixa_small,
body.dark .helixa_small p,
body.dark .helixa_small a,
body.dark .roboto_small,
body.dark .roboto_small p {
  color: #fff;
}

#main .content-grid a {
  color: #0D0D0D;
  text-decoration: underline;
}

body.dark #main .content-grid a {
  color: #fff;
}

.helixa_large, 
.helixa_large p {
  color: #0D0D0D;
  font-family: Helixa;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 111.5%; /* 27.875px */
}