/* Government Style Variables */
:root {
    --gov-primary-blue: #004990;
    --gov-secondary-blue: #0079C1;
    --gov-accent-yellow: #F2C200;
    --gov-text-black: #1a1a1a;
    --gov-text-muted: #666666;
    --gov-border-light: #cccccc;
    --gov-bg-white: #ffffff;
    --gov-bg-light: #f8f8f8;
    --gov-error-red: #cc0000;
}

.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    max-width: 90rem;
}

.entry-content {
    max-width: 100%;
}

.post-inner {
    padding-top: 0 !important;
}

.header-footer-group {
    margin: 0 !important;
}
article header {
    background: var(--gov-primary-blue) !important;
}
.section {
    display: table;
    width: 100%;
}
.section_inner {
    display: table;
    width: 95%;
    max-width: 900px;
    margin: auto;
    padding: 50px 0;
}
.row,
.row_full {
    display: table;
    width: 100%;
}
.row_half {
    display: table;
    width: 48%;
    margin: auto;
    float: left;
}
.row_half:nth-child(1) {
    margin-right: 2%;
}
.row_half:nth-child(2) {
    margin-left: 2%;
}
input,
select,
textarea {
	display: table;
	width: 100%;
	border: 1px solid var(--gov-border-light);
	background: var(--gov-bg-white);
	font-size: 15px; 
	padding: 10px 0;
	text-indent: 10px;
	border-radius: 0;
	margin: 5px 0 10px 0;
	text-align: left;
	color: var(--gov-text-black);
}
textarea.update_field {
    text-indent: 0px;
    padding: 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    resize: vertical;
}
input[type=text],
input[type=tel] {
	-moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyMCAyMCcgZmlsbD0nbm9uZSc+PHBhdGggZD0nTTcgN2wzLTMgMyAzbTAgNmwtMyAzLTMtMycgc3Ryb2tlPScjMzMzJyBzdHJva2Utd2lkdGg9JzEuNScgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJy8+PC9zdmc+);
    background-repeat: no-repeat;
	background-position: center right 2px;
    background-size: 25px;
	/* text-align-last: center; */
	text-align-last: left;
    padding: 11px 0;
}
input:active,
input:focus,
select:active,
select:focus,
textarea:active,
textarea:focus {
	border-color: var(--gov-secondary-blue);
    outline: 0;
    box-shadow: 0 0 0 2px rgba(0, 121, 193, 0.15);
}
input[type=radio] {
	display: inline-block;
	vertical-align: middle;
	width: 19px;
	height: 19px;
	border-radius: 100%;
}
input[type=radio]:active,
input[type=radio]:focus {
	box-shadow: none;
	border-color: initial;
}
input[type=radio]:hover {
	cursor: pointer;
}

.row p {
    font-size: 14px;
    margin: 5px 0 0 0;
}
.section h1 {
    font-size: 35px;
    line-height: 35px;
    font-weight: bold;
    margin: 20px 0 5px 0;
}
.section h2 {
    font-size: 27px;
    line-height: 30px;
    font-weight: bold;
    margin: 15px 0 5px 0;
}
.section h3 {
    font-size: 23px;
    line-height: 27px;
    font-weight: bold;
    margin: 15px 0 5px 0;
}
.section h4 {
    font-size: 19px;
    line-height: 23px;
    font-weight: bold;
    margin: 15px 0 5px 0;
}
.section h5 {
    font-size: 15px;
    line-height: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
}
.general_text {
    font-size: 15px;
    line-height: 23px;
}
/* .section span {
    display: inline-block;
    vertical-align: middle;
} */
h3 span {
    max-width: calc(100% - 50px);
}
.p_info,
.row .p_info {
    font-size: 13px;
    line-height: 17px;
    font-style: italic;
    color: #888;
}
table .p_info {
    text-align: center;
}
.button {
	display: table;
	width: 100%;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
    text-transform: none;
	padding: 15px 0;
	margin: auto;
	background: var(--gov-primary-blue);
	color: #fff;
	border-radius: 0;
	border: 1px solid var(--gov-primary-blue);
	position: relative;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	transition: background-color 0.2s;
}
input[type=submit]:hover,
.button:hover {
	cursor: pointer;
	background: var(--gov-secondary-blue);
	border-color: var(--gov-secondary-blue);
}
.button_red {
    background: var(--gov-error-red);
	border-radius: 0;
	border: 1px solid var(--gov-error-red);
}
.button_red:hover {
    cursor: pointer;
	background: #990000;
	border-color: #990000;
}
.button_small {
    width: 100%;
    max-width: 300px;
    margin: 0;
    text-transform: none;
}
.button_smaller {
    width: 200px;
    margin: 0;
    text-transform: none;
    padding: 10px;
    margin: 0 0 10px 0;
}
.form_square {
    max-width: 900px;
    padding: 10px 20px 20px 20px;
    margin: 10px 0 30px 0;
    border: 1px solid var(--gov-border-light);
    box-sizing: inherit;
    background: var(--gov-bg-light);
    border-radius: 0;
}
.form_line {
    padding:5px 10px;
    margin: 10px 0;
    border-left: 2px solid var(--gov-border-light);
    /* border: 3px solid #ddd; */
    box-sizing: border-box;
}

