﻿/* START: GLOBAL STYLES */
html, body, #page {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #2C3E50;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans";
    font-weight: 300;
}

body {
    background-color: #ECF0F1;
    background: url('../images/pattern.png') fixed;
}

section {
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: center;
}

p {
    line-height: 28px;
}

a, a:focus, a:active {
    color: #a572cc;
    cursor: pointer;
}

    a:hover {
        color: #bca3ce;
    }

/* END: GLOBAL STYLES */
/* START: PRELOADER BAR ON THE TOP*/
.pace {
    width: 140px;
    height: 300px;
    position: fixed;
    top: -90px;
    right: -20px;
    z-index: 2000;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 2s linear 0s;
    -moz-transition: all 2s linear 0s;
    transition: all 2s linear 0s;
}

    .pace.pace-active {
        -webkit-transform: scale(.25);
        -moz-transform: scale(.25);
        -ms-transform: scale(.25);
        -o-transform: scale(.25);
        transform: scale(.25);
        opacity: 1;
    }

    .pace .pace-activity {
        width: 140px;
        height: 140px;
        border-radius: 70px;
        background: #bca3ce;
        position: absolute;
        top: 0;
        z-index: 1911;
        -webkit-animation: pace-bounce 1s infinite;
        -moz-animation: pace-bounce 1s infinite;
        -o-animation: pace-bounce 1s infinite;
        -ms-animation: pace-bounce 1s infinite;
        animation: pace-bounce 1s infinite;
    }

    .pace .pace-progress {
        position: absolute;
        display: block;
        left: 50%;
        bottom: 0;
        z-index: 1910;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        -webkit-transform: scaleY(.3);
        -moz-transform: scaleY(.3);
        -ms-transform: scaleY(.3);
        -o-transform: scaleY(.3);
        transform: scaleY(.3);
        -webkit-animation: pace-compress .5s infinite alternate;
        -moz-animation: pace-compress .5s infinite alternate;
        -o-animation: pace-compress .5s infinite alternate;
        -ms-animation: pace-compress .5s infinite alternate;
        animation: pace-compress .5s infinite alternate;
    }

@-webkit-keyframes pace-bounce {
    0% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }

    40% {
    }

    50% {
        top: 140px;
        height: 140px;
        -webkit-animation-timing-function: ease-out;
    }

    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        -webkit-animation-timing-function: ease-in;
    }

    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        -webkit-animation-timing-function: ease-out;
    }

    95% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }

    100% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }
}

@-moz-keyframes pace-bounce {
    0% {
        top: 0;
        -moz-animation-timing-function: ease-in;
    }

    40% {
    }

    50% {
        top: 140px;
        height: 140px;
        -moz-animation-timing-function: ease-out;
    }

    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        -moz-animation-timing-function: ease-in;
    }

    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        -moz-animation-timing-function: ease-out;
    }

    95% {
        top: 0;
        -moz-animation-timing-function: ease-in;
    }

    100% {
        top: 0;
        -moz-animation-timing-function: ease-in;
    }
}

@keyframes pace-bounce {
    0% {
        top: 0;
        animation-timing-function: ease-in;
    }

    50% {
        top: 140px;
        height: 140px;
        animation-timing-function: ease-out;
    }

    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        animation-timing-function: ease-in;
    }

    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        animation-timing-function: ease-out;
    }

    95% {
        top: 0;
        animation-timing-function: ease-in;
    }

    100% {
        top: 0;
        animation-timing-function: ease-in;
    }
}

@-webkit-keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        -webkit-animation-timing-function: ease-in;
    }

    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        -webkit-animation-timing-function: ease-out;
    }
}

@-moz-keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        -moz-animation-timing-function: ease-in;
    }

    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        -moz-animation-timing-function: ease-out;
    }
}

@keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        animation-timing-function: ease-in;
    }

    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        animation-timing-function: ease-out;
    }
}

