/* Reset */

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	color: #000;
	font-size: 62.5%; /* modified so that the upcoming rem units will be similar to pixel size in terms of units for ease of use */
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-family: Arial, Helvetica, sans-serif;
}

body {
	font-size: 16px;
	background: #fff;
	background-color: #fff!important;
	background-image: none!important;
}

header,
footer,
.button,
ul,
ol {
	display: block;
	clear: both;
}

.main-wrapper {
	max-width: 768px;
	margin: auto;
}

.main-footer {
	padding: 16px 8px;
	text-align: center;
}
.main-footer br {
    display: none;
}
.helpText {
    font-size: 14px;
    padding: 0;
    color: #000;
}

.helpText span.secondary,
.helpText span.secondary a {
    color: #30aff6;
}

#footer {
	border: none;
	height: 0;
	padding: 0;
	width: 100%;
    background-image: none;
    background-color: #fff;
}

img {
	max-width: 100%;
	height: auto;
}

p {
 font-size: inherit;
 padding: inherit;
 color: #808080;
}

.sign-in-form-wrapper .text-left {
	text-align: left;
}

.sign-in-form-wrapper .text-left p {
    margin-bottom: 20px;
}

.sign-in-form-wrapper .text-left p.mandatory {
	margin-bottom: 0;
}



/* Header */

.main-header {
	background: #fff;
}


/*-------------------------------*/
/*----- Registration Header -----*/
/*-------------------------------*/
header {
    max-width: 100%;
    z-index: 999999999;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
}
header section {
    position: relative;
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 24px 12px;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
header section .logo {
    max-height: 30px;
    min-height: 30px;
    max-width: 180px;
    margin: 0 0 0 68px;

    -moz-transition: margin .25s ease;
    -webkit-transition: margin .25s ease;
    -ms-transition:  margin .25s ease;
    transition: margin .25s ease;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
}
header section .logo a {
    width: 100%;
    min-width: 80px;
    height: auto;
    min-height: 30px;
    max-height: 30px;
    background: #fff;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header section .logo img {
    width: 100%;
    height: 100%;
}
header section .registerLogoWrap {
    position: absolute;
    left: 18px;
}
header section .registerLogoWrap .gui-btn {
    margin-bottom: 0;
    font-weight: 400;

    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}
@media screen and (min-width: 244px) {
    header section .logo {
        max-height: 70px;
        margin: 0 68px;
    }
    header section .logo a {
        width: 100%;
        min-width: 80px;
        height: 100%;
        min-height: 30px;
        max-height: 70px;
    }
}

/* Main */

.main {
	background-color: #f2f2f2;
	float: left;
	width: 100%;
	padding: 0;
}


/* Divisions */
.sign-in-form-wrapper,
.actions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    max-width: 1000px;
    margin: auto;
}
.sign-in-form-wrapper.single-box {
    max-width: 500px;
}
.sign-in-form-wrapper.txt-center {
    text-align: center;
}
.actions nav {
	width: 100%;
}
.sign-in-form-wrapper {
	margin-top: 18px;
	padding: 0 8px;
}

.one-half {
	background-color: #fff;
	box-shadow: 0 0 2px rgba(0,0,0,.2);
	padding: 30px;
	margin: 0 10px 10px;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: column wrap;
    -ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-webkit-flex: 1 0 calc(100% - 20px);
    -ms-flex: 1 0 calc(100% - 20px);
    flex: 1 0 calc(100% - 20px);
    width: calc(100% - 20px);
}
.one-half.primary {
    border-top: 8px solid #4b9626;
    margin-bottom: 19px;
}
.one-half.right {
    margin-bottom: 19px;
}
.one-half.secondary {
    border-top: 8px solid #ec2367;
    margin-bottom: 19px;
}
.one-half.vertical-center-content {
	-webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .one-half {
        -webkit-flex: 1 0 calc(50% - 20px);
        -ms-flex: 1 0 calc(50% - 20px);
        flex: 1 0 calc(50% - 20px);
        width: calc(50% - 20px);
    }
    .one-half.primary,
    .one-half.secondary {
        margin-bottom: 10px;
    }
    .one-half.right {
        margin-bottom: 10px;
    }
}






