/* Location container */

#list .location.container {
	padding: 20px 0;
}

#list .location label {
	background: none;
	color: #787878;
}

#list label {
	width: 96%;
	margin: 0 2%;
}

#list label.half {
	width: 44%;
	margin: 0 2%;
}

@media screen and (min-width: 0px) and (max-width:1200px) {  
  
	#list label.half {
		width: 96%;
		margin: 0 2%;
	}  
}  
		
	#list .location  label select,
	#list .location  label input	{   
		display: block;	
		float: left;
		height: 20px;
		margin-top: 5px;
		margin-left: 10px;
		padding: 0 4px;		
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;	
		border: none;		
		background: #f0f0f0;
		color: #969595;
	}
	
	#list .location  label select { 
		width: 73%;
	}
		
		#list .location  label.left {   	
			float: left;
		}
		
		#list .location  label.right {   	
			float: right;
		}
		
		#list .location label span {   
			display: block;	
			float: left;
			width: 60px;
			height: 20px;
			margin-top: 5px;
			padding: 0 4px;	
		}	
	
	#list .location  label .date-time	{ 
		width: 40%;
		height: 50px;
		float: left;
		padding: 0;
		margin: 0;
	}	
	
		#list .location  label .date-time input,
		#list .location  label .date-time-calendar	{ 
			width: 35%;
			height: 20px;
			float: left;			
		}
		
		#list .location  label .date-time-calendar { 
			margin-right: 10px;
		}
		
		#list .location  label .date-time-calendar input{ 
			width: 100%;
		}
		
		#list .location  label .date-time-calendar img  { 
			position: absolute;
			right: -10px;
			top: 0px;
			width: 22px;
			z-index: 100;
		}
		
#coupons.tab td:first-child {
    width: initial;
}

/* Buttons */

		.button {		
			position: relative;
			display: block;
			min-width: 140px;
			height: 30px;
			margin-right: 14px;
			margin-top: 0px;
			padding: 6px;			
			background: #3ec9f0;	
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
			border-radius: 3px;	
			text-transform: uppercase;
			letter-spacing: 0.02em;
			color: #fff;
			cursor: hand;
		}
		
		#list .button input[type="submit"],
		#list .button input[type="button"] 		{
			display: block;
			position: absolute;
			text-align: right;
			width: 140px;
			height: 30px;	
			background: none;
			border: none;
			margin: 0;
			padding: 6px;
			color: #fff;
			text-transform: uppercase;
			letter-spacing: 0.02em;
			cursor: hand;
		}
		
		.button.icons{				
			min-width: 40px;
		}
		
			.button:hover {		
				background: #3bc2e7;
				cursor: hand;				
			}
			
			.button.left{
				float: left;
				text-align: left;
			}
			
			.button.right{
				float: right;
				text-align: right;
			}
			
			.button img {
				height: 25px;
				margin: 3px 0 0 3px;
				display: block;
				float: left;
			}
		
/*----- Tabs -----*/
.tabs {
    width:100%;
    display:inline-block;
}
 
    /*----- Tab Links -----*/
    /* Clearfix */
    .tab-links:after {
        display:block;
        clear:both;
        content:'';
    }
 
    #list .container .tab-links li {
        margin:0px 5px;
        float:left;
        list-style:none;
		border: none;
    }
 
        .tab-links a {
            padding:9px 15px;
            display:inline-block;
            border-radius:3px 3px 0px 0px;
            background:#3ec9f0;
			font-family: 'Luxury-Gold', sans-serif;
            font-size: 16pt;
            color:#fff;
            transition:all linear 0.15s;
        }
 
        .tab-links a:hover {
            background:#3bc2e7;
            text-decoration:none;
        }
 
    li.active a, li.active a:hover {
        background:#fff;
        color:#3ec9f0;
    }
 
    /*----- Content of Tabs -----*/
    .tab-content {
        padding:15px;
        border-radius:3px;
        box-shadow:-1px 1px 1px rgba(0,0,0,0.15);
        background:#fff;
    }
 
        .tab {
            display:none;
        }
 
        .tab.active {
            display:block;
        }
		