/* END: PRELOADER BAR ON THE TOP*/
/* START: NAVIGATION ON THE TOP */
.navbar-transparent {
    /*background-color: rgba(255, 255, 255, 0.9);*/
    background-color: rgba(82, 94, 109, 0.9);
    text-transform: uppercase;
}

    .navbar-transparent .navbar-nav li a {
        /*color: #505050;*/
        color: rgba(240, 240, 240, 1);
    }

        .navbar-transparent .navbar-nav li a:hover {
            color: rgba(0, 0, 0, 1);
        }

.navbar-right {
    padding: 0 15px 0 0;
    font-size: 0.875em;
}

.navbar-default {
    border: none;
}

    .navbar-default .navbar-brand {
        font-size: 1.8em;
        color: rgba(240, 240, 240, 1);
        padding: 5px 15px;
        line-height: normal;
    }

        .navbar-default .navbar-brand:hover {
            color: rgba(240, 240, 240, 1);
        }

        .navbar-default .navbar-brand .site-logo {
            background-repeat: no-repeat;
            background-position: left center;
            display: inline-block;
            background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_32x42.png');
            width: 42px;
            height: 32px;
        }

.navbar-toggle {
    padding: 4px 10px;
}

img.flag-image {
    width: 24px;
}

ul.language-selector {
    padding-left: 10px;
    padding-right: 25px;
}

    ul.language-selector > li > a {
        padding: 17px 5px 13px 5px;
    }

/*.btn-purple {    background-color: #a572cc;    color: #fff;    border: 1px solid #fff;}.btn-purple:hover, .btn-purple:focus, .btn-purple:active {    background-color: #bca3ce;    color: #fff;}*/
/* END: NAVIGATION ON THE TOP */
/* START: SECTION HEADING */
.fancy {
    line-height: 0;
    text-align: center;
    margin-bottom: 35px;
}

    .fancy span {
        display: inline-block;
        position: relative;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 18px;
    }

        .fancy span:before, .fancy span:after {
            content: "";
            position: absolute;
            height: 0;
            top: 0;
        }

/* END: SECTION HEADING */
/* START: COMMON UI ELEMENTS */
.orange {
    color: #ff6419;
}

.btn-half-block {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 50%;
}

.logo-circled {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    background-color: #ff9632;
}

.btn-transparent {
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    border: 1px solid #fff;
}

    .btn-transparent:hover, .btn-transparent:focus, .btn-transparent:active {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-white, .btn-white:focus, .btn-white:active {
    color: #fff;
}

    .btn-white:hover {
        color: #eee;
        text-decoration: none;
    }

.btn-orange {
    background-color: #ff6419;
    color: #fff;
    border: 1px solid #fff;
}

    .btn-orange:hover, .btn-orange:focus, .btn-orange:active {
        background-color: #ff9632;
        color: #fff;
    }

.alert-small {
    padding: 6px 12px 6px 12px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* END: COMMON UI ELEMENTS */
/* START: HOME SECTION*/
.header {
    background: url('../images/HelenGreenwald_Bg_1920x1226.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    height: 100%;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    /*        height: 350px;
    padding-top: 20px;
    width: 100%;
    position: relative;
    text-align: right;
    background-size: cover;
    background-repeat: repeat-y;
    background-color: #f5f5fa;
    background-position: center center;*/
}

#intro {
    position: absolute;
    top: 25%;
    padding-bottom: 20px;
    /*background-color: rgba(160, 140, 120, 0.85);*/
    background-color: rgba(82, 94, 109, 0.65);
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    /*border: 1px solid rgba(160, 140, 120, 1);*/
    border: 1px solid rgba(82, 94, 109, 0.85);
}

    #intro .ticker {
        overflow: hidden;
        height: 40px;
        vertical-align: baseline;
    }

        #intro .ticker h3 {
            margin-bottom: 0px;
            margin-top: 0px;
            height: 40px;
            -webkit-transition: margin-top 0.5s ease-in-out;
            -moz-transition: margin-top 0.5s ease-in-out;
            -o-transition: margin-top 0.5s ease-in-out;
            transition: margin-top 0.5s ease-in-out;
        }

    #intro .content {
        margin-bottom: 30px;
    }

