@font-face{
    font-family: 'barlow-light';
    src: url(fonts/Barlow-Light.ttf);
}
@font-face{
    font-family: 'barlow-reg';
    src: url(fonts/Barlow-Regular.ttf);
}
@font-face{
    font-family: 'barlow-med';
    src: url(fonts/Barlow-Medium.ttf);
}
@font-face{
    font-family: 'barlow-semi';
    src: url(fonts/Barlow-SemiBold.ttf);
}
@font-face{
    font-family: 'barlow-black';
    src: url(fonts/Barlow-Black.ttf);
}

html, body{
    margin:0px;
    padding:0px;
    font-size: 16px;
    font-family: 'barlow-reg', sans-serif;
    scroll-behavior: smooth;
    letter-spacing: .02rem;
    background: rgba(20,29,39,1); color:#fff !important;
}
::-webkit-scrollbar {
	width: .3rem;
	height: .45rem;
}

/* Track */
::-webkit-scrollbar-track {
	background: #212121;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgba(218,145,57,.8);
	transition:.4s all;
}
::-webkit-scrollbar-thumb:hover {
	background: #555; 
}
::-moz-scrollbar {
	width: .3rem;
	height: .3rem;
}

/* Track */
::-moz-scrollbar-track {
	background: #212121;
}

/* Handle */
::-moz-scrollbar-thumb {
	background: #888;
	transition:.4s all;
}
::-moz-scrollbar-thumb:hover {
	background: #555; 
}

@media screen and (max-width: 991.98px){
    html, body{
        font-size: 14px;
    }
}

@media screen and (min-width: 1400px){
    html, body{
        font-size: 18px;
    }
}
@media screen and (min-width: 1700px){
    html, body{
        font-size: 20px;
    }
}
.page-wrapper{
    max-width: 100vw;
    overflow-x: hidden;
}
.container-max{
    width:100%;
    max-width: 1920px;
    margin:auto;
    padding: 0px 15px;
}
.container{
    width: 93%;
    margin:auto;
    padding: 0px 15px;
    max-width: 1815px;;
}
@media screen and (max-width: 768px){
    .container{
        width: 100%;
    } 
}

/*------------------- typeography -------------------*/

.light{
    font-family: 'barlow-light', sans-serif;
}
.reg{
    font-family: 'barlow-reg', sans-serif;
}
.med{
    font-family: 'barlow-med', sans-serif;
}
.semi{
    font-family: 'barlow-semi', sans-serif;
}
.black{
    font-family: 'barlow-black', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    margin-bottom: 0px;
}
.heading1{
    font-size: 3.5rem;
}
.heading2{
    font-size: 2.5rem;
}
.heading3{
    font-size: 2rem;
}
.heading4{
    font-size: 1.5rem;
}
.heading5{
    font-size: 1.1rem;
}
.heading6{
    font-size: 1rem;
}
p{
    font-size: 1rem;
    line-height: 170%;
    margin-bottom: 1.3rem;
}
p:last-child{
    margin-bottom: 0px;
}

a{
    transition:.4s all;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;;
}
a:hover{
    text-decoration: none;
}

.text-small *{
    font-size: .85rem;
}

/*----------------------- Spacing -----------------------------*/
.py-6{
    padding: 3rem 0px;
}
.py-7{
    padding: 4rem 0px;
}


/*----------------------- Buttons -----------------------------*/
button{
	border:none;
	cursor: pointer;
}
button,.btn,button:focus{
    outline:none;
    /* background:none; */
    box-shadow: none;
}

.btn{
    padding: .8rem 1.2rem;
    line-height: 100%;
    font-size: .95rem;
    font-family: 'raleway-reg', sans-serif;
    letter-spacing: .05rem;
}
.btn-sm{
    padding: .4rem .7rem;
    font-size: .9rem;
    font-family: 'raleway-med', sans-serif;
}

