/*#region General*/
.udg-color {
    color: #f57e20;
}

.udg-green-color {
    color: #37b54a !important;
}

.udg-green-bg-color {
    background-color: #37b54a !important;
}

.black-bg-color {
    background-color: black !important;
}

.udg-bg-color {
    background-color: #f57e20;
}

.udg-hover-color:hover {
    color: #f57e20 !important;
}

.udg-gradient-bg-color {
    background: #ff7400; /* Old browsers */
    background: -moz-linear-gradient(top, #ff7400 23%, #ed3f00 66%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ff7400 23%, #ed3f00 66%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ff7400 23%, #ed3f00 66%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7400', endColorstr='#ed3f00', GradientType=0); /* IE6-9 */
    color: #ffffff;
}

.radius-btn {
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 13px;
    height: auto;
}

.bg-black {
    background-color: black;
}

.white-color {
    color: #ffffff !important;
}

.under-section-title {
    color: black;
    background-color: #f57e20;
    display: inline-block;
    line-height: 13px;
}

.under-section-title span {
    position: relative;
    top: -3px;
    left: -3px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3em;
}

.paddingbottom120px {
    padding-bottom: 100px;
}

.paddingbottom100px {
    padding-bottom: 100px;
}

.no-padding-l {
    padding-left: 0 !important;
}

.no-padding-r {
    padding-right: 0 !important;
}

/*#endregion */

/*#region Navigation*/
.custom-big-header {
    min-height: 650px !important;
}

.custom-small-header {
    min-height: 75px !important;
    background-color: #000000;
}

.logo-default {
    height: 60px !important;
    width: 62px;
}

.logo-scrolled {
    height: 45px !important;
    width: 62px;
}

nav .vartical-nav-separator-bar {
    display: inline-block;
    float: left;
    width: 1px;
    height: 17px;
    background-color: #ffffff;
    margin-top: 23px;
}

.scrolldown {
    bottom: 160px;
}

@media only screen and (max-width: 1000px) {
    .logo-default {
        width: auto !important;
    }

    .logo-scrolled {
        width: auto !important;
    }
}

@media only screen and (max-width: 1199px) {
    .navbar .navbar-nav > li > a {
        padding: 24px 3px;
    }

    .navbar-brand img {
        width: auto !important;
    }
}

@media only screen and (min-width: 1199px) {

    .navbar .container {
        width: 1300px !important;
    }
}

@media only screen and (max-height: 650px) {
    .bottom-share {
        display: none;
    }
}

.tp-mask-wrap {
    width: 80vw;
}

/*OnLendscape*/
@media only screen and (max-height: 450px) {
    .side-nav-inner-setting {
        margin: 0 auto !important;
        box-shadow: inset 0px 11px 8px -10px #CCC,
        inset 0px -11px 8px -10px #CCC;
        padding: 20px 0 20px 15px;
    }

    .sidenav-logo > img {
        width: 100px !important;
        padding-bottom: 7px;
    }

    .side-nav-right.side-nav {
        padding: 35px !important;

    }

    .side-nav-list {
        height: 200px !important;
        overflow: auto;
    }

    .side-nav .bottom-share {
        display: none;
    }

    .scr-box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 10px;
        padding-bottom: 10px;
    }

    .chevron {
        position: absolute;
        width: 2rem;
        height: 0.24rem;
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
        -webkit-animation: move-chevron 3s ease-out infinite;
        animation: move-chevron 3s ease-out infinite;
    }

    .chevron:first-child {
        -webkit-animation: move-chevron 3s ease-out 1s infinite;
        animation: move-chevron 3s ease-out 1s infinite;
    }

    .chevron:nth-child(2) {
        -webkit-animation: move-chevron 3s ease-out 2s infinite;
        animation: move-chevron 3s ease-out 2s infinite;
    }

    .chevron:before,
    .chevron:after {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 50%;
        background: #2c3e50;
    }

    .chevron:before {
        left: 0;
        -webkit-transform: skewY(30deg);
        transform: skewY(30deg);
    }

    .chevron:after {
        right: 0;
        width: 50%;
        -webkit-transform: skewY(-30deg);
        transform: skewY(-30deg);
    }

    @-webkit-keyframes move-chevron {
        25% {
            opacity: 1;
        }
        33.3% {
            opacity: 1;
            -webkit-transform: translateY(1.14rem);
            transform: translateY(1.14rem);
        }
        66.6% {
            opacity: 1;
            -webkit-transform: translateY(1.56rem);
            transform: translateY(1.56rem);
        }
        100% {
            opacity: 0;
            -webkit-transform: translateY(2.4rem) scale(0.5);
            transform: translateY(2.4rem) scale(0.5);
        }
    }

    @keyframes move-chevron {
        25% {
            opacity: 1;
        }
        33.3% {
            opacity: 1;
            -webkit-transform: translateY(1.14rem);
            transform: translateY(1.14rem);
        }
        66.6% {
            opacity: 1;
            -webkit-transform: translateY(1.56rem);
            transform: translateY(1.56rem);
        }
        100% {
            opacity: 0;
            -webkit-transform: translateY(2.4rem) scale(0.5);
            transform: translateY(2.4rem) scale(0.5);
        }
    }

}

@media only screen and (max-height: 370px) {
    .side-nav-list {
        height: 150px !important;
        overflow: auto;
    }
}

/*#endregion */

/*#region FeatureBox*/
.feature-item {
    padding: 100px 60px;
    color: #ffffff;
    text-align: center;
}

.feature-item p {
    min-height: 50px;
}

.feature-item:hover {
    opacity: 0.9;
}

.feature-item:hover,
.feature-item h5:hover,
.feature-item p:hover {
    color: #f57e20;

}

.feature-item img path {
    fill: #000;
}

#features .feature-item img {
    height: 80px;
    width: auto;
}

.features-news {
    background: url('../images/bg-home-novosti.png') no-repeat center;
    background-size: cover;
}

.features-about {
    background: url('../images/bg-home-oFakultetu.png') no-repeat center;
    background-size: cover;
}

.features-prof {
    background: url('../images/bg-home-predavaci.png') no-repeat center;
    background-size: cover;
}

.features-subject {
    background: url('../images/bg-home-predmeti.png') no-repeat center;
    background-size: cover;
}

/*#endregion */

/*#region About*/
#about-section .information-data-img {
    text-align: left;
}

.learn-more-box {
    float: right;
    padding: 10px 0 10px 0;
}

.learn-more-box a {
    color: #ffffff;
}

.learn-more-box a .fa {
    color: #ffffff;
    background-color: #f57e20;
    font-size: 20px;
    padding: 5px 10px 5px 11px;
    border-radius: 50%;
}

.information-written-data p {
    margin: 20px 0;
    max-width: 100%;
    line-height: 1.5;
}

@media only screen and (max-width: 1024px) {
    #about-section .information-data-img {
        text-align: center;
    }

    .gallery-slider .swiper-slide img {
        height: auto;
    }
}

/*#endregion */

/*#region News*/

.news-slid-content {
    padding: 10px 0;
}

.news-slid-date {
    display: inline-block;
    text-align: center;
    float: left;
}

.news-slid-date-day {
    font-size: 30px;
    font-weight: bold;
    color: #f57e20;
}

.news-slid-date-month {
    font-weight: bold;
    font-size: 13px;
}

.news-slid-desc {
    display: inline-block;
    overflow: hidden;
    max-width: 80%;
    padding: 0 0 0 10px;
    float: left;
    border-left: solid 3px #f57e20;
    text-align: left;
    margin: 0 0 0 10px;
}

.news-slid-title {
    font-weight: bold;
    color: #000000;
}

.news-slid-title:hover {
    color: #f57e20;
}

