@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700');

body{
  font-family: 'Montserrat', sans-serif
}

.skin-blue .main-header .navbar{
	background: #8e24aa;
    background: linear-gradient(45deg, rgba(142, 36, 170, 1) 0%, rgba(255, 110, 64, 1) 100%);
    background-repeat: no-repeat;
    background-size: 100%;
    box-shadow: #c94a73 1px 1px 35px
}

.box{
	margin-top: 30px;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15)
}
.box.box-success{
	border: none
}
.box-body{
	padding: 40px
}

.main-footer{
	height: 40px;
	line-height: 40px;
	padding: 0;
	color: #999;
	font-size: .9em
}
.main-footer a{
	color: #666
}
.main-footer ol,
.main-footer ul{
	margin: 0
}

.btn-primary{
	background: #eb6153;
	border-color: #eb6153;
	padding: 14px 20px;
	font-weight: bold
}
.btn-primary:hover{
	background: #c54b3f!important;
	border-color: #c54b3f!important
}

@media (max-width: 900px){
	.box-body{
		padding: 30px 14px
	}
	.content{
		padding: 0
	}
}

.batton-group{
	display: none;
	gap: 10px;
	flex-wrap: wrap;
	border-radius: 10px;
	padding: 10px 0
}
.batton-group.on{
	display: flex
}

.batton-item{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: initial;
    background-image: linear-gradient(#0c0d0d 0, #541a0f 100%);
	border: solid 4px #f93a13;
	color: rgba(255,255,255,.9);
	border-radius: 50px;
	padding: 10px 30px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-width: 200px
}

.batton-item:hover{
	background-color: #0056b3;
	color: #fff
}

.batton-item i{
	position: absolute;
	font-size: 20px;
	color: #fff;
	background: #f93a13;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	top: 3px;
	left: 3px;
	border-radius: 50%
}

.batton-item span{
	display: inline-block;
	vertical-align: middle
}

.batton-group .batton-item{
	flex: 1;
	min-width: auto
}

@media (max-width: 768px){
	.batton-group{
		flex-direction: column
	}
	.batton-item{
		width: 100%
	}
}