/* this declares a better box model */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

body.preloader-site {
    overflow: hidden;
}

.preloader-wrapper {
    height: 100%;
    width: 100%;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
}

.preloader-wrapper .preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.list-wrap label {
    color: #00BDE8;
}

.search-box {
    float: left;
    clear: left;
    width: 70%;
    padding: 0.4em;
    font-size: 18px;
    color: #555;
}

.list-count {
    text-align: left;
    padding: 0.5em;
    color: #776f6f;
}

li {}

.empty-item {}

.empty .empty-item {}

.hiding {
    margin-left: -100%;
    opacity: 0.5;
}

.hidden {
    display: none;
}

ul {
    float: left;
    width: 100%;
    margin: 2em 0;
    padding: 0;
    position: relative;
}

ul:before {
    content: 'parnjaci';
    position: absolute;
    left: -2.8em;
    font-size: 3em;
    text-align: right;
    top: 1.5em;
    color: #776f6f;
    font-weight: bold;
    font-family: 'Maven Pro', sans-serif;
    transform: rotate(-90deg);
}

.in {
    float: left;
    clear: left;
    width: 100%;
    margin: 0.2em 0;
    padding: 0.5em 0.8em;
    list-style: none;
    background-color: #f2f2f2;
    border-left: 5px solid #003842;
    cursor: pointer;
    color: #333;
    position: relative;
    z-index: 2;
    font-size: 18px
}

.in:hover {
    background-color: #f9f9f9;
    border-color: #00BDE8;
}
.form-section:before{display: none}
.empty-item {
    background: #fff;
    color: #776f6f;
    margin: 0.2em 0;
    padding: 0.5em 0.8em;
    font-style: italic;
    border: none;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    float: left;
    clear: left;
    width: 100%;
}

.empty .empty-item {
    opacity: 1;
    visibility: visible;
}


/*
The following are styles purely for the surroundings
*/

body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1em;
}

a {
    color: #00BDE8;
}

h1 {
    font-size: 2.6em;
    margin: 0;
    padding-top: 1.5em;
    text-align: center;
    font-family: 'Maven Pro', sans-serif;
}

h3 {
    margin: 0 0 2em;
    text-align: center;
    font-weight: normal;
    font-family: georgia, times;
    font-style: italic;
    color: #777;
    font-size: 1em;
}

.info {
    float: left;
    width: 60%;
    margin: 2em 20%;
    padding: 2em 0;
    background: #f9f9f9;
    border-left: 5px solid #003842;
    padding: 10px 20px;
}

.list-wrap {
    float: left;
    width: 40%;
    margin: 2em 30%;
    padding: 2em 0;
}

p {
    text-align: left;
    font-size: 1em;
}

.cta {
    float: left;
    width: 100%;
    text-align: center;
    color: #999;
    font-family: georgia, times;
    font-style: italic;
    margin: 0;
    position: fixed;
    bottom: 0;
    z-index: 10;
    background: white;
    padding-bottom: 10px;
    padding-top: 10px;
}

.cta a {
    font-size: 1.5em;
    font-style: normal;
    font-family: 'Maven Pro', sans-serif;
    text-decoration: none;
    line-height: 1.5em;
}

.topdeco {
    float: left;
    width: 100%;
    height: 10px;
    z-index: 10;
}

.topdeco span {
    float: left;
    width: 25%;
    height: 100%;
}

.deco span:nth-child(1) {
    background: #FF8220;
}

.deco span:nth-child(2) {
    background: #000;
}

.deco span:nth-child(3) {
    background: #FFA00A;
}

.deco span:nth-child(4) {
    background: #00BDE8;
}

#nadi {
    float: left;
    background-color: #4CAF50;
    color: white;
    padding: 6px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border: 2px solid #4CAF50;
    margin-left: 1%;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
}

#nadi span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

#nadi span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

#nadi:hover span {
    padding-right: 25px;
}

