/* =======================================

		Main Stylesheet
		
		Building on Twitter Bootstrap
		http://twitter.github.com/bootstrap/
		
========================================== */

@import url('assets/css/bootstrap.min.css');
@import url('assets/css/bootstrap-responsive.min.css');
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
	padding: 5px;
    font-size: 14px;
}
/* New styles below */

		label.valid {
		  width: 24px;
		  height: 24px;
		  background: url(assets/img/valid.png) center center no-repeat;
		  display: inline-block;
		  text-indent: -9999px;
		}
		label.error {
			font-weight: bold;
			color: red;
			padding: 2px 8px;
			margin-top: 2px;
		}
		.btn-primaryDE {
			padding: 0;
    		margin-left: 20px;
		}
.container {
	background-color: #fff;
	position: relative;
	z-index: 1;
	width: 1250px;
}
.background-img {
	background: url('../backgrounds/bg.jpg') no-repeat center fixed;
	background-size: cover;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	position: fixed;
	z-index: 0;
}
table.bg {
	width: calc(100% + 30px);
	background: url('../backgrounds/bg.png') no-repeat center;
    background-size: 100% 100%;
    position: relative;
}
table.bg:after {
    content: '';
    background: url(../backgrounds/ship-2.jpg) no-repeat center;
    position: absolute;
    width: 135px;
    height: 100px;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-size: contain;
}
table.bg td{
	padding: 30px;
	text-align: center;
}
.select {
    display: block;
    max-width: 215px;
    width: 100%;
    position: relative;
}

.new-select {
    position: relative;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    cursor: pointer;
    user-select: none;
}

.new-select__list {
    position: absolute;
    top: 45px;
    left: 0;
    border: 1px solid #ced4da;
    cursor: pointer;
    width: 100%;
    z-index: 2;
    background: #fff;
    user-select: none;
}

.new-select__list.on {
    display: block;
}

.new-select__item span {
    display: block;
    position: relative;
    padding: 0 15px 0 30px;
}
.new-select__item svg{
	position: absolute;
    width: 20px;
    left: 5px;
    top: 0;
}

.new-select__item span:hover {
    color: #12b223;
}


.new-select:after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 9px;
    top: 9px;
    background: url('path-to-image') no-repeat right center / cover;
    opacity: 0.6;

    -webkit-transition: all .27s ease-in-out;
        -o-transition: all .27s ease-in-out;
            transition: all .27s ease-in-out;

    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
}

.new-select.on:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}

table.table-kings {
	width: 100%;
}

table.table-kings .king-element{
	border: 1px solid #333;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
table.table-kings .king-element svg{
	width: 50px;
	color: silver;
}

table.table-kings .king-element:first-child svg{
    color: gold;
}
table.table-kings .king-element:last-child svg{
	color: #cd7f32;
}