/* Forms */

form {
    text-transform: capitalize;
}
form p.new-customer-division-account {
    text-transform: none;
}

.input-wrapper {
    margin-bottom: 10px;
}

.sign-in-form-wrapper input,
.sign-in-form-wrapper input:not(.btn),
#dobRow select {
 border: 1px solid #999;
 font-size: 12px;
 height: 40px;
 margin: 4px 0;
 padding: 0 8px;
 border-radius: 0;
}

.sign-in-form-wrapper input.input-has-strength {
    margin: 4px 0 0;
}

.sign-in-form-wrapper .password-strength {
    font-size: 12px;
}

.sign-in-form-wrapper input,
.sign-in-form-wrapper input:not(.btn) {
 width: 100%;
 -webkit-appearance: none;
}

.inner h2.title {
    margin-bottom: 20px;
    line-height: 20px;
}
.inner h2.title span.title-mandatory {
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: normal;
}

/* Irish Date Of Birth Fields */

#dobRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#dobRow select {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}
#dobRow select:first-child {
    margin-right: 10px;
}
#dobRow select:last-child {
    margin-left: 10px;
}

/* Irish New Customer Panel Message */
.existingPanelMessage h3 {
    margin-top: 40px;
}
.existingPanelMessage p {
    margin-bottom: 20px;
}


/* Errors */

.signInErrorTip {
    font-size: 12px;
    display: block;
    border: solid 1px #E10020;
    color: #E10020;
    background-color: #FDEEF0;
    padding: 4px;
    z-index: 1000000;
    border-radius: 0;
    margin-bottom: 4px;
 }

 .signInErrorTip p {
    color: #E10020;
 }

 .signInErrorTip li {
    list-style: none;
 }
 
 .errorMessageTop {
    margin-bottom: 20px;
 }
 
 .errorMessage {
    color: #ff0000;
    list-style: none;
 }

/* Colours */

.secondary {
    color: #30aff6;
}




/* Buttons */

.btn {
 font-size: 16px;
 text-align: center;
 text-transform: capitalize;
 text-decoration: none;
 color: #fff;
 background: #fff;
 border: none;
 border-radius: 0;
 font-weight: bold;
 text-shadow: none;
 margin: auto;
 padding: 0 16px;
 min-height: 40px;
}

.btn:active {
 box-shadow: 0px 0px 4px 1px rgba(0,0,0, 0.1)inset;
 -webkit-transform: translate(1px, 1px);
 -moz-transform: translate(1px, 1px);
 -ms-transform: translate(1px, 1px);
 transform: translate(1px, 1px);
}

a.btn.tertiaryBtn {
 max-width: 100px;
 color: #808080;
 text-decoration: none;
}

.actions .prev.btn {
	margin: 10px 0 0 2px;
	float: left;
}

.prev.btn.icon-leftarrow:before {
 opacity: 0.5;
}

.chatButton.secondary {
 background-color: #30aff6;
}

/*.one-half .btn {
    min-width: 150px;
}*/





/* Links */

a,
a:link,
a:visited {
 color: #808080;
}

.form-link {
 text-align: right;
 display: block;
 font-size: 12px;
}





/* Remember Me Checkbox */

.sign-in-form-wrapper input[type=checkbox] {
 -webkit-appearance: checkbox;
}

.remember-wrapper {
 margin-bottom: 16px;
 position: relative;
 color: #808080;
}

.remember-wrapper {
 text-align: left;
}

.remember-wrapper input[type=checkbox] {
 width: 20px;
 height: 20px;
 float: left;
 margin: 0 8px 0 0;
}

label[for=remember],
.remember-wrapper label {
 font-size: 13px;
}

