/* styles for the request forms */
.container{
    width: auto !important;
    max-width: 1200px;
}

div.logo{
    height: auto !important;
}

.form-header{
    /* box styles */
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #01a8e7;
    padding: 10px;
    margin: 30px 0 30px 0;
    /* text styles */
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.form-group{
    margin-right: 0 !important;
    margin-left: 0 !important;
}

label{
    text-align: left !important;
}

option[value=""][disabled] {
    display: none ;
}

.display-for-agency{
    display: none;
}

.display-for-student{
    display: none;
}

.visible {
    margin-top: 10px;
/*    overflow: hidden;*/ /* Disable overflow hidden because of datetimepicker */
    opacity: 1;
    height: auto;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
.invisible {
    overflow: hidden;
    opacity: 0;
    height: 0;
}

.init-position{
    position:relative;
    top: 120px;
	font-size: 1.2em;
}

.line{
	display: inline-block;
}

.reset-position{
    top: 10px !important;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3 ease-out;
    transition: all .3s ease-out;
}

.text-center p{
    text-align: center;
}

#confirmation-content{
    margin-top: 50px;
}

/* Overwrites table style from styles.css to prevent style inheritance to  datatime picker */
table th{
    border: none;
    background-color: #fff;
}

/* Overwrites slider style from bootstrap-slider.min.css to make it fits to the parent element */
.slider.slider-horizontal {
    width: 100%;
}

/* Overwrites Bootstrap tooptip Style */

.tooltip-inner {
    max-width: 300px;
    padding: 8px;
    background-color: #333;
    border-radius: 4px;
}

.tooltip.right .tooltip-arrow {
    border-right-color: #333;
}

/*
bootstrap interferes with the default behavior of the fieldset/legend:
https://stackoverflow.com/questions/16852484/use-fieldset-legend-with-bootstrap

Our fix is below
*/

fieldset {
    border: solid 1px #000 !important;
    padding: 0 10px 20px 25px;
    border-bottom: none;
}

legend {
    width: auto !important;
    border: none;
    font-size: 12px;
    padding:15px 10px 0px 10px;
}