@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

:root {
  --uni-min: 280px;

  --salon-wall: clamp(280px,60vw,1400px);
  --gutter-width: calc(var(--salon-wall) / 50);

  --nav-height: calc(var(--salon-wall) / 15);
  --dropdown-height: calc(var(--nav-height) * 1.5);

  --post-wall: clamp(280px,80vw,1400px);
  --content-width: calc(var(--post-wall) * 0.8);
  --hero-height: 66vh;

  --full-wall: var(--salon-wall);
  --half-wall: calc((var(--salon-wall) / 2) - var(--gutter-width));
  --third-wall: calc((var(--salon-wall) / 3) - (var(--gutter-width)*0.66));
  --quarter-wall: calc((var(--salon-wall) / 4) - (var(--gutter-width)*0.75));

  --prime-em: clamp(16px, 1.5vw, 28px);
  --title-big: 1.75em;
  --title-med: 1.25em;
  --title-small: 1em;

  --prime-color: rgb(72,72,72);
  --flux-red: indianred;
  --flux-highlight: rgba(205,92,92,0.6);
  --form-blue: darkcyan;
  --form-highlight: rgba(0,139,139,0.6);
  --text-yellow: gold;
  --text-highlight: rgba(255,215,0,0.6);
  --rando-color: orchid;
  --cat-color: var(--prime-color);

}

@media only screen and (max-width: 768px) {
  :root{
    --salon-wall: clamp(280px,80vw,1400px);
    --content-width: var(--post-wall);
  }
}

@media only screen and (max-width: 480px) {
  :root{
  --salon-wall: clamp(280px,100vw,1400px);
  --post-wall: var(--salon-wall);
  --hero-height: 33vh;
  }
}



body {
  font-size: var(--prime-em);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--prime-color);
}

#wrapper {
  position: absolute;
  width: var(--salon-wall);
  height: auto;
  top: 0px;
  left: calc((100vw - var(--salon-wall)) / 2);
}

@media only screen and (max-width: 480px) {
  .wrapper{
    left: 0px;
  }
}

/*BEGIN BUTTON STYLING*/

/*start generic button styling*/
button {
  /*width: 10vw;*/
  text-align: left;
  font-size: 1.25em;
  font-weight: 500;
  color: var(--prime-color);
  height: auto;
  border: none;
  outline: none;
  background: none;
}

button:focus {
  outline: none;
}

button.selected {
  outline: none;
}
/*end generic button styling*/


/*start top-buton styling.*/
button.main-menu {
  margin-right: 2em;
}

button.main-menu.selected:hover{
  text-decoration: underline;
}

/*start category specific top-button styling*/

/*flux button styling starts here*/
button.flux:hover {
  color: var(--flux-red);
}

button.flux.selected {
  color: var(--flux-red);
}
/*end flux button styling*/

/*start form button styling*/
button.form:hover {
  color: var(--form-blue);
}

button.form.selected {
  color: var(--form-blue);
}
/*end form button styling*/

/*start text button styling*/
button.text:hover {
  color: var(--text-yellow);
}
button.text.selected {
  color: var(--text-yellow);
}
/*end text button styling*/

button.utility:hover{
  text-decoration: underline;
}
/*end top-button styling*/


/*beging main dropdown button styling*/
.drop-button{
  width: 100%;
  height: var(--dropdown-height);
  font-size: 1.25em;
  color: white;
  flex-grow: 1;
  padding-left: : .25em;
}

/*start category specific main dropdown button styling*/
.flux.main-menu.drop-button:focus{
  color: white;
  background-color: var(--flux-red);
}

.flux.main-menu.drop-button:hover{
  color: white;
  background-color: var(--flux-red);
  text-decoration: underline;
}

.form.main-menu.drop-button:focus{
  color: white;
  background-color: var(--form-blue);}

.form.main-menu.drop-button:hover{
  color: white;
  background-color: var(--form-blue);
  text-decoration: underline;
}

.text.main-menu.drop-button:focus{
  color: var(--prime-color);
  background-color: var(--text-yellow);
}

.text.main-menu.drop-button:hover{
  color: var(--prime-color);
  background-color: var(--text-yellow);
  text-decoration: underline;
}


.flux.sub.drop-button:focus{
  background-color: white;
  color: var(--flux-red);
}

.flux.sub.drop-button:hover{
  background-color: white;
  color: var(--flux-red);
  text-decoration: underline;
}

.form.sub.drop-button:focus{
  background-color: white;
  color: var(--form-blue);}

.form.sub.drop-button:hover{
  background-color: white;
  color: var(--form-blue);
  text-decoration: underline;
}

