/*Action Button */
.fw .button {
	border: none;
	color: white;
	padding: .6vw 0px .6vw 0vw;
	text-align: left;
	text-decoration: none !important;
	position: relative;
	display: inline-block;
	font-size: 1vw;
	margin: 0 0 .1vw 0;
	white-space: nowrap;
	cursor: pointer;
	border-radius: .3vw;
	width: 100%;
}

.fw .button .fa {
	padding-left: 1vw;
	padding-right: 1vw;
}

.fw .button:hover {
	background-color: rgba(0, 0, 0, 0.5);
}

/*Info Button */
.fw .small-box {
	border-radius: .3vw;
	position: relative;
	display: inline-block;
	margin: 0 0 .1vw 0;
	box-shadow: rgba(0, 0, 0, 0.0980392) 0px 1px 1px;
	border: .01vw solid #b5b8c8;
	text-decoration: none !important;
	width: 100%;
	min-height: 6vw;
	box-sizing: border-box;
}

.fw .small-box:hover {
	color: rgb(249, 249, 249);
}

.fw .small-box>.inner {
	padding: 1vw;
}

.fw .small-box h3 {
	font-size: 2vw;
	font-weight: bold;
	margin: 0;
	white-space: nowrap;
	padding: 0;
}

.fw .small-box p {
	font-size: 1vw;
}

.fw .small-box .icon {
	transition-duration: 0.3s;
	transition-timing-function: linear;
	transition-delay: initial;
	transition-property: all;
	position: absolute;
	top: .5vw;
	right: .5vw;
	z-index: 0;
	font-size: 4.5vw;
	color: rgba(0, 0, 0, 0.14902);
}

.fw .small-box:hover .icon {
	font-size: 5vw;
}

.fw .small-box>.small-box-footer {
	position: relative;
	text-align: center;
	padding: .2vw 0 .2vw 0;
	color: rgba(255, 255, 255, 0.8);
	display: block;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.0980392);
	font-size: .8vw;
}

.fw .small-box>.small-box-footer:hover {
	color: white;
	background-color: rgba(0, 0, 0, 0.14902);
}

.fw .small-box>.small-box-footer .fa {
	padding-left: .3vw;
	padding-right: .3vw;
}

/* Tab Info Button */
.tab-box-wrap .fw {
	background: #F8F8F8;
	height: 100%;
	box-sizing: border-box ;
}

.fw .tab-box {
	position: relative;
	display: inline-block;
	padding: 10px;
	font-size: 16px;
	text-decoration: none !important;
	float: left;
	height: 40px;
	box-sizing: border-box;
	color: #6B6B6B;
	margin: 0 5px;
}

.fw .tab-box.vertical {
	display: block;
	float: none;
	min-height: 55px;
	height: auto;
	margin: 0;
}

.fw .tab-box:hover, .fw .tab-box.selected {
	color: #0E4A9C;
	border-bottom: 3px solid #0E4A9C !important;
	background: #FFFFFF !important;
	border-radius: 5px 5px 0 0;
}

.fw .tab-box.vertical:hover, .fw .tab-box.vertical.selected {
	border-left: 3px solid #0E4A9C !important;
	border-bottom: none !important;
	border-radius: 5px 0 0 5px;
	color: #0E4A9C;
}

.fw .tab-box.vertical .tab-box-text {
	margin-top: 20px;
	display: block;
}

.fw .tab-box.vertical .tab-box-text.no-value {
	margin-top: 5px;
}

.fw .tab-box .tab-box-value:before {
	content: " ("
}

.fw .tab-box .tab-box-value:after {
	content: ") "
}

.fw .tab-box.vertical .tab-box-value {
	position: absolute;
	font-weight: bold;
	top: 10px;
	left: 10px;
	display: block;
}

.fw .tab-box.vertical .tab-box-value:before, .fw .tab-box.vertical .tab-box-value:after
	{
	content: "";
}

.tab-wrapper.vertical .x-portal {
	margin-top: -5px;
}

.package-filter {
	height: 100%;
	width: 100%;
	background-color: #F8F8F8;
	position: relative;
	border-bottom: 3px solid #EEE !important;
	box-sizing: border-box;
}

.package-filter-item {
	padding: .5em;
}

.package-filter-text {
	top: 35%;
	left: 2%;
	max-width: 80%;
	position: relative;
}

.package-filter-btn {
	top: 30%;
	right: 2%;
	position: relative;
	border-radius: .3em;
	cursor: pointer;
	padding: .5em;
	background: #007661;
	color: #FFFFFF;
}

/* Colors */
.fw .bg-default, .fw .bg-lightblue, .fw .bg-blue, .fw .bg-orange, .fw .bg-red,
	.fw .bg-green {
	color: white;
}

.fw .bg-default {
	background-color: #c3c0c0;
}

.fw .bg-lightblue {
	background-color: #82AEEB;
}

.fw .bg-blue {
	background-color: #1B75BC;
}

.fw .bg-orange {
	background-color: #f39c12;
}

.fw .bg-red {
	background-color: #dd4b39;
}

.fw .bg-green {
	background-color: #6FB608;
}