
.page-content {
    margin: 150px auto 0;
    max-width: 600px;
    text-align: center;
}

.btn-default {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	width:24%;
	height:50px;
	padding: 7px;
	font-size: 14px;
	border-radius: 3px;
	background:  linear-gradient(#2989d8 20%, #1e5799 100%);
	box-shadow: 0 5px 5px #364a8e, 0 9px 0 #25325e, 0px 9px 10px rgba(0,0,0,0.4), inset 0px 2px 9px rgba(255,255,255,0.2), inset 0 -2px 9px rgba(0,0,0,0.2);
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	display: inline-block;
	text-shadow: 0px -1px 0px rgba(0,0,0,0.2);
	margin-bottom: 10px;
    cursor: pointer;
	border: 1px solid;
    /* Disables the default callout shown when you touch and hold a touch target  */
    -webkit-touch-callout: none;
    -ms-touch-action: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.btn-default:hover {
	box-shadow: 0 5px 5px #364a8e, 0 9px 0 #25325e, 0px 9px 10px rgba(0,0,0,0.4), inset 0px 2px 15px rgba(255,255,255,0.4), inset 0 -2px 9px rgba(0,0,0,0.2);
}
.btn-default:active {
	box-shadow: 0 2px 0 #25325e, 0px 4px 4px rgba(0,0,0,0.3), inset 0px 2px 5px rgba(0,0,0,0.2);
}

/* demos */
.demo-1 {
    margin: 20px 0;
}
.demo-1__content {
    text-align: left;
    margin-top: 20px;
}

.demo-2 {
    margin: 7px;
}
.demo-2__toggle-btn--hide {
    display: none;
}
.demo-2.toggle-widget--open .demo-2__toggle-btn--show {
    display: none;
}
.demo-2.toggle-widget--open .demo-2__toggle-btn--hide {
    display: inline-block;
}
.demo-2__content {
    text-align: left;
    margin-top: 10px;
}
.demo-2__content-inner {
    padding: 10px;
//    background-color: #47a3da;
	color: white;
    border-radius: 5px;
    opacity: 0;
    transition: opacity .3s;
}
.demo-2.toggle-widget--open .demo-2__content-inner {
    opacity: 1;
}

.demo-3 {
	margin-right: 1px;
    border-radius: 5px;
    transition: background-color .3s;
}
.demo-3--open {
    background-color: #47a3da;
}
.demo-3__header {
    padding: 20px;
}
.demo-3__header-headline {
    margin-top: 0;
}
.demo-3__content {
    text-align: left;
    height: 0;
    transition: height .3s;
    overflow: hidden;
}
.demo-3__content-inner {
    padding: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .3s, transform .3s;
}
.demo-3--open .demo-3__content-inner {
    opacity: 1;
    transform: translateY(0);
}