.text.sub.drop-button{
  color: var(--prime-color);
}
.text.sub.drop-button:focus{
  color: var(--prime-color);
  background-color: white;
}

.text.sub.drop-button:hover{
  color: var(--prime-color);
  background-color: white;
  text-decoration: underline;
  text-decoration-color: var(--text-yellow);
}
/* end main dropdown button styling*/

/*begin sub-menu button styling*/
button.sub-button {
  width: auto;
  height: var(--nav-height);
  padding-left: var(--gutter-width);
  padding-right: var(--gutter-width);
  text-align: center;
  outline: none;
  color: white;
  font-size: 1.25em;
  margin-right: var(--gutter-width);
}

button.sub-button:hover {
  color: white;
  text-decoration: underline;
}

button.sub-button:focus {
  background-color: white;
}

button.text.sub-button{
  color: var(--prime-color);
}

button.flux.sub-button:focus {
  color: var(--flux-red);
}

button.form.sub-button:focus {
  color: var(--form-blue);
}

button.text.sub-button:focus {
  text-decoration-color: var(--text-yellow);
}
/*end sub-menu button styling*/

/*END BUTTON STYLING*/


/*BEGIN NAVIGATION STYLING*/
#nav-container {
  position: fixed;
  width: var(--salon-wall);
  height: auto;
  top:0px;
  /*min-width: var(--uni-min);*/
  /*left: 5vw;*/
  /*padding: var(--gutter-width);*/
  z-index: 9;
}


#main-menu {
  position: absolute;
  width: 100%;
  height:calc(var(--nav-height) + var(--gutter-width));
  /*top: 0.75vw;*/
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  background-color: white;
}

#dropdown-wrapper{
  display: none;
  position: absolute;
  width: 100%;
  height:auto;
  z-index: 5;
}

#minibar{
  width: 100%;
  height: var(--dropdown-height);
  background-color: var(--prime-color);
  transition-duration: 0.5s;
  border-bottom: var(--gutter-width) solid white;
}

/*begin dropdown icon styling*/
#dropdown-icon{
  position: absolute;
  width: var(--dropdown-height);
  height: var(--dropdown-height);
  left: calc((100% - var(--dropdown-height)) / 2);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  z-index: 10;
}

#dropdown-icon.active{
  left: 0px;
}

#dropdown-icon.text > .line{
  background: var(--prime-color);
}

.line {
  position: absolute;
  display: block;
  width: var(--dropdown-height);
  height: 12%;
  top: 48%;
  color: transparent;
  background: white;
}

.line:focus{
  outline: none;
}

#line-1{
  transform-origin: right center;
  transition-duration: 0.5s;
  transform: translate(-46%,140%) rotate(45deg) scale(0.6,1.0);
}

#line-1.active{
  transform: translate(-30%,140%) rotate(45deg) scale(0.6,1.0);
}

#line-1.back{
  transform: translate(-35%,240%) rotate(45deg) scale(0.5,1.0);
}

#line-2{
  transform-origin: left center;
  transition-duration: 0.5s;
  transform: translate(46%,140%) rotate(315deg) scale(0.6,1.0);
}

#line-2.active{
  transform: translate(30%,140%) rotate(315deg) scale(0.6,1.0);
}

#line-2.back{
  transform: translate(30%,10%) rotate(315deg) scale(0.5,1.0);
}
/*end dropdown icon styling*/

/*begin dropdown label styling*/
.label{
  position: absolute;
  width: 100%;
  height: var(--dropdown-height);

  font-size: 1.5em;
  font-weight: 500;

  display: none;
}

.label.active{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flux.label{
  color: white;
  background-color: var(--flux-red);
}

.form.label{
  color: white;
  background-color: var(--form-blue);
}

.text.label{
  color: var(--prime-color);
  background-color: var(--text-yellow);
}
/*end dropdown label styling*/

/*begin dropdown menu styling*/

#dropdown-screen{
  position: absolute;
  width: 100%;
  height: 0px;
  background-color: white;
}

#dropdown-screen.active{
  height: calc(var(--quarter-wall) + (var(--gutter-width) * 2));
  transition-duration: 0.5s;
}

#main-dropdown-menu{
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition-duration: 0.5s;
  background-color: var(--prime-color);
}

#main-dropdown-menu.active{
  height: calc(var(--quarter-wall) + var(--gutter-width));
  transition-duration: 0.5s;
}

.dropdown{
  position: absolute;
  width: 100%;
  height: 0px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  transition-duration: 0.5s;
}

.dropdown.active{

  height: calc(var(--quarter-wall) + var(--gutter-width));
  transition-duration: 0.5s;
}

