/* Add your CSS here */
#slide-1-long-title{
    font-size:64px;

}
#school-select-container{
    margin-top: 20px;
}

#teacher-select-container, #class-select-container, #student-select-container, #login-button{
    display: none;
    margin-top: 20px;
}

#select-school-input{
    border: 1px solid #B2B2B2;
    outline: 0;
    width: 100%;
    height: 40px;
    padding-left: 10px;
}

#school-next-button{
    margin-top: -5px;
}

#student-login-button{
    display: none;
	/*
    margin-left: 38%;
    margin-top: 20px;
	*/
}

#clear-password-button{
    display: none;
    margin: 10px;
}

#header-loggedin{
    background-color: rgb(54, 39, 76);
    /* position: relative; */
}

.smaller-icon{
    font-size: 18px;
}

.user-full-name{
    margin-top: 10px;
}

.edit-delete-class-buttons{
    float: right;
    position: relative;
    top: -25px;
}

.student-preview-box{
    background-color: rgba(54, 39, 76, 0.95);
    height: 60px;
    border-left: 5px solid #FFFFFF;
    border-right: 5px solid #FFFFFF;
    margin-bottom: 10px;
}

.student-preview-box .student-locked-icon {
    display: none;
}

.student-preview-box.student-locked .student-locked-icon {
    margin-left: 10px;
    display: inline-block;
    color: #D44546;
    cursor: pointer;
}

.student-small-info-container h5{
    color: #FFFFFF;
    padding-top: 10px;
}

.icon-left-student{
    margin-right: 5px;
}

.orange{
    color: #FF7149;
}

#change-profile-image-box{
    width: 100%;
    height: 60px;
    background-color: rgba(54, 39, 76, 0.7);
    text-align: center;
    color: #FFFFFF;
    position: relative;
    top: -60px;
    opacity: 0;
    transition: all .5s ease;
}

.profile-info-left{
    position: relative;
}

#change-profile-image-box:hover{
    cursor: pointer;
    opacity: 1;
}

#change-profile-image-box > h6{
    color: #FFFFFF;
    padding-top: 20px;
}

#create-new-class-button {
    position: absolute;
    right: 15px;
    top: 0px;
}

.class-actions {
    cursor: default;
}

.class-actions a {
    display: inline-block !important;
    font-size: 12px !important;
}

#user-link{
    position: relative;
    /* left: -40px; */
}

.twitter-typeahead, .typeahead, .tt-hint{
    width: 100%;
    height: 40px;
}

/* Front-page school select (needs to drop up) */

#school-select-container .tt-open{
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #D2D2DD;
}

#school-select-container .tt-selectable:hover{
    cursor: pointer;
    background: #ff7149;
    margin-left: -20px;
    width: calc(100% + 40px);
}

#school-select-container .tt-selectable:hover .school-suggestion-text{
    margin-left: 20px;
}

#school-select-container .tt-suggestion .school-suggestion-details{
    color: #999;
}

#school-select-container .tt-suggestion:hover .school-suggestion-details, .tt-suggestion:hover .school-suggestion-text{
    color: white;
}

#school-select-container .tt-menu{
    max-height: 430px;
    overflow-y: auto;
    width: 100%;
    bottom: 100%;
    top: inherit !important;
}

/* Teacher admin school select (needs to drop down) */

#teacher-school-select-container .tt-open{
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #D2D2DD;
}

#teacher-school-select-container .tt-selectable:hover{
    cursor: pointer;
    background: #ff7149;
    margin-left: -20px;
    width: calc(100% + 40px);
}

#teacher-school-select-container .tt-selectable:hover .school-suggestion-text{
    margin-left: 20px;
}

#teacher-school-select-container .tt-suggestion .school-suggestion-details{
    color: #999;
}

#teacher-school-select-container .tt-suggestion:hover .school-suggestion-details, .tt-suggestion:hover .school-suggestion-text{
    color: white;
}

#teacher-school-select-container .tt-menu{
    max-height: 430px;
    overflow-y: auto;
    width: 100%;
}


#login-button{
    margin-left: 38%;
    margin-top: 15px;
}

#student-password-container{
    margin-left: 10px;
    margin-top: 10px;
    display: none;
}

.icon-password-container{
    height: 60px;
    background-color: #F1F1F1;
    -webkit-transition: all .5s; /* Safari */
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    color: #ff7149;
    text-align: center;
    padding-top: 5px;
    font-size: 36px;
    margin: 5px;
    line-height: 44px;
    margin: 4px;
    width: calc(25% - 10px);
}

#old-password-container .icon-password-container,
.old-password-container .icon-password-container {
    font-size: 30px;
    width: 16.666666666667%;
}

.icon-password-container.active:hover, .icon-password-container-selected{
    background-color: #ff7149;
    color: #FFFFFF;
    cursor: pointer;
}

.icon-password-container .overlay {
    position:absolute;
    top:0;
    left:0;
    width:20px;
    height:100%;
    background-color:rgba(0,0,0,0.65);
    z-index:1039;
    color:white;
    opacity: 0;

    transition: opacity 0.2s ease-in;
    font-family: "azo-sans-web",sans-serif;
    font-size: 24px;
}

.icon-password-container .overlay.in {
    opacity: 1;
}

.avatar-container{
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #F1F1F1;
    -webkit-transition: all .5s; /* Safari */
    -moz-transition: all .5s;
    transition: all .5s;
    text-align: center;
    font-size: 22px;
    margin: 5px;
}

.avatar-container:hover, .avatar-selected{
    background-color: #656269;
    color: #FFFFFF;
    cursor: pointer;
}

#back-button-student-login{
    margin: 10px;
    /* display: none; */
}

#classDropdownContainer {
    width: 100%;
}

#classDropdown {
    width: calc(100% - 220px);
    text-align: center;
}

#classDropdownMenu {
    width: calc(100% - 200px);
    text-align: center;
    background: #EEE;
}

#classRegistrationButton {
    margin-left: 5px;
    width: 300px;
}

.bootbox-body {
    font-size: 16px;
}

@media (min-width: 768px) {
    .modal-dialog {
      width: 900px !important;
      margin: 30px auto;
    }
}

.bootstrap-tagsinput .twitter-typeahead {
    display: inline !important;
}

.bootstrap-tagsinput .twitter-typeahead .tt-hint {
    display: none;
}

.bootstrap-tagsinput .twitter-typeahead .tt-menu {
    width: 150px;
    border: 1px solid black;
    padding: 5px;
    background-color: #FFFFFF;
    cursor: pointer;
}

.bootstrap-tagsinput .twitter-typeahead .tt-menu:hover {
    background-color: #68C5E1;
}

.btn-danger[disabled] {
    color: #FFF !important;
}

.selectedRow {
    background-color: #FF7149;
    color: #FFF;
}

.selectedRow td {
    color: inherit !important;
}

.noSelect {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

table[data-selectable-table] tbody tr:hover {
    cursor: pointer;
}

@media (min-width: 768px) {
    div[data-story-nav] {
        padding-right: 30px;
    }
}

.vjs-picture-in-picture-control.vjs-button { 
    display: none !important; 
}

.user-papertrail-tab td,
.user-papertrail-tab th,
#papertrail td,
#papertrail th {
  padding: 5px;
}
