.landing-ui-component-action-panel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	margin-top: 17px;
}

.landing-ui-component-action-panel-button {
	display: inline-block;
	font: 14px/16px var(--ui-font-family-primary, var(--ui-font-family-helvetica));
	color: #80868e;
	border-bottom: 1px dashed #d8d8d8;
	-webkit-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	cursor: pointer;
	margin-right: 13px;
}

.landing-ui-component-action-panel-button:hover {
	color: #333333;
	border-bottom: 1px dashed #333333;
}

.landing-ui-component-action-panel-button:last-child {
	margin-right: 0;
}

.landing-ui-component-action-panel-left,
.landing-ui-component-action-panel-center,
.landing-ui-component-action-panel-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.landing-ui-component-action-panel-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.landing-ui-component-action-panel-right {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}