.btn-basic{
    color: rgba(218,145,57,1);
    border:.1rem solid rgba(218,145,57,1);
	background:none
}
.btn-basic:hover{
    background-color: rgba(218,145,57,1);
    color: #fff
}
.btn-alt{
    border: 1px solid rgba(218,145,57,1);
    color: #fff
}
.btn-alt:hover{
    background: rgba(218,145,57,1);
    color: #fff
}

/*----------------------- backgrounds -----------------------------*/

.bg-client-blue{
    background: rgb(10,20,30)
}
.bg-client-blue .text-link{
    color: rgba(255,255,255,.8);
}
.bg-client-blue .text-link:hover{
    color: rgba(218,145,57,1);
}
.bg-client-dark{
    background: rgb(36,39,46)
}
.bg-client-dark .text-link{
    color: rgba(255,255,255,.8);
}
.bg-client-dark .text-link:hover{
    color: rgba(218,145,57,1);
}
.bg-client-light{
    background: rgba(245,245,245,1);
}
.bg-client-light .text-link{
    color: rgba(34,44,55,1);
}
.bg-client-light .text-link:hover{
    color: rgba(218,145,57,1);
}
.bg-client-primary{
    background: rgba(218,145,57,1);
}
.bg-client-secondary{
    background: rgba(220,0,0,1);
}
.bg-danger{
	color: #fff;
}
/*----------------------- text-color -----------------------------*/

.text-client-dark{
    color: rgba(34,34,34,1);
}

.text-client-light{
    color: rgba(255,255,255,.8);
}
.text-client-primary{
    color: rgba(218,145,57,1);
}
.text-client-secondary{
    color: rgba(220,0,0,1);
}

.login-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	width:100vw;
	min-height: 100vh;
	background:rgb(12,20,30);
    overflow: hidden;
}
.login-content{
	padding-bottom: 0px;
	width: 25rem
}
.login-content p{
	padding-left: 1rem;
	padding-bottom: 0rem;
	color:#fff
}
.login-details{
	background:#fff;
	filter:drop-shadow(0px 7px 15px rgba(0,0,0,0.15));
	border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (max-width: 575.98px){
	.login-wrapper{
		align-items: flex-end;
		max-height: 100vh;
		overflow-y: hidden;
	}
	.login-content{
		padding-bottom: 0px;
		width: 100%;
		overflow: hidden;
	}
	.login-details{
		border-radius: 1.5rem 1.5rem 0rem 0rem;
	}
}
.login-content .heading{
	text-align: center;
	padding: 15px 0px;
	padding-left: 3rem;
	position: relative;
    text-transform: capitalize;
}
.login-content .heading .navbar-brand{
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'raleway-black', sans-serif;
    margin-bottom: .5rem;
    color: rgb(218,145,57)
}
.login-content .heading .navbar-brand:hover{
    color: rgb(218,145,57)
}
.login-content .heading .navbar-brand .logo img{
    max-width: 3.5rem !important;
    margin-right: .5rem;
}
.login-content .heading .back-btn{
	position: absolute;
	left: 1.5rem;
	top:50%;
	transform: translateY(-50%);
	max-width: 2.5rem;
}
.login-details .login-form{
	padding: 1rem 1.5rem;
	padding-bottom: 2rem;
}
.login-form p{
	color: #567;
	line-height: 100%;
	font-size: .95rem;
}
.loginForm p.lead{
	font-size: 14px;
	text-align: center;
}

p.pass-visibility{
	display: flex;
	align-items: center;
	margin-top:1rem;
	padding-left: 0px;
	font-size: .85rem;
}
#checkboxRep{
	display: inline-block;
	width: 1.2rem;
	height: 1.2rem;
	border: .1rem solid rgba(218,145,57,1);
	position: relative;
	box-sizing: border-box;
}
#checkboxRep:after{
	content:'';
	position: absolute;
	left: 0rem;
	top: 0rem;
	width: 1.2rem;
	height: 1.2rem;
	background: rgba(218,145,57,1);
	transform: translate(-.15rem, -.15rem) scale(0);
	transition: .15s all;
}
#checkboxRep.after:after{
	transform: translate(-.15rem, -.15rem) scale(1);
}
.forgot-password {
	margin-top: 2rem;
	font-size: .95rem;
	margin-bottom: 1.4rem;
}
.forgot-password a{
	color: rgb(220,0,0)
}

