.row {
    margin: 1rem;
}

.tile-thumbnail {
    height: 130px;
    width: 130px;
    object-fit: contain;
    border: 2px dotted #cfcece
}

.whole-image {
    width: 512px;
    height: 512px;
    border: 2px dotted #cfcece
}

.mr-top-10 {
    margin-top: 10px;
}

.mr-bottom-10 {
    margin-bottom: 10px;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #084b77;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

.new-line {
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #084b77;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #084b77;
    cursor: pointer;
}

.slidecontainer {
    width: 25%;
    display: flex;
}

#sliderValue {
    margin-left: 5px;
    white-space: nowrap;
}

.uploadCanvas:hover {
    cursor: pointer;
    border: 2px solid red;
}

.tile-thumbnail-selected {
    border: 2px solid #084b77 !important;
}

.tileContainer {
    display: inline-block;
    text-align: center;
}