body {
  font-family:Tahoma, Geneva, sans-serif;
  font-size:12px;
  color:#000000;
  padding:0;
  margin:0;
}
.hh3{
	padding-left:10px;
	padding-top:10px;
	font-weight: 300;
	font-size: 28px;
	padding-bottom: 14px;
}

form, ul, li {
	padding: 0px;
	margin: 0px;
}
a:link, a:visited {
  text-decoration:none;
}

a:hover {
  text-decoration:none;
}

td, th{
	color:#595959;
	font-size:10px;
}
th{
	text-transform:uppercase;
}

#content {
   width: 980px;
   margin-left: auto;
   margin-right: auto;
}

#menu{
	 height:80px;
	 margin-bottom:5px;
}
#menu2{
	 height:25px;
	 margin-bottom:5px;
}
#menu li{
	background-color:#a87467;
	color:white;
	padding:20px 10px;
	width:88px;
	height:80px;
	vertical-align:middle;
	float:left;
}
#menu li.menu2{
	background-color:white;
	color:#a87467;
	padding:20px 10px;
	height:80px;
	width:120px;
	text-align:center;
	vertical-align:middle;
	float:left;
	list-style:none;
}
#menu li.menu3{
	background-color:white;
	padding:20px 10px;
	height:80px;
	width:250px;
	text-align:center;
	vertical-align:middle;
	float:right;
	list-style:none;
}
#menu2 li.menu4{
	text-align:center;
	vertical-align:middle;
	float:right;
	list-style:none;
	text-transform: uppercase;
	padding:1px 10px;
}
a.menumain:link, a.menumain:visited {
	color:white;
	font-size:22px;
}
a.menumain2:link, a.menumain2:visited {
	color:#a87467;
	font-size:20px;
}
a.menumain3:link, a.menumain3:visited {
	color:#d70019;
	font-size:20px;
}
a.menumain4:link, a.menumain4:visited {
	color:#d70019;
	font-size:16px;
	font-weight:500;
}

* {box-sizing:border-box}

.form-group{
	width:250px; float:left;
}

.btn {
	background-color:#d70019; padding:10px; font-size:16px; margin:10px; color:#fff; width:150px; text-align:center;
}

.div_selected{
	background-color:#cc081f;
	width:220px;
	height:180px;
	color:#fff;
}
.div_unselected{
	background-color:#8aadbf;
	width:220px;
	height:180px;
	color:#fff;
}

.h3_div{
	padding:20px 10px;
	font-size:100px;
	font-family:"Amatic SC",sans-serif;
	font-weight:700;
	text-align:center;
}

a {color:#d70019}

.providerlnk {color:#d70019 !important}

.buy-btn{
	display: block;
	border-radius: 5px;
	color: #fff;
	background: #d70019;
	padding: 12px 30px;
	min-width: 150px;
	font-size: 15px;
	text-align: center;
	border: none;
	margin:10px 20px 10px 80px;
	clear: both;
	font-weight:600;
}

.li_selected{
	background-color:#cc081f;
	width:190px;
	height:180px;
	color:#fff;
	padding:15px 10px;
	font-size:50px;
	font-family:"Amatic SC",sans-serif;
	font-weight:700;
	text-align:center;
	vertical-align:middle;
}
.li_unselected{
	background-color:#8aadbf;
	width:190px;
	height:180px;
	color:#fff;
	padding:15px 10px;
	font-size:50px;
	font-family:"Amatic SC",sans-serif;
	font-weight:700;
	text-align:center;
}

#step1, #step2, #step3, #total{
	float:left;
	width:180px;
	margin:10px;
	height: 300px;
}

#total{
	background-color:#d70019; padding:10px; font-size:18px; font-weight:600; margin:10px; color:#fff; width:150px; text-align:center; border: 2px solid #333; height:50px
}

#step2{
	width:250px;
	padding-top:10px;
}

#step3{
	width:220px;
	padding-top:10px;
}

#marks{
	float:left;
}

#attlogo{
	text-align:center;
	float:right;
	font-weight:600;
}

 /* Customize the label (the container)  checkbox */
.ckcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.ckcontainer input {
  position: absolute;

  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.ckcheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.ckcontainer:hover input ~ .ckcheckmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.ckcontainer input:checked ~ .ckcheckmark {
  background-color: #d70019;
}

/* Create the checkmark/indicator (hidden when not checked) */
.ckcheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.ckcontainer input:checked ~ .ckcheckmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.ckcontainer .ckcheckmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

 /* Customize the label (the container) radio */
.rdcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.rdcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.rdcheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.rdcontainer:hover input ~ .rdcheckmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.rdcontainer input:checked ~ .rdcheckmark {
  background-color: #d70019;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.rdcheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.rdcontainer input:checked ~ .rdcheckmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.rdcontainer .rdcheckmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.detail{
	font-size:14px;
}

.pclass{
/*	color:#fff !important ;*/
	padding:5px 5px;
	font-size:12px;
}

.pclass strong{
	font-size:14px;
}

.trips2{
	padding-top:10px;
}

/*
.n-slider ul.n-trip-list2 {
    margin: 0 2px;
    color: #000;
}
*/

.select-country {
  background-color: #fff;
  color: #cc081e;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  border: 2px solid #cc081e;
}

.dealer{
  width: 120px;
}

.n-row p{
  padding: 0px 5px;
}

.frm_buy{
  background-color: #eeeeee;
  padding: 10px;
}

@media (max-width: 800px) {

.dealer{
  width: 100px;
}

@media (max-width: 600px) {

.dealer{
  width: 65px;
}


@media (max-width: 480px) {

.dealer{
  width: 55px;
}

}

@media (max-width: 400px) {

.n-slider ul.n-trip-list li {
    padding: 2px 2px;
    float: left;
	min-width:150px;
	width:50%;
	min-height:430px;
}

.li2{
	min-height:250px !important;
}

.div_selected{
	float: left;
	margin: 5px;
	width:150px;
	height:230px;
}
.div_unselected{
	float: left;
	margin: 5px;
	width:150px;
	height:230px;
}
.h3_div{
	padding: 1px;
}
.n-slider ul.n-trip-list li a p {
	font-size:10px;
}

.li_selected{
	width:160px;
	font-size:40px;
}
.li_unselected{
	width:160px;
	font-size:40px;
}

.n-slider ul.n-trip-list {
    margin: 0px;
}

#marks{
	float:left;
}

#attlogo{
	text-align:center;
	float:left;
	font-weight:600;
}

.buy-btn{
	display: block;
	border-radius: 5px;
	color: #fff;
	background: #d70019;
	padding: 12px 30px;
	min-width: 150px;
	font-size: 15px;
	text-align: center;
	border: none;
	margin:10px 20px 10px 80px;
	clear: both;
	font-weight:600;
}


.dealer{
  width: 45px;
}

}
