body {
    border: 0;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: Muli, sans-serif;
}

header {
    width: 100%;
    height: 75px;
    padding: 20px 30px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10000;
    border-bottom: 2px solid #eee;
    box-sizing: border-box;
}

header svg {
    padding-top: 0;
    width: 215px;
}

header .left {
    width: 50%;
    display: inline-block;
}
header .right {
    width: 49%;
    text-align: right;
    display: inline-block;
    vertical-align: top;
}
.search-button {
    background: #488cc2;
    color: #fff!important;
    border-radius: 20px;
    text-transform: uppercase;
    padding: 6px;
    font-size: .85em;
    margin-top: 3px;
}

h2 {
    font-family: Dosis, sans-serif;
}

h2::before {
    content: '.';
    color: transparent;
    display: block;
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: #ffa502;
    border-radius: 10px;
    margin-top: -5px;
}

.guide-container {
    border-top: 2px solid #eee;
    margin-top: 60px;
    background: #25323A;
}

.guide-container.examples {
    border-top: 2px solid #eee;
    margin-top: 60px;
    padding: 0;
}

aside {
    background: white;
    padding-top: 40px;
    width: 20%;
    display: block;
    float: left;
    min-height: 120vh;
    border-right: 1px solid #eee;
    box-sizing: border-box;
    position: fixed;
    top: 60px;
}

aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

aside ul li {
    padding: 4px 0 4px 20px;
}

aside ul li ul {
    display: none;
}

aside ul li.is-active ul {
    display: block;
}

a, a:visited, a:hover {
    transition: all .5s ease;
    text-decoration: none;
    color: #ffa500;
    color: #396088;
    display: inline-block;
}

a.is-active, a:hover {
    position: relative;
    opacity: .7;
    color: #488cc2;
}

section a, section a:visited, section a:hover {
    color: #ffa500;
}
section a:hover {
    color: #ffa500;
    opacity: .7;
}

a.is-active::before {
    content: '.';
    position: absolute;
    color: transparent;
    background: #488cc2;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: -10px;
    top: 7px;
}

section {
    box-sizing: border-box;
    color: #333;
}

section.api-row {
    margin-left: 20%;
}

section.api-row section {
    padding: 70px 40px 40px 40px;
    display: inline-block;
    position: relative;
    vertical-align: top;
}

section.api-row .left {
    width: 39%;
    background: white;
}

section.api-row .right {
    width: 60%;
    color: white;
    padding-top: 130px;
}

i {
    font-family: monospace;
    background: #ffffff;
    text-transform: none;
    font-style: normal;
    border-radius: 2px;
    border: 1px solid #dcd9d9;
    padding: 3px;
    display: inline-block;
    font-size: .9rem;
    color: #d45e5e;
    margin: 2px 0;
    font-weight: 300;
}

.request-response {
    transition: all .5s ease;
    opacity: 0;
}

input {
    padding: 5px;
    border: 1px solid lightgrey;
    font-size: 13px;
    margin: 3px;
}

input[type='file'] {
    border: none;
    padding: 0;
    max-width: 200px;
}

input[type='submit'] {
    background: #498CC4;
    color: #fff;
    padding: 5px 8px;
}

.segment-image {
    position: relative;
    max-height: 200px;
    max-width: 200px;
    margin: 10px;
}
.segment-image .off-segment {
    z-index: 80;
    position: absolute;
    height: 200px;
    opacity: .5;
    background: #000;
}
.segment-image .search-segment {
    z-index: 100;
    overflow: hidden;
    position: absolute;
}
.segment-image .image-container {
    position: absolute;
    overflow: hidden;
    border: 2px solid red;
}
.segment-image .image-container img {
    position: absolute;
    background: white;
}
.segment-image .result-image {
    top: 0;
    left: 0;
    position: absolute;
}

#Logo:hover > #dev #letter_d {
    animation: d 1.5s infinite;
}
#Logo:hover > #dev #letter_e {
    animation: e 1.5s infinite;
}
#Logo:hover > #dev #letter_v {
    animation: v 1.5s infinite;
}
@keyframes d {
    0% { opacity: 0; }
    19% { opacity: 0; }
    20% { opacity: 1; }
    100% { opacity: 1; }
}
@keyframes e {
    0% { opacity: 0; }
    39% { opacity: 0; }
    40% { opacity: 1; }
    100% { opacity: 1; }
}
@keyframes v {
    0% { opacity: 0; }
    59% { opacity: 0; }
    60% { opacity: 1; }
    100% { opacity: 1; }
}