/* END: HOME SECTION*/
/* START: COMMON SECTION*/
.workshops .container, .pricelist .container, .about .container, .text .container, .contact .container, .newsletter-signup .container {
    background-color: rgba(255, 255, 255, 1);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* END: COMMON SECTION*/
/* START: ABOUT SECTION*/
.about article {
    margin-bottom: 50px;
}

.about .article-title h3 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about .article-title p {
    margin-bottom: 50px;
}

.about .article-image {
    margin-bottom: 30px;
    width: 100%;
}

.about .content {
    text-align: justify;
}

/*.about .slide {    color: #fff;    background: rgba(255, 100, 25, 0.75);    text-align: center;    list-style-type: none;    height: 60px;    -webkit-border-radius: 4px;    -moz-border-radius: 4px;    border-radius: 4px;    margin-top: 10px;    margin-bottom: 30px;}*/
/* END: ABOUT SECTION*/
/* START: TEXT SECTION*/
.text article {
    margin-bottom: 50px;
}

.text .article-title h3 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: 700;
}

.text .article-title p {
    margin-bottom: 50px;
}

.text .article-image {
    margin-bottom: 30px;
    width: 100%;
}

.text .content {
    text-align: justify;
}


/* START: NEWSLETTER SIGNUP SECTION*/
.newsletter-signup article {
    margin-bottom: 50px;
}

.newsletter-signup .article-title h3 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-signup .article-title p {
    margin-bottom: 50px;
}

.newsletter-signup .article-image {
    margin-bottom: 30px;
    width: 100%;
}

.newsletter-signup .content {
    text-align: justify;
}

/* END: TEXT SECTION*/
/* START: PRICELIST SECTION*/
.pricelist article {
    margin-bottom: 50px;
}

.pricelist .article-title h3 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricelist .article-title p {
    margin-bottom: 50px;
}

.pricelist .article-image {
    margin-bottom: 30px;
    width: 100%;
}

.pricelist .content {
    text-align: justify;
}

.pricelist .prices {
    text-align: left;
}

tr.spacer > td {
    border: 0 !important;
    height: 30px;
}

tr.pricelist-note > td > p {
    padding-top: 10px;
}

/* END: PRICELIST SECTION*/
/* START: WORKSHOPS SECTION*/
.workshops article {
    margin-bottom: 50px;
}

.workshops .article-title p {
    margin-bottom: 50px;
}

.workshops .article-image {
    margin-bottom: 30px;
    width: 100%;
}

.workshops .content {
    text-align: justify;
}

.row.workshop {
    padding-bottom: 60px;
}

