/*
Theme Name: Panorama Sport

Version: 1.7
License: GNU General Public License & Envato License
License URI: http://wordpress.org/about/gpl/
Tags: white
*/


.alignnone, .aligncenter, .alignleft, .alignright {
}
  .alignnone img, .aligncenter img, .alignleft img, .alignright img {
    width: 100%;
  }
  .alignnone {
    margin: 0;
  }
  .aligncenter {
    margin: 5px auto 20px auto;
  }
  .alignleft {
    float: left;
    margin: 5px 20px 20px 0;
  }
  .alignright {
    float: right;
    margin: 5px 0 20px 20px;
  }
.wp-caption-text, .wp-caption-dd{ font-family:Verdana,Geneva,sans-serif;  text-align:right;  margin:4px 0px 17px 0px;  font-size:11px;  font-style:italic;  font-weight:normal;  line-height:17px;  color:#444;  z-index:1}
.wp-caption{ text-align:center;  max-width:100% !important}
.wp-caption img{ max-width:100% !important}
.sticky {
}
.gallery-caption {
}
.bypostauthor {
}

/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:    
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:         
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 4px;
  width: 67px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 12px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px); 
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px); 
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px); 
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}

.bannersLeft {
    left: 50%;
    margin-left: -669px;
    margin-top: 26;
    position: absolute;
    top: 5px;
    
    position:fixed;
    }
    
.bannersRight {
    left: 50%;
    margin-left: 510px;
    margin-top: 26;
    position: absolute;
    top: 5px;
    
    position:fixed;
    margin-top:-2px;
    }
	
.rpwe-block h3 {
	
	font-size: 14px !important;
    font-weight: 400;
    line-height: 1.5em;
}
#ipari a{
font-size:1.7rem;
font-family:roboto;
font-weight:700;
line-height:2.2rem;
color: #2B2B2B;
}
#ipari a:hover {color:#6B6B6B;}

.tetjerat, .permbajtja2, .kategorianen {
/*width:320px;
height:100%;*/
}

.tetjerat a{
font-size:20px;
font-family:roboto;
font-weight:600;
line-height:1.5rem;
color: #2B2B2B;
}
.tetjerat a:hover {color:#6B6B6B;}

.tetjerat1 a{
font-size:20px;
font-family:roboto;
font-weight:600;
line-height:1.5rem;
color: #2B2B2B;
}
.tetjerat1 a:hover {color:#6B6B6B;}

.kategorianen {
	background:#0070b7;
	color:#ffffff;
	display:inline-block;
	padding-top:0.01rem;
	padding-bottom:0.01rem;
	padding-right:0.3rem;
	padding-left:0.3rem;
	width:auto;
	text-transform:uppercase;
	letter-spacing:0.5px;
	font-size:13px;
	margin-top:5px;
	font-family:roboto;
	font-weight:500;
}

.kategorianen1 {
	background:#0070b7;
	color:#ffffff;
	display:inline-block;
	padding-top:0.01rem;
	padding-bottom:0.01rem;
	padding-right:0.3rem;
	padding-left:0.3rem;
	width:auto;
	text-transform:uppercase;
	letter-spacing:0.5px;
	font-size:13px;
	margin-top:5px;
	font-family:roboto;
}

.foto-ipari img{
	width:665px;
height:380px;
}

.foto-ipari a:hover {
	opacity:0.7;
}

.foto-kater {
	width:320px;
/*height:170px;*/
}

.foto-kater .article_thumbnail img {
	
	 width: 320px;
	 height:170px;
}

.foto-kater a:hover{
	opacity:0.7;
}
.foto-kater1 {
	width:320px;
/*height:170px;*/
}

.foto-kater1 a:hover{
	opacity:0.7;
}
#lajmet4{
	column-count:2;
	column-width:320px;
	clear:none;	
}
#lajmet5{
	column-count:2;
	column-width:320px;
	clear:none;	
	border:1px solid #0070b7;
}
.permbajtja1 {
font-size: 15px;
/*padding-top: 2rem;*/
font-family:roboto;
font-weight: 400;
line-height: 1.3rem;
color: #7A7A7A;
}
.permbajtja2 {
font-size: 15px;
/*padding-top: 2rem;*/
font-family:roboto;
font-weight: 400;
line-height: 1.3rem;
color: #7A7A7A;
}
.permbajtja3 {
font-size: 15px;
/*padding-top: 2rem;*/
font-family:roboto;
font-weight: 400;
line-height: 1.3rem;
color: #7A7A7A;
}

.etiketa {width:auto;float:left}
#kategoria1 {
	
	border:1px solid #0070b7;
}
.gotoAll {
width: 100%;
text-align: center;
display: inline-block;
line-height: 1.6rem;
font-size: 12px;
text-transform: uppercase;
padding: 0 1.5rem;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
font-weight: 700;
color: #7A7A7A;
font-family:Roboto;
}
.gotoAll:before {
    content: "";
    border-bottom: .1rem solid #8A8A8A;
    width: calc(100%/2 - 7rem);
    position: absolute;
    bottom: .8rem;
    left: 1.8rem;
}
.gotoAll:after {
content: "";
border-bottom: .1rem solid #8A8A8A;
width: calc(100%/2 - 7rem);
position: absolute;
bottom: .8rem;
right: 1.8rem;
}