.news-slid-description {
    font-size: 12px;
}

.swiper-button-next .fa {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    background: #f57e20;
    padding: 5px 10px 5px 13px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev .fa {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    background: #f57e20;
    padding: 5px 13px 5px 10px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev .fa:hover,
.swiper-button-next .fa:hover {
    background: gray;
}

.side-arows-box {
    position: relative;
}

@media (min-width: 37.5em) {
    .side-arows-box {
        margin-left: auto;
        margin-right: auto;
        width: 92%;

        /* make room for arrows */
        padding-left: 3em;
        padding-right: 3em;
    }
}

@media (min-width: 43.75em) {
    .side-arows-box {
        width: 95%;
    }
}

.swiper-button-prev {
    display: none;
    left: 0;
    top: 50%;
    margin-top: 0;
    height: auto
}

@media (min-width: 37.5em) {
    .swiper-button-prev {
        display: block;
    }
}

.swiper-button-next {
    display: none;
    right: 0;
    top: 50%;
    margin-top: 0;
    height: auto;
}

@media (min-width: 37.5em) {
    .swiper-button-next {
        display: block;
    }
}

.swiper-button-prev,
.swiper-button-next,
.swiper-container-rtl .swiper-button-next {
    background-image: none;
}

/*#endregion */

/*#region Twitter*/
#tweeter-page {
    background-color: #d5d5d5;
}

.twitter-swiper .profile-box-img {
    margin: 0;
    display: inline-block;
}

.twitter-swiper .tw-user-box {
    display: inline-block;
    padding: 30px 0 30px 20px;
}

.twitter-swiper .tw-username a {
    color: black;
}

.twitter-swiper .tw-username a:hover {
    color: #f57e20;
}

.twitter-swiper .tw-horizontal-separator {
    width: 65px;
    height: 2px;
    background-color: #f57e20;
    margin-top: 20px;
}

.twitter-swiper .tw-tweet-msg {
    padding: 0 0 0 65px;
    font-size: 16px;
}

.twitter-swiper .tw-udg {
    color: #f57e20;
}

.twitter-swiper .tw-udg:hover {
    color: #f57e20;
}

/*#endregion */

/*#region Subjects*/
.subject-swiper {
    padding-top: 20px;
}

.subject-swiper .swiper-slide {
    padding: 0 20px;
}

.subject-swiper .under-section-title {
    margin: 0 0 40px 0;
}

.subject-swiper-item {
    width: 100%;
}

.subject-table {
    padding: 20px 0;
}

.subject-table thead {
    background: black;
    color: #ffffff;
}

.sb-title {
    color: #000000;
}

.sb-title:hover {
    color: #f57e20;
}

.subject-table tbody tr td {
    border-bottom: 1px solid #f57e20;
}

#subject-section .subject-swiper-pagination {
    margin: -20px 0;
}

#subject-section .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 20px;
    font-size: 22px;
    color: #ffffff;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    padding: 5px;
    font-weight: bold;
    margin: 15px 30px;
}

#subject-section .swiper-pagination-bullet-active {
    color: #fff;
    background: #f57e20;
}

.sub-code-mob {
    display: none;

}

.sub-num-mob {
    display: none;
}

@media only screen and (max-width: 600px) {

    .sub-mob {
        display: none;
    }

    .sub-code-mob {
        display: block;
        font-size: 10px;
        font-weight: bold;
        color: gray;
    }

    .sub-num-mob {
        display: block;
        font-size: 10px;
        font-weight: bold;
        color: #f57e20;
    }

    #subject-section .swiper-pagination-bullet {
        margin: 15px 15px;
    }

}

@media only screen and (max-width: 400px) {

    #subject-section .swiper-pagination-bullet {
        margin: 15px 5px;
    }

}

/*#endregion */

/*#region Gallery*/
.gallery-slider .gallery-slider-buttons,
.partners-swiper .partners-slider-buttons {
    text-align: center;
}

