/*
Theme Name: alpaka
Description: A simple WordPress theme.
Author: Alpaka
Text Domain: alpakathemetext





  AAAAAAA    LLL        PPPPPPPP     AAAAAAA   KKK   KKK   AAAAAAA
 AAAAAAAA    LLL        PPPPPPPPP   AAAAAAAA   KKK KKKK   AAAAAAAA
AAA   AAA    LLL        PPP   PPP  AAA   AAA   KKKKKKK   AAA   AAA
AAAAAAAAA    LLL        PPPPPPPPP  AAAAAAAAA   KKKKKKK   AAAAAAAAA
AAAAAAAAA    LLL        PPPPPPPP   AAAAAAAAA   KKKKKKK   AAAAAAAAA
AAA   AAA    LLL        PPP        AAA   AAA   KKK KKK   AAA   AAA
AAA   AAA    LLLLLLLL   PPP        AAA   AAA   KKK  KKK  AAA   AAA
AAA   AAA    LLLLLLLL   PPP        AAA   AAA   KKK   KKK AAA   AAA




/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
/*# sourceMappingURL=normalize.min.css.map */



/********************************************************************
 ********************************************************************
 ********************************************************************
 *
 *  1. BASE VARIABLES
 *  
 ********************************************************************
 ********************************************************************
 ********************************************************************/
:root[data-theme="light"] {
  --header: var(--bg-2);
  --footer: var(--bg-4);
  --link: #0070c9;
  --border: #dadce0;
  --bg: #f8f8f8;
  --bg-2: #fff;
  --bg-3: #eef5fb;
  --bg-4: #f2f2f2;
  --text: #333;
  --text-2: #555;
  --text-3: #777;
}
:root[data-theme="dark"] {
  --header: var(--bg-2);
  --footer: var(--bg-4);
  --bg: #2a2c36;
  --bg-2: #1e2028;
  --bg-3: #13161a;
  --bg-4: #242630;
  --link: #74a7e3;
  --border: #3a4048;
  --text: #e4e6e9;
  --text-2: #ccd1d6;
  --text-3: #b2b8c2;
}

/* *******************************************************************
 * *******************************************************************
 * *******************************************************************
 *
 *  2. MY NORMALIZE
 *  
 * *******************************************************************
 * *******************************************************************
 * *******************************************************************/
*,:after,:before {
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
a {
  color: var(--link);
}
/*
h1 {
  line-height: 36px;
}
h2 {
  line-height: 30px;
}
h3 {
  line-height: 26px;
}
h4 {
  line-height: 22px;
}*/
h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
}
h1,h2,h3,h4,h5,h6,p {
  margin: 1rem 0;
}
textarea,input[type="text"] {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-1);
}
/* table */
table {
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-1);
  overflow: hidden;
}
thead {
  background-color: var(--bg-4);
}
th,td {
  padding: 1rem;
}
th,tbody tr:not(:last-child) td, thead td {
  border-bottom: 1px solid var(--border);
}
th:not(:last-child),td:not(:last-child) {
  border-right: 1px solid var(--border);
}
/* figure */
figure,dd,hr {
  margin: 0;
}
figcaption {
  color: var(--text-2);
  font-size: 0.9rem;
  padding-top: 0.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}
img {
  height: auto;
  max-width: 100%;
  display: block;
}
hr {
  border: 0;
  border-top: 1px solid var(--border);
}
button {
  cursor: pointer;
  border: 0;
}
nav a {
  text-decoration: none;
  color: var(--text);
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}

/* 
=========================
GLOBAL
=========================
*/
#content {
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
}
.site-branding {
  line-height: 1;
  font-size: 1rem;
}

/* 
=========================
HEADER
=========================
*/
#masthead {
  background-color: var(--header);
  height: var(--header-height);
  z-index: 100;
}
@media screen and (min-width: 992px) {
  #masthead nav + .icon-search {
    border-left: 1px solid var(--border);
    margin-left: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* 
=========================
NAV MENU
=========================
*/
#site-navigation {
  margin-left: auto;
}
#site-navigation,#menu-primary-menu,#menu-primary-menu li,#menu-primary-menu li a {
  height: 100%;
}
#menu-primary-menu li {
  position: relative;
}
#menu-primary-menu li a {
  font-size: 1rem;
}
#menu-primary-menu > li > a {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
}
#menu-primary-menu li:hover a,#menu-primary-menu > .current-menu-item a {
  color: var(--link) !important;
}
/* MENU BADGE */
header .menu-top > a:before {
  content: "Top";
  background-color: #cee8ff;
}
header .menu-new > a::before {
  content: "New";
  background-color: #ceffdb;
}
header .menu-new > a:before,header .menu-top > a:before {
  position: absolute;
  font-size: 12.5px;
  line-height: 1;
  padding: 2px 2.5px;
  font-weight: 600;
  border-radius: 4px;
  color: #444;
}
@media screen and (min-width: 992px) {
  header .menu-new > a:before,header .menu-top > a:before {
    top: calc(var(--header-height) / 2 - 1.5em - 8px);
    right: 4px;
  }
	#menu-primary-menu li:hover:before,
	#menu-primary-menu > .current-menu-item:before {
	  border-bottom: 0.1rem solid var(--link);
	  bottom: 1rem;
	  content: "";
	  position: absolute;
	  width: 100%;
	}
}
@media screen and (max-width: 991px) {
  #site-navigation ul {
    display: none;
  }
  .menu-toggle.hidden {
    display: block;
  }
  /* is-active (phone) */
  #site-navigation.is-active ul {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: -1rem;
    right: -1rem;
    background: var(--bg-3);
    height: auto;
    padding: 1rem;
  }
  #site-navigation.is-active ul li {
    position: relative;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  #site-navigation.is-active ul li:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  #site-navigation.is-active .menu-new > a:before,#site-navigation.is-active .menu-top > a:before {
    right: 0;
  }
}

