﻿:root {
    --cadmore-grey: #EBF0F2;
    --cadmore-dark: #1B2F4E;
    --cadmore-light: #5D6B82;
    --cadmore-blue: #177DA6;
    --cadmore-blue-highlight: #126485;
    transition: 0.2s;
}

.main-logo {
    max-height: 80px;
    margin: 0 auto;
}

.rotate {
    animation: rotation 1s infinite linear;
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.text-cadmore-dark, .text-cadmore-dark a {
    color: var(--cadmore-dark) !important;
}

.submissionError {
    margin-top: 60px;
    color: red;
}

.submission-button {
    width: 100px;
}
.refreshicon {
    height:25px;
    cursor:pointer;
    margin:10px;
}

.btn-delete {
    color: #fff;
    background-color: red;
    border-color: red;
    width: 100px;
    font-size: 16pt;
}

    .btn-delete:hover {
        color: red !important;
        background-color: #fff;
        border-color: red;
    }

.btn-cadmore {
    color: #fff;
    background-color: var(--cadmore-blue);
    border-color: var(--cadmore-blue);
    width: 100px;
    font-size: 16pt;
}

    .btn-cadmore:hover {
        color: var(--cadmore-blue) !important;
        background-color: #fff;
        border-color: var(--cadmore-blue);
    }

.btn-cadmore-outline {
    color: #6c757d;
    border-color: #6c757d;
    width: 100px;
    font-size: 16pt;
    cursor: pointer;
}

    .btn-cadmore-outline:hover {
        color: white !important;
        background-color: var(--cadmore-blue);
        border-color: var(--cadmore-blue);
    }

.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    border: 2px dashed #ced4da;
    transition: 0.2s
}

.thumbnail {
    height: 100px;
}

.thumbnailPlaceHolder {
    background-color: silver;
    color:black;
    font-size:12pt;
    height: 100px;
    width: 190px;
    margin:0 auto;
    text-align:center;
    vertical-align:middle;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0
}

.errorlabel {
    color: red;
    font-size: 18pt;
}

.redtext {
    color: red;
}

.progressbarWrapper {
    margin: 50px 0 50px 0;
    width: 100%;
    border: 1px solid var(--cadmore-blue);
    height: 25px;
}

.progressbar {
    height: 24px;
    width: 0;
    text-align: right;
    background-color: var(--cadmore-blue);
    color: white;
    text-align: center;
}

.statuslabel {
    margin: 10px 0 10px 0;
    font-size: 18pt;
}

.selectedFilename {
    font-size: 14pt;
}




#toasts {
    min-height: 0;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 300px;
    margin-right: 20px;
}

    #toasts .toast {
        background-color: #76d128;
        border-radius: 3px;
        box-shadow: 2px 2px 3px rgba(0, 0, 0, .1);
        color: rgba(0,0,0, .6);
        cursor: default;
        /*margin-bottom: 20px;*/
        opacity: 0;
        position: relative;
        padding: 20px;
        transform: translateY(15%);
        transition: opacity .5s ease-in-out, transform .5s ease-in-out;
        width: 100%;
        will-change: opacity, transform;
        z-index: 1100;
        font-size:20pt;
    }

#toasts .toast.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}

#toasts .toast.hide {
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all .5s ease-in-out;
}

#toasts .toast .close {
    cursor: pointer;
    font-size: 24px;
    height: 16px;
    margin-top: -15px;
    position: absolute;
    right: 14px;
    top: 50%;
    width: 16px;
}



a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}


a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}
