﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

.extra-margin-for-footer p {
    margin: 0 0 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;
    text-align: left;
}

.col-md-6 .dl-horizontal dt,
.col-lg-6 .dl-horizontal dt {
    width: 40%;
}

.col-md-6 .dl-horizontal dd,
.col-lg-6 .dl-horizontal dd {
    width: 60%;
    margin-inline-start: auto;
}

.col-sm-6 .dl-horizontal dt {
    width: 45%;
}

.col-sm-6 .dl-horizontal dd {
    width: 55%;
    margin-inline-start: auto;
}


/* Set width on the form input elements since they're 100% wide by default */
input, select,textarea {
    max-width: 280px;
}

span.italic {
    font-style: italic;
}

span.put-on-bottom-right-corner {
    position: absolute;
    right: 2px;
    bottom: 1px;
}

.relative-position {
    position: relative;
}

.modal {
    top: 25%;
    overflow-y: auto; /*Disables Scrollbar*/
}

.strong {
    font-weight: bold;
}

.pastdue {
    background-color: #FFD049 !important;
}

.vcenter {
    display: flex;
    align-items: center;
}

.btm-pad-10-px {
    padding-bottom:10px;
}

/* Bootstrap Overide */
hr {
    /*margin-top: 12px;
    margin-bottom: 8px;*/
    /*BP Custom*/
    margin-top: 4px;
    margin-bottom: 4px;
    border-top: 1px solid #c3b4b4;
}

th {
    border-top: none !important;
}

img {
    border-radius: 5px 5px 0 0;
}

.container {
    padding: 2px 16px;
}

.glyphicon-1-7x {
    font-size: 1.7em;
}

.glyphicon-2x {
    font-size: 2em;
}

.glyphicon-3x {
    font-size: 3em;
}

/*Cards*/
.card-panel {
    transition: box-shadow .25s;
    padding: 20px;
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
    background-color: #fff;
}

.card {
    position: relative;
    margin: 0.5rem 0 1rem 0;
    background-color: whitesmoke;
    transition: box-shadow .25s;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 5px;
}

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

    .card .card-title {
        font-size: 20px;
        font-weight: 300;
    }

        .card .card-title.activator {
            cursor: pointer;
        }

    .card.small, .card.medium, .card.large {
        position: relative;
    }

        .card.small .card-image, .card.medium .card-image, .card.large .card-image {
            max-height: 60%;
            overflow: hidden;
        }

            .card.small .card-image + .card-content, .card.medium .card-image + .card-content, .card.large .card-image + .card-content {
                max-height: 40%;
            }

        .card.small .card-content, .card.medium .card-content, .card.large .card-content {
            max-height: 100%;
            overflow: hidden;
        }

        .card.small .card-action, .card.medium .card-action, .card.large .card-action {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }

    .card.small {
        height: 300px;
    }

    .card.medium {
        height: 400px;
    }

    .card.large {
        height: 500px;
    }

    .card.horizontal {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

        .card.horizontal.small .card-image, .card.horizontal.medium .card-image, .card.horizontal.large .card-image {
            height: 100%;
            max-height: none;
            overflow: visible;
        }

            .card.horizontal.small .card-image img, .card.horizontal.medium .card-image img, .card.horizontal.large .card-image img {
                height: 100%;
            }

        .card.horizontal .card-image {
            max-width: 50%;
        }

            .card.horizontal .card-image img {
                max-width: 100%;
                width: auto;
            }

        .card.horizontal .card-stacked {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
            position: relative;
        }

            .card.horizontal .card-stacked .card-content {
                -webkit-flex-grow: 1;
                -ms-flex-positive: 1;
                flex-grow: 1;
            }

    .card.sticky-action .card-action {
        z-index: 2;
    }

    .card.sticky-action .card-reveal {
        z-index: 1;
        padding-bottom: 64px;
    }

    .card .card-image {
        position: relative;
    }

        .card .card-image img {
            display: block;
            border-radius: 2px 2px 0 0;
            position: relative;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            width: 100%;
        }

        .card .card-image .card-title {
            color: #fff;
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 20px;
        }

    .card .card-content {
        padding: 20px;
        padding-top:10px;
        border-radius: 0 0 2px 2px;
    }

        .card .card-content p {
            margin: 0;
            color: inherit;
        }

        .card .card-content .card-title {
            line-height: 40px;
        }

    .card .card-action {
        position: relative;
        background-color: inherit;
        border-top: 1px solid rgba(160, 160, 160, 0.2);
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
    }

        .card .card-action a:not(.btn):not(.btn-large):not(.btn-floating) {
            color: #0000EE;
            margin-right: 20px;
            transition: color .3s ease;
        }

            .card .card-action a:not(.btn):not(.btn-large):not(.btn-floating):hover {
                color: #4d4dff;
            }

    .card .card-reveal {
        padding: 20px;
        position: absolute;
        background-color: #fff;
        width: 100%;
        overflow-y: auto;
        top: 100%;
        height: 100%;
        z-index: 3;
        display: none;
    }

        .card .card-reveal .card-title {
            cursor: pointer;
            display: block;
        }

.add-widget-image{
    height:250px;
    width:250px;
    margin-top:60px;
}

.add-widget {
    border: 5px dashed gray;
}

.searchIconDiv {
    display: inline-block;
    border: 1px gray solid;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 100px;
    background-color: #ebebeb;
    padding-top: 5px;
    padding-bottom: 7px;
    padding-right: 3px;
    font-size: 1.15em;
    text-align: center;
    vertical-align: top;
}

.searchIconDiv:hover {
    border: 1px black solid;
}

    .searchIconDiv:active {
        border: 1px black solid;
        background-color: rgba(0,0,0,0.1);
    }

