﻿#cookie_note {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

    #cookie_note p {
        margin: 0;
        font-size: 0.7rem;
        text-align: left;
        color: black;
    }

.cookie_accept {
    width: 20%;
}

@media (min-width: 576px) {
    #cookie_note.show {
        display: flex;
    }
}

@media (max-width: 575px) {
    #cookie_note.show {
        display: block;
        text-align: left;
    }
}








body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

















.fileform {
    /*    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    cursor: pointer;
    height: 32px;
    overflow: hidden;
    padding: 2px;
    position: relative;
    text-align: left;
    vertical-align: middle;
    width: 250px;
    */
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    cursor: pointer;
    height: 32px;
    overflow: hidden;
    padding: 2px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

    .fileform .selectbutton {
        background-color: #EEC770;
        border: 1px solid #939494;
        border-radius: 5px;
        color: #302510;
        float: right;
        font-size: 14px;
        height: 26px;
        line-height: 20px;
        overflow: hidden;
        padding: 2px 6px;
        text-align: center;
        vertical-align: middle;
        width: 80px;
    }

    .fileform:hover .selectbutton {
        background-color: #F5E0AD;
        border: 1px solid #B88716;
        color: #302510;
    }

    .fileform #upload {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(20);
        letter-spacing: 10em; /* IE 9 fix */
        -ms-transform: scale(20); /* IE 9 fix */
        opacity: 0;
        cursor: pointer
    }

    .fileform .fileformlabel {
        background-color: #FFFFFF;
        float: left;
        height: 22px;
        line-height: 22px;
        overflow: hidden;
        padding: 2px;
        text-indent: 10px;
        text-align: left;
        vertical-align: middle;
        width: 60%;
    }
