img { max-width:100%; height:auto; }


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Default Styles
2.0 Head Styles
3.0 Main Content
4.0 Footer
5.0 BS Overides
6.0 Navscroll
7.0 Slick Overides
8.0 Magic Placeholder
9.0 Responsive Captcha
10.0 Sticky Nav
11.0 Media Queries
--------------------------------------------------------------*/


body 
{
	color:#000000;
	font-family: 'Lato', sans-serif;
	font-size:16px;
}
p
{
	color:#000000;
	font-family: 'Lato', sans-serif;
	font-size:16px;
}
p.large{font-size:18px;}
p.small{font-size:14px; line-height:17px;}
p.xsmall{font-size:12px;}

h1
{
	margin:0;
	color: #000000;
   	font-size:32px;
   	font-weight:700;
	font-family: 'Lato', sans-serif;
}
h1.small{font-size:20px;font-weight:400;}
h2
{
	font-size:30px;
	color: #000000;
	font-weight:700;
	margin:0;
	font-family: 'Lato', sans-serif;
}
h2.small
{
	font-size:22px;
}
h2.outline, h1.outline
{
	color: #019ac6;
    -webkit-text-fill-color: #019ac6;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.7);
	font-family: 'Lato', sans-serif;
	font-size:38px;
	font-weight:900;
}
h1.outline
{
	font-size:50px;
}
h3
{
	margin:0;
	font-family: 'Lato', sans-serif;
	font-size:18px;
	font-weight:700;
	
}
h3.large{
	font-size:32px;
	font-weight:400;
}
h3 .small{
	color:#009bc7;
	font-weight:700;
	font-size:14px;
}
h4
{
	margin:0;
	font-family: 'Lato', sans-serif;
	font-size:22px;
	font-weight:700;
	color:#000000;
	line-height:20px;
}

a
{
	color:inherit;
	
}
a:hover, a:focus
{
	color:inherit;
}
a.large{font-size:18px; display:block;}
.fix-body
{
	position: fixed;
	width:100%;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #d9d9d9;
}

/*--------------------------------------------------------------
1.0 Default Styles
--------------------------------------------------------------*/

