div.link-holder p, div.link-holder i, div.link-holder2 p, div.link-holder2 i{
    transition-duration: .3s;
}

div.link-holder:hover > p, div.link-holder2:hover > p {
    color: #009474;
}

div.link-holder:hover > p > i, div.link-holder2:hover > p > i {
    color: #009474;
    transform: rotate(-90deg);
}

p.dropdown-title, p.dropdown-title2 {
    margin: .5rem 1rem;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    text-transform: capitalize;
}

div.link-holder:hover div.dropdown {
    display: flex;
}

div.link-holder2:hover div.dropdown2 {
    display: flex;
}

div.link-holder2 {
    display: flex;
    flex-direction: row;
}

div.dropdown, div.dropdown2 {
    display: none;
    position: absolute;
    background-color: #161C2D;
    padding: .4rem;
    flex-direction: row;
    flex-wrap: wrap;
    transition-duration: .3s;
}

div.dropdown2 {
    position: absolute;
    background-color: #0E131F;
    flex-direction: column;
    margin-top: 2.1rem;
}

div.dropdown p, div.dropdown2 p {
    margin: .5rem 1rem;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    text-transform: capitalize;
}

div.dropdown p:hover, div.dropdown2 p:hover {
    color: #009474;
}

/*  */

div.io-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

div.input-holder {
    width: 45%;
    display: flex;
    flex-direction: column;
}

div.output-holder {
    width: 45%;
    display: flex;
    flex-direction: column;
}

section p.label {
    margin: .5rem 1rem 0;
}

input {
    margin: 0 1rem 1.2rem;
}

input:focus {
    outline: none;
    box-shadow: 0 0 10px 2px rgba(0, 122, 96, .8);
    background-color: rgba(22, 28, 45, .5);
}

::selection {
    background-color: #009474;
    color: whitesmoke;
}

input[type=text] {
    width: 100%;
    background-color: transparent;
    border: 1px solid whitesmoke;
    border-radius: .1rem;
    padding: .1rem .2rem;
    flex-grow: 1;
}

textarea {
    margin: 0 1rem 1rem;
    width: 100%;
    background-color: transparent;
    border: 1px solid whitesmoke;
    border-radius: .1rem;
    padding: .1rem .2rem;
    resize: none;
    flex-grow: 1;
}

textarea:focus {
    outline: none;
    box-shadow: 0 0 10px 2px rgba(0, 122, 96, .8);
    background-color: rgba(22, 28, 45, .5);
}

input[type=number] {
    width: 4rem;
    background-color: transparent;
    border: 1px solid whitesmoke;
    border-radius: .1rem;
    padding: .1rem .2rem;
}

div.result-container, div.result-container2 {
    margin: 0 1rem 1rem;
    width: max-content;
    background-color: transparent;
    border: 1px solid whitesmoke;
    border-radius: .1rem;
    padding: .1rem .2rem;
}

.hide {
    display: none !important;
}

/*  */

div.sidebar {
    display: flex;
    flex-direction: column;
    background-color: #0E131F;
    height: 100%;
    padding: 0 .5rem .5rem 0;
}

div.full-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

div.path-result-line {
    display: flex;
    flex-direction: row;
    margin: .5rem 0;
}

p.path-result {
    margin: 0 .5rem;
}

p.id-info {
    font-size: 75%;
    align-self: flex-end;
    margin: 0 0 0 .5rem;
    line-height: 1.2rem;
}