#bottom-sheet{
    position:fixed; /* keeps the lightbox window in the current viewport */
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,.6);
    z-index: 10;
}

#bottom-sheet-panel{
    background-color:white;
    position:absolute;
    bottom:0;
    height:85%;
    width:84%;
    margin-left: 8%;
    margin-right: 8%;
    border-top-right-radius:3px;
    border-top-left-radius:3px;

    overflow: hidden;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

	transition-property: all;
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(0, 1, 0.5, 1);

}

#bottom-sheet .closed {
	height:0;
}

#bottom-sheet-title{
    height:60px;
    border-bottom: 2px solid #4D8CB6;
    font-family: Roboto Condensed;
    color:#4D8CB6;
    text-align: center;
    padding-top:10px;
    font-size:24px;
    position: relative;
    top: 0;
    width: 100%;
}

#bottom-sheet-body{
	padding:10px 20px;
    height:100%;
	font-size: 24px;
	font-family: Roboto Condensed;
    overflow-y:auto;
    position: relative;
}

.select-row{
	width:100%;
	padding-top:10px;
	padding-bottom:10px;
}
.select-row:active{
	background-color:#E5EEF4;
}

.select-icon{
	margin-right: 10px;
}

.select-icon svg{
	margin-top: -5px;
}

.select-theme{
	background-color: #4D8CB6;
    color:white;
    padding:0 6px 3px 6px;
    border-radius:2px;
}

.select-text{

}


.avatar {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    text-align: center;
    background-color: #B2B2B2;
    color: #fff;
    font-size: 18px;
  }

.displayblock {
  display: inline-block !important;
}

.select-avatar{
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 10px;
}
