@charset "utf-8";
/* CSS Document */

/* Layout for header - title and logo */

body {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
	color: #000;
	font-size: 12px;
	margin: 0;
	}

a {text-decoration: none;}

h2 {
	font-size: 1.2em;
	padding-top: 10px;
	}

#wrapperContainer {
	display: flex;
	width: 100%;
	background: #144430; /* dark green */
	padding: 5px 0;
	margin: auto;
	}

#wrapperHeader {
	display: flex;
	width: 100%;
	margin: auto;	
	}

.columnsHeader {
	display: flex;
	width: 70%;
	margin: auto;
	}

.colHeader {
	display: flex;
	padding: 2px;
	color: #fff;
	box-sizing: border-box;
	}

.colHeader-10 {
	display: flex;
	width: calc(10% - 4px);
	justify-content: center;
    align-items: center;
	}
	
.colHeader-60 {
	display: flex;
	width: calc(60% - 4px);
	padding-top: 10px;
	justify-content: center;
	align-items: center;
	}
	
.colHeader-30 {
	display: flex;
	flex-direction: column;
	width: calc(30% - 4px);
	padding-right: 2px;
	}

	
/* -------------- Society name ----------------- */

.headerText {
	display: flex;
	font-size: 3em;	
	width: 100%;
	justify-content: center;
    align-items: center;
	}

.loginBox {
	background-color: inherit;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 10px 2px;
	}
	
.loginBox img {	margin-left: 8px;}	
	
/* ---------- Responsive button image ---------- */

.responsiveImg {
  	max-width: 100%;
	max-width: !important;
	height:auto;
	}
	
.responsiveImg1 {
  	max-width: 100%;
	max-width: !important;
	height:auto;
	}
	
/* ----------- Responsive logo image -------- */

.responsiveLogo {
  	max-width: 100%;
	max-width: !important;
	height: auto;
	}

	
/* ----------------- Search code ---------------------------------- */	

.searchBox {
	background-color: inherit;
	display: flex;	
	width: 100%;
	direction: rtl;
	display: flex;
	justify-content: flex-end;
	}
	
.search {
    display: flex;
	flex-direction: row;
  	right: 0;
	width: 100%;
	margin-top: 12px;
	overflow: auto;
	}

.search input[type="text"] {
	border: 0px;
	width: 60%;
	padding: 5px 8px;
	text-align: left;
	font-size: 1.1em;
	}

.search input[type="text"]:focus {
	outline: 0;
	}

.search input[type="submit"] {
	border: 0px;
	background: none;
	background-color: #99cabd; /* m blue */
	color: #000;
	float: right;
	padding: 6px 5px 5px;	
    cursor:pointer;
	font-size: 1em;
	font-weight: 500;
	}

/* ------   end of search --------*/

.loginButton {
	max-width: 100%;
	flex-wrap: wrap;
	height:auto;
	}
	
.basketButton {
	max-width: 100%;
	flex-wrap: wrap;
	height:auto;
	}
	
@media screen and (max-width: 800px)
{	
.colHeader-10 {
	display: none;
	width: 0%;
	}
	
.colHeader-60 {
	width: 70%;
	align-items: left;
	padding-top: 2px;
	}
	
.headerText {
	text-align: left;
	align-items: left;
	padding-left: 4px;
	font-size: 2.4em;
	}
	
.columnsHeader {
	display: flex;
	width: 100%;
	margin: auto;
	}
	
.responsiveLogo {margin-left: 10px;}
	
.loginBox {width: 90%;}

}

@media screen and (min-width: 800px) and (max-width: 1200px)
{	
.headerText {
	text-align: left;
	padding: 4px;
	font-size: 2.4em;
	}
.columnsHeader {
	display: flex;
	width: 100%;
	margin: auto;
	}
	
.responsiveLogo {margin-left: 10px;}

}

@media only screen and (min-width : 150px) and (max-width : 780px)
{	
.search input[type="submit"] {width: 100%; padding: 3px 0 2px;}

.search input[type="text"] {width: 100%;  padding: 3px 0 2px; text-align: center;}

.responsiveImg1 {display:none;}

}