.cursor-pointer {}
.cursor-pointer:hover {
    cursor: pointer;
}

.red-border {
    border: 1px solid red !important;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.thumbnailModel {
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-color: rgba(125, 125, 125, .7);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.thumbnailModelClose {
    content: "X";
    position: absolute;
    left: 95vw;
    top: 5vh;
    z-index: 2;
    cursor: pointer;
    font-size: 3em;
}

.thumbnailModelImg {
    display: inline-block;
    margin: 0 auto;
    max-width: 100vw;
    max-height: 100vh;
    height: auto;
    width: auto;
}

.imageSliderHeroImage {
    height: 50vh;
    width: auto;
    margin-left: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

#image_slider_thumbnails {
    display: inline-flex;
    justify-content: space-between;
    align-content: space-around;
    flex-direction: row;
    align-items: center;
}

.imageSliderThumbnail {
    min-width: 100px;
    min-height: 100px;
    width: 10vw;
    height: 10vh;
    margin-left: 5px;
    display: inline-block;
    opacity: .4;
    cursor: pointer;
}

.imageSliderThumbnail:hover {
    opacity: 1.0;
}

.imageSliderHeroDiv {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.imageSliderLeftArrow {
    position: absolute;
    top: calc(50% - 50px);
    left: 0;
    opacity: .4;
    cursor: pointer;
}

.imageSliderLeftArrow:hover {
    opacity: 1.0;
}


.imageSliderRightArrow {
    position: absolute;
    top: calc(50% - 50px);
    right: 0;
    opacity: .4;
    cursor: pointer;
}

.imageSliderRightArrow:hover {
    opacity: 1.0;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/Inter-VariableFont_opsz,wght-g67Lfz9.ttf");
}

/** Select container **/

.select-container-with-divider {
    display: grid !important;
    flex-direction: row !important;
    justify-items: center !important;
    justify-content: center !important;
    grid-template-columns: 49% 2% 49% !important;
}

.select-container-divider {
    height: 100%;
    width: 2px;
    background-color: #64616163;
}