@charset "UTF-8";
.button {
    min-width: 120px; cursor:pointer;
    max-width: 250px;
    display:inline-block;
	text-align:center;
    margin: 1em;
    padding: 0.2em 0.6em;
    border: none;
    background: none;
    color: #111;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}
.button--size-s {
	font-size:24px;
}
.button--text-upper {
    letter-spacing: 2px;
    text-transform: uppercase;
}
.button--border-thick {
    border: 3px solid #111;
}
.button--wayra {
    overflow: hidden;
    width: auto;
    -webkit-transition: border-color 0.3s, color 0.3s;
    transition: border-color 0.3s, color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
/* Wayra */
.button--wayra {
	overflow: hidden;
	width: auto;
	-webkit-transition: border-color 0.3s, color 0.3s;
	transition: border-color 0.3s, color 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--wayra::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 150%;
	height: 100%;
	background: #37474f;
	z-index: -1;
	-webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
	transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
	-webkit-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
	transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.button--wayra:hover {
	color: #fff;
	border-color: #111;
}
.button--wayra.button--inverted:hover {
	color: #3f51b5;
	border-color: #fff;
}
.button--wayra:hover::before {
	opacity: 1;
	background-color: #111;
	-webkit-transform: rotate3d(0, 0, 1, 0deg);
	transform: rotate3d(0, 0, 1, 0deg);
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--wayra.button--inverted:hover::before {
	background-color: #fff;
}



.panel {
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
}
.panel:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    border-width: 0px 25px 25px 0px;
    border-style: solid;
    display: block;
    width: 0px;
    border-bottom: 25px solid #D6D7DB;
    border-left: 0px solid #D6D7DB;
    z-index: 1;
    color: #F1F2F6;
}
.panel-info:before {
    border-bottom: 25px solid #4D4D4D;
}
.panel-primary:before {
    border-bottom: 25px solid #82746C;
}

.panel-warning:before {
    border-bottom: 25px solid #CE9C37;
}


.number-label .before {
    position: absolute;
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -o-transform: rotate(8deg);
    transform: rotate(8deg);
    width: 40px;
    height: 40px;
    right: 2px;
    top: -11px;
}
.number-label {
    position: absolute; z-index:100;
    top: 19px;
    line-height: 32px;
    height: 32px;
    color: #fff;
    font-family: "Gotham Narrow SSm A","Gotham Narrow SSm B","Gotham Narrow",Gotham,Sans-Serif;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
    font-size: 14px;
    overflow: hidden;
    padding-right: 6px;
    -webkit-text-shadow: 0px 1px 2px rgba(1, 1, 1, 0.75);
    -moz-text-shadow: 0px 1px 2px rgba(1, 1, 1, 0.75);
    text-shadow: 0px 1px 2px rgba(1, 1, 1, 0.75);
}
.number-label span {
    display: block;
    position: relative;
     z-index: 2; 
     padding: 0 21px 0 23px;
}



.btn {
    font-family: inherit;
    font-size:16px;
	margin:0 5px;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn:after {
    content: '';
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-2d:hover {
    box-shadow: 0 5px #ab3c3c; color:#fff;
    top: -2px;
}
.btn-2 {
     border-radius: 5px;
    background: #cb4e4e;
    color: #fff;
    box-shadow: 0 3px #ab3c3c;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.btn-3d:hover {
    box-shadow: 0 5px #89742F; color:#fff;
    top: -2px;
}
.btn-3 {
     border-radius: 5px;
    background: #C19C0C;
    color: #fff;
    box-shadow: 0 3px #89742F;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.btn-4d:hover {
    box-shadow: 0 5px #fff; color:#fff;
    top: -2px;
}
.btn-4{
     border-radius: 5px;
    background: #4D4D4D;
    color: #fff;
    box-shadow: 0 3px #fff;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.btn-5d:hover {
    box-shadow: 0 5px #C19C0C; color:#fff;
    top: -2px;
}
.btn-5 {
     border-radius: 5px;
    background: #4D4D4D;
    color: #fff;
    box-shadow: 0 3px #C19C0C;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

@media (max-width: 992px) {

}


@media (max-width: 767px) {
.navbar-mem .btn{
 display:none;
}
}


