@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--primary: #d7282d;
	--primary-hover: #0b55af;
	--secondary: #1c3555;
	--secondary-hover: #0b55af;
	--success: #198754;
	--success-hover: #198754;
	--white: #ffffff;
	--black: #000000;
	--blue: #0b55af;
	--dark-blue: #1c3555; 
	--grey: #c1c6c8;
	--dark-grey: #2d2926; 
	--font-body: "Inter", sans-serif;
	--font-body-weight: 400;
	--font-heading: "Inter", sans-serif; 
	--font-heading-weight: 700; 
	--font-heading-bolder: "Inter", sans-serif; 
	--font-heading-weight-bolder: 900; 
	--font-heading-text-transform: ;
	--font-color: #2d2926;
}


*{
	margin: 0 auto;
	padding: 0;	
}

html, body{
	height: 100%;	
}

div{
	box-sizing: border-box;	
}

.clear{
	clear: both;
	overflow: hidden;	
}

span, object, iframe, h1, h2, h3, h4, h5, h6, p, em, img, li, fieldset, form, label, legend, input, textarea, select, table, caption, tbody, tfoot, thead, tr, th, td, footer, header, audio, video, figcaption, a{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	box-sizing: border-box;	
}

body {
	font-family: var(--font-body);
	font-weight: var(--font-body-weight);
    font-size: 1rem;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

/*  ----------------------------------------------------------	*/
/*  					Sticky Footer 	 						*/
/*  ----------------------------------------------------------	*/
#wrapper {
  	min-height: 100%;
  	margin-bottom: -110px; /* Make the same as the footer height */
}

#wrapper:after {
	content: "";
	display: block;
}

#footer, #wrapper:after {
  height: 110px; 
}

/* ---------------------------------------------------- */
/* 						Styling							*/
/* ---------------------------------------------------- */
img{
	max-width: 100%;	
}

strong{
	 font-family: '';
	 font-weight: normal;	
}

.red, .errorReport{
	color:#C61018;	
}

.errorReport{
	margin-top: 5px;
	margin-bottom: 5px;
	display: block;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin: 25px 35px;
	margin-bottom: 35px;
    padding:0;
}

.smalltext{
	font-size: 10pt;
}

/*  ----------------------------------------------------------	*/
/*  					Form Fields 	 						*/
/*  ----------------------------------------------------------	*/

input, button, select{
	border: 0;
	border-radius: 0;
	-webkit-appearance: none; /* stop OS auto styling */
  	-webkit-border-radius: 0; /* stop OS auto styling */
}

input, select, textarea {
    vertical-align:middle;
	background: #EDEDED;
	font-family: var(--font-body);
	font-weight: var(--font-body-weight);
	width: 100%;
	max-width: 450px;
	margin: 10px 0px;
	padding: 7px;
	line-height: normal;
	border: 1px solid #A7A7A7;
}

select{
	appearance: menulist;
	-webkit-appearance: menulist;
	-moz-appearance: menulist;
}

input.smallwidth{
	max-width: 350px;
}



.button, a.button, button, input[type=button]{
	background: #c61018;
	border: 2px solid white;
	color: #ffffff;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
	font-family: var(--font-heading-bolder);
	font-weight: var(--font-heading-bolder);
	cursor: pointer;
	text-decoration: none;
	height: 37px;
	padding: 0px 10px;
	line-height: 33px;
	border-radius: 4px;
	vertical-align:middle;
	font-size: 13pt;
	width: auto;
}

input[type=submit], button{
	line-height: normal !important;
}

input[type=submit].large, button.large, .button.large, a.button.large{
	padding:0 15px;
	font-size: 20px;
	line-height: 43px;
	height: 45px;
}

input[type=submit].fleft, button.fleft, .button.fleft{
	margin: 10px 0px;
	margin-right: 10px;
	float: left;
}

input[type=submit].fright, button.fright, .button.fright{
	margin: 10px 0px;
	margin-left: 10px;	
	float: right;
}


