.channel.little, #ticketOffice .service_container {
	width: 30px;
	height: 30px;
	display: inline-block;
	margin: 5px 20px 5px 0px;
	border-radius: 4px;
	padding: 2px;
	cursor: pointer;
	/* background-color: #c2c2c2; */
	color: #fff;
	vertical-align: middle;
    cursor: inherit;
}
.channel.little img {
    width: auto;
}

#ticketOffice .service_container i {
    /* font-size: 12px; */
}

#ticketOffice .service_container i:before {
    font-size: 26px !important;
}

#ticketOffice .fare-attr {
	margin: 10px 5px 0px 0px;
	display: inline-block;
}

/* #ticketOffice .newprice {
    padding: 0px !important;
    text-align: right;
    font-size: 20px;
} */

#ticketOffice h3 {
    font-weight: bold;
}

#ticketOffice .inline-elem {
    display: inline-block;
    width: 100%;
	padding: 5px 18px 5px 18px;
}

#ticketOffice #fares {
}

#ticketOffice #cart {
}


#ticketOffice #cart md-card {
	margin: 5px 18px 18px 5px;
}

#ticketOffice #cancelOperation {
	display: none;
	margin-bottom: 30px;
}

#ticketOffice .fareNote {
	background-color: rgba(255, 203, 91, 0.5);
	padding: 4px 15px;
	border-radius: 5px;
	text-transform: uppercase;
}

#ticketOffice i.link-o:after {
	content: " ";
    display: block;
    width: 2px;
    height: 10px;
    background: #666d6d;
    position: relative;
    left: 6px;
    margin-top: -2px;
    margin-bottom: -5px;
}

#ticketOffice .title {
	margin-bottom: 10px;
}
#ticketOffice .title i {
	margin-right: 10px;
}

#ticketOffice md-autocomplete {
	background: none;
}

#ticketOffice md-autocomplete-wrap {
	border: none;
	box-shadow: unset;
}

/* #ticketOffice .inline-elem:nth-child(odd) {
    padding: 5px 5px 5px 18px;
}

#ticketOffice .inline-elem:nth-child(even) {
    padding: 5px 18px 5px 5px;
} */

#ticketOffice .inline-elem md-card {
    margin: 0px;
}

#ticketOffice #peripheralId {
    /* vertical-align: text-bottom; */
    color: #00AB00 !important;
    /* font-weight: bold; */
    /* background-color: #fff; */
    /* padding: 3px 10px; */
    /* border-radius: 5px; */
    /* margin-left: 5px; */
    margin-right: 30px;
}
#ticketOffice #peripheralId .mdi-alert {
    color: red !important;
}

#ticketOffice .ticket-icon {
    vertical-align: top;
    /* color: #ddd; */
}

#ticketOffice .ticket-icon:before {
    font-size: 18px;
}

#ticketOffice .ticket-icon.loading {
	vertical-align: inherit;
    animation: rotation 1s linear infinite;
}

#ticketOffice .ticket-icon.done {
	vertical-align: inherit;
    animation: done 1.5s linear 1;
	/* opacity: 0; */
	color: #00AB00 !important;
}

#ticketOffice .fare {
    border: 1px solid #ff6c8f;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 10px;
}

#ticketOffice .fare-title {
    text-transform: uppercase;
	margin: 10px 0px;
}

@media screen and (max-width: 800px) {
    #ticketOffice .inline-elem {
        display: block;
        width: 100%;
        padding: 0px;
        margin: 2px 0px;
    }
    #ticketOffice .inline-elem:nth-child(even), #ticketOffice .inline-elem:nth-child(odd) {
        padding: 0px;
    }
}

@media screen and (min-width: 801px) and (max-width: 991px) {
    #ticketOffice .inline-elem {
        display: block;
        width: 100%;
        padding: 5px 18px;
    }
    #ticketOffice .inline-elem:nth-child(even), #ticketOffice .inline-elem:nth-child(odd) {
        padding: 5px 18px;
    }
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}
@keyframes done {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		/* opacity: 1; */
	}
	50% {
		-webkit-transform: scale3d(2, 2, 2);
		transform: scale3d(2, 2, 2);
		/* opacity: 1; */
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		/* opacity: 1; */
	}
}
