/*
Theme Name:         Travel Weekly Theme
Theme URI:          http://roots.io/starter-theme/
Description:        Roots is a WordPress starter theme based on HTML5 Boilerplate & Bootstrap. <a href="https://github.com/roots/roots/contributors">Contribute on GitHub</a>
Version:            7.0.3
Author:             Roots
Author URI:         http://roots.io/

License:            MIT License
License URI:        http://opensource.org/licenses/MIT
*/
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */

.mceu_35 {
	display:block !important;
}

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
  cursor: url(../img/owl-carousel/grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-theme .owl-controls {
  display: none !important;
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 0;
  margin-top: -44px;
}
/* @media (min-width: 768px) { */
  /* .owl-theme .owl-controls { */
    /* display: block !important; */
  /* } */
/* } */
 .owl-theme .owl-controls { 
    display: block !important;
	} 
.owl-theme .owl-controls .owl-prev,
.owl-theme .owl-controls .owl-next {
  background-color: #ffffff;
  padding: 12px 12px;
  line-height: 1;
  margin: 2px 0;
  width: 40px;
  height: 40px;
  color:#000;
}
.owl-theme .owl-controls .owl-prev:hover,
.owl-theme .owl-controls .owl-next:hover {
  background-color: #e6e6e6;
}
/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: transparent url(../img/owl-carousel/AjaxLoader.gif) no-repeat center center;
}
/* 
*  Owl Carousel CSS3 Transitions 
*  v1.3.2
*/
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
#acm-ad-tag-300x250_MREC_ad2 {
	
	margin-bottom:10px;
	
}
.main-article {
  margin-top: 1em;
  margin-bottom: 3em;
}
@media (min-width: 768px) {
  .main-article {
    margin-top: 2em;
  }
}
.main-article .article-header {
  padding-top: 30px;
  position: relative;
  font-size: 28px;
  font-size: 2.8rem;
}
@media (min-width: 768px) {
  .main-article .article-header {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .main-article .article-header {
    font-size: 57px;
    font-size: 5.7rem;
  }
}
@media (min-width: 1500px) {
  .main-article .article-header {
    font-size: 57px;
    font-size: 5.7rem;
  }
}
.featured-zone  {
	/* background-image: url('/wp-content/uploads/2015/01/Web_BG.jpg'); */
	
    background-repeat: no-repeat;
    background-position: 50% 50%;	
	
}
.featured-zone img {
	margin-top: 0px !important; 
  
}
.main-article .article-header .item-time {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.main-article .article-header .page-title {
  color: #000000;
}
.main-article .item-meta {
  margin-top: 1em;
}
.copy {
  margin-bottom: 3em;
}
.list-tags {
  margin-bottom: 2em;
}
.article-carousel .article-carousel-footer {
  position: relative;
  margin: .5em 0 0;
  color: #808080;
  font-size: 16px;
  font-size: 1.6rem;
}
.article-carousel .article-carousel-footer .caption {
  margin: 0;
  padding-right: 60px;
  max-width: 46em;
  font-style: italic;
}
.article-carousel .article-carousel-footer .counter {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  color: #000;
  text-transform: uppercase;
  font-size: .8em;
  font-family: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.discover .block.block--featured ,.discover .attachment-feature-banner.size-feature-banner.wp-post-image ,
.discover .attachment-discovery-feature.size-discovery-feature.wp-post-image{
    height: 100%;
}
.last-discover-block2 a {
    margin-bottom: 0;
    margin-top: 15px;
}
.modal-header{
	border-bottom:none!important;
}
.btn.btn-default.close-button{
	padding: 6px 37.8px!important;
}
.popup-button{
	float:none!important;
}
.custom-title-discover{
	color:#ffffff;
}
.custom-content-discover{
	
	font-size:16px!important;
	
}


.article-header {
	
	overflow: visible !important;
}
.owl-item .item {
	margin-bottom:0px;	
}
	.owl-item .item img {
		width:100%;
		min-height:450px;
}
.text-wrapper {
	z-index: 100 !important; 
}
.commentlist .comment-content p {
	font-size:14px !important;	
	text-transform: none;
	
}
footer.comment-meta {
	background-color:#ffffff;
	text-align:left;
	
	}
	
	.single-news_article .latest-news-heading {
	 padding: 0px 15px;
		
	}
	.single-news_article .heading-wrapper {
	     margin-bottom: 15px;
		
	}
/* Custom css for pic-gallery */

@media screen and (max-width: 500px) {	

 .article-carousel ul li img {	
	min-height:0px !important;
	height:27vh !important;	
}
 .article-carousel .article-header {
	min-height:0px !important;
} 
.category-label-gallery  {
	background: #2b648b;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 5px 0;	
}
.article-header-gallery-heading {
	display:block;
	font-size: 24px;
	font-style:normal;
	padding-left:0px;
    font-family: Georgia,Times,'Times New Roman',serif;
}
.article-carousel .text-wrapper h1 {
	
	
	color:rgb(38, 50, 56);
	
}
.article-carousel .text-wrapper.printable--content {	
	bottom:0px !important; 
	top : 117% !important; 
}
/* .article-carousel.article-container .article-header .text-wrapper { */
	 /* padding: 0 10px !important; */
/* }				 */
}

	
	


@media screen and (min-width: 1489px) and (max-width: 1565px){

header[role="banner"] nav[role="menu"] [role="menubar"]>[role="menuitem"] a {
   
	padding: 0 10px 0 10px;

}
}

@media screen and (min-width: 1190px) and (max-width: 1489px){

header[role="banner"] nav[role="menu"] [role="menubar"]>[role="menuitem"] a {
   
	padding: 0 5px 0 5px;

}
}

@media screen and (min-width: 992px) and (max-width: 1489px){
header[role="banner"] nav[role="menu"] [role="menubar"]>[role="menuitem"] a{
	padding: 0 2px 0 0;
}

}
@media screen and (max-width: 780px) {
	
	.owl-item .item img {
	width:auto!important;	
	
}
	
}
