
           /** initial setup, disables all ul styling **/

.header ul,
#hidden-menu {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
/** initial setup, disables all ul styling **/
/** Takes links **/

.header ul.header_links li {
    display: inline-block;
    margin: 0px 8px;
}
.header ul.header_links {
    max-width: calc(100% - 40px);
    margin: auto;
}
/** Takes links **/
/** floating menus **/

#hidden_trigger,
#url_to_shop,
#hidden_trigger a,
#url_to_shop a {
    line-height: 100% !important
}
#hidden_trigger,
#url_to_shop {
    position: fixed;
    top: 40px;
    padding: 12px;
    border-radius: 50%;
    font-size: 11pt;
    z-index: 10000;
}
#url_to_shop {
    right: 40px;
}
#hidden_trigger {
    left: 40px;
}
.mobile-version #url_to_shop{
    right:initial;
    left: 80px;
}
.mobile-version #hidden_trigger{
    right:initial;
    left: 30px;
}
/** floating menus **/
/** floating menus when preented by mobile **/

html:not(.header-hidden) .tmblr-iframe-pushdown #hidden_trigger,
html:not(.header-hidden) .tmblr-iframe-pushdown #url_to_shop {
    top: 74px
}
/** floating menus when preented by mobile **/
/** header padding up and down **/

.header {
    padding-bottom: 80px;
    padding-top: 180px;
}
/** header padding up and down **/
/** header h1 title **/

.header h1 {
    font-size: 24pt;
    margin-bottom: 25px;
    font-weight: normal;
    width: 600px;
    margin: auto;
    margin-bottom: 25px;
    max-width: 100%;
}
.header h1 img {
    max-width: calc(100% - 90px);
    margin: auto;
}
.header ul.header_links li {
    text-transform: uppercase;
    font-size: 9pt;
    letter-spacing: 0.5pt;
}
.header ul.header_links li:first-child {
    border-bottom: 1px solid #222;
    padding-bottom: 4px;
}
/** header h1 title **/
/** hidden menu **/

#hidden-menu {
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    padding: 30px;
    left: -250px;
}
#hidden-menu .hidden-image.avatar img {
    border-radius: 50%;
    overflow: hidden;
}
#hidden-menu .hidden-image.avatar img {
    max-width: 100px;
}
#hidden-menu .hidden-image.logo img {
    max-width: 100%;
}
#hidden-menu .hidden-description {
    margin-top: 25px;
}
#hidden-menu .hidden-icons a {
    font-size: 13pt;
    margin-right: 10px;
}
#hidden-menu .hidden-icons {
    margin-top: 30px;
}
/** hidden menu **/
/** when hidden menu triggered **/

html.hidden-enabled:not(.mobile-version) #url_to_shop {
    display: none
}

html.hidden-enabled,
.hidden-enabled #hidden_trigger,
.hidden-enabled #url_to_shop,
.hidden-enabled .tmblr-iframe {
    margin-left: 250px;
}
html.hidden-enabled #hidden-menu {
    left: 0px;
}
/** when hidden menu triggered **/
/** menu transition **/

html.hidden-enabled,
html.hidden-disabled,
#hidden_trigger,
#url_to_shop,
.tmblr-iframe{
    -webkit-transition: margin-left 0.45s;
    -moz-transition: margin-left 0.45s;
    -ms-transition: margin-left 0.45s;
    -o-transition: margin-left 0.45s;
    transition: margin-left 0.45s;
}
#hidden-menu {
    -webkit-transition: left 0.45s;
    -moz-transition: left 0.45s;
    -ms-transition: left 0.45s;
    -o-transition: left 0.45s;
    transition: left 0.45s;
}
/** menu transition **/