@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,400&subset=latin,latin-ext);

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'ReplicaProBold';
    src: url('fonts/replicaprobold.eot');
    src: url('fonts/replicaprobold.eot?#iefix') format('embedded-opentype'),
    url('fonts/replicaprobold.woff2') format('woff2'),
    url('fonts/replicaprobold.woff') format('woff'),
    url('fonts/replicaprobold.ttf') format('truetype'),
    url('fonts/replicaprobold.svg#ReplicaProBold') format('svg');
}

a:focus {
    outline:0;
}

a:active,
a:hover {
    outline: 0;
}

#cookies {
    position: fixed;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 4px 0px 20px rgba(0, 0, 0, 0.15);
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

#cookies .wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

#cookies .cookies-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 81px;
    min-width: 81px;
    height: 92px;
    margin: 0 46px 0 0;
}

#cookies .cookies-logo img {
    max-width: 100%;
    max-height: 100%;
}

#cookies .right {
    width: 100%;
}

#cookies .title {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
}

#cookies .p {
    margin: 7px 0 0 0;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #555555;
}

#cookies .link {
    display: block;
    margin: 20px 0 0 0;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    text-decoration-line: underline;
    color: #0C4976;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word; 
}

#cookies .row {
    margin: 22px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#cookies .row::before, #cookies .row::after {
    content: none;
}

#cookies .chbox {
    display: flex;
    cursor: pointer;
}

#cookies .chbox input {
    display: none;
}

#cookies .chbox span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 7px 0 0;
    min-width: 18px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 1px solid #333333;
    position: relative;
    transition: all .4s;
}

#cookies .chbox p {
    margin: 0;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #333333;
}

#cookies .chbox p a {
    text-decoration: underline;
    color: #0C4976;
}

#cookies .chbox.disabled input[type="checkbox"]:checked + span {
    background-color: #C4C4C4;
    border-color: #C4C4C4;
}

#cookies .chbox.disabled input[type="checkbox"]:checked + span + p {
    color: #969696;
}

#cookies .chbox input[type="checkbox"]:checked + span {
    background-color: #0C4976;
    border-color: #0C4976;
    transition: all .4s;
    
}

#cookies .chbox input[type="checkbox"]:checked + span::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background: url("/project/images/check.svg") no-repeat center;
}

#cookies .chbox input[type="checkbox"]:checked + span + p {
    color: #0C4976;
}

#cookies .outlined, #cookies .filled {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    background: transparent;
    font-family: 'Ubuntu';
    font-style: normal;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    border-radius: 2px;
    height: 36px;
}

#cookies .outlined {
    font-weight: 400;
    color: #767676;
    border: 1px solid #A9A9A9;
    padding: 0 23px;
}

#cookies .outlined:hover {
    border-color: #0C4976;
    color: #0C4976;
}

#cookies .filled {
    font-weight: 500;
    color: #FFFFFF;
    background: #0C4976;
    border: 1px solid #0C4976;
    padding: 0 54px;
}

#cookies .filled:hover {
    background: #20262c;
    border-color: #20262c;
}
.youtube-link {
    position: relative;
}
.youtube-link .play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 48px;
    margin-left: -34px;
    margin-top: -24px;
    filter: grayscale(1);
    opacity: .7;
    transition: .2s all;
}
a.youtube-link:hover .play-button {
    filter: grayscale(0);
    opacity: 1;
}

@media only screen and (max-width: 1024px) {
    #cookies .cookies-logo {
        display: none;
    }
}

@media only screen and (max-width: 880px) {
    #cookies .row {
       flex-wrap: wrap;
       gap: 20px;
    }
    #cookies .outlined, #cookies .filled {
        width: calc(50% - 10px);
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    #cookies .row {
        gap: 15px;
    }
    #cookies .wrapper {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 450px) {
    #cookies .chbox {
        width: calc(50% - 7.5px);
    }
    #cookies .outlined, #cookies .filled {
        width: 100%;
    }
    #cookies .outlined {
        order: 4;
    }
    #cookies .filled {
        order: 3;
        margin-top: 45px;
    }
    #cookies .right {
        position: relative;
    }

    #cookies .link {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        width: 100%;
        bottom: 112px;
    }
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-right: 0px;
    padding-left: 0px;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0;
    margin-bottom: 0;
}

ul, menu, dir {
    -webkit-padding-start: 0px;
    padding: 0;
}

ul, ol {
    margin-bottom: 0;
}

html, body {
    margin: 0;
    padding: 0;
    height:100%;
    width: 100%;
}

