/*
Theme Name: Care for Health
Description: Custom WordPress theme by Robin Payne.
Version: 3.1.0
Author: Robin Payne
*/

html,
body {
	width: 100%;
    margin: 0px;
    padding: 0px;
	background: #fff;
	overflow-x: hidden;
}

a {
	outline: 0 !important;
}

a:-webkit-any-link {
	text-decoration: none !important;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
a:active,
button:focus,
button:active,
select:focus,
select:active {
  outline: none !important;
  box-shadow: none !important;
}

iframe {
	border:none;
}

iframe.green-border {
	border:2px solid #3ec1c7;
	border-radius: 10px;
}

::-webkit-scrollbar {
  width: 12px;
  background: #f5f5f5;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background: #f5f5f5; 
}
 
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background: #0c3b68; 
}

::-webkit-scrollbar-thumb:hover {
  background: #3ec1c7; 
}