@charset "UTF-8";
/**
 * The Style Code {CSS}
 * @package echophp
**/

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - ALL ELEMENTS */

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - HTML */

html { height: 100vh; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - BODY */

body {
    background-color: #f0f0f0;
    color: #404040;
    font-family:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 13pt;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    direction: ltr;
    line-height: normal;
    padding: 5vh 0 0 0;
    overflow-x: auto;
    overflow-y: scroll;
    cursor: default;
}

/* HEADING */

body h1 { font-size: 200%; }

body h2 { font-size: 180%; }

body h3 { font-size: 160%; }

body h4 { font-size: 140%; }

body h5 { font-size: 120%; }

body h6 { font-size: 100%; }

body h1, h2, h3, h4, h5, h6 { font-weight: bold; }

/* IMAGES */

body img {
    background: transparent;
    color: transparent;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    max-height: 100%;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
}

/* LINK */

body a {
    color: #0078d7;
    text-decoration: none;
}

body a[target="_blank"] { color: #404040; }

/* BIG AND SMALL SIZE */

body small { font-size: 90%; }

body big { font-size: 120%; }

/* LISTS */

body ul li { list-style: none; }

body ol li { list-style: decimal; }

body ul, li, dl, dt {}

body ol, dd { padding: 0 16px; }

/* INPUTS */

body input {
    background: #fff;
    color: #303030;
    font-family:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 11pt;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    padding: 16px 10px;
    border: 2px #d0d0d0 solid;
    border-radius: 6px;
    outline: none;
    box-shadow: 0 0 2px #f0f0f0 inset;
    transition: .1s;
}

body input::placeholder {
    color: #909090;
    font-weight: normal;
}

body input:hover { background: #fafafa; }

body input:focus {
    background: #e8f0fe;
    font-weight: 500;
    border-color: #505050;
}

body input[type="password"], [type="email"], [type="tel"], [type="url"], [type="file"], [type="range"], [type="color"], [type="number"], [type="time"], [type="date"], [type="month"], [type="week"], [type="datetime-local"] { direction: ltr; }

body input[type="button"], [type="submit"], [type="reset"], [type="file"], [type="range"], [type="color"], [type="radio"], [type="checkbox"] { cursor: pointer; }

body input[type="button"], [type="submit"] {
    background: #0078d7;
    color: #fff;
    padding: 8px 32px;
    border: 2px #0063b1 solid;
    box-shadow: none;
}

body input[type="button"]:hover, [type="submit"]:hover { background: #0063b1; }

body input[type="button"]:focus, [type="submit"]:focus { background: #0063b1 !important; }

body input[type="button"]:active, [type="submit"]:active { background: #0063b1 !important; }

body input:disabled {
    color: #909090;
    background: #f0f0f0;
    cursor: no-drop;
}

body input:invalid {
    color: #e81123;
    font-weight: 500;
    border-color: #e81123;
}

body textarea {
    background: #fff;
    color: #303030;
    width: 100%;
    min-height: 150px;
    height: 200px;
    font-family:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 11pt;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    padding: 16px;
    border: 2px #d0d0d0 solid;
    border-radius: 6px;
    outline: none;
    box-shadow: 0 0 2px #f0f0f0 inset;
    transition: .1s;
    resize: vertical;
}

body textarea::placeholder {
    color: #909090;
    font-weight: normal;
}

body textarea:focus {
    font-weight: 500;
    border-color: #505050;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - GENERIC */

.ltr { direction: ltr; }

.rtl { direction: rtl; }

.clear { clear: both; }

.text-center { text-align: center; }

.text-left { text-align: left; }

.text-right { text-align: right; }

.aligncenter { text-align: center; }

.alignleft { text-align: left; }

.alignright { text-align: right; }

.wp-caption {}

.wp-caption-text {}

.sticky {}

.screen-reader-text {}

.gallery-caption {}

.flex { display: flex; }

.pressed:active { transform: scale(.9, .9); }

.css-image {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-origin: border-box !important;
}

.donation-button {
    background: #0078d7;
    text-decoration: none;
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    transition: .1s;
    cursor: pointer;
}

.donation-button:hover { background: #0063b1; }

.donation-button span {
    color: #fff;
    font-size: 100%;
    font-weight: 500;
    margin: 0 0 0 8px;
}

.donation-button img {
    width: 32px;
    height: auto;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - SECTIONS AND CONTAINER */

.container {
    width: 800px;
    margin: auto;
}

.themebody {
    background: #fdfdfd;
    min-height: 95vh;
    margin: auto;
    border: 1px #e0e0e0 solid;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 0 2px #e0e0e0;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - NAVIGATION */

.navbar {
    background: #fff;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px #e0e0e0 solid;
    border-radius: 6px 6px 0 0;
}

.navbar .nav-div { align-self: center; }

.navbar .nav-title {
    width: 40%;
    padding: 0 32px;
}

.navbar .nav-title a {
    color: #404040;
    display: flex;
}

.navbar .nav-title a h2 {
    font-size: 100%;
    font-weight: 600;
}

.navbar .nav-title a img {
    width: 22px;
    height: 22px;
    margin: 0 8px 0 0;
    vertical-align: middle;
}

.navbar .nav-menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.navbar .nav-menu ul {
    font-size: 0;
    margin: 0 16px 0 0;
}

.navbar .nav-menu ul li {
    font-size: 12pt;
    display: inline-block;
    margin: 0 0 0 8px;
    padding: 10px 0;
    
}

.navbar .nav-menu ul li a {
    color: #404040;
    display: inline-block;
    padding: 12px;
    border-radius: 6px;
    transition: 0.1s;
}

.navbar .nav-menu ul li a:hover {
    color: #0078d7;
    background: #f0f0f0;
}

.navbar .nav-menu ul li.current-menu-item a {
    background: #f0f0f0;
    color: #202020;
    font-weight: 500;
}

.navbar .nav-menu ul li.current-category-ancestor a {
    background: #f0f0f0;
    color: #202020;
    font-weight: 500;
}

.navbar .nav-menu ul li.current-post-parent a {
    background: #f0f0f0;
    color: #202020;
    font-weight: 500;
}

.navbar .nav-menu .nav-sidemenu {
    display: inline-flex;
    justify-content: space-between;
    align-self: center;
    align-items: center;
    margin: 0 32px 0 0;
}

.navbar .nav-menu .nav-sidemenu .toggle-mode {
    width: 22px;
    overflow: hidden;
    display: inline-flex;
    cursor: pointer;
}

.navbar .nav-menu .nav-sidemenu .toggle-mode img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}

.navbar .nav-menu .nav-sidemenu .nav-donation {
    display: inline;
    margin: 0 0 0 16px;
}

.navbar .nav-menu .nav-sidemenu .nav-donation img { width: 28px; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - ADDRESSBAR */

.addressbar {
    background: #fafafa;
    color: #505050;
    font-size: 80%;
    display: flex;
    justify-content: space-between;
    padding: 8px 32px;
    border-bottom: 1px #f0f0f0 solid;
}

.addressbar ul { width: 100%; }

.addressbar ul li { display: inline; }

.addressbar ul li:not(:first-child)::before {
    color: #d0d0d0;
    content: '/';
    margin: 0 8px;
}

.addressbar ul li a { color: #505050; }

.addressbar a.go-back {
    width: 10%;
    color: #0078d7;
    text-align: right;
    margin:  0 0 0 32px;
}

.addressbar a:hover { text-decoration: underline; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - FILES HEAD */

.file-head {
    background: #fff;
    padding: 32px;
    border-bottom: 1px #e0e0e0 solid;
}

/* SEARCH FORM */

.file-head .search-php .searchform {
    display: flex;
    justify-content: space-between;
}

.file-head .search-php .searchform input[type="search"] {
    width: 100%;
}

.file-head .search-php .searchform label {
    color: #0078d7;
    width: 20%;
    font-size: 110%;
    font-weight: 500;
    align-self: center;
    text-align: center;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - FILES HEAD - CATEGORIES MENU */

.cate-menu {}

.cate-menu ul {
    font-size: 0;
    padding: 0 0 16px 0;
}

.cate-menu ul li {
    font-size: 10.5pt;
    font-weight: 500;
    display: inline-block;
    margin: 0 8px 0 0;
}

.cate-menu ul li a {
    background: #e5f3ff;
    color: #0078d7;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    transition: .1s;
}

.cate-menu ul li:hover a { background: #cce8ff; }

.cate-menu ul li.current-menu-item a {
    background: #0078d7;
    color: #fff;
}

.cate-menu ul li.current-category-ancestor a {
    background: #0078d7;
    color: #fff;
}

.cate-menu ul li.current-post-parent a {
    background: #0078d7;
    color: #fff;
}

.cate-menu ul li.current-menu-item:hover a { background: #0063b1; }

.cate-menu ul li.current-category-ancestor:hover a { background: #0063b1; }

.cate-menu ul li.current-post-parent:hover a { background: #0063b1; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - LOOPS */

.loop { margin: 0; }

.loop-single { margin: 0 !important; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - HEADER */

.header {
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    padding: 32px;
    border-bottom: 1px #f0f0f0 solid;
}

.header .header-div { align-self: center; }

.header .header-left {
    width: 100%;
    padding: 0 32px;
}

.header .header-left h1 {
    color: #303030;
    font-size: 200%;
    font-weight: bold;
}

.header .header-left p {
    color: #505050;
    font-size: 110%;
    margin: 8px 0 0 0;
}

.header .header-left .socialmedia-links {
    margin: 16px 0 0 0;
}

.header .header-left .socialmedia-links ul { display: inline-flex; }

.header .header-left .socialmedia-links ul li {
    align-self: center;
    margin: 0 8px 0 0;
}

.header .header-right { width: 60%; }

.header .header-sidearea {
    background: rgba(0, 0, 0, .8);
    color: #e0e0e0;
    padding: 32px 20px;
    text-align: center;
    border-radius: 6px;
}

.header .header-sidearea img {
    width: 100px;
    height: 100px;
    margin: 0 0 8px 0;
    border-radius: 50%;
}

.header .header-sidearea h4 {
    color: #f0f0f0;
    font-size: 120%;
    font-weight: 500;
}

.header .header-sidearea p {
    color: #e0e0e0;
    font-size: 90%;
    margin: 8px 0 0 0;
}

.header .header-sidearea a {
    background: #fafafa;
    color: #0078d7;
    font-size: 90%;
    font-weight: 500;
    display: inline-block;
    padding: 12px 32px;
    margin: 32px 0 0 0;
    border-radius: 6px;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - CONTENT */

.link-row { display: block; }

.link-row:focus .each::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px #89caff solid;
}

.link-row:focus .each { background: #cce8ff; }

.each {
    color: #404040;
    display: grid;
    grid-template-columns: 80px auto 100px;
    align-items: center;
    position: relative;
    padding: 20px 32px;
    transition: 0.1s;
}

.link-row:not(:last-child) .each { border-bottom: 1px #f0f0f0 solid; }

.each:hover { background: #e5f3ff; }

.each .each-thumbnail {
    width: 50px;
    height: 50px;
    align-self: flex-start;
}

.each .each-thumbnail img {
    width: 100%;
    height: 100%;
}

.each .each-item {}

.each .each-item h4 {
    color: #303030;
    font-size: 100%;
    font-weight: 500;
}

.each .each-item span {
    color: #505050;
    font-size: 80%;
    display: block;
    margin: 8px 0 0 0;
}

.each .each-item p {
    color: #505050;
    font-size: 85%;
    display: block;
    margin: 16px 0 0 0;
}

.each .each-alert {
    align-self: center;
    justify-self: flex-end;
}

.each .each-alert label {
    background: #cce8ff;
    color: #0078d7;
    font-size: 80%;
    font-weight: 500;
    display: inline-block;
    padding: 8px 12px;
    opacity: .8;
    border-radius: 6px;
    cursor: pointer;
}

.each .each-alert label.new-alert {
    background: #ffecd5;
    color: #ff8c00;
}

.each .each-alert label.updated-alert {
    background: #ffecd5;
    color: #ff8c00;
}

.each .each-alert label.popular-alert {
    background: #bbfcdd;
    color: #00cc6a;
}

/* PROJECTS CATEGORY CONTENT */

.each-projects {
    display: grid;
    grid-template-columns: 180px auto 100px;
    padding: 16px 32px;
    align-items: center;
}

.each-projects:hover { background: none; }

.each-projects:not(:last-child) { border-bottom: 1px #f0f0f0 solid; }

.each-projects .each-thumbnail {
    overflow: visible;
    position: relative;
    display: flex;
    align-self: center;
    align-items: center;
}

.each-projects .each-thumbnail img {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 0;
    object-fit: cover;
    object-position: center center;
    transform: translateY(-50%);
}

.each-projects .each-thumbnail h4 {
    color: #303030;
    width: 100px;
    font-size: 110%;
    font-weight: 600;
    line-height: 1.2;
    word-break: keep-all;
    display: inline-block;
    margin: 0 0 0 60px;
}

.each-projects .each-item p { color: #505050; }

.each-projects .each-view {
    align-self: center;
    justify-self: flex-end;
}

.each-projects .each-view a {
    background: #0078d7;
    color: #f0f0f0;
    font-size: 80%;
    font-weight: 500;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    transition: .1s;
}

.each-projects .each-view a:hover { background: #0063b1; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - PAGINATE */

.paginate {
    font-size: 0;
    font-weight: 500;
    text-align: center;
    margin: 16px 0 0 0;
    padding: 0 32px;
}

.paginate a {
    color: #0078d7;
    font-size: 12pt;
    display: inline-block;
    text-align: center;
    margin: 0 4px;
}

.paginate a.next {
    float: right;
    margin: 0;
}

.paginate a.prev {
    float: left;
    margin: 0;
}

.paginate a.no-page { color: #d0d0d0; }

.paginate a:hover { text-decoration: underline; }

.paginate span {
    color: #505050;
    font-size: 12pt;
    display: inline-block;
    margin: 0 4px;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - SINGLE CONTENT */

.single-content { padding: 32px; }

.single-content .single-head {
    display: grid;
    grid-template-columns: 132px auto;
    align-items: flex-start;
    padding: 0 0 32px 0;
    border-bottom: 1px #f0f0f0 solid;
}

.page-content .single-head {
    display: block;
    padding: 0 0 32px 0;
    border-bottom: 1px #f0f0f0 solid;
}

.single-content .single-thumbnail {
    width: 100px;
    height: 100px;
}

.single-content .single-thumbnail img {
    width: 100%;
    height: 100%;
}

.single-content .single-item {}

.single-content .single-item h2 {
    color: #303030;
    font-size: 180%;
    font-weight: 600;
}

.single-content .single-item ul {
    color: #505050;
    font-size: 0;
    display: block;
    margin: 10px 0 0 0;
}

.single-content .single-item ul li {
    font-size: 10.5pt;
    font-weight: 400;
    display: inline;
    margin: 0 10px 0 0;
}

.single-content .single-item ul li:not(:last-child)::after {
    color: #d0d0d0;
    content: '/';
    display: inline;
    margin: 0 0 0 10px;
}

.single-content .single-item ul li a {
    color: #505050;
    transition: .1s;
}

.single-content .single-item ul li a:hover { color: #0078d7; }

.single-content .single-item ul li a.wp-edit { color: #0078d7; }

.single-content .single-item ul li a.wp-trash { color: #e81123; }

.single-content .single-item ul li a.wp-edit:hover { text-decoration: underline; }

.single-content .single-item ul li a.wp-trash:hover { text-decoration: underline; }

.single-content .single-item .single-category {
    font-size: 0;
    margin: 8px 0 0 0;
}

.single-content .single-item .single-category a {
    background: #e5f3ff;
    color: #0063b1;
    font-weight: 400;
    font-size: 10.5pt;
    display: inline-block;
    margin: 8px 8px 0 0;
    padding: 4px 8px;
    border-radius: 6px;
    transition: .1s;
}

.single-content .single-item .single-category a:hover { background: #cce8ff; }

.single-content .single-value {
    color: #404040;
    font-size: 100%;
    font-weight: normal;
    line-height: 1.8;
    margin: 32px 0 0 0;
}

.single-content .single-value > * { margin: 32px 0 0 0; }

.single-content .single-value p:not(:first-child) { margin: 32px 0 0 0; }

.single-content .single-value h1 {
    padding: 0 8px 8px 8px;
    border-bottom: 1px #f0f0f0 solid;
}

.single-content .single-value h2 {
    padding: 0 8px 8px 8px;
    border-bottom: 1px #f0f0f0 solid;
}

.single-content .single-value h3 {
    padding: 0 8px 8px 8px;
    border-bottom: 1px #f0f0f0 solid;
}

.single-content .single-value h4 {
    padding: 0 8px 8px 8px;
    border-bottom: 1px #f0f0f0 solid;
}

.single-content .single-value code {
    background: #f0f0f0;
    color: #404040;
    direction: ltr !important;
    padding: 8px;
    display: inline;
    text-align: left !important;
    border: 1px #e0e0e0 solid;
    border-radius: 6px;
    cursor: text;
}

.single-content .single-value .wp-block-code {
    background: #303030;
    direction: ltr !important;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: pre-wrap;
    text-align: left !important;
    position: relative;
    padding: 32px;
    border-radius: 6px;
    cursor: text;
}

.single-content .single-value .wp-block-code code {
    background: #303030;
    color: #fdfdfd;
    display: block;
    padding: 0;
    border: none;
}

.single-content .single-value .wp-block-code::before {
    background: #202020;
    color: #fdfdfd;
    font-weight: 600;
    content: attr(data-class);
    display: block;
    position: static;
    margin: -32px -32px 32px -32px;
    padding: 16px 32px;
    text-transform: uppercase;
    border: 1px #101010 solid;
    border-radius: 6px 6px 0 0;
    cursor: auto;
}

.single-content .single-value .wp-block-quote {
    background: #edee7f;
    color: #202020;
    padding: 32px;
    border-radius: 6px;
}

.single-content .single-value .wp-block-button a {
    font-weight: 500;
    transition: .1s;
}

.single-content .single-value .wp-block-button a:hover { opacity: 0.8; }

.single-content .single-value .wp-block-file {
    background: #303030;
    display: block;
    position: relative;
    padding: 16px 32px;
    border-bottom: 4px #101010 solid;
    border-radius: 6px;
}

.single-content .single-value .wp-block-file a:hover { text-decoration: underline; }

.single-content .single-value .wp-block-file .wp-block-file__button {
    background: #f0f0f0;
    color: #303030;
    font-weight: 500;
    position: absolute;
    top: 50%;
    right: 32px;
    border-radius: 6px;
    transform: translateY(-50%);
}

.single-content .single-value .wp-block-file .wp-block-file__button:hover { text-decoration: none; }

.single-content .single-value iframe { width:100%; }

.single-content .single-value ul li, ol li {
    list-style: disc;
    margin: 0 32px;
}

.single-tags { margin: 25px 0 0 0; }

.single-tags ul {
    color: #0078d7;
    font-size: 85%;
}

.single-tags ul li {
    background: #f0f0f0;
    display: inline-block;
    margin: 8px 8px 0 0;
    padding: 0 0 0 8px;
    border-radius: 6px;
    transition: .1s;
}

.single-tags ul li:hover { background: #fdfdfd; }

.single-tags ul li a {
    display: inline-block;
    padding: 8px 8px 8px 2px;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - AUTHOR BIO IN SINGLE CONTENT */

.author-bio {
    background: rgba(0, 0, 0, .8);
    display: flex;
    padding: 40px;
    margin: 0 32px;
    border-bottom: 4px #000 solid;
    border-radius: 6px;
}

.author-bio .bio-div { width: 100%; }

.author-bio .bio-avatar {
    width: 132px;
    height: 102px;
    margin: 0 32px 0 0;
}

.author-bio .bio-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.author-bio .bio-profile {}

.author-bio .bio-profile h4 {
    color: #fff;
    font-size: 180%;
    font-weight: 600;
}

.author-bio .bio-profile p {
    color: #f0f0f0;
    font-size: 110%;
    margin: 8px 0 0 0;
}

.author-bio .bio-profile .bio-links { margin: 32px 0 0 0; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - COMMENTS */

/* COMMENTS FORM */

.comment-respond {
    color: #505050;
    margin: 32px 0 0 0;
    padding: 0 32px;
}

.comment-respond .comment-reply-title {
    color: #303030;
    font-size: 160%;
    font-weight: 600;
}

.comment-respond .comment-reply-title a:hover { text-decoration: underline; }

.comment-respond .comment-reply-title a {
    font-size: 80%;
}

.comment-respond .comment-reply-title small a { color: #e81123; }

.comment-respond .comment-form { margin: 16px 0 0 0; }

.comment-respond .comment-form .comment-form-comment { margin: 16px 0 0 0; }

.comment-respond .comment-form input:focus { background: #fff; }

.comment-respond .comment-form .comment-fields {
    display: flex;
    justify-content: space-between;
    margin: 16px 0 0 0;
}

.comment-respond .comment-form .comment-fields input { width: 49%; }

.comment-respond .comment-form input.comment-url {
    width: 100%;
    margin: 16px 0 0 0;
}

.comment-respond .comment-form textarea:hover { background: #fafafa; }

.comment-respond .comment-form textarea:focus { background: #fff; }

.comment-respond .comment-form .comment-form-cookies { margin: 16px 0 0 0; }

.comment-respond .comment-form .comment-form-cookies .comment-cookies { margin: 0 8px 0 0; }

.comment-respond .comment-form .comment-form-cookies label { cursor: pointer; }

.comment-respond .comment-form .comment-form-cookies a:hover { text-decoration: underline; }

.comment-respond .comment-form .form-submit { text-align: right; }

/* COMMENTS LIST */

.comments-list {
    background: #fafafa;
    margin: 32px 0 0 0;
    padding: 0 32px;
    border-top: 1px #e0e0e0 solid;
    border-bottom: 1px #f0f0f0 solid;
}

.comments-list ul {}

.comments-list ul li {
    display: grid;
    grid-template-columns: 94px auto;
    margin: 32px 0 0 0;
}

.comments-list ul li .comment-picture {}

.comments-list ul li .comment-picture img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.comments-list ul li .comment-body {
    background: #f0f0f0;
    padding: 16px;
    border: 1px #e0e0e0 solid;
    border-radius: 6px;
}

.comments-list ul li .comment-body h4 {
    color: #0078d7;
    font-size: 110%;
    font-weight: 600;
}

.comments-list ul li .comment-body p {
    color: #505050;
    font-size: 100%;
    font-weight: 400;
    line-height: 1.6;
    margin: 8px 0 0 0;
}

.comments-list ul li .comment-body .comment-foot {
    color: #909090;
    font-size: 80%;
    font-style: italic;
    text-align: right;
}

.comments-list ul li .comment-body .comment-foot span {}

.comments-list ul li .comment-body .comment-foot .comment-reply-link {
    background: #e0e0e0;
    color: #505050;
    font-weight: 500;
    font-style: normal;
    display: inline-block;
    margin: 0 0 0 8px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: .1s;
}

.comments-list ul li .comment-body .comment-foot .comment-reply-link:hover { background: #d0d0d0; }

.comments-list ul.children { padding: 0 0 0 94px; }

.comments-list ul.children li { margin: 16px 0 0 0; }

.comments-list ul.children ul.children { padding: 0; }

.comments-list .comments-page {
    font-size: 0;
    text-align: center;
    margin: 32px 0 0 0;
}

.comments-list .comments-page a {
    font-size: 13pt;
    margin: 0 4px;
}

.comments-list .comments-page a.next { float: right; }

.comments-list .comments-page a.prev { float: left; }

.comments-list .comments-page span {
    font-size: 13pt;
    font-weight: 500;
    margin: 0 4px;
}

.bypostauthor .comment-body {
    background: #e5f3ff !important;
    font-weight: 500;
}

.bypostauthor .comment-body h4 { color: #0063b1 !important; }

.bypostauthor .comment-body p { color: #303030 !important; }

.bypostauthor .comment-body .comment-foot .comment-reply-link { background: #cce8ff !important; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - CUSTOM WIDGETS */

.widget {}

.widget .widget-title {}

/* DISPLAY CONTENT */

.widget-display-content {
    margin: 32px 0 0 0;
    padding: 0 16px;
}

.display-content-widget {}

.display-content-widget-title {
    color: #303030;
    font-size: 140%;
    font-weight: 500;
    padding: 0 16px;
    margin: 0 0 20px 0;
}

.display-content-widget-title .display-content-widget-view-more {
    background: #f0f0f0;
    color: #505050;
    font-size: 11pt;
    font-weight: 400;
    display: inline;
    margin: 0 0 0 32px;
    padding: 4px 12px;
    border-radius: 6px;
    transition: .1s;
}

.display-content-widget-title .display-content-widget-view-more:hover {
    background: #f0f0f0;
    color: #0078d7;
}

.display-content-widget .each {
    grid-template-columns: 50px auto 50px;
    padding: 8px 16px;
    break-inside: avoid-column;
}

.display-content-widget .each .each-thumbnail {
    width: 30px;
    height: 30px;
}

.display-content-widget .each .each-item h4 {
    color: #505050;
    font-size: 90%;
}

.display-content-widget .each .each-item span { display: none !important; }

.display-content-widget .each .each-item p { display: none !important; }

.display-content-widget .each .each-alert { display: none !important; }

.display-content-widget .each .each-alert label {
    font-size: 70%;
    padding: 4px 8px;
}

.display-content-widget .each-projects { grid-template-columns: 180px auto 100px; }

.display-content-widget .each-projects .each-thumbnail {
    width: 40px;
    height: 40px;
    overflow: visible;
    position: relative;
    display: flex;
    align-self: center;
    align-items: center;
}

.display-content-widget .each-projects .each-item p { display: block !important; }

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - PAGE TEMPLATE */

.page-template {
    margin: 32px 0 0 0;
    padding: 0 32px;
}

.page-template h2 {
    font-size: 180%;
    font-weight: 600;
}

.page-template p {
    font-size: 100%;
    margin: 16px 0 0 0;
}

/* CATEGORIES */

.page-category {
    padding: 32px;
    column-count: 2;
    column-gap: 16px;
    column-width: 50%;
}

.page-category li {
    background: #fafafa;
    color: #0078d7;
    font-size: 110%;
    font-weight: 600;
    display: block;
    margin: 0 0 16px 0;
    padding: 16px;
    border: 1px #f0f0f0 solid;
    border-radius: 6px;
    break-inside: avoid !important;
}

.page-category li a {
    color: #303030;
    display: inline-block;
    padding: 4px 16px 4px 0;
}

.page-category li ul li {
    background: none;
    font-size: 90%;
    font-weight: 500;
    display: list-item;
    margin: 0 0 0 32px;
    padding: 0;
    list-style: disc;
    border: none;
}

.page-category li ul li:first-child { margin: 4px 0 0 32px; }

.page-archives li ul li:first-child { margin: 0 0 0 32px; }

.page-category li ul li a { color: #0078d7 }

.page-category li ul li a:hover { text-decoration: underline; }

/* ARCHIVES */

.page-archives { column-count: 2; }

/* HASHTAGS */

.page-tags { padding: 32px; }

.page-tags .tags-div {
    padding: 32px;
    border-radius: 6px;
}

.page-tags .tags-div h2 {
    color: #303030;
    font-size: 140%;
    font-weight: 600;
    display: block;
    padding: 0 0 16px 0;
}

.page-tags .tags-div a {
    background: #e0e0e0;
    color: #404040;
    font-weight: 400;
    display: inline-block;
    padding: 5px 8px;
    margin: 8px 8px 0 0;
    border-radius: 6px;
    transition: 0.1s;
}

.page-tags .tags-div a:hover { opacity: 0.8; }

.page-tags .tags-div a span {
    color: #909090;
    font-size: 80%;
    vertical-align: baseline;
}

.page-tags .tags-popular { background: #bbfcdd; }

.page-tags .tags-popular a {
    background: #00cc6a;
    color: #fff;
    font-weight: 400;
    border: none;
}

.page-tags .tags-popular a span {
    color: #f0f0f0;
    font-weight: 400;
}

.page-tags .tags-all {
    background: #fafafa;
    margin: 32px 0 0 0;
    border: 1px #f0f0f0 solid;
}

/* COMMENT * * * * * * * * * * * * * * * * STYLE CUT - FOOTER */

.footer {
    background: #fdfdfd;
    width: 800px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 64px;
    border: 1px #e0e0e0 solid;
    border-top: none;
    border-bottom: none;
    box-shadow: 0 2px 2px #e0e0e0;
}

.footer .foot-menu { align-self: center; }

.footer .foot-menu ul { font-size: 0; }

.footer .foot-menu ul li {
    font-size: 13pt;
    display: inline;
    margin: 0 16px 0 0;
}

.footer .foot-menu ul li a {
    color: #505050;
    font-size: 90%;
    transition: .1s;
}

.footer .foot-menu ul li a:hover { color: #0078d7; }

.footer .foot-copyright {
    color: #505050;
    font-size: 90%;
    margin: 16px 0 0 0;
}

.footer .foot-copyright a { color: #505050; }

.footer .foot-logos { align-self: center; }

.footer .foot-logos ul {}

.footer .foot-logos ul li {
    display: inline;
    margin: 0 0 0 8px;
}

.footer .foot-logos ul li.trust-logo { margin: 0 0 0 16px; }

.footer .foot-logos ul li img {
    width: 32px;
    height: 32px;
}

/* THE FUCKING END ;) */