/*!
Theme Name: claudia
Theme URI: 
Author: Juan Rafael Simarro
Author URI: https://juanrafaelsimarro.com/
Description: A clean theme perfect for personal blog or business where images are not important.
Version: 1.3.3
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: claudia
Tags: blog, custom-background, custom-logo, custom-menu, threaded-comments, translation-ready, editor-style, rtl-language-support, custom-header

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

claudia is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Root
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Header
# Widgets
# Content
	## Wrappers and containers
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Social Network
# Footer
--------------------------------------------------------------*/


/*=============================================
=            Root            =
=============================================*/

:root {
    --back-color: #242422;
    --back-content-color: #2c2a28;
    --primary-color: #fbf6e5;
    --secondary-color: #867a76;
    --texts-color: #5f504b;
    --accent-color: #a1624c;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
optgroup,
textarea {
    color: var(--texts-color);
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-family: 'Oxigen', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16rem;
}

p {
    margin-bottom: 1.5em;
    font-size: 1.125rem;
}

dfn,
cite,
em,
i,
blockquote {
    font-style: italic;
    
}

blockquote {
    margin: 0 1.5em;
    font-family: 'serif';
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}


/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background: var(--back-color);
}

hr {
    background-color: var(--secondary-color);
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 2px solid var(--accent-color);
    background: none;
    color: var(--accent-color);
    padding: .6em 1em .4em;
    cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: none;
    padding: 12px;
    background-color: var(--back-color);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: var(--primary-color);
}

select {
    border-bottom: 1px solid var(--secondary-color);
}

select:focus {
    outline: thin dotted;
}

textarea {
    width: 100%;
}

.search-form {
    position: relative;
}

.search-form input[type="search"] {
    width: 100%;
    padding-right: 30px;
}

.search-form input[type="submit"] {
    border: none;
    background: url(assets/images/search.png) no-repeat;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 25px;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
    color: var(--accent-color);
    text-decoration: none;
    -webkit-transition: all .4s;
    transition: all .4s;
}

a:hover {
    letter-spacing: 2px;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
    color: var(--secondary-color);
}


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
    text-transform: uppercase;
    width: 100%;
    display: none;
    font-family: 'Oxigen', sans-serif;
    font-weight: 600;
    letter-spacing: 0.089rem;
}

#primary-menu {
    display: inline-block;
    margin: 0 auto;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    margin-top: 1rem;
}

.main-navigation li {
    position: relative;
    padding: .5rem;
    text-align: left;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color: var(--secondary-color);
}

.main-navigation li a:hover,
.main-navigation li a:focus,
.main-navigation li.current-menu-item a {
    color: var(--accent-color);
}


/* Small menu. */

#menu-toggle {
    float: right;
}

#menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

#menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin-top: 4px;
    background: #877b77;
    border-radius: 2px;
    -webkit-transition: all .8s;
    transition: all .8s;
}

#menu-toggle:hover .bar {
    background: var(--accent-color);
}

@media screen and (min-width: 48rem) {
    #menu-toggle {
        display: none;
    }
    .main-navigation {
        width: auto;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: block;
        text-align: right;
    }
    .main-navigation ul ul {
        -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
        float: left;
        position: absolute;
        top: 100%;
        left: -999em;
        z-index: 99999;
        margin-top: 0;
        padding: .8rem 0;
        background-color: var(--back-color);
        border-top: 1px solid var(--accent-color);
        -webkit-transition: all 1.5s;
        transition: all 1.5s;
        opacity: 0;
    }
    .main-navigation ul ul ul {
        left: -999em;
        top: 0;
        opacity: 0;
        -webkit-transition: opacity 2s;
        transition: opacity 2s;
    }
    .main-navigation ul ul li:hover > ul,
    .main-navigation ul ul li a:focus ~ ul {
        left: 100%;
        opacity: 1;
    }
    .main-navigation ul ul a {
        width: 200px;
    }
    .main-navigation ul ul a:hover {
        letter-spacing: inherit;
    }
    .main-navigation ul li:hover > ul,
    .main-navigation ul li a:focus ~ ul {
        left: auto;
        opacity: 1;
    }
    .main-navigation li {
        float: left;
    }
}

.comment-navigation,
.posts-navigation,
.pagination {
    margin: 0 0 1.5em;
    width: 100%;
    background-color: var(--back-color);
    text-transform: uppercase;
}