.flux.dropdown{
  background-color: var(--flux-red);
}

.form.dropdown{
  background-color: var(--form-blue);
}

.text.dropdown{
  background-color: var(--text-yellow);
}

#sub-menus{
  position: relative;
  width: var(--salon-wall);
  height: auto;
  /*top: 1.5vw;*/
}

.sub-menu {
  position: absolute;
  width:var(--salon-wall);
  height: calc(var(--nav-height) - 0.1vw);

  display: flex;
  justify-content: flex-start;
  align-items: center;

  z-index: 3;
  transform: translateY(0px);
  transition-duration: 0.5s;
}

.flux.sub-menu{
  background-color: var(--flux-red);
}

.form.sub-menu{
  background-color: var(--form-blue);
}

.text.sub-menu{
  background-color: var(--text-yellow);
}

.show {
  transform: translateY(calc(var(--nav-height) + var(--gutter-width)));
  transition-duration: 0.5s;

}

/*begin nav-spacer styling*/
#nav-spacer{
  position: relative;
  width: var(--salon-wall);
  height: calc(var(--nav-height) + var(--gutter-width));
  transition-duration: 0.5s;
}

#nav-spacer.extended-fs{
  height:calc((var(--nav-height) + var(--gutter-width)) * 2);
  transition-duration: 0.5s;
}
/*end nav-spacer styling*/

@media only screen and (max-width: 480px) {

  #main-menu{
    display: none;
  }

  #sub-menus{
    display: none;
  }

  #nav-spacer.extended-fs{
    height: calc(var(--nav-height) + var(--gutter-width));
    z-index: 5;
  }

  #dropdown-wrapper{
      display: inline-block;
  }
}
/*END NAVIATION STYLING*/


/*BEGIN MONOGRAM STYLING*/
#monogram-holder{
  position: absolute;
  width: var(--quarter-wall);
  height: var(--quarter-wall);
  top: 0;
  z-index:3;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media only screen and (max-width: 768px) {
    #monogram-holder {
      width: var(--third-wall);
      height: var(--third-wall);
    }
}


@media only screen and (max-width: 480px) {
    #monogram-holder {
      position: relative;
      width: var(--quarter-wall);
      height: var(--quarter-wall);
      /*width: var(--half-wall);
      height: var(--half-wall);
      min-width: 70px;
      min-height: 70px;
      left: calc((var(--salon-wall) - var(--half-wall)) * 0.5);*/
      left:calc((var(--salon-wall) - var(--quarter-wall)) * 0.5);
    }
}


/*
@media only screen and (max-width: 280px) {
    .monogram-holder {
      width: 140px;
      height: 140px;
      left: 70px;
    }
}
*/
#monogram-canvas {
  width: 100%;
  height: 100%;
}

#monogram-canvas.hide{
  display: none;
}

#static-monogram {
  width: 100%;
  height: 100%;
}


/*END MONOGRAM STYLING*/


/*BEGIN SALON STYLING*/
#salon {
  position: relative;
  width: 100%;
  height: auto;
  top: var(--gutter-width);
}

@media only screen and (max-width: 480px) {
    .salon {
      top: calc(var(--dropdown-height) * 0.5);
    }
}

.gutter-sizer {
  width: var(--gutter-width);
}

.salon-frame {
  position: relative;
  left: 0px;
  top: 0px;
}

.salon-frame.flux{
  background-color: var(--flux-red);
}

.salon-frame.form{
  background-color: var(--form-blue);
}

.salon-frame.text{
  background-color: var(--text-yellow);
}

.small{
  width: var(--quarter-wall);
  height: var(--quarter-wall);
}

@media only screen and (max-width: 768px) {
    .small {
      width: var(--third-wall);
      height: var(--third-wall);
    }
}

@media only screen and (max-width: 480px) {
    .small {
      width: var(--full-wall);
      height: var(--quarter-wall);
      min-width: 280px;
    }
}

.medium{
  width: var(--third-wall);
  height: var(--third-wall);
}

@media only screen and (max-width: 768px) {
    .medium {
      width: var(--half-wall);
      height: var(--half-wall);
    }
}

@media only screen and (max-width: 480px) {
    .medium {
      width: var(--full-wall);
      height: var(--half-wall);
      min-width: 280px;
    }
}

.large{
  width: var(--half-wall);
  height: var(--half-wall);
}


@media only screen and (max-width: 768px) {
    .large {
      width: var(--full-wall);
      height: var(--half-wall);
    }
}