.wrapper {
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.hidden {
    display: none;
}

.visible {
    display: block !important;
}
.nowrap{
    white-space: nowrap;
}
/*-----   Header   -----*/

.header {
    position: relative;
    min-height: 180px;
}

.header_container {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.header .logo_top {
    position: relative;
    float: left;
    padding-top: 30px;
    padding-bottom: 25px;
}

.header .logo_top .logo1 {
    padding-right: 90px;
}

.header .button_line {
    position: relative;
    float: right;
}

.header .button_line > * {
    position: relative;
    float: left;
}

.header .button_line > * > li {
	list-style: none;
}


.header .buttons {
    position: relative;
    list-style: none;
}

.header .buttons li {
    margin-left: 1px;
    position: relative;
    display: block;
    float: left;
    padding-bottom: 3px;
}

.header .buttons li.region {
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 13px;
}

.header .buttons li a {
    display: block;
    float: left;
    color: #91949e;
    background-color: #f1f1f1;
    text-decoration: none;
    line-height: 54px;
    width: 54px;
    text-align: center;
}

.header .buttons li.region a {
    color: #383f47;
}

.header .button_line > div {
    position: relative;
    float: right;
    margin-left: 1px;
}

.header .button_line > div  a {
    display: block;
    float: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #383f47;
    background-color: #f1f1f1;
    text-decoration: none;
    line-height: 54px;
    text-align: center;
    padding: 0 18px;
}

.header .button_line a:hover {
    background: none;
}

.header .button_line a.active {
    background: none;
}

.header .tabs {
    position: relative;
    list-style: none;
    float: right;
    padding-top: 60px;
    padding-bottom: 30px;
}

.header .tabs li {
    float: left;
    padding: 0 15px;
}

.header .tabs li:first-child {
    padding-left: 0;
}

.header .tabs li:last-child {
    padding-right: 0;
}

.header .tabs li a {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 24px;
    line-height: 24px;
    color: #000000;
    text-decoration: none;
}
.header .tabs li.active a,
.header .tabs li a:hover{
    color: #de372c;
}
.header .disconnect {
    position: relative;
    float: right;
    padding-top: 27px;
    list-style: none;
}

.header .disconnect li {
    text-align: right;
    padding: 11px 0;
}

.header .disconnect span {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #a7a7a7;
}

.header .disconnect span.hello i {
    position: relative;
    display: inline-block;
    right: 10px;
    top: 1px;
    width: 14px;
    height: 14px;
    background: url('../images/sprite.png') no-repeat 0px -131px;
}

.header .disconnect span.name {
    color: #383f47;
}

.header .disconnect .disc_btn a {
    display: block;
    float: right;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #383f47;
    background-color: #f1f1f1;
    text-decoration: none;
    line-height: 51px;
    text-align: center;
    padding: 0 31px;
}

.header .disconnect .disc_btn a:hover {
    background-color: #ffffff;
}

/*-----   Menu Style   -----*/
.side_menu.paddedTop {
    /*padding-top: 50px;*/
}

.text.paddedBottom {
    padding-bottom: 50px;
}

.side_menu {
    border-top: 2px solid #ffffff;
}
.side_menu .menu_sub_2nd > ul{
    z-index: 5;
}

.nav_menu {
    list-style: none;
}

.menu_sub_2nd.active > a {
    background-color: #0d4977;
    color: #ffffff;
    border-color: #0d4977;
}

.menu_sub_2nd {
    padding: 0;
    margin: 0;
    background-color: #1b76bc;
}

.menu_sub_2nd > a {
    position: relative;
    padding: 25px 0 25px 20px;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    line-height: 18px;
    display: block;
    border-top: 1px solid #2b80c2;
}

.menu_sub_2nd > a:hover {
    background-color: #0d4977;
    color: #ffffff;
    border-color: #0d4977;
}

.menu_sub_2nd.open a {
    background-color: #0d4977;
    color: #ffffff;
    border-color: #0d4977;
}
.side_menu .open > .dropdown-menu{
    display: block;
}
.side_menu .menu_sub_3nd > ul,
.menu_sub_2nd > ul {
    position: relative;
    float: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    background-color: #0d4977;
    padding-bottom: 30px;
}
.side_menu .menu_sub_3nd > ul{
    left: 0;
    padding-bottom: 10px;
}
.side_menu .menu_sub_3nd > ul a:hover{
    background-color: #0d4977;
    
}
.side_menu .menu_sub_3nd > ul a{
    padding-left: 50px;
}
.menu_sub_3nd .menu_sub_4nd > a,
.menu_sub_2nd .menu_sub_3nd > a {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    padding: 14px 0 14px 20px;
    color: #51acf2;
    text-decoration: none;
    background-color: #0d4977;
}
.menu_sub_3nd .menu_sub_4nd > a:hover,  .menu_sub_3nd .menu_sub_4nd > a.active,
.menu_sub_2nd .menu_sub_3nd > a:hover,  .menu_sub_2nd .menu_sub_3nd > a.active {
    color: #91c6ef;
    background-color: #0d4977;
}
.menu_sub_3nd .menu_sub_4nd.active > a,
.menu_sub_2nd .menu_sub_3nd.active > a {
    color: #91c6ef;
}

/*-----   Main menu   -----*/

.main_menu {
    background-color: #0d4977;
}

.main_menu_container {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.main_menu .main_menu_list {
    position: relative;
    list-style: none;
    text-align: center;
}

.dropdown-menu .sub-menu {
    left: 100%;
    position: absolute;
    top: 0;
    display:none;
    margin-top: -1px;
    border-top-left-radius:0;
    border-bottom-left-radius:0;
    border-left-color:#fff;
    box-shadow:none;
}
.dropdown-menu.right_menu{
    left: auto;
    right: 0;
}
.main_menu .main_menu_list .main_menu_item {
    display: inline-block;
    margin-left: -4px;
    position: relative;
}

.main_menu .main_menu_list .main_menu_item > a {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 50px;
    color: #ffffff;
    text-decoration: none;
    padding: 0 30px;
    border-right: 1px solid #025899;
}

.main_menu .main_menu_list .main_menu_item:last-child > a {
    border-right: none;
}

.main_menu .main_menu_list .main_menu_item > a:hover {
    background-color: #1b76bc;
}
.main_menu .main_menu_list .main_menu_item.active > a{
    background-color: #de372c;
}

.main_menu .main_menu_item > ul {
    position: absolute;
    background-color: #1b76bc;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    padding-top: 9px;
    box-shadow: none;
    
    -webkit-box-shadow: 1px 4px 5px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 1px 4px 5px 1px rgba(0,0,0,0.25);
    box-shadow: 1px 4px 5px 1px rgba(0,0,0,0.25);
}

.main_menu .main_menu_list .main_menu_item:hover > ul {
    display: block;
}

/*.main_menu .main_menu_item.open {
    background-color: #1b76bc;
}*/

.main_menu .main_menu_item.open ul {
    display: none;
}

.main_menu .mmenu_sub_2nd {
    position: relative;
    padding: 0;
    margin: 0;
    background-color: #1b76bc;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.main_menu .mmenu_sub_2nd > a {
    position: relative;
    padding: 19px 20px 19px 20px;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    line-height: 18px;
    display: block;
    border-top: 1px solid #2b80c2;
    text-align: left;
    min-width: 300px;
}

.main_menu .mmenu_sub_2nd > a:hover {
    background-color: #0d4977;
    color: #ffffff;
}

.main_menu .mmenu_sub_2nd > a:focus {
    background-color: #1b76bc;
    color: #ffffff;
}

.main_menu .mmenu_sub_2nd > ul {
    position: absolute;
    float: none;
    top: 1px;
    background-color: #0d4977;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 0;
}

.main_menu .mmenu_sub_2nd:hover > ul {
    display: block;
}

.main_menu .mmenu_sub_3nd > a {
    position: relative;
    padding: 13px 50px 13px 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #51acf2;
    text-decoration: none;
    background-color: #0d4977;
}

.main_menu .mmenu_sub_3nd > a:focus {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #51acf2;
    text-decoration: none;
    background-color: #0d4977;
}

.main_menu .mmenu_sub_3nd a:hover, .main_menu .mmenu_sub_3nd.active a {
    color: #91c6ef;
    background-color: #0d4977;
}


/*-----   Content   -----*/

.content {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    z-index: 5;
}

/*-----   Slider   -----*/

.home_slideshow {
    position: relative;
    max-width: 1198px;
    margin-left: auto;
    margin-right: auto;
}

.home_slider {
    overflow: visible !important;
    position: relative;
}

.home_slider, .home_slider * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.home_slider {
    width: 100%;
    min-width: 200px;
    margin: auto;
    padding: 0;
}

.home_slider a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    display: block;
    overflow: hidden;
    height: 440px;
    text-decoration: none;
    vertical-align: top;
}

.home_slider a > img {
    width: 100%;
    position: static;
    display: block;
}

.home_slideshow .slide_title {
    position: relative;
    display: none;
    padding: 2.5% 0 0 2.5%;
    padding-right: 30%;
    font-family: "ReplicaProBold";
    font-size: 1em;
    color: #ffffff;
    line-height: 1em;
}

.home_slideshow .cycle-slide-active .slide_title {
    display: block;
}

.home_slideshow .home_slider .overlay_dark {
    position: absolute;
    top: 0;
    width: inherit;
    height: inherit;
    display: none;
    background: rgba(0,0,0,0.4);
}

.home_slideshow .cycle-slide-active .overlay_dark {
    display: block;
}

.home_slideshow .slide_nav {
    position: absolute;
    bottom: 5%;
    left: 1.5%;
}

.home_slideshow .slide_nav > * {
    float: left;
}

.home_slideshow .control-prev,
.home_slideshow .control-next {
    position: relative;
    top: 45%;
    width: 40px;
    height: 40px;
    text-align: center;
    z-index: 1000;
}

.home_slideshow .control-prev img,
.home_slideshow .control-next img {
    position: relative;
    top: 7px;
    width: 14px;
    height: 26px;
}

.home_slideshow .control-prev {
    left: 0px;
    margin-right: 14px;
}

.home_slideshow .control-next {
    right: 0px;
    margin-left: 14px;
}

.home_slideshow .cycle-pager {
    text-align: center;
    z-index: 500;
    position: relative;
    top: 11px;
    display: block;
    height: 20px;
}

.home_slideshow .cycle-pager span {
    position: relative;
    top: 5px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #ffffff;
    margin: 0 7px;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    text-indent: -9999px;
    cursor: pointer;
}

.home_slideshow .cycle-pager span.cycle-pager-active {
    background-color: #ffffff;
}

.home_slideshow .cycle-pager > * {
    cursor: pointer;
}


/*-----   Home items   -----*/

.home_items {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.home_item_red {
    background-color: #83393d;
}

.home_item_blue {
    background-color: #0f4671;
}

.home_item_grey {
    background-color: #383f47;
}

.home_item {
    position: relative;
    max-width: 400px;
    border: 1px solid #ffffff;
    float: left;
}

.home_item_big {
    height: 460px;
}

.home_item_small {
    height: 230px;
}

.home_item a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.imgLiquid_nobgSize{
    position: relative !important;
}

.imgLiquid_nobgSize > img{
    position: relative !important;
    z-index: 1;
}

.imgLiquid_nobgSize .imgLiquidBg
{
    position: absolute !important;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.hitem_title {
    position: relative;
    display: block;
    padding: 5% 0 0 5%;
    padding-right: 10%;
    font-family: "ReplicaProBold";
    font-size: 1em;
    color: #ffffff;
    line-height: 1em;
}

.hitem_date {
    position: relative;
    display: block;
    padding-top: 3.5%;
    padding-left: 5%;
    font-family: "ubuntu";
    font-size: 0.5em;
    line-height: 0.5em;
    font-weight: lighter;
    color: #ffffff;
}

.hitem_info {
    position: relative;
    display: none;
    padding-top: 2%;
    padding-left: 5%;
    padding-right: 10%;
    font-family: "ubuntu";
    font-size: 18px;
    font-weight: lighter;
    color: #ffffff;
}

.home_item_small .hitem_info {
    font-size: 18px;
}

.overlay_hover_dark {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.4);
}

.overlay_hover_light {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(255,255,255,0.2);
}
.right_sidebar .overlay_hover_dark i,.right_sidebar .overlay_hover_light i,
.home_item .overlay_hover_dark i, .home_item .overlay_hover_light i {
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    bottom: 4%;
    right: 5%;
}
.right_sidebar .overlay_color,
.right_sidebar .overlay_color_1,
.home_item .overlay_color_1,
.home_item .overlay_color {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(198,56,47,0.7);
}
.right_sidebar .overlay_color_2,
.home_item .overlay_color_2 {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(15,70,113,0.7);
}
.right_sidebar .overlay_color_3,
.home_item .overlay_color_3 {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(107,107,107,0.7);
}


.home_item:hover .overlay_hover_dark, .home_item:hover .overlay_hover_light {
    display: block;
}

.home_item:hover a .hitem_info {
    display: block;
}
.home_items .today_events {
    background-color: #dcdcdc;
}
.home_items .today_events a {
    width: auto;
    height: auto;
    text-decoration: none;
}
.home_items .today_events .hitem_title {
    color: #000000;
}
.home_items .today_events .hitem_time {
    position: relative;
    display: block;
    margin-top: 7%;
    margin-left: 5%;
    font-family: "ubuntu";
    font-size: 0.65em;
    line-height: 0.65em;
    font-weight: lighter;
    color: #f65058;
}
.home_items .today_events .hitem_event {
    position: relative;
    display: block;
    padding-top: 1.5%;
    padding-left: 5%;
    padding-right: 5%;
    font-family: "ubuntu";
    font-size: 0.7em;
    line-height: 1.4em;
    font-weight: lighter;
    color: #383f47;
}

.home_items .today_events .all_events {
    position: absolute;
    display: block;
    bottom: 4%;
    right: 6%;
    font-family: "ubuntu";
    font-size: 15px;
    line-height: 15px;
    font-weight: normal;
    color: #000000;
}

.home_items .today_events .all_events i {
    position: relative;
    font-size: 13px;
    padding-left: 7px;
}

/*-----   Show more   -----*/
.show_more_subsc {
    position: relative;
    padding: 15px 0;
}

.show_more_subsc > div {
    display: inline;
    position: absolute;
}

.show_more_subsc a {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 15px;
    color: #000000;
    text-decoration: none;
}

.show_more_subsc .show_more {
    text-align: center;
}

.show_more_subsc .show_more > div {
    display: inline-block;
    margin-right: -4px;
}

.show_more_subsc .show_more .more_button {
    position: relative;

}

.show_more_subsc .show_more .more_button a {
    padding: 0 66px 0 46px;
}

.show_more_subsc .show_more .more_button a i {
    font-size: 14px;
    position: absolute;
    padding-left: 10px;
    top: 5px;
}

.show_more_subsc .show_more .line1, .show_more_subsc .show_more .line2 {
    position: relative;
    top: -5px;
    height: 1px;
    width: 1px;
    background-color: #f2f2f2;
}

.show_more_subsc .subsc_button {
    position: relative;
    float: right;
}

.show_more_subsc .subsc_button a {
    padding-right: 10px;
    padding-left: 44px;
}

.show_more_subsc .subsc_button a i {
    font-size: 14px;
    position: relative;
    padding-left: 5px;
}

/*-----   Text page   -----*/
.top_banner a {
    position: relative;
    background-color: #000000;
    display: block;
    text-decoration: none;
}

.top_banner a span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}
.home_slider .imgLiquidBg{
    z-index: 20;
    position: relative;
}
.home_slider a{
    position: relative !important;
}
.home_slider a:after,
.top_banner a:after{
    content: '';
    left:0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 15;
    
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjE4JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjI0Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjM0JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.24) 18%, rgba(0,0,0,0) 34%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.65)), color-stop(18%,rgba(0,0,0,0.24)), color-stop(34%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.24) 18%,rgba(0,0,0,0) 34%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.24) 18%,rgba(0,0,0,0) 34%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.24) 18%,rgba(0,0,0,0) 34%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.24) 18%,rgba(0,0,0,0) 34%,rgba(0,0,0,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-8 */

}
.top_banner a span h1 {
    display: block;
    padding: 23px 0 0 26px;
    font-family: "ReplicaProBold";
}