/* END: WORKSHOPS SECTION*/
/* START: SERVICES SECTION*/
/*#services {    height: auto;    background: url('../images/services.jpg') no-repeat;    -webkit-background-size: cover;    -moz-background-size: cover;    -o-background-size: cover;    background-size: cover;    background-attachment: fixed;    background-position: 0 -300px;}*/
/*#services .container {    background-color: rgba(255, 255, 255, 0.75);    -webkit-border-radius: 4px;    -moz-border-radius: 4px;    border-radius: 4px;}#services .desc h2 {    margin-top: 0px;}#services .desc p {    margin-bottom: 20px;}#services .article h3{    margin-top: 0px;    font-weight: 700;}#services .article p {    margin-bottom: 50px;}#services .article ul li {    margin-bottom: 10px;}#services .article ul li:last-child {    margin-bottom: 30px;}*/
/* END: SERVICES SECTION*/
/* START: WORK SECTION*/
/*#work .container {    background-color: rgba(255, 255, 255, 1);    -webkit-border-radius: 4px;    -moz-border-radius: 4px;    border-radius: 4px;}#work .desc h2 {    margin-top: 0px;}#work .desc p {    margin-bottom: 10px;}#work #filters {    width: 100%;    margin: 20px auto 30px auto;    background-color: #f5f5f5;}#work #filters li {    font-size: 18px;    line-height: 30px;    cursor: pointer;    padding: 10px;    min-width: 120px;}#work #filters li.active {    background-color: #fff;    color: #ff6419;}#work #gallery {    padding: 0;}#work #gallery li div {    margin-bottom: 30px;}#work #gallery .mix{    opacity: 0;    display: none;} */
/* END: WORK SECTION*/
/* START: CLIENTS SECTION*/
/*#clients {    height: auto;    background: url('../images/clients.jpg') no-repeat;    -webkit-background-size: cover;    -moz-background-size: cover;    -o-background-size: cover;    background-size: cover;    background-attachment: fixed;}#clients .container {    background-color: rgba(40, 30, 20, 0.75);    -webkit-border-radius: 4px;    -moz-border-radius: 4px;    border-radius: 4px;    color: #fff;}#clients .desc h2 {    margin-top: 0px;}#clients .desc p {    margin-bottom: 50px;}#clients .statement div h4 {    margin-top: 0px;}#clients .statement div p {    margin-bottom: 30px;}*/
/* END: CLIENTS SECTION*/
/* START: TEAM SECTION*/
/*#team .desc h2 {    margin-top: 0px;}#team .desc p {    margin-bottom: 50px;}#team .person {    height: 400px;    background-repeat: no-repeat;    background-position:center;    margin-bottom: 30px;}#team .person .info {    padding-top: 10px;    position: absolute;    bottom: 0;    background: rgba(255, 255, 255, 0.75);    margin-left: -15px;}#team .person .info h4 {    margin-top: 0px;    font-weight: 700;}#team .person .info p {    width: 80%;    margin: auto;}#team .person .info ul {    font-size: 24px;    background-color: rgba(255, 255, 255, 0.75);}*/
/* END: TEAM SECTION*/
/* START: CONTACT SECTION*/
.contact .desc h2 {
    margin-top: 0px;
}

.contact .desc p {
    margin-bottom: 50px;
}

.contact .option {
    padding-bottom: 30px;
}

.company-logo {
    margin-left: 20px;
    margin-top: -42px;
    background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_170x130.png');
    width: 170px;
    height: 130px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat
}

#contact-details-wrapper {
    position: relative;
    border: 1px solid #ddd;
    background-color: #fff;
    background: url('../images/stripes.png');
}

#contact-details {
    background-color: #fff;
    margin: -20px auto 15px auto;
    padding-top: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #eee;
}

#contact-form input[type="text"], #contact-form input[type="email"], #contact-form textarea {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: none !important;
    color: #2C3E50;
}

/* END: CONTACT SECTION*/
/* START: FOOTER SECTION*/
#footer {
    font-size: 12px;
    text-align: center;
    margin: 20px auto;
}

/* END: FOOTER SECTION*/
/* START: Custom Styles */
/*.site-logo {    background-position: bottom center;    background-repeat: no-repeat;    background-size:contain;    display: inline-block;}.site-logo.large {    background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign.png');    width: 84px;    height: 84px;}*/
#intro h1.title {
    margin-top: 17px;
    margin-bottom: 5px;
    font-weight: bold;
}

#intro h2.subtitle {
    margin-top: 0px;
    font-size: 24px;
}

#intro .contact {
    margin-top: 18px;
}

    #intro .contact a, a:focus, a:active {
        color: #ffffff;
        cursor: pointer;
    }

        #intro .contact a:hover {
            color: #bca3ce;
        }

#intro .content {
    margin-top: 10px;
}

.no-transform {
    text-transform: none;
}

.purple {
    color: #a572cc;
}

