
/*-----------------------------------------------------------------------------------*/
/*	24. FONT ICON PAGES
/*-----------------------------------------------------------------------------------*/
.font-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}
.font-icons li {
    display: inline-block;
    font-size: 25px;
    margin-bottom: 10px;
    padding: 0 10px;
}
.alert .close {
    line-height: 28px
}
.retina-icons-code i {
    font-size: 18px
}
.retina-icons-code tr td:first-child,
.retina-icons-code tr th:first-child {
    text-align: center
}
.retina-icons-code code {
    background: none;
    white-space: normal;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background: none !important
}
.table-bordered {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-left: none;
    background: none;
}
.table-bordered th,
.table-bordered td {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.retina-icons-code td {
    vertical-align: middle !important
}
.table th,
.table td {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.retina-icons-code code {
	color: inherit;
}
.budicons-list .font-icons li {
    font-size: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}
.budicons-list .retina-icons-code i {
    font-size: 30px;
    line-height: 1;
    margin-top: 5px;
    display: block;
}
/*-----------------------------------------------------------------------------------*/
/*	25. BACK TO TOP BUTTON
/*-----------------------------------------------------------------------------------*/
.scroll-top-wrapper {
    position: fixed;
	visibility: hidden;
	overflow: hidden;
	text-align: center;
	z-index: 99999999;
    background: rgba(21,69,107,0.65);
    display: none;
	color: #fff;
	width: 50px;
	height: 48px;
	line-height: 48px;
	left: 12px;
	bottom: 30px;
	padding-top: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.scroll-top-wrapper:hover {
	background-color: #15456b;
}

.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
	opacity: 1.0;
}

.scroll-top-wrapper i.fa {
	line-height: inherit;
}

@media screen and (max-width: 1100px) {

	.scroll-top-wrapper {
    display: block;
}

}