/*Cookie Consent Begin*/
#cookieConsent {
    background-color: rgba(255, 150, 0, 0.89);
    min-height: 100px;
    font-size: 20px;
    color: #ffffff;
    line-height: 36px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
#cookieConsent a {
    color: #4f545a;
    text-decoration: none;
}
#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 30px;
    width: 30px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background-color: #04449d;
    color: #ffffff;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: #e1a420;
}
/*Cookie Consent End*/


.btpa-logo {
	/* background-image: url("../images/btpa-logo.jpg"); */
	background-image: url("../images/bowen-logo.svg");
	background-position: left; 
    background-repeat: no-repeat;
	width:800px;
	/*height:87px;*/
	height:98px;
}

.blinking{
	animation:blinkingText 2.8s infinite;
}
@keyframes blinkingText{
	0%{		color: #000;	}
	20%{	color: #333;	}
	40%{	color: #666;	}
	60%{	color: transparent;	}
	80%{	color: #333;	}
	100%{	color: #000;	}
}

#pie-chart {
	width:100%; /*800px;/*100%;*/
	/*height: 100%;*/
	height:300px;/*100%;*/
	margin: 0;
	padding: 0;
}

.antispam {
	display:none;
}

.hckrz {
	display:none;
}


.google-maps {
        position: relative;
        padding-bottom: 75%; /* This is the aspect ratio */
        height: 0;
        overflow: hidden;
    }
.google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 90% !important;
        height: 100% !important;
    }
    
.jim-show-extra {
    display: none;
}

.fltrt {
	float:right;
}
.fltlft {
	float:left;
}
.fltcentre {
	margin-left:auto;
	margin-right:auto;
	/*display:block;  CAUSES WIDTH TO HEIGHT RATIO TO BECOME DISTORTED? */
	max-height:200px;
	/* UNUSED width:auto;*/
}
.flt-centre-lg-screen {
	margin-left:auto;
	margin-right:auto;
	display:block;
}

img.leftShadow {
	float: left;
	margin-bottom: 20px;
	margin-right: 20px;
    box-shadow: 7px 7px 5px #aaaaaa;

}
img.rightShadow {
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
    box-shadow: 7px 7px 5px #aaaaaa;
}

img.shadow {
	margin-bottom: 20px;
	margin-left: 20px;
    box-shadow: 7px 7px 5px #aaaaaa;
}


/* big check labels */
.label-big-check {
	position: relative;
	display: block;
	padding: 15px 0 15px 35px;
	margin: 0;
	/*border-top: 1px solid #eee;*/
	cursor: pointer;
}
.label-big-check input {
	display: none;
}
.label-big-check .check-title {
	font-size: .9em;
	font-weight: 700;
	cursor: pointer;
}
.label-big-check input[type="checkbox"] + .check-title:before {
	position: absolute;
	top: 12px;
	left: 0;
	width: 30px;
	font-family: 'Font Awesome 5 Free';
	/*font-family: "Font Awesome 5 Free";*/
        /*content: "\f096";*/
        content: "\f0c8";   /*'<i class="far fa-square 2x"></i>';*/
        font-size: 2em;
        line-height: 1;
          font-weight: 300;
    color: #333; /* was aaa */
    padding: 15px 5px 5px 20px;  /*top right bottom left*/
}
.label-big-check input[type="checkbox"]:checked + .check-title:before {
    content: "\f14a";
    color: #333;
}

/* ------------------------- */
.displayState {
	display: none;
}
.displayExtra {
	display: none;
}
#progress-bar {
	display: none;
	/*background: url(transparent-loader.gif) no-repeat center center;*/
	/*padding-left: 0px;*/
}
#submit-button {
	display: none;
}
#display-submit-button {
	display: block;
}
#fileSelection {
	display: block;
}

#expensesSubmit {
	display:block;
}
#expensesProgress {
	display:none;
}

.tick-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.tick-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: black; /*#eee;*/
}

/* On mouse-over, add a grey background color */
.tick-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.tick-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.tick-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.tick-container .checkmark: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);
}

/* ------------------------- */
/* Fancy radio buttons */
/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size:  18px; /* was 22px; */
  font-weight:500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radio-checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .radio-checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .radio-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .radio-checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/* ------------------------- */



.hide-on-desktop {
	display: none;
}

#alternateAddress {
	display: none;
}

#kidsClinicSection {
	display: none;
}

#animalClinicSection {
	display: none;
}