@media only screen and (max-width: 480px) {
    .large {
      width: var(--full-wall);
      height: var(--full-wall);
      min-width: 280px;
    }
}

.framed-image{
  width: 100%;
  height: 100%;
}

.post-thumbnail{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (hover: hover) {
  .framed-image:hover .highlight{
    visibility: visible;
  }
}


@media (hover: none) {
  .untouched{
    pointer-events: none;
 }
}

.highlight{
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.highlight.flux{
  background-color: var(--flux-highlight);
}

.highlight.form{
  background-color: var(--form-highlight);
}

.highlight.text{
  background-color: var(--text-highlight);
}

.touched{
  visibility: visible;
  pointer-events: auto;
}

.title-card{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: 'Montserrat', sans-serif;
  color: white;
  text-decoration: none;
  /*text-overflow: ellipsis;*/
}


.salon-frame.small .post-title{
  font-size: var(--title-small);
  font-weight: 600;
}

.salon-frame.medium .post-title{
  font-size: var(--title-med);
  font-weight: 600;
}

.salon-frame.large .post-title{
  font-size: var(--title-big);
  font-weight: 600;
}

.salon-frame.small .post-subtitle{
  font-size: calc(var(--title-small) * 0.9);
  font-weight: 400;
  font-style: italic;
}

.salon-frame.medium .post-subtitle{
  font-size: calc(var(--title-med) * 0.8);
  font-weight: 400;
  font-style: italic;
}

.salon-frame.large .post-subtitle{
  font-size: calc(var(--title-big) * 0.7);
  font-weight: 400;
  font-style: italic;
}


.salon-frame.small .post-display-date{
  font-size: calc(var(--title-small) * 0.8);
  font-weight: 500;
}

.salon-frame.medium .post-display-date{
  font-size: calc(var(--title-med) * 0.7);
  font-weight: 500;
}

.salon-frame.large .post-display-date{
  font-size: calc(var(--title-big) * 0.6);
  font-weight: 500;
}
/*END SALON STYLING*/

/*BEGIN POST STYLING*/
#post-wrapper{
  position: absolute;
  width: var(--post-wall);
  height: auto;
  top: 0;
  left: calc((100vw - var(--post-wall)) / 2);
}

/*BEGIN POST NAVIGATION STYLING*/
#post-nav-container {
  position: fixed;
  width: calc(var(--content-width) + var(--nav-height));
  height: auto;
  top:0;
  left: calc(((100vw - var(--content-width)) / 2) - var(--nav-height));
  z-index: 9;
  display: flex;
  align-items: center;
}


#monogram-link{
  position: relative;
  right: 2em;
}

@media only screen and (max-width: 768px) {
 #monogram-link{
   right: 1em;
 }
}

#mini-monogram-holder{
  width: var(--nav-height);
  height: var(--nav-height);
  display: flex;
  justify-content: center;
  align-items: center;

}

#mini-monogram-canvas{
  width: 80%;
  height: 80%;
}

#mini-static-monogram{
  width: 80%;
  hiehg: 80%;
}

#main-post-menu{
  position: relative;
  width: var(--content-width);
  height:calc(var(--nav-height) + var(--gutter-width));
  /*top: 0.75vw;*/
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  background-color: white;
}

.post-nav {
  margin-right: 2em;
  font-size: 1.25em;
  font-weight: 500;
  color: var(--prime-color);
  text-decoration: none;
}

.post-nav:hover{
  text-decoration: underline;
}

.post-nav.flux{
  color: var(--flux-red);
}

.post-nav.form{
  color: var(--form-blue);
}

.post-nav.text:hover{
  text-decoration-color: var(--text-yellow);
}

#home-link{
  color: var(--prime-color);
}

#home-link:hover{
  text-decoration: underline;
}

#home-link.flux:hover{
  text-decoration-color: var(--flux-red);
}

#home-link.form:hover{
  text-decoration-color: var(--form-blue);
}

#home-link.text:hover{
  text-decoration-color: var(--text-yellow);
}

/*BEGIN DROPDOWNN NAVIGATION*/

#post-dropdown-wrapper{
  display: none;
  position: relative;
  width: 100%;
  height:auto;
  z-index: 5;
}

#post-minibar{
  width: 100%;
  height: var(--dropdown-height);
}

#post-minibar.flux{
  background-color: var(--flux-red);
}

#post-minibar.form{
  background-color: var(--form-blue);
}

#post-minibar.text{
  background-color: var(--text-yellow);
}

/*begin dropdown icon styling*/
#post-dropdown-icon{
  position: relative;
  width: var(--dropdown-height);
  height: var(--dropdown-height);
  left: calc((100% - var(--dropdown-height)) / 2);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  z-index: 10;
}

#post-dropdown-icon.active{
  left: 6vw;
}

#post-dropdown-icon.text > .line{
  background: var(--prime-color);
}

#post-dropdown-menu{
  position: absolute;
  width: 100%;
  height: 0px;

  overflow: hidden;
  padding-left: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  transition-duration: 0.5s;
  background-color: white;
}

#post-dropdown-menu.active{
  /*height: calc(var(--quarter-wall) + var(--gutter-width));*/
  height: var(--third-wall);
  transition-duration: 0.5s;
}


@media only screen and (max-width: 480px) {

  #monogram-link{
    display: none;
  }

  #main-post-menu{
    display: none;
  }

  #post-dropdown-wrapper{
    display: inline-block;
  }
}

/*BEGIN POST CONTENT STYLING*/
#content-wrapper{
  position: relative;
  width: var(--content-width);
  height: auto;
  top: 0;
  left: calc((var(--post-wall) - var(--content-width)) / 2);
}

#media-container{
  width: 100%;
  height: var(--hero-height);
  margin-bottom: var(--gutter-width);
}

#hero-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#title-container{
  position: absolute;
  width: var(--content-width);
  height: calc(var(--hero-height) - var(--gutter-width));
  top: var(--gutter-width);
  color: white;
  display: flex;
  align-items: flex-end;
}

#title-background{
  width: 100%;
  height: auto;
  padding: var(--gutter-width);
  display: flex;
  flex-direction: column;
}

#title-background.flux{
  background-color: var(--flux-highlight);
}

#title-background.form{
  background-color: var(--form-highlight);
}

#title-background.text{
  background-color: var(--text-highlight);
}

.post-title{
  font-size: var(--title-big);
  font-weight: 600;
}

.post-subtitle{
  font-size: var(--title-med);
  font-weight: 400;
  font-style: italic;
}

.post-date{
  font-size: var(--title-small);
  font-weight: 600;
}

#text-container{
  line-height: 1.25em;
}

#text-container::first-letter {
  initial-letter: 3;
  color: var(--cat-color);
  margin-right: .5em;
}

.vidplayer{
  width: var(--content-width);
}

.carousel{
  position: relative;
  width: calc(var(--content-width) - 0.5vw);
  height: auto;
  left: 0.25vw;
  margin-top: var(--nav-height);
  margin-bottom: var(--nav-height);
}

.gallery-image{
  display: block;
  width: calc(var(--content-width) - 20vw);
  margin-right: 5vw;
  height: auto;
  object-fit: contain;
}


@media only screen and (max-width: 480px) {

  #post-content{
    padding: 5vw;
  }

  .vidplayer{
    width: calc(var(--content-width) - 10vw);
  }

  .carousel{
    width: calc(var(--content-width) - 10);
    left: 0;
  }

  .gallery-image{
    width: calc(var(--content-width) - 10vw);
  }

}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: var(--cat-color) solid .1em;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: var(--cat-color);
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 .05em var(--cat-color);
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

@media only screen and (max-width: 480px) {
  .flickity-button{
    display: none;
  }
}
/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: var(--cat-color);
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Flickity fullscreen v1.0.1
------------------------- */

.flickity-enabled.is-fullscreen {
  position: fixed;
  left: 0;
  top: calc(var(--nav-height) * -1);
  width: 100vw;
  height: 100vh;
  background: hsl(0 0% 0% / 90%);
  z-index: 10;
}


.flickity-enabled.is-fullscreen .gallery-image{
  height: 100vh;
  width: auto;
}

@media (max-aspect-ratio: 5/4) {
  .flickity-enabled.is-fullscreen .gallery-image{
    max-width: 100%;
  }
}

.flickity-enabled.is-fullscreen .flickity-page-dots {
  bottom: 10px;
}

.flickity-enabled.is-fullscreen .flickity-page-dots .dot {
  background: white;
}

/* prevent page scrolling when flickity is fullscreen */
html.is-flickity-fullscreen {
  overflow: hidden;
}

/* ---- flickity-fullscreen-button ---- */

.flickity-fullscreen-button {
  display: block;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

/* right-to-left */
.flickity-rtl .flickity-fullscreen-button {
  right: auto;
  left: 10px;
}

.flickity-fullscreen-button-exit { display: none; }

.flickity-enabled.is-fullscreen .flickity-fullscreen-button-exit { display: block; }
.flickity-enabled.is-fullscreen .flickity-fullscreen-button-view { display: none; }

.flickity-fullscreen-button .flickity-button-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 4px;
  top: 4px;
}