.top_banner a span p {
    font-size: 14px;
    line-height: 14px;
    font-family: "ubuntu";
    font-size: 14px;
    font-weight: lighter;
    color: #ffffff;
    padding: 2% 0 0 3.5%;
}

.top_banner a img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
}

.main_content {
    position: relative;
    padding-right: 7%;
    max-width: 800px;
    padding-left: 30px;
}

.title_cat {
    position: relative;
    padding-top: 20px;
}
.title_area {
    padding-top: 20px;
}
.title_area h1 {
    display: block;
    line-height: 40px;
    margin-bottom: 30px;
    font-family: 'ReplicaProBold', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #383f47;
}

.row.top_filter.title_cat_top{
    padding-bottom: 0;
}
.right_sidebar.col-xs-4.title_cat_top{
    padding-top: 20px;
}
.title_14 {
    font-family: "ubuntu";
    font-size: 14px;
    font-weight: lighter;
    color: #757575;
    text-decoration: none;
}

.title_14:hover {
    text-decoration: none;
    color: #757575;
}

.title_14:after {
    content: "/";
    position: relative;
    color: #d6d6d6;
    padding-left: 9px;
    padding-right: 4px;
    pointer-events:none;
}

.title_14:last-child {
    color: #a7a7a8;
}

.title_14:last-child:after {
    display: none;
}
.text pre{
    margin-top: 30px;
}
.text p {
    font-family: "ubuntu";
    font-size: 16px;
    font-weight: lighter;
    color: #383f47;
    padding-top: 30px;
}
.text{
    line-height: 26px;
}
.heading {
    position: relative;
    padding-top: 42px;
}

.text h1 {
    font-family: "Replica Pro";
    font-size: 36px;
    line-height: 40px;
    color: #f6f6f6;
}

.text h2 {
    font-family: "ubuntu";
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    color: #383f47;
    padding-top: 38px;
}

.text h3 {
    font-family: "ubuntu";
    font-size: 24px;
    line-height: 24px;
    font-weight: lighter;
    color: #000000;
    padding-top: 38px;
}

.text h4 {
    font-family: "ubuntu";
    font-size: 22px;
    line-height: 22px;
    font-weight: lighter;
    color: #757575;
    padding-top: 38px;
}

.text table {
    position: relative;
    margin-top: 40px;
    margin-bottom: 54px;
    text-align: left;
    width: 100%;
    border: none;
    table-layout: fixed;
}

.text table[border="1"] td,
.text table[border="1"]
{
    border: none;
    border-bottom: 1px solid #e1e1e1;
}

.text table h4:first-child,
.text table h3:first-child,
.text table h2:first-child
{
    padding-top: 0;
}

.text table caption {
    position: relative;
    font-family: "ubuntu";
    font-size: 24px;
    line-height: 22px;
    font-weight: lighter;
    color: #383f47;
    float: left;
    padding-bottom: 20px;
}

.text table th {
    font-family: "ubuntu";
    font-weight: lighter;
    color: #757575;
    font-size: 14px;
}

.text table td {
    border-bottom: 1px solid #e1e1e1;
    font-family: "ubuntu";
    font-weight: lighter;
    color: #383f47;
    font-size: 16px;
}

.text table td, .text table th {
    position: relative;
    padding: 13px 0;
    width: 50%;
}

.text table.list th {
    border-bottom: 1px solid #e1e1e1;
}
.text table.list th + th,
.text table.list td + td {
    padding-left: 20px;
}

.text a, .text a:hover {
    color: #de372c;
}

.text a:visited {
    color: #919191;
}

.text ul {
    list-style: none;
    font-family: "ubuntu";
    font-size: 16px;
    font-weight: lighter;
    color: #383f47;
}

.text ul li {
    padding-top: 30px;
    font-family: "ubuntu";
    font-size: 16px;
    font-weight: lighter;
    color: #383f47;
}

.text ul li:before {
    position: relative;
    padding-right: 24px;
    top: 2px;
    content: "•";
    font-size: 18px;
    color: #383f47;
}
.text blockquote{
    font-style: italic;
}
.divider {
    clear: both;
    position: relative;
    width: 100%;
    float: none;
    height: 1px;
    background-color: #e5e5e5;
}
.text + .divider {
    margin-top: 40px;
}

.divider2x {
    clear: both;
    position: relative;
    width: 100%;
    float: none;
    height: 2px;
    background-color: #e5e5e5;
}

.comment {
    position: relative;
    padding: 55px 0 20px 0;
}

.comment_author {
    position: relative;
    top: -35px;
    float: left;
    width: 30%;
    text-align: center;
}

.comment_author .photo {
    border: 20px solid #ffffff;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
}

.comment_author .name {
    position: relative;
    top: -10px;
    font-family: "ubuntu";
    font-size: 16px;
    line-height: 16px;
    font-weight: normal;
    color: #d01f25;
}

.comment_author .desc {
    position: relative;
    padding-top: 10px;
    ont-family: "ubuntu";
    font-size: 14px;
    line-height: 14px;
    font-weight: normal;
    color: #9e9e9e;
}

.comment_author > * {
    float: none;
    display: block;
}

.comment_text {
    position: relative;
    float: right;
    width: 60%;
    right: 15px;
}

.text_comm {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 16px;
    line-height: 25px;
    color: #383f47;
}

.text_comm:before {
    position: absolute;
    left: -40px;
    top: -7px;
    font-family: FontAwesome;
    content: "\f10d";
    font-size: 23px;
    color: #b7b7b7;
}

.text_comm:after {
    position: absolute;
    right: -10px;
    bottom: -12px;
    font-family: FontAwesome;
    content: "\f10e";
    font-size: 23px;
    color: #b7b7b7;
}

.bottom_links {
    text-align: center;
    margin: 13px 0;
}

.bottom_links a {
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.a_back {
    float: left;
}

.a_up {
    float: right;
}

.a_back i {
    position: relative;
    padding-right: 6px;
}

.a_up i {
    position: relative;
    padding-left: 6px;
}

.print_share {
    padding: 0 10px;
}
a.print_share{
    text-decoration: none;
    cursor: pointer;    
}
.print_share i {
    position: relative;
    padding: 0 6px;
}

.more_results i {
    position: relative;
    padding-right: 6px;
}

.a_back, .a_up, .print_share, .more_results {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    text-decoration: none;
    color: #000000;
    font-size: 15px;
}

.a_back, .a_up, .a_back:hover, .a_up:hover, .more_results:hover {
    font-size: 15px;
    color: #000000;
}

.print_share, .print_share:hover {
    font-size: 14px;
    color: #757575;
}

.right_sidebar {
    position: relative;
    max-width: 400px;
    float: right;
    padding-bottom: 30px;
}

.side_banner {
    position: relative;
    width: 100%;
    border-top: 2px solid #ffffff;
}

.side_banner_big {
    height: 470px;
}

.side_banner_small {
    height: 230px;
}

.side_banner a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.side_banner .item_title {
    position: relative;
    display: block;
    padding: 5% 0 0 5%;
    padding-right: 10%;
    font-family: "ReplicaProBold";
    font-size: 1em;
    color: #ffffff;
    line-height: 1em;
}

.side_banner .item_date {
    position: relative;
    display: block;
    padding-top: 3.5%;
    padding-left: 5%;
    font-family: "ubuntu";
    font-size: 0.5em;
    line-height: 0.5em;
    font-weight: lighter;
    color: #ffffff;
}

.side_banner .hitem_info {
    position: relative;
    display: none;
    padding-top: 2%;
    padding-left: 5%;
    padding-right: 10%;
    font-family: "ubuntu";
    font-size: 18px;
    line-height: 25px;
    font-weight: lighter;
    color: #ffffff;
}

.side_banner .overlay_hover_dark {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.4);
}

.side_banner .overlay_hover_light {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(255,255,255,0.2);
}

.side_banner .overlay_hover_dark i, .side_banner .overlay_hover_light i {
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    bottom: 4%;
    right: 5%;
}

.side_banner a:hover .overlay_hover_dark, .side_banner a:hover .overlay_hover_light, .side_banner a:hover .hitem_info {
    display: block;
}

/*-----   Programu sarasas   -----*/

.stud_cat h1 {
    color: #383f47;
    font-size: 48px;
    line-height: 100px;
}

.stud_prog_list {
    padding-bottom: 50px;
}

.twoColumn {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}

.stud_prog_list ul {
    list-style: none;
}

.stud_prog_list ul li {

}

/* kaip tekstas kontaktuose */
.text .stud_prog_list ul li {
    padding-top: 0;
}

.text .stud_prog_list ul li::before {
    content: none;
}

.stud_prog_list ul li a {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 20px;
    color: #111111;
    padding: 10px 0 20px 20px;
    text-decoration: none;
    display: inline-block;
}

.stud_prog_list ul li a i {
    position: absolute;
    left: 0;
    top: 13px;
    font-size: 20px;
    color: #91949e;
}


.stud_prog_list ul li a:hover, .stud_prog_list ul li a:hover i {
    color: #ef4035;
}

.banner {
    border-top: 2px solid #ffffff;
}

.banner img {
    position: relative;
    width: 100%;
}

.bottom_baner {
    position: relative;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    padding-bottom: 30px;
}

.more_stud {
    position: relative;
    padding-left: 30px;
    padding-bottom: 40px;
}

.more_stud p {
    font-weight: normal;
    color: #111111;
}

.tab_special_sidebar .dropdown-menu{
    padding-top: 0;
    margin-top: -10px;
}

.tab_special {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 40px;
    width: 100%;
    border: 1px solid #eaeaea;
}

.tab_special > a {
    position: relative;
    display: block;
    padding-left: 25px;
    font-family: 'Replica Pro', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #383f47;
    line-height: 75px;
    text-decoration: none;
    background-color: #f8f8f8;
}

.tab_special > a:after {
    position: relative;
    font-family: FontAwesome;
    content: "\f107";
    float: right;
    right: 26px;
    font-size: 28px;
    color: #a0a0a0;
}

.tab_special.open > a {
    background: none;
    top: -3px;
    left: -3px;
}

.tab_special.open > a:after {
    display: none;
    right: 20px;
    font-family: FontAwesome;
    content: "\f106";
    color: #383f47;
}

.tab_special.open {
    border: 4px solid #eaeaea;
}

.tab_special ul {
    position: relative;
    margin: 0 25px;
    padding: 20px 0 15px 0;
    border: none;
    /*border-top: 1px solid #eaeaea;*/
    list-style: none;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
}

.tab_special ul li {
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
}

.tab_special ul li a {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #111111;
    line-height: 18px;
    text-decoration: none;
    margin-left: 20px;
    padding: 17px 0;
    white-space: normal;
}

.tab_special ul li a i {
    position: absolute;
    left: -17px;
    font-size: 20px;
    color: #91949e;
}


.tab_special ul li a:hover, .tab_special ul li a:hover i {
    color: #ef4035;
    background: none;
}

/*-----   Naujienos   -----*/

.top_filter {
    padding: 20px 0 20px 0;

}

.top_filter > * {
    padding-top: 20px;
}
.main_content.col-xs-8 .top_filter h1{
    padding: 0;
}
.main_content.col-xs-8 .top_filter{
    padding-right: 30px;
}
.top_filter h1 {
    position: relative;
    font-family: 'ReplicaProBold', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #383f47;
    line-height: 40px;
    display: block;
    float: left;
    padding: 0 30px;
}

.news_filters {
    float: right;
}

.news_filter {
    position: relative;
    float: left;
    margin-left: 25px;
}

.news_filter > a {
    position: relative;
    display: inline-block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #383f47;
    line-height: 34px;
    text-decoration: none;
    border-bottom: 2px solid #e5e5e5;
}

.news_filter > a:after {
    position: absolute;
    right: 0;
    font-family: FontAwesome;
    content: "\f107";
    font-size: 14px;
    color: #c1c1c1;
}

.news_filter.filter_cat a {
    width: 250px;
}

.news_filter.filter_years a {
    width: 100px;
}

.news_filter ul {
    min-width: 0px;
    position: absolute;
    list-style: none;
    z-index: 1000;
    background-color: #ffffff;
    border: none;
    list-style: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
    border: 1px solid #e5e5e5;
    border-top: none;
    padding: 5px 0;
    margin: 0;
    width: 100%;
}

.news_filter ul li a {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #111111;
    line-height: 40px;
    text-decoration: none;
    white-space: normal;
    width: 100%;
    padding: 0 0 0 20px;
}

.news_filter ul li a:hover {
    color: #ef4035;
    background: none;
}

.slideshow {
    overflow: hidden;
    position: relative;
    padding-top: 25px;
    padding-bottom: 40px;
}

.slideshow .jcarousel-wrapper {
    position: relative;
}

.slideshow .jcarousel {
    position: relative;
    width: 100%;
}

.slideshow .jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slideshow .jcarousel li {
    float: left;
    position: relative;
    overflow: hidden;
}

.slideshow .jcarousel li a {
    width: 100%;
    height: 380px;
    display: block;
}

.slideshow .jcarousel img {

}

.slideshow .jcarousel-control-prev,
.slideshow .jcarousel-control-next {
    position: absolute;
    top: 48%;
    width: 48px;
    height: 48px;
    text-align: center;
    background: rgba(255,255,255,0.7);
    z-index: 1000;
}

.slideshow .jcarousel-control-prev img,
.slideshow .jcarousel-control-next img {
    position: relative;
    width: auto;
    top: 13px;
}

.slideshow .jcarousel-control-prev {
    left: 0px;
}

.slideshow .jcarousel-control-next {
    right: 0px;
}

.slideshow .jcarousel-pagination {
    position: relative;
    padding: 0;
    margin: 0;
    float: right;
    padding-bottom: 10px;

}

.slideshow .jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    border: 1px solid #d9d9da;
    margin-left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    text-indent: -9999px;
}

.slideshow .jcarousel-pagination a.active {
    background-color: #d9d9da;
}

/*-----   Login Form   -----*/

.loginFormContainer {
    width: 570px;
    border: 10px solid #f1f1f1;
    text-align: center;
    background-color: #ffffff;
}

.popupContainer{
    min-height: 100%;
    height: 100% !important;
    border: none;
    overflow-x: hidden;
}

