﻿#filesModal .modal-dialog {
    max-width: unset;
    margin-left: 150px;
    margin-right: 150px;
}


@media(max-width:1199px) {
    #filesModal .modal-dialog {
        max-width: unset;
        margin-left: 15px;
        margin-right: 15px;
    }
}

.area {
    list-style-type: none;
    margin: 0;
    border: 1px solid black;
    padding: 10px
}

.area li.ui-selecting {
    border: 3px solid var(--primarygreen);
}

.area li.ui-selected {
    border: 4px solid var(--primaryred);
}

li.selected {
    border: 4px solid var(--primaryred);
}


.uploadButtons {
    position: absolute;
    display: flex;
    top: -5px;
    text-align: center;
    width: 100%;
    justify-content: space-evenly;
    z-index: 100;
}

.downloadButtons {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    z-index: 100;
}

.downloadButtons>a,
.uploadButtons>a {
    background-color: var(--primaryred);
    color: var(--white);
    padding: 3px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
}

.downloadButtons>a:hover,
.uploadButtons>a:hover {
    background-color: var(--white);
    color: var(--primaryred);
    border: 1px solid var(--primaryred);

}

.profileLabel {
    background-color: green;
    color: white;
    position: absolute;
    display: block;
    left: 4px;
    bottom: 4px;
    text-align: center;
    width: 95%;
}


.perfomedLabel {
    background-color: green;
    color: white;
    position: absolute;
    display: block;
    left: 0px;
    bottom: 0px;
    text-align: center;
    width: 100%;
}

.imageBox,
.videoBox,
.reportBox {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.imageBox div img,
.videoBox div video,
.reportBox div img {
    margin: 3px;
    border: 1px solid;
    height: auto;
}

.imageBox div img {
    max-width: 150px;
}

.videoBox div video {
    max-width: 250px;
}

.reportBox div img {
    max-width: 150px;
    min-width: 150px;
    min-height: 125px;
}

.reportBox div embed {
    max-width: 250px;
    min-height: 250px;
}


.color-overlay {
    position: absolute;
    top: 0;
    opacity: 0.5;
    height: 100%;
    width: 100%;
    /* background: rgba(0,0,0,0.5); */
}


.show_crop {
    position: absolute;
    display: block;
    right: 4px;
    bottom: 4px;
    background-color: var(--primaryred);
    color: var(--white);
    padding: 4px 7px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
}



.crop-preview {
    overflow: hidden;
    border-radius: 60px 0px 60px 0px;
}

/* .cropper-view-box,
  .cropper-face {
    border-radius: 120px 0px;
  } */

/* The css styles for `outline` do not follow `border-radius` on iOS/Safari (#979). */
.cropper-view-box {
    outline: 0;
    box-shadow: 0 0 0 1px #39f;
}