@import "vs2015.min.css";
@media screen and (max-width: 767px) {
  ol.gallery {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    list-style: none;
    justify-items: center;
    padding: 0 20px 100px 20px;
  }
  ol.gallery li.gallery-item {
    background: #fdf7f8;
    border-radius: 15px;
    box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 300px;
  }
  ol.gallery li.gallery-item:after {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  ol.gallery li.gallery-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
  }
  ol.gallery li.gallery-item:hover:after {
    opacity: 1;
  }
  ol.gallery li.gallery-item:hover::after {
    opacity: 1;
  }
  ol.gallery li.gallery-item figure {
    margin: 0;
    grid-gap: 1.5rem;
    grid-template-columns: 150px 1fr;
    align-items: center;
  }
  ol.gallery li.gallery-item figure .arrow {
    display: none;
  }
  ol.gallery li.gallery-item figure img {
    border-radius: 15px;
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
  }
  ol.gallery li.gallery-item figure figcaption {
    padding: 0.8rem;
  }
  ol.gallery li.gallery-item figure figcaption h3 {
    margin: 0.2em auto;
    font-weight: bold;
    color: #ce4a5c;
  }
  ol.gallery li.gallery-item figure figcaption p {
    margin: 0.5em 0;
  }
  ol.gallery li.gallery-item figure figcaption p.long-description {
    display: none;
  }
  ol.gallery li.gallery-item figure figcaption p.work-description {
    white-space: pre-wrap;
  }
  ol.gallery li.gallery-item figure figcaption .pills .pill {
    display: inline-block;
    padding: 0.2em 0.5em;
    margin: 0.2em;
    border-radius: 0.2em;
    color: #fdf7f8;
    font-size: 0.8em;
  }
  ol.gallery li.gallery-item figure figcaption .buttons {
    padding: 5px 0 0 0;
  }
  ol.gallery li.gallery-item figure figcaption .buttons .popup-button {
    display: none !important;
  }
  ol.gallery li.gallery-item figure figcaption .buttons a.button {
    display: inline-block;
    padding: 0.5em 0.5em;
    margin: 0.2em;
    border-radius: 0.2em;
    background-color: #ce4a5c;
    color: #fdf7f8;
    font-size: 0.8em;
    text-decoration: none;
  }
  ol.gallery li.gallery-item figure figcaption .buttons a.button:hover {
    background-color: #b43143;
  }
}
@media screen and (min-width: 768px) {
  ol.gallery {
    list-style: none;
    justify-items: center;
    padding: 0 20px 100px 20px;
  }
  ol.gallery li.gallery-item {
    background: #fdf7f8;
    border-radius: 15px;
    box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 1200px;
    width: 100%;
    margin: 1.5em auto;
  }
  ol.gallery li.gallery-item:after {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  ol.gallery li.gallery-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
  }
  ol.gallery li.gallery-item:hover:after {
    opacity: 1;
  }
  ol.gallery li.gallery-item:hover::after {
    opacity: 1;
  }
  ol.gallery li.gallery-item figure {
    margin: 0;
    align-items: center;
    display: flex;
    height: 285px;
  }
  ol.gallery li.gallery-item figure .thumbnail-container {
    width: 450px;
    height: 100%;
    position: relative;
  }
  ol.gallery li.gallery-item figure .thumbnail-container .dots {
    position: absolute;
    bottom: 10px;
    z-index: 10;
    display: flex;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    padding: 0.3em;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
  }
  ol.gallery li.gallery-item figure .thumbnail-container .dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    margin: 0 5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid white;
  }
  ol.gallery li.gallery-item figure .thumbnail-container .dots .dot:hover {
    cursor: pointer;
    background-color: #ce4a5c;
  }
  ol.gallery li.gallery-item figure .thumbnail-container .dots .dot.active {
    background-color: #ce4a5c;
  }
  ol.gallery li.gallery-item figure .thumbnail-container .arrow {
    position: absolute;
    bottom: 45%;
    color: white;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 25%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  ol.gallery li.gallery-item figure .thumbnail-container .arrow.right-arrow {
    right: 10px;
    text-shadow: -2px 1px 1px black;
  }
  ol.gallery li.gallery-item figure .thumbnail-container .arrow.left-arrow {
    left: 10px;
    text-shadow: 2px 1px 1px black;
  }
  ol.gallery li.gallery-item figure .thumbnail-container .arrow:hover {
    cursor: pointer;
    background-color: rgba(206, 74, 92, 0.75);
  }
  ol.gallery li.gallery-item figure .thumbnail-container .arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  ol.gallery li.gallery-item figure .thumbnail-container img {
    border-radius: 15px;
    display: block;
    object-fit: cover;
    height: 100%;
    max-width: 450px;
  }
  ol.gallery li.gallery-item figure figcaption {
    height: 100%;
    padding: 0.6rem 1rem;
    position: relative;
    box-sizing: border-box;
  }
  ol.gallery li.gallery-item figure figcaption p, ol.gallery li.gallery-item figure figcaption h3 {
    margin: 0.5em 0;
  }
  ol.gallery li.gallery-item figure figcaption h3 {
    margin-top: 0;
    font-weight: bold;
    color: #ce4a5c;
  }
  ol.gallery li.gallery-item figure figcaption p.short-description {
    display: none;
  }
  ol.gallery li.gallery-item figure figcaption p.long-description {
    white-space: pre-wrap;
  }
  ol.gallery li.gallery-item figure figcaption p.work-description {
    white-space: pre-wrap;
  }
  ol.gallery li.gallery-item figure figcaption .toolbar {
    position: absolute;
    bottom: 0;
    padding-bottom: inherit;
    width: auto;
    right: 15px;
    left: 15px;
  }
  ol.gallery li.gallery-item figure figcaption .toolbar .pills .pill {
    display: inline-block;
    padding: 0.2em 0.5em;
    margin: 0.2em;
    border-radius: 0.2em;
    color: #fdf7f8;
    font-size: 0.8em;
  }
  ol.gallery li.gallery-item figure figcaption .toolbar .buttons {
    padding: 5px 0 0 0;
  }
  ol.gallery#work-gallery li.gallery-item figure {
    height: auto;
  }
  ol.gallery#work-gallery li.gallery-item figure figcaption {
    height: auto;
  }
}
.italics {
  font-style: italic;
}