.btn-purple {
    background-color: #a572cc;
    color: #fff;
    border: 1px solid #fff;
}

    .btn-purple:hover, .btn-purple:focus, .btn-purple:active {
        background-color: #bca3ce;
        color: #fff;
    }

/* Bootstrap menu modification: Collapse at 1300px */
@media (max-width: 1300px) {
    .navbar-header {
        float: none;
    }

    .navbar-left, .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }

        .navbar-nav > li {
            float: none;
        }

            .navbar-nav > li > a {
                padding-top: 10px;
                padding-bottom: 10px;
            }

    .collapse.in {
        display: block !important;
    }

    .nav.language-selector {
        float: right !important;
    }

    ul.language-selector {
        display: inline-block !important;
    }

        ul.language-selector li {
            display: inline-block !important;
        }

        ul.language-selector > li > a {
            display: inline-block !important;
        }

    ul.language-selector {
        padding-left: 10px;
        padding-right: 25px;
    }

        ul.language-selector > li > a {
            padding: 5px;
        }
}

/* END: Custom Styles */
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    /* Styles */ .navbar-default .navbar-brand {
        font-size: 0.825em;
        padding: 15px 15px;
    }

        .navbar-default .navbar-brand .site-logo {
            background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_16x21.png');
            width: 21px;
            height: 16px;
        }
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
    /* Styles */ .navbar-default .navbar-brand {
        font-size: 0.825em;
        padding: 15px 15px;
    }

        .navbar-default .navbar-brand .site-logo {
            background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_16x21.png');
            width: 21px;
            height: 16px;
        }
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
    /* Styles */ .navbar-default .navbar-brand {
        font-size: 0.825em;
        padding: 15px 15px;
    }

        .navbar-default .navbar-brand .site-logo {
            background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_16x21.png');
            width: 21px;
            height: 16px;
        }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    /* Styles */ .navbar-default .navbar-brand {
        font-size: 0.825em;
        padding: 15px 15px;
    }

        .navbar-default .navbar-brand .site-logo {
            background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_16x21.png');
            width: 21px;
            height: 16px;
        }
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    /* Styles */ .navbar-default .navbar-brand {
        font-size: 0.825em;
        padding: 15px 15px;
    }

        .navbar-default .navbar-brand .site-logo {
            background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_16x21.png');
            width: 21px;
            height: 16px;
        }
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    /* Styles */ .navbar-default .navbar-brand {
        font-size: 0.825em;
        padding: 15px 15px;
    }

        .navbar-default .navbar-brand .site-logo {
            background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_16x21.png');
            width: 21px;
            height: 16px;
        }
}

/* iPhone 4 ----------- */
@mediaonly screen and (-webkit-min-device-pixel-ratio : 1.5),only screen and (min-device-pixel-ratio : 1.5) {
    /* Styles */
    .navbar-default .navbar-brand {
        font-size: 0.825em;
        padding: 15px 15px;
    }

        .navbar-default .navbar-brand .site-logo {
            background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_16x21.png');
            width: 21px;
            height: 16px;
        }
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
    /* Styles */ .navbar-default .navbar-brand {
        font-size: 1.8em;
        padding: 5px 15px;
    }

    .navbar-brand .small-text {
        font-size: 0.625em;
    }

    .navbar-default .navbar-brand .site-logo {
        background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_32x42.png');
        width: 42px;
        height: 32px;
    }

    ul.language-selector {
        padding-left: 10px;
        padding-right: 25px;
    }

        ul.language-selector > li > a {
            padding: 17px 5px 13px 5px;
        }

    img.flag-image {
        width: 24px;
    }
}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
    /* Styles */ .navbar-default .navbar-brand {
        font-size: 1.8em;
        padding: 5px 15px;
    }

    .navbar-brand .small-text {
        font-size: 0.625em;
    }

    .navbar-default .navbar-brand .site-logo {
        background-image: url('../images/Psihoterapija_Logo_Ikona_BotAlign_32x42.png');
        width: 42px;
        height: 32px;
    }
}
