/**
 * Name: elements.css
 *
 *	T.O.C
 *	
 *   #Alerts
 *   #Animations
 *   #Back to top
 *	#Buttons
 *	#Callout Boxes
 *	#Custom Lists
 *	#Dividers
 *   #Fullwidth Section
 *   #Headlines
 *	#Icon Boxes
 *	#SocialMedia
 *	#Styled Tables
 */

/* ==========================================================================
   #Alerts
   ========================================================================== */

	.alert {
		position: relative;
		padding: 13px 15px;
		border: 1px solid #d7d7d7;
		font-family: 'open_sansregular', Arial, sans-serif;
		font-size:14px;
		text-align: center;
		z-index: 5000;
	}
	
	.alert img {
		position: relative;
		top:5px;
		margin-right: 15px;
		width:40px;
		margin-bottom:40px;
		font-size:40px;
		float:left;
		vertical-align: middle;
	    -webkit-flex: 0 0 40px;
	    -ms-flex: 0 0 40px;
	    flex: 0 0 40px;		
	}


	.alert a{color:#333;text-decoration: underline;}
	.alert a.close{
		border:1px solid #faea11;
		text-decoration: none;
		padding:0px 10px;
		position: relative;
		float:right;
		top:-5px;
		right:0px;
		margin:0px 0px 40px 10px;
		font-size:20px;
	    -webkit-flex: 0 0 40px;
	    -ms-flex: 0 0 40px;
	    flex: 0 0 40px;		
	}
	.alert .text{
		max-width:95%
	}
	.alert.info {
		border: 1px solid #f3e686;
	}
	
	.alert.success {
		border: 1px solid #e18f5f;
		background-color: #e18f5f;
		color: #fff;
	}
	
	.alert.error {
		border: 1px solid #80a852;
		background-color: #80a852;
		color: #fff;
	}
	
	.alert.warning {
		border: 1px solid #fbaf5d;
		background-color: #faea11;
		line-height:26px;
		color: #333;
		text-align: left;
	    display: -ms-flexbox;
	    display: -webkit-flex;
	    display: flex;
	    -webkit-flex-direction: row;
	    -ms-flex-direction: row;
	    flex-direction: row;
	    -webkit-flex-wrap: nowrap;
	    -ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	    -webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	    justify-content: space-between;
	    -webkit-align-content: flex-start;
	    -ms-flex-line-pack: start;
	    align-content: flex-start;
	    -webkit-align-items: flex-start;
	    -ms-flex-align: start;
	    align-items: flex-start;		
	}
	@media screen and (max-width: 979px) {
		.alert.warning .row{
			padding:0px 20px 10px !important;
		}
		.alert.warning{
		    -webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		    flex-wrap:wrap;			
		}
		.alert .text{padding-left:20px;}
		.alert a.close{
			border:1px solid #faea11;
			text-decoration: none;
			padding:0px 10px;
			position: absolute;
			float:none;
			top:0px;
			right:-19px;
			margin:0px 0px 40px 0px;
			font-size:20px;
		    -webkit-flex: 0 0 40px;
		    -ms-flex: 0 0 40px;
		    flex: 0 0 40px;		
		}	
		.alert.warning img {
			position: absolute;
			top:5px;
			width:40px;
			left:-10px;
			margin-bottom:40px;
			font-size:40px;
			float:none;
			vertical-align: middle;
		    -webkit-flex: 0 0 40px;
		    -ms-flex: 0 0 40px;
		    flex: 0 0 40px;		
		}			
	}
	
/* ==========================================================================
   #Animations
   ========================================================================== */
   
   .animate {
		-webkit-animation-duration: 1s;
			  animation-duration: 1s;
		-webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
		visibility: hidden;
	}

	.animate.visible { visibility: visible; }
	
	.animate.hidden { visibility: hidden; }
   
/* ==========================================================================
   #Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		
		right: -40px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		background-color: #0d6fae;
		color: #fff;
		font-size: 30px;
		text-align: center;					
		opacity: 0.5;
		text-decoration: none;
		cursor: pointer;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
		z-index: 2000;				
	}
	
	#back-to-top i {
		font-size: 24px;
		line-height: 40px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top:hover { opacity: 1; }
	
	#back-to-top.visible { right: 40px; }
	#back-to-top.gone { right: -40px; }

/* ==========================================================================
   #Buttons
   ========================================================================== */

	.btn { 
	  background: #ff9004;
	  background-image: -webkit-linear-gradient(top, #ff9004, #c97a18);
	  background-image: -moz-linear-gradient(top, #ff9004, #c97a18);
	  background-image: -ms-linear-gradient(top, #ff9004, #c97a18);
	  background-image: -o-linear-gradient(top, #ff9004, #c97a18);
	  background-image: linear-gradient(to bottom, #ff9004, #c97a18);
	  -webkit-border-radius: 3;
	  -moz-border-radius: 3;
	  border-radius: 3px;
	  color:#fff !important;
	    cursor: pointer;
	    display: inline-block;
	    font-size:14px;
	    line-height: 16px;
	    font-family: 'Source Sans Pro', Arial, sans-serif;
	    font-weight: normal;
	    margin: 0 5px;
	    padding: 2px 20px 3px 20px;
	    text-transform: uppercase;
	    text-decoration: none !important;
	    transition: all 0.5s ease 0s;
	    vertical-align: middle;	
		cursor: pointer; 
		-webkit-transition: all ease 0.5s;
				transition: all ease 0.5s;	
	}
	
	a.btn { color: #80a852; }
	
	.btn:focus { outline: 0; }
	
	.btn-large {
		padding: 15px 30px;
		font-size: 20px;
	}
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 0 8px 0 -4px;
		font-size: 20px; 
		line-height: 20px; 
	}
	
	.btn:hover {
		background: #faaf52;
	  	text-decoration: none;
	}

	/* Buton Colors */
	
	.btn .accent-color-1 { 
		background-color: #0d6fae;
		color: #fff;
	}
	
	a.btn .accent-color-1 { color: #80a852; }
	
	.btn .accent-color-1:hover { 
		color: #fff;
	}
	
	.btn .accent-color-2 { 
		border-top: 1px solid #f8a11e;
		color: #f8a11e;
	}
	
	a.btn .accent-color-2 { color: #b1a843; }
	
	.btn .accent-color-2:hover { 
		border-top:1px solid #f8a11e;
		background-color: orange;
		color: #fff;
	}
	
	.btn .accent-color-3 { 
		border: 1px solid #e18f5f;
		color: #e18f5f;
	}
	
	a.btn .accent-color-3 { color: #e18f5f; }
	
	.btn .accent-color-3:hover { 
		box-shadow: inset 0 100px 0 0 #e18f5f;
		color: #fff;
	}
	
	.btn .accent-color-4 { 
		border: 1px solid #f3e686;
		color: #f3e686;
	}
	
	a.btn .accent-color-4 { color: #f3e686; }
	
	.btn .accent-color-4:hover { 
		box-shadow: inset 0 100px 0 0 #f3e686;
		color: #fff;
	}
	
/* ==========================================================================
   #Callout Boxes
   ========================================================================== */

	.callout-box {
		padding: 20px 0;
		margin-bottom: 30px;
		background-color: #333;
	}
	
	/**
 	 * Callout box with one background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */
	 
	.callout-box.bg-img {
		background-repeat: no-repeat; /* 1 */ 
		background-position: center center;
		-webkit-background-size: cover;
				background-size: cover;
		color: #fff;
	}
	
	/**
 	 * Callout box with repeating background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */
	 
	.callout-box.bg-pattern {
		background: repeat top left; /* 1 */	
		color: #fff;
	}
	
	.callout-box.bordered {
		border: 1px solid #efefef;
		background-color: #f5f5f5;
	}
	
	.callout-box .btn { margin-bottom: 0; }
	
	/**
 	 * Callout box grid system
 	 *
	 * 1. overwriting inherited .row width to 100% in order to make it fluid
	 *
	 */
	
	.callout-box .row { 
		width: 100%; /* 1 */ 
	}
	
	.callout-box .span1,
	.callout-box .span2,
	.callout-box .span3,
	.callout-box .span4,
	.callout-box .span5,
	.callout-box .span6,
	.callout-box .span7,
	.callout-box .span8,
	.callout-box .span9,
	.callout-box .span10,
	.callout-box .span11,
	.callout-box .span12 {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 10px;
		margin: 0;	
	}
	
	.callout-box .span12 { width: 100%; }
	.callout-box .span11 { width: 91.6666666667%; }
	.callout-box .span10 { width: 83.3333333333%; }
	.callout-box  .span9 { width: 75%; }
	.callout-box  .span8 { width: 66.6666666667%; }
	.callout-box  .span7 { width: 58.3333333333%; }
	.callout-box  .span6 { width: 50%; }
	.callout-box  .span5 { width: 41.6666666667%; }
	.callout-box  .span4 { width: 33.3333333333%; }
	.callout-box  .span3 { width: 25%; }
	.callout-box  .span2 { width: 16.66666666666667%; }
	.callout-box  .span1 { width: 8.333333333333333%; }
  
	@media (max-width: 767px) {
	
		.callout-box .span1,
		.callout-box .span2,
		.callout-box .span3,
		.callout-box .span4,
		.callout-box .span5,
		.callout-box .span6,
		.callout-box .span7,
		.callout-box .span8,
		.callout-box .span9,
		.callout-box .span10,
		.callout-box .span11,
		.callout-box .span12 { width: 100%; }
	  
	}

/* ==========================================================================
   #Custom Lists
   ========================================================================== */

	/**
 	 * Custom lists
 	 *
	 * 1. unstyled list
	 * 2. list with squares for bullets
	 * 3. list with discs for bullets
	 *
	 */
	 
	ul.unstyled { list-style-type: none; } /* 1 */
	ul.square { list-style-type: square; } /* 2 */
	ul.circle { list-style-type: circle; } /* 3 */
	
	/**
 	 * FontAwesome lists
 	 *
	 * 1. Fill circle list
	 *
	 */
	 								
	ul.fill-circle { list-style: none; }	/* 1 */
	
	ul.fill-circle li:before { 
		position: relative;
		top: -2px;
		width: auto;
		height: auto;
		margin-right: 15px;
		color: #80a852;
		font-family: 'FontAwesome';
		font-size: 8px;
		font-style: normal;
	}
	
	ul.fill-circle li:before { content: ""; }
	
	/**
 	 * Custom Icon Font lists
 	 *
	 * 1. Check list
	 *
	 */
	
	ul.check { list-style: none; }			/* 1 */
	
	ul.check li:before { 
		position: relative;
		top: 0;
		display: inline-block;
		width: 24px;
		height: 24px;
		border: 1px solid #80a852;
		border-radius: 50%;
		margin-right: 15px;
		color: #80a852;
		font-family: 'iconfontcustom';
		font-size: 12px;
		text-align: center;
		font-weight: 600;
	}
	
	ul.check li:before { content: ""; }
	
	ul.check li,
	ul.fill-circle li { margin-bottom: 10px; }
	
	ul.check li:last-child,
	ul.fill-circle li:last-child { margin-bottom: 0; }	
	
	/* Accent colors */
	
	ul.fill-circle.accent-color-1 li:before,
	ul.check.accent-color-1 li:before { color: #80a852; }
	
	ul.check.accent-color-1 li:before { border-color: #80a852; }
	
	ul.fill-circle.accent-color-2 li:before,
	ul.check.accent-color-2 li:before { color: #b1a843; }
	
	ul.check.accent-color-2 li:before { border-color: #b1a843; }
	
	ul.fill-circle.accent-color-3 li:before,
	ul.check.accent-color-3 li:before { color: #e18f5f; }
	
	ul.check.accent-color-3 li:before { border-color: #e18f5f; }
	
	ul.fill-circle.accent-color-4 li:before,
	ul.check.accent-color-4 li:before { color: #f3e686; }
	
	ul.check.accent-color-4 li:before { border-color: #f3e686; }

/* ==========================================================================
   #Dividers
   ========================================================================== */

	.divider { margin: 40px 0; }
	
	.divider.single-line { border-top: 1px solid #e2e2e2; }
	
	.divider.double-line { border-top: 4px double #e2e2e2; }
	
	.divider.single-dotted {
		 height: 1px;
		 background: url(../images/bg-single-dotted.gif) repeat-x top left ;  
	}
	
	.divider.double-dotted { 
		height: 4px;
		background: url(../images/bg-double-dotted.gif) repeat-x top left; 
	}	

	.vertical-divider {background:url(../images/hr_vertical.png) top center no-repeat;height:220px;width:100%;}

/* ==========================================================================
   #Fullwidth Section
   ========================================================================== */
   
    /**
 	 * Full width section
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .fullwidth-section
	 *
	 */

	.slide-fullwidth-section {
		position: relative;
		z-index: 0;	
		background-color: #fefdfc;
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */ 
		background-position: 50% 0;
		-webkit-background-size: cover;
				background-size: cover;			
	} 
   .fullwidth-section {
		overflow: hidden;
		position: relative;
		z-index: 0;	
		padding: 30px 0 20px;
		margin: 30px 0 40px 0;
		background-color: #f9f9f9;
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */ 
		background-position: 50% 0;
		-webkit-background-size: cover;
				background-size: cover;			
	}

	.fullwidth-section-content {
		position: relative;
		z-index: 3;
	}
   
   	.fullwidth-section-overlay {
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-repeat: repeat;
		background-position: 0 0;	
	}
	
	.fullwidth-section-video {
		position: absolute;
		z-index: 1;
		top: 0;
		overflow: hidden;
		width: 100%;
		height: 100%;
	}
	#bg-video h1{
		color: #fff !important;
		text-align: center;
		opacity: .6;
	}
	a.play {
		display: inline-block;
		width: 100px;
		height: 100px;
		margin-top: 20px;
		color: #fff !important;
		text-align: center;		
	}
	
	a.play i {
		font-size: 80px; 
		line-height: 90px;
		opacity: .6;
	}
	
	a.play:hover {
		background-color: transparent;
		text-decoration: none;
		color: #ff9004 !important;
		opacity: 1;
	}
	
	.parallax.parallax-enabled { 
		background-attachment: fixed !important;
		/* if parallax then we don't want it to cover */
		-webkit-background-size: cover;
				background-size: cover;
		
	}
	.fit-vids-style { display:none; } /* adaugat de ytplayer */
	
	.fullwidth-section .callout-box {
		background-color: transparent;
		margin: 0;
	}
	
	/* Overwite element color in fullwidth-section */
	.fullwidth-section .btn,
	.fullwidth-section a.btn,
	.fullwidth-section ul.fill-circle.accent-color-1 li:before,
	.fullwidth-section ul.check.accent-color-1 li:before,
	.fullwidth-section .icon-box-1 a,
	.fullwidth-section .icon-box-2 a { color: #fff; }
	
	.fullwidth-section .btn,
	.fullwidth-section ul.check.accent-color-1 li:before,
	.fullwidth-section .icon-box-2.accent-color-1:hover > span,
	.fullwidth-section .icon-box-2.accent-color-1:hover > span:after,
	.fullwidth-section .table-bordered,
	.fullwidth-section .table-bordered th, 
	.fullwidth-section .table-bordered td { border-color: #fff; }
	
	.fullwidth-section .btn:hover {
		box-shadow: inset 0 100px 0 0 #fff;
		color: #80a852;
	}
	
	.fullwidth-section .icon-box-1.accent-color-1 > i,
	.fullwidth-section .icon-box-2.accent-color-1 > span i{
		background-color: #fff;
		color: #69675b;
	}
	
	.fullwidth-section .pricing-table.accent-color-1 .btn { background-color: transparent; }
	
	.fullwidth-section .ewf_widget_twitter { margin-bottom: 0; }
	
	/* Fullwidth Backgrounds */
	
	#bg-1 {
		padding: 5px 0 0px 0;
		margin-top: 0px;
		margin-bottom: 0px;
		background-color: #0d6fae !important;
		color:#fff;
		font-size: 26px;
		line-height: 28px;

	}
	#bg-1 h3{color:#fff !important;}
	#bg-2 {
		margin-top: 0px;
		margin-bottom: 0px;
		padding-top:40px;
		background-image: url(/public/images/womaninsuit-opti.png);
		background-position: 90% 20px;
		background-size: contain;
		background-repeat: no-repeat;
	}

	
	#bg-3 {
		padding: 20px 0 20px 0; 
		background-color: #fdfae1;
		color: #69675b;
		background-image: url(/public/images/bg-wrapper.png), url(/public/images/bg-wrapper.png);
		background-repeat: repeat-y, repeat-y;
		background-size: 75px 1px, 75px 1px;
		background-position: top left, top right;		

	}
   
   	#bg-4 {
		padding:40px 0;
		border: none;
		margin:0;
		background-image: url(/public/images/slide_2.png);
		background-size: 1689px 582px;
	}
	
	#bg-5 {
		padding: 10px 0 0px 0;
		margin-top: 0px;
		margin-bottom: 0px;
		background-color: #d9d9d9;
		color:#fff;
		font-size: 22px;
		line-height: 28px;
	}
	
	.bg-6 {
		border-bottom: 1px solid #b3b3b3;
		padding: 30px 0 10px 0;
		margin-top: 0px;
		margin-bottom: 0px;
		background-color: #fff;
	
	}
	
	.bg-6 h3{text-align: left;}
	
	#bg-9 .icon-box-2 { margin-bottom: 20px; }
	
	#bg-9 img { margin: -60px 0 -50px 0; }
	
	#bg-10 {
		overflow: visible;
		padding-bottom: 0;
		border: none;
		margin-bottom: -50px;
		background-color: #f3e686;
		color: #69675b;
	}
	
	#bg-10 a { color: #69675b; }
	
	#bg-10 img {
		display: block;
		margin-top: -80px;
	}
	
	#bg-video {
		padding: 200px 0 200px;
		margin: 30px 0 0px 0;
		background-image: url(/public/images/video_background.png);
		background-color: #333;
	}

	#bg-11 {
		padding: 80px 0 50px 0;
		margin: 60px 0 -50px 0;
		background-color: #e4e4e4;
		color: #69675b;
	}
	
	#bg-11 a { color: #69675b; }
	
	@media (min-width: 1400px) {
		
		#bg-8 { margin-bottom: 7px; }
		#bg-8 img { margin-bottom: -57px; }
		
		#bg-9 { padding-top: 50px;  }
		#bg-9 .icon-box-2 { margin-bottom: 40px; }
		#bg-9 img { margin: -110px 0 -50px 0; }
		
		#bg-10 img { margin-top: -90px; }
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		#bg-8 { margin-bottom: -15px; }
		#bg-8 img { margin-bottom: -35px; }
		
		#bg-9 img,
		#bg-10 img { margin: 0; }

		#bg-video {
			padding: 100px 0 100px;
			margin: 30px 0 0px 0;
			border:1px solid red;
		}
		
	}
	
	@media (max-width: 767px) {

		#bg-8 { margin-bottom: -50px; }
		#bg-8 img { margin-bottom: 0; }
		
		#bg-9 img,
		#bg-10 img { margin: 0; }
		
	}
   

/* ==========================================================================
   #Headlines
   ========================================================================== */

	.headline { 
		margin: 40px 0 40px 0;
		text-align: center; 
	}
	
	.headline h3 {margin-bottom: 10px;font-size: 35px;text-transform:uppercase;letter-spacing: 1px; text-align: center}
	.headline h3 span{color:#0d6fae;}
	
	.headline h5 { 
		font-family: 'Source Sans Pro', Arial, sans-serif;
		font-size: 22px;
		line-height: 28px;
		margin-bottom: 20px;
		text-align: center;
		color:#222;
	}

/* ==========================================================================
   #Icon Boxes
   ========================================================================== */

/* Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin-bottom: 20px;
		margin-top:20px;
	}
		
	.icon-box-1 > i { 
		float: left;
		display: block;
		width: 80px;
		height: 80px;
		border-radius: 50%;
		margin-top: 20px;
		background-color: #80a852;
		color: #fff;  
		font-size: 38px; 
		line-height: 80px; 
		text-align: center;
	} 
	
	.icon-box-1 > img { 
		float: left; 
		display: block; 
	} 
	
	.icon-box-1 a { color: #69675b; }
	
	.icon-box-1 h4 { 
		font-family: 'Source Sans Pro', Arial, sans-serif;
		font-weight: 600;
	}
	
	.icon-box-1 .icon-box-content { margin-left: 100px; }
	
	/* Accent colors */
	
	.icon-box-1.accent-color-1 > i { background-color: #80a852; }
	.icon-box-1.accent-color-2 > i { background-color: #b1a843; }
	.icon-box-1.accent-color-3 > i { background-color: #e18f5f; }
	.icon-box-1.accent-color-4 > i { background-color: #f3e686; }
	
	.icon-box-1:hover > i { background-color: #69675b; }

/* Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin-bottom: 10px;
		margin-top:10px;
		text-align: center; 
	}
		
	.icon-box-2 > span {
		position: relative;
		display: inline-block;
		margin-bottom: 10px; 
		width: 80px;
		height: 60px;
		border-radius: 50%;
		margin-top: 0px;
	
	}
	
	.icon-box-2 > span i { 
		display: inline-block;
		font-size: 40px;
		color:#0d6fae;
		font-weight: bold;
		line-height: 65px;
	}
	
	.icon-box-2 > img { margin-bottom: 10px; }
	
	.icon-box-2 h3 { margin-bottom: 10px; letter-spacing: 1px; font-size: 26px;text-align: center;	font-weight: 300;  }
	
	.icon-box-2 a { color: #ff9004 !important; font-weight: bold; }
	
	.icon-box-2 .icon-box-content {line-height: 28px;}

	/* Accent colors */
	
	.icon-box-2.accent-color-1 > span i { background-color: #80a852; }
	
	.icon-box-2.accent-color-1:hover > span,
	.icon-box-2.accent-color-1:hover > span:after { border-color: #80a852; }
	
	.icon-box-2.accent-color-2 > span i { background-color: #b1a843; }
	
	.icon-box-2.accent-color-2:hover > span,
	.icon-box-2.accent-color-2:hover > span:after { border-color: #b1a843; }
	
	.icon-box-2.accent-color-3 > span i { background-color: #e18f5f; }
	
	.icon-box-2.accent-color-3:hover > span,
	.icon-box-2.accent-color-3:hover > span:after { border-color: #e18f5f; }
	
	.icon-box-2.accent-color-4 > span i { background-color: #f3e686; }
	
	.icon-box-2.accent-color-4:hover > span,
	.icon-box-2.accent-color-4:hover > span:after { border-color: #f3e686; }
	

	

/* ==========================================================================
   #SocialMedia
   ========================================================================== */

	a.social-icon {
		float: left;
		display: block;
		width: 20px;
		border-radius: 50%;
		margin-right: 5px;
		color: #777;
		text-align: right;
		vertical-align: middle;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 16px;
		line-height: 26px;
	}
	
	a.social-icon:hover { text-decoration: none; }


/* ==========================================================================
   #Styled Tables
   ========================================================================== */

	.table-bordered { 
		border: 1px solid #d7d7d7; 
		border-left: none; 
		border-collapse: separate; 		
	}
	
	.table-bordered th, 
	.table-bordered td { border-left: 1px solid #d7d7d7; }
	
	.table-bordered caption + thead tr:first-child th,
	.table-bordered caption + tbody tr:first-child th,
	.table-bordered caption + tbody tr:first-child td,
	.table-bordered colgroup + thead tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child td,
	.table-bordered thead:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child td { border-top: none; }

	.table-condensed th,
	.table-condensed td { padding: 4px 8px; }
	
	table.accent-color-1 th { background-color: #80a852; }
	table.accent-color-2 th { background-color: #b1a843; }
	table.accent-color-3 th { background-color: #e18f5f; }
	table.accent-color-4 th { background-color: #f3e686; }

	@media (max-width: 480px) {
	
		/**
		 * Force table to not be like tables anymore
		 */
		 
		table, 
		thead, 
		tbody, 
		th, 
		td, 
		tr { 
			display: block;
		}
		
		/**
		 * Hide table headers
		 */
	
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.table-bordered { border-top: none; }
		tr { border-top: 1px solid #69675b; }
		
		td:first-child { border-top: none !important; }
	  
	}

/* ==========================================================================
   #WordPress Widgets
   ========================================================================== */
	
	/* WordPress Widget Defaults */
	
	.widget { margin-bottom: 80px; }
	
	.widget-title { margin-bottom: 40px; }
	
	#footer-top .widget { margin: 20px 0; }
	
	#footer-middle .widget { margin: 20px 0; }
	#footer-middle .widget-title { margin-bottom: 10px; }
	#footer-middle .widget-title_social{text-align: center;margin-bottom:15px;}
	
	#footer-bottom .widget:last-child { margin-bottom: 0; }
	
	@media (max-width: 767px) {
		
		#footer-top-widget-area-1 { padding-top: 10px; }
		#footer-top-widget-area-2 { padding-bottom: 10px; }
		
	}
	
	/* Text Widget */
	
	.widget_text {}
	
	.textwidget {}
	
	#footer-top .widget_text h3 { margin-bottom: 0; }
	#footer-bottom .widget_text span { 
		font-family: 'open_sansregular', sans-serif;
		vertical-align: text-bottom;  
	}

	
	#footer .ewf_widget_social_media a.social-icon {
		width: 25px;
		height: 25px;
	}
	
	#footer .ewf_widget_social_media a.social-icon i {
		font-size: 15px;
		line-height: 25px;
	}
	