input[type=submit], input[type=checkbox]{
	width: auto;
}

input[type=checkbox]{
	appearance: checkbox;
	-webkit-appearance: checkbox;
}

.button.disabled {
	background: #9e9e9e;
	pointer-events: none;
}

/*  ----------------------------------------------------------	*/
/*  					Header Tags 	 						*/
/*  ----------------------------------------------------------	*/

h1, h2, h3, h4, h5, h6{
	position: relative;
    margin: 0px 0px 30px 0px;
    padding: 0px 0px 0px 0px;
    font-family: var(--font-heading-bolder);
	font-weight: var(--font-heading-bolder);
    color: #002173
}

h1{ 
    font-size: 36px;
    line-height: 40px;}

h2{ margin: 30px 0px 15px 0px;

    font-size: 30px;
    line-height: 30px;
    }

h3{ margin: 15px 0px 15px 0px;    
    font-size: 24px;
    line-height: 29px;
    }

h4{ margin: 15px 0px 10px 0px;
    font-size: 22px;
    line-height: 27px;
	color: #000000;
    }

h5{ margin: 15px 0px 10px 0px;
    font-size: 18px;
    line-height: 23px;
	color: #000000; }

h6{ margin: 15px 0px 10px 0px;
    font-size: 16px;
    line-height: 21px;
	color: #000000; }

/*  ----------------------------------------------------------	*/
/*  						Links 	 							*/
/*  ----------------------------------------------------------	*/

a{
	color: #c61018;
	cursor: pointer;
}

a:hover{
	transition: 0.3s ease;
}


a.button{
	display:inline-block;	
}



.btn{
	font-family: var(--font-heading-bolder);
	font-weight: var(--font-heading-bolder);
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.btn-primary{
	background-color: #c61018;
	border: 2px solid #FFFFFF;
	color: #ffffff !important;
}

.btn-primary:hover{
	background-color: #c61018;
	border-color: #FFFFFF;
	color:#ffffff;
}

 .btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary{
	background-color: #c61018;
	border: 2px solid #FFFFFF;
	color: #ffffff;
	/*
	background-color: #ffffff;
	border: 2px solid #c61018;
	color: #c61018;*/
}

.btn-secondary:hover{
	background-color: #c61018;
	border-color: #FFFFFF;
	color:#ffffff!important;
}

.btn-green{
	background-color: #28a745;
	border:  2px solid #28a745;
	color:#ffffff !important;
}

.btn-green:hover{
	background-color: #28a745CC;
	border-color:  #28a745;
	color:#ffffff !important;
}

.btn-red {
	background-color: #c61018;
	color: #fff;
	border: none;
}

/*  ----------------------------------------------------------	*/


#header ul, #navigation ul, #footer ul{
	padding-left: 0;
}

#header li, #navigation li, #footer li{
	display: inline-block;
	list-style-type: none;
}


/*  ----------------------------------------------------------	*/
/*  						Header 	 							*/
/*  ----------------------------------------------------------	*/
#header{
	background: #002173;
	color: #ffffff;
	padding: 14px 0px;
	padding-top: 14.5px;
	margin-bottom: 40px
}

#header img.logo{
	height: 40px;
	margin-bottom: -3px;
}

#header .button{
	margin-top: 0;
}

/*  ----------------------------------------------------------	*/
/*  						Footer 	 							*/
/*  ----------------------------------------------------------	*/
#footer{
	
}

#footer .container{
	border-top: 1px solid #E2E2E2;
	color: #666666;
	font-size: 14px;
	line-height: 19px !important
}

.f-copyright{
	display: inline-block;
	padding-top: 10px;
}

.f-IBA{
	float: right;
	text-align:right;
	display: inline-block;
	max-width: 460px;
	padding-top: 10px;
}

.f-IBA .logo-iba{
	display: inline-block;
	float: right;
	margin-left: 10px;
	margin-top: -8px;
}

.f-IBA .logo-iba img{
	height: 50px;
}



