﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 0px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Set CSS to pagination in GridViews*/
.cssPager {
    line-height: 26px;
}

    .cssPager span {
        padding: 5px;
        border: solid 1px #88A2AA;
        text-decoration: none;
        white-space: nowrap;
        background: #88A2AB;
    }

    .cssPager a,
    .cssPager a:visited {
        text-decoration: none;
        padding: 6px;
        white-space: nowrap;
    }

        .cssPager a:hover,
        .cssPager a:active {
            padding: 5px;
            border: solid 1px #9ECDE7;
            text-decoration: none;
            white-space: nowrap;
            background: #486694;
        }

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
    top: 7px;
    background: url(../Images/larrow.png) top no-repeat;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px;
    background: url(../Images/rarrow.png) bottom no-repeat;
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}

/*Class for input textbox with a button*/
.input-container {
    width: 250px;
    border: none;
    display: inline-block;
}

    .input-container input:focus, .input-container input:active {
        outline: none;
    }

    .input-container input {
        width: 45%;
        border: none;
        color: black;
    }

    .input-container button {
        float: right;
        color: black;
    }
.ctxnavbar {
    background-color: rgba(51,51,51,0.6) !important;
}

.ctxlinks {
    list-style: none;
    width: 100%;
    padding-left: 0px;
}

    .ctxlinks a {
        color: #fff;
        text-decoration: none;
    }

        .ctxlinks li:hover {
            background-color: #85bdbc;
        }
.HomeBackground {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 700px;
    min-height: 300px;
    object-fit: contain;
    z-index: -200;
}

.navbar-custom{
    height:150px;
}

#navigation, .navbar .navbar-default {
    background-image: url('../Images/container_menu_home.png');
}

.Text-ctx {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 0;
    padding-bottom: 20px;
    margin-top: 0;
    text-align: center;
    color: black;
    font-size: 20px;
}

    .Text-ctx > h2 {
        color:white;
        font-weight: bold;
        font-size: 34px;
    }

    .Text-ctx > p {
        text-align: justify;
    }

.dropdown-toggle::after {
    content: none !important;
}

.nav-item {
    padding-left: 10px;
    padding-right: 10px;
}

.videoContainer {
    /*height: 55%;
    width: 100%;*/
    overflow: hidden;
    position: relative;
}

    .videoContainer video {
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    /* Just styling the content of the div, the *magic* in the previous rules */
    .videoContainer .caption {
        z-index: 1;
        position: relative;
        text-align: center;
        color: white;
        padding: 20% 0 0 0px;
        background-color: transparent;
    }