.page-header{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	padding: 0px 0px;
	width:100%
}
.page-header .page-heading{
    color: rgba(255,255,255,.9);
    margin-bottom: .5rem;
    font-size: 1.8rem;
}
.breadcrumb{
	background: transparent;
	padding:0;
}
.breadcrumb li{
	font-variant: small-caps;
	font-size: 14px;
	color: rgba(255,255,255,.8);
	padding-left:20px;
	position: relative;
}
.breadcrumb li:first-child{
	padding-left:0;
}
.breadcrumb li:before{
	content: '';
	position: absolute;
	left:5px;
	top: 50%;
	width:5px;
	height:5px;
	background: rgba(218,145,57,1);
	border-radius: 50%;
	transform: translateY(-40%);
}
.breadcrumb li:first-child:before{
	display: none;
}
.breadcrumb li a{
	color: rgba(255,255,255,.85);
}
.tab-content .details{
	margin-bottom: 25px;
}
.details h5.heading6{
	font-size: .7rem;
}
.details .heading5{
	padding:0px;
	font-family: 'opensans-semiBold', sans-serif;
	text-transform: initial;
	font-size: 1.2rem;
	line-height: 1.6rem;
	color:rgba(255,255,255,.9);
}

.btn-tab.active, .btn-tab:hover{
	background: rgb(168,35,28);
	color: #fff
}
p{
	margin-bottom: 1rem;
}
p:last-child{
	margin-bottom: 0rem;
}
.header-wrapper{
	padding: .3rem 0rem
}
.header-wrapper .nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.navbar-brand{
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: .5rem;
    color: rgb(218,145,57)
}
.navbar-brand h1{
    font-size: 1.8rem;
}
.navbar-brand:hover{
    color: rgb(218,145,57)
}
.navbar-brand img{
    max-width: 3.5rem !important;
    margin-right: .5rem;
}
.menubar-toggler{
	display: flex; background:none;
	align-items: center;
	margin-left:10px;
	cursor: pointer;
	transition: .4s all;
    color: rgba(255,255,255,.8);
    margin-right: 1rem;
}
.menubar-toggler img{
    max-width: 1rem;
	margin-right: .3rem;
	transform: rotate(180deg);
}
.menubar-toggler.active{
	align-items: center;
	flex-direction: row-reverse;
}
.menubar-toggler.active img{
	transform: rotate(0deg);
	margin-right: 0rem;
	margin-left: .3rem;
}

@media screen and (max-width: 992px){
	.menubar-toggler{
		flex-direction: row-reverse;
	}
	.menubar-toggler img{
		transform: rotate(180deg);
	}
	.menubar-toggler.active{
		align-items: center;
		flex-direction: row;
	}
	.menubar-toggler.active img{
		transform: rotate(0deg);
	}
}


