/* 
    form styles for new design 
    adapted from Kate Lee's request forms
*/
.container{
    width: auto !important;
    max-width: 1200px;
}

div.logo{
    height: auto !important;
}

.form-group label,.form-group div
{/* trying to line up wiht form-group h3 */
    padding-left:0;
}


div.form-group h3
{
    display:inline-block;
    margin-left:.375rem;
    margin-top:1%;
    border-bottom: .25em solid #4BB4E6;
    font-weight:700;
}


.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;  was causing overlap on other elements */
    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: 2%;
}

/* 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:1.5em;
    padding: 0px 10px;
}
/* add styles to unify request forms look */

.form-header{
    display: inline-block;
    margin-left: .375rem;
    margin-top: 1%;
    margin-bottom: 2%;
    border-bottom: .25em solid #4BB4E6;
    font-weight: 700;
    font-size: 1.75rem;
}

div.text-center .btn-info{
    margin-bottom:3rem;
}

/* end styles to unify request forms look */