.accent {
  color: #ce4a5c;
}

.d-none {
  display: none !important;
}

.force-align-items-left {
  align-items: flex-start !important;
  text-align: left !important;
}

.no-margin {
  margin: 0 !important;
}

a {
  color: #A63A50;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover, a:focus {
  color: #8B2E42;
  text-decoration-color: #8B2E42;
}
a:active {
  color: #6E2233;
}
a:visited {
  color: #6D4C5B;
}

html {
  height: 100%;
  scrollbar-gutter: stable both-edges;
}

body {
  font: 17px "Source Sans Pro", Helvetica, Arial, sans-serif;
  background-color: #ffe7e7;
  color: #59294f;
  margin: 2em 0;
}
body h1 {
  font-size: 2em;
  font-weight: bold;
  margin: 0;
}
body h1 .pronouns {
  font-size: 0.5em;
  font-weight: normal;
  opacity: 65%;
}
body h1.welcome {
  margin-top: 0.5em;
  line-height: 0.75;
}
body h2, body h3, body h4, body h5, body h6 {
  color: #7c4170;
}
body #page-projects {
  max-width: 90%;
  margin: 0 auto;
}
body .skill-page, body .skill-page-wide {
  max-width: 600px;
  margin: 0 auto 2em auto;
  padding: 0 20px 20px 20px;
}
body .skill-page-wide {
  max-width: 1000px;
}
body .skill-page pre, body .skill-page-wide pre {
  overflow-x: auto;
  padding: 0 1em;
}
body .skill-page img, body .skill-page-wide img, body .skill-page video, body .skill-page-wide video {
  max-width: 100%;
}

