﻿.inspiration-gallery {
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
    padding: 0 30px;
}

.inspiration-gallery h3 {
    margin-bottom: 0.5rem;
}

.inspiration-gallery span{
    color: black;
}

.inspiration-gallery__color-picker__text{
    font-weight: bold;
}

.inspiration-gallery__color-picker {
    display: flex;
    width: fit-content;
    gap: 15px;
    margin: 1rem 0 1.6rem 0;
}

.inspiration-gallery__color-picker--sticky {
    z-index: 20;
    padding: 0.5rem;
    background: white;
    border-radius: 999px;
    margin: 0;
}

.inspiration-gallery__color-picker--absolute {
    position: absolute;
    left: 0;
    top: 0;
}

.inspiration-gallery__color-picker--fixed {
    position: fixed;
    left: 0;
    top: 0;
}

.inspiration-gallery__section-color {
    border-radius: 100%;
    overflow: hidden;
    width: 40px;
    height: 40px;
    padding: 2px;
    margin: 0;
}

.inspiration-gallery__section-color:hover{
    border: solid 2px #808080;
}

.inspiration-gallery__section-color.is-active {
    border: solid 1px black;
}

.inspiration-gallery__section-color img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.inspiration-gallery__section-hidden{
    display: none;
}

.inspiration-gallery__text{
    width: 66%;
}

.inspiration-gallery__button {
    color: white;
    background-color: black;
    padding: 10px 15px;
    border-radius: 999px;
    box-sizing: border-box;
}

.inspiration-gallery__button:hover{
    color: white !important; 
}

.inspiration-gallery__button::after{
    content: ">";
    padding-left: 10px;
    font-size: 1.1em;
}

.inspiration-gallery__button-container{
    margin-bottom: 2.2rem;
}
/*.inspiration-gallery__button-container a{
    width: 100%;
    text-align: center;
}*/
/*Image CSS*/
.inspiration-gallery__image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.inspiration-gallery__figure {
    margin: 0;
    width: 100%;
    height: 100%;
}

.inspiration-gallery__figure-image {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.image-hot-spot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    position: absolute;
    transition: background-color ease 0.2s;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}

    .image-hot-spot::after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        background-color: white;
        border-radius: 50%;
        position: absolute;
        inset: 0;
        margin: auto;
        transition: background-color ease 0.2s;
    }

.image-hot-spot__tool-tip {
    display: block;
    font-size: 16px;
    width: max-content;
    max-width: 300px;
    padding: 10px;
    background-color: white;
    cursor: default;
    position: absolute;
    left: 140%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity ease 0.4s;
    z-index: 3;
    font-style: normal;
    text-align: left;
    margin: 0 5px;
}

.image-hot-spot--tooltip-left .image-hot-spot__tool-tip {
    left: auto;
    right: 140%;
}

    .image-hot-spot__tool-tip.image-hot-spot__tool-tip--visible {
        opacity: 1;
        pointer-events: auto;
    }

.image-hot-spot:hover .image-hot-spot__tool-tip {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 1300px) {
    .image-hot-spot {
        width: 22px;
        height: 22px;
    }

        .image-hot-spot::after {
            width: 16px;
            height: 16px;
        }
}
@media (max-width: 1023.98px){
    .image-hot-spot__tool-tip{
        max-width: 25vw;
    }
    .inspiration-gallery__section {
        padding-bottom: 120px;
    }
    .inspiration-gallery {
        margin: 50px auto 0 auto;
    }
    .inspiration-gallery__text {
        width: 100%;
    }
    .inspiration-gallery__section-color {
        width: 33px;
        height: 33px;
    }
}
/*Grid Styling*/
.gallery-in-grid {
    margin-bottom: 32px;
}
.gallery-in-grid--25 {
    height: calc(25vh - var(--grid-gutter));
}

.gallery-in-grid--30  {
    height: calc(30vh - var(--grid-gutter));
}

.gallery-in-grid--35  {
    height: calc(35vh - var(--grid-gutter));
}

.gallery-in-grid--40  {
    height: calc(40vh - var(--grid-gutter));
}

.gallery-in-grid--45  {
    height: calc(45vh - var(--grid-gutter));
}

.gallery-in-grid--50  {
    height: calc(50vh - var(--grid-gutter));
}

.gallery-in-grid--55  {
    height: calc(55vh - var(--grid-gutter));
}

.gallery-in-grid--60  {
    height: calc(60vh - var(--grid-gutter));
}

.gallery-in-grid--65  {
    height: calc(65vh - var(--grid-gutter));
}

.gallery-in-grid--70  {
    height: calc(70vh - var(--grid-gutter));
}

.gallery-in-grid--75  {
    height: calc(75vh - var(--grid-gutter));
}

.gallery-in-grid--80  {
    height: calc(80vh - var(--grid-gutter));
}

.gallery-in-grid--85  {
    height: calc(85vh - var(--grid-gutter));
}

.gallery-in-grid--90  {
    height: calc(90vh - var(--grid-gutter));
}

.gallery-in-grid--95  {
    height: calc(95vh - var(--grid-gutter));
}

.gallery-in-grid--100  {
    height: calc(100vh - var(--grid-gutter));
}