#nadi:hover span:after {
    opacity: 1;
    right: 0;
}

#nadi:hover {
    background-color: white;
    /* Green */
    color: black;
    border: 2px solid black;
    cursor: pointer;
}

input[type="text"] {
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
}

input[type="text"]:focus,
input[type="text"].focus {
    border: solid 1px #707070;
    box-shadow: 0 0 5px 1px #969696;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}


/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

#link {
    cursor: pointer;
}

.jf-form {
    margin-top: 28px;
}

.jf-form > form {
    margin-bottom: 32px;
}

.jf-option-box {
    display: none;
    margin-left: 8px;
}

.jf-hide {
    display: none;
}

.jf-disabled {
    background-color: #eeeeee;
    opacity: 0.6;
    pointer-events: none;
}


/* 
overwrite bootstrap default margin-left, because the <label> doesn't contain the <input> element.
*/

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: 0px;
}


.mainDescription {
    margin-bottom: 10px;
}

.responsive img {
    width: 100%;
}

p.error,
p.validation-error {
    padding: 5px;
}

p.error {
    margin-top: 10px;
    color: #a94442;
}

p.server-error {
    font-weight: bold;
}

div.thumbnail {
    position: relative;
    text-align: center;
}

div.thumbnail.selected p {
    color: #ffffff;
}

div.thumbnail .glyphicon-ok-circle {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #ffffff;
    font-size: 32px;
}

.jf-copyright {
    color: #888888;
    display: inline-block;
    margin: 16px;
    display: none;
}

.form-group.required .control-label:after {
    color: #dd0000;
    content: "*";
    margin-left: 6px;
}

.submit .btn.disabled,
.submit .btn[disabled] {
    background: transparent;
    opacity: 0.75;
}


/* for image option with span text */

.checkbox label > span,
.radio label > span {
    display: block;
}

.form-group.inline .control-label,
.form-group.col-1 .control-label,
.form-group.col-2 .control-label,
.form-group.col-3 .control-label {
    display: block;
}

.form-group.inline div.radio,
.form-group.inline div.checkbox {
    display: inline-block;
}

.form-group.col-1 div.radio,
.form-group.col-1 div.checkbox {
    display: block;
}

.form-group.col-2 div.radio,
.form-group.col-2 div.checkbox {
    display: inline-flex;
    width: 48%;
}

.form-group.col-3 div.radio,
.form-group.col-3 div.checkbox {
    display: inline-flex;
    width: 30%;
}

.clearfix:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}


.scrolltop {
	display:none;
	width:100%;
	margin:0 auto;
	position:fixed;
	bottom:20px;
    right:10px;	
    z-index: 100;
}
.scroll {
	position:absolute;
	right:20px;
	bottom:10px;
	background:#b2b2b2;
	background:rgba(178,178,178,0.7);
	padding:20px;
	text-align: center;
	margin: 0 0 0 0;
	cursor:pointer;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
    -o-transition: 0.5s; 	
}
.scroll:hover {
	background:rgba(178,178,178,1.0);
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 		
}
.scroll:hover .fa {
	padding-top:-10px;
}
.scroll .fa {
	font-size:30px;
	margin-top:-5px;
	margin-left:1px;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 	
}

#cid_5, #input_5{width: 100%}
#cid_2{text-align: center}

@media only screen and (max-width: 690px) {

    body,html{overflow-x: hidden}
    ul:before {
        display: none;
    }
    .list-wrap {
        float: left;
        width: 100%;
        margin: 5px;
    }

    .scroll{padding: 10px; right:10px;
        bottom:5px;}
    .scroll .fa  {font-size: 15px}
    .cta a{font-size: 18px}
    .cta{padding-top: 5px; padding-bottom: 5px}
    
}

@media only screen and (max-width: 480px) {
#nadi{margin-left: 0; margin-top: 10px; margin-bottom: 10px}
    .list-count{margin-left: 80px; margin-top: 15px}
}