.menubar-toggler .text{
	font-size: .8rem;
	text-transform: uppercase;
}
.header-wrapper{
	position: fixed;
	top: 0;
	left: 0;
	right:0;
	background: rgba(0,0,0);
	filter: drop-shadow(0px 2px 2px rgba(0,0,0,.15));
}
.header-wrapper .logo-container{
	display: flex;
	align-items: center;
}
.header-wrapper .nav-right{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-right .profile-img{
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	background-position: center top;
	background-size: cover;
	border-radius: 50%;
	margin-right: 1.3rem
}
.nav-right i{
	font-size: 1.6rem;
	line-height: 1.6rem
}
.nav-right a{
	color: rgba(255,255,255,.8)
}
.nav-right a:hover{
	color: rgb(218,145,57)
}

.content-wrapper{
	width: 100vw;
	margin-top: 4.5rem;
	height: calc(100vh - 4.5rem);
	display: flex;
	transition: .4s all;
	overflow: hidden;
	max-height: 2000px;
	transform-origin: left;
}
.content-wrapper.sidebar-hide{
	width: calc(100vw + 15rem);
    transform: translateX(-15rem);
}
@media screen and (max-width: 992px){
	.content-wrapper{
		width: calc(100vw + 15rem);
		transform: translateX(-15rem);
	}
	.content-wrapper.sidebar-hide{
		transform: translateX(0rem);
	}
}

.sidebar-wrapper{
	height: 100%;
	background:rgba(0,0,0, 1);
	width: 15rem;
	transition: .4s all;
	transform-origin: left;
}
@media screen and (max-width: 992px){
	.sidebar-hide .sidebar-wrapper{
		transform: scaleX(1);
		width: 15rem;
	}
}

.sidebar-wrapper .profile-container{
	padding: 1.5rem 0rem;
	display: block;
}
.sidebar-wrapper .profile-image{
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	display: block;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	margin:auto;
    margin-bottom: .5rem;
}
.sidebar-wrapper .heading5{
	color: rgba(255,255,255,.8);
	text-align: center;
	margin-bottom: .4rem;
	padding: 0px;
	font-size: .85rem;
	padding-top:.4rem;
}
.sidebar-wrapper p{
	font-size: .85rem;
	text-align: center;
	color: rgba(255,255,255,.8)
}
.menubar{
	max-height: calc(100vh - 15.5rem);
	overflow-y: auto;
}
.menubar .menu-link{
	display: block;
	padding: .8rem 0rem;
	position: relative;
	padding-left: 4.5rem;
	color: rgba(255,255,255,.6);
	font-size: .9rem;
}
.menubar .menu-link:hover{
	background: rgba(255,255,255,.1);
}
.menubar .menu-link i{
	position: absolute;
	left:1.5rem;
	top:50%;
	line-height:100%;
	font-size: 1.1rem;
	transform: translateY(-50%);
}
/* 
.main{
	width: 100vw !important;
	max-width: 1920px !important;
	height:100%;
	max-height: calc(100vh - 4.5rem);
	background: #e0e0e0;
	padding: 1rem 2rem;
	overflow-y: auto;
} */
.main{
	width: calc(100vw - 15rem);
	max-width: 1920px !important;
	height:100%;
	max-height: calc(100vh - 4.5rem);
	padding: 1rem 1rem;
	padding-top:0px;
	overflow-y: auto;
	transition:.4s all
}
.sidebar-hide .main{
	width: 100vw;
}

@media screen and (max-width: 992px){
	.main{
		width: 100vw;
		padding: 1rem 1rem;
	}
	.sidebar-hide .main{
		width: 100vw;
	}
}
.marquee-container{
	padding: .8rem 1rem;
	background: #000;
	margin-left:-1rem;
	margin-right:-1rem;
	margin-bottom: 1rem;
	overflow-x: hidden;
}
.marquee-container h5{
	color: rgba(255,255,255,.8)
}
.confirmation-page{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center ;
}
.confirmation-page .employee-profile{
	width:100%;
	max-width: 25rem;
	margin:auto;
	height:auto
}
.confirmation-page .profile-pic{
	position: relative;
}
.confirmation-page .uploadBtn{
	width: 2.3rem;
	height: 2.3rem;
	background: rgba(218,145,57,1);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	right:0;
	bottom: 0px;
}

.employee-profile{
	height: 100%;
	background: rgb(17,17,27);
	padding: 2rem 1.5rem;
	text-align: center;
}
.profile-pic{
	width: 6rem;
	height: 6rem;
	margin:auto;
	background-position: center top;
	background-size: cover;
	border-radius: 50%;
}
.employee-profile h5{
	color: rgba(218,145,57,1);
	margin-top:1rem
}
.employee-profile p{
	font-size: .85rem;
	margin-bottom: .6rem;
}
.employee-profile p a{
	color: #fff
}
.employee-details p{
	margin-bottom: .4rem;
	font-size: .8rem;
	font-family: 'opensans-semiBold', sans-serif;
	color: rgb(218,145,57)
}
.employee-details .heading5{
	padding: 0px;
	font-size: 1rem;
	color:rgba(255,255,225, .95)
}
.employee-details .detail{
	padding: .8rem 0px;
}

.page-content{
	margin-top: 2rem;
}
.head-buttons{
	margin-bottom: 1.2rem;
}
.feature-box{
	padding: 2rem 1.5rem;
	background: rgba(20,29,39,1);
	filter: drop-shadow(0px 1px 4px rgba(0,0,0,.8));
	margin-bottom: 1.5rem;
}
.feature-box:last-child{
	margin-bottom: 0rem;
}
.feature-box .heading{
	margin-top: -2rem;
	margin-left: -1.5rem;
	margin-right: -1.5rem;
	padding: .8rem 1.3rem;
	margin-bottom: 1.5rem;
	background: rgba(0,0,0,.5);
	color: rgb(218,145,57);
}
.btn-primary{
	border: 1px solid #007bff;
}
.btn-success{
	border: 1px solid #28a745;
}
.btn-secondary{
	border: 1px solid #6c757d;
}
.btn-danger{
	border: 1px solid #dc3545;
}

.jumbotron{
	background: rgba(20,29,39,1);
	box-shadow: 2px 2px 6px rgba(0,0,0,.8);
	padding: 1.5rem 1.5rem;
	
}

.main-thumb{
	height: 100%;
	padding: 1rem 0px
}
.main-thumb .jumbotron{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 0px;
	height:100%;
	position: relative;
	min-height: 8rem
}
.main-thumb .jumbotron .icon{
	position: absolute;
	right: 0;
	bottom:0;
	font-size: 6rem;
	opacity: .07;
	color: #fff;
	transform: translateY(1rem);
}
.main-thumb .jumbotron h4{
	color: rgba(255,255,255,.75);
}
.main-thumb .jumbotron h4:nth-child(2){
	font-size: 1rem;
}

.jumbotron .heading6{
	color: rgba(218,145,57,1);
	font-size: 1.1rem;
	font-family: 'barlow-semi', sans-serif;
	margin-bottom: 1.3rem;
}

.summary .box{
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border: 1px solid rgba(255,255,255,.4)
}
.summary{
	color: rgba(255,255,255,.9);
}
.preview{
	background: rgba(255,255,255,.2);
	height:100%;
	text-align: center;
	vertical-align: middle;
}
.preview h5{
	background-color: rgba(0,0,0,.9);
	padding: .5rem .5rem 
}
.reviews{
	border: 1px solid rgba(255,255,255,.5)
}
.reviews .review-heading{
	background: rgba(218,145,57,1);
}




.table-bordered th, .table-bordered td{
	padding: .5rem .5rem;
	border-color: rgba(200,200,200,1);
	color: rgba(255,255,255,.85);
	font-family: 'barlow-light', sans-serif;
	font-weight: normal;
	font-size: .95rem;
	line-height: 130%;
}
 .bg-warning{
 	background: rgba(232, 176, 6,.9) !important;
}
 .bg-warning td, .bg-success td, .bg-danger td{
	font-family: 'barlow-med', sans-serif  !important;
 }
.table-bordered thead th{
	border-bottom-width: 1px;
	border-bottom-color: rgba(255,255,255,.3);
	background-color: rgba(0,0,0,.4);
	color: rgba(218,145,57,1);
	font-family: 'barlow-semi', sans-serif;
}
.table-bordered thead td{
	background-color: rgba(0,0,0,.4);
	border-bottom-width: 1px;
	border-bottom-color: rgba(255,255,255,.3);
}
.table th{
	font-family: 'opensans-semiBold', sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	font-size: .9rem;
}
.table.v-middle th, .table.v-middle td{
	vertical-align: middle;
}

.table .table{
	background: transparent
}
.togglable-row{
	display: none;
}

.viewTc, .viewTc:hover{
	color: rgb(218,145,57)
}
.modal .tcImage{
	max-width: 600px;
	margin:auto;
	display: block;
	text-align: center;
	padding: 5px;
	border-radius: 5px;
	border:1px solid #678;
	background: transparent
}
.modal .modal-header{
	background:rgba(0,0,0, 1);
	color: #fff;
}
.modal .modal-content{
	background-color: rgba(20,29,39,1);
}
.modal {
	color: rgba(255,255,255,.85)
}
.modal .form-item{
	color:rgba(255,255,225, .95)
}

.input-group{
    margin-bottom: 1.6rem;
	position: relative
}
input,select,textarea{
    border:none;
    outline: none;
    background: none;
    border-bottom: 1px solid rgba(230,230,230,.8);
    padding: .5rem 1rem;
    background: rgba(230,230,230,.2);
    transition: .4s all;
}
input:focus,select:focus,textarea:focus{
    box-shadow: none;
    outline: none;
    border-bottom-color:rgba(218,145,57,1);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    margin-left:-.5rem;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
input.form-item[type="date"]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
input.form-item[type="date"]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
input.form-item[type="date"]::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent !important;
	font-size: .9rem;
}



.form-item{
    display: block;
    width: 100%;
    border-bottom-color: rgb(0,0,0,.3);
    font-size: .9rem;
    font-family: 'raleway-reg', sans-serif;
    padding: 1rem .8rem .8rem .8rem;
}
label.movable{
    position: absolute;
    left: .5rem;
    top: 1.5rem;
    transform: translateY(-50%);
    font-family: 'raleway-reg', sans-serif;
    font-size: .9rem;
    transition: .4s all; color:#232323;
}
label.movable span{
    font-size: 1rem;
    line-height: 1rem;
}
label.movable.active{
    top:0;
    transform: translateY(-50%);
    font-size: .75rem;
    color: rgb(218,145,57)
}
label.movable.active span{
    font-size: .9rem;
    line-height: .9rem;
}

.feature-box label, .feature-box input::placeholder, .confirmation-page label{
	color: rgba(255,255,255,.6);
}
.feature-box .form-item, .feature-box input, .feature-box select, .feature-box textarea,
.confirmation-page .form-item{
	color: rgba(255,255,255,.85);
}
.feature-box select option{
	color: rgba(34,34,34,1);
}
.table .form-item{
	padding: .4rem .5rem
}


.change-password{
	max-width: 35rem;
	margin:auto
}



.animate-slidein{
	opacity:1;
	transition:.5s all;
	transform: translateX(0);
	transform-origin: left;
}
html.is-animating .animate-slidein{
	opacity: 1;
	transform: translateX(100%);
}
html.is-leaving .animate-slidein{
	transform: translateX(-100%);
}

.animate-slide-up{
	opacity:1;
	transition:.5s all;
	transform: translateY(0);
	transform-origin: left;
}
html.is-animating .animate-slide-up{
	opacity: 1;
	transform: translateY(100vh);
}
html.is-leaving .animate-slide-up{
	transform: translateY(100vh);
}


/*******************************/

.pagging { height:20px; padding:8px 10px; line-height:19px; color:#949494; }
.pagging a{ background:url(img/pagging.gif) repeat-x 0 0; height:20px; float:left; padding:0 8px; border:solid 1px #d5d5d5; text-decoration: none; color:#949494; margin-left:5px;  }
.pagging b{ background:#2B6A91; color:#fff; height:20px; float:left; padding:0 8px; border:solid 1px #d5d5d5; text-decoration: none; margin-left:5px;  }
.pagging a:hover { border-color:#8c3521; background:#2B6A91; color:#fff; }
.pagging span{ float:left; margin-left:5px; padding-top:2px; }

/*******************************/