.fileSelector {
    display: none;
}

.fileList::-webkit-scrollbar{
    display:none;
}

.fileList {
    list-style: none;
    padding-left: 0;
	height: 400px;
    overflow-y: scroll;
    white-space: nowrap;
}

.fileList li {
    /*min-height: 4rem;*/
    padding: 10px 0;
    /*border: 1px solid #acacac;*/
    margin-bottom: 1px;
    cursor: pointer;
}


.fileImg {
    width: 4rem;
    height: 4rem;
}

.noIbar {
    /*width: 640px;*/
    /*height: 800px;*/
    width: 100%;
    min-height:50vh;
    height: auto;
    position: relative;
    color: white;
    display: inline-block;
    /*border-style: solid;*/
    border-color: black;
}

@media (max-width: 1200px),
print {
    .noIbar {
        width: 100%;
    }
}

.dicomImage > canvas {
    /*width: 640px;*/
    min-height: 640px;
    width: 80%;
    top: 0px;
    left: 0px;
    /*position: absolute;*/
}

.form-group {
    padding: 0 50px;
}

input[type=file] {
    color: red;
}

.panel {
    /* padding: 0 30px; */
}

@media (max-width: 300px),
print {
    .panel {
        text-align: center;
    }
}

.lead {
    font-size: 1.2rem;
}


@media (max-width: 1000px),
print {
    .panel {
        padding: 30px 30px;
    }
}


.card {
    width: 100%;
    border: dashed black 0.3px;
    border-radius: 5px;
    box-shadow: 0 1px 3px hsla(0, 0%, 6%, .23);
}

.card-body {
    padding: 7px 20px;
}

.card-title {
    font-size: 1rem;
    display: inline-block;
    margin: 0;
}

.card-percentage {
    font-size: 1rem;
}

.card-hover-effect:hover {
    border: 2px solid #979797;
    transition: border-color 0.5s;
}




.FileName {
    color: white;
    background-color: rgb(131, 131, 131);
}

.description {
    font-size: 1rem;
}

.card-text {
    text-align: right;
}

/* just for demo */

.alerted-value {
    background-color: rgb(240, 87, 113);
    color: white;
}

.normal-value {
    background-color: rgb(144, 211, 164);
}



/* basics */
* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}


body {
    /* text-align: center;  */
    margin: 0;
    padding: 0;
}

.loader {
    position: relative;
    left: 0%;
    top: 0%;
    overflow: show;
    z-index: 999;
    margin: auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #00ffff;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

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

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

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

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fed;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

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