/*
Theme Name: Thrivewell
Author: Sharkmatic
Version: 1.0

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms and Buttons
# Navigation
	## Links
	## Menus
# Content
	## Header
	## Footer
	## Posts and pages
	## Comments
# Media
	## Captions and Galleries
# Widgets & Plugins
	## Widgets
	## Plugins

--------------------------------------------------------------*/

/*
 * Note that most styles are handled already in our custom bootstrap.css, theme-base.css,
 * and theme-flat.css files. 
 *
 * We have put comments next to some of the styles to show what our custom bootstrap.css
 * defaults to in case we (or anyone) wants to put these into custom bootstrap.css
 * instead. 
 */

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/*
 * The cool thing about Lato and Raleway fonts is that they look great at light (300) and
 * regular (500) font weight. So we only use bold (700) sparingly.
 */
 
 html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x:  initial; 
}
body {
	font-family: 'Raleway', sans-serif;
    font-weight: 500; /*Bootstrap is 500;*/
    font-size: 16px; /*BS is 16px;*/
}


h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	font-family: 'Vidaloka', serif;
}

/* Lighten the h1-h3 headings so you can use <b> tags to have certain words stand out */
h1, 
h2, 
h3 {
    font-weight: 300; /*BS is 500 for h1-h6, including .h1-.h6*/
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

/* Increase font size on article "lead" (usually for an "intro" paragraph */
.lead {
	font-size: 22px; /*18px, but goes to 24px @768 browser width */
}

/* Style code tag like pre tag */
code {
    /*color: #2f2f2f;
    background-color: #f5f5f5; Moved to bootstrap.css*/
	border: 1px solid #ccc;    
}

/* Remove a bit of margin since Bootstrap h1-h3 tags already have 22px top margin */
 hr {
    margin: 16px 0; /*22px 0;*/
}

/*
 * Override margins on jumbotron in case someone uses it like a colored "section" from
 * this theme. Note: Moved here from theme-base.css.
 */
.jumbotron {
	margin-bottom: 0;
}

/* 
 * Set block quote footer (author) to larger font size. BS quote is 20px, but footer
 * is only 14px for some reason. 
 */
blockquote footer {
	font-size: 18px;
}

/* Color the collapsible panel hover color to match the link hover color */
.panel-title>a:hover, 
.panel-title>small:hover, 
.panel-title>.small:hover, 
.panel-title>small>a:hover, 
.panel-title>.small>a:hover {
	color: #19b798;
}

/*--------------------------------------------------------------
# Forms and Buttons
--------------------------------------------------------------*/

/* Tone down field labels on forms, comments section, etc. */
label {
    font-weight: 500 !important;
}

/* Match the default font color */
.form-control {
	color: #555;
}

/* 
 * Generically set input buttons to look like Bootstrap, but set colors below that to make
 * it easier for users to override. Match Bootstrap btn-primary styles.
 */
button,
html input[type="button"],
input[type="submit"] {
    background-image: none;
	font-size: 16px;
	line-height: 22px;
	padding: 6px 12px;
    border: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    outline: 0;
}
button:hover, 
button:focus,
html input[type="button"]:hover, 
html input[type="button"]:focus,
input[type="submit"]:hover, 
input[type="submit"]:focus {
    outline: 0;
}

/* Set colors for input buttons (Search, Reply). Change these in your child theme. */
button,
html input[type="button"],
input[type="submit"] {
    color: #fff;
    background-color: #1abc9c;
    border-color: #1abc9c;
}
button:hover, 
button:focus,
html input[type="button"]:hover, 
html input[type="button"]:focus,
input[type="submit"]:hover, 
input[type="submit"]:focus {
    color: #fff;
    background-color: #16a085;
    border-color: #16a085;
}

/* Bootstrap uses "active" style on the <li>, but WordPress paginate_links() uses 
 * "current" in a <span> tag on the link. Also set the hover to match the primary button
 * color. 
 */
.pagination>li>a, 
.pagination>li>span,
span.page-numbers.current {
	color: #16a085;
}
.pagination>li>a:hover, 
.pagination>li>span:hover, 
.pagination>li>a:focus,
.pagination>li>span:focus,
span.page-numbers.current {
	z-index: 2;
	color: #fff;
    background-color: #16a085;
    border-color: #16a085;
}

/* Force search field to not be rounded on iOS devices */
input.search-field {
	-webkit-appearance: none !important;
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

/*
 * Generically style the links here. Set colors below to make it easier for users to 
 * override.
 */
a {
    word-wrap: break-word;

    -webkit-transition: color .1s ease-in, background .1s ease-in;
    -moz-transition: color .1s ease-in, background .1s ease-in;
    -ms-transition: color .1s ease-in, background .1s ease-in;
    -o-transition: color .1s ease-in, background .1s ease-in;
    transition: color .1s ease-in, background .1s ease-in;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: 0;
}
a:before,
a:after,
a:hover i:before,
a:focus i:before {
    -webkit-transition: color .1s ease-in, background .1s ease-in;
    -moz-transition: color .1s ease-in, background .1s ease-in;
    -ms-transition: color .1s ease-in, background .1s ease-in;
    -o-transition: color .1s ease-in, background .1s ease-in;
    transition: color .1s ease-in, background .1s ease-in;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

/* Since we lightened the body font, make the site title regular font weight */
.navbar-brand {
	font-weight: 500;
	/*height: 50px; BS already 50px*/ /* Fixes layout if nav bar wraps before collapsing for mobile */
}

/* 
 * Line up the navbar with the header and page content (it's in a container, but not a
 * row) 
 */
div.navbar-collapse.collapse {
	margin-left: -15px;
	margin-right: -15px;
}

/* Since we lightened the body font, increase font weight on active tab */
.nav-tabs>li.active>a, 
.nav-tabs>li.active>a:hover, 
.nav-tabs>li.active>a:focus {
	color: inherit;
	font-weight: 500;	
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

/* Set content (page title) header to midnight blue */
.content-header {
	background-color: #34495e;
	color: #fff;
}
.content-header h1, 
.content-header h2, 
.content-header h3 {
	color: #fff;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/

/* Set our footer to "almost" black */
.sidebar-footer {
	background-color: #2f2f2f;
	color: white;
}

.sidebar-footer h1, 
.sidebar-footer h2, 
.sidebar-footer h3 {
	color: #fff;
}

/* Set our "after footer" (footer nav menu and site credits) to "not quite" black */
.after-footer {
    background: #ffffff;
    color: white;
    font-size: 16px;
    font-weight: 400;
}

/* Set link colors to off white and text to gray for footer and after footer */
.sidebar-footer,
/*.after-footer {*/
.footer-nav-menu {
	color: #95a5a6;
	text-align: center;
}
.sidebar-footer a:not(.btn),
.footer-nav-menu a:not(.btn) {
/*.after-footer a:not(.btn) {*/
	color: #f2f2f2;
}
.sidebar-footer a:hover:not(.btn), 
.sidebar-footer a:focus:not(.btn), 
.footer-nav-menu a:hover:not(.btn),
.footer-nav-menu a:focus:not(.btn) {
/*.after-footer a:hover:not(.btn),
.after-footer a:focus:not(.btn) {*/
	color: #3bc492;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

/* Reduce the size of post entry meta (date, author) */
.entry-meta {
	font-size: 16px;
}

/* Color "sticky" (featured) posts */
.sticky .entry-title:after {
	background-color: #1abc9c;
	color: #fff;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

/* Reduce the size of comment edit link */
.comment-edit-link {
	font-size: 16px;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Captions and Galleries
--------------------------------------------------------------*/

/* Color and style the Bootstrap carousel captions */
.carousel-caption,
.carousel-caption h4,
.carousel-caption p {
	font-weight: bold;
}
.carousel-caption {
	text-shadow: none;
	background-color: #16a085;
	color: #fff;
	opacity: .75;
	font-weight: bold;
}
.carousel-caption a {
	color: #fff;
	text-decoration: underline;
}
.carousel-caption a:hover,
.carousel-caption a:focus {
    color: #bdc3c7; /*silver*/
}

/*--------------------------------------------------------------
# Widgets and Plugins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Widgets
--------------------------------------------------------------*/

/* Get Jetpack Popular Posts Widget to look like other thumbnail posts */
.widgets-list-layout-links {
	float: left !important;
	margin-left: 15px !important;
	/*margin-left: 1.625em !important;*/
}

/*--------------------------------------------------------------
## Plugins
--------------------------------------------------------------*/

/* Format Jetpack contact form with Bootstrap's form-control tag. */
form.contact-form input[type='text'], 
form.contact-form input[type='email'], 
form.contact-form textarea {
    display: block;
    width: 98%;
    height: 36px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.428571429;
    color: #a1a1a1;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
form.contact-form input[type='text']:focus, 
form.contact-form input[type='email']:focus, 
form.contact-form textarea:focus {
    color: #555;
}


.learnbutton  {
	text-align: center;

    font-weight: 900;
}

.learnbutton a:link {
      background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 12px 27px;
    float: left;
    border: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 25px;
    }

.learnbutton a:active {
  background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 12px 27px;
    float: left;
    border: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 25px;
   
}

.learnbutton a:visited {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 12px 27px;
    float: left;
    border: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 25px;
   }

.learnbutton a:hover {
        background-color: #fff;
    color: rgb(85, 85, 85);
    font-size: 12px;
    padding: 12px 27px;
    float: left;
    border: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 25px;
    
    }



.learnbutton  {
	text-align: center;

    font-weight: 900;
}

.learnbutton a:link {
      background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 12px 27px;
    float: left;
    border: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 25px;
    }

.learnbutton a:active {
  background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 12px 27px;
    float: left;
    border: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 25px;
   
}

.learnbutton a:visited {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 12px 27px;
    float: left;
    border: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 25px;
   }

.learnbutton a:hover {
        background-color: #fff;
    color: rgb(85, 85, 85);
    font-size: 12px;
    padding: 12px 27px;
    float: left;
    border: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 25px;
    
    }




.divabutton  {
	text-align: center;

    font-weight: 900;
}

.divabutton a:link {
 font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    border: solid 3px #fff;
    width: 100%;}

.divabutton a:active {
 font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    border: solid 3px #fff;
    width: 100%;}

.divabutton a:visited {
   ffont-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    border: solid 3px #fff;
    width: 100%;
}

.divabutton a:hover {
  font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
    border: solid 3px #a3d283;
    background-color: #a3d283;
}



.defaultbutton  {
	text-align: center;

    font-weight: 900;
}

.defaultbutton a:link {
 font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #0076b6;
    font-weight: 600;
    border: solid 3px #0076b6;
    }

.defaultbutton a:active {
  font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #0076b6;
    font-weight: 600;
    border: solid 3px #0076b6;    }

.defaultbutton a:visited {
    font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #0076b6;
    font-weight: 600;
    border: solid 3px #0076b6;
    ;
}

.defaultbutton a:hover {
  font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    border: solid 3px #0076b6;
    background-color: #0076b6;
}


.donatebutton  {
	text-align: center;

    font-weight: 900;
}

.donatebutton a:link {
    font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 33px;
    background-color: #46a247;
    color: #fff;
    width: 100%;
    font-weight: 600;
}

.donatebutton a:active {
    background-color: #46a247;
    color: #fff;
        font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 33px;
    width: 100%;
    font-weight: 600;
}

.donatebutton a:visited {
    background-color: #46a247;
    color: #fff;
        font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 33px;
    width: 100%;
    font-weight: 600;
}

.donatebutton a:hover {
    background-color: #a3d283;
    color: #267727;
    font-size: 16px;
    padding: 12px 27px;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 33px;
    width: 100%;
    font-weight: 600;
}



.headertop {
	width: 100%;
	background-color: #0076b6;
}

.facebook {
    margin-top: 13px;
	text-align: center;
}

.logo {
	text-align: center;
	
}



.navbar-nav {
   float: right;
    margin-top: 12px;
}

.navbar-default .navbar-nav>li>a {
    color: #0076b6;
    font-weight: 800;
    text-align: center;
       
}

.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
    color: #f8f8f8;
    background-color: #a3d283;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    color: #f8f8f8;
    background-color: #46a247;
}
#page, .navbar, .after-footer {
    max-width: 100%;
    margin: 0 auto;
}
.store-locator__infobox.store-locator__infobox--main {
    background-color: #fff !important;
    color: #fff;
}

.video-container {
	position:relative;
	padding-bottom:50%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.patient {
	background-color: #46a247;
	text-align: center;
	float: left;
	width: 100%;	
	padding: 43px 35px;
}
.patientdiva {
	background-color: #ee81aa;
	text-align: center;
	float: left;
	width: 100%;	
	padding: 43px 35px;
}
.patientdude {
	background-color: #00bbef;
	text-align: center;
	float: left;
	width: 100%;	
	padding: 43px 35px;
}






.logoh {
	max-width: 170px;
	text-align: center;
}

.maxwidth {
	max-width: 630px;
	 display: table !important;
    margin: 0 auto !important;
}

.noborder {
	
	margin-top: 0px;
}

.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0px !important;
}

.difference{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	font-weight: 400;
	text-align: center;
	color: #0076b7;
}



.wecan{
	font-family: 'Vidaloka', serif;
	font-size: 35px;
}

.fullwidth {
	width:100%;
}

.sidebar-footer, .footer-nav-menu {
    color: #383838;
    text-align: center;
}

.sidebar-footer a:not(.btn), .footer-nav-menu a:not(.btn) {
    color: #555555;
}

.sidebar-footer a:hover:not(.btn), .sidebar-footer a:focus:not(.btn), .footer-nav-menu a:hover:not(.btn), .footer-nav-menu a:focus:not(.btn) {
    color: #0088d2;
}
.afterfooter {
	background-color: #0076b6;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 100%;
	float: left;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}


.sharkmatic {
	text-align: center;
	float: right;
}



.sharkmatic a:link {
	color: #fff;
    padding-top: 10px;
  
}

.sharkmatic a:active {
	color: #fff;
    padding-top: 10px;
   
}
.sharkmatic a:visited {
	color: #fff;
    padding-top: 10px;
    }

.sharkmatic a:hover {
	color: #ffce07;
    padding-top: 10px;
    }
    
.divabox {
	background-color: #bd396a;
    text-align: center;
    padding: 60px 30px;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
	
}
.dudebox {
	background-color: #0076b6;
    text-align: center;
    padding: 60px 30px;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
	
}
.divaboxclass {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
	
}
.separation li {
	margin-bottom: 30px;
}

a {
    color: #0076b6;
    text-decoration: none;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

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

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.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;
}

.white{
	background-color: #fff;
	padding-top: 17px;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-right {
    float: inherit;
    margin-right: 6px;
}



#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:after {
font-size: 26px;}


#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:before {
    content: '\f333';
    font-family: 'dashicons';
    font-size: 46px;
    margin: 0px 20px 0px 0px;
    color: #0076b6;
}

.tparrows {
    cursor: pointer;
    background: rgba(0, 118, 182, 0) !important;
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
}
.tparrows:hover {
    background: #0076b6;
}

.tparrows:before {
    font-family: revicons;
    font-size: 30px;
    color: #fff;
    display: block;
    line-height: 40px;
    text-align: center;
    font-weight: 900;
}

.thrivemenu {
	position: relative;
	
}


.thrivewelllogo {
   
    padding-top: 0px;
    padding-bottom: 27px;
    width: 100%;
}

.read-more {
	display: none;
}



.white-row {
	padding: 30px 40px; 
	background-color: #fff;
}

.gform_wrapper form li, .gform_wrapper li {
    margin-bottom: 25px;
}

.gfield_required {
    color: #ff0000 !important;
    margin-left: .25em;
    font-size: 30px;
}
	
.posted-on {
 
    display: none;
}

.cat-links, .tags-links {
    display: none;
}




/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media(max-width:767px){
.navbar-nav>li>a {
    padding-top: 23px;
    padding-bottom: 23px;
    margin-left: 10px;
    margin-right: 10px;
}	
		
		.thrivewelllogo {
    max-width: 328px;
    }				
	.white {
   
    padding-bottom: 25px;
}					
						
}/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media(min-width:768px){
.navbar-nav>li>a {
    padding-top: 23px;
    padding-bottom: 23px;
    margin-left: 6px;
    margin-right: 6px;
}	 	

.thrivewelllogo {
    max-width: 328px;
    }
	
.white {
   
    padding-bottom: 25px;
}
	
	
	
}/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media(min-width:992px){   
.navbar-nav>li>a {
    padding-top: 23px;
    padding-bottom: 23px;
    margin-left: 2px;
    margin-right: 2px;
}	

.thrivewelllogo {
    max-width: 328px;
    }

.white {
   
    padding-bottom: 25px;
}







}/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media(min-width:1200px){
.navbar-nav>li>a {
    padding-top: 23px;
    padding-bottom: 23px;
    margin-left: 10px;
    margin-right: 10px;
}	
	
	
.thrivewelllogo {
    max-width: 328px;
    }
	
	
	.white {
   
    padding-bottom: 0px;
}
	
}/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */