/* Minification failed. Returning unminified contents.
(25,20): run-time error CSS1039: Token not allowed after unary operator: '-tint-color-var'
(26,17): run-time error CSS1039: Token not allowed after unary operator: '-tint-opacity-color-var'
(111,31): run-time error CSS1039: Token not allowed after unary operator: '-glow-color-var'
 */
body {
}

.picture-block {
    position: relative;
    text-align: center;
}

.picture-block .picture-effect--tint {
  position: relative;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.picture-block .picture-effect--tint:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  background: var(--tint-color-var);
  opacity: var(--tint-opacity-color-var);
  transition: all .3s linear;
}

.picture-block .picture-effect--blur {
    -webkit-filter: blur(1px); /* Safari */
    filter: blur(1px);
}

.picture-block .picture-effect--black-and-white {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);

}

.text-position--bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

/* Top left text */
.text-position--top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

/* Top left text */
.text-position--top {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%);
}

/* Top right text */
.text-position--top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

/* Bottom right text */
.text-position--bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

/* Bottom right text */
.text-position--bottom {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translate(-50%);
}

/* Centered text */
.text-position--centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-position--center-left {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(0, -50%);
}

.text-position--center-right {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%);
}

.text-effect--shadow {
    text-shadow: 2px 2px #808080;
}

.text-effect--glow {
    text-shadow: 0 0 3px var(--glow-color-var);
}

.news-with-tabs .tabbed-news-record .btn-khaki {
    background: #656f2b !important;
    color: #fff;
    padding: 5px 25px;
    margin-bottom: 25px;
    margin-top: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    border-radius: 0;
}

    .news-with-tabs .tabbed-news-record .btn-khaki:hover {
        color: #fff;
    }

.news-with-tabs .news-container.tabbed-news-record {
    margin: 20px;
}

.news-with-tabs .tabbed-news-record .news-record-image {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 25px;
}

    .news-with-tabs .tabbed-news-record .news-record-image .LOG-image {
        width: 250px;
        height: 250px;
    }

.news-with-tabs .tabbed-news-record .news-record-text-content {
    border: 2px solid #b58b63;
    padding: 50px 50px 25px 110px;
    min-height: 200px;
    max-width: 700px;
    margin-left: 150px;
    margin-top: 80px;
}

    .news-with-tabs .tabbed-news-record .news-record-text-content .title {
        font-size: 20px;
        font-weight: bold;
        margin: 5px 0;
    }

    .news-with-tabs .tabbed-news-record .news-record-text-content .sub-title {
        font-size: 16px;
        font-weight: bold;
        margin: 5px 0;
    }


.news-with-tabs .nav-pills {
    margin-left: 150px;
}
.news-with-tabs .nav-pills > li > a {
    color: grey;
    font-weight: bold;
}

.news-with-tabs .nav-pills > li.active > a, 
.news-with-tabs .nav-pills > li.active > a:hover, 
.news-with-tabs .nav-pills > li.active > a:focus {
	color: black;
	background-color: white;
}

.news-with-tabs .numb:before {
    content: none !important;
}


/******Scrollable news base style*******/
.scrollableNewsItem {
    float: left;
    height: 300px;
    width: 285px;
    position: relative;
    padding: 2px;
    margin: 2px;
    box-sizing: border-box;
    overflow: hidden;
    border: 2px solid #dadada;
    border-radius: 10px;
}

.newsMainWrapper {
    width: 100%;
    height: auto;
}

.newsFrame {
    width: 100%;
    height: auto;
    overflow: hidden;
    position:relative;
}

.scrollableItemsContainer {
    height: 310px;
    position: relative;
}

.forAnimate{
    position:relative;
}

.visibleNews {
    position: relative;
    left: 0%;
    width: 100%;
    top:0;
}

.uploadedNews_forward, .uploadedNews_back {
    position: absolute;
    width: 100%;
    top: 0;
    
}

.uploadedNews_forward {
    left: 100%;
}

.uploadedNews_back {
    left: -100%;
}

/*************************************/