.form_line h3 {
    margin: 5px 0;
}
.spacer_10 {
	display: table;
	width: 100%;
	height: 10px;
}
.spacer_25 {
	display: table;
	width: 100%;
	height: 25px;
}
.section hr {
    margin: 20px 0;
}
.expand_icon {
    display: table;
    width: 20px;
    float: right;
    margin-top: 5px;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.expand_icon:hover,
.delete_icon:hover,
.delete_icon_section:hover {
    cursor: pointer;
    opacity: 0.9;
}
.expand_icon_closed {
    -moz-transform:rotate(-90deg);
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
}
.div_delete {
    display: table;
    width: 100%;
}
.div_delete input {
    width: calc(100% - 30px);
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.delete_icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
}
.delete_icon_section {
    display: table;
    float: right;
    margin: 0 10px;
    width: 20px;
}
.button_delete_section {
    display: table;
    float: right;
    margin: 0
}
.notificationError {
	border: 1px solid var(--gov-error-red);
	margin: 10px auto 10px auto;
	padding: 20px 10px;
	font-size: 15px;
	color: var(--gov-error-red);
	width: 100%;
	background: #fff5f5;
	text-align: center;
	/*display: none;*/
    box-sizing: border-box;
    border-radius: 0;
}
.notificationError hr {
    border-color: var(--gov-error-red)
}
.notificationSuccess {
	margin: 10px auto 10px auto;
	border: 1px solid #008000;
	background: #f0fff0;
	color: var(--gov-text-black);
	padding: 20px 10px;
	display: table;
	width: 100%;
	font-size: 15px;
	line-height: 19px;
	text-align: center;
    box-sizing: border-box;
    border-radius: 0;
}
.notificationSuccess hr {
    border-color: #008000
}
.notificationGeneral {
	margin: 10px auto 10px auto;
    color: var(--gov-text-black);
    background-color: var(--gov-bg-light);
    border: 1px solid var(--gov-secondary-blue);
	padding: 20px 10px;
	display: table;
	width: 100%;
	font-size: 15px;
	line-height: 19px;
	text-align: center;
    box-sizing: border-box;
    border-radius: 0;
}
.notificationGeneral hr {
    border-color: var(--gov-secondary-blue)
}
.inputError {
    border-color: var(--gov-error-red)!important;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(204, 0, 0, 0.15)!important;
}
.inline_div {
    display: table;
    margin-bottom: 5px;
}
.inline_div_full {
    width: 100%;
    margin-bottom: 5px;
}
input[type="checkbox"],
input[type="radio"] {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-right: 5px;    
}
input[type="checkbox"] + label,
input[type="radio"] + label {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: calc(100% - 50px);
}
table {
    /* display: block; */
    /* overflow: auto; */
    margin: 20px auto 10px auto;
}
/* table tbody {
    display: table;
    width: 100%;
} */
table tr td {
    font-size: 13px;
    background: var(--gov-bg-white);   
    border: 1px solid var(--gov-border-light);
}
.align_top,
.align_top td {
    vertical-align: top;
}
table .table_header td,
table .table_footer td {
    font-size: 15px;
    font-weight: bold;
    padding: 20px 10px;
    background: var(--gov-bg-light);
}
table td {
    word-break: keep-all;
}
table td input {
    display: block;
}
.prepop_text {
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid;
    padding: 0 20px;
}
.input_upload_text {
    font-size: 13px;
    line-height: 17px;
    margin: 10px;
}

/* .bazin_populational_uat_results,
.bazin_populational_inter_uat_results {
    position: absolute;
    max-height: 180px;
    display: block;
    overflow: auto;
    width: 387px !important;
    width: 100%;        
    margin-top: -10px;
    padding: 0;
    box-sizing: border-box;
    border: 2px solid #a2f6b5;
    z-index: 10;
}
.bazin_populational_uat_result,
.bazin_populational_inter_uat_result {
    display: block;
    width: 100%;
    padding: 10px;
    background: #c6fed3;
}
.bazin_populational_uat_result:hover,
.bazin_populational_inter_uat_result:hover {
    cursor: pointer;
    background: #a2f6b5;
} */

/*--- Evaluare ---*/
/* #lista_tabel_evaluator table {
    display: table;
}
#lista_tabel_evaluator table th,
#lista_tabel_evaluator table td {
    word-break: keep-all;
}
.section_formular_admin .section_inner {
    max-width: 1200px;
}
.form_line_evaluare .row {
    display: inline-block;
    vertical-align: top;
    width: 65%;
    max-width: 65%;
}
.form_line_evaluare .row_evaluare {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    max-width: 32%;
    padding: 10px;
    box-sizing: border-box;
    margin-left: 2%;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #eee;
}
.form_line_evaluare .row_evaluare_success {
    border: 2px solid #00e777;
    background: rgba(0, 231, 119, 0.07);
}
.form_line_evaluare .row_evaluare_error {
    border: 2px solid #FF004E;
    background: rgba(255, 0, 78, 0.07);
} */

.button_disabled,
.trimite_formular_disabled,
.email_login_button_disabled,
.pdf_generat_download_disabled,
.descarca_cererea_disabled,
.incarca_cererea_disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

input:read-only,
textarea:read-only,
select:disabled {
    opacity: 0.7;
    background: #eee;
}

input:read-only:hover,
input:disabled:hover,
textarea:read-only:hover,
select:disabled:hover {
    /* cursor: not-allowed; */
}

.salvare_partiala,
.deblocare_formular {
    margin-top: 35px;
}

.row_table {
    display: block;
    position: relative;
    overflow: auto;
    width: 100%;
}


.select2-container,
.select2-results__option {
    font-size: 15px;
}

.select2-container .select2-selection--single {
    height: 40px;
}
.select2-container li {
    margin: 0;
}
.select2-dropdown {
    top: 5px;
}
.select2-search--dropdown .select2-search__field {
    padding: 10px 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-top: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}

.table_admin_div {
    width: 100%;
    max-width: 1200px;
    /* display: block; */
    /* overflow: auto; */
}
#table_admin {
    width: 100%;
    max-width: 1200px;
    /* overflow: auto;
    display: block;
    white-space: nowrap; */
    /* table-layout: fixed; */
}
th, td {
    font-size: 15px;
    word-break: keep-all;
}
th {
    background: #eee;
}
thead th input {
    padding: 5px 0;
}
#table_admin select,
table select {
    padding: 5px 0;
    width: 130px;
}
.filters th {
    min-width: 140px;
}