.loginFormContainer form {
    width: 370px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.popupContainer .from_to{
    border: none;
    padding-left: 80px;
    position: relative;
    margin-top: -20px;
    padding-bottom: 20px;
}
.popupContainer .from_to .select2-container{
    margin-top: -14px;
    float: left;
}
.popupContainer .from_to > div > span{
    display: inline-block;
    padding-right: 20px;
    float: left;
}
.popupContainer .from_to > *{
    float: left;
}
.popupContainer .select2-container{
    width: 80px !important;
    margin-left: 0px;
    margin-right: 10px;
}

.loginFormContainer form p {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 30px;
    line-height: 30px;
    color: #383f47;
    padding: 45px 0 0 0;
    margin: 0;
}

.loginFormContainer form .actions {
    padding-top: 27px;
}

.loginFormContainer form .actions input {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 24px;
    line-height: 24px;
    color: #383f47;
    border: none;
    padding: 25px 0;
    width: 100%;
    margin: 0;
    background-color: #f1f1f1;
    display: block;
    outline-color: #383f47;
    outline-width: 1px;
    height: 68px;
    border: 2px solid #f1f1f1;
}
.loginFormContainer form .actions input:hover{
    background: #fff;
    border: 2px solid #91949e;
}
.loginFormContainer form .remind_pass {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    color: #000000;
    margin: 40px 0;
    display: inline-block;
}

.loginFormContainer form .remind_pass i {
    position: relative;
    padding-left: 6px;
}

.loginFormContainer form fieldset {
    position: relative;
    text-align: left;
}

.loginFormContainer form fieldset label {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 14px;
    line-height: 14px;
    color: #a7a7a7;
    padding-top: 38px;
}
.loginFormContainer form fieldset  .inp_pass,
.loginFormContainer form fieldset  .inp_log {
    border-bottom: 2px solid #e5e5e5;
    width: 100%;
}
.loginFormContainer form .inp_pass:focus,
.loginFormContainer form .inp_log:focus {
    border-bottom: 2px solid #7f7f7f;
}
.loginFormContainer form fieldset .inp_log {
    width: 100%;
    padding-right: 30px;
    background-image: url("../images/icon_log.png");
    background-position: right;
    background-repeat:  no-repeat;
}

.loginFormContainer form fieldset .inp_pass {
    background-image:  url("../images/icon_pass.png");
    background-position: right;
    background-repeat:  no-repeat;
    padding-right: 30px;
}

.loginFormContainer form fieldset input {
    position: relative;
    width: 90%;
    outline: 0;
    border: none;
    height: 45px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 24px;
    line-height: 24px;
    color: #383f47;
}

.fancybox-overlay {
    background: url('../images/login_overlay.png');
}

#fancybox-loading div {
    background: url('../images/fancybox_loading.gif') center center no-repeat;
}

.fancybox-skin {
    position: relative;
    background: none;
    text-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0 !important;
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: none;
}

.loginBox .fancybox-close {
    position: absolute;
    top: -58px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    cursor: pointer;
    z-index: 8040;
    background: url("../images/login_close.png") no-repeat center;
    background-color: #383f47;
}

.galleryBox .fancybox-close {
    position: absolute;
    top: 10px;
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 58px;
    height: 58px;
    cursor: pointer;
    z-index: 8040;
    background: url("../images/login_close.png") no-repeat center;
    background-color: #383f47;
}


/*-----   Form   -----*/
.form_view .select2-container{
    width: 100% !important;
    margin-left: 0 !important; 
}
.form h1 {
    font-family: 'ReplicaProBold', sans-serif;
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
    color: #383f47;
    padding-top: 50px;
}

.form h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 22px;
    line-height: 22px;
    color: #757575;
    padding: 33px 0;
}

.form .reg_inputs > div {
    padding: 50px 15px 0 15px;
}

.form .reg_input label {
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 14px;
    line-height: 14px;
    color: #a7a7a8;
    margin: 0;
}
textarea{
    resize: vertical;
}
.form .reg_input textarea, 
.form .reg_input input {
    position: relative;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #e5e5e5;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 24px;
    height: 40px;
    color: #383f47;
    padding: 0;
    -o-transition: none;
    transition: none;
}
.form .reg_input textarea{
    height: auto;
    width: 100%;
    clear: both;
    height: 100px;
}
.form p {
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 16px;
    line-height: 25px;
    color: #383f47;
    text-align: center;
    margin: 0;
    padding: 35px 0;
}
.form .reg_input textarea:focus,
.form .reg_input input:focus {
    border-bottom: 2px solid #7f7f7f;
}
.form .error .select2-container .select2-choice,
.form .error textarea,
.form .error input[type="text"]{
    border-color:#ec2327;
}
.form .action{
    padding-top: 27px;
    clear: both;
}
.form .text p{
    text-align: left;
}
.check_radio {
    padding-top: 20px;
    padding-bottom: 50px;
}
.checkmark.small_top{
    padding-top: 0;
}
.checkmark, .radio {
    display: inline-block;
    float: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 16px;
    line-height: 25px;
    color: #383f47;
    margin-top: 0;
    padding: 10px 0;
    cursor: pointer;
}

input[type="radio"] {
    display: none;
}

input[type="checkbox"] {
    display: none;
}

.checkmark i {
    position: relative;
    top: 7px;
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url('../images/sprite.png') no-repeat 0px -28px;
    margin-right: 26px;
}

.checkmark.disabled i {
    background: url('../images/sprite.png') no-repeat 0px top;
}

.checkmark.checked i {
    background: url('../images/sprite.png') no-repeat 0px -84px;
}

.checkmark:hover:not(.disabled):not(.checked) i {
    background: url('../images/sprite.png') no-repeat 0px -56px;
}

.radio i {
    position: relative;
    top: 7px;
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url('../images/sprite.png') no-repeat -28px -28px;
    margin-right: 26px;
}

.radio.disabled i {
    background: url('../images/sprite.png') no-repeat -28px top;
}

.radio.checked i {
    background: url('../images/sprite.png') no-repeat -28px -84px;
}

.radio:hover:not(.disabled):not(.checked) i {
    background: url('../images/sprite.png') no-repeat -28px -56px;
}