.remember-wrapper small {
 display: block;
 font-size: 11px;
}

.input-wrapper a.form-link.forgottenPassword-link,
.input-wrapper a.form-link.forgottenAccount-link {
    margin-top: 4px;
}

.sign-in-form-wrapper .btn {
    width: 100%;
}





/* Overrides */

.brandLogo {
 float: none;
 margin: auto;
 height: auto;
 width: auto;
 display: table;
}

/* Hide Minimised Brand Logo??? */
.brandLogo.minimised {
 display: none;
}

.brandLogo img {
 margin: 0;
 padding: 0;
}

.brandLogo a {
 display: block;
 float: none;
 margin: auto;
 padding: 4px;
}





/* Helpers & Hacks - Don't know why we are doing it like this - JL */

.element-invisible {
 position: absolute !important;
 height: 1px;
 width: 1px;
 overflow: hidden;
 clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
 clip: rect(1px, 1px, 1px, 1px);
}

.actions {
    padding: 0 8px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}




/* FOR HELLO SODA */ 
form.new-customer a {
        display: block;
    margin: 0 auto;
    margin-bottom: 20px
}
form.new-customer a, form.new-customer div a {
    margin-bottom: 24px;
}
body.eire form.new-customer a, body.eire form.new-customer div a {
    margin-bottom: 0;
}
body.eire form.new-customer .eire-btn-message {
	position: relative;
}
body.eire form.new-customer a.btnPayByCard {
    margin-top: 12px;
}
body.eire form.new-customer .eire-pay-by-card-message {
    position: absolute;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 41px;
    bottom: 0;
}
body.eire form.new-customer .eire-pay-by-card {
    position: relative;
    max-width: 100%;
    background: #ff71b5;
    border: 1px solid #ee529d;
    padding: 12px;
}
body.eire form.new-customer .eire-pay-by-card p {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-transform: none;
}
body.eire form.new-customer .eire-pay-by-card-message.collapse-content {
	display: none;
}

p.social-below, p.social-above {
    font-size: 12px;
    margin: 10px 0px;
}
.social-sign-in-btn .twitter,
.social-sign-in-btn .facebook {
    width: 240px;
}




/* chat button */
#chatBtnContainer {
    padding: 10px 2px 0 0;
    display: none; /* needs to be set to none, JS will make it visible when (or if) an operator is available */
    float: right;
    text-align: left;
}
a.chatButton {
	padding: 10px!important;
}




/* Footer - BV Reviews */
body .logoContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

body .logoContainer > div {
	margin: 0px 10px;
}

.bazaarVoiceSellerRatings {
	text-align: center;
}
.bazaarVoiceSellerRatings img.bv_bvBranding__logo,
.bazaarVoiceSellerRatings .bv_segment.bv_summary__ratingsLink,
.bazaarVoiceSellerRatings .bv_bvBranding,
.bazaarVoiceSellerRatings .bv_segment.bv_summary__copy,
.bazaarVoiceSellerRatings .bv_segment.bv_summary__rating,
.bazaarVoiceSellerRatings .bv_offscreen {
  display: none;
}

/*** Reset ***/
.bazaarVoiceSellerRatings img {
  border-style: none;
  width: 100px;
}

