﻿.directoryMobileBtn {
	display: none;
}

.formHidden {
	display: none;
}

.formView, .listView {
	padding: 30px;
}

.col-segment-padding {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    background: #f2f2f2;
	padding: 0 !important;
}

section.leftPane {
    background: #fbfbfb;
    width: 200px;
    float: left;
    height: 100%;
    display: block;
}

.profileColumn {
    padding: 10px;
    background-color: #fbfbfb;
    border-bottom: 1px solid #d6d6d6;
}

.staffPhoto {
    background-size: cover;
    height: 130px;
    width: 130px;
    margin: auto;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0px 2px 10px #0000003d;
}

.staffName {
    text-align: center;
}
.staffID {
    text-align: center;
	font-weight: bold;
}

.topicNav {
    padding: 10px;
    background-color: #fbfbfb;
    border-bottom: 1px solid #d6d6d6;
    color: #000000;
    font-weight: 300;
    cursor: pointer;
}

.topicNav:hover {
    background: #f2f2f2;
}

.topicNavSelected {
    background: #f2f2f2;
	font-weight: bold;
}

section.rightPane {
    margin-left: 200px;
}

.topicCategory {
    background-color: #f2f2f2;
}

.formRow {
    margin-bottom: 15px;
}

.topicTitle {
    background-color: #324773;
    color: white;
    padding: 10px 30px;
    font-size: 1.5em;
    font-weight: 300;
}


/************************************Mobile Start********************************************/
@media (min-width: 320px) and (max-width: 500px) {
button.btn {
    width: 100%;
}
.bootstrap-iso .table > tbody > tr > td{
    border-top: none;
}

	.listView thead {
	    display: none;
	}

	section.leftPane {
	    position: fixed;
	    width: 100%;
	    overflow-y: scroll;
	    height: calc(100vh - 45px);
	    z-index: 1;
	    display:none;
	}	
	.leftPaneMenu {
	    overflow-y: scroll;
	    height: calc(100% - 265px);
	}
	
	section.rightPane {
	    margin-left: 0px;
	}
	
	.directoryMobileBtn {
	    background: #324773;
	    padding: 4px;
	    width: 50px;
	    height: 50px;
	    border-radius: 50%;
	    text-align: center;
	    color: white;
	    font-size: 1.5em;
	    display: block;
	    position: fixed;
	    top: 110px;
	    right: 10px;
	    z-index: 2;
	}

}