#bacsPaymentSection {
	display: none;
}
#cardPaymentSection {
	display: none;
}



/*------ POPUP FORM FOR EDITING MEMBER DATA --------*/
      /* Fix the button on the left side of the page */
      .open-btn2 {
      display: flex;
      justify-content: left;
      }
      /* Style and fix the button on the page */
      .open-button2 {
      background-color: purple;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      opacity: 0.8;
      position: fixed;
      }
      /* Position the Popup form */
      .login-popup2 {
      position: relative;
      text-align: center;
      width: 100%;
      }
      /* Hide the Popup form */
      .form-popup2 {
      display: none;
      position: fixed;
      left: 45%;
      top:25%;
      transform: translate(-45%,5%);
      border: 2px solid #666;
      z-index: 9;
      }
      /* Styles for the form container */
      .form-container2 {
      max-width: 300px;
      padding: 20px;
      background-color: #fff;
      }
      /* Full-width for input fields */
      .form-container2 input[type=text], .form-container2 input[type=password] {
      width: 100%;
      padding: 10px;
      margin: 5px 0 22px 0;
      border: none;
      background: #eee;
      }
      /* When the inputs get focus, do something */
      .form-container2 input[type=text]:focus, .form-container2 input[type=password]:focus {
      background-color: #ddd;
      outline: none;
      }
      /* Style submit/login button */
      .form-container2 .btn2 {
      background-color: #8ebf42;
      color: #fff;
      padding: 12px 20px;
      border: none;
      cursor: pointer;
      width: 100%;
      margin-bottom:10px;
      opacity: 0.8;
      }
      /* Style cancel button */
      .form-container2 .cancel2 {
      background-color: #cc0000;
      }
      /* Hover effects for buttons */
      .form-container2 .btn2:hover, .open-button2:hover {
      opacity: 1;
      }
/*-------END POPUP FORM CSS ------------------------*/






@media screen and (max-width: 1219px) {
	
	.btpa-logo {
		/*background-image: url("../images/btpa-logo2.jpg");*/
		background-image: url("../images/bowen-logo.svg");
		width:700px;
		/*height:76px;*/
		height:86px;
	}
	
}

@media screen and (max-width: 1008px) {
	
	.btpa-logo {
		/*background-image: url("../images/btpa-logo3.jpg");*/
		background-image: url("../images/bowen-logo.svg");
		width:500px;
		/*height:54px;*/
		height:61px;
	}
	
	.flt-centre-lg-screen {
		display:none;
	}
	
	.label-big-check {
	padding: 15px 0 5px 35px;
	}
	
	
}

@media screen and (max-width: 992px) { 
	
}
		
	

    


@media screen and (max-width: 768px) { /* was 784px */
	
	.btpa-logo {
		/*background-image: url("../images/btpa-logo4.jpg");*/
		background-image: url("../images/bowen-logo.svg");
		float:none !important;
		margin-left: auto;
	    margin-right: auto;
	    /*width:350px;*/
	    width:450px;
		/*height:79px;*/
		height:55px;
	}
	
	.home-page .promo .btn-cta {
	  font-size: 18px;
	}
	

    /* hide table headings */
    .jim-table-responsive table thead {
        display: none;
    }
    .jim-show-extra {
	    display: block;
    }

    /* treat rows like divs */
    .jim-table-responsive table tr {
        display: block;
        border-top: 2px solid lightgray; /* separate row data with thicker line */
        margin-top: 5px;
    }

    /* treat columns like divs */
    .jim-table-responsive table td {
        display: block;
        text-align: left; /* text to left */
    }

    /* this part is ugly, but necessary to show label on left */
    .jim-table-responsive table td:before {
        content: attr(data-label);
        float: left; /* label to left */
        font-weight: 700;
    }
    
    .label-big-check {
		padding: 15px 0 35px 35px;
	}
	
	.hide-on-mobile {
		display: none;
	}
	.hide-on-desktop {
		display: block;  /* but show on mobile */
	}

}



@media screen and (max-width: 480px) {
	
	.btpa-logo {
		/*background-image: url("../images/btpa-logo5.jpg");*/
		background-image: url("../images/bowen-logo_.svg");
	    width:300px; 
		height:70px; 

	}
	
	.home-page .promo .btn-cta {
	  font-size: 16px;
	}	   
			
}

@media screen and (max-width: 320px) {
	
	.home-page .promo .btn-cta {
	  font-size: 14px;
	}
	
}