#banner, #banner-fill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
#banner-fill {
  width: 100%;
  max-width: 100%;
}
#banner .social-icons, #banner-fill .social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#banner .social-icons .icon, #banner-fill .social-icons .icon {
  padding: 10px;
  margin: 10px;
  color: #59294f;
}
#banner .social-icons .icon:hover, #banner-fill .social-icons .icon:hover {
  color: #ce4a5c;
}
#banner hr, #banner-fill hr {
  width: 100%;
  margin: 1em 0;
}

.navbar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
.navbar a {
  color: #7c4170;
  text-decoration: none;
  padding: 10px;
  cursor: pointer;
}
.navbar a:hover {
  text-decoration: underline;
}
.navbar a.active {
  font-weight: bold;
  color: #ce4a5c;
}

.actual-language {
  color: #7c4170;
}

.color-legend {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 1rem;
}
.color-legend .color-legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0.5rem;
}
.color-legend .color-legend-item .color-legend-item-color {
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
}
.color-legend .color-legend-item .color-legend-item-text {
  font-size: 0.8rem;
}

.icon-legend {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.icon-legend .icon-legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0.5rem;
}
.icon-legend .icon-legend-item .icon-legend-item-text {
  font-size: 0.8rem;
}
.icon-legend .icon-legend-item .icon-legend-item-text i {
  color: #ce4a5c;
}

a.button, button {
  display: inline-block;
  padding: 0.5em 0.5em;
  margin: 0.2em;
  border-radius: 0.2em;
  background-color: #ce4a5c;
  color: #fdf7f8;
  font-size: 0.8em;
  text-decoration: none;
  min-width: 50px;
  border: none;
}
a.button:hover, button:hover {
  background-color: #b43143;
}
a.button.popup-button, button.popup-button {
  right: 0;
  position: absolute;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.popup.active {
  opacity: 1;
  pointer-events: auto;
}
.popup .popup-content {
  background-color: #ffe7e7;
  padding: 20px;
  width: 95%;
  max-width: 1000px;
  max-height: 80%;
  overflow: auto;
  border-radius: 15px;
}

.color-engine {
  background-color: #41CFD9;
}

.color-language {
  background-color: #A541D9;
}

.color-framework {
  background-color: #546BF0;
}

@media screen and (min-width: 768px) {
  #fork {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    padding: 1em;
    color: #7c4170;
  }
}
@media screen and (max-width: 767px) {
  #fork {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  #home-icon {
    position: fixed;
    left: 0.5em;
    top: 0.5em;
    padding: 1em;
    color: #7c4170;
  }
}
@media screen and (max-width: 1150px) {
  #home-icon {
    display: none;
  }
}

footer {
  text-align: center;
  padding: 0.5em;
  margin: 0;
  color: #7c4170;
}

.blog-gallery-entry a {
  color: inherit;
  text-decoration: none;
}

#page-publications h3 {
  font-weight: normal;
}
#page-publications ol li a figure figcaption p {
  white-space: normal !important;
}
#page-publications ol.gallery li figure {
  height: 100%;
}

#work-gallery .work-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
#work-gallery .work-header .job-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 0.5rem;
  margin-top: 0.1em;
}
#work-gallery .work-header .work-header-text {
  min-width: 0;
}
#work-gallery .work-header .work-header-text h3 {
  margin: 0 0 0.2em 0;
}
#work-gallery .work-header .work-header-text .subtitle {
  margin: 0.25em 0;
}

.subtitle {
  font-size: 0.8em;
  color: #59294f;
  opacity: 80%;
  margin: 0.5em 0;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 95%;
  width: 600px;
  margin: 0 auto;
}
form label {
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #7c4170;
}
form input, form textarea, form select {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 1em;
  border-radius: 5px;
  border: 1px solid #7c4170;
  background-color: #ffe7e7;
  color: #59294f;
}
form input:focus, form textarea:focus, form select:focus {
  border-color: #ce4a5c;
  outline: none;
}

/*# sourceMappingURL=sajber.me.css.map */