/*
=========================
SUBMENU
=========================
*/
header ul.sub-menu {
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}

/* 
=========================
SITE FOOTER
=========================
*/
#colophon {
  background-color: var(--footer);
}
#colophon ul.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 15px;
}
#colophon ul.menu li a {
  color: var(--text-2);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
}

/* 
=========================
SITE SIDEBAR
=========================
*/
#secondary {
  font-size: 15px;
}
#secondary > div + div {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 1200px) {
  .active-sidebar-1 .site-content-row {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) 300px;
    gap: 3rem;
  }
}

/* 
=========================
LOOP
=========================
*/
/* ARCHIVE TEMPLATE */
.archive-template p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* LOOP */
ul.page-numbers {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* 
=========================
SINGLE POST
=========================
*/
.header-tags-links,.header-tags-links a {
  color: var(--text-2);
}
.header-tags-links a {
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  .single h1 {
    font-size: 3rem;
  }
}

/* 
=========================
POST COMMENTS
=========================
*/
#commentform.comments-area {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
#comments {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}
#comments ol {
  list-style-type: none;
}

/* *******************************************************************
 * *******************************************************************
 * *******************************************************************
 *
 *  4. Wordpress
 *  
 * *******************************************************************
 * *******************************************************************
 * *******************************************************************/
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: calc(var(--site-width) - 2rem);
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 2rem;
  margin-left: 2rem;
}
.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: auto;
}
/* IS-... */
.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.is-layout-grid {
  display: grid;
  gap: 1rem;
}
.is-position-sticky {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0);
}
.is-content-justification-center {
  justify-content: center;
}
/* HAS-... */
.has-text-align-center {
  text-align: center;
}
.has-background {
  padding: 1rem;
}
.has-background > div > *:first-child {
  margin-top: 0;
}
.has-background > div > *:last-child {
  margin-bottom: 0 !important;
}
.has-global-padding {
  padding-left: 1rem;
  padding-right: 1rem;
}
/* WP-BLOCK-... */
.wp-block-table {
  overflow-x: scroll;
}
.wp-block-columns.is-layout-flex {
  gap: 1rem;
}
.wp-block-columns {
  align-items: normal !important;
}
.wp-block-button__link,.wp-block-separator {
  border: 0;
}
.wp-block-buttons {
  margin-top: 1rem;
}
.wp-block-button__link {
  background-color: var(--link);
  padding: 0.5625rem 0.5rem;
  color: var(--bg);
  text-decoration: none;
  border-radius: var(--border-radius-1);
  display: block;
  text-align: center;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: var(--link);
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--border);
}
.wp-block-separator {
  border-top: 1px solid var(--border);
}
.wp-block-post-template img {
  border-radius: var(--border-radius-1);
}
.wp-block-post-template a {
  text-decoration: none;
  color: var(--text);
}
/* COLUMNS */
@media screen and (min-width: 480px) {
  .columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columns-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
}

/* *******************************************************************
 * *******************************************************************
 * *******************************************************************
 *
 *  5. MY CLASSES
 *  
 * *******************************************************************
 * *******************************************************************
 * *******************************************************************/
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.box-100 {
  width: 100%;
}
.height-100 {
  height: 100%;
}
.no-decoration {
  text-decoration: none;
}
.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
/* TEXT */
.big {
  font-size: 1.125em;
}
.uppercase {
  text-transform: uppercase;
}
.strong {
  font-weight: 600 !important;
}
.smallest {
  font-size: 13px;
}
.light {
  font-weight: 300;
}
.text-muted {
  font-size: 15px;
  color: var(--text-2);
}
.text-muted-2 {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 400;
}
/* FLEX */
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-between {
  justify-content: space-between;
}
.align-between {
  align-content: space-between;
}
.layout-column {
  flex-direction: column;
  display: flex;
}
.align-center {
  align-items: center;
}
.flex-1 {
  flex: 1;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 3rem !important;
}
/* BORDERS */
.hidden {
  display: none;
}
.border {
  border: 1px solid var(--border);
}
.border-top {
  border-top: 1px solid var(--border);
}
.border-bottom {
  border-bottom: 1px solid var(--border);
}
.border-radius-1 {
  border-radius: var(--border-radius-1);
}
/* PADDINGS AND MARGINS */
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.pt-0 {
  padding-top: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.pt-3 {
  padding-top: 1rem;
}
.pb-3 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
/* COLORS */
.bg-color-1 {
  background: var(--bg) !important;
}
.bg-color-2 {
  background: var(--bg-2);
}
.bg-color-3 {
  background: var(--bg-3);
}
.bg-color-4 {
  background: var(--bg-4);
}
.bg-transparent {
  background: transparent;
}
.text-color,.text-color a {
  color: var(--text) !important;
}
.text-color-2 {
  color: var(--text-2) !important;
}
.text-color-3 {
  color: var(--text-3) !important;
}