html {
    height: 100%;
    overflow-y: scroll;
}
html.external {
    height: 100%;
    overflow: hidden;
}
body {
    min-height: 100%;
    color: #000;
    background: #fff;
    min-width: 1200px;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Open Sans', Helvetica, sans-serif;
}
input, textarea, button, select {
    font-family: inherit;
}
.container {
    width: 1170px;
}
h1, h2, h3, h4, h5 {
    font-weight: 400;
}
h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 25px;
  margin-bottom: 20px;
}
h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 20px;
  margin-bottom: 20px;
}
a {
    color: #2C47AD;
    text-decoration: underline;
}
a:hover {
    color: #20347C;
    text-decoration: underline;
}
.alert {
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
a.btn {
    text-decoration: none;
}
.btn.btn-primary {
    background: white;
    border-color: #2C47AD;
    color: #2C47AD;
}
.btn.btn-primary:hover {
    background: #2C47AD;
    border-color: #2C47AD;
    color: white;
}
.alert.alert-danger {
    background-color: #BB1227;
    border-color: #BB1227;
}
.alert.alert-info {
    background-color: #2C47AD;
    border-color: #2C47AD;
}

.top-wrapper {
    background: #eaeaea;
    background: -moz-linear-gradient(top, #eaeaea 0%, #ffffff 50%, #eaeaea 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(50%,#ffffff), color-stop(100%,#eaeaea));
    background: -webkit-linear-gradient(top, #eaeaea 0%,#ffffff 50%,#eaeaea 100%);
    background: -o-linear-gradient(top, #eaeaea 0%,#ffffff 50%,#eaeaea 100%);
    background: -ms-linear-gradient(top, #eaeaea 0%,#ffffff 50%,#eaeaea 100%);
    background: linear-gradient(to bottom, #eaeaea 0%,#ffffff 50%,#eaeaea 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#eaeaea',GradientType=0 );
}

.nav-base__wrapper {
    border-bottom-width: 5px;
    border-bottom-style: solid;
}
body.active-blue .nav-base__wrapper { border-color: #2C47AD; }
body.active-orange .nav-base__wrapper { border-color: #d1603d; }
body.active-red .nav-base__wrapper { border-color: #bb1227; }
body.active-green .nav-base__wrapper { border-color: #7ba825; }
body.active-cyan .nav-base__wrapper { border-color: #0c99b3; }
body.active-wine .nav-base__wrapper { border-color: #6f1549; }
body.active-turqoise .nav-base__wrapper { border-color: #0f556c; }

.nav-base {
    height: 65px;
    padding-top: 15px;
    display: table;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}
.nav-base > ul {
    width: 100%;
    display: table-row;
}
.nav-base > ul > li {
    display: inline-block;
    display: table-cell;
    height: 50px;
    text-align: center;
    padding: 0 5px;
}
.nav-base > ul > li > div > a {
    display: block;
    height: 50px;
    text-decoration: none;
    -webkit-border-radius: 3px 3px 0 0;
    line-height: 50px;
    font-size: 16px;
    border-width: 0px;
    border-bottom-width: 0;
    border-style: solid;
    border-radius: 3px 3px 0 0;
    padding: 0 25px;
}



/**
 * Tabs
 * Second gradient color is base colour + 70% white
 */

.tab-blue a {
    border-color: #2C47AD;
    color: #2C47AD;
}
.tab-blue a:hover,
.tab-blue.open a,
.active-blue .tab-blue a,
.tab-blue .dropdown-menu {
    background: #2C47AD;
    color: #fff;
}
body.full-tabs .tab-blue a {
    background: #2C47AD;
    color: #fff;
}
body.full-tabs .tab-blue a.dropdown-toggle {
    background: #2C47AD;
    /*
    background: -moz-linear-gradient(top,  #2C47AD 0%, #c2c7e3 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2C47AD), color-stop(100%,#c2c7e3));
    background: -webkit-linear-gradient(top,  #2C47AD 0%,#c2c7e3 100%);
    background: -o-linear-gradient(top,  #2C47AD 0%,#c2c7e3 100%);
    background: -ms-linear-gradient(top,  #2C47AD 0%,#c2c7e3 100%);
    background: linear-gradient(to bottom,  #2C47AD 0%,#c2c7e3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2C47AD', endColorstr='#c2c7e3',GradientType=0 );
    */    
    color: #fff;
}
body.full-tabs.active-blue .tab-blue a.dropdown-toggle,
body.full-tabs .tab-blue.open a.dropdown-toggle {
    background: #2C47AD;
    color: #fff;
}

.tab-red a {
    border-color: #bb1227;
    color: #bb1227;
}
.tab-red a:hover,
.tab-red.open a,
.active-red .tab-red a,
.tab-red .dropdown-menu {
    background: #bb1227;
    color: #fff;
}
body.full-tabs .tab-red a {
    background: #bb1227;
    color: #fff;
}
body.full-tabs .tab-red a.dropdown-toggle {
    background: #bb1227;
    /*
    background: -moz-linear-gradient(top,  #bb1227 0%, #ebb8bf 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bb1227), color-stop(100%,#ebb8bf));
    background: -webkit-linear-gradient(top,  #bb1227 0%,#ebb8bf 100%);
    background: -o-linear-gradient(top,  #bb1227 0%,#ebb8bf 100%);
    background: -ms-linear-gradient(top,  #bb1227 0%,#ebb8bf 100%);
    background: linear-gradient(to bottom,  #bb1227 0%,#ebb8bf 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bb1227', endColorstr='#ebb8bf',GradientType=0 );
    */
    color: #fff;
}
body.full-tabs.active-red .tab-red a.dropdown-toggle,
body.full-tabs .tab-red.open a.dropdown-toggle {
    background: #bb1227;
    color: #fff;
}

.tab-green a {
    border-color: #7ba825;
    color: #7ba825;
}
.tab-green a:hover,
.tab-green.open a,
.active-green .tab-green a,
.tab-green .dropdown-menu {
    background: #7ba825;
    color: #fff;
}
body.full-tabs .tab-green a {
    background: #7ba825;
    color: #fff;
}
body.full-tabs .tab-green a.dropdown-toggle {
    background: #7ba825;
    /*
    background: -moz-linear-gradient(top,  #7ba825 0%, #d8e5be 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7ba825), color-stop(100%,#d8e5be));
    background: -webkit-linear-gradient(top,  #7ba825 0%,#d8e5be 100%);
    background: -o-linear-gradient(top,  #7ba825 0%,#d8e5be 100%);
    background: -ms-linear-gradient(top,  #7ba825 0%,#d8e5be 100%);
    background: linear-gradient(to bottom,  #7ba825 0%,#d8e5be 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7ba825', endColorstr='#d8e5be',GradientType=0 );
    */
    color: #fff;
}
body.full-tabs.active-green .tab-green a.dropdown-toggle,
body.full-tabs .tab-green.open a.dropdown-toggle {
    background: #7ba825;
    color: #fff;
}

.tab-cyan a {
    border-color: #0c99b3;
    color: #0c99b3;
}
.tab-cyan a:hover,
.tab-cyan.open a,
.active-cyan .tab-cyan a,
.tab-cyan .dropdown-menu {
    background: #0c99b3;
    color: #fff;
}
body.full-tabs .tab-cyan a {
    background: #0c99b3;
    color: #fff;
}
body.full-tabs .tab-cyan a.dropdown-toggle {
    background: #0c99b3;
    /*
    background: -moz-linear-gradient(top,  #0c99b3 0%, #b7e1e8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0c99b3), color-stop(100%,#b7e1e8));
    background: -webkit-linear-gradient(top,  #0c99b3 0%,#b7e1e8 100%);
    background: -o-linear-gradient(top,  #0c99b3 0%,#b7e1e8 100%);
    background: -ms-linear-gradient(top,  #0c99b3 0%,#b7e1e8 100%);
    background: linear-gradient(to bottom,  #0c99b3 0%,#b7e1e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c99b3', endColorstr='#b7e1e8',GradientType=0 );
    */
    color: #fff;
}
body.full-tabs.active-cyan .tab-cyan a.dropdown-toggle,
body.full-tabs .tab-cyan.open a.dropdown-toggle {
    background: #0c99b3;
    color: #fff;
}

.tab-orange a {
    border-color: #d1603d;
    color: #d1603d;
}
.tab-orange a:hover,
.tab-orange.open a,
.active-orange .tab-orange a,
.tab-orange .dropdown-menu {
    background: #d1603d;
    color: #fff;
}
body.full-tabs .tab-orange a {
    background: #d1603d;
    color: #fff;
}
body.full-tabs .tab-orange a.dropdown-toggle {
    background: #d1603d;
    /*    
    background: -moz-linear-gradient(top,  #d1603d 0%, #f1d0c5 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d1603d), color-stop(100%,#f1d0c5));
    background: -webkit-linear-gradient(top,  #d1603d 0%,#f1d0c5 100%);
    background: -o-linear-gradient(top,  #d1603d 0%,#f1d0c5 100%);
    background: -ms-linear-gradient(top,  #d1603d 0%,#f1d0c5 100%);
    background: linear-gradient(to bottom,  #d1603d 0%,#f1d0c5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1603d', endColorstr='#f1d0c5',GradientType=0 );
    */    
    color: #fff;
}
body.full-tabs.active-orange .tab-orange a.dropdown-toggle,
body.full-tabs .tab-orange.open a.dropdown-toggle {
    background: #d1603d;
    color: #fff;
}

.tab-wine a {
    border-color: #6f1549;
    color: #6f1549;
}
.tab-wine a:hover,
.tab-wine.open a,
.active-wine .tab-wine a,
.tab-wine .dropdown-menu {
    background: #6f1549;
    color: #fff;
}
body.full-tabs .tab-wine a {
    background: #6f1549;
    color: #fff;
}
body.full-tabs .tab-wine a.dropdown-toggle {
    background: #6f1549;
    /*
    background: -moz-linear-gradient(top,  #6f1549 0%, #d4b9c9 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6f1549), color-stop(100%,#d4b9c9));
    background: -webkit-linear-gradient(top,  #6f1549 0%,#d4b9c9 100%);
    background: -o-linear-gradient(top,  #6f1549 0%,#d4b9c9 100%);
    background: -ms-linear-gradient(top,  #6f1549 0%,#d4b9c9 100%);
    background: linear-gradient(to bottom,  #6f1549 0%,#d4b9c9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6f1549', endColorstr='#d4b9c9',GradientType=0 );
    */
    color: #fff;
}
body.full-tabs.active-wine .tab-wine a.dropdown-toggle,
body.full-tabs .tab-wine.open a.dropdown-toggle {
    background: #6f1549;
    color: #fff;
}

.tab-turqoise a {
    border-color: #0f556c;
    color: #0f556c;
}
.tab-turqoise a:hover,
.tab-turqoise.open a,
.active-turqoise .tab-turqoise a,
.tab-turqoise .dropdown-menu {
    background: #0f556c;
    color: #fff;
}
body.full-tabs .tab-turqoise a {
    background: #0f556c;
    color: #fff;
}
body.full-tabs .tab-turqoise a.dropdown-toggle {
    background: #0f556c;
    /*
    background: -moz-linear-gradient(top,  #0f556c 0%, #b7ccd3 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0f556c), color-stop(100%,#b7ccd3));
    background: -webkit-linear-gradient(top,  #0f556c 0%,#b7ccd3 100%);
    background: -o-linear-gradient(top,  #0f556c 0%,#b7ccd3 100%);
    background: -ms-linear-gradient(top,  #0f556c 0%,#b7ccd3 100%);
    background: linear-gradient(to bottom,  #0f556c 0%,#b7ccd3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f556c', endColorstr='#b7ccd3',GradientType=0 );
    */
    color: #fff;
}
body.full-tabs.active-turqoise .tab-turqoise a.dropdown-toggle,
body.full-tabs .tab-turqoise.open a.dropdown-toggle {
    background: #0f556c;
    color: #fff;
}

.nav-base .dropdown-menu {
    margin: 0;
    border: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 20px 0;
    box-shadow: none;
}
.nav-base .dropdown-menu a {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    padding: 7px 40px;
}
.nav-base .dropdown-menu a:hover {
    background: rgba(0,0,0,.15);
    color: #fff;
    text-decoration: none;
}



.header-base {
    padding: 20px 0 10px 0;
}
.header-base__logo__wrapper {
    width: 150px;
    display: inline-block;
    height: 100px;
}
.header-base__logo {
    width: 150px;
    height: 105px;
    background: url(../img/logo.png) center center no-repeat;
    background-size: contain;
}
.header-base__logo p {
    display: none;
}
.header-base__search {
    padding-top: 28px;
    text-align: center;
}
.header-base__search input {
    width: 240px;
}
.header-base__search .input-lg,
.header-base__search .btn {
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
.header-base__search .btn {
    background: white;
    border-color: #2C47AD;
    color: #2C47AD;
}
.header-base__search .btn:hover {
    background: #2C47AD;
    border-color: #2C47AD;
    color: white;
}



.header-base__links {
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
}
.header-base__links p {
    margin-bottom: 25px;
}
.header-base__links a {
    font-weight: 400;
}
.header-base__links span.glyphicon {
    margin: 0 0 0 3px;
}
.header-base__links span.glyphicon.margin {
    margin: 0 5px;
}
.header-base__links a:hover {
    text-decoration: none;
}
.header-base__links i {
    display: inline-block;
    color: #aaa;
    margin: 0 3px;
}

.header-lite {
    padding: 5px 0;
    height: 75px;
    overflow: hidden;
}
.header-lite__logo__wrapper {
    width: 150px;
    display: inline-block;
    height: 60px;
}
.header-lite__logo {
    width: 150px;
    height: 60px;
    background: url(../img/logo.png) left center no-repeat;
    background-size: contain;
}
.header-lite__logo p {
    display: none;
}
.header-base__back {
    padding-top: 10px;
}
.header-base__back a {
    text-decoration: none;
}
.header-base__back .glyphicon {
    margin-right: 10px;
}


.external-block {
    position: absolute;
    top: 75px;
    left: 30px;
    right: 30px;
    bottom: 0;
}
.external-block iframe {
    height: 100%;
    width: 100%;
    overflow-x: auto;
    border: 0;
    overflow-y: scroll;
}



.content-wrapper--padding {
    padding-top: 40px;
    padding-bottom: 60px;
}

.breadcrumbs {
    margin-top: 0;
    font-size: 13px;
    color: #999;
}
.breadcrumbs a {
    color: #999;
}
.breadcrumbs a:hover {
    color: #000;
    text-decoration: none;
}


.sidebar-main {
    padding-right: 20px;
}
.sidebar-main a {
    text-decoration: none;
    font-size: 14px
}
.sidebar-main .list-group-item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.sidebar-main .list-group-item:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
body.active-blue .list-group-item.active { background-color: #2C47AD; border-color: #2C47AD; }
body.active-orange .list-group-item.active { background-color: #d1603d; border-color: #d1603d; }
body.active-red .list-group-item.active { background-color: #bb1227; border-color: #bb1227; }
body.active-green .list-group-item.active { background-color: #7ba825; border-color: #7ba825; }
body.active-cyan .list-group-item.active { background-color: #0c99b3; border-color: #0c99b3; }
body.active-wine .list-group-item.active { background-color: #6f1549; border-color: #6f1549; }
body.active-turqoise .list-group-item.active { background-color: #0f556c; border-color: #0f556c; }


.partners__wrapper {
    border-top: 1px solid #ddd;
}

.partners {
    padding: 30px 35px;
    text-align: center;
    margin-bottom: 0px;
}
.partners img {
    display: inline-block;
    height: 80px;
    margin: 0 5px;
}
.partners a {
    text-decoration: none;
}


.footer__wrapper {
    background: #eaeaea;
    background: -moz-linear-gradient(top,  #eaeaea 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(top,  #eaeaea 0%,#ffffff 100%);
    background: -o-linear-gradient(top,  #eaeaea 0%,#ffffff 100%);
    background: -ms-linear-gradient(top,  #eaeaea 0%,#ffffff 100%);
    background: linear-gradient(to bottom,  #eaeaea 0%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff',GradientType=0 );
    padding: 30px 0 30px 0;
    font-size: 14px;
}
.footer-line {
    overflow: hidden;
    height: 5px;
    background: #000;
    display: table;
    width: 100%;
}
.footer-line__inner {
    display: table-row;
    width: 100%;
    height: 5px;
}
.footer-line__inner span {
    display: table-cell;
    height: 5px;
}
.footer-line__inner span.blue {
    background: #2C47AD;
}
.footer-line__inner span.red {
    background: #bb1227;
}
.footer-line__inner span.green {
    background: #7ba825;
}
.footer-line__inner span.cyan {
    background: #0c99b3;
}
.footer-line__inner span.orange {
    background: #d1603d;
}
.footer-line__inner span.wine {
    background: #6f1549;
}
.footer-line__inner span.turqoise {
    background: #0f556c;
}



.no-top-margin {
    margin-top: 0;
}


.home__panel {
    background: #fff;
    border: 1px solid #ddd;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-bottom: 30px;
    padding: 30px;
}
.home__panel .img-postupicka img {
    max-width: 100%;
    margin-top: 15px;
    height: auto;
    width: auto;
}

.home__left {
    padding-right: 50px;
}
.home__right .alert {
    padding: 20px 30px;
    margin-bottom: 30px;
}
.home__gallery img {
    height: 129px;
    background: #f0f0f0;
    height: 129px;
}


.news-list {
    margin-top: 40px;
}
.news-list .media-left {
    width: 80px;
    height: 80px;
}
.news-list .media-left .media-object {
    width: 80px;
    height: 80px;
    background: #fff url(../img/placeholder3.png) center center no-repeat;
    background-size: 60px;
    border: 1px solid #ddd;
}
.news-list .media-body {
    padding-left: 10px;
    padding-top: 0px;
}
.news-list h4 {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 5px;
}
.news-list .date {
    color: #999;
}

.page-title {
    margin-bottom: 30px;
    color: #2C47AD;
}
.nomargin {
    margin: 0;
}
.notopmargin {
    margin-top: 0;
}
.nounderline {
    text-decoration: none;
}
.mt10 {
    margin-top: 10px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mt40 {
    margin-top: 40px;
}
.gray {
    color: #999;
}
.postupicka-map {
    width: 100%;
    height: 500px;
    background: #eaeaea;
}
.fb-link {
    color: #3E5B99;
}
.fb-icon {
    width: 22px;
    height: 22px;
    background: url(../img/fb-icon.png) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    text-decoration: none;
}
.btn.btn-default.btn-fb {
    border-color: #3E5B99;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 80px;
    background: #3E5B99 url(../img/fb-icon.png) 15px 12px no-repeat;
}
.btn.btn-default.btn-fb:hover {
    text-decoration: underline;
}
.fb-like-container {
    min-height: 40px;
}


.attachments {
    margin-top: 30px;
}
.attachments h2 {
    margin-top: 0;
    margin-bottom: 30px;
}
.attachments .media-left-inside {
    width: 70px;
    text-align: center;
    height: 70px;
    background: #fff;
    line-height: 70px;
    border: 1px solid #ccc;
    margin-right: 10px;
}
.attachments .media-left a {
    display: block;
}
.attachments .media-left a:hover {
    opacity: .6;
}
.attachments .media-left img {
    max-height: 40px;
    width: auto;
}
.attachments .media {
    margin-bottom: 20px
}
.attachments h4 {
    font-size: 16px;
}

.thumbnail.thumbnail-inline {
  display: inline-block;
  margin: 0 10px 10px 0;
  width: 150px;
  height: 150px;
}
.thumbnail.thumbnail-inline img {
  width: 140px;
  height: 140px;
}
.crossroad .col-xs-6:nth-child(2n-1) {
    clear: left;
}
.virtual-tour-badge {
    width: 140px;
    float: right;
    height: 140px;
    position: relative;
    margin-left: 20px;
    top: -50px;
    margin-bottom: -50px;
}
.virtual-tour-badge a {
    display: block;
    height: 100%;
    text-align: center;
    text-transform: lowercase;
    font-size: 18px;
    line-height: 1.3;
    padding: 35px 10px 10px 10px;
    text-decoration: none;
    background: #fff;
    -webkit-border-radius: 999px;
    border-radius: 999px;
    border: 1px solid #2C47AD; 
}
.virtual-tour-badge a:hover {
    background-color: #2C47AD;
    color: #fff;
}

.archive-list-group li:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.archive-list-group li {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.archive-list-group {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}
.pager {
    padding-top: 40px;
}
.pager li>a {
    text-decoration: none;
    padding: 15px 40px;
    font-size: 23px;
    border-color: #2C47AD;
}

.article-star {
    position: absolute;
    top: -12px;
    left: -5px;
    font-size: 20px;
    width: 25px;
    height: 25px;
    overflow: hidden;
    z-index: 20;
    color: #2C47AD;
}
.relative {
    position: relative;
}
.media, .media-body {
    overflow: visible;
}
a.list-group-item,
.archive-list-group a {
    text-decoration: none;
}
.news-list .media-left img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    border: 1px solid #ddd;
}
.small-icon {
    display: inline-block;
    margin-right: 5px;
}
.small-icon img {
    max-width: 16px;
    max-height: 16px;
    width: auto;
    height: auto;
}
.attachments-post {
    padding-bottom: 15px;
    font-size: 13px;
}
.single-post-thumbnail img {
    border: 1px solid #ddd;
}

.gallery-list .media-left .media-object {
    width: 80px;
    height: 80px;
    background: #fff url(../img/placeholder3.png) center center no-repeat;
    background-size: 60px;
    border: 1px solid #ddd;
}
.gallery-list .media-body {
    padding-left: 10px;
    padding-top: 0px;
}
.gallery-list h4 {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 5px;
}
.sharepoint-icon {
    display: inline-block;
    background-size: auto 60px;
    line-height: 60px;
    font-weight: bold;
    font-size: 18px;
}

.sharepoint-icon img{
    width:100%;
}

.sharepoint-footer {
    display: inline-block;
    background: url(../img/sharepoint.png) left center no-repeat;
    background-size: auto 30px;
    line-height: 30px;
    padding-left: 35px;
    font-weight: bold;
}
.sharepoint-header {
    display: inline-block;
    background: url(../img/sp-logo.png) left center no-repeat;
    background-size: auto 22px;
    padding-left: 30px;
    font-weight: bold;
}
.pager li>a:hover {
    border-color: #2C47AD;
    background-color: #2C47AD;
    color: white;
}
.pager li>a:focus {
    border-color: #2C47AD;
    background-color: white;
    color: #2C47AD;
}

/* update CSS 2016-08-02 - zadost postupicka */

.news-list h4 {
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 5px;
    font-size: 17px;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight:normal;
    font-size: 12px;
}

.media-body p {
    font-size: 13px;
}