/*
.centru {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); // for IE 9
  -webkit-transform: translate(-50%, -50%); // for Safari
  // optional size in px or %: 
  width: 100px;
  height: 100px;
}

input, select {
	padding: 5px;
}

*/

.footer{
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   text-align: center;    
}

.info-utile{
    padding: 5px 0;
    background: #ccc;
    color: #343a40;
    text-align:center;
}
.copyrights {
    padding: 5px 0;
    background: #343a40 ;
    color: #ccc;
    text-align:center;
}

.copyrights a {
    color:#ffff00;
}
.copyrights a:hover {
    color: red;
}

.form-row, .form-group {
    margin-top: 20px;
}

label.error {
    display: block;
    position: inherit;
    top: 0;
    right: 0;
/*
    font-weight: bold;
*/
    color: red;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
textarea.form-control {
    height: auto;
}

.easy-autocomplete-container ul {
    background: none repeat scroll 0 0 #ffffff;
    border-top: 1px dotted #ccc;
    display: block;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    position: relative;
    top: -1px;
}

.easy-autocomplete input {
    padding: 15px 20px;
/*    padding: 6px 12px; */
}

input[type=number] {
  text-align:right;
}

.input_rezumat{
	color: #0066cc;
	font-weight: normal;
	font-size: 1.2em;
	padding: 5px;
}
.grup-suma-selectata{	
	text-align: left;
	margin:0 auto;
	width:90%;
}
.custom-radio-button div {
  /*display: inline-block; - se anuleaza afisarea pe aceeasi linie*/
}
.custom-radio-button input[type="radio"] {
  display: none;
}
.custom-radio-button input[type="radio"] + label {
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.custom-radio-button input[type="radio"] + label .suma {
	color: #000000;
	font-weight: bold;
	font-size: 22px;
}
.custom-radio-button input[type="radio"] + label .cerc {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 44px;
}
.custom-radio-button input[type="radio"] + label .cerc img {
  opacity: 0;
  transition: all 0.3s ease;
}

.custom-radio-button input[type="radio"] + label .cerc {
  background-color: #0066cc;
}
.custom-radio-button input[type="radio"]:checked + label .cerc {
  opacity: 1;
  background: red url("../images/tick-icon.png")
    center center no-repeat;
  width: 40px;
  height: 40px;
  display: inline-block;
}

.custom-radio-button input[type="radio"] + label .suma {
	color: #000000;
	font-weight: normal;
	font-size: 22px;
}

.custom-radio-button input[type="radio"]:checked + label .suma {
	color: red;
	font-weight: bold;
}


/* pentru culori diferite la optiuni
.custom-radio-button input[type="radio"]#color-red + label span {
  background-color: red;
}
.custom-radio-button input[type="radio"]#color-blue + label span {
  background-color: blue;
}
.custom-radio-button input[type="radio"]#color-orange + label span {
  background-color: orange;
}
.custom-radio-button input[type="radio"]#color-pink + label span {
  background-color: pink;
}
*/

/* checkbox styled - https://codepen.io/spacemonkey/pen/vmZROv*/

.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #0066cc;
}
.styled-checkbox:hover + label:before {
  background: #0066cc61;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #0066cc;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}