.btn-default {
    height:78px;
    line-height:78px;
    background:#f1f1f1;
    display:inline-block;
    color:#383f47;
    font-size:24px;
    font-family: "Ubuntu",sans-serif;
    font-weight:normal;
    border: 2px solid #f1f1f1;
    padding:0px 32px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
.btn-default:hover {
    background:#fff;
    border: 2px solid #91949e;
}

.btn-default i.register_icon {
    position: relative;
    width: 31px;
    height: 32px;
    display: inline-block;
    background: url('../images/sprite.png') no-repeat -56px top;
    top: 5px;
    margin-right: 20px;
}

.captcha_reg {
    padding: 35px 0;
}
.captcha_img img{
    width: 147px;
    height: auto;
    margin-top: 10px;
}
.reg_btn {
    text-align: right;
}

.captcha_input {
    position: relative;
    padding-top: 15px;
}

/*-----   Galerijos   -----*/

.gallerys {
    padding-top: 20px;
}

.gallery_item {
    padding: 0 2px 0 0;
    text-align: center;
}

.gallery_item a {
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 18px;
    color: #383f47;
    display: block;
}

.gallery_item .img_container {
    height: 235px;
    display: block;
    margin-bottom: 15px;
}

.gallery_item .title {
    height: 70px;
    display: block;
    padding: 0 10px;
}

.gallery_slideshow {
    width: 100%;
    max-width: 700px;
    height: 100%;
    background-color: #ffffff;
    border: 10px solid #ffffff;
}

.gallery_slideshow .title {
    height: 10%;
    padding-left: 20px;
}

.gallery_slideshow h1 {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 24px;
    line-height: 24px;
    color: #383f47;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


@media (max-width: 767px) {
	.gallery_slideshow h1 {
	    font-size: 14px;
   		line-height: 14px;
   		top: 30%;
   		margin-top: 15px;
   		margin-bottom: -5px;
	}
	.gallery_slideshow .title {
		height: auto !important;
	}
}


.gallery_slideshow .connected-carousels {
    height: 100%;
}

.gallery_slideshow .connected-carousels .stage {
    width: 100%;
    height: 75%;
    position: relative;
    border-bottom: 2px solid #ffffff;
}

.gallery_slideshow .connected-carousels .navigation {
    height: 15%;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.gallery_slideshow .connected-carousels .carousel {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery_slideshow .connected-carousels .carousel ul {
    height: 100%;
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gallery_slideshow .connected-carousels .carousel li {
    float: left;
}

.gallery_slideshow .connected-carousels .stage .carousel-stage ul li {
    width: 100%;
    height: 100%;
    position: relative;
}
.slideshow .jcarousel li a .title,
.gallery_slideshow .connected-carousels .stage .carousel-stage ul li .title{
    position: absolute;
    z-index: 50;
    background: rgba(0,0,0,.5);
    left:0;
    bottom: 0;
    width: 100%;
    padding: 0;
}
.slideshow .jcarousel li a .title span,
.gallery_slideshow .connected-carousels .stage .carousel-stage ul li .title span
{
    display: inline-block;
    float: right;
    color: white;
    font-size: 14px;
    padding: 10px 20px 0;
}
.slideshow .jcarousel li a .title h4,
.gallery_slideshow .connected-carousels .stage .carousel-stage ul li .title h4{
    color: white;
    padding: 0 20px;
    float: left;
}
.gallery_slideshow .connected-carousels .stage .carousel-stage img {
    width: 100%;
}

.gallery_slideshow .connected-carousels .carousel-navigation {
    height: 100%;
    text-align: center;
    background: #fff;
}

.gallery_slideshow .connected-carousels .carousel-navigation li {
    height: 100%;
    cursor: pointer;
    width: 100px;
    display: block;
    border: 2px solid #ffffff;
}

.gallery_slideshow .connected-carousels .carousel-navigation li.active {
    border: 2px solid #c6382f;
}

.gallery_slideshow .connected-carousels .prev-stage,
.gallery_slideshow .connected-carousels .next-stage {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    text-align: center;
    background: rgba(255,255,255,0.7);
    z-index: 1000;
}

.gallery_slideshow .connected-carousels .prev-stage {
    left: 0;
}

.gallery_slideshow .connected-carousels .next-stage {
    right: 0;
}

.gallery_slideshow .connected-carousels .prev-stage i {
    position: absolute;
    top: 35%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 8px;
    height: 17px;
    background: url('../images/sprite.png') no-repeat 0px -112px;
    display: block;
}

.gallery_slideshow .connected-carousels .next-stage i {
    position: absolute;
    top: 35%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 8px;
    height: 17px;
    background: url('../images/sprite.png') no-repeat -10px -112px;
    display: block;
}

.gallery_slideshow .connected-carousels .prev-stage img {
    left: 17px;
}

.gallery_slideshow .connected-carousels .next-stage img {
    right: 17px;
}

.gallery_slideshow .connected-carousels .prev-stage:hover span,
.gallery_slideshow .connected-carousels .next-stage:hover span {
    display: block;
}



/*-----   Paieskos rezultatai   -----*/

.search_container {
    margin: 35px 0 20px 0;
}

.search_item {
    position: relative;
    padding: 30px 0 30px 40px;
    border-bottom: 1px solid #e5e5e5;
}

.search_item:first-child {
    border-top: 1px solid #e5e5e5;
}

.search_item .title a, .search_item .title .no {
    font-family: "ubuntu";
    font-size: 24px;
    line-height: 24px;
    font-weight: lighter;
    color: #000000;
}

.search_item .title a {
    text-decoration: none;
}

.search_item .title a:hover {
    color: #de372c;
}

.search_item .title .no {
    position: absolute;
    left: 0;
}

.search_item .path {
    position: relative;
    margin: 8px 0;
}

.search_item .item_text {
    position: relative;
    font-family: "ubuntu";
    font-size: 16px;
    font-weight: lighter;
    color: #383f47;
    /*padding-top: 30px;*/
}

/*-----   Kontaktai   -----*/

.contact {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 2px;
    width: 100%;
    border: 1px solid #eaeaea;
}

.contact .contact_container {
    background-color: #f8f8f8;
    border: 3px solid #f8f8f8;
}

.contact .contact_container:hover {
    background-color: #ffffff;
    border: 3px solid #eaeaea;
}

.contact .contact_container > a {
    position: relative;
    display: block;
    padding-left: 25px;
    font-family: 'Replica Pro', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #383f47;
    line-height: 75px;
    text-decoration: none;
}

.contact .contact_container > a:after {
    position: relative;
    font-family: FontAwesome;
    content: "\f107";
    float: right;
    right: 20px;
    font-size: 28px;
    color: #a0a0a0;
}

.contact .contact_container:hover > a:after {
    color: #383f47;
}

.contact_container.open {
    background-color: #ffffff;
    border: 3px solid #eaeaea;
}

.contact_container.open .contact_content {
    position: relative;
    margin: 0 25px;
    padding: 0 0 25px 0;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
}

.contact_container.open {
    background-color: #ffffff;
    border: 3px solid #eaeaea;
}

.contact_container.open > a:after {
    right: 20px;
    font-family: FontAwesome;
    content: "\f106";
    color: #383f47;
}

.contact .contact_content p {
    padding-top: 10px;
}

/*-----   Patalpu rezervavimas   -----*/

.rooms h3 {
    font-family: "ubuntu";
    font-size: 24px;
    line-height: 24px;
    font-weight: lighter;
    color: #000000;
    padding-top: 38px;
    padding-bottom: 20px;

}

.rooms h3:first-child {
    padding-top: 20px;
}

.room {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 2px;
    width: 100%;
    border: 1px solid #eaeaea;
}

.room .room_container {
    background-color: #f8f8f8;
    border: 3px solid #f8f8f8;
}

.room .room_container:hover {
    background-color: #ffffff;
    border: 3px solid #eaeaea;
}

.room .room_container > a {
    position: relative;
    display: block;
    padding-left: 25px;
    font-family: 'ReplicaProBold', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #383f47;
    line-height: 75px;
    text-decoration: none;
}

.room .room_container > a:after {
    position: relative;
    font-family: FontAwesome;
    content: "\f107";
    float: right;
    right: 20px;
    font-size: 28px;
    color: #a0a0a0;
}

.room .room_container:hover > a:after {
    color: #383f47;
}

.room_container.open {
    background-color: #ffffff;
    border: 3px solid #eaeaea;
}

.room_container.open .room_content {
    position: relative;
    margin: 0 25px;
    padding: 0 0 25px 0;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
    border-top: 1px solid #eaeaea;
}

.room_container.open {
    background-color: #ffffff;
    border: 3px solid #eaeaea;
}

.room_container.open > a:after {
    right: 20px;
    font-family: FontAwesome;
    content: "\f106";
    color: #383f47;
}

.room .room_content {
    position: relative;
}

.room_table_nav {
    position: relative;
    text-align: center;
    padding: 25px 0;
}

.room_table_nav .nav_line {
    display: inline-block;
}

.room_table_nav .nav_line * {
    float: none;
}

.room_table_nav .prev, .room_table_nav .next {
    width: 15px;
    height: 26px;
    background-color: red;
    display: inline-block;
    cursor: pointer;
}

.room_table_nav .prev {
    background: url("../images/sprite.png") no-repeat -56px -34px;
}

.room_table_nav .next {
    background: url("../images/sprite.png") no-repeat -74px -34px;
}

.room_table_nav .date {
    position: relative;
    top: -7px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    color: #383f47;
    display: inline-block;
    min-width: 334px;
}

.room_cal_btn {
    position: relative;
    top: -3px;
    width: 32px;
    height: 32px;
    display: inline-block;
    float: right;
    background: url("../images/sprite.png") no-repeat -90px 0px;
}

.rooms .room_content table,
.rooms .room_content th,
.rooms .room_content tr,
.rooms .room_content td {
    border: none;
}

.rooms .room_content th, .rooms .room_content td {
    border: 1px solid #dcdcdc;
    border-collapse: collapse;
}

.table>thead:first-child>tr:first-child>th, .table>colgroup+thead>tr:first-child>th {
    border: 1px solid #dcdcdc;
}

.table>thead:first-child>tr:first-child>th:first-child,
.table>colgroup+thead>tr:first-child>th:first-child {
    border: none;
}

.rooms .room_content th,
.rooms .room_content td {
    background-color: #f8f8f8;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #383f47;

}

.rooms .room_content th {
    line-height: 32px;
}

.rooms .table-hover>tbody>tr:hover>td,
.rooms .table-hover>tbody>tr:hover>th {
    background-color: #e9e9e9;
}

.table>thead:first-child>tr:first-child>th:first-child,
.table>colgroup+thead>tr:first-child>th:first-child {
    border: none;
    background: none;
}

.rooms .room_content th.highlighted,
.rooms .room_content td.highlighted {
    background-color: #e9e9e9;
}

.rooms .table-hover>tbody>tr>td:not(:first-child):not(.selected):hover {
    background-color: #dbdbdb;
}

.rooms .table-hover>tbody>tr>td.selected {
    /*border: none;*/
    background-color: #de372c;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    color: #ffffff;

}

/*-----   Fakulteto puslapis   -----*/

.main_content.no_padding_right {
    padding: 0;
    border-top: 1px solid #ffffff;
    left: -1px;
}

.main_content.no_padding_right .home_items .home_item {
    width: 50%;
}

.main_content.no_padding_right .show_more_subsc .subsc_button {
    display: none;
}

.main_content.no_padding_right .show_more_subsc {
    margin-bottom: 23px;
}

#projects_listing table.list {
    margin-top: 0;
    margin-bottom: 20px;
}
#projects_listing .jscroll-inner .text:last-child {
    margin-bottom: 40px;
}
#projects_listing .show_more_subsc {
    margin-bottom: 20px;
}


input.form-control {
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #383f47;
}
input.form-control::-webkit-input-placeholder {
    color: #999;
}
input.form-control:-moz-placeholder {
    color: #999;
}
input.form-control::-moz-placeholder {
    color: #999;
}
input.form-control:-ms-input-placeholder {
    color: #999;
}

.filter_form {
    margin-bottom: 5px;
}
.filter_form .row {
    margin-left: -7px;
    margin-right: -7px;
}
.filter_form div[class*="col-"] {
    padding-left: 7px;
    padding-right: 7px;
}
.filter_form .select2-container {
    width: 100% !important;
    margin: 0;
    float: none;
}
.filter_form input.form-control {
    padding-left: 0;
    padding-right: 0;
    border-width: 0 0 2px 0;
    border-style: solid;
    border-color: #e5e5e5;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 0 rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0 0 0 rgba(50, 50, 50, 0.75);
    box-shadow: 0 0 0 rgba(50, 50, 50, 0.75);
}
.filter_form .datepick_item {
    position: relative;
}
.filter_form .datepick_item input.form-control {
    padding-right: 20px;
    background-color: transparent;
}
.filter_form .datepick_item i {
    position: absolute;
    right: 7px;
    top: 10px;
    color: #c1c1c1;
    font-size: 14px;
    z-index: -1;
}
.filter_form .search-button {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #383f47;
    border: 2px solid #f1f1f1;
    background-color: #f1f1f1;
    outline-color: #383f47;
    outline-width: 1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.filter_form .search-button:hover,
.filter_form .search-button:active,
.filter_form .search-button:focus {
    background: #fff;
    border: 2px solid #91949e;
}
.filter_form .search-button,
.filter_form .input-group-btn:last-child > .btn {
    margin-left: 14px;
}

@media (min-width: 768px) {
    .filter_form .search-button .fa {
        margin-right: 5px;
    }
}

/*-----   Footer   -----*/

.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #20262c;
    z-index: 10;
}

.footer .main_section_cont {
    background-color: #383f47;
    padding: 0 30px;
}

.footer .main_section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 55px;
}

.footer .footer_columns {
    position: relative;
    display: block;
    padding-bottom: 45px;
    padding-left: 10px;
}

.footer .footer_logo {
    padding-bottom: 0;
    padding-right: 20px;
}

.footer .footer_title {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    font-size: 26px;
    color: #ffffff;
}

.footer .footer_list {
    position: relative;
    list-style: none;
    padding-top: 23px;
}

.footer .footer_list li a {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #a6aaae;
    line-height: 27px;
    text-decoration: none;
}
.footer .footer_list li a:hover{
    color: white;
}
.footer .footer_list li a i {
    position: relative;
    top: 1px;
    padding-left: 7px;
}

.footer .footer_list li a:after {
    position: relative;
    padding-left: 7px;
    top: 1px;
    left: 0;
    font-family: FontAwesome;
    content: "\f105";
    font-size: 18px;
    color: #a6aaae;
}

.footer .bottom_line {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding:  0 30px;
}

.footer .bottom_line span {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 13px;
    color: #7b7b7b;
    line-height: 51px;
}

@media screen AND (max-width: 1199px) {
    .home_item_small .hitem_info, .side_banner_small .hitem_info {
        font-size: 16px;
    }

    .main_menu .main_menu_list .main_menu_item > a {
        padding: 0 20px;
    }
}

@media screen AND (max-width: 1111px) {
    .home_item_small .hitem_info, .side_banner_small .hitem_info {
        font-size: 14px;
        line-height: 16px;
    }

    .main_menu .main_menu_list .main_menu_item > a {
        padding: 0 15px;
    }
}

@media screen AND (max-width: 960px) {
    .main_menu .main_menu_list .main_menu_item > a {
        padding: 0 10px;
    }
}

@media screen AND (max-width: 920px) {
    .home_item_small .hitem_info, .side_banner_small .hitem_info {
        font-size: 13px;
        line-height: 15px;
    }

    .slideshow .jcarousel li a {
        height: 300px;
    }
}

@media screen AND (max-width: 890px) {
    .main_menu .main_menu_list .main_menu_item > a {
        font-size: 16px;
    }
}

@media screen AND (max-width: 855px) {
    .header_container {
        padding: 0 5px;
    }
    .header .tabs {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .header .tabs li {
        padding: 0 10px;
    }

    .home_item_small .hitem_info, .side_banner_small .hitem_info {
        font-size: 14px;
        line-height: 14px;
    }

    .home_slider a {
        height: 350px;
    }

    .main_menu .main_menu_list .main_menu_item > a {
        font-size: 15px;
    }

    .galery_item .img_container {
        height: 180px;
    }
}

@media screen AND (max-width: 767px) {
    .home_item_small .hitem_info {
        font-size: 18px;
        line-height: 18px;
    }

    .side_banner_small .hitem_info {
        font-size: 12px;
        line-height: 12px;
    }

    .main_menu .main_menu_list .main_menu_item > a {
        font-size: 13px;
    }

    .slideshow .jcarousel li a {
        height: 250px;
    }
    .hitem_info {
    	display: block;
    	padding-bottom: 10px;
    }
    .hitem_info p {

    }
    .text table h3 {font-size: 16px}
    table span {font-size: 16px !important}
    table td {padding-left: 0 !important;}
}

@media screen AND (max-width: 690px) {
    .home_item_small .hitem_info {
        font-size: 16px;
        line-height: 16px;
    }

    .home_slider a {
        height: 270px;
    }
}

@media screen AND (max-width: 675px) {
    .main_menu .main_menu_list .main_menu_item {
        display: block;
        width: 100%;
        text-align: left;
    }

    .main_menu .main_menu_list .main_menu_item > a {
        font-size: 16px;
        padding-left: 20px;
    }

    .main_menu .main_menu_list .main_menu_item ul {
        position: relative;
        width: 100%;
        padding-top: 0;
    }

    .main_menu .main_menu_list .main_menu_item:hover > ul {
        display: none;
    }

    .main_menu .mmenu_sub_2nd > a {
        padding-left: 40px;
    }

    .main_menu .mmenu_sub_2nd > ul {
        position: relative;
        width: 100%;
        left: 0;
    }

    .main_menu .mmenu_sub_2nd:hover>.dropdown-menu {
        display: none;
    }

    .main_menu .mmenu_sub_3nd > a {
        padding-left: 60px;
    }

    .main_menu .mmenu_sub_2nd > a:hover {
        background-color: #de372c;
        color: #ffffff;
    }
}

@media screen AND (max-width: 645px) {
    .main_menu ul li a {
        padding-left: 20px;
    }

    .home_item_small .hitem_info {
        font-size: 14px;
        line-height: 14px;
    }

    #loginFormContainer {
        width: 480px;
    }

    .galery_item .img_container {
        height: 140px;
    }
}

@media screen AND (max-width: 600px) {
    .main_content, .right_sidebar {
        width: 100%;
        float: none;
        max-width: 600px;
    }

    .main_content {
        padding: 0;
    }

    .side_banner {
        margin-left: auto;
        margin-right: auto;
    }

    .side_banner_small .hitem_info {
        font-size: 18px;
        line-height: 22px;
    }

    .show_more_subsc .show_more .line1, .show_more_subsc .show_more .line2 {
        display: none;
    }

    .main_content.no_padding_right .show_more_subsc .show_more .line1,
    .main_content.no_padding_right .show_more_subsc .show_more .line2 {
        display: inline-block;
    }

    .slideshow .jcarousel li a {
        height: 250px;
    }

    .main_content.no_padding_right {
        left: 0;
    }

}

@media screen AND (max-width: 510px) {
    .home_item_small .hitem_info {
        font-size: 12px;
        line-height: 12px;
    }

    .home_item .hitem_info {
        font-size: 16px;
    }

    .home_slider a {
        height: 220px;
    }

    #loginFormContainer {
        width: 320px;
    }

    #loginFormContainer form {
        width: 270px;
    }

    .room_table_nav .date {
        font-size: 13px;
        min-width: 200px;
    }

    .room_cal_btn {
        margin-top: 15px;
    }

}

@media screen AND (max-width: 465px) {
    .home_item .hitem_info {
        font-size: 15px;
    }

    .home_item_small .hitem_info {
        font-size: 11px;
        line-height: 11px;
    }

}

@media screen AND (max-width: 405px) {
    .header .tabs li a {
        font-size: 22px;
    }

    .show_more_subsc .show_more .line {
        display: none;
    }

    .show_more_subsc .show_more {
        text-align: left;
    }

    .show_more_subsc .show_more .more_button a {
        padding-left: 5px;
    }

    .main_content.no_padding_right .show_more_subsc .show_more {
        text-align: center;
    }

    .main_content.no_padding_right .show_more_subsc .show_more .line1,
    .main_content.no_padding_right .show_more_subsc .show_more .line2 {
        display: none;
    }

    .main_content.no_padding_right .show_more_subsc .show_more .more_button a {
        padding: 0 66px 0 46px;
    }

    .home_item {
        position: relative;
        width: 100%;
        border: 1px solid #ffffff;
        float: none;
    }

    .main_content.no_padding_right .home_items .home_item {
        width: 100%;
    }

    .home_item_big .hitem_info {
        font-size: 18px;
    }

    .home_item_small .hitem_info {
        font-size: 18px;
        line-height: 24px;
    }
}


/* START Andrius Css */
.select2-container{
    float: left;
    margin-left: 25px;
    position: relative;
    border:none;
    width:250px !important;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 0px 0px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 0px 0px 0px rgba(50, 50, 50, 0.75);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;    
}
.select2-container .select2-choice{
    background:none !important;
    border:none;
    border-bottom: 2px solid #e5e5e5;
    color: #383f47 !important;
    display: block;
    font-family: "Ubuntu",sans-serif;
    font-size: 16px;
    font-weight: normal;
    height: 34px;
    line-height: 34px;
    position: relative;
    text-decoration: none;
    padding-left:0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
.select2-container .select2-choice.select2-default > .select2-chosen {
    color: #999 !important;
}
.select2-container .select2-choice .select2-arrow{
    border-left:none;
    background:none;    
}
.select2-container .select2-choice .select2-arrow:after{
    position: absolute;
    right: 0;
    font-family: FontAwesome;
    content: "\f107";
    font-size: 14px;
    color: #c1c1c1;
}
.select2-container .select2-choice .select2-arrow b{
    background:none;
    display:none;
}
.date_block{
    float:left;
    margin-left:25px;
    position:relative;
    z-index:10;
}
.date_block label{
    position:absolute;
    top:-17px;
    left:0px;
    color:#a7a7a7;
    font-size:14px;
    font-weight:300;
}
.date_block input{
    border:none;
    border-bottom: 2px solid #e5e5e5;
    color: #383f47;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-weight: normal;
    height: 34px;    
    line-height: 34px;
    padding-left:0px;
    background:none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow:    0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow:         0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.date_block input.form-control:focus{
    border: none;
    outline: 0 none;
    border-bottom: 2px solid #e5e5e5;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow:    0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow:         0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.date_block i{
    position:absolute;
    right:0px;
    top:10px;
    color:#c1c1c1;
    font-size:14px;
    z-index:-1;
}
.slideshow .jcarousel-pagination {
    left:0px;
}
.jcarousel-pagination a {
    min-width:0px;
    opacity: 1;
    filter: alpha(opacity=100);
}
.jcarousel-wrapper{
    border:none;
    margin: 30px auto 0;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow:    0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow:         0px 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
.jcarousel-control-prev, .jcarousel-control-next{
    font: 17px Arial,sans-serif;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow:    0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow:         0px 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
.jcarousel{
    height:auto;
}
.map_box{
    padding-top:37px;
}
.map_box span{
    color:#757575;
    display:block;
    text-align:center;
    font-weight:normal;
    padding:26px 0;
}
.event_registr{
    border-top:1px solid #e5e5e5;
    text-align:center;
    padding:26px 0 25px;
}
#eventRegistration{
    display:none;
}
span.required{
    padding-right:30px;
}
/* END Andrius Css */
/* START Miroslav Css */
.head{
    font-family: "Replica Pro";
    font-size: 36px;
    line-height: 40px;
    color: #383f47;
    margin-top: 15px;
}
.show_more_subsc{
    clear: both;
    min-height: 50px;
}
.alert_form .alert{
    margin-bottom: 0;
    margin-top: 20px;
}
.rooms .tooltip_box{
	display: none;
}

.room .day.selected,
.room .selected.intervals{
    background: #de372c !important;
	border-top:none;
	border-bottom: none;
}
.room .day.selected.sel_start,
.room .selected.intervals.sel_start{
	border-top: 1px solid #dbdbdb ;
}
.room .day.selected.sel_end,
.room .selected.intervals.sel_end{
	border-bottom: 1px solid #dbdbdb ;
}
.room table.table td {
    border: 1px solid #dbdbdb ;
    border-collapse: collapse;
}
.tooltipsy *{
    color: white !important;
}
.rooms .room_content td.day.intervals{
    background-color: green ;
    cursor: pointer;
}
/*sitemap*/

#sitemap{
	padding: 20px 0;
    margin-left: 20px;
}
#sitemap ul{
	list-style: none !important;
	padding-left: 0 !important;
	margin-left: -1px;
    margin-bottom: 0;
}
#sitemap .sitemap_content > li{
	margin-left: 0;
}
#sitemap .sitemap_content{
	
}
#sitemap a{
	line-height: 1em;
	padding-top: 2px;
}
#sitemap .home,
#sitemap li li a{
}
#sitemap a:hover{
    text-decoration: none;
}
#sitemap ul li div{
	position: relative;
	margin-left: 105px;
	display: inline-block;
}
#sitemap ul li div{
	position: relative;
}
#sitemap ul li div span{
	position: absolute;
	display: block;
	width: 92px;
	left: -105px;
	top: 10px;
	border-top: 1px solid #d2d2d2;
}
#sitemap ul li{
	padding: 8px 0;
	margin-left: 92px;
	border-left: 1px solid #d2d2d2;
}
#sitemap ul li.child.last > div,
#sitemap ul li.child > div{
	padding-bottom: 10px;
}
#sitemap ul li.child.last > div span,
#sitemap ul li.child > div span{
	height: 100%;
	border-right: 1px solid #d2d2d2;
}
#sitemap ul li.child.last > div span i,
#sitemap ul li.child > div span i{
	display: block;
	position: absolute;	
	
	width: 5px;
	height: 5px;
	background-color: #7b7b7b;

	top: -3px;
	right: -3px;
    z-index: 20;

}
#sitemap ul li.child.last > div span{
    top: -20px;
    border-right: none;
}
#sitemap ul li.child.last > div span:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    border-right: 1px solid #d2d2d2;
    top:30px;
    z-index: 10;
}
#sitemap ul li.child.last > div span i{
    bottom: -3px;
    top: auto;
}
#sitemap ul li.last > div span{
	height: 100%;
	top:-10px;
	border-top: none;
	border-bottom: 1px solid #d2d2d2;
	border-left: 1px solid #d2d2d2;
}
#sitemap ul li.last > div span i{
	top: auto;
	bottom: -9px;
}
#sitemap ul li li.last > div span i{
	top: auto;
	bottom: -5px;
}
#sitemap .home{
    margin: 20px 0;
    display: inline-block;
}
#sitemap .home:first-child{
    margin-top: 0;
}
#sitemap .home i{
	
}
#sitemap li li.last{
	border-left: none;
}
#sitemap > ul{
	margin-left: 10px;
}
.search_btn i{
    display: none;
}
@media screen AND (max-width: 500px) {
    .search_btn i{
        display: inline-block;
    }
    .search_btn span{
        display: none;
    }
}
.file-upload-input{
    cursor: pointer !important;
}
.btn-file {
	position: relative;
	overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #383f47;
    background-color: #f1f1f1;
    text-decoration: none;
    line-height: 38px;
    text-align: center;
    padding: 0 18px;
    height: 42px;
}
.btn-file i{
    margin-right: 10px;
}
.btn-file input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	background: red;
	cursor: inherit;
	display: block;
}
.btn-file.btn-disablet{
	background: #e6e6e6;
	cursor: default;
	border-color: #e6e6e6;
}
.form-control[readonly]{
    background-color: white !important;
}

.home_image{
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 999999;
    cursor: pointer;
    left: -100%;
    margin-left: 10px;
    
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.wrapper_width_intro{
    padding-left: 10px;
}
.home_image > a{
    width: 100% !important;
    height: 100% !important;
}
.home_image:before{
    content: '';
    position: absolute;
    z-index: 99999;
    background: #D4E5EF;
    width: 100%;
    height: 100%;
}
.home_image.show:before{
    display: none;
}
.home_image.show{
    left: 0;
    margin-left: 0;
}
/* END Miroslav Css */

.main_content .text img[src="/uploads/documents/images/ivairios/seo-paslaugos-enternet.png"] { max-width: 33%; }

table#cookies-table td { overflow-wrap: break-word; }
