﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    border: 2px solid #dddddd;
    border-radius: 15px;
    margin: 20px;
}

.blue-border {
    padding: 15px;
    border: 2px solid #dddddd;
    margin: 20px;
}

.no-padding-left {
    padding-left: unset !important;
}
/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.sticky-footer{
    margin-bottom: 0 ;
}

.nav-items {
    margin: 20px;
}

.image-container {
    height: 200px;
    width: 200px;
    border: 1px solid black;
    background-color: #ffd800;
    text-align: center;
    vertical-align: middle;
    line-height: 150px;
}

.iframe-image-container {
    text-align: center;
    vertical-align: middle;
    line-height: 150px;
}

.no-margin-bottom {
    margin-bottom: 0px !important;
}

.banner {
    margin-bottom: 50px;
}

.detail-label::after {
    content: ":";
}

.required-label::after {
    content: " *";
}

.required-label-x2::after {
    content: " **";
}


/*Language switcher*/
.languagepicker {
    background-color: #FFF;
    display: inline-block;
    padding: 0;
    height: 40px;
    overflow: hidden;
    transition: all .3s ease;
    margin: 0 50px 10px 0;
    vertical-align: top;
    float: left;
}

    .languagepicker:hover {
        /* don't forget the 1px border */
        height: 81px;
    }

    .languagepicker a {
        color: #000;
        text-decoration: none;
    }

    .languagepicker li {
        display: block;
        padding: 0px 20px;
        line-height: 40px;
        border-top: 1px solid #EEE;
    }

        .languagepicker li:hover {
            background-color: #EEE;
        }

    .languagepicker a:first-child li {
        border: none;
        background: #FFF !important;
    }

    .languagepicker li img {
        margin-right: 5px;
    }

.roundborders {
    border-radius: 5px;
}

.large:hover {
    /* 
	don't forget the 1px border!
	The first language is 40px heigh, 
	the others are 41px
	*/
    height: auto;
}

.banner {
    margin: 20px;
}

.tab-pane.fade:not(.in){
    display: none;
}

h3 {
    color: blue;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        max-width: 180px;
        margin-top: -6px;
        margin-right: -1px;
        -webkit-border-radius: 6px 6px 6px 6px;
        -moz-border-radius: 6px 6px 6px 6px;
        border-radius: 6px 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: inherit; /* right: inherit; */
    }

    .dropdown-submenu > a:after {
        display: block;
        float: left;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 5px 5px 0;
        border-right-color: #999;
        margin-top: 5px;
        margin-right: 10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #ffffff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 6px 6px 6px;
            -moz-border-radius: 6px 6px 6px 6px;
            border-radius: 6px 6px 6px 6px;
        }

.dropdown-menu-right {
    margin-left: 0;
}

.dropdown-menu-right {
    right: inherit !important;
    left: auto;
}

.middle {
    display: grid;
    grid-template: "a b" 1fr/1fr
}

@media only screen and (max-width: 600px) {
    .middle {
        display: grid;
        grid-template: "a" 1fr
    }
}

.v-align-center {
    display: flex;
    align-content: flex-end;
    align-items: center;
}

.f-right {
    float: right;
}