@import url(https://fonts.googleapis.com/css?family=Bree+Serif);/* Variables */
/* Skill Component */
.active .skill {
  flex: 0 1 0px;
}
.skill {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0px;
  overflow: hidden;
  cursor: pointer;
  padding: 0 2rem;
  background-color: #f15757;
  transition: flex 300ms ease;
}
.skill.active {
  flex: 1 0 auto;
  cursor: initial;
}
.skill.crimson {
  background-color: #f15757;
}
.skill.moss {
  background-color: #38b778;
}
.skill.lake {
  background-color: #5996bb;
}
.skill .skill-close {
  cursor: pointer;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transition: box-shadow 300ms ease;
}
.skill .skill-close .icon.icon-cross {
  transition: transform 300ms ease;
  transform: rotate(-45deg);
}
.skill .skill-close:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.skill.active .skill-close .icon.icon-cross {
  transform: rotate(0);
}
.skill .heading {
  display: flex;
  align-items: center;
}
.skill p {
  max-width: 56rem;
}
.skill .skill-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: 0.2rem solid #000;
  background-color: #fff;
}
.skill .skill-icon svg {
  width: 3.6rem;
  height: 3.6rem;
  padding: 1rem;
}
.skill h2 {
  margin: 1.4rem 1rem;
  border-bottom: 2px solid #000;
  transition: min-width 200ms ease;
}
.skill .skill-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-3rem);
  transition: max-height 300ms ease, transform 200ms ease, opacity 300ms ease;
}
.skill .skill-body p {
  line-height: 1.6rem;
}
.skill.active .skill-body {
  max-height: 100%;
  opacity: 1;
  transform: translateY(0);
}
.skill ul {
  margin: 0;
  padding: 0;
  cursor: initial;
  list-style: none;
  font-family: consolas, courier, monospace;
}
.skill ul li {
  display: inline-block;
  margin: 0.4rem;
  padding: 0.2rem 0.6rem;
  background-color: #fff;
  border-radius: 4px;
}
.skill.active ul {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #fff;
}
/* Variables */
/* Sidebar Component */
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 8rem;
  background-color: #eee;
  overflow: hidden;
  transition: height 400ms cubic-bezier(0.25, 0.25, 0.25, 1), background 200ms linear;
}
.sidebar .upper-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  transition: height 300ms ease;
}
.sidebar .toggle-container {
  transform: translateX(50%) translateY(-5rem);
  margin: 2rem 0;
  transition: flex 400ms ease, transform 400ms cubic-bezier(0, 0.7, 0.4, 1);
}
.sidebar .toggle-container a.sidebar-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  transform: translateX(-50%);
  width: 8rem;
  padding: 0.6rem 1rem;
  margin: 0 auto;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transition: box-shadow 300ms ease, transform 100ms ease;
}
.sidebar .toggle-container a.sidebar-toggle:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.sidebar .toggle-container a.sidebar-toggle svg.icon-menu-down {
  margin-left: 0.6rem;
}
.sidebar .contacts-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 5;
  overflow: hidden;
  height: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(-3rem);
  transition: opacity 100ms ease, transform 100ms ease;
}
.sidebar .contacts-container h2 {
  text-align: center;
}
.sidebar.active {
  height: 100%;
  overflow: auto;
}
.sidebar.active .upper-container {
  height: 40%;
}
.sidebar.active .contacts-container {
  transform: translateY(0);
  opacity: 1;
  height: auto;
}
.sidebar.active .toggle-container {
  transform: translateX(0);
}
.sidebar.active .toggle-container a.sidebar-toggle {
  transform: translateX(0);
}
@media screen and (min-width: 46rem) {
  .sidebar {
    position: relative;
    overflow: auto;
    min-width: 22rem;
    height: 100%;
    flex: 0 1 30%;
  }
  .sidebar:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3rem 3rem 0;
    border-color: transparent #fff transparent transparent;
    transition: border-color 300ms linear;
  }
  .sidebar.arrow-active:after {
    border-color: transparent #f15757 transparent transparent;
  }
  .sidebar.arrow-active.crimson:after {
    border-color: transparent #f15757 transparent transparent;
  }
  .sidebar.arrow-active.moss:after {
    border-color: transparent #38b778 transparent transparent;
  }
  .sidebar.arrow-active.lake:after {
    border-color: transparent #5996bb transparent transparent;
  }
  .sidebar .upper-container {
    max-height: 50%;
    height: auto;
    padding: 3rem 2rem;
  }
  .sidebar .toggle-container,
  .sidebar a.sidebar-toggle {
    display: none;
  }
  .sidebar .contacts-container {
    opacity: 1;
    transform: none;
    height: auto;
    min-height: 30%;
  }
}
@media screen and (orientation:landscape) and (max-width: 46rem) {
  .sidebar.active {
    height: 200%;
  }
}
/* Variables */
/* Logo Component */
.logo-container {
  height: 100%;
  transform: translateX(-50%);
  transition: flex 400ms ease, transform 400ms ease, height 300ms ease;
}
.logo-container svg {
  display: block;
  height: 100%;
  margin: 0 auto;
  fill: #000;
  transform: translateX(50%);
  transition: transform 400ms ease;
}
@media screen and (min-width: 46rem) {
  .logo-container {
    width: 80%;
    margin: 0 auto;
    transform: none;
  }
  .logo-container svg {
    width: 100%;
    transform: none;
  }
}
.active .logo-container {
  transform: translateX(0);
}
.active .logo-container svg {
  transform: translateX(0);
}
/* Variables */
/* Contact Component */
.contact {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
  padding: 0 2rem;
  transition: background 300ms ease;
}
.contact:after {
  content: '';
  width: 0%;
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transition: width 400ms ease, border 200ms ease;
}
.contact:hover {
  background-color: #fff;
}
.contact:hover:after {
  width: 100%;
  border-width: 4px;
}
.contact svg {
  flex-shrink: 0;
  margin-right: 2rem;
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 46rem) {
  .contact {
    width: 100%;
  }
}
.sidebar.crimson .contact:after {
  border-color: #f15757;
}
.sidebar.moss .contact:after {
  border-color: #38b778;
}
.sidebar.lake .contact:after {
  border-color: #5996bb;
}
/* Variables */
/* main.css */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
html,
body,
#app,
#app > [data-reactroot],
.main-container {
  height: 100%;
}
body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
hr {
  border-bottom: 0;
  border-style: solid;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Bree Serif', serif;
}
@media screen and (min-width: 46rem) {
  .main-container {
    display: flex;
    flex-direction: row;
  }
}
.body-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.body-container .body {
  padding: 3rem 2rem;
  flex: 1 0 auto;
}
.body-container a {
  color: #5996bb;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px dotted #5996bb;
}
.body-container a:visited {
  color: #7090a4;
  border-color: #7090a4;
}
@media screen and (min-width: 46rem) {
  .body-container {
    overflow: auto;
  }
  .body-container .scroll-container {
    overflow: auto;
    height: 100%;
  }
}
.skills-container {
  display: flex;
  flex-direction: column;
  flex: 1 0 100%;
  min-height: 20rem;
  overflow-y: auto;
}
@media screen and (orientation:landscape) and (max-width: 46rem) {
  .skills-container {
    flex: 1 0 150%;
  }
}
/* 
 icon.css
*/
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
/* ==========================================
Single-colored icons can be modified like so:
.icon-name {
  font-size: 32px;
  color: red;
}
========================================== */
.icon-menu-down {
  width: 1.375em;
}
.icon-embed-slash {
  width: 1.25em;
}

/*# sourceMappingURL=styles.less.css.map*/