@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700|Open+Sans:300,400,600,700,800|Roboto+Condensed:400,700|Roboto+Mono:400,500,700|Roboto+Slab:400,500,600,700,800,900|Roboto:300,400,500,700,900&display=swap');

body {
    font-family: 'Roboto Condensed', sans-serif;
    color: #000000;
}

/*colors*/
.crta-light-orange {
    color: #f37020;
}

.crta-dark-orange {
    color: #f37021;
}

.crta-gray {
    color: #eaeaea;
}

.crta-black {
    color: #000000 !important;
}

.crta-bg-light-orange {
    background-color: #f37020;
}

.crta-bg-dark-orange {
    background-color: #f37021;
}

.crta-bg-gray {
    background-color: #eaeaea;
}

h2.custom-h2 {
    font: 700 45px 'Roboto Condensed',sans-serif;
}

h2.custom-h2-after::after {
    content: ':';
    position: absolute;
    color: #f37021;
}

h3.underlined {
    position: relative;
}

h3.underlined::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 5px;
    background-color: #f37021;
    bottom: -10px;
}

h3.underlined.underlined-white::before {
	background-color: #ffffff;
}

ol {
	list-style: none;
	counter-reset: li;
    padding-left: 20px;
}

ol li::before {
	content: counter(li)".";
	color: #f37020;
	font-weight: bold;
  	display: inline-block;
  	width: 1em;
  	margin-left: -1em;
}

ol li {
	counter-increment: li;
    margin-bottom: 20px;
}

span.preuzeto {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	width: 125px;
	height: 125px;
	border: 15px solid #f37020;
	border-radius: 50%;
	right: -150px;
	bottom: -30px;
}

span.preuzeto div:first-child {
	position: absolute;
	top: 15%;
}

span.preuzeto div:first-child::after {
	content: '';
	position: absolute;
    width: 30px;
    height: 3px;
    background-color: #f37021;
    bottom: -5px;
    left: 50%;
    margin-left: -15px;
}

span.preuzeto div:last-child {
	position: absolute;
	top: 45%;
}

input.form-control {
	height: 45px;
}

input.form-control:focus,
textarea.form-control:focus,
.form-control:focus {
    border-color: #f37021;
    box-shadow: 0 0 0 0.2rem rgba(243,112,33,.25);
}

input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

label.form-check-label {
	position: relative;
    margin-left: 15px;
}

label.form-check-label::before,
label.form-check-label::after {
    position: absolute;
    content: "";
    
    /*Needed for the line-height to take effect*/
    display: inline-block;
}

label.form-check-label::before{
    height: 15px;
    width: 15px;
    border: 1px solid #696969;
    border-radius: 50%;
    left: -30px;
    
    /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
     *to vertically center it.
     */
    top: 3px;
}

/*Checkmark of the fake checkbox*/
label.form-check-label::after {
    height: 5px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    
    transform: rotate(-45deg);
    
    left: -27px;
    top: 7px;
}

/*Hide the checkmark by default*/
input[type="checkbox"] + label.form-check-label::after {
    content: none;
}

/*Unhide on the checked state*/
input[type="checkbox"]:checked + label.form-check-label::after {
    content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
input[type="checkbox"]:focus + label.form-check-label::before {
    outline: rgb(59, 153, 252) auto 5px;
}

@media (min-width: 1200px) {
	.container{
	    max-width: 1440px;
	}
}