/*  ----------------------------------------------------------	*/
/*  						Category 	 							*/
/*  ----------------------------------------------------------	*/

.catItem{
	position: relative;
    border: 1px solid #e2e2e2;
    padding-top:25px;
	text-align:center;
}

.catItem a{
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
}

.catItem:hover {
    border: 1px solid #000000;
}

.catItem:hover .redeemNew{
	border-top-color:#002173;
}

.catItem .inUseOverlay{
	background: #efefef;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	opacity: 0.6;
}

.catItem:hover .inUseOverlay, .catItem:hover h6.redeem{
	opacity: 0;
}

.catItem h6.redeem{
	margin-top: -10px;
	margin-bottom: -11px;
}

.recommendedExtra {
	border: 3px solid #c61018;
	position: relative;
}

.recommendedExtra .buy-now {
	position: absolute;
	top: 0;
	left: 50%;
	width: 70%;
	background-color: #c61018;
	transform: translate(-50%, -50%);
	color: #fff;
	font-weight: bold;
	padding: 2px 4px;
}
.extraImage {
	margin-top: 10px;
}
/*  ----------------------------------------------------------	*/
/*  				Voucher Redemption 	 	 					*/
/*  ----------------------------------------------------------	*/

#voucherBanner {
	position: relative;
	top: -48px;
}

#voucherBanner img {
	/* display: block; */
}

#voucherBanner .bannerText {
	position: absolute;
	width: 65%;
	top: 50%;
	right: 0;
	margin-right: 3%;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
}

.agencyVouchers p {
	font-size: 1.08em;
}

.agencyVouchers .stages {
	display: flex;
	justify-content: space-between;
}

.agencyVouchers .errorReport {
	width: 100%;
	text-align: center;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 15px;
}

.agencyVouchers .stage {
	border-radius: 10px;
	width: 49%;
	padding: 20px;
	margin: 20px 0px;
	border: 1px solid #CCCCCC;
	text-align: center;
}

.agencyVouchers .stage input[type=button] {
	height: 50px;
	min-width: 150px;
}


@media only screen and (max-width: 768px) {
	#voucherBanner {
		top: 10px;
		display: block;
	}

	#voucherBanner .bannerText {
		display: block;
		position: relative;
		margin-right: 0;
		width: 100%;
	}

	#voucherBanner .bannerText h1 {
		margin-bottom: 0;
	}

	#voucherBanner .bannerImage img {
		display: none;
	}

	.agencyVouchers .stages {
		flex-direction: column;
	}

	.agencyVouchers .stage {
		width: 100%;
	}
	.delline {
		text-align: left;
	}
}
/********************************************
 *              ORDER HISTORY               *
 ********************************************/
table#orderTable.basket tr{
    border-bottom: 1px solid #ECECEC;
}

table#orderTable.basket td{
    border-bottom: none;
}

#orderTable .bquantity, #orderTable .right-td{
    background: transparent !important;
    color: #000;
}

#orderTable .right-td{
    text-align: center;
    padding-right: 45px;
    padding-left: 45px;
    min-width: 170px;
}

#orderTable .order-table-data{
    border-right: 1px solid #ECECEC;
}

#orderTable .order-data-container{
    border: none;
    display: none;
}
/********************************************
 *              ORDER SUMMARY               *
 ********************************************/
.order-summary-wrap .row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.order-section-header {
    border: 1px solid #dee2e6;
    border-bottom: none;
}

.order-section__text{
    padding: 15px;
}

.order-section__text:not(:last-child){
    border-right: 1px solid #dee2e6;
}

.order-section-content{
    border: 1px solid #dee2e6;
}

.order-section-totals {
    border: 1px solid #dee2e6;
    border-top: 0;
}

.order-section-totals__content {
    padding: 15px;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
a.btn-sm:visited {
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 767px){
    .order-section__text:not(:last-child){
        border-bottom: 1px solid #dee2e6;
    }
}

.modal-content .thead-light{
    background-color: #EDEDED !important;
}