.posts-navigation .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.posts-navigation .nav-next,
.posts-navigation .nav-previous {
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 10rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 20% 50%;
}

.posts-navigation .nav-next h4,
.posts-navigation .nav-previous h4 {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #0e0e0e42;
    -webkit-transition: background-color .4s ease-in;
    transition: background-color .4s ease-in;
    font-size: .8rem;
    font-weight: 100;
}

.posts-navigation .nav-next h4:hover,
.posts-navigation .nav-previous h4:hover {
    background-color: #a1624c;
    opacity: .8;
}

.posts-navigation .nav-next h4,
.posts-navigation .nav-previous h4 .posts-navigation .nav-next h4,
.posts-navigation .nav-previous h4 .posts-navigation .nav-next h4 {
    text-align: right;
}

.posts-navigation .nav-next a,
.posts-navigation .nav-previous a {
    color: var(--primary-color);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .5rem;
}

.pagination {
    padding: 0 1rem 2rem 0;
}

.pagination .nav-links>* {
    padding: .5rem .8rem;
}

.pagination .nav-links a {
    border: 2px solid var(--accent-color);
    font-size: .875rem;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

.pagination .nav-links a:hover {
    letter-spacing: inherit;
    border-color: var(--texts-color);
}

.pagination .dots {
    color: var(--primary-color);
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;

}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#claudia-search-panel{
    padding: 1rem;
    background-color: var(--back-color);
    margin-bottom: 10px;
    display: none;
}
#claudia-search-panel .search-form{
    max-width: 80vw;
    margin: 0 auto;
}
#claudia-search-panel input{
    background-color: #403936;
    padding: 1rem;
    font-size: 2em;
    
}
#claudia-search-panel input:focus{
    outline: none;
}
.site-header {
    margin-bottom: -10px;
    position: relative;
}

.site-header .header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.header-image-wrap {
    position: relative;
}


/* video and image header styles*/

.header-image-wrap .wp-custom-header iframe,
.header-image-wrap .wp-custom-header img,
.header-image-wrap .wp-custom-header video {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.header-image-wrap .wp-custom-header .wp-custom-header-video-button {
    display: none;
}

.header-text {
    position: absolute;
    width: 100%;
    color: var(--primary-color);
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #00000038;
}

.header-text h2 {
    font-size: 6vw;
    font-weight: 600;
}

.header-text h3 {
    font-size: 1.9vw;
}

.header-text h3,
.header-text h2 {
    margin: 0;
}

.claudia-button-search {
    height: 30px;
    border-radius: 50%;
    width: 30px;
    cursor: pointer;
    display: inline-block;
}

.claudia-button-search img {
    width: 20px;
    height: auto;
    display: block;
    -webkit-transition: width .5s;
    transition: width .5s;
}

.claudia-button-search img:hover {
    width: 22px;
}

.site-branding {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 1rem;
}

.site-title {
    font-family: 'Oxigen', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3rem;
    margin: 0;
}

.site-title a,
.site-description {
    color: var(--primary-color);
    letter-spacing: .09rem;
}

.site-description {
    font-size: .8rem;
    font-family: serif;
}

@media screen and (min-width: 48rem) {
    .site-header .header-wrap .header-left,
    .site-header .header-wrap .header-right {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 1.5em;
    max-width: 31.25rem;
    word-break: break-word;
    color: var(--secondary-color);
    text-align: left;
}

.widget ul {
    list-style: none;
}

.widget h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.widget li {
    font-family: serif;
    font-size: 1.2rem;
}

.widget select {
    max-width: 100%;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Wrappers and containers
--------------------------------------------------------------*/

.site {
    padding: 40px 30px 0;
}

@media screen and (min-width: 48rem) {
    .site {
        padding: 40px 60px 0;
    }
}

.site-content {
    background-color: var(--back-content-color);
    position: relative;
}

.posts-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    padding: 3rem;
}

@media screen and (min-width: 48rem) {
    .posts-container {
        padding: 7rem;
    }
}


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.type-page,
.single .post {
    background-color: var(--primary-color);
}

.page-content,
.entry-content,
.entry-summary,
.entry-header {
    padding: 2rem 3rem;
}

.entry-meta {
    font-family: serif;
}

.entry-title,
.post-thumbnail {
    text-align: center;
}

.post-thumbnail.thumb-padding {
    padding: 1rem;
}

.entry-footer {
    text-transform: uppercase;
}

.posts-container .header_list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.posts-container select {
    border: none;
    color: var(--secondary-color);
    background-color: inherit;
    padding: .5rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--secondary-color);
}

.posts-container select:after {
    content: "";
    width: 20px;
    height: 1px;
    display: block;
    background-color: var(--secondary-color);
}

.posts-container select option {
    background-color: var(--back-color);
}

.posts-container .list_title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: serif;
    font-size: 2rem;
    padding-right: 5%
}