.flex-center-container
{
    width:100%;
    height:0;
    padding-bottom:100%;
    position:relative;
}
.flex-center {
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-inline-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.flex-center.end {
    -webkit-align-items: flex-end;
    align-items: flex-end; 
}

.flex-default{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-col{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 	-ms-flex-direction:column;
 	flex-direction:column;
}
.flex-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 	-ms-flex-direction:row;
 	flex-direction:row;
}
.flex-in{
	-ms-flex: 1;  
	-webkit-box-flex: 1;  
	flex: 1;
}

.flex-wrap{
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.margin-top-auto, .margin-remove.margin-top-auto{
	margin-top:auto;
}

.flex-justify{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-justify-between{
	-webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.center-h {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.social-icon{
	display:inline-block;
	margin-right:10px;
}
.social-icon:last-child		{margin-right:0;}
.social-icon img		{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	height:30px;
}

.social-icon:hover img		{
	opacity:0.6;
}

textarea{ resize:vertical;}
.btn.custom
{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	font-family: 'Lato', sans-serif;
	text-transform:uppercase;
	color:#ffffff;
	background-color:#009bc7;
	font-size:14px;
	font-weight:700;
	padding: 14px 16px 13px;
    border-radius: 0;
	position: relative;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    overflow: hidden;
	border:none;
	white-space:normal;
}
.btn.custom:hover, .btn.custom:focus
{
	background-color:#008ab1;
}

.btn.custom:hover:before, .btn.custom:focus:before
{
	top:-50%;
}
.btn.custom:hover:after, .btn.custom:focus:after
{
	top:100%;
}
.btn.custom:before, .btn.custom:after
{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	left:0;
	content:'';
	position:absolute;
	width:100%;
	height:50%;
	background-color:#009bc7;
	z-index:-1;
}
.btn.custom:before
{
	top:0;
}
.btn.custom:after
{
	top:50%;
}


.btn.custom.alt
{
	font-family: 'Lato', sans-serif;
	text-transform:uppercase;
	color:#ffffff;
	background-color:#084759;
}
.btn.custom.alt:hover, .btn.custom.alt:focus
{	
	background-color: #03313e;
}
.btn.custom.alt:before, .btn.custom.alt:after
{
	background-color:#084759;
}
.btn.custom.grey
{
	color:#ffffff;
	background-color:#cecece;
}
.btn.custom.grey:hover, .btn.custom.grey:focus
{	
	background-color: #bcbbbb;
}
.btn.custom.small{
	font-size:12px;
	padding: 8px 14px;
}
.btn.custom.outline{
	color:#009bc7;
	background-color:#ffffff;
	border:1px solid #009bc7;
}
.btn.custom.outline:hover, .btn.custom.outline:focus{
	color:#009bc7;
	background-color: #f2fafd;
	border:1px solid #009bc7;
}
.flex-center .btn.custom{
	white-space: normal;
}
.default-bg-image
{
	width:100%;
	height:0;
	padding-bottom:100%;
	position:relative;
	background-position: center;
	background-repeat:no-repeat; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.default-bg-image.hero
{
	padding-bottom:30%;
}
.default-bg-image.standard
{
	padding-bottom:0;
	height:auto;
}
.default-bg-image.landscape
{
	padding-bottom:70%;
}
.bg-image{
	width:100%;
	height:auto;
	position:relative;
	background-position: center;
	background-repeat:no-repeat; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.bg-image.home.fixed{
	background: -moz-linear-gradient(top, rgba(111,165,87,0.6) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(111,165,87,0.6) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(111,165,87,0.6) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6fa557', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}
.bg-image.home.fixed:before{
	content: '';
    -webkit-background-attachment: fixed;
	background-attachment: fixed;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
	background-position: center;
	background-repeat:no-repeat; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	z-index:-1;
}
.img-mask{
	height:0;
	padding-top:50%;
	overflow:hidden;
	position:relative;
}
.img-mask img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.padding-remove{padding:0;}
.margin-remove{margin:0;}

.margin-top-large{margin-top:80px;}
.margin-top-medium{margin-top:50px;}
.margin-top-small{margin-top:25px;}
.margin-top-xsmall{margin-top:15px;}
.margin-top-xxsmall{margin-top:8px;}
.margin-bottom-xxsmall{margin-bottom:8px;}
.margin-bottom-xsmall{margin-bottom:15px;}
.margin-bottom-small{margin-bottom:25px;}
.margin-bottom-medium{margin-bottom:50px;}
.margin-bottom-large{margin-bottom:80px;}
.padding-bottom-large{padding-bottom:80px;}
.padding-bottom-medium{padding-bottom:50px;}
.padding-bottom-small{padding-bottom:25px;}
.padding-top-large{padding-top:80px;}
.padding-top-medium{padding-top:50px;}
.padding-top-small{padding-top:25px;}

.padding-xsmall{padding:12px;}
.padding-small{padding:25px;}
.padding-medium{padding:50px;}
.padding-large{padding:80px;}

.btn-block+.btn-block.margin-top-xsmall {
    margin-top: 15px;
}

.blue			{color:#009bc7;}
.dark-blue		{color:#084759;}
.pale-yellow	{color:#ffffe7;}
.red			{color:#b60c0f;}
.green			{color:#5b9a41;}
.orange			{color:#ec9723;}
.white			{color:#ffffff;}
.bg-pale-yellow	{background-color:#ffffe7;}
.bg-blue		{background-color:#009bc7;}
.bg-white		{background-color:#ffffff;}
.bg-light-grey 	{background-color:#cecece;}
.bg-light-blue 	{background-color:#e9f8ff;}

.border-light-blue{border:1px solid #c4e5f4;}
.border-bottom-blue{border-bottom:1px solid #ddf0f8;}

.col-padding-medium{
	padding-left:30px;
	padding-right:30px;
}
/*default styles end*/

/*--------------------------------------------------------------
2.0 Head Styles
--------------------------------------------------------------*/
.buttons
{
	display:none;
	width:100%;
	margin:0;
	background-color: #ffffff;
	position:relative;
	z-index:21;
	text-align:left;
}

.buttons button
{
	margin:0;
	background-color: #ffffff;
	margin-right: 10px;
	padding: 10px 20px;
}
.buttons button:hover
{
	background-color: #f9f9f9;
}
nav.menu
{
	background-color: #009bc7;
	overflow:scroll;
}
nav.menu ul {
    padding: 60px 0 0 0;
	width:100%;
}
nav.menu ul .dropdown-menu
{
	width:100%;
	border-radius:0;
	padding:0;
}
nav.menu ul .dropdown-menu a
{
	color:#000000;
}
nav.slide-menu-left button.close-menu
{
	width:100%;
	background-color:#6a0f0f;
	font-size:22px;
	margin:0;
}
nav.slide-menu-left li
{
	border:none;
}
nav.slide-menu-left a
{
	font-size: 15px;
	padding: 7px 5px;
	letter-spacing:2px;
	text-transform: uppercase;
}
nav.slide-menu-left a:hover
{
	text-decoration:none;
	background-color: #008ab1;
}


#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 40px;
  height: 25px;
  position: relative;
  margin: 5px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #009bc7;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
nav.slide-menu-left, nav.push-menu-left {
    left: -100%;
	width: 100%;
}
.header-phone p{
	line-height:30px;
}
.header-phone .glyphicon{
	margin-right:5px;
	font-size:20px;
    vertical-align: middle;
}
.mobile-logo {
	position: absolute;
}
.mobile-logo img {
	height: 53px;
    margin-top: 1px;
}
.mobile-icons a{
	display:inline-block;
	position: relative;
    width: 50px;
    height: 30px;
	margin-top:15px;
}
.mobile-icons img{
	height:30px;
	position: absolute;
	top:0;
}
.mobile-icons span{
	position: absolute;
	top:0;
	font-size:30px;
}
#stickyNav{
	border-top: 1px solid #ddf0f8;
	margin-top:20px;
}
.menu-txt{
	font-weight: 700;
    position: absolute;
    line-height: 55px;
    color: #009bc9;
    font-size: 28px;
}
.nav-container .btn.custom{
	    padding: 14px 12px 13px;
}


/* sub sub nav */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
	background-color: #e9f8ff;
    padding: 0;
	border:none;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}



.dropdown-menu:hover>a:after, .dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
.dropdown-menu .dropdown-menu>li>a
{
	color: #084759;
    font-size: 12px;
    padding: 8px 18px;
}
.dropdown-menu .dropdown-menu>li>a:hover, .dropdown-menu .dropdown-menu>li>a:focus
{
    background-color: #009bc7;
	color:#ffffff;
}
.dropdown-submenu .caret{
	border-top: 4px solid transparent;
    border-left: 4px solid #3b67ae;
    border-bottom: 4px solid transparent;
}
.dropdown-submenu a:hover .caret{
    border-left: 4px solid #084759;
}
/* sub sub nav end */




/* head styles end */

/*--------------------------------------------------------------
3.0 Main Content
--------------------------------------------------------------*/
.row.partners{
	margin-left:-4px;
	margin-right:-4px;
}
.row.partners .col-md-1{
	padding-left:4px;
	padding-right:4px;
	width:10%;
}
.row.partners .default-bg-image{
	border:1px solid #d9eef8;
	background-size: 90%;
}
.icon-btn {
	font-weight:700;
	margin-left:20px;
	padding-bottom:10px;
}
.icon-btn:hover, .icon-btn:focus {
	text-decoration:none;
	border-bottom:1px solid red;
}
.icon-btn.red:hover, .icon-btn.red:focus {
	border-bottom:1px solid #b60c0f;
	color:#b60c0f;
}
.icon-btn.blue:hover, .icon-btn.blue:focus {
	border-bottom:1px solid #009bc7;
	color:#009bc7;
}
.icon-btn.green:hover, .icon-btn.green:focus {
	border-bottom:1px solid #5b9a41;
	color:#5b9a41;
}

.icon-btn img {
	height:20px;
	margin-right: 5px;
}
.icon-btn span.glyphicon {
	font-size:20px;
	vertical-align: sub;
    margin-right: 5px;
}
.minus-margin-top{margin-bottom:-16px;}
.minus-margin-top .input-group{
	z-index:1;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
}

.footer .member-btn{
	margin-top:30px;
}


/*  news */ 
.block-container{position: relative;}
a.block-container:hover, a.block-container:focus{
	text-decoration:none;
}

.block-container>.flex-col, .block-container>div {
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
	-webkit-box-shadow:0 0 30px 0 rgba(0,0,0,0.1);
	box-shadow:0 0 30px 0 rgba(0,0,0,0.1);
}
.block-container .default-bg-image{
	padding-bottom: 0;
    height: 250px;
    flex-shrink: 0;
}
.block-container .default-bg-image.hero{
	padding-bottom:45%;
}
.block-container.gallery .default-bg-image{
	padding-bottom:100%;
}
.block-container.gallery .overlay img{
	margin-top: 0;
}
.block-container.gallery .overlay{
	padding:5px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.block-container.gallery:hover .text-container{
	opacity:0;
}
.block-text{
	padding:20px;
}

.block-text h2{
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
	font-size:24px;
}
.block-container .overlay {
    -webkit-transition: all 0.5s cubic-bezier(0,1,.52,1);
    transition: all 0.5s cubic-bezier(0,1,.52,1);
    background-color: rgba(236, 151, 35, 0.5);
    padding: 40px;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align:center;
    opacity: 0;
	z-index:1;
}

.block-container .overlay img{
	margin-top: 22%;
}
.block-container:hover .overlay, .block-container:focus .overlay {
    opacity: 1;
}
.block-container:hover hr, .block-container:focus hr {
    border-top: 1px solid #009bc7;
}
.tags{
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
	color:#ffffff;
	background-color:#43badc;
	padding:10px 20px;
	display:inline-block;
	margin-bottom:8px;
	text-transform:uppercase;
	font-weight:700;
}
.tags+.tags{
	margin-left:6px;
}
.tags:hover, .tags:focus{
	background-color: #009bc7;
	text-decoration:none;
	color:#ffffff;
}

.pagination>li>a, .pagination>li>span{
	border:none;
	color:#ffffff;
	font-size:18px;
	font-weight:700;
	background-color: rgba(0,155,201,0.5);
	padding: 12px 20px;
	margin:0;
}
.pagination>li>a:focus, .pagination>li>a:hover{
	background-color: #009bc9;
	color:#ffffff;
}
.pagination>li:last-child>a, .pagination>li:last-child>span, .pagination>li:last-child>a:hover, .pagination>li:last-child>span:hover, .pagination>li:last-child>a:focus, .pagination>li:last-child>span:focus,
.pagination>li:first-child>a, .pagination>li:first-child>span, .pagination>li:first-child>a:hover, .pagination>li:first-child>span:hover, .pagination>li:first-child>a:focus, .pagination>li:first-child>span:focus{
	background-color: transparent;
	color:#009cc9;
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus{
	background-color:#009bc9;
}
.flex-default .member-prices{padding-left:10px;}

.events-row .block-container>div{
	border:1px solid #5a9940;
}
.event-type{
	color:#000000;
	line-height: 16px;
    display: inline-block;
	margin-left: 20px;
    font-size: 14px;
}
.event-type:first-child{
	margin-left:0;
}
.events-row .block-container .overlay {
    opacity: 1;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.events-row .block-container .overlay h2 {
	color:#ffffff;
	font-size:24px;
}
.event-type .square{
	height:16px;
	width:16px;
	display:inline-block;
	vertical-align: bottom;
	margin-right:5px;
}

/* green */
.events-row .block-container.green .event-type-title{
	color:#5a9940;
}
.events-row .block-container.green .overlay {
	background-color: rgba(90, 153, 64, 0.5);
}
.event-type.green .square{background-color:#5a9940;}

/* orange */
.events-row .block-container.orange .event-type-title{
	color:#ec9723;
}
.events-row .block-container.orange .overlay {
	background-color: rgba(236, 151, 35, 0.5);
}
.event-type.orange .square{background-color:#ec9723;}

/* light blue */
.events-row .block-container.light-blue .event-type-title{
	color:#51b8db;
}
.events-row .block-container.light-blue .overlay {
	background-color: rgba(81, 184, 219, 0.5);
}
.event-type.light-blue .square{background-color:#51b8db;}

/* red */
.events-row .block-container.red .event-type-title{
	color:#c70e13;
}
.events-row .block-container.red .overlay {
	background-color: rgba(199, 14, 19, 0.5);
}
.event-type.red .square{background-color:#c70e13;}

/* dark blue */
.events-row .block-container.dark-blue .event-type-title{
	color:#084759;
}
.events-row .block-container.dark-blue .overlay {
	background-color: rgba(8, 71, 89, 0.5);
}
.event-type.dark-blue .square{background-color:#084759;}
/* news end */

.row.row-small-margin{
	margin-left:-5px;
	margin-right:-5px;
}
.row.row-small-margin>div, .row.row-small-margin>.flex-default>div{
	padding-left:5px;
	padding-right:5px;
}
.password-reset.disabled{
	opacity:0.5;
	pointer-events:none;
}
.membership-cost{
	line-height:30px;
	margin-top:15px;
}
.membership-cost span{
	font-size:22px;
	font-weight:700;
	color:#000000;
}
a.membership-cost span {
	color: #FFF;
	font-size: 14px;
}
.login-membership h4{
	line-height:30px;
	margin:7px 0;
}
.login-membership .info{
	width:30px;
	height:30px;
	font-size:24px;
	font-weight:700;
	display:inline-block;
	background-color:#009bc7;
	color:#ffffff;
	border-radius:50%;
	vertical-align:middle;
	float:right;
	text-align:center;
	margin-right:10px;
}
.login-membership .info:hover{
	cursor: pointer;
}
.custom-check{
	width:30px;
	height:30px;
	display:inline-block;
	background-color:#ffffff;
	border-radius:50%;
	vertical-align:middle;
	float:right;
	border:7px solid #ffffff;
}
.custom-check.active{
	background-color:#009bc7;
}
.custom-check:hover, .steps:hover{
	cursor:pointer;
}
.steps{
	width:50px;
	height:50px;
	margin:0 20px;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	display: inline-flex;
	background-color:#f7f7f7;
	color:#000000;
	border-radius:50%;
	vertical-align:middle;
	font-size:24px;
	font-weight:700;
	position:relative;
}
.steps.active{
	background-color:#009bc7;
	color:#ffffff;
}
.steps:after{
	content:'';
	display: block;
	height:2px;
	background-color:#cecece;
	width:100%;
	position: absolute;
	left:100%;
	top:50%;
	margin-top:-1px;
}
.steps:last-child:after{
	display:none;
}
.steps > button {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: transparent;
    font-size: unset;
    font-family: unset;
}
.steps > a:hover {
    text-decoration: none;
}
.shop-cat-block .top-container{
	padding:25px;
	text-align:center;
}
.shop-cat-block .bottom-container{
	padding:25px;
	position:absolute;
	bottom:0;
	width:100%;
	left:0;
}
.shop-cat-block .top-container h2{
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.filter-row .btn.custom{
	padding:15px 16px;
}
.row.disabled {
	display:none;
}

.search-container{
	position: absolute;
    width: 100%;
    height: 100%;
	top:0;
	left:-150%;
    background-color: rgba(57,83,98,0.9);
    z-index: 100;
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
}
.search-container.open{
	left:0;
  
}
.search-container-in{
	padding:90px 0;
	text-align:center;
	width:100%;
	height:100%;
}
.search-container-in .form-control.search{
	font-size:22px;
	color:#2c4448;
	
	border:none;
	background-color: #ffffff;
	padding:17px 15px;
	padding-right:100px;
}
.search-container-in .input-group-addon{
	border: none;
    background-color: #42bada;
    padding: 0;
	position: absolute;
    right: 0;
    width: 12%;
    height: 100%;
	z-index:10;
    border-radius: 0;
}
.search-container-in .input-group-addon button{
    background-color: transparent;
    padding: 15px;
	width: 100%;
    height: 100%;
	color:#ffffff;
	font-size:26px;
	
}
.close-search{
	color:#ffffff;
	font-size: 30px;
    cursor: pointer;
}
.search.magic-placeholder .form-group span.placeholder{
	line-height:57px;
	font-size: 22px;	
}
.search.magic-placeholder .form-group, .search.magic-placeholder .form-group .input-group{
	width:100%;
}
.search.magic-placeholder{
	margin-top: 30%;
}
.input-group .form-control, .basket-row .form-control{
	padding:10px 15px;
}
.input-group .form-control.search{
	padding:13px 15px;
}
.btn.custom.delete{
	background-color:#b51414;
}
.btn.custom.delete:before, .btn.custom.delete:after
{
	background-color:#dc2f2f;
}


.panel-group{
	margin:0;
}
.panel-group .panel{
	border:0;
	border-radius:0;
	box-shadow:none;
	overflow: visible;
}
.panel-group .panel-heading.collapsed {
	color:#353535;
	background-color: #ffffff;
}

.panel-group .panel-heading {
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	display:block;
	font-size:16px;
	border:1px solid #009bc7;
	border-radius:0;
	color:#ffffff;
	font-weight:400;
	background-color: #009bc7;
	position: relative;
	
}
.panel-group .panel-heading:hover, .panel-group .panel-heading:focus {
	background-color: #009bc7;
	text-decoration: none;
	color:#ffffff;
}

.panel-group .panel-heading+.panel-collapse>.panel-body {
    border:1px solid #0b879b;
	border-top: none;
	padding:25px;
}
.panel-body p:last-child {
    margin:0;
}
.panel-group .panel-heading span{
	position: relative;
}

.account .panel-heading span:before{
	display:none;
}

.faq .panel-heading:before {
	content:'';
    background-image:url('/images/chevron-up.svg');
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
	    width: 41px;
    height: 41px;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 1px;
    background-color: #ffffff;
}
.faq .panel-heading.collapsed:before {
    background-image:url('/images/chevron-down.svg');
}
.download-btn{
	white-space:normal;
	text-align:left;
	
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
	
}
.download-btn>span{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
	
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.download-btn .glyphicon {
	margin-right:15px;
}
.form-small.form-alt .form-group{
	margin-bottom:15px;	
}
.form-small.form-alt .form-control {
    padding: 10px 13px;
    font-size: 16px;
}
.form-small.form-alt.magic-placeholder .form-group span.placeholder {
    font-size: 16px;
    font-weight: 400;
	line-height:44px;
}
.form-small.form-alt.magic-placeholder .form-group span.placeholder.active {
    font-size: 12px;
    line-height: 18px;
	padding-left: 13px;
}

/* custom check box */
.custom.checkbox{
	padding:0;
	
}
.custom.checkbox:hover{
	cursor:pointer;
}
.custom.checkbox{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-ms-flex: 1;  
	-webkit-box-flex: 1;  
	flex: 1;
	-webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
	margin:0;
}
.custom.checkbox.left{
	-webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
}
.custom.checkbox + .custom.checkbox{
	margin-top:5px;
}


.custom.checkbox input{
	visibility: hidden; 
}
.custom-checkbox{
	width:50px;
	height:50px;
	background-color:#009bc7;
	flex-shrink:0;
	margin-right:20px;
}
.custom-checkbox:hover{
	cursor:pointer;
}
.checkbox.custom.selected .custom-checkbox{
	background-image: url('/images/tick.svg');
	background-size:80%;
	background-position: center;
	background-repeat:no-repeat;
}
/* custom checkox end */
.highlight{font-weight:700;color: #009bc7;}

/* main content end */

/*--------------------------------------------------------------
4.0 Footer
--------------------------------------------------------------*/
.footer .social-icon {
    margin-right: 0;
    margin-left: 10px;
}
.footer .spacer{
	width: 10px;
    display: inline-block;
    height: 2px;}
.footer-sub a{
	padding-left:15px;
}
.footer-sub a:first-child{
	padding:0;
}
.footer .social-icon img		{
	height:55px;
}
/* footer end */

/*--------------------------------------------------------------
5.0 BS Overides
--------------------------------------------------------------*/
.input-group select.form-control{
	height: 47px;
}
select.form-control{
	border:1px solid #c5e5f4;
	background-color: #f2fafd;
    font-size: 18px;
	color:#42bada;
	font-weight:700;
	height: 52px;
}
.form-control
{
	height:auto;
	padding:13px 18px;
	border-radius:0;
	border:1px solid #c5e5f4;
	background-color: #f2fafd;
    font-size: 18px;
	color:#42bada;
	font-weight:700;
}
.captchaContainer input
{
	width:100%;
	height:auto;
	padding:13px;
	border-radius:0;
	border:none;
	margin-bottom:20px;
	background-color:#f1f1f1;
}

.img-responsive
{
	display:inline;
}
.nav
{
	float: none;
	margin:0 auto;
	display:table;
	    background-color: #e9f8ff;
} /* center navigation */
.navbar{
	border:none;
	margin:0;
	border-radius:0;
	min-height:0;
	border-right:none;
}
.nav>li>a{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	color:#003e52;
	font-weight:700;
	font-size:13px;
	padding: 13px 8px;
}
.nav>li:first-child a{
	padding-left:15px;
}
.nav>li:last-child a{
	padding-right:15px;
}
.nav>li>a:hover, .nav>li>a:focus {
    text-decoration: none;
    background-color: #009bc7;
    color: #ffffff;
}
.nav>li>a .caret{ 
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	color:#039dc7;
}
.nav>li>a:hover .caret, .nav>li>a:focus .caret {
    color: #ffffff;
}
.breadcrumb{
	padding:0;
	background-color: transparent;
	margin-bottom:10px;
}
.breadcrumb>li+li:before{
	content:'\003e';
}
.breadcrumb a{
	font-style:italic;
}
.radio label.xsmall, .checkbox label.small {
   font-size:12px;;
}
.form-group {
    margin-bottom: 25px;
}
.form-group.margin-remove {
    margin-bottom: 0;
}
.dropdown-menu{
	border:none;
	border-radius:0;
	padding:0;
}
.dropdown-menu>li>a{
	padding: 10px 18px;
    font-size: 13px;
	color: #084759;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus{
	color: #084759;
    background-color: #e9f8ff;
}
.nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
    background-color: #009bc7;
    border-color: #428bca;
    color: #ffffff;
}
.nav .open>a .caret, .nav .open>a:hover  .caret, .nav .open>a:focus  .caret {
    color: #ffffff;
}
.col-5{width:20%; float:left;}
.well {
    background-color: #ffffff;
    border: 1px solid #d5edf7;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 7px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 7px rgba(0,0,0,.1);
}
.alert {
    border-radius: 0;
}
.alert-info {
    background-color: #e9f8ff;
    border-color: #d5edf7;
    color: #009bc7;
}
.has-error .form-control-feedback {
    color: #b60c0f;
}
.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
    color: #b60c0f;
}
.has-error .form-control {
    border-color: #b60c0f;
}
.alert-success {
    background-color: #f2fafd;
    border-color: #c5e5f4;
    color: #084759;
}
/* BS overrides end */


/*--------------------------------------------------------------
6.0 Navscroll
--------------------------------------------------------------*/
.navScroll
{
	display:none;
	position:fixed;
	bottom:20px;
	right:20px;
	z-index:1000;
	background-color:rgba(200, 200, 200, 0.7);
	padding:20px 10px;
	border-radius:0;
}
.navScroll img{height:30px;}
.navScroll a
{
	text-decoration:none;
}
.navScroll:hover
{
	background-color:rgba(200, 200, 200, 1);
}
/* navScroll end */

/*--------------------------------------------------------------
7.0 Slick Overides
--------------------------------------------------------------*/
.slick-next:before, .slick-prev:before {
	content: "";
	height:62px;
  	width:34px;
  	display:inline-block;
	background-repeat:no-repeat;
	background-position:center;
	background-size: contain;
}
.slick-prev:before {
  background-image:url('/images/chevron-left.svg');
}
.slick-next:before {
  background-image:url('/images/chevron-right.svg');  
}

.slick-prev, .slick-next
{
	height:62px;
  	width:34px;
	margin-top:-55px;
}
.page-row-gallery .slick-prev, .page-row-gallery .slick-next {
    margin-top: -31px;
}
.slick-prev {
  left: 40px;
}
.slick-next {
  right: 40px;
}
.slick-container{
	margin:0;
}
.slick-dots{    
	bottom: 0;
    margin: 0;
    position: relative;
	margin-top:30px;
}
.slick-dots li button:before{content:'';}
.slick-dots li{
	height:11px;
	width:24px;
}
.slick-dots li button {
	border:none;
	border-radius:0%;
	
	position: relative;
	width: 24px; 
	height: 11px;
	background-color: #dfdfdf;
	margin:0;
}
.slick-dots li button:before,
.slick-dots li button:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  opacity:1 !important;
}

.slick-dots li button:before {
	top:-9px;
	border-bottom: 9px solid #dfdfdf;
	height:0;
}

.slick-dots li button:after {
  top: 100%;
  width: 0;
  border-top: 9px solid #dfdfdf;
  left:0;
}

.slick-dots li.slick-active button {
	background-color:#009bc9;
}
.slick-dots li.slick-active button:before {
	border-bottom: 9px solid #009bc9;
}

.slick-dots li.slick-active button:after {
  	border-top: 9px solid #009bc9;
}

.home-slider .default-bg-image.hero h2, .home-slider-multi .default-bg-image h2{
	font-size:48px;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);	
}
.slick-container.home-slider-multi .btn.custom{
	font-size:16px;
	padding:15px 25px;
}
.text-container{
	background-color: rgba(255,255,255,0.5);
    padding: 25px;
    text-align: center;
    position: absolute;
    width: 100%;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.text-container h2{
	color:#000000;
	font-size:20px !important;
	text-shadow:none !important;
}
/* Slick Overides End */


/*--------------------------------------------------------------
8.0 Magic Placeholder
----------------------------------------------------------------*/
.magic-placeholder .form-group span.placeholder{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	color: #2c4448;
	font-style: italic;
	font-size: 14px;
	position: absolute;
	top: 0;
	line-height: 53px;
    padding-left: 18px;
    pointer-events: none;
    left: 0;
    z-index: 2;
}
.magic-placeholder .form-group span.placeholder.active{
	font-size: 10px;
	line-height:20px;
}
.form-alt.magic-placeholder .form-control{
	border:1px solid #d5edf7;
}
.form-alt.magic-placeholder .form-group span.placeholder{
	color:#009bc9;
	font-size:20px;
	font-weight:700;
	font-style:normal;
}
.form-alt.magic-placeholder .form-group span.placeholder.active{
	font-size:14px;
}
.btn.search{
	border: none;
    background-color: #b60c0f;
    color: #ffffff;
    font-size: 25px;
    border-radius: 0;
	    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
	padding: 9px 14px;
}
.btn.search:hover{
    background-color: #dc1c1f;
}
.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group {
   	margin-left: 0;
}
.form-alt.magic-placeholder .form-group .input-group{
	-webkit-box-shadow: 3px 3px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 3px 3px 5px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

/*--------------------------------------------------------------
9.0 Responsive Captcha
--------------------------------------------------------------*/

.g-recaptcha{
	position: relative;
    top: -10px;
	overflow:hidden;
}
.g-recaptcha iframe:hover{
	cursor:pointer;
}
.g-recaptcha iframe{
	border: 1px solid #009bc7;
}
.recaptcha-container{
	overflow:hidden; height:52px;
	position: relative;
}
.g-overlay{
	position:absolute;
	left:0;
	display:block;
	width:100%;
	height:52px;
	top:0;
	pointer-events: none;
}
.g-overlay-in{
	left:0;
	display:block;
	width:100%;
	overflow:hidden;
	border: 1px solid #009bc7;
	height:52px;
	top:0;
	position:relative;
	pointer-events: none;
}
.g-overlay-in:after{
	content:"I'm not a robot";
	background-color:#f9f9f9;
	width:100%;
	height:100%;
	position:absolute;
	left:45px;
	pointer-events: none;
	line-height: 48px;
    color: #555;
    font-size: 14px;
	padding-left:10px;
}
/* responsive captcha end */

/*--------------------------------------------------------------
10.0 Sticky Nav
--------------------------------------------------------------*/

#stickyNav a.sticky-logo{display:none;}
#stickyNav.stuck a.logo{
	display:none;
}
#stickyNav.stuck a.sticky-logo{
	display:inline-block;
}
#stickyNav.stuck{
	position: fixed;
	width: 100%;
	z-index: 100;
	background-color: #ffffff;
	left: 0;
	top: -50px;
	margin: 0;
	animation-name: stick-animation;
    animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards; /* Safari 4.0 - 8.0 */
    animation-fill-mode: forwards;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
	border:none;
}

@keyframes stick-animation {
    from {top: -50px;}
    to {top: 0;}
}
.stuck .navbar-nav>li>a{
	font-size: 12px;
    padding: 5px 8px;
	line-height:25px;
}
.stuck .btn.custom {
    font-size: 14px;
    padding: 10px 20px;
}
#stickyNav.stuck .flex-default.center-h.nav-container{
	-webkit-box-pack: flex-end;
	-ms-flex-pack: flex-end;
	justify-content: flex-end;
}
#stickyNav.stuck .flex-default .text-center{
	text-align:left;
}
.stuck .navbar{border:none;}
.stuck .margin-top-xsmall, .stuck .margin-bottom-small{margin-top:0; margin-bottom:0;}

.stuck .navbar-nav>li>.dropdown-menu {
    margin-top: 2px;
}
.stuck .nav {
    float: none;
	    background-color: transparent;

}
.navbar-nav>li.sticky-logo, nav>ul>li.sticky-logo{
	display:none;
}
.stuck img{
	height:35px;
	margin-top:3px;
}
.navbar-nav>li.sticky-logo>a:after{
	background-color: transparent;
}
.stuck .navbar-nav>li.sticky-logo{
	display:block;
}
/* sticky end */

.custom-select{
	position: relative;
}
.custom-select.flex-in{
	margin-left:20px;
}
.custom-select:after{
	content:'';
	position:absolute;
	top:1px;
	right:1px;
	background-image:url('/images/chevron-down-white.svg');
	background-position:center;
	background-size:45%;
	background-repeat: no-repeat;
	width:50px;
	height:50px;
	background-color:#009bc7;
	pointer-events:none;
	z-index:2;
}
.badge {
    font-size: 16px;
    background-color: #43b9dd;
    border-radius: 0;
    width: 30px;
    height: 18px;
	padding:0;
	position:relative;
	margin-top:3px;
}
.badge:before, .badge:after, .bullet:before, .bullet:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.badge:before, .bullet:before{
	top: -9px;
    border-bottom: 9px solid #43b9dd;
    height: 0;
	left:0;
}
.badge:after, .bullet:after{
	top: 100%;
    width: 0;
    border-top: 9px solid #43b9dd;
    left: 0;
}
.bullet{
    background-color: #43b9dd;
    width: 20px;
    height: 11px;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-left: 15px;
}
.bullet:first-child{
    margin-left: 0;
}
.bullet:after{
	border-left: 10px solid transparent;
    border-right: 10px solid transparent;
	border-top: 6px solid #43b9dd;
}
.bullet:before{
	border-left: 10px solid transparent;
    border-right: 10px solid transparent;
	border-bottom: 6px solid #43b9dd;
	top: -6px;
}

.map {
    position: relative;
    height: 0;
    padding-bottom: 30%;
    width: 100%;
}
#map {
    height: 100%;
    width: 100%;
    position: absolute;
}

.slider-for .responsive-frame{
	padding-bottom:40%;
}
.responsive-frame{
	position: relative;
	width:100%;
	height:0;
	padding-bottom:50%;
}
.responsive-frame iframe{
	position: absolute;
	width:100%;
	height:100%;
}

.has-feedback .form-control-feedback {
    width: 53px;
    height: 53px;
    line-height: 53px;
}
.has-feedback .custom-select .form-control-feedback {
    right:50px;
}
.cc-cookies a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset {
    background: #009bc7;
    border-radius: 0;
    text-shadow: none;
}

/*--------------------------------------------------------------
11.0 Media Queries
--------------------------------------------------------------*/
@media (max-width: 1200px) 
{
	#stickyNav.stuck .navbar-nav>li>a {
	    font-size: 10px;
	    padding: 8px 6px;
	}
	#stickyNav .btn.custom{
		font-size:14px;
		padding: 12px 15px;
	}
	#stickyNav .nav>li>a {
		font-size: 10px;
		padding: 12px 6px;
	}
	#stickyNav .nav>li:first-child a {
	    padding-left: 12px;
	}
	#stickyNav .nav>li:last-child a {
	    padding-right: 12px;
	}
	.icon-btn {
    	margin-left: 14px;
	    font-size: 12px;
	}
	.home-slider .default-bg-image.hero h2, .home-slider-multi .default-bg-image h2{
		font-size:30px;
	}
	.block-container .default-bg-image {
		height: 200px;
	}
	h2.small {
	    font-size: 14px;
	}
	.btn.custom.small {
		font-size: 10px;
	}
	h2 {
		font-size: 20px;
	}
}
@media (min-width: 992px) {
	.dropdown:hover>.dropdown-menu {
		display: block;
	}
}
@media (max-width: 992px) 
{
	.buttons
	{
		display:block;
	}
	.text-center-tablet{text-align:center;}
	.stuck .navbar-nav>li>a {
	    font-size: 11px;
	    padding: 8px;
	}
	.row.partners .col-md-1 {
    	width: 20%;
	}
	.footer .member-btn {
		display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-ms-grid-row-align: center;
		align-items: center;
	}
	.footer .member-btn .btn.custom{
		margin-top:0;
	}
	#stickyNav{
		margin-top:0;
	}
	.home-slider .default-bg-image.hero h2, .home-slider-multi .default-bg-image h2{
		font-size:22px;
	}
	.slick-prev {
	  left: 10px;
	}
	.slick-next {
	  right: 10px;
	}
	.slick-prev, .slick-next, .slick-prev, .slick-next:before, .slick-prev:before
	{
	  	width:20px;
	}

	.dropdown-submenu>.dropdown-menu {
    	top: 38px;
    	left: 0;
	}
	.slick-container.home-slider-multi .padding-medium {
	    padding: 25px;
	}
	.search-container-in {
	    padding:15px 0;
	    width: 100%;
	}
	.search-container-in .input-group{
		width:100%;
	}
	.login-container .padding-medium{
		padding:15px;
	}
	.block-container .default-bg-image {
	    height: 150px;
	}
	.block-container .overlay {
		padding:20px;
	}
	h2.small {
	    font-size: 22px;
	}
	.btn.custom.small {
		font-size: 12px;
	}
	h2 {
		font-size: 30px;
	}
	nav.menu ul .dropdown-menu .dropdown-menu {
		display:none;
	}
}


@media (max-width: 767px)
{
	
	.text-center-mobile{text-align:center;}
	.margin-top-large{margin-top:40px;}
	.margin-bottom-large{margin-bottom:40px;}
	.margin-top-medium{margin-top:30px;}
	.margin-bottom-medium{margin-bottom:30px;}
	.margin-top-small{margin-top:15px;}
	.margin-bottom-small{margin-bottom:15px;}
	.margin-top-xsmall{margin-top:10px;}
	.margin-bottom-xsmall{margin-bottom:10px;}
	.stuck {
	    display: none;
	}
	
	
	p.small{font-size:12px;}
	p.xsmall{font-size:10px;}
	.btn.custom{font-size: 12px; padding:18px 10px;}
	.btn.custom.small {padding: 18px 14px;}
	h2 {
    	font-size: 24px;
	}
	h2.outline, h1.outline{
    	font-size: 30px;
		padding-left:15px;
		padding-right:15px;
	}
	h4{font-size:18px;}
	.row.partners .col-md-1 {
    	width: 33.3333333%;
	}
	.form-alt.magic-placeholder .form-group span.placeholder{
		font-size:13px;
	}
	.form-alt.magic-placeholder .form-group span.placeholder.active{
		font-size:11px;
	}
	.footer .spacer{
    	width: 100%;
    	display: block;
    	height: 10px;
	}
	.footer .social-icon:first-of-type {
		margin-left: 0;
	}
	.pagination>li>a, .pagination>li>span {
	    padding: 4px 10px;
		font-size: 13px;
	}
	.block-text {
	    padding: 15px;
	}
	p.large {
	    font-size: 16px;
	}
	.footer p.large {
	    font-size: 24px;
	}
	.footer .social-icon img {
	    height: 60px;
	}
	.col-5{width:50%;}
	
	
	
	.search-container-in .form-control.search {
    	font-size: 20px;
	}
	.search.magic-placeholder .form-group span.placeholder {
		line-height: 54px;
		font-size: 17px;
	}
	.search.magic-placeholder .form-group span.placeholder.active {
		line-height: 21px;
    	font-size: 13px;
	}
	.search-container-in .input-group-addon{
		width:15%;
	}
	.input-group select.form-control {
	    height: 37px;
		height: 37px;
    	padding: 7px 15px;
    	font-size: 14px;
	}
	.login-container .padding-medium{
		padding:25px;
	}
	.block-container .default-bg-image {
	    height: 250px;
	}
	.flex-default.member-prices-container{
		-ms-flex-direction: column-reverse;
	    flex-direction: column-reverse;
	}
	.flex-default.member-prices-container .member-prices {
	    padding-left: 0;
		text-align:center;
		margin-bottom:10px;
		
	}
	.block-text.flex-col .btn{
		width:100%;
		-webkit-box-pack: center;
    	-ms-flex-pack: center;
    	justify-content: center;
	}
	.block-text .btn.custom{
		width:100%;
	}
	.breadcrumb a { font-size: 12px; }
	.text-center-mobile .radio input
	{
	    float:none;
	}
	
}
@media (max-width: 480px)
{
	.mobile-icons a{
		width: 30px;
		margin-top:18px;
	}
	.mobile-icons img{
		height:21px;
	}
	.mobile-icons span{
		font-size:20px;
	}
	.padding-small{padding:20px;}
	.login-container .padding-medium{
		padding:15px;
	}
	.block-container .default-bg-image {
	    height: 200px;
	}
	h3{font-size:15px;}
}
/* Media Queries End */