/*** Core BV styles ***/
.bazaarVoiceSellerRatings .bv {
  font-family: sans-serif;
  font-size: 2em;
  line-height: 0.8em;
  font-weight: normal;
  margin: 0;
  padding: 0;

  /* Otherwise, grid columns may wrap */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bazaarVoiceSellerRatings .bv *,
.bazaarVoiceSellerRatings .bv *:before,
.bazaarVoiceSellerRatings .bv *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/* Stars */
.bazaarVoiceSellerRatings .bv .bv_stars {
  position: relative;
  display: inline-block;
}

.bazaarVoiceSellerRatings .bv .bv_stars__string {
  color: #ccc;
  font-size: 1.2em;
}

.bazaarVoiceSellerRatings .bv .bv_stars__string--top {
  /* OVERRIDE_HIDE_LINE Note! Do not change the value of the color property without also changing */
  /* OVERRIDE_HIDE_LINE the replacement code located in lib/cssNode.es6.js */
  color: #ffd600; /* STAR_COLOR REPLACE */
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.bazaarVoiceSellerRatings .bv .bv_stars__string--bottom {
  /* OVERRIDE_HIDE_LINE Note! Do not change the value of the color property without also changing */
  /* OVERRIDE_HIDE_LINE the replacement code located in lib/cssNode.es6.js */
  color: #fff0a4; /* EMPTY_STAR_COLOR REPLACE */
}
.bazaarVoiceSellerRatings .bv_segmentGroup.bv_summary {
  margin: 10px 0px 0px 0px;
}

.bazaarVoiceSellerRatings .bv_ratings-link {
  text-decoration: none;
  font-size: 0.4em;
  color: #808080;
}
/* END Footer - BV Reviews */


/* Sign in new customer division */
.new-customer-division-account {
    font-size: 13px;
    margin-bottom: 24px;
    text-align: center;
}

/* sign in inactivity message */
.inactivity-message {
    display: flex;
    padding: 0 9px;
    width: 100%;
}
.message-details {
    margin: 0 auto 24px;
    padding: 12px 28px;
    border: 1px solid #FFC600;
    background-color: #FFF5D2;
    border-radius: 6px
}
.message-details h3 {
	padding: 0;
    margin: 0 0 8px;
    color: #252525;
    font-size: 20px;
    line-height: 28px;
}
.message-details p {
    padding: 0;
    color: #252525;
    font-size: 12px;
    line-height: 16px;
}


/* media queries */
@media only screen and (min-width: 25.875em) and (max-width: 43em) {
    .sign-in-form-wrapper input,
    .sign-in-form-wrapper input:not(.btn) {
        font-size: 14px;
    }
}

@media only screen and (min-width: 36.875em) /* 36.875em = 590px */ {
    .brandLogo a {
        padding: 20px;
    }
    
    .sign-in-form-wrapper .btn {
        min-width: 240px;
    }
    body.eire form.new-customer .eire-pay-by-card-message {
	    max-width: 240px;
	}
    
    .main-footer {
        padding: 16px;
    }
    
    .main-footer br {
        display: none;
    }
    
    .sign-in-form-wrapper form {
        padding: 8px 16px;
    }
    
	.sign-in-form-wrapper form.already {
	   padding: 8px;
	}
	
	#chatBtnContainer {
	   right: 16px;
	}
	
	.sign-in-form-wrapper .btn.massive {
	   width: auto;
	}
}

@media only screen and (max-width: 36.875em) /* 36.875em = 590px */ {
	.brandLogo.minimised {
	   max-width: 130px;
	 }
	 .brandLogo {
        display: none;
    }
    .brandLogo.minimised {
        flex: 0 1 auto;
        display: inline-block;
        max-width: 125px;
    }
    .rwd-signin a.chatButton {
        background-image: none;
        width: auto;
        padding: 8px;
    }
}

@media only screen and (min-width: 43em) /* 43em = 688px  */ {
	.sign-in-form-wrapper {
	   padding: 0 8px 9px;
	}
	
	.sign-in-form-wrapper form {
	   padding: 20px;
	}
	
	.sign-in-form-wrapper input,
    .sign-in-form-wrapper input:not(.btn) {
       font-size: inherit;
    }
    
    .actions {
        padding: 0 16px;
    }
}

@media only screen and (min-width: 46em) /* 46em = 736px - landscape screen width of iPhone 6+ */ {
	.main {
	   padding: 0;
	}
	
	.remember-wrapper {
	   display: block;
	}
	
	#signinForm h2.title, .signinForm h2.title {
	   font-size: 22px;
	}
}

.completeContent p {
    margin-bottom: 16px;
}