@font-face {
    font-family: EtelkaBold;
    src: url(fonts/EtelkaBoldPro.otf);
}
@font-face {
    font-family: EtelkaLight;
    src: url(fonts/EtelkaLightPro.otf);
}
@font-face {
    font-family: EtelkaReg;
    src: url(fonts/EtelkaRegPro.otf);
}
@font-face {
    font-family: Intro;
    src: url(fonts/Intro-Light-Caps.otf);
}

body {
	width: 100%;
	height: 100%;
	font-family: Arial,sans-serif;
	color: #fff;
	background-color: #FFF;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}

@media(min-width:768px) {
    p { margin: 0 0 15px 0; font-size: 18px; line-height: 1.4;
    }
}

a {
    color: #42dca3;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #1d9b6c;
}

.light {
    font-weight: 400;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #000;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #fff;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: rgba(255,255,255,.8);
    background-color: transparent;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li.active a:hover {
    color: #fff;
}

@media(min-width:768px) {
    .navbar-custom {
        padding: 0 0 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: #000;
    }
}

.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background: url(../img/intro-bg.jpg) no-repeat bottom center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
}

.intro .intro-body .intro-text {
    font-size: 18px;
}

@media(min-width:768px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 100px;
    }

    .intro .intro-body .intro-text {
        font-size: 26px;
    }
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 100%!important;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding-top: 100px;
}

.download-section {
    width: 100%;
    padding: 50px 0;
    color: #fff;
    background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 100px;
}

@media(min-width:767px) {
    .content-section {
        padding-top: 250px;
    }

    .download-section {
        padding: 100px 0;
    }

    #map {
        height: 400px;
        margin-top: 250px;
    }
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #42dca3;
    color: #42dca3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #42dca3;
    outline: 0;
    color: #000;
    background-color: #42dca3;
}

ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}

footer { padding: 80px 0; 
}

footer p {
    margin: 0;
}

::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}
.navbar-nav > li > a {
    line-height: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
	font-family:Arial, Helvetica, sans-serif; font-weight:normal
}
.navbar {
min-height: 34px; height:34px; background: rgba(0,0,0,0.4) !important;
	}
.navbar-brand { position:relative; top:-16px}
.navbar-custom.top-nav-collapse {border-bottom: hidden}
.red-backgr { background-color:#Ff0000; padding-top:25px}
.purple-backgr { background-color: #3F3042; padding: 20px 70px; color: #B2ACB3; font-size: 50px; font-family: EtelkaLight, Arial; line-height: 1.22; }
.cafian-backgr { background-color:#ACA495;}
.white-backgr {
	background-color: #Fff;
	padding-top: 25px;
	color: #000;
	padding: 35px 100px;
	font-size: 16px;
}
.small-black { color:#000; font-size:14px}
.big-white { font-size:50px; font-family:Intro,Arial}
.icona img { left:50px; top:20px; position:relative}
.opinion { background-color:#FFF;  font-family: EtelkaLight, Arial; color:#000; font-size:60px }
h2 {
	text-align: center;
	font-family: EtelkaLight, Arial;
	font-weight: normal;
	font-size: 60px;
	padding: 30px 0 0 30px
}
.navbar-nav > li > a { padding-left:8px; padding-right:8px}

.text { font-size:18px; padding-bottom:30px}
.yelow-backr { background-color:#FFC741; color:#000}
.dark-red-backr {background-color:#952C29}
.gray-backgr { background-color:#ccc; color:#000}
#social h2 { color:#FF0000 }
section li { padding-top:10px; padding-bottom:10px;}
img { max-width:100%}
.ostava span { display:inline-block; width:33%}
.big-white span { display:inline-block; vertical-align:top}
.big-white span ins { font-size:12px; color:#000; display:block; text-decoration:none; padding-bottom:20px}
.left-position .user-image { width:150px}
.right-position .user-image { padding-left:50px}
#chat-window { height:500px; overflow:auto; position:relative; font-size:18px}
.left-position { width: 55%; position: relative; left: 0; padding: 10px; margin-bottom: 10px }
.right-position { width: 55%; position: relative; left: 45%; padding: 10px; margin-bottom: 10px }
.chat-text { text-align:center; color:#000}
.left-position .chat-text { color:#000; background-color:#BCB6BD; padding:10px; font-weight:bold;}
.right-position .chat-text { color:#FF0000; background-color:#F2F2F2; padding:10px; font-weight:bold;}
.chat-text p { padding-bottom:0; font-size:11px; font-family:Arial, Helvetica, sans-serif; text-align:left; color:#666; position:relative; top:6px; margin-bottom:0}
.right-position .chat-text p { text-align:right;}
.chat-text .user-image { position:absolute; bottom:-80px; left:10px}
.left-position .chat-text .user-image { text-align:left; background-image:url(../img/tr-left.jpg); background-repeat:no-repeat; background-position:80px 0}
.right-position .chat-text .user-image { text-align:right; right:10px; background-image:url(../img/tr-right.jpg); background-repeat:no-repeat; background-position:right 0}
#face-window { height:500px; overflow:auto; position:relative; font-size:18px}

#face-window  .left-position .chat-text { color: #000; background-color: #E3E3E3; padding: 10px; font-weight: bold; }
#face-window .right-position .chat-text { color:#000; background-color:#F2F0DB; padding:10px; font-weight:bold;}
#face-window .left-position .chat-text .user-image { text-align:left; background-image:url(../img/tr-left2.jpg); background-repeat:no-repeat; background-position:97px 0}
#face-window .right-position .chat-text .user-image { text-align:right; right:10px; background-image:url(../img/tr-right2.jpg); background-repeat:no-repeat; background-position:right 0}

#ajaxform { background-color:#E6E6E6; font-size:12px; padding:30px 0}
#ajaxform input.full, #ajaxform textarea { width:100%; margin-bottom:10px}
input[type="submit"] { background-color:#C00; color:#FFF; border:1px solid #c00; padding:4px 8px}
.capcha-text { width:50px}
#ajax_error { font-size:14px}
@media (max-width: 768px) {
	.no-mobile { display:none}
	.white-backgr { padding:35px 5px}
	.purple-backgr { font-size:20px; padding:20px 10px} 
	h2 { font-size:30px}
	.row {
    margin-left: 0;
    margin-right: 0;
	
}
.cavichka { text-align:right; width:100%}
	}
@media (min-width: 940px) {
.cavichka { padding-top:225px}
	}
span.small-black { display: block; text-transform: capitalize !important; font-family:Arial, Helvetica, sans-serif }
#gls { display:inline-block; width:65px; padding:0; margin:0; vertical-align:top; position:relative;}
#vote {
    background-color: #ff0000;
    border: 0px solid #c00;
    color: #fff;
    padding: 0px 0px;
	background-image: url(../img/vote.png); width: 49px; padding-top: 0; box-sizing: border-box; height:63px; display:inline-block; top:0px; margin:0; position:absolute;
	top:10px; left:10px
}

#vote.disabled { background-image: url(../img/vote2.png); width:55px; background-repeat:no-repeat; }

#toTop {
    background: rgba(0, 0, 0, 0) url("http://i.dir.bg/dir5/dir-new/html/img/ui.totop2.png") no-repeat scroll left top;
    bottom: 10px;
    height: 51px;
    overflow: hidden;
    position: fixed;
    right: 10px;
    text-decoration: none;
    text-indent: 100%;
    width: 51px;
	display:block;
	z-index:10000;
}