﻿
.selection-container {
    display: inline-block;
    margin: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

    .selection-container:hover {
        border: 1px solid #000;
    }

    .selection-container.selected {
        border: 1px solid #000;
    }

    .selection-container.unavailable {
        border: 1px solid #ccc;
        opacity: 0.5;
    }

.filter-pill {
    min-height: 52.5px;
}

body.modal-open > #page {
    filter: blur(3px);
}

.modal-backdrop {
    background-color: #808080;
}

@media(max-width: 768px) {
    .mobile-center {
        text-align: center !important;
    }
}

@media only screen and (max-width: 992px) {
    .image-container {
        min-height: 400px !important;
    }

        .image-container img {
            margin: auto;
            left: 0;
            right: 0;
            position: absolute;
        }

    .image-row {
        margin-bottom: 20px;
    }
}

.text-break {
    word-break: break-word;
}

@media only screen and (min-width: 993px) {
    .image-container {
        min-height: 80vh !important;
    }
}

.image-container {
  position: relative;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

.loadingIcon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}

.loadingBackground {
    background-color: rgba(255,255,255,0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.range_container {
    margin: 50px auto;
}

.sliders_control {
    min-height: 50px;
}

.form_control {
    font-size: 24px;
    color: #635a5a;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}


input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: #C6C6C6;
    pointer-events: none;
}

#fromSlider {
    height: 0;
    z-index: 1;
}

#RotationValue {
   position: relative !important;
}