.gallery-slider .gallery-slider-buttons div,
.partners-swiper .partners-slider-buttons div {
    display: inline-block;
    text-align: center;
    margin: 0 30px;
}

.gallery-slider .gallery-slider-buttons div.button-next .fa,
.partners-swiper .partners-slider-buttons div.button-next .fa {
    font-size: 26px;
    font-weight: bold;
    padding: 6px 13px 6px 16px;
    border-radius: 50%;
    background-color: #848484;
    color: #ffffff;
}

.gallery-slider .gallery-slider-buttons div.button-prev .fa,
.partners-swiper .partners-slider-buttons div.button-prev .fa {
    font-size: 26px;
    font-weight: bold;
    padding: 6px 16px 6px 13px;
    border-radius: 50%;
    background-color: #848484;
    color: #ffffff;
}

.gallery-slider .gallery-slider-buttons div .fa:hover,
.partners-swiper .partners-slider-buttons div .fa:hover {
    background-color: #f57e20;
    color: #ffffff;
}

.gallery-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: auto;
}

.gallery-slider .swiper-slide img {
    width: auto;
    height: 300px;
}

/*#endregion */

/*#region Partners*/
#partner-section {
    margin-bottom: 20px;
}

.partners-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: auto;
}

.partners-swiper .swiper-slide img {
    width: auto;
    height: 80px;
    transition: .2s;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .8;
}

.partners-swiper .swiper-slide img:hover {
    transition: .2s;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

/*#endregion */

/*#region Footer*/
#site-footer .nav-tab a {
    color: #ffffff;
}

#site-footer .nav-tab a:hover {
    color: #ffffff;
}

.footer-nav .nav-tab {
    display: inline;
    padding: 0 10px;
}

.footer-nav .nav-tab img {
    width: auto;
}

.footer-nav li.nav-tab > a {
    font-size: 15px;
}

.vartical-nav-separator-bar {
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #ffffff;
}

.foot-linehight {
    line-height: 24px;
}

.ident  {
    padding-left: 30px;
}

.ident .fa {
    transform: rotate(90deg);
    margin-right: 5px;
}

@media only screen and (max-width: 760px) {
    .footer-nav {
        display: none;
    }
}

/*#endregion FOOTER*/

/*Inner pages style*/

.blog-page-padding-desc {
    padding: 0 200px;
}

@media only screen and (max-width: 991px) {
    .container{
        max-width: 971px;
        width: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    .blog-page-padding-desc {
        padding: 0 20px;
    }

    .tp-caption {
        margin-bottom: 50px !important;
    }
}

.filter-box {
    text-align: right;
    padding-bottom: 30px;
}

.newsU-container img.news-slid-date,
.newsF-container img.news-slid-date {
    max-width: 100%;
    max-height: 206px;
    overflow: hidden;
    background: no-repeat center;
    background-size: cover
}

.wysiwyg-content ul,
.wysiwyg-content ol {
    list-style-type: disc;
    list-style-position: outside;
    padding: 11px 0 11px 40px;
    font-weight: 300;
    line-height: 30px;
}

.wysiwyg-content p {
    padding: 10px 0;
}

#google_recaptcha_modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

#google_recaptcha_modal .modal-content {
    max-width: 400px;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
}

@media screen and (min-width: 992px) {
    #main_menu .nav-tab {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #main_menu .row {
        display: flex;
        justify-content: center;
    }

    #main_menu .nav {
        display: flex !important;
        align-self: center;
        position: relative;
        top: 5px;
    }

    #main_menu .nav .nav-tab {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #main_menu .nav .vartical-nav-separator-bar {
        margin-top: 0;
        align-self: center;
    }

    .top-menu .fixed-menu #main_menu .nav {
        position: static;
    }

    #main_menu .nav-tab.icon-only i {
        font-size: 20px;
    }
}