.table_error_cell td {
    background: rgba(255, 0, 0, 0.07);
}

.expand_tab {
    display: none;
    margin-bottom: 20px;
}
.expand_tab .row_full {
    margin: 5px 0;
}
.expand_tab_div .row_half p {
    margin: 0 0 5px 0;
}


/* ----------------- LOADER PURE CSS ------------------ */
#loaderBIGOuter {
	position: fixed;
	z-index: 1000;
	height: 100%;
	width: 100%;
	text-align: center;
	top: 0px;
	opacity: 0.977;
	background: #4CAF50;
}
#loaderBIGInner {
	position: relative;
	margin: 0px auto;
	display: block;
	top: 40%;
}
#loaderBIGInner img {
    display: block;
    margin: 10px auto 20px auto;
    width: 200px;
    height: auto;
}

.loaderText {
	margin-top: 15px;
	color: #fff;
	display: table;
	width: 95%;
	margin: 15px auto;
	font-size: 15px;
	line-height: 20px;
}

.loaderCSS {
	margin: 0px auto;
	font-size: 5px;
	position: relative;
	text-indent: -9999em;
	border-top: 0.7em solid rgba(255, 255, 255, 0.1);
	border-right: 0.7em solid rgba(255, 255, 255, 0.1);
	border-bottom: 0.7em solid rgba(255, 255, 255, 0.1);
	border-left: 0.7em solid #F8F8FF;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 0.30s infinite linear;
	animation: load8 0.30s infinite linear;
}
.loaderCSS,
.loaderCSS:after {
	border-radius: 50%;
	width: 5em;
	height: 5em;
}
@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/*============================== END LOADER PURE CSS =============================*/


.button_spinner {
	display: none;
    position: absolute;
	top: 10px;
	right: 10px;
    width: 30px;
    height: 30px;
    -webkit-animation: button_spinner infinite .75s linear;
       -moz-animation: button_spinner infinite .75s linear;
         -o-animation: button_spinner infinite .75s linear;
            animation: button_spinner infinite .75s linear;
    border: 4px solid white;
    border-top-color: rgba(255, 255, 255, .3);
    border-right-color: rgba(255, 255, 255, .3);
    border-bottom-color: rgba(255, 255, 255, .3);
    border-radius: 100%;
}

@keyframes button_spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#nimble-header {
    display: none;
}

/*----------- MEDIA QUERIES -------------*/
@media only screen and (max-width: 600px) {
    .form_square {
        padding: 10px 10px 30px 10px;
    }
	.row_half {
        width: 100%;
        margin: 0 !important;
    }
    .button_small {
        max-width: 100%;
    }
    .row_table {
        display: block;
        position: relative;
        overflow: auto;
        width: calc(100vw - 50px);
    }
}