/* DO NOT EDIT */
.jp-ribbon {
	width:100%;
	background: #fafafa;
}

.jp-ribbon-tabs {
	display: flex;
    background: #fafafa;
    border: 1px solid #eee;
}

.jp-ribbon-tab {
    cursor: pointer;
    position: relative;
}

.jp-ribbon-tab-label {
	height: 25px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
	color: #999;
}

.jp-ribbon-tab[is-hidden='true'] { display:none!important; }

.jp-ribbon-tab[disabled='true'] { cursor:default;}
.jp-ribbon-tab[disabled='true'] .jp-ribbon-tab-label {color: #DDD;}

.jp-ribbon-tab[is-active='true'] .jp-ribbon-tab-label {
	color: #444;
	font-weight: bold;
}

.jp-ribbon-tab[is-active='true'] .jp-ribbon-tab-active {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #444;
    bottom: 0;
}

.jp-ribbon-tab-content {
    display:none;
	height: 70px;
	flex-direction: row;	
}

.jp-ribbon-tab-content[is-active='true'] {
	display: flex;    
}

.jp-ribbon-content {
    padding: 3px 0px;
    overflow: auto;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.jp-ribbon-block {
    position: relative;
    border: 1px solid #ddd;
    background: #fafafa;
    display: flex;
    margin: 0px 2px;
    flex-direction: column;
    height: 100%;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.jp-ribbon-block[has-text='false'] {border:none;}

.jp-ribbon-block-content {
	display: flex;
	align-items:center;
	justify-content:center;
    min-width: 80px;
    height: 51px;
    box-sizing: border-box;
    margin: 1px;
}
.jp-ribbon-block[layout-mode="horizontal"] .jp-ribbon-block-content { flex-direction: row; }
.jp-ribbon-block[layout-mode="vertical"] .jp-ribbon-block-content { flex-direction: column; }
.jp-ribbon-block[full-height='true'] .jp-ribbon-block-content { height:100%; }

.jp-ribbon-block-label {
    position: absolute;
    bottom: 0;
    padding: 2px 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    left: 0px;
    right: 0px;
    text-align: center;
    font-size: 11px;
    background: #ebebeb;
    color: #444;
    height: 11px;
    line-height: 11px;
}

.jp-ribbon-button {
	position:relative;
	width: 80px;
    padding: 1px;    
    cursor: pointer;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    box-sizing: border-box;
    height: 17px;
}

.jp-ribbon-button-label {
    line-height: 100%;
    height: 100%;
}

.jp-ribbon-button-label-wrapper {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 20px;
    line-height: 20px;
}

.jp-ribbon-button-label-wrapper .jp-ribbon-button-label {
    line-height: 20px;
    height: 20px;
}

.jp-ribbon-button[disabled='true'] {
	cursor:default;
	background-color:transparent!important;
	color:#ddd;
}

.jp-ribbon-button[button-big='true'] {
	height:100%;
}

.jp-ribbon-button:hover {
	background-color:rgba(0,0,0,0.1);
}

.jp-ribbon-button:active {
	background-color:rgba(0,0,0,0.3);
}

.jp-ribbon-button-icon {
	display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 20px);
}

.jp-ribbon-button-icon:before {
	font-size:30px;
}

.jp-ribbon-group {
    overflow: hidden;
	height: 100%;
    display: flex;
	align-items: center;
    justify-content: space-around;
}
.jp-ribbon-group[layout-mode="horizontal"]  { flex-direction: row; }
.jp-ribbon-group[layout-mode="vertical"] { flex-direction: column; }