.post-list {
    color: var(--secondary-color);
    position: relative;
    padding: 2rem 1.5rem;
    margin: 0 auto;
}

.post-list:after {
    content: "";
    display: block;
    position: absolute;
    width: 70px;
    height: 2px;
    background-color: #453d3a;
    margin-top: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.post-list .entry-title a {
    color: var(--primary-color);
    text-transform: uppercase;
    margin: .6rem;
}

.post-list .entry-title a:hover {
    letter-spacing: inherit;
}

.post-list .entry-meta,
.post-list .entry-footer {
    font-size: .875rem;
}

.post-list .tags-links a {
    font-size: .9rem;
    color: var(--secondary-color);
}

.post-list .cats-line {
    padding: .3rem;
}

.updated:not(.published) {
    display: none;
}

.post-list .entry-header {
    padding: 1rem;
}

.post-single .entry-footer,
.post-single .entry-meta {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.post-single .entry-footer,
.post-single .entry-meta,
.post-single .entry-header,
.post-single .entry-content {
    max-width: 64rem;
    margin: 0 auto;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

@media screen and (min-width: 65rem) {
    .posts-container .list_title {
        font-size: 1.3rem;
    }
    .posts-container .header_list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: -1rem .5rem 4rem;
    }
    .post-list {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        padding: 3rem 1.5rem;
        margin: 0;
        cursor: pointer;
        border-bottom: 1px solid #453d3a;
        -webkit-transition: background-color .8s;
        transition: background-color .8s;
    }
    .post-list:after {
        background: none;
    }
    .post-list:hover {
        background-color: var(--back-color);
    }
    .post-list:last-child,
    .posts-container.even .post-list:nth-last-child(2) {
        border-bottom: 0;
    }
    .post-list:nth-child(even) {
        border-right: 1px solid #453d3a;
    }
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comments-area {
    padding: 1rem;
    max-width: 64rem;
    margin: 0 auto;
    color: var(--primary-color);
    font-family: serif;
}

.comments-area ol {
    list-style: none;
}

.comments-area a:hover {
    letter-spacing: inherit;
}

.comments-area .comment-header,
.comments-area .comment-content .comment-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
}

.comments-area .comment-header img {
    margin-right: 1rem;
}

.comment {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--back-color);
}

.comment-content a {
    word-wrap: break-word;
}

.comments-area .avatar {
    border-radius: 50%;
}

.comments-area p {
    color: var(--secondary-color);
}

.bypostauthor {
    display: block;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
    display: block;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/*--------------------------------------------------------------
# Social Network
--------------------------------------------------------------*/

.social-links {
    text-align: center;
}

.social-links a {
    padding: .5rem;
    font-family: serif;
    margin: .5rem;
    position: relative;
    font-size: 1.3rem;
    display: inline-block;
}

.social-links a:before {
    content: "→";
    margin-top: .5rem;
    position: absolute;
    left: -20px;
    bottom: 9px;
    opacity: 0;
    -webkit-transition: all .8s;
    transition: all .8s;
}

.social-links a:hover {
    letter-spacing: inherit;
}

.social-links a:hover::before {
    left: -14px;
    opacity: 1;
}

@media screen and (min-width: 48rem) {
    .social-links {
        position: fixed;
        right: -7rem;
        top: 50%;
        display: block;
        -webkit-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }
    .social-links a {
        padding: .5rem;
        margin: .5rem;
        font-size: 1.1rem;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.site-footer .site-info {
    font-size: .875rem;
}

#upp-button {
    color: var(--accent-color);
    cursor: pointer;
}

#upp-button:hover {
    color: var(--secondary-color);
}