/* >>======= WER ========= */
.wer-sel {
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
	     -moz-user-select: none;
	      -ms-user-select: none;
	          user-select: none;
}
/* BUTTONS */
.wer-round-but {
	border-radius: 100%;
	padding: 0.5em;
}

.wer-click, .wer-click-sm, .wer-centerclick {
	transition: transform 0.1s linear;
	cursor: pointer;
}
.wer-click:hover {
	transform: scale(1.1);
}
.wer-click-sm:hover {
	transform: scale(1.05);
}
.wer-click:active {
	transform: scale(1.05);
}
.wer-click-sm:active {
	transform: scale(1.025);
}
.wer-centerclick:hover {
	transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.wer-centerclick:active {
	transform: translateX(-50%) translateY(-50%) scale(1.05);
}
.wer-but {
	text-decoration: none !important;
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
	     -moz-user-select: none;
	      -ms-user-select: none;
	          user-select: none;
	padding: 5px 22px 6px 22px;
	background-color: #4b83fc;
	transition: 0.1s linear;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	margin: 1em 0 0 0;
	font-size: 0.9em;
	min-width: 150px;
	cursor: pointer;
	border: none;
	color: white;
}
.wer-but:hover {
	text-decoration: none !important;
	background-color: #729efd;
	color: white !important;
	transform: scale(1.1);
}
.wer-but:active {
	transform: scale(1.05);
}
.wer-but:visited {
	text-decoration: none !important;
	color: white !important;
}
.wer-but.wer-but-gray { background-color: #838791; }
.wer-but.wer-but-gray:hover { background-color: #9fa4b0; }

.wer-but.loading {
	animation: loading 1s ease-in-out infinite alternate;
	background-color: #979797;
	position: relative;
	color: transparent;
}
.wer-but.loading::before {
	transform: translateX(-50%) translateY(-50%);
	animation: loading-text 1s linear infinite;
	content: 'Se incarca';
	line-height: 1em;
	position: absolute;
	display: block;
	color: white;
	left: 50%;
	top: 50%;
}
.wer-but.wer-confirm-yes { background-color: #20a291; font-weight: bold; border-radius: 1em; }
.wer-but.wer-confirm-yes:hover { background-color: #2fb5c4; }
.wer-but.wer-confirm-no { background-color: #d93e36; font-weight: bold; border-radius: 1em; }
.wer-but.wer-confirm-no:hover { background-color: #e65149; }
@keyframes loading-text {
  0% { content: "Se incarca\A.  "; }
  50% { content: "Se incarca\A.. "; }
  100% { content: "Se incarca\A..."; }
}
@keyframes loading {
	from {background-color: #979797;}
	to {background-color: #b9b9b9;}
}

/* SHARE BUTTON */
.wer-share {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABQklEQVRIie1UMU7DMBR1yQHISegFOjRJB2o7EktO0gtkICEDCNoB5ac36CU6gJQ66QJrByQItcvSIQNTZaYgUC0lNAlTn+TR7/n/9/wQOqItEMiIPeUpBZHbU57SkONGyWkk5N5pSsSe8lQpADypTe668gRH/FMtIPJa5L2AdQ0vfsT3r/vkVSdwZlIjkJEhbEYEMuLMpNZ357rhsYnpsZ3pMzm4edoe5MHF7YtOIxH/vEQgWxn+8sP0mTQ9tjOvkrtBsDylIccUeEJB5BR4UslgOxSgetn5ZCX7l4sHy12cVd6nUgDEWjl69L5FUnZqkf+PQMmKegHr1hJQm/z2y2TLj8d9d64fXBXOTGo05HgImxENOS5iavnxuIipdf18WEzL0MhHK4WUHRyt26mKAq2WHUII0ZDjVuv6W+SvVXGECl9D8a9cAJ1QvgAAAABJRU5ErkJggg==');
	background-repeat: no-repeat;
	background-position: center;
}
.wer-share:hover  { background-size: 32px 32px; }
.wer-share:active { background-size: 28px 28px; }

/* MARGINS */
.wer-m0 {
	margin: 0 !important;
}

/* FLEX */
.wer-f1 {flex: 0.1666; ms-flex: 0.1666;}
.wer-f2 {flex: 0.3333; ms-flex: 0.3333;}
.wer-f3 {flex: 0.5; ms-flex: 0.5;}
.wer-f4 {flex: 0.6666; ms-flex: 0.6666;}
.wer-f5 {flex: 0.8333; ms-flex: 0.8333;}
.wer-f6 {flex: 1; ms-flex: 1;}
.wer-f1, .wer-f2, .wer-f3, .wer-f4, .wer-f5, .wer-f6 {
	margin-left: 1em; margin-right: 1em;
}

/* INPUTS */
.wer-input-group {
	flex-direction: column-reverse;
	box-sizing: border-box;
	margin: 2.5em 0 0.85em 0;
	position: relative;
	font-size: 1em;
	display: flex;
	width: 100%;
	padding: 0;
}
.wer-input-group.wer-bool-group {
	margin-top: 0.5em;
}
.wer-input-group * {
	box-sizing: border-box;
}
.wer-input-group input,
.wer-input-group select,
.wer-input-group .wer-input {
	border: 0.07em solid #cbd8df;
	transition: background-color 0.2s;
	box-sizing: border-box;
	padding: 0.43em 0.86em;
	border-radius: 0.3em;
	line-height: 1.4em;
	margin: 0.3em 0 0 0 !important;
	font-size: 1em;
	display: block;
	height: 2.4em;
	width: 100%;
}
.wer-input-group input:focus-visible,
.wer-input-group select:focus-visible,
.wer-input-group .wer-input:focus-visible {
	outline: none;
}
.wer-input-group .select2-container--default .select2-selection--single,
.wer-input-group .select2-container .select2-selection--single,
.wer-input-group .select2-container .select2-selection--single .select2-selection__rendered,
.wer-input-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.wer-input-group .select2-container--default .select2-selection--single .select2-selection__arrow {
	line-height: 2.4em;
	height: 2.4em;
}
.select2,
.select2 .select2-container {
	font-size: 1em;
}
.select2 .select2-container {
	min-width: 33%;
}
.wer-input-group .select2-container--default .select2-selection--single {
	border: 0.07em solid #cbd8df;
}

.wer-table-content .select2-container--default .select2-selection--single,
.wer-table-content .select2-container .select2-selection--single,
.wer-table-content .select2-container .select2-selection--single .select2-selection__rendered,
.wer-table-content .select2-container--default .select2-selection--single .select2-selection__rendered,
.wer-table-content .select2-container--default .select2-selection--single .select2-selection__arrow {
	line-height: 34px;
	height: 34px;
}
.wer-table-content .select2-container--default .select2-selection--single {
	border: solid #e9ecef 1px;
}
.wer-hide-placeholder .select2-container--default .select2-results__option[aria-disabled="true"] {
	display: none !important;
}

.wer-input-group textarea,
.wer-input-group textarea.wer-input {
	line-height: unset;
	height: auto;
}
.wer-input-group select,
.wer-input-group select.wer-input {
	padding: 0.35em 0.5em;
}
.wer-input-group input:focus,
.wer-input-group .wer-input:focus {
	border-color: #cbd8df;
}
.wer-input-group.filtered {
	display: none;
}

/* PASS CHANGE BUT */
.wer-input-group.wer-change-pass > label,
.wer-input-group.wer-change-pass > .wer-input {
	display: none !important;
}
.wer-pass-but {
	padding: 0.43em 0.86em !important;
	font-size: 1em !important;
	margin: 0 auto !important;
	display: none !important;
	width: max-content;
	line-height: 1.4em;
	height: 2.4em;
}
.wer-change-pass > .wer-pass-but {
	display: block !important;
}

/* INPUT ROWS */
.wer-input-row {
	flex-direction: row;
	display: flex;
}
@media only screen and (max-width : 768px), (orientation: portrait) {
	.wer-input-row {
    	display: block;
    }
	.wer-input-row .wer-input-group {
		margin-left: 0;
		margin-right: 0.5em;
	}
}
@media only screen and (min-width : 768px) {
	.wer-input-row .wer-input-group {
		margin-left: 0.5em;
		margin-right: 0.5em;
	}
	/*
	.wer-input-row .wer-input-group:first-child {
		margin-left: 0;
	}
	.wer-input-row .wer-input-group:last-child {
		margin-right: 0;
	}
	*/
}

/* LABEL */
.wer-input-group label {
	transition: 0.2s ease-in-out;
	line-height: 1.4em;
	text-align: left;
	font-size: 1em;
	color: #000000;
}
.wer-input-group .wer-input:not([type='checkbox']):not([type='radio']) ~ label {
	padding: 0 0.86em;
	position: absolute;
	margin: 0.3em 0 0 0;
	cursor: text;
	top: 0.5em;
	left: 0;
}
.fixed-label .wer-input-group .wer-input:not([type='checkbox']):not([type='radio']) ~ label,
.fixed-label.wer-input-group .wer-input:not([type='checkbox']):not([type='radio']) ~ label,
.wer-input-group .wer-input:not([type='checkbox']):not([type='radio']).fixed-label ~ label,
.wer-input-group .wer-input:not([type='checkbox']):not([type='radio']).hasval ~ label,
.wer-input-group .wer-input:not([type='checkbox']):not([type='radio']):focus ~ label {
	font-size: 1em;
	padding: 0.14em;
	cursor: default;
	color: #4d4d4d;
	top: -1.6em;
	margin: 0;
}

.wer-autocenter {
	width: auto !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* NUMERIC */
input.wer-numeric {
	text-align: center;
}
.wer-num-minus, .wer-num-plus {
	transform: translateY(-50%);
	position: absolute;
	margin-top: 0.1em;
	cursor: pointer;
	top: 50%;
}
.wer-num-minus:hover, .wer-num-plus:hover {
	transform: scale(1.1) translateY(-50%);
}
.wer-num-minus { left: 0.7em; }
.wer-num-plus { right: 0.7em; }
.wer-num-minus::before, .wer-num-plus::before {
	font: normal normal normal 1.3em FontAwesome;
	font-size: 1.3em;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #2a68b9;
}
.wer-num-minus::before { content: "\f146"; }
.wer-num-plus::before {  content: "\f0fe"; }

/* EMPTY */
.wer-input.modified.wer-required {
	background-color: #ffb !important;
}
.wer-input.modified.wer-required ~ label {
	color: #ea4d4d !important;
}

.wer-input.modified.wer-required ~ .wer-i-msg::before {
	content: 'Camp obligatoriu!';
	display: inline-block;
	color: orange;
}
.wer-input.modified.wer-required ~ .wer-i-msg {
	border-color: orange;
	color: transparent;
	height: 2em;
}
.wer-input.modified.wer-required:hover ~ .wer-i-msg,
.wer-input.modified.wer-required:focus ~ .wer-i-msg {
	display: block;
}

/* CHECKBOX */
.wer-input[type="checkbox"], .wer-input[type="radio"] {
	position: absolute;
	visibility: none;
	height: 0.1px;
	width: 0.1px;
	z-index: -1;
	opacity: 0;
}
.wer-input[type="radio"].modified.wer-invalid ~ .wer-i-msg,
.wer-input[type="radio"].modified.wer-required ~ .wer-i-msg,
.wer-input[type="checkbox"].modified.wer-invalid ~ .wer-i-msg,
.wer-input[type="checkbox"].modified.wer-required ~ .wer-i-msg {
	display: none;
}

.wer-input[type='radio'] ~ label,
.wer-input[type='checkbox'] ~ label {
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
	     -moz-user-select: none;
	      -ms-user-select: none;
	          user-select: none;
	margin: 0 0 0.15em 0;
	line-height: 1.85em;
	padding-left: 3.5em;
	position: relative;
	cursor: pointer;
	width: 100%;
	height: 2em;
}
.wer-input[type='radio'] ~ label::before,
.wer-input[type='checkbox'] ~ label::before {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-right: 0.2em;
	position: absolute;
	content: " ";
	height: 2em;
	left: 0.7em;
	width: 2em;
	top: 0;
}
.wer-input[type='radio'] ~ label:hover::before,
.wer-input[type='checkbox'] ~ label:hover::before {
	transform: scale(1.1);
}
.wer-input[type='radio'] ~ label:active::before,
.wer-input[type='checkbox'] ~ label:active::before {
	transform: scale(1.05);
}
.wer-input[type='checkbox'] ~ label::before {
	background-image: url('data:image/png;base64,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');
}
.wer-input[type='checkbox']:checked ~ label::before {
	background-image: url('data:image/png;base64,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');
}
.wer-input[type='radio'] ~ label::before {
	background-image: url('data:image/png;base64,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');
}
.wer-input[type='radio']:checked ~ label::before {
	background-image: url('data:image/png;base64,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');
}

/* INVALID */
.wer-input.modified.wer-invalid,
.wer-input.modified.wer-invalid-username,
.wer-input.modified.wer-valid.wer-invalid-username {
	background-color: #ea4d4d !important;
	color: white;
}
.wer-input.modified.wer-invalid ~ label,
.wer-input.modified.wer-invalid-username ~ label,
.wer-input:not([type='checkbox']):not([type='radio']).modified.wer-valid.wer-invalid-username ~ label {
	color: #ea4d4d !important;
}
.wer-input.modified.wer-invalid:hover ~ .wer-i-msg,
.wer-input.modified.wer-invalid:focus ~ .wer-i-msg {
	display: block;
}
.wer-i-msg {
	border-radius: 0 0 5px 5px;
	background-color: white;
	border: 1px solid red;
	position: absolute;
	padding: 0 0.5em;
	display: none;
	z-index: 900;
	width: 100%;
	color: red;
	margin: 0;
	top: 100%;
	left: 0;
}

/* VALID */
.wer-input.modified.wer-valid {
	background-color: #c5ffc5 !important;
}
.wer-input:not([type='checkbox']):not([type='radio']).modified.wer-valid ~ label {
	color: #007900 !important;
}

/* CAPTCHA */
img.wer-captcha {
	position: absolute;
	display: block;
	bottom: 0;
	right: 0;
}
.wer-captchar {
	transform: translateY(-50%);
	position: absolute;
	right: 0;
	top: 50%;
}

/* BAR */
.wer-input-group .wer-input-bar {
	background-color: transparent;
	transition: 0.2s ease;
	margin-top: -0.07em;
	position: absolute;
	font-size: 1em;
	display: none;
	height: 0.14em;
	width: 0%;
	left: 0;
	top: 100%;
}
.wer-input-group:hover .wer-input-bar,
.wer-input-group .wer-input:focus ~ .wer-input-bar {
	background-color: #4d4d4d;
	width: 100%;
	left: 0;
}
.wer-input-group .wer-input:focus ~ .wer-input-bar {
	background-color: #4d4d4d;
	height: 0.214em;
}

/* SIGN */
.wer-sign {
	position: relative;
	display: block;
	width: 100%;
}
.wer-sign canvas {
	background-color: transparent;
	border: 0.3em solid #444;
	box-sizing: border-box;
	border-radius: 0.5em;
	touch-action: none;
	max-width: 60em;
	display: block;
	margin: auto;
	width: 100%;
}
.wer-sign input.wer-valid ~ canvas {
	border-color: #20bf20 !important;
}
.wer-sign input.wer-invalid ~ canvas {
	border-color: #ea4d4d !important;
}
.wer-sign-controls {
	flex-direction: row;
	position: absolute;
	padding: 0.5em;
	display: flex;
	/*opacity: 0.5;*/
	bottom: 100%;
	right: 0;
}/*
.wer-sign:hover .wer-sign-controls {
	opacity: 1;
}*/
.wer-sign-controls > * {
	cursor: pointer;
}
.wer-sign-controls > *:hover {
	transform: scale(1.1);
}
.wer-sign-controls > *:active {
	margin-bottom: -2px;
}

/* SELECT */
.wer-select {
	display: inline-block;
	cursor: pointer;
	color: #4b83fc;
}
.wer-select:hover, .wer-select:hover > * {
	color: #ff6a1e !important;
}

/* POP CONTAINER */
.wer-pop-bg {
	background-color: rgba(60, 60, 150, 0.5);
	transition: opacity 0.5s linear;
	cursor: pointer;
	position: fixed;
	overflow: auto;
	height: 100%;
	width: 100%;
	opacity: 0;
	left: 0;
	top: 0;
}
.wer-pop-bg.show {
	opacity: 1;
}
.wer-pop-bg.wer-pop-wide .wer-pop {
	width: 1500px;
}
.wer-pop {
	transition: 0.5s ease-in-out;
	transition: 0.5s cubic-bezier(.75,.6,.71,1.11);
	transform: translateX(-50%) translateY(-50%);
	background-color: white;
	box-sizing: border-box;
	flex-direction: column;
	position: absolute;
	max-height: 90vh;
	max-width: 90vw;
	cursor: default;
	display: flex;
	width: 1240px;
	left: 50%;
	top: -100%;
}
.wer-pop-confirm .wer-pop {
	text-align: center;
	width: 600px;
}
.wer-pop-bg.show .wer-pop {
	top: 50%;
}
.wer-pop-head {
	border-bottom: 1px solid #d5d5d5;
	padding-bottom: 5px;
	text-align: center;
	font-size: 1.2em;
	padding: 1.25em;
	flex-shrink: 0;
	flex-grow: 0;
	width: 100%;
}
.wer-pop-body {
	background-color: white;
	padding: 0 1.25em;
	min-height: 200px;
	ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 10px;
}
.wer-pop .wer-pop-body {
	overflow: auto;
	flex-shrink: 1;
	flex-grow: 1;
	ms-flex: 1;
	flex: 1;
}
.wer-pop-foot {
	border-top: 1px solid #d5d5d5;
	background-color: white;
	text-align: center;
	padding: 1.25em;
	padding-top: 5px;
	flex-shrink: 0;
	flex-grow: 0;
	width: 100%;
}
.wer-pop-corner-but {
	border-radius: 0.3em;
	position: absolute;
	text-align: center;
	line-height: 1.5em;
	font-weight: bold;
	cursor: pointer;
	font-size: 1em;
	height: 1.5em;
	width: 1.5em;
	color: white;
	right: 0.5em;
	top: 0.5em;
}
.wer-pop-close {
	background-color: #a1abb5;
}
.wer-pop-close:hover {
	background-color: #bbc6d0;
}
.wer-pop-close::before {
	content: 'X';
}
.wer-pop-bg.wer-pop-noclose { cursor: default; }
.wer-pop-noclose .wer-pop-close { display:none; }

/* BODY ONLY POP */
.wer-pop-body-only .wer-pop-head,
.wer-pop-body-only .wer-pop-foot {
	display: none !important;
}

/* INFO POP */
.wer-pop-info .wer-pop {
	width: max-content;
	min-width: 20em;
}
.wer-pop-info .wer-pop .wer-pop-close {
	display: none !important;
}


/* IMAGE POP */
.wer-pop.wer-pop-pic {
	padding: 2em 2em 1em 2em;
	background-color: #444;
	border-radius: 1em;
	width: auto;
}
.wer-pop-pic .wer-but {
	border-radius: 1em;
	font-weight: bold;
}
.wer-pop-pic .wer-pop-body {
	padding: 0;
}
.wer-pop-pic .wer-pop-body img {
	border-radius: 1em;
	width: 100%;
}
.wer-pop-pic .wer-pop-foot {
	border-top: none;
}
.wer-pop-pic .wer-pop-corner-but {
	border-radius: 1em;
	line-height: 2em;
	height: 2em;
	width: 2em;
	right: 1em;
	top: 1em;
}


p.wer-info {
	font-weight: bold;
	text-indent: 1em;
}

.wer-ctw {
	text-align: center;
	width: 100%;
}
.wer-fill {
	width: 100%;
}
.wer-no-hover:hover {
	transform: none !important;
}

.wer-title-m, .wer-title-s, .wer-title-l {
	padding: 0.75em 0.33em;
	font-weight: bold;
	display: block;
	width: 100%;
}
.wer-title-l {
	padding: 0 0 0.6em 0;
	text-align: center;
	font-size: 1.2em;
	display: block;
}
.wer-title-m {
	text-align: center;
	margin-top: 10px;
	color: #2196F3;
}

.wer-bt, .wer-btm {
	border-top: 1px solid #e8e8e8;
	margin-top: 1em;
}
.wer-bb {
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 1em;
}

.wer-btm {
	margin-top: 3em;
}

.wer-ong {
	position: relative;
	padding-top: 2em;
}
.wer-share {
	right: 2.5em;
}
.wer-ong .wer-share {
	right: 0.5em;
}
.wer-mini-label {
	margin: 0 0 -0.05em 0;
	line-height: 1.4em;
	font-size: 0.85em;
	font-weight: 700;
	cursor: default;
	color: #4d4d4d;
	display: block;
	width: 100%;
}
.wer-url-target {
	border: 0.07em solid #cbd8df;
	background-color: #f9f9f9;
	box-sizing: border-box;
	padding: 0.43em 0.86em;
	border-radius: 0.3em;
	margin: 0.3em 0 0 0;
	min-height: 2.4em;
	line-height: 1.4em;
	font-weight: bold;
	font-size: 1em;
	display: block;
	color: #007900;
	width: 100%;
}
.wer-url-target span {
	color: black;
}

/* FORM */
.wer-no-save .wer-form-save,
.wer-no-save .wer-form-delete {
	display: none;
}
.wer-no-save .wer-can-save > div > .wer-form-save {
	display: inline-block !important;
}

/* WOB */
.wer-wob {
	animation: wer-wob 0.5s ease-in-out infinite alternate;
}
@keyframes wer-wob {
	from { transform: rotate(340deg); }
	from { transform: rotate(20deg); }
}

/* COPY TOOL */
.wer-copy-box {
	position: fixed;
	height: 1px;
	width: 1px;
	opacity: 0;
	left: 50%;
	top: 50%;
}

/* SPIN */
@keyframes wer-spin {
	from { transform: rotate(0deg); }
	from { transform: rotate(360deg); }
}

/* CODE DISPLAY */
.wer-code {
	font-family: 'Courier New', monospace;
	border-radius: 0 2em 0 2em;
	background-color: #f5f5f5;
	text-align: left;
	display: block;
	padding: 1em;
	width: 100%;
}
.wer-code li {
	margin-left: 2em;
	cursor: pointer;
}
.wer-code li::marker {
	color: #acacac;
}
.wer-code .wer-code-copy {
	cursor: pointer;
}
.wer-code .wer-code-copy:hover {
	text-decoration: underline;
	transform: scale(1.03);
	display: inline-block;
}

/* TIME PICKER */
.wer-time {
	display: none;
}
.wer-time-row {
	transition: background-color 0.2s;
	margin: 0.3em 0 0 0 !important;
	border: 0.07em solid #cbd8df;
	border-radius: 0.3em;
	flex-direction: row;
	line-height: 1.4em;
	font-size: 1em;
	display: flex;
	width: 100%;
	padding: 0;
}
.wer-time-row select {
	-webkit-appearance: none;
	margin-top: 0 !important;
	box-sizing: border-box;
	padding: 0.43em 0.86em;
	-moz-appearance: none;
	margin: 0 !important;
	appearance: none;
	text-align: left;
	cursor: pointer;
	border: none;
	flex: 1;
}
.wer-time-row select:first-child {
	text-align: right;
}
.wer-time-row select::-ms-expand {
    display: none;
}
.untouched .wer-time-row {
	display: none;
}
.wer-time-empty {
	transition: background-color 0.2s;
	border: 0.07em solid #cbd8df;
	box-sizing: border-box;
	padding: 0.43em 0.86em;
	border-radius: 0.3em;
	line-height: 1.4em;
	text-align: center;
	cursor: pointer;
	display: none;
	width: 100%;
}
.untouched .wer-time-empty {
	display: inline-block;
}

.wer-time-row div {
	text-align: center;
	line-height: 2.4em;
	font-weight: bold;
	width: 1em;
}
.wer-time + label {
	padding-left: 2.2em !important;
}
.wer-time + label::after {
	font: normal normal normal 1em FontAwesome;
	transform: translateY(-50%);
	display: inline-block;
	text-rendering: auto;
	position: absolute;
	font-size: 1.2em;
	content: "\f017";
	cursor: pointer;
	color: #000000;
	opacity: 0.5;
	left: 0.5em;
	top: 46%;
}

/* PIC ZOOM */
.ong-logo {
	margin: 0.5em;
	border-radius: 1em;
	display: block;
	height: 200px;
	width: 200px;
}
.wer-pic-zoom {
	cursor: pointer;
}
.wer-pic-zoom:hover {
	transform: scale(1.05);
}
.wer-pic-zoom:active {
	transform: scale(1.025);
}

/* ONG LIST =============================== */
.wer-lazy-list {
	max-width: 75em;
	margin: 1em auto;
	width: 90%;
}
/* ROW & COL */
.wer-lazy-list .wer-lazy-list-row {
	min-height: 35em;
	display: flex;
	width: 100%;
}
.wer-lazy-list .wer-lazy-list-col {
	/*-webkit-box-shadow: 3px 3px 26px -8px rgba(0,0,0,0.43);
	   -moz-box-shadow: 3px 3px 26px -8px rgba(0,0,0,0.43);
			box-shadow: 3px 3px 26px -8px rgba(0,0,0,0.43); */
	transition: opacity 0.5s ease-in-out;
	flex-direction: column;
	border: 1px solid #ddd;
	border-radius: 0.5em;
	text-align: center;
	max-width: 33.3333%;
	padding: 1.5em;
	ms-flex: 0.333;
	display: flex;
	margin: 1em;
	flex: 0.333;
	opacity: 1;
}
.wer-lazy-list .wer-lazy-list-col-hide {
	opacity: 0;
}
/* RESPONSIVLEKTS */
@media only screen and (max-width : 768px), (orientation: portrait) {
	.wer-lazy-list .wer-lazy-list-row {
		display: block;
	}
	.wer-lazy-list .wer-lazy-list-col {
		margin-right: auto;
		margin-left: auto;
		max-width: 24em;
		display: block;
		width: auto;
	}
}
@media (min-resolution: 150dpi) {
	.wer-lazy-list .wer-lazy-list {
		font-size: 1.5em;
	}
}

/* IMAGE */
.wer-lazy-list .wer-lazy-list-img {
	margin: 0 auto 1em auto;
	display: block;
	height: 150px;
	width: 150px;
	flex-grow: 0;
}

/* DENUMIRE */
.wer-lazy-list .wer-lazy-list-name {
	word-wrap: break-word;
	padding: 0 0 0.5em 0;
	white-space: normal;
	margin: 0 0 0.5em 0;
	text-align: center;
	font-size: 1.4em;
	cursor: pointer;
	color: #3165d5;
	display: block;
	width: 100%;
	height: 4em;
}

.wer-lazy-list .wer-lazy-list-name:hover {
	text-decoration: underline;
}

/* DESCRIERE */
.wer-lazy-list .wer-lazy-list-desc {
	flex: 1;
}
.wer-lazy-list .wer-lazy-list-desc-sandwich {
	word-break: break-word;
	word-wrap: break-word;
	white-space: normal;
	text-align: center;
	position: relative;
	line-height: 1.2em;
	overflow: hidden;
	font-size: 1.1em;
	margin: 0.5em 0;
	height: 6em;
	width: 100%;
	color: #828282;
}
.wer-lazy-list .wer-lazy-list-desc.show .wer-lazy-list-desc-sandwich { height: auto; min-	height: 7em; }
.wer-lazy-list .wer-lazy-list-desc .wer-lazy-list-desc-sandwich::before {
	background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
	position: absolute;
	display: block;
	content: " ";
	height: 2em;
	width: 100%;
	bottom: 0;
	left: 0;
}
.wer-lazy-list .wer-lazy-list-desc.show .wer-lazy-list-desc-sandwich::before {
	display: none;
}

/* DESCRIERE - BUTON */
.wer-lazy-list .wer-lazy-list-desc-expand {
	font-weight: bold;
	cursor: pointer;
	display: block;
	color: #65c3e9;
	padding: 0.5em;
	width: 100%;
}
.wer-lazy-list .wer-lazy-list-desc-expand:hover {
	transform: scale(1.05);
}
.wer-lazy-list .wer-lazy-list-desc-expand:active {
	transform:scale(1.025);
}
.wer-lazy-list .wer-lazy-list-desc-expand::before {
	content: "Mai mult..";
	display: inline;
}
.wer-lazy-list .wer-lazy-list-desc.show .wer-lazy-list-desc-expand::before {
	content: "Mai puțin";
}


/* BUTON DONATIE GENERIC */
.wer-lazy-list .wer-lazy-list-but {
	text-decoration: none !important;
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
	padding: 10px 5px 10px 5px;
	background-color: #fb7614;
	transition: 0.1s linear;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	font-size: 1.1em;
	min-width: 150px;
	cursor: pointer;
	color: white;
	border-radius: 5px;
	border-radius: 5px;
	margin-top: 17px;
}
.wer-lazy-list .wer-lazy-list-but:hover {
	text-decoration: none !important;
	background-color: #ec6400;
	color: white !important;
	transform: scale(1.1);
}
.wer-lazy-list .wer-lazy-list-but:active {
	transform: scale(1.05);
}
.wer-lazy-list .wer-lazy-list-but:visited {
	text-decoration: none !important;
	color: white !important;
}

/* LAZY SCROLL */
.wer-lazyscroll {
	position: relative;
	padding: 10px;
}
.wer-lazyscroll.searching::after {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACIklEQVRYhdXXzW8NURgG8F8tiIUQBNWWBCs2NkSChNBGaKQLRETiRvwJtuKi2lREbG1EREqFhfhsK1iw4N8QKbERHxVKr8U50zvktp07N53Gk5zNM+ed5znvmffMe/jPsAj70It+PMAgruEc9mL+TAhvioI/UZlmjGIAG1PxO+KzF/UKL8Xt1Mt/4RUu4Bi6hFWfQA/eYDw1/y6W5TXQgQ8x8DP60JYhbiUuCpmoYETYnroMHFRN9zBWZfc9gRY88/f2ZDKwS0h1RUh1HpRQxlm8r8dAGz7GyX05xUWhWh/otAbuxImPMKcBAyUhA/+O0lRBW6P4FzQ3IJ4bSbmdmg3xxfiBMSyfYa0lwlYsTJNdwuqHZlgcnkatzjTZG8lyAQaSQ6k3Td6K5KECDByNWv1pcjiSuwsw0K56wk5gKJLtBRjoiFqDafJmJI8UYOBw1BpIkz2RPF+AgW41PsLOSN4vwEDyh9yfJhdgu8bO/yxowW98F9q7wnFGjRIsCs34KrRsm6eauA57Jhl50YSHMq6+bPKONy+SKhvBinoMjAmH1JM46kWT0FlVhB5zW5agtIEKnqM1h/ga1ZIbFdr3TEgMPMa71AsuYXWG+LVCW/4txr4VSjwzEgNloXm4IdRukpHX0cxxHIijhMt4qXoxGcd1Oeo9bSDBBuH+98nkH2j6anYV6+sVTtCKLWrv+1zhl30yitwTrl9XcBo7MS+v8KzgDz8Yu0GXI/qBAAAAAElFTkSuQmCC);
	animation: wer-spin 1s linear infinite reverse;
	background-repeat: no repeat;
	background-position: center;
	left: calc(50% - 16px);
	position: absolute;
	padding: 10px;
	opacity: 0.3;
	content: ' ';
	height: 32px;
	width: 32px;
	top: 6em;
}
.wer-lazyscroll-element {
	transition: opacity 2s ease-out;
	opacity: 1;
}
.wer-lazyscroll-element.hide {
	opacity: 0;
}
.wer-lazyscroll-loadmore {
	color: rgb(92, 147, 225);
	text-align: center;
	font-weight: bold;
	cursor: pointer;
	padding: 1em;
	width: 100%;
}
.wer-lazyscroll.stopped .wer-lazyscroll-loadmore {
	display: none;
}

/* LAZY PIC */
.wer-lazy-pic {
	transition: opacity 0.5s ease-in-out;
	opacity: 0;
}
.wer-lazy-pic.wer-lazy-loaded {
	opacity: 1;
}

/* ANIM */
/* GROW IN CENTERED */
.wer-grow-in-centered {
	-webkit-animation: wer-grow-in-centered 300ms normal ease-in;
	   -moz-animation: wer-grow-in-centered 300ms normal ease-in;
	    -ms-animation: wer-grow-in-centered 300ms normal ease-in;
	     -o-animation: wer-grow-in-centered 300ms normal ease-in;
	        animation: wer-grow-in-centered 300ms normal ease-in;
}
@-webkit-keyframes wer-grow-in-centered { from { transform:translateX(-50%) translateY(-50%) scale(0.01);} to { } }
@-moz-keyframes wer-grow-in-centered {    from { transform:translateX(-50%) translateY(-50%) scale(0.01);} to { } }
@-ms-keyframes wer-grow-in-centered {     from { transform:translateX(-50%) translateY(-50%) scale(0.01);} to { } }
@-o-keyframes wer-grow-in-centered {      from { transform:translateX(-50%) translateY(-50%) scale(0.01);} to { } }
@keyframes wer-grow-in-centered {         from { transform:translateX(-50%) translateY(-50%) scale(0.01);} to { } }

/* FADE OUT */
@-webkit-keyframes wer-fade-out { from {   opacity: 1; } to { opacity: 0; } }
@-moz-keyframes wer-fade-out {    from {   opacity: 1; } to { opacity: 0; } }
@-ms-keyframes wer-fade-out {     from {   opacity: 1; } to { opacity: 0; } }
@-o-keyframes wer-fade-out {      from {   opacity: 1; } to { opacity: 0; } }
@keyframes wer-fade-out {         from {   opacity: 1; } to { opacity: 0; } }

.wer-fade-out {
	-webkit-animation: wer-fade-out 0.3s ease-in-out forwards;
	   -moz-animation: wer-fade-out 0.3s ease-in-out forwards;
	    -ms-animation: wer-fade-out 0.3s ease-in-out forwards;
	     -o-animation: wer-fade-out 0.3s ease-in-out forwards;
	        animation: wer-fade-out 0.3s ease-in-out forwards;
}

.absfill {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.abscenter {
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	left: 50%;
	top: 50%;
}
.fixedfill {
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.fixedcenter {
	transform: translateX(-50%) translateY(-50%);
	position: fixed;
	left: 50%;
	top: 50%;
}
/* TABS */
.wer-tabs {
	transition: opacity 0.3s ease;
	width:100%;
	opacity:0;
}
.wer-tabs.wer-tabs-init {
	opacity:1;
}
ul.wer-tabs-head {
	list-style-type: none;
    display: block;
    background-color: white;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #dbdbdb;
	/* NO SELECT */
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
ul.wer-tabs-head li {
	transition: background-color 0.3s ease;
	border-right: 1px solid #dbdbdb;
	border-left: 1px solid #dbdbdb;
	border-top: 1px solid #dbdbdb;
	display: inline-block;
	color: #979797;
	text-align: center;
	margin: 0 0 0 2px;
	padding: 7px 10px;
	font-size: 13px;
	overflow: hidden;
	background-color: #e8e8e8;
	border-radius: 6px 6px 0 0;
	cursor:pointer;
	vertical-align: bottom;
}
ul.wer-tabs-head li:first-child {
	margin-left: 10px;
}
ul.wer-tabs-head li.active {
	color: black;
	background-color: white;
	padding-bottom: 7px;
	transform: translateY(1px);
}
ul.wer-tabs-head li:hover {
	background-color: white;
}
.wer-tabs-area {
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	width: 100%;
	height: auto;
}
.wer-tabs-content {
	/*position: absolute;*/
	display: none;
	min-height: 90vh;
	padding: 10px 20px;
	width: 100%;
	/*left: 0;
	top: 0;*/
}
.wer-tabs-content.active {
	display:block;
}

/* FIXES */
.dt-button { border: none; }

/* ANIM */
/* FADE IN */
.wer-fadein {   animation: wer-fadein 0.5s linear;
	-webkit-animation: wer-fadein 0.5s linear;
	   -moz-animation: wer-fadein 0.5s linear;
	    -ms-animation: wer-fadein 0.5s linear;
	     -o-animation: wer-fadein 0.5s linear;
			opacity: 1; }
@-webkit-keyframes wer-fadein { from { opacity: 0; } to { opacity: 1; } }
@-moz-keyframes wer-fadein {    from { opacity: 0; } to { opacity: 1; } }
@-ms-keyframes wer-fadein {     from { opacity: 0; } to { opacity: 1; } }
@-o-keyframes wer-fadein {      from { opacity: 0; } to { opacity: 1; } }
@keyframes wer-fadein {         from { opacity: 0; } to { opacity: 1; } }

/* DATATABLES FIX */
.table.compact th, .table.compact td {
	padding: 0.5em 1em;
}
.wer-table-th {
	padding: 0.5em;
}
.wer-table-th::before,
.wer-table-th::after {
	top: 5px !important;
}
.wer-table-content {
	text-overflow: ellipsis;
	box-sizing: border-box;
	padding: 3px 4px 0 4px;
	display: inline-block;
	text-align: inherit;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
	width: 100%;
	margin: 0;
}

td.wer-table-check {
	position: relative;
}
td.wer-table-check::before {
	font: normal normal normal 14px FontAwesome;
	transform: translateY(-50%);
	display: inline-block;
	text-rendering: auto;
	position: absolute;
	font-size: 1.2em;
	content: "\f096";
	cursor: pointer;
	left: 0.2em;
	top: 50%;
}
td.wer-table-check.checked::before {
	content: "\f14a";
}
.wer-table-mastercheck {
	transform: translateY(-50%);
	display: inline-block;
	text-rendering: auto;
	position: absolute;
	font-size: 1.2em;
	content: "\f096";
	cursor: pointer;
	left: 0.2em;
	top: 50%;
}
.wer-table-mastercheck::before {
	font: normal normal normal 14px FontAwesome;
	text-rendering: auto;
	font-size: 1.2em;
	content: "\f096";
	display: block;
}
.wer-table-mastercheck.checked::before {
	content: "\f14a";
}
.wer-table-mastercheck.partial::before {
	content: "\f046";
}
.wer-table-rowcontrols {
	display: inline-block;
	margin-left: 0.5em;
}
.wer-table-rowcontrols.hidden {
	display: none;
}

/* MOVE ICON */
.wer-order .wer-table-content .wer-order-drag {
	line-height: 1.5em;
	margin-left: 1.3em;
	float: left;
}

/* WER TABLE CUSTOM */
.wer-table-content select {
	background-color: transparent;
	border: none;
	width: 100%;
}

/* WER-CHECK */
.wer-check {
	position: relative;
	padding-left: 1.7em;
	cursor: pointer;
}
.wer-check::before {
	font: normal normal normal 14px FontAwesome;
	transform: translateY(-50%);
	display: inline-block;
	text-rendering: auto;
	position: absolute;
	font-size: 1.2em;
	content: "\f096";
	cursor: pointer;
	left: 0.2em;
	top: 50%;
}
.wer-check.checked::before {
	content: "\f14a";
}
.wer-check:hover::before {
	transform: translateY(-50%) scale(1.1);
}
.wer-check:active::before {
	transform: translateY(-50%) scale(1.05);
}
.wer-check.disabled.checked::before,
.wer-check.disabled::before {
	color: #b3b3b3 !important;
}

/* GRAY EMPTY */
.wer-gray-empty option {
	color: black;
}
.wer-gray-empty.empty,
.wer-gray-empty option[value=""] {
	color: #8f8f8f;
}
td.wer-table-actions .wer-table-content {
	justify-content: space-evenly;
	flex-direction: row;
	display: flex;
}
td.wer-table-actions .fa-copy {
	color: #0033cc;
}
td.wer-table-actions .fa-times {
	color: #cc0000;
}
td .btn {
	text-overflow: ellipsis;
	overflow: hidden;
}

/* ICON SPREADOUT */
.wer-iconset {
	justify-content: space-evenly;
	flex-direction: row;
	display: flex;
}

/* FILES */
.wer-files {
	display: block;
	width: 100%;
}

/* MINITABLE */
.wer-minit {
	border-collapse: collapse;
	width: 100%;
	
}
.wer-minit thead {
	background-color: #f0f0f0;
	font-weight: bold;
}
.wer-minit th {
	padding: 6px 12px;
	text-align: left;
}
.wer-minit th, .wer-minit td {
	border: 1px solid #eaeaea;
}
.wer-minit tbody tr:nth-child(2n) {
	background-color: #fafafa;
}
.wer-minit td input {
	background-color: transparent;
	padding: 4px 12px;
	text-align: left;
	border: none;
	width: 100%;
}


/* ORDERABLE */
.wer-orderable-placeholder {
	display: none;
}
.wer-order {
	position: relative;
}
/*
.wer-order:hover::before {
	font: normal normal normal 1em/1 FontAwesome;
	transform: translateX(-50%);
	padding: 0.72em 0 0 0;
	text-rendering: auto;
	padding: 0 15px 0 0;
	line-height: 1.4em;
	position: absolute;
	font-size: 1.43em;
	content: "\f047";
	display: block;
	color: #03a9f3;
	left: 0;
	top: 0;
}*/
/*
.wer-order input, .wer-order textarea {
	cursor: move;
}
*/
.wer-order-current {
	border: 2px dotted #729efd !important;
}
.wer-order-current td {
	border-top: 2px dotted #729efd !important;
	border-bottom: 2px dotted #729efd !important;
}
.wer-order-current td:first-child {
	border-left: 2px dotted #729efd !important;
}
.wer-order-current td:last-child {
	border-right: 2px dotted #729efd !important;
}
.wer-order-drag {
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
	cursor: grab !important;
	color: #b9bdbf;
}
.wer-order-moving * {
	cursor: grabbing !important;
}
.wer-order-drag:hover {
	color: #43d6b2;
}

/* WER HIDE */
.wer-hide {
	display: none !important;
}

/* HIDABLE CHILDREN */
.wer-hide-children .wer-hide-child {
	display: none !important;
}

/* SUMMERNOTE */
.note-editable {
	font-family: 'Helvetica';
}
.note-editing-area {
	min-height: 150px !important;
}

/* NOTIFS */
.wer-notif-unseen {
	background-color: #eeffb1;
}
#notifanim.hidden {
	display: none;
}
.wer-notif-anim, .wer-notif-anim > * {
	animation: wernotifanim 1s linear infinite alternate;
}
@keyframes wernotifanim {
	from { color: #e46a76; }
	to { color: #eb939c; }
}

/* ANIMATION */
.wer-opacity-anim {
	animation: weropacity 1s linear infinite alternate;
}
@keyframes weropacity {
	from { opacity: 1; }
	to { opacity: 0; }
}


/* FLIPBOOK */
.wer-screener .wer-form {
	-webkit-box-shadow: 2px 2px 18px -3px rgba(0,0,0,0.19);
	-moz-box-shadow: 2px 2px 18px -3px rgba(0,0,0,0.19);
	box-shadow: 2px 2px 18px -3px rgba(0,0,0,0.19);
	transform: translateX(-50%) translateY(-50%);
	background-color: white;
	flex-direction: column;
	position: absolute;
	border-radius: 1em;
	padding: 1.25em;
	max-height: 90vh;
	max-width: 90vw;
	cursor: default;
	display: flex;
	width: 800px;
	left: 50%;
	top: 50%;
}
.wer-screener .wer-form .wer-pop-body {
	overflow: auto;
}
.wer-screener {
	position: relative;
	overflow: hidden;
	display: block;
}
.wer-screen {
	position: absolute;
	display: none;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.wer-screen.show {
	transition: 0.5s ease-in-out;
	display: block;
}
.wer-screen > .wer-screener-back {
	position: absolute;
	/*font-weight: bold;
	cursor: pointer;*/
	left: 10px;
	top: 10px;
}
/*
.wer-screener-back:hover {
	transform: scale(1.1);
}*/
/* JSON CHAT */
.wer-json-chat {
	border-radius: 1em 1em 0.5em 0.5em;
	border: 6px solid #c5e0e4;
	flex-direction: column;
	max-height: 30em;
	min-height: 7em;
	display: flex;
	width: 100%;
}
.wer-json-chat-box {
	border-radius: 1em 1em 0 0;
	background-color: #eff7f8;/*#f0f0f0;*/
	overflow: auto;
	display: block;
	padding: 1em;
	width: 100%;
	flex: 1;
}
.wer-json-chat-msg {
	background-color: #f8f8f8;
	justify-content: stretch;
	flex-direction: row;
	border-radius: 1em;
	margin-bottom: 1em;
	position: relative;
	display: flex;
	width: 100%;
}
.wer-json-chat-del {
	position: absolute;
	font-weight: bold;
	cursor: pointer;
	right: 0.8em;
	color: red;
	top: 0.25em;
}
.wer-json-chat-del:hover {
	transform: scale(1.1);
}
.wer-json-chat-del:active {
	transform: scale(0.5);
}
.wer-json-chat-source {
	background-color: #20a291;
	flex-direction: column;
	border-radius: 1em;
	color: #ffffff;
	padding: 0.5em;
	display: flex;
	width: 12em;
}
.wer-json-chat-msg.me .wer-json-chat-source {
	background-color: #5bb753;
}
.wer-json-chat-user {
	text-overflow: ellipsis;
	padding-bototm: 0.5em;
	font-weight: bold;
	text-align: center;
	overflow: hidden;
	width: 100%;
	flex: 1;
}
.wer-json-chat-time {
	text-align: center;
	width: 100%;
}


.wer-json-chat-text {
	background-color: #ffffff;
	border-radius: 1em;
	padding: 0.5em 1em;
	text-align: left;
	flex: 1;
}
.wer-json-chat-foot {
	border-radius: 0 0 0.5em 0.5em;
	border-top: 5px solid #c5e0e4;
	justify-content: stretch;
	flex-direction: row;
	display: flex;
	width: 100%;
	flex: 0;
}
.wer-json-chat-foot textarea {
	padding: 0.4em 1em;
	outline: none;
	border: none;
	flex: 1;
}
.wer-json-chat-foot textarea:focus-visible {
	outline: none !important;
}
.wer-json-chat-foot .wer-but {
	padding: 0.5em 1em 0.4em 1em;
	display: flex !important;
	justify-content: center;
	flex-direction: column;
	font-weight: bold;
	border-radius: 0;
	line-height: 1em;
	padding: 0;
	flex: 0;
}

/* CALENDAR */
.wer-calendar-conferinta {
	background-color: #bf9a06ba !important;
}
.wer-calendar-conferinta:hover {
	background-color: #d5ad10ba !important;
}
.wer-calendar-hide-conferinte .wer-calendar-conferinta {
	display: none !important;
}

/* TOGGLES */
.wer-toggle-next {
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
	     -moz-user-select: none;
	      -ms-user-select: none;
	          user-select: none;
	position: relative;
	cursor: pointer;
}
.wer-toggle-next::after {
	font: normal normal normal 1.5em FontAwesome;
	transform: translateY(-50%);
	position: absolute;
	content: "\f0d7";
	color: #000000;
	right: 0.45em;
	top: 50%;
}
.wer-toggle-next.wer-toggle-off::after {
	content: "\f0da";
}
.wer-toggle-body.wer-toggle-off {
	display: none;
}

/* DATEPICKER */
.wer-dp-tl, .wer-dp-tr, .wer-dp-bl, .wer-dp-br, .wer-dp-t, .wer-dp-b {
	text-shadow: 0.1em 0.1em 0.1em #cacaca;
	position: absolute;
	text-align: center;
	font-size: 1.05em;
	line-height: 3em;
	cursor: pointer;
	height: 3em;
}
.wer-dp-tr { width: 50%; top: 0; right: 0; }
.wer-dp-tl { width: 50%; top: 0; left: 0; }
.wer-dp-br { width: 50%; bottom: 0; right: 0; }
.wer-dp-bl { width: 50%; bottom: 0; left: 0; }
.wer-dp-t  { width: 100%; left: 0; top: 0; }
.wer-dp-b  { width: 100%; left: 0; bottom: 0; }
.wer-dp-tl:hover, .wer-dp-tr:hover, .wer-dp-bl:hover, .wer-dp-br:hover, .wer-dp-t:hover, .wer-dp-b:hover { font-weight: bold; }
.wer-dp-setnow { color: #2a68b9; }
.wer-dp-pop {
	box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.1);
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
	border-radius: 0 1em 0 1em;
	background-color: #ffffff;
	border: 4px solid #95b0d3;
	height: max-content;
	max-height: 100%;
	padding: 0 0.5em;
	max-width: 100%;
	position: fixed;
	font-size: 1em;
	width: 15em;
	left: 50%;
	top: 40%;
}
.wer-dp-panel {
	height: max-content;
	position: relative;
	max-height: 100vh;
	padding: 3em 0;
	display: none;
	width: 100%;
}
.wer-dp-pop table {
	border-collapse: collapse;
	border: none;
	width: 100%;
	bottom: 3em;
}
.wer-dp-pop table th, .wer-dp-pop table td {
	vertical-align: middle;
	font-family: Arial;
	text-align: center;
	font-size: 1em;
	color: #000000;
}
.wer-dp-pop table th {
	text-shadow: 0.1em 0.1em 0.1em #cacaca;
	font-weight: bold;
	width: 14.27%;
}
.wer-dp-pop table td { cursor: pointer; }
.wer-dp-pop table td:hover { background-color: #ffd6a0; }
.wer-dp-pop table td.active { background-color: #c8e5ff !important; }
.wer-dp-pop table td.active:hover { background-color: #e3f2ff; }
.wer-dp-pop table td.now { background-color: #eeeeee; text-decoration: underline; }
.wer-dp-pop table td.out { color: #aaaaaa; }

/* DATEPICKER - INPUT ICON */
.wer-datepicker + label, .wer-dateicon + label {
	padding-left: 2.2em !important;
}
.wer-datepicker + label::after, .wer-dateicon + label::after {
	font: normal normal normal 1em FontAwesome;
	transform: translateY(-50%);
	display: inline-block;
	text-rendering: auto;
	position: absolute;
	font-size: 1.2em;
	content: "\f073";
	cursor: pointer;
	color: #000000;
	opacity: 0.5;
	left: 0.5em;
	top: 42%;
}

/* WATCH */
.wer-watch {
	justify-content: center;
	font-family: 'Consolas';
	flex-direction: row;
	align-items: center;
	font-size: 1em;
	display: flex;
	width: 100%;
}
.wer-watch-col {
	flex-direction: column;
	padding: 0 0.1em;
	display: flex;
	font: inherit;
	flex: 1;
}
.wer-watch-col > div {
	text-align: center;
	padding: 0.2em 0;
	cursor: pointer;
	color: #2a68b9;
}
.wer-watch-col > div:hover {
	transform: scale(1.1);
}
.wer-watch input {
	background-color: #2a68b9;
	font-family: inherit;
	line-height: 1.5em;
	text-align: center;
	cursor: pointer;
	font-size: 1em;
	color: #ffffff;
	height: 1.5em;
	border: none;
	width: 100%;
}
.wer-watch input::-moz-selection { background: #628ec8; }
.wer-watch input::selection { background: #628ec8; }
.wer-watch-spacer {
	font-family: Arial;
	text-align: center;
	font-weight: bold;
	font-size: 1em;
	flex-shrink: 0;
	color: #2a68b9;
	width: 0.8em;
}

/* LISTER */
.wer-lister-pag {
	display: inline-block;
	width: 10em;
}

/* SPINNER */
.wer-spinner {
	z-index: 9999999999;
	position: fixed;
	display: none;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.wer-loading .wer-spinner {
	display: block;
}
.wer-spinner div {
	z-index: 9999999999;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}
.wer-spinner div img {
	opacity: 0.3;
	-webkit-animation: wer-spinning-anim 1s linear infinite;
	   -moz-animation: wer-spinning-anim 1s linear infinite;
	    -ms-animation: wer-spinning-anim 1s linear infinite;
	     -o-animation: wer-spinning-anim 1s linear infinite;
			animation: wer-spinning-anim 1s linear infinite;
}
@keyframes wer-spinning-anim {
	from {
		-webkit-transform: rotate(0deg);
		     -o-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		     -o-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

/* >>======== TT ========= */
/* LAYOUT ============================== */
/* FIXED BODY */
.tt-body {
	padding-right: 0 !important;
	padding-left: 0 !important;
	margin: 0 !important;
	position: relative;
	min-height: 100vh;
	width: 100%;
	left: 0;
	top: 0;
}
.tt-body, .tt-body * {
	box-sizing: border-box;
}
.tt-main {
	position: absolute;
	min-height: 100vh;
	max-width: 100%;
	display: block;
	width: 100%;
	z-index: 0;
	margin: 0;
}
.tt-content {
	padding-bottom: 3em;
	height: max-content;
	position: absolute;
	min-height: 100%;
	width: 100%;
}

/* HEAD */
.tt-head {
	transition: height 0.2s ease-in-out;
	position: fixed;
	z-index: 20;
	width: 100%;
	left: 0;
	top: 0;
}
.tt-head > * {
	justify-content: center;
	align-items: center;
	flex-direction: row;
	position: absolute;
	width: max-content;
	padding: 0 1.5em;
	display: flex;
	height: 100%;
	top: 0;
}

/* HEAD MENU TOGGLE BUTTON */
.tt-head-menu.tt-ico {
	font-size: 2em;
	display: none;
}

/* HEAD-LOGO */
.tt-head-logo {
	overflow: hidden;
	left: 0;
}
.tt-head-logo-content {
	self-align: center;
	font-weight: bold;
	text-align: left;
	line-height: 1em;
	cursor: pointer;
	font-size: 2em;
	height: 1em;
}

/* HEAD GROUPS */
.tt-head-groups {
	align-items: stretch;
	padding: 0 0.5em;
	right: 0;
	top: 0;
}
.tt-head-group {
	justify-content: center;
	align-items: center;
	flex-direction: row;
	position: relative;
	width: max-content;
	padding: 0 1.5em;
	cursor: pointer;
	display: flex;
	height: 100%;
	top: 0;
}
.tt-head-group > .tt-ico {
	display: inline-block;
	margin: 0 0.5em 0 0;
	font-size: 1em;
}
.tt-head-group > .tt-submenu {
	width: max-content;
	min-width: 100%;
	left: unset;
	right: 0;
}
.tt-head-group > .tt-submenu > li {
	min-width: unset;
}
.tt-head-group li > * {
	padding: 1em 0.5em;
	/* text-align: left; */
	font-size: 1em;
}
.tt-head-group li .tt-ico {
	margin-right: 0.3em;
}

/* PAGE TITLE */
.tt-page-title {
	padding: 1em 1.5em 0.5em 1.5em;
	display: block;
	width: 100%;
	margin: 0;
}

/* HEAD RESPONSIVE - DESKTOP */
@media screen and (min-width: 993px) {
	.tt-head-hidden .tt-head {
		overflow: hidden;
		height: 0px;
	}
}
/* HEAD RESPONSIVE - MOBILE */
@media screen and (max-width: 992px) {
	.tt-head .tt-head-logo {
		width: 6em;
	}
	.tt-head-menu.tt-ico {
		display: block;
	}
	.tt-head-logo > a {
		display: none;
	}
}

/* FOOTER */
.tt-foot {
	padding: 0 0 0 0.8em;
	position: absolute;
	line-height: 3em;
	font-size: 1.2em;
	text-align: left;
	overflow: hidden;
	height: 3em;
	width: 100%;
	bottom: 0;
	left: 0;
}
.ttf-main {
	font-family: 'Helvetica';
}

/* MENUS */
.tt-menu-toggle {
	margin-right: 1em;
}
.tt-menu {
	position: fixed;
	display: flex;
	z-index: 19;
	padding: 0;
	margin: 0;
}
.tt-menu > li {
	width: max-content;
	position: relative;
	list-style: none;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0 1em;
}
.tt-menu > li.active > .tt-menu-title { font-weight: bold; }
.tt-menu-title {
	padding: 1em 2em 1em 2em;
	text-decoration: none;
	position: relative;
	display: block;
	color: inherit;
}
.tt-menu > li > .tt-menu-title {
	padding: 1em 1em 1em 2em;
}

/* MENU ARROWS */
.tt-menu-branch > .tt-menu-title::after {
	transform: translateX(-50%) translateY(-50%);
	font: normal normal normal 1em FontAwesome;
	transition: transform 0.2s ease-in-out;
	position: absolute;
	font-weight: bold;
	font-size: 1em;
	content: "\f0da";
	display: none;
	right: 1em;
	top: 50%;
}
.tt-menu-branch.open > .tt-menu-title::after {
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

/* SUBMENUS */
.tt-submenu {
	transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
	background-color: #f9f9f9;
	flex-direction: column;
	flex-shrink: 0;
	padding: 0;
	margin: 0;
	left: 0;
	
	height: min-content;
	overflow: hidden;
	display: flex;
	max-height: 0;
	opacity: 0;
}

.tt-submenu > li {
	min-width: max-content;
	position: relative;
	list-style: none;
	padding: 0 0.5em;
	cursor: pointer;
	width: 100%;
}
.tt-menu li .tt-ico {
	transform: translateY(-50%);
	position: absolute;
	width: 1.5em;
	top: 50%;
	left: 0;
}
.tt-submenu li .tt-ico {
	width: 1.5em;
	left: 0;
}

/* MENU BARS */
.tt-menu li.tt-menu-bar {
	align-self: stretch;
	position: relative;
	padding: 0;
}

/* MENU RESPONSIVE - DESKTOP */
@media screen and (min-width: 993px) {
	/* CONTENT */
	.tt-menu-top .tt-main {
		min-height: calc(100vh - 7.5em);
		margin-top: 7.5em;
	}
	.tt-menu-left .tt-main { margin: 0 0 0 13em; }
	.tt-menu-right .tt-main { margin: 0 13em 0 0; }
	.tt-menu-left .tt-main,
	.tt-menu-right .tt-main,
	.tt-menu-bottom .tt-main {
		min-height: calc(100vh - 4.3em);
		margin-top: 4.3em;
	}
	.tt-menu-left .tt-main,
	.tt-menu-right .tt-main {
		width: calc(100% - 13em);
	}
	.tt-menu-bottom .tt-content {
		padding-bottom: 3em;
	}
	.tt-menu-bottom .tt-main {
		min-height: calc(100vh - 7.5em);
		margin-bottom: 3em;
	}
	.tt-menu-bottom .tt-foot {
		display: none;
	}
	
	/* MENU - TOP - BOTTOM */
	.tt-menu-top .tt-menu, .tt-menu-left .tt-menu, .tt-menu-right .tt-menu {
		top: 4.3em;
	}
	.tt-menu-top .tt-menu, .tt-menu-bottom .tt-menu {
		transition: top 0.2s ease-in-out;
		padding-left: 0.5em;
		width: 100%;
	}
	.tt-menu-left .tt-menu, .tt-menu-right .tt-menu {
		transition: top 0.2s ease-in-out, height 0.2s ease-in-out;
		height: calc(100% - 4.3em);
	}
	.tt-head-hidden.tt-menu-top .tt-menu,
	.tt-head-hidden.tt-menu-left .tt-menu,
	.tt-head-hidden.tt-menu-right .tt-menu {
		top: 0;
	}
	.tt-head-hidden.tt-menu-left .tt-menu,
	.tt-head-hidden.tt-menu-right .tt-menu {
		height: 100%;
	}
	.tt-menu-bottom .tt-menu {
		bottom: 0;
	}
	.tt-menu-top .tt-menu,
	.tt-menu-bottom .tt-menu {
		flex-direction: row;
		height: 3em;
		left: 0;
	}
	.tt-menu-top .tt-menu .tt-scroll-x, .tt-menu-bottom .tt-menu .tt-scroll-x,
	.tt-menu-top .tt-menu .tt-scroll-y, .tt-menu-bottom .tt-menu .tt-scroll-y {
		display: none !important;
	}
	.tt-menu > li:last-child .tt-submenu { left: unset; right: 0; }
	.tt-menu-top .tt-menu .tt-submenu,
	.tt-menu-bottom .tt-menu .tt-submenu,
	.tt-has-submenu .tt-submenu	{
		position: absolute;
		z-index: 20;
	}
	.tt-menu-top .tt-menu > li:hover .tt-submenu,
	.tt-menu-bottom .tt-menu > li:hover .tt-submenu {
		max-height: 100vh;
		opacity: 1;
	}
	.tt-menu-top .tt-menu .tt-submenu,
	.tt-has-submenu .tt-submenu	{
		box-shadow: 0px 5px 12px -3px rgba(0, 0, 0, 0.3); /* 0px 6px 10px -5px rgba(0, 0, 0, 0.23); */
		/*border-radius: 0 0 1em 1em;*/
		top: 100%;
	}
	.tt-menu-bottom .tt-menu .tt-submenu {
		box-shadow: 0px -5px 12px -3px rgba(0, 0, 0, 0.3); /* 0px -6px 10px -5px rgba(0, 0, 0, 0.23); */
		/*border-radius: 1em 1em 0 0;*/
		bottom: 100%;
	}
	.tt-menu-top .tt-menu-bar, .tt-menu-bottom .tt-menu-bar {
		margin: 0 0 0 -0.5em;
		min-width: 2px;
		width: 2px;
	}

	/* MENU - LEFT - RIGHT */
	.tt-menu-left .tt-menu { left: 0; }
	.tt-menu-right .tt-menu { right: 0; }
	.tt-menu-left .tt-menu,
	.tt-menu-right .tt-menu {
		flex-direction: column;
		padding-top: 1em;
		overflow: hidden;
		width: 13em;
		height: 100%;
	}
	.tt-menu-left .tt-menu > li,
	.tt-menu-right .tt-menu > li {
		overflow: hidden;
		width: 100%;
	}
	.tt-menu-left .tt-menu-branch > .tt-menu-title::after,
	.tt-menu-right .tt-menu-branch > .tt-menu-title::after {
		display: block;
	}
	.tt-menu-left .tt-menu > li > .tt-menu-title, .tt-menu-right .tt-menu > li > .tt-menu-title {
		padding: 1em 2em 1em 2em;
	}
	
	.tt-has-submenu:hover .tt-submenu,
	.tt-menu-left .tt-menu > li.open .tt-submenu,
	.tt-menu-right .tt-menu > li.open .tt-submenu {
		max-height: 100vh;
		opacity: 1;
	}
	.tt-menu-left .tt-menu .tt-submenu,
	.tt-menu-right .tt-menu .tt-submenu {
		position: relative;
	}
	.tt-menu-left .tt-menu-bar,
	.tt-menu-right .tt-menu-bar {
		min-height: 1px;
		height: 1px;
		margin: 0;
	}
	/* SCROLL FIX RIGHT //// */
}

/* MENU RESPONSIVE - MOBILE */
@media screen and (max-width: 992px) {
	/* CONTENT */
	.tt-main {
		min-height: calc(100vh - 4.3em);
		margin-top: 4.3em;
	}
	.tt-menu-float .tt-main {
		width: calc(100% - 13em);
	}
	/* MENU - FLOATER */
	.tt-menu {
		position: fixed !important;
		height: calc(100% - 4.3em);
		flex-direction: column;
		padding-top: 1em;
		overflow: hidden;
		display: none;
		width: 13em;
		top: 4.3em;
		left: 0;
	}
	.tt-menu.tt-menu-float {
		display: flex;
		z-index: 999;
	}
	.tt-menu > li {
		overflow: hidden;
		width: 100%;
	}
	.tt-menu > li.active {
		background-color: #f9f9f9;
	}
	.tt-has-submenu:hover .tt-submenu,
	.tt-menu-top .tt-menu > li:hover .tt-submenu,
	.tt-menu-bottom .tt-menu > li:hover .tt-submenu,
	.tt-menu > li.open .tt-submenu {
		max-height: 100vh;
		opacity: 1;
	}
	.tt-has-submenu .tt-submenu {
		box-shadow: 1px 10px 5px rgba(0, 0, 0, 0.1);
		position: absolute;
		z-index: 11;
		top: 100%;
	}
	.tt-menu .tt-submenu {
		position: relative;
	}
	.tt-menu-bar {
		min-height: 1px;
		height: 1px;
		margin: 0;
	}
	.tt-menu-branch > .tt-menu-title::after {
		display: block;
	}
	.tt-menu > li > .tt-menu-title {
		padding: 1em 2em 1em 2em;
	}
}

/* STANDARD CLASSES ==================== */
/* BOXES */
.tt-box-row {
	padding: 0 0.75em 0 0.75em;
	flex-direction: row;
	flex-wrap: wrap;
	display: flex;
	width: 100%;
}
.tt-box-row:first-child { padding-top: 1.5em; }
.tt-box-row:last-child { padding-bottom: 1.5em; }
.tt-box {
	padding: 0.75em 0 0.75em 0;
	width: 100%;
	margin: 0;
}
.tt-box:first-child { padding-top: 1.5em; }
.tt-box:last-child { padding-bottom: 1.5em; }
.tt-box-row > .tt-box, .tt-box-row > .tt-box:first-child, .tt-box-row > .tt-box:last-child {
	min-width: 25em;
	padding: 0.75em;
}
.tt-box-body {
	box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.04);
	background-color: #ffffff;
	padding: 1.5em 1em;
	width: 100%;
}

/* BUTTONS */
.tt-but, .tt-but-sm {
	vertical-align: middle;
	display: inline-block;
	text-align: center;
	position: relative;
	font-weight: bold;
	overflow: hidden;
	cursor: pointer;
	/* NO SELECT */
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.tt-but.tt-lg {
	display: inline-flex;
	align-items: center;
}
.tt-but {
	padding: 0.375em 1em;
	margin: 0.3em 0.5em;
	font-size: 0.875em;
	line-height: 1.5;
}
.tt-high-dpi .tt-but {
	font-size: 1em;
}
.tt-but-sm {
	padding: 0.25em 0.5em;
	font-size: 0.76563em;
	line-height: 1.5;
	margin: 0 0.25em;
}
.tt-but:active, .tt-but-sm:active {
	transform: translateY(1px);
}
.tt-but .tt-ico, .tt-but-sm .tt-ico {
	margin-right: 0.3em;
}

/* ICONS */
.tt-ico {
	vertical-align: text-top;
	display: inline-block;
	position: relative;
	height: 1em;
	width: 1em;
}
.tt-ico::before {
	transform: translateX(-50%) translateY(-50%);
	font: normal normal normal 1em FontAwesome;
	display: inline-block;
	text-rendering: auto;
	position: absolute;
	speak: none;
	left: 50%;
	top: 50%;
}
.tt-ico.tt-ti::before {
	font: normal normal normal 1em themify;
}

.tt-ico-before::before {
	font: normal normal normal 1em FontAwesome;
	transform: translateY(-50%);
	margin-right: 0.5em;
	position: absolute;
	right: 100%;
	top: 50%;
}
.tt-ico-after::after {
	font: normal normal normal 1em FontAwesome;
	transform: translateY(-50%);
	margin-right: 0.5em;
	position: absolute;
	right: 100%;
	top: 50%;
}

/* CLICKABLE */
.tt-click {
	transition: transform 0.1s ease-in-out;
	cursor: pointer;
}
.tt-click:hover {
	transform: scale(1.05);
}
.tt-click:active {
	transform: translateY(1px) scale(1.05);
}
.tt-click-before::before {
	transition: transform 0.1s ease-in-out;
	cursor: pointer;
}
.tt-click-before:hover::before {
	transform: translateX(-50%) translateY(-50%) scale(1.2);
}
.tt-click-before:active::before {
	transform: translateX(-50%) translateY(-48%) scale(1.2);
}

/* FLEX LAYOUT - ROWS */
.tt-row, .tt-row-center {
	flex-direction: row;
	flex-wrap: wrap;
	display: flex;
	min-width: 100%;
}
.tf-wrap {
	flex-wrap: wrap;
}
.tt-row-center {
	justify-content: center !important;
}
.tt-col, .tt-col-1,.tt-col-2,.tt-col-3,.tt-col-4,.tt-col-5,.tt-col-6,.tt-col-7,.tt-col-8,.tt-col-9,.tt-col-10,.tt-col-11,.tt-col-12 {
	min-width: min-content;
	flex: 1;
}
.tt-col-1 { width: 8.33333%; }
.tt-col-2 { width: 16.66667%; }
.tt-col-3 { width: 25%; }
.tt-col-4 { width: 33.33333%; }
.tt-col-5 { width: 41.66667%; }
.tt-col-6 { width: 50%; }
.tt-col-7 { width: 58.33333%; }
.tt-col-8 { width: 66.66667%; }
.tt-col-9 { width: 75%; }
.tt-col-10 { width: 83.33333%; }
.tt-col-11 { width: 91.66667%; }
.tt-col-12 { width: 100%; }

/* FLEX LAYOUT - GAPPED */
.tt-gap1 { margin: -0.25em; }

.tt-gap2 { margin: -0.5em; }
.tt-gap3 { margin: -0.75em; }
.tt-gap4 { margin: -1em; }
.tt-gap1 > .tt-col, .tt-gap1 > .tt-col-1,.tt-gap1 > .tt-col-2,.tt-gap1 > .tt-col-3,.tt-gap1 > .tt-col-4,.tt-gap1 > .tt-col-5,.tt-gap1 > .tt-col-6,.tt-gap1 > .tt-col-7,.tt-gap1 > .tt-col-8,.tt-gap1 > .tt-col-9,.tt-gap1 > .tt-col-10,.tt-gap1 > .tt-col-11,.tt-gap1 > .tt-col-12 {
		margin: 0.25em; }
.tt-gap2 > .tt-col, .tt-gap2 > .tt-col-1,.tt-gap2 > .tt-col-2,.tt-gap2 > .tt-col-3,.tt-gap2 > .tt-col-4,.tt-gap2 > .tt-col-5,.tt-gap2 > .tt-col-6,.tt-gap2 > .tt-col-7,.tt-gap2 > .tt-col-8,.tt-gap2 > .tt-col-9,.tt-gap2 > .tt-col-10,.tt-gap2 > .tt-col-11,.tt-gap2 > .tt-col-12 {
		margin: 0.5em; }
.tt-gap3 > .tt-col, .tt-gap3 > .tt-col-1,.tt-gap3 > .tt-col-2,.tt-gap3 > .tt-col-3,.tt-gap3 > .tt-col-4,.tt-gap3 > .tt-col-5,.tt-gap3 > .tt-col-6,.tt-gap3 > .tt-col-7,.tt-gap3 > .tt-col-8,.tt-gap3 > .tt-col-9,.tt-gap3 > .tt-col-10,.tt-gap3 > .tt-col-11,.tt-gap3 > .tt-col-12 {
		margin: 0.75em; }
.tt-gap4 > .tt-col, .tt-gap4 > .tt-col-1,.tt-gap4 > .tt-col-2,.tt-gap4 > .tt-col-3,.tt-gap4 > .tt-col-4,.tt-gap4 > .tt-col-5,.tt-gap4 > .tt-col-6,.tt-gap4 > .tt-col-7,.tt-gap4 > .tt-col-8,.tt-gap4 > .tt-col-9,.tt-gap4 > .tt-col-10,.tt-gap4 > .tt-col-11,.tt-gap4 > .tt-col-12 {
		margin: 1em; }

/* FLEX LAYOUT - COLUMNS */
.tt-cols {
	flex-direction: column;
	display: flex;
	width: 100%;
}

/* FLEX LAYOUT - STRETCHABLE */
.tt-stretch, .tt-stretch-max, .tt-stretch-min {
	flex: 1;
}
.tt-row .tt-stretch-min { min-width: max-content; }
.tt-row .tt-stretch-max { max-width: max-content; }
.tt-cols .tt-stretch-min { min-height: max-content; }
.tt-cols .tt-stretch-max { max-height: max-content; }

/* FLEX HELPERS */
.tt-self-center {
	align-self: center;
}

/* FLEX - ADVANCED */
.tf-centerbox {
	justify-content: center;
	align-items: center;
	display: flex;
	flex: 1;
}
.tf-col { flex-direction: column; }
.tf-row { flex-direction: row; }
.tf-col, .tf-row {
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	display: flex;
}
.tf-col.stretch, .tf-row.stretch {
	align-items: stretch;
}
.tf-col.flex-start, .tf-row.flex-start {
	align-items: flex-start;
}
.tf-col.flex-end, .tf-row.flex-end {
	align-items: flex-end;
}
.tf-col.tf-js, .tf-row.tf-js,
.tf-col.tf-j-stretch, .tf-row.tf-j-stretch {
	justify-content: stretch;
}
.tf-col.tf-je, .tf-row.tf-je,
.tf-col.tf-j-even, .tf-row.tf-j-even {
	justify-content: space-evenly;
}
.tf-col.tf-jc, .tf-row.tf-jc,
.tf-col.tf-j-center, .tf-row.tf-j-center {
	justify-content: center;
}
.tf-j-end {
	justify-content: flex-end !important;
}

.tf-col.tf-nowrap, .tf-row.tf-nowrap {
	flex-wrap: nowrap;
}

.tf-stretch { align-self: stretch; }
.tf-center { align-self: center; }
.tf-start { align-self: flex-start; }
.tf-end { align-self: flex-end; }

.tf-js-stretch { justify-self: stretch; }
.tf-js-center { justify-self: center; }
.tf-js-start { justify-self: flex-start; }
.tf-js-end { justify-self: flex-end; }

.tf-grow { flex: 1; }
.tf-grow-max { flex: 1; max-width: max-content; }

.tf-0  { flex: 0 0 auto !important; }
.tf-1  { flex-grow:  1; flex-base:   8.3333%; }
.tf-2  { flex-grow:  2; flex-base:  16.6667%; }
.tf-3  { flex-grow:  3; flex-base:  25.0000%; }
.tf-4  { flex-grow:  4; flex-base:  33.3333%; }
.tf-5  { flex-grow:  5; flex-base:  41.6667%; }
.tf-6  { flex-grow:  6; flex-base:  50.0000%; }
.tf-7  { flex-grow:  7; flex-base:  58.3333%; }
.tf-8  { flex-grow:  8; flex-base:  66.6667%; }
.tf-9  { flex-grow:  9; flex-base:  75.0000%; }
.tf-10 { flex-grow: 10; flex-base:  83.3333%; }
.tf-11 { flex-grow: 11; flex-base:  91.6667%; }
.tf-12 { flex-grow: 12; flex-base: 100.0000%; }

/* HELPERS */
.tt-left {
	float: left;
}
.tt-right {
	float: right;
}
.tt-relative, .tt-rel {
	position: relative !important;
}
.tt-abscenter, .tt-absc {
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	left: 50%;
	top: 50%;
}
.tt-fill {
	width: 100%;
}
.tt-ctw {
	text-align: center;
	width: 100%;
}
.tt-ci { text-align: center !important; }
.tt-ri { text-align: right !important; }
.tt-li { text-align: left !important; }
.tt-c { text-align: center; }
.tt-r { text-align: right; }
.tt-l { text-align: left; }
.tt-w-max { width: max-content !important; }
.tt-h-max { width: max-content !important; }
.tt-mw-max { min-width: max-content !important; }
.tt-mh-max { min-width: max-content !important; }
.tt-block {
	display: block !important;
}
.tt-no-decoration {
	text-decoration: none;
}
.tt-pointer {
	cursor: pointer;
}

/* BORDERS */
.bt0 {    border-top: none !important; }
.bl0 {   border-left: none !important; }
.br0 {  border-right: none !important; }
.bb0 { border-bottom: none !important; }
.ttr0 { border-radius: 0 !important; }

/* PADDING */
.pt0 {    padding-top: 0 !important; }
.pl0 {   padding-left: 0 !important; }
.pr0 {  padding-right: 0 !important; }
.pb0 { padding-bottom: 0 !important; }
.pd0 { padding: 0 !important; }
.pd1 { padding: 0.25em !important; }
.pd2 { padding: 0.5em !important;  }
.pd3 { padding: 0.75em !important; }
.pd4 { padding: 1em !important;    }
.pdb2 { padding-bottom: 0.5em !important; }
.pdb4 { padding-bottom: 1em !important; }
.pdr2 { padding-right: 0.5em !important; }
.pdr4 { padding-right: 1em !important; }
.pdl2 { padding-left: 0.5em !important; }
.pdl4 { padding-left: 1em !important; }
.pdt2 { padding-top: 0.5em !important; }
.pdt4 { padding-top: 1em !important; }

/* MARGIN */
.mt0 {    margin-top: 0 !important; }
.ml0 {   margin-left: 0 !important; }
.mr0 {  margin-right: 0 !important; }
.mb0 { margin-bottom: 0 !important; }
.mt1 {    margin-top: 0.25em !important; }
.ml1 {   margin-left: 0.25em !important; }
.mr1 {  margin-right: 0.25em !important; }
.mb1 { margin-bottom: 0.25em !important; }
.mt2 {    margin-top: 0.5em !important; }
.ml2 {   margin-left: 0.5em !important; }
.mr2 {  margin-right: 0.5em !important; }
.mb2 { margin-bottom: 0.5em !important; }
.mt3 {    margin-top: 0.75em !important; }
.ml3 {   margin-left: 0.75em !important; }
.mr3 {  margin-right: 0.75em !important; }
.mb3 { margin-bottom: 0.75em !important; }
.mt4 {    margin-top: 1em !important; }
.ml4 {   margin-left: 1em !important; }
.mr4 {  margin-right: 1em !important; }
.mb4 { margin-bottom: 1em !important; }
.mt5 {    margin-top: 1.5em !important; }
.ml5 {   margin-left: 1.5em !important; }
.mr5 {  margin-right: 1.5em !important; }
.mb5 { margin-bottom: 1.5em !important; }

/* USER INTERACTION ==================== */
/* HOVER GROW */
.tth-grow { transition: transform 0.1s ease-in-out; }
.tth-grow:hover { transform: scale(1.05); }

/* NO SELECT */
.tt-sel {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

/* SCROLL OVERRIDE ===================== */
.tt-scroll-x, .tt-scroll-y {
	background-color: rgba(255,255,255,0.5);
	border-left: 1px solid rgba(0,0,0,0.3);
	border-top: 1px solid rgba(0,0,0,0.3);
	transition: opacity 0.2s ease-in-out;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
	z-index: 20;
	opacity: 0;
}
.tt-scroll-x:hover, .tt-scroll-y:hover {
	opacity: 1;
}
.tt-scroll-y {
	border-bottom: 1px solid rgba(0,0,0,0.3);
	height: calc(100% - 1.4em);
	margin: 0.7em 0 0 -0.8em;
	width: 0.8em;
	left: 100%;
	top: 0;
}
.tt-scroll-x {
	border-right: 1px solid rgba(0,0,0,0.3);
	width: calc(100% - 1.4em);
	margin: -0.8em 0 0 0.7em;
	height: 0.8em;
	top: 100%;
	left: 0;
}
.tt-scroll-x, .tt-scroll-x .tt-scroll-pos { border-radius: 1em 1em 0 0; }
.tt-scroll-y, .tt-scroll-y .tt-scroll-pos { border-radius: 1em 0 0 1em; }
.tt-scroll-x .tt-scroll-pos { top: 0; bottom: 0; }
.tt-scroll-y .tt-scroll-pos { left: 0; right: 0; }
.tt-scroll-pos {
	background-color: rgba(0,0,0,0.3);
	position: absolute;
}

/* noticeICATIONS ======================= */
/* CONTAINER */
#tt-notices {
	transform: translateX(-50%) translateY(-1.5em);
	overflow: hidden;
	position: fixed;
	cursor: pointer;
	z-index: 999;
	width: 25em;
	left: 50%;
	top: 4.3em;
}
/* noticeICAITON */
.tt-notice {
	animation: tt-notice-in 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	text-overflow: ellipsis;
	padding: 0 1em 0 3em;
	margin-bottom: 0.5em;
	white-space: nowrap;
	position: relative;
	line-height: 3em;
	font-weight: bold;
	text-align: left;
	overflow: hidden;
	font-size: 1em;
	margin-left: 0;
	height: 3em;
	width: 100%;
	opacity: 1;
}
/* ICONS */
.tt-notice .tt-ico {
	position: absolute;
	height: 3em;
	width: 3em;
	left: 0;
	top: 0;
}
.tt-notice .tt-ico::before {
	transform: translateX(-50%) translateY(-50%) rotate(0);
	animation: tt-notice-in-before 0.5s ease-in-out;
	font-size: 2em;
}

/* BODY */
.tt-notice-title {
	text-overflow: ellipsis;
	line-height: 1.5em;
	overflow: hidden;
	font-size: 1em;
	display: block;
	height: 1.5em;
	width: 100%;
}
.tt-notice-body {
	text-overflow: ellipsis;
	font-weight: normal;
	line-height: 1em;
	overflow: hidden;
	display: block;
	height: 1.5em;
	width: 100%;
}
/* DELETION */
.tt-notice-kill {
	line-height: 1px;
	opacity: 0;
	height: 0;
}
/* ANIMATIONS */
@keyframes tt-notice-in {
	0% { margin-left: 99%; opacity: 0; }
	100% { margin-left: 0; opacity: 1; }
}
@keyframes tt-notice-in-before {
	 0% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
	25% { transform: translateX(-50%) translateY(-50%) rotate(270deg); }
	50% { transform: translateX(-50%) translateY(-50%) rotate(180deg); }
	75% { transform: translateX(-50%) translateY(-50%) rotate(90deg); }
	10% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
}
/* notice VARIATIONS */
.tt-notice-info .tt-ico::before { content: "\f05a"; }
.tt-notice-error .tt-ico::before { content: "\f057"; }
.tt-notice-warning .tt-ico::before { content: "\f071"; }
.tt-notice-success .tt-ico::before { content: "\f058"; }

/* COLOR CLASSES ======================= */
/* BACKGROUND DARKEN/LIGHTEN OVERLAY */
.ttb-dark, .ttb-dark2, .ttb-dark3,
.ttb-light, .ttb-light2, .ttb-light3 {
	mix-blend-mode: hard-light;
}



/* BACKGROUND HOVERS */
.tth-darken::before,.tth-darken2::before,.tth-darken3::before {
	mix-blend-mode: color-burn;
}
.tth-lighten::before,.tth-lighten2::before,.tth-lighten3::before, .tt-but::before, .tt-but-sm::before {
	mix-blend-mode: overlay; /* hard-light */
}
.tt-but::before,.tt-but-sm::before,
.tth-darken::before,.tth-darken2::before,.tth-darken3::before,
.tth-lighten::before,.tth-lighten2::before,.tth-lighten3::before {
	position: absolute;
	display: none;
	content: " ";
	height: 100%;
	width: 100%;
	z-index: 0;
	left: 0;
	top: 0;
}
.tt-but:hover::before,.tt-but-sm:hover::before,
.tth-darken:hover::before,.tth-darken2:hover::before,.tth-darken3:hover::before,
.tth-lighten:hover::before,.tth-lighten2:hover::before,.tth-lighten3:hover::before {
	display: block;
}
.tth-darken, .tth-darken2, .tth-darken2,
.tth-lighten, .tth-lighten2, .tth-lighten3 {
	overflow: hidden;
}
.tt-but .tt-ico {
  vertical-align: text-bottom;
  line-height: 1.5em;
  height: 1.4em;
  width: 1em;
}

/* ANIMATED */
.ttha-darken::before,.ttha-darken2::before,.ttha-darken3::before,
.ttha-lighten::before,.ttha-lighten2::before,.ttha-lighten3::before {
	transition: 0.1s ease-in-out;
	border-radius: 100%;
	transform: scale(0);
	position: absolute;
	display: block;
	content: " ";
	height: 100%;
	width: 100%;
	z-index: 0;
	left: 0;
	top: 0;
}
.ttha-darken:hover::before,.ttha-darken2:hover::before,.ttha-darken3:hover::before,
.ttha-lighten:hover::before,.ttha-lighten2:hover::before,.ttha-lighten3:hover::before {
	transform: scale(1);
	border-radius: 0;
}

/* TABS */
.tt-tab {
	cursor: pointer;
	/* NO SELECT */
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.tt-tab-box {
	display: none;
	width: 100%;
}
.tt-tab-box.tt-tab-active {
	display: block;
}

/* CRUMBS */
.tt-crumb.tt-but {
	margin-left: 0;
}
.tt-crumb.tt-but:hover {
	transform: scale(1.05);
}
.tt-crumb.tt-lg {
	padding: 0.3em 0.8em;
}
.tt-crumb.tt-lg .tt-ico {
	font-size: 1.4em;
}

/* ABS CIRCLE */
.tt-circle {
	border-radius: 50%;
	position: relative;
}

/* FONT HELPERS */
.tt-font-06 { font-size: 0.6em; }
.tt-font-07 { font-size: 0.7em; }
.tt-font-08 { font-size: 0.8em; }
.tt-font-09 { font-size: 0.9em; }
.tt-font-1  { font-size: 1em; }
.tt-font-11 { font-size: 1.1em; }
.tt-font-12 { font-size: 1.2em; }
.tt-font-13 { font-size: 1.3em; }
.tt-font-14 { font-size: 1.4em; }
.tt-font-15 { font-size: 1.5em; }
.tt-font-2  { font-size: 2em; }
.tt-font-25 { font-size: 2.5em; }
.tt-font-3  { font-size: 3em; }
.tt-font-35 { font-size: 3.5em; }
.tt-bold { font-weight: bold; }
.tt-bold-600 { font-weight: 600; }
.tt-regular { font-weight: normal; }

.tt-oh { overflow: hidden !important; }
.tt-ov { overflow: visible !important; }
.tt-oa { overflow: auto !important; }
.tt-os { overflow: scroll !important; }

/* TRANSFORMS */
.tt-scale-11 { transform: scale(1.1); }
.tt-scale-12 { transform: scale(1.2); }
.tt-scale-13 { transform: scale(1.3); }
.tt-scale-14 { transform: scale(1.4); }
.tt-scale-15 { transform: scale(1.5); }

.tt-inline { display: inline-block; }

.tt-hide { display: none !important; }

/* OPACITY */
.tt-opac-0  { opacity: 0.0 !important; }
.tt-opac-01 { opacity: 0.1 !important; }
.tt-opac-02 { opacity: 0.2 !important; }
.tt-opac-03 { opacity: 0.3 !important; }
.tt-opac-04 { opacity: 0.4 !important; }
.tt-opac-05 { opacity: 0.5 !important; }
.tt-opac-06 { opacity: 0.6 !important; }
.tt-opac-07 { opacity: 0.7 !important; }
.tt-opac-08 { opacity: 0.8 !important; }
.tt-opac-09 { opacity: 0.9 !important; }
.tt-opac-1  { opacity: 1 !important; }

/* TEXT */
.tt-trim {
	text-overflow: ellipsis;
	overflow: hidden;
}

/* >>===== TT COLORS ===== */
@import url(/fonts/poppins/goog.css);

/* BACKGROUND DARKEN / LIGHTEN */
.ttb-dark   { background-color: rgba(0,0,0,0.1); }
.ttb-dark2  { background-color: rgba(0,0,0,0.3); }
.ttb-dark3  { background-color: rgba(0,0,0,0.5); }
.ttb-light  { background-color: rgba(255,255,255,0.2); }
.ttb-light2 { background-color: rgba(255,255,255,0.5); }
.ttb-light3 { background-color: rgba(255,255,255,0.8); }

/* HOVER DARKEN / LIGHTEN */
.tth-darken::before  , .ttha-darken::before   { background-color: rgba(0,0,0,0.2); }
.tth-darken2::before , .ttha-darken2::before  { background-color: rgba(0,0,0,0.5); }
.tth-darken3::before , .ttha-darken3::before  { background-color: rgba(0,0,0,0.8); }
.tth-lighten::before , .ttha-lighten::before  { background-color: rgba(255,255,255,0.2); }
.tth-lighten2::before, .ttha-lighten2::before { background-color: rgba(255,255,255,0.5); }
.tth-lighten3::before, .ttha-lighten3::before { background-color: rgba(255,255,255,0.8); }

.tt-but::before, .tt-but-sm::before { background-color: rgba(255,255,255,0.2); }

/* BACKGROUNDS */
.ttb-back  { background-color: #edf1f5; }
.ttb-main  { background-color: #20a291; }
.ttb-head  { background-color: #20a291; }
.ttb-menu  { background-color: #ffffff; }
.ttb-white { background-color: #ffffff !important; }
.ttb-menu-text { background-color: #8d97ad; }

/* COLORS */
.ttc-red, .tth-red:hover { color: red; } .ttb-red, .tthb-red:hover { background-color: #20a291; }
.ttc-blue, .ttc-blue:visited, .tth-blue:hover, .tth-blue.active { color: #1bb5c6; }

/* COLORS */
.ttc-white, .ttc-white:visited { color: #ffffff; }
.ttc-menu-text, .ttc-menu-text:visited { color: #ffffff; }
.ttc-submenu-text, .tth-submenu-text:visited { color: #777D74; }
.ttc-main, .ttc-main:visited  { color: #20a291; }
.ttc-head, .ttc-head:visited  { color: #ffffff; }
.ttc-black { color: #000000; }

/* HOVER COLORS */
.tth-main:hover, .tth-main.active { color: #20a291; }
.tth-blue:hover, .tth-blue.active { color: #1bb5c6; }
.tth-menu-text:hover, .tth-menu-text.active { color: #99eee3; }

/*
.tt-menu > li.active > .tt-menu-title, .tt-menu > li.open {
	background-color: #ffffff;
	border-radius: 1em;
}
*/
.tt-menu-left  .ttc-menu-text.tt-menu-branch.open,
.tt-menu-right .ttc-menu-text.tt-menu-branch.open {
	padding-right: 0.5em;
	padding-left: 0.5em;
}
.tt-menu-left  .ttc-menu-text.tt-menu-branch.open > .tt-menu-title,
.tt-menu-right .ttc-menu-text.tt-menu-branch.open > .tt-menu-title {
	padding: 1em 2.5em 1em 2.5em;
	/*border-radius: 1em 1em 0 0;*/
	background-color: #ffffff;
	color: #20a291;
}
.tt-menu-left  .ttc-menu-text.tt-menu-branch.open > .tt-menu-title .tt-ico,
.tt-menu-right .ttc-menu-text.tt-menu-branch.open > .tt-menu-title .tt-ico {
	left: 0.5em;
}
.tt-menu-left  .ttc-menu-text.tt-menu-branch.open > .tt-submenu,
.tt-menu-right .ttc-menu-text.tt-menu-branch.open > .tt-submenu {
	/*border-radius: 0 0 1em 1em;*/
	background-color: #ffffff;
}

.ttc-submenu-text:hover, .ttc-submenu-text.active {
	color: #20a291;
}
.tt-menu-left  .ttc-submenu-text.active,
.tt-menu-right .ttc-submenu-text.active {
	background-color: #c5eae5;
}

/* MENU COLORS */
.tt-menu {
	background-color: #1d9182;
}
.tt-menu > li:hover,
.tt-menu-left .tt-menu > li.active,
.tt-menu-right .tt-menu > li.active {
	/* background-color: #f9f9f9; */
}

/* notice COLORS */
.tt-notice-info    { background-color: #26c9db; color: white; }
.tt-notice-error   { background-color: #e46a76; color: white; }
.tt-notice-warning { background-color: #fd9d55; color: white; }
.tt-notice-success { background-color: #00c292; color: white; }

/* BUTTON COLORS */
.tt-but-sm.tt-error  , .tt-but.tt-error,
.tt-but-sm.tt-danger , .tt-but.tt-danger  { background-color: #e46a76; color: white; }
.tt-but-sm.tt-primary, .tt-but.tt-primary { background-color: #20a291; color: white; }
.tt-but-sm.tt-info   , .tt-but.tt-info    { background-color: #26c9db; color: white; /*#20a291*/ }
.tt-but-sm.tt-warning, .tt-but.tt-warning { background-color: #fd9d55 /*#e4a616*/; color: #303030; }
.tt-but-sm.tt-success, .tt-but.tt-success { background-color: #00c292; color: white; }
.tt-but-sm.tt-gray   , .tt-but.tt-gray    { background-color: #eeeeee; color: black; }
.tt-but-sm.tt-washed , .tt-but.tt-washed  { background-color: #c8c8c8; color: white; }
.tt-but-sm.tt-white  , .tt-but.tt-white   { background-color: #ffffff; color: black; }
.tt-but-sm.tt-orange , .tt-but.tt-orange  { background-color: #ee8845; color: white; }

/* MAIN COLORS */
.ttb-danger    { background-color: #e46a76 !important; }
.ttb-info      { background-color: #26c9db !important; }
.ttb-primary   { background-color: #20a291 !important; }
.ttb-warning   { background-color: #fd9d55 !important; }
.ttb-success   { background-color: #00c292 !important; }
.ttb-gray      { background-color: #999999 !important; }
.ttc-danger    { color: #e46a76 !important; }
.ttc-info      { color: #26c9db !important; /*#20a291*/ }
.ttc-primary   { color: #20a291 !important; }
.ttc-warning   { color: #fd9d55 !important; }
.ttc-success   { color: #00c292 !important; }
.ttc-gray      { color: #999999 !important; }
.ttc-lightgray { color: #cacaca !important; }
.ttl-danger    { border-color: #e46a76 !important; }
.ttl-info      { border-color: #26c9db !important; }
.ttl-primary   { border-color: #20a291 !important; }
.ttl-warning   { border-color: #fd9d55 !important; }
.ttl-success   { border-color: #00c292 !important; }
.ttl-gray      { border-color: #999999 !important; }

/* SHADOW CLASSES */
.tt-shadow  { box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.1); }
.tt-shadow2 { box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.2); }
.tt-shadow3 { box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.3); }

.ttc-shadow  { text-shadow: 0px 0px 2px rgba(0,0,0,0.3); }
.ttc-shadow2 { text-shadow: 0px 0px 5px rgba(0,0,0,0.45); }
.ttc-shadow3 { text-shadow: 0px 0px 5px rgba(0,0,0,0.86); }

/* ROUNDED BORDERS */
.ttr-fine, .tt-but.ttr-fine { border-radius: 0.3em; }
.ttr, .tt-but.ttr  { border-radius: 0.5em; }
.ttr2, .tt-but.ttr2 { border-radius: 1em; }
.ttr3, .tt-but.ttr3 { border-radius: 2em; }
.ttr-tl  { border-top-left-radius: 0.5em; }
.ttr-tl2 { border-top-left-radius:   1em; }
.ttr-tl3 { border-top-left-radius:   2em; }
.ttr-tr  { border-top-right-radius: 0.5em; }
.ttr-tr2 { border-top-right-radius:   1em; }
.ttr-tr3 { border-top-right-radius:   2em; }
.ttr-bl  { border-top-left-radius: 0.5em; }
.ttr-bl2 { border-top-left-radius:   1em; }
.ttr-bl3 { border-top-left-radius:   2em; }
.ttr-br  { border-bottom-right-radius: 0.5em; }
.ttr-br2 { border-bottom-right-radius:   1em; }
.ttr-br3 { border-bottom-right-radius:   2em; }
.ttr-t  { border-top-left-radius: 0.5em; border-top-right-radius: 0.5em; }
.ttr-t2 { border-top-left-radius:   1em; border-top-right-radius:   1em; }
.ttr-t3 { border-top-left-radius:   2em; border-top-right-radius:   2em; }
.ttr-b  { border-bottom-left-radius: 0.5em; border-bottom-right-radius: 0.5em; }
.ttr-b2 { border-bottom-left-radius:   1em; border-bottom-right-radius:   1em; }
.ttr-b3 { border-bottom-left-radius:   2em; border-bottom-right-radius:   2em; }
/* APPLIED */
/*.tt-but, .tt-but-sm { border-radius: 0.3em; }
.tt-box-body { border-radius: 1.5em; }
.tt-notice { border-radius: 0.3em; }*/

/* LAYOUT CUSTOM */
.tt-body {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
}
div.tt-but, a.tt-but {
	font-weight: 500;
}
/* HEAD & MENU SIZES */
.tt-head {
	height: 4.3em;
}
.tt-foot {
	height: 3em;
}
.tt-content {
	padding-bottom: 3.6em;
}
/*
html {
	scrollbar-color: #2dd1e3 #20a291;
	scrollbar-width: thin;
}
html > * {
	scrollbar-color: initial;
}*/
@media screen and (min-width: 993px) {
	/* CONTENT */
	.tt-menu-top .tt-main {
		min-height: calc(100vh - 7.5em);
		margin-top: 7.5em;
	}
	.tt-menu-left .tt-main { margin: 0 0 0 16em; }
	.tt-menu-right .tt-main { margin: 0 16em 0 0; }
	.tt-menu-left .tt-main,
	.tt-menu-right .tt-main,
	.tt-menu-bottom .tt-main {
		min-height: calc(100vh - 4.3em);
		margin-top: 4.3em;
	}
	.tt-menu-bottom .tt-main {
		min-height: calc(100vh - 7.5em);
		margin-bottom: 3em;
	}
	.tt-menu-left .tt-main,
	.tt-menu-right .tt-main {
		width: calc(100% - 16em);
	}
	/* MENU */
	.tt-menu-top .tt-menu, .tt-menu-left .tt-menu, .tt-menu-right .tt-menu {
		top: 4.3em;
	}
	.tt-menu-left .tt-menu, .tt-menu-right .tt-menu {
		height: calc(100% - 4.3em);
	}
	.tt-menu-top .tt-menu,
	.tt-menu-bottom .tt-menu {
		height: 3em;
	}
	.tt-menu-left .tt-menu,
	.tt-menu-right .tt-menu {
		width: 16em;
	}
}
@media screen and (max-width: 993px) {
	/* CONTENT */
	.tt-main {
		min-height: calc(100vh - 4.3em);
		margin-top: 4.3em;
	}
	.tt-menu-float .tt-main {
		width: calc(100% - 16em);
	}
	/* MENU - FLOATER */
	.tt-menu {
		width: 16em;
		top: 4.3em;
	}
}

/* PAGE CRUMBS ================================ */
/* PAGE CRUMB CONTAINER */
.tt-page-crumbs {
	flex-direction: row;
	flex-wrap: wrap;
	display: flex;
	width: 100%;
}

/* PAGE CRUMB */
.tt-page-crumb {
	min-width: max-content;
	padding: 0.75em 0 0 0;
	font-size: 0.9em;
}
.tt-page-crumb::before {
	margin: 0 0.25em 0 0.22em;
	display: inline-block;
	font-weight: bold;
	color: #26c9db;
	content: ">";
}
.tt-page-crumb:first-child::before {
	display: none;
	content: "";
}

/* PAGE CRUMB TEXT */
.tt-page-crumb span {
	transition: 0.05s ease-in-out;
	background-color: #ffffff;
	display: inline-block;
	padding: 0.1em 0.65em;
	/*border-radius: 0.5em;*/
	cursor: pointer;
	opacity: 0.6;
}
.tt-page-crumb.active span {
	background-color: #26c9db;
	color: white;
	opacity: 1;
}
.tt-page-crumb span:hover {
	transform: translateY(-0.1em);
	opacity: 1;
}
.tt-page-crumb.active span:hover {
	transform: none;
}

/* >>===== DEFAULT ======= */

/* A FIX */
.ke-powered-by {
	display: none !important;
}
.kothing-editor {
	margin-bottom: 2em;
	border: 2px solid #d2d2d2 !important;
}
.kothing-editor .kothing-editor-editable {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
.ke-wrapper-inner {
	/*min-height: 12em !important;*/
}
.ke-btn-tray {
	text-align: center;
}

/* ICONS */
.click {
	cursor: pointer;
}
.tt-ico.click:hover::before {
	transform: translateX(-50%) translateY(-50%) scale(1.1);
}

/* HEADER */
#mz-header .topbar .user-pro a im {
	width: 64px;
}
#mz-header .topbar .top-navbar .navbar-header {
	text-align: center;
	padding: 0;
}
.wer-notifications.tt-head-group > .tt-submenu {
	min-width: 20em;
}
.wer-notif-menu {
	max-width: 20em !important;
	transform: translateX(-50%);
	right: unset !important;
	left: 50% !important;
}
.wer-notif-menu > li {
	border-bottom: 1px solid #eaeaea;
}
.wer-notif-menu > li:last-child {
	border-bottom: none;
}
.wer-notif-menu > li:hover {
	background-color: white;
}
.wer-notif,
.tt-head-group li > .wer-notif {
	text-decoration: none;
	flex-direction: row;
	align-items: center;
	padding: 0.5em;
	display: flex;
}
.wer-notif,
.wer-notif:visited {
	color: black;
}
/* PRIORITY */
.wer-notif.wer-notif-1 { background-color: rgba(151, 255, 0, 0.13); }
.wer-notif.wer-notif-2 { background-color: rgba(249, 255, 48, 0.29); }
.wer-notif.wer-notif-3 {
	background-color: rgba(249, 255, 48, 0.29);
	border: 4px solid #ffe300;
}
/* TYPE ICON */
.wer-notif .tt-but {
	margin: 0 0.5em 0 0;
	border-radius: 100%;
	line-height: 2.5em;
	text-align: center;
	height: 2.5em;
	width: 2.5em;
	padding: 0;
}
.wer-notif-content {
	max-width: 100%;
	flex: 1;
}
.wer-notif-title {
	margin: 0 0 0.5em 0;
	font-weight: normal;
	font-size: 0.8em;
	width: 100%;
}
.wer-notif-desc {
	text-overflow: ellipsis;
	font-weight: lighter;
	margin: 0 0 0.5em 0;
	font-size: 0.8em;
	line-height: 1em;
	overflow: hidden;
	max-height: 3em;
	width: 100%;
}
.wer-notif-time {
	font-size: 0.8em;
}
.wer-notif-nr {
	background: #006583;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	line-height: 1.8em;
	font-weight: bold;
	font-size: 0.7em;
	padding: 0.2em;
	color: #ffffff;
	bottom: 55%;
	height: 2em;
	width: 2em;
	left: 50%;
}
.wer-notif-icon, .wer-notif-bleep {
	transform: translate(-50%, -50%);
	position: absolute;
	height: 1em;
	left: 50%;
	top: 50%;
}
.wer-notif-bleep, .wer-notif-bleep.fa {
	display: none;
}
.wer-notif-active .wer-notif-bleep,
.wer-notif-active .wer-notif-bleep.fa {
	animation: wer-notif-bleep 5s linear infinite;
	display: block;
}
.wer-notif-active.wer-notif-important .wer-notif-bleep,
.wer-notif-active.wer-notif-important .wer-notif-bleep.fa {
	animation: wer-notif-bleep-important 1s ease-in-out infinite;
}
@keyframes wer-notif-bleep {
	  0% { opacity: 1; }
	 90% { opacity: 1; }
	 95% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes wer-notif-bleep-important {
	  0% { opacity: 1; }
	 50% { opacity: 0; }
	100% { opacity: 1; }
}

/* FOOTER */
#mz-footer .footer {
	text-align: center;
}
.tt-body {
	background-color: #d9ecea;
}
.tt-menu > * {
	font-size: 0.9em;
}
.tt-menu-top .tt-menu,
.tt-menu-bottom .tt-menu {
	justify-content: center;
}
.tt-head .tt-head-logo {
	width: 16em;
}
.tt-menu-title {
	font-weight: 500;
}
.tt-submenu .tt-menu-title {
	font-weight: normal;
}

#content {
	padding-left: 1em;
	padding-right: 1em;
}

#h5p {
	width:100%;
	height: calc(100vh - 180px);
	border: none;
	background-color: transparent;
	border-bottom: 1px solid #0a78d1;
	opacity: 0;
}

/* SELECT2 FIXES */
.select2-results > .select2-results__options {
	max-height: 50vh !important;
	overflow-y: auto;
}
.wer-form input, .wer-form select {
	background-color: white;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	background-color: white;
	height: auto;
}
.wer-input-group .select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 0.86em;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
	padding: 0 0.6em !important;
}
.wer-input-group .select2-container .select2-selection--multiple {
	min-height: 2.4em;
}
.select2-container--default .select2-selection--multiple {
	border: 0.07em solid #cbd8df !important;
	min-height: 2.4em;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 0.07em solid #49c0f7 !important;
	min-height: 2.4em;
	outline: 0;
}

.select2-container .selection,
.tt-c .select2-container .selection {
	text-align: left;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
	background-color: #f9f9f9 !important;
}
.wer-form .select2-container--default .select2-selection--multiple .select2-selection__choice,
.wer-table-content .select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #219fff !important;
	border: 1px solid #49c0f7;
	padding: 0 0.6em 0 1.5em;
	text-overflow: ellipsis;
	background: #219fff;
	overflow: hidden;
	color: white;
}
.wer-table-content .select2-container--default .select2-selection--multiple .select2-selection__choice {
	max-width: 110px;
}
.wer-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.wer-table-content .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	transform: translateY(-50%);
	color: white;
	left: 3px;
	top: 47%;
}
.wer-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.wer-table-content .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: red;
}

.select2-results__group, {
	background-color: #8ab7ff;
	color: white;
}
/* // SELECT2 FIXES */

.sidebar-nav ul li a .fa {
	text-align: center;
	min-width: 1.4em;
}
body .modal-backdrop.show { display: none !important; }

/* DASHES */
.wer-quatro-row {
	margin-right: 1em;
	margin-left: 1em;
	min-width: unset;
	width: calc(100% - 2em);
}
.wer-quatro-box {
	-webkit-box-shadow: 2px 2px 18px -3px rgba(0,0,0,0.19);
	-moz-box-shadow: 2px 2px 18px -3px rgba(0,0,0,0.19);
	box-shadow: 2px 2px 18px -3px rgba(0,0,0,0.19);
	background-color: white;
	flex-direction: column;
	border-radius: 15px;
	padding: 2em 0.5em;
	min-width: 13em;
	cursor: pointer;
	display: flex;
	width: 100%;
}
.wer-quatro-img {
	text-align: center;
	margin-bottom: 2em;
	display: block;
	width: 100%;
}
.wer-quatro-img img {
	width: 50%;
}
.wer-quatro-title {
	justify-content: center;
	align-content: center;
	text-align: center;
	font-weight: bold;
	font-size: 0.9em;
	display: block;
	color: #20a291;
	width: 100%;
}
.wer-quatro-title div {
	font-weight: bold;
	font-size: 1.2em;
}
.tt-row.roundy .tt-box {
	border-radius: 15px;
}


.wer-stat-box {
	flex-direction: column;
	align-items: center;
	padding: 1em 0.5em;
	min-width: 13em;
	cursor: pointer;
	display: flex;
	width: 100%;
}
.wer-stat-box-info {
	margin-bottom: 0;
	font-size: 2em;
	color: #aaaaaa;
}
.wer-stat-box-title {
	font-weight: bold;
	font-size: 1.2em;
}

/* TABLE */
.tt-table-controls > * {
	border-radius: 5px;
}

/* ABO TABLE */
table.abo-info {
	border-collapse: collapse;
}
table.abo-info td:first-child {
	font-weight: 600;
	min-width: 10em;
}
table.abo-info td:last-child {
	min-width: 15em;
	color: #20a291;
}
table.abo-info td {
	vertical-align: middle;
	padding: 0.5em 1em;
	text-align: left;
}

/* TEXT */
.wer-input-group textarea, .wer-input-group textarea.wer-input {
	font-family: inherit;
}

.wer-form .wer-toggle-next, .on-tog > .wer-toggle-next {
	border-radius: 1em 1em 0 0;
	background-color: #56c2ce;
	padding: 0.5em 0.5em;
	font-weight: normal;
	margin-bottom: 0;
	font-size: 1.2em;
	margin-top: 3em;
	color: #ffffff;
	width: 100%;
}
.wer-form .wer-toggle-next:first-child {
	margin-top: 0.5em;
}
.wer-form .wer-toggle-body, .on-tog > .wer-toggle-body {
	border-bottom: 1px solid #56c2ce;
	border-right: 1px solid #56c2ce;
	border-bottom-right-radius: 1em;
	border-bottom-left-radius: 1em;
	border-left: 1px solid #56c2ce;
	padding: 1em;
}
.wer-form .wer-toggle-body .wer-toggle-next {
	background-color: #67ceb1;
	padding: 0.2em;
}
.wer-form .wer-toggle-body .wer-toggle-body {
	border-bottom: 1px solid #67ceb1;
	border-right: 1px solid #67ceb1;
	border-left: 1px solid #67ceb1;
}
.wer-form .wer-toggle-next::after, .on-tog > .wer-toggle-next::after {
	color: #ffffff;
	right: 1em;
}
.wer-form .wer-toggle-next.wer-toggle-off, .on-tog > .wer-toggle-next.wer-toggle-off {
	/*padding: 0.2em 0.5em;*/
	border-radius: 0.5em;
}
.wer-acces-cop + .wer-toggle-next,
.wer-form .wer-toggle-off + .wer-toggle-next,
.wer-form .wer-toggle-off + .wer-toggle-next,
.on-tog  > .wer-toggle-next:first-child,
.on-tog  > .wer-toggle-next.wer-toggle-on:first-child,
.on-tog  > .wer-toggle-next.wer-toggle-off:first-child {
	margin-top: 1em;
}

.wer-acces-cop {
	margin-top: 3em;
}
.wer-form .wer-toggle-off + .wer-acces-cop {
	margin-top : 1em;
}
.wer-acces-cop > .wer-toggle-next:first-child {
	margin-top: 0 !important;
}
.wer-acces-cop > .wer-toggle-body.wer-toggle-on:last-child {
	margin-bottom: 3.6em;
}

.wer-small-form.wer-pop-body {
	min-height: 3em;
}

/* COMPORTAMENTE */
.wer-form .wer-comportament,
.wer-form .wer-intaritor {
	background-color: #d8ecee;
	border-radius: 1em;
	margin: 1em 0;
	padding: 1em;
	width: 100%;
}

/* THEME */
.wer-but {
	background-color: #20a291;/*#2a68b9;*/
	border-radius: 0.3em;
}
.wer-but:hover {
	background-color: #2fb5c4;/*#4582d3;*/
}
.wer-pop {
	/*box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.2);*/
	border-radius: 1em;
	overflow: hidden;
}
.wer-pop .wer-pop-head {
	background-color: #20a291;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
	color: #ffffff;
}
.wer-pop .wer-pop-close {
	background-color: #ffffff;
	color: #2a68b9;
	right: 1em;
	top: 0.7em;
	/*right: 1.5em;
	top: 1.4em;*/
}
/*
.wer-edit-pop .wer-pop .wer-pop-head {
	padding-bottom: 0.5em;
	padding-top: 0.5em;
}
.wer-edit-pop .wer-pop .wer-pop-close {
	right: 1em;
	top: 0.7em;
}
*/


/* TABS - POP */
.wer-pop-head .tt-tab-head {
	justify-content: center;
	align-items: flex-end;
	flex-direction: row;
	margin: 0.5em 0 0 0;
	line-height: 1.2em;
	font-size: 0.8em;
	display: flex;
}
.wer-pop-head .tt-tab {
	transition: padding 0.1s ease-in-out, background-color 0.1s ease-in-out, color 0.1s ease-in-out;
	background-color: #5fb6bf;
	border-radius: 0.7em;
	padding: 0.7em 0.5em;
	color: #e2eff0;
	margin: 0.4em;
	border: none;
}
.wer-pop-head .tt-tab:hover {
	background-color: #84c5cc;
	transform: scale(1.05);
	color: #fff;
}
.wer-pop-head .tt-tab.tt-tab-active:hover {
	transition: none !important;
	background-color: #ffffff;
	color: black;
}
.wer-pop-head .tt-tab.tt-tab-active {
	transition: none !important;
	background-color: #ffffff;
	color: black;
}
/*
.wer-pop-head .tt-tab-head {
	justify-content: center;
	align-items: flex-end;
	flex-direction: row;
	margin: 1em 0 0 0;
	display: flex;
}
.wer-pop-head .tt-tab {
	transition: padding 0.1s ease-in-out, background-color 0.1s ease-in-out, color 0.1s ease-in-out;
	border-radius: 1em 1em 0 0;
	background-color: #143c71;
	padding: 0.1em 1em 0 1em;
	margin: 0 0.2em;
	color: #ccdaec;
	border: none;
}
.wer-pop-head .tt-tab:hover {
	background-color: #103260;
	padding-bottom: 0.1em;
	color: #fff;
}
.wer-pop-head .tt-tab.tt-tab-active:hover {
	transition: none !important;
	background-color: #ffffff;
	color: black;
}
.wer-pop-head .tt-tab.tt-tab-active {
	transition: none !important;
	background-color: #ffffff;
	margin-bottom: -2px;
	padding: 0.2em 1em;
	color: black;
}
*/



/* TABS - PAGE */
.tt-box-body.wer-tab-container { border-top-left-radius: 0 !important; border-top-right-radius: 0 !important; }
.wer-page-head.tt-tab-head {
	justify-content: flex-start;
	border-radius: 1em 1em 0 0;
	background-color: #ffffff;
	align-items: stretch;
	flex-direction: row;
	overflow: hidden;
	flex-wrap: wrap;
	padding: 0.5em;
	display: flex;
	z-index: 10;
}
/* INACTIVE - TAB */
.wer-page-head .tt-tab {
	transition: transform 0.1s ease-in-out, background-color 0.1s ease-in-out, color 0.1s ease-in-out;
	background-color: transparent;/*#80a2ce;#2a68b9;*/
	border-radius: 0.8em;
	padding: 1em 1em;
	font-weight: 500;
	margin: 0.5em;
}
/* ACTIVE */
.wer-page-head .tt-tab.tt-tab-active {
	background-color: #c5eae5;
	color: #20a291;
}
/* HOVER */
.wer-page-head .tt-tab:hover,
.wer-page-head .tt-tab.tt-tab-active:hover {
	transform: scale(1.02);
	background-color: #e8f3f5;
	color: #20a291;
}





/* TOOLTIP BS */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875em;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8em;
  height: 0.4em;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4em 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4em 0.4em 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4em;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4em;
  height: 0.8em;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4em 0.4em 0.4em 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4em 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4em 0.4em;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4em;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4em;
  height: 0.8em;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4em 0 0.4em 0.4em;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25em 0.5em;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25em;
}

.on-page-crumbs {
	padding: 0 1.5em;
}

.tt-but.on-pag-but {
	background-color: transparent;
	font-size: 1.5em !important;
	color: #03a9f3;
}

/* SECTIONS */
.on-title {
	color: #868686;
}
.on-section-btm { border-bottom: 0.5em solid #f0f0f0; }
.on-section-top { border-top: 0.5em solid #f0f0f0; }
.on-section-top, .on-section-btm {
	border-radius: 2em;
	padding: 1em 2em;
	width: 100%;
}
.on-thin-section {
	border: 0.2em solid #f0f0f0;
	margin-bottom: 1em;
	border-radius: 1em;
	padding-right: 1em;
	padding-left: 1em;
}
.on-center {
	margin-right: auto;
	margin-left: auto;
}
.on-max-box-80 {
	max-width: 90em;
	width: 100%;
}
.on-max-box {
	max-width: 70em;
	width: 100%;
}
.on-max-box-50 {
	max-width: 60em;
	width: 100%;
}
.on-center-box {
	margin-right:auto;
	margin-left:auto;
	max-width: 50em;
	width:100%;
}

/* INFOS */
.bullet-box {
	
}
.bullet-box td {
	
}
.bullet-box td:first-child {
	
}

/* POPS */
.wer-pop-info .wer-pop-body {
	padding: 1em 2em;
}
.wer-pop-info .wer-pop-foot,
.wer-pop-error .wer-pop-foot {
	border-top: none;
}

/* HIDE GROUP */
.on-hides-a .on-hide-a,
.on-hides-b .on-hide-b,
.on-hides-c .on-hide-c,
.on-hides-d .on-hide-d {
	display: none !important;
	/*visibility: hidden !important;*/
}

/* WIDTHS */
.on-9 { width: 9em !important; }
.on-max-2  { max-width: 2em; }
.on-max-3  { max-width: 3em; }
.on-max-4  { max-width: 4em; }
.on-max-5  { max-width: 5em; }
.on-max-6  { max-width: 6em; }
.on-max-7  { max-width: 7em; }
.on-max-8  { max-width: 8em; }
.on-max-9  { max-width: 9em; }
.on-max-10 { max-width: 10em; }
.on-max-12 { max-width: 12em; }
.on-max-13 { max-width: 13em; }
.on-max-14 { max-width: 14em; }
.on-max-15 { max-width: 15em; }
.on-max-16 { max-width: 16em; }
.on-max-17 { max-width: 17em; }
.on-max-18 { max-width: 18em; }
.on-max-19 { max-width: 19em; }
.on-max-20 { max-width: 20em; }
.on-max-60 { max-width: 60em !important; }
.on-max-70 { max-width: 70em !important; }

.on-min-2  { min-width: 2em; }
.on-min-3  { min-width: 3em; }
.on-min-4  { min-width: 4em; }
.on-min-5  { min-width: 5em; }
.on-min-6  { min-width: 6em; }
.on-min-7  { min-width: 7em; }
.on-min-8  { min-width: 8em; }
.on-min-9  { min-width: 9em; }
.on-min-10 { min-width: 10em; }
.on-min-12 { min-width: 12em; }
.on-min-13 { min-width: 13em; }
.on-min-14 { min-width: 14em !important; }
.on-min-15 { min-width: 15em; }
.on-min-16 { min-width: 16em; }
.on-min-17 { min-width: 17em; }
.on-min-18 { min-width: 18em; }
.on-min-19 { min-width: 19em; }
.on-min-20 { min-width: 20em; }

/* TEXTS */
.t05em { font-size: 0.5em !important; }
.t06em { font-size: 0.6em !important; }
.t07em { font-size: 0.7em !important; }
.t08em { font-size: 0.8em !important; }
.t09em { font-size: 0.9em !important; }
.t1em  { font-size: 1em !important; }
.t11em { font-size: 1.1em !important; }
.t12em { font-size: 1.2em !important; }
.t13em { font-size: 1.3em !important; }
.t14em { font-size: 1.4em !important; }
.t15em { font-size: 1.5em !important; }
.t2em  { font-size: 2em !important; }
.t25em { font-size: 2.5em !important; }
.t3em  { font-size: 3em !important; }
.t35em { font-size: 3.5em !important; }

/* FIXED FORMS */
.on-has-forms > .tt-box, .on-has-forms > .tt-page-title {
	display: none;
}
.on-has-forms > .tt-box.on-page-form {
	display: block;
}
.wer-input.mt0 {
	margin-top: 0 !important;
}


/* PAGED BUILDER */
.on-row-container { width: 100%; }

/* INFO BOXES */
.on-infobox {
	justify-content: flex-start;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	display: flex;
	flex: 1;
}
.on-info {
	align-items: center;
	flex-direction: row;
	text-align: center;
	min-width: 15.5em;
	min-height: 2em;
	display: flex;
	flex: 1;
}
.on-info.tf-0 {
	min-width: max-content;
	align-items: center;
	flex-direction: row;
	text-align: center;
	min-height: 2em;
	display: flex;
}
.on-info > div:first-child {
	display: inline-block;
	padding-right: 1em;
	font-weight: bold;
	text-align: right;
	font-size: 1.1em;
	color: #888888;
	flex-shrink: 0;
	flex-grow: 0;
	width: 7em;
}
.on-info > div:last-child {
	display: inline-block;
	word-wrap: break-word;
	word-wrap: anywhere;
	text-align: left;
	flex-grow: 1;
}

.ttc-danger-dt  { color: #e46a76 !important; font-size: 0.9em; }
.ttc-warn { color: #f58800 !important; }
.ttc-prog { color: #084AAB; !important; }
.ttc-pri-light { color: #58d6e4 !important; }

/* SIZE HELPERS */
.w35em { width: 3.5em !important; }
.w1em { width: 1em !important; }
.w2em { width: 2em !important; }
.w3em { width: 3em !important; }
.w4em { width: 4em !important; }
.w5em { width: 5em !important; }
.w6em { width: 6em !important; }
.w7em { width: 7em !important; }
.w8em { width: 8em !important; }
.w9em { width: 9em !important; }
.w10em { width: 10em !important; }
.w11em { width: 11em !important; }
.w12em { width: 12em !important; }
.w13em { width: 13em !important; }
.w14em { width: 14em !important; }
.w15em { width: 15em !important; }
.w16em { width: 16em !important; }
.w17em { width: 17em !important; }
.w18em { width: 18em !important; }
.h1em { height: 1em !important; }
.h2em { height: 2em !important; }
.h3em { height: 3em !important; }
.h4em { height: 4em !important; }
.h5em { height: 5em !important; }
.h6em { height: 6em !important; }
.h7em { height: 7em !important; }
.h8em { height: 8em !important; }
.h9em { height: 9em !important; }
.h10em { height: 10em; }
.h11em { height: 11em; }
.h12em { height: 12em; }
.h13em { height: 13em; }
.h14em { height: 14em; }
.wh1em { height: 1em; width: 1em; }
.wh2em { height: 2em; width: 2em; }
.wh3em { height: 3em; width: 3em; }
.wh4em { height: 4em; width: 4em; }
.wh5em { height: 5em; width: 5em; }
.wh6em { height: 2em; width: 6em; }
.wh7em { height: 3em; width: 7em; }
.wh8em { height: 4em; width: 8em; }
.wh9em { height: 5em; width: 9em; }

.mw6em { min-width: 6em; }
.mw7em { min-width: 7em; }
.mw8em { min-width: 8em; }

.lh1em { line-height: 1em !important; }
.lh2em { line-height: 2em !important; }
.lh3em { line-height: 3em !important; }
.lh4em { line-height: 4em !important; }
.lh5em { line-height: 5em !important; }
.lh6em { line-height: 6em !important; }
.lh7em { line-height: 7em !important; }
.lh8em { line-height: 8em !important; }
.lh9em { line-height: 9em !important; }

.m05em { margin: 0.5em !important; }

/* CONTAINERS */
.on-bubble-row {
	background-color: #f9f9f9;
	border: 1px solid #eeeeee;
	border-radius: 2em;
	margin: 0.7em 0;
}
.on-is-open {
	
}
.on-is-open-show {
	display: none;
}
.on-is-open .on-is-open-show {
	display: block;
}
.on-gen.on-disabled {
	opacity: 0.5;
}
.on-gen.on-disabled .tt-ico.fa-check-square,
.on-gen.on-disabled .tt-ico.fa-square-o {
	/* color: #b9b9b9; */
	visibility: hidden;
}
.on-disabled-show {
	display: none;
}
.on-disabled .on-disabled-show {
	display: inline-block;
}
.on-disabled .on-disabled-hide {
	display: none !important;
}
.on-disabled .on-disabled-trans {
	visibility: none !important;
}
.pdl1em  { padding-left: 1em !important; }
.pdl13em { padding-left: 1.3em !important; }
.pdl15em { padding-left: 1.5em !important; }
.pdl2em  { padding-left: 2em !important; }
.pdl25em { padding-left: 2.5em !important; }
.pdl3em  { padding-left: 3em !important; }
.pdl35em { padding-left: 3.5em !important; }
.pdl4em  { padding-left: 4em !important; }
.pdl45em { padding-left: 4.5em !important; }
.pdr1em  { padding-right: 1em !important; }
.pdr13em { padding-right: 1.3em !important; }
.pdr15em { padding-right: 1.5em !important; }
.pdr2em  { padding-right: 2em !important; }
.pdr25em { padding-right: 2.5em !important; }
.pdr3em  { padding-right: 3em !important; }
.pdr35em { padding-right: 3.5em !important; }
.pdr4em  { padding-right: 4em !important; }
.pdr45em { padding-right: 4.5em !important; }
.pad05em { padding: 0.5em !important; }
.pad1em  { padding: 1em !important; }
.pad15em { padding: 1.5em !important; }
.pad2em  { padding: 2em !important; }
.padl1em  { padding-left: 1em !important; }
.padl15em { padding-left: 1.5em !important; }
.padl2em  { padding-left: 2em !important; }
.padl25em { padding-left: 2.5em !important; }
.padr1em  { padding-right: 1em !important; }
.padr15em { padding-right: 1.5em !important; }
.padr2em  { padding-right: 2em !important; }
.padr25em { padding-right: 2.5em !important; }
.mb05em { margin-bottom: 0.5em !important; }
.mb15em { margin-bottom: 1.5em !important; }
.mb1em  { margin-bottom: 1em !important; }
.mb2em  { margin-bottom: 2em !important; }
.mr05em { margin-right: 0.5em !important; }
.mr15em { margin-right: 1.5em !important; }
.mr1em  { margin-right: 1em !important; }
.mr2em  { margin-right: 2em !important; }
.ml05em { margin-left: 0.5em !important; }
.ml15em { margin-left: 1.5em !important; }
.ml1em  { margin-left: 1em !important; }
.ml2em  { margin-left: 2em !important; }
.mt05em { margin-top: 0.5em !important; }
.mt15em { margin-top: 1.5em !important; }
.mt1em  { margin-top: 1em !important; }
.mt2em  { margin-top: 2em !important; }

/* ROTATION */
.trend-flat, .trend-asc, .trend-desc {
	min-height: 0 !important;
	text-align: center;
	font-weight: bold;
	line-height: 1em;
	font-size: 1em;
}
.trend-flat {
	color: #e4a616;
}
.trend-asc {
	transform: rotate(-45deg);
	color: #26c9db;
}
.trend-desc {
	transform: rotate(45deg);
	color: #e00016;
}
.flag-on {
	color: #e00016;
}
.rot90 {
	transform: rotate(90deg);
}

/* TAB SWITCHER */
.on-switcher .tt-but {
	background-color: #eeeeee;
	min-width: 15em;
	color: black;
}
.on-switcher .tt-but.tt-tab-active {
	background-color: #20a291;
	color: white;
}
.on-switcher .tt-but .tt-ico::before {
	content: "\f096";
}
.on-switcher .tt-but.tt-tab-active .tt-ico::before {
	content: "\f14a";
}

/* BLUE SWITCHER */
.switcher.switcher-blue .tt-but {
	background-color: #fafafa;
	color: black;
}
.switcher.switcher-blue .tt-but.tt-tab-active {
	background-color: #26c9db;
	color: white;
}

/* GENERIC LIST */
.on-list-row {
	background-color: #f9f9f9;
	border: 1px solid #eeeeee;
	align-items: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0.5em 0;
	display: flex;
	width: 100%;
}
.on-rowpad {
	padding: 0.5em 1em;
}

/* OBSERVATII */
.on-obs .on-list-row {
	border-radius: 1em;
	padding: 0.5em 1em;
}
.on-obs-text {
	border: 1px solid #eeeeee;
	background-color: #ffffff;
	border-radius: 0.5em;
	padding: 0.5em 1em;
}
.on-obs .on-list-row > .tt-fill {
	padding: 0.5em 0.5em 0.5em 1em;
}

/* LARGE TABLE */
.on-lg-table .tt-table th,
.on-lg-table .tt-table td {
	/*padding: 1em 1em;*/
	padding: 0.7em 0.5em;
}
.on-lg-table .tt-table.actions th:last-child,
.on-lg-table .tt-table.actions td:last-child {
	text-align: center;
	padding-right: 0;
	padding-left: 0;
}
.act10em .tt-table.actions th:last-child,
.act10em .tt-table.actions td:last-child {
	width: 10em;
}
.act13em .tt-table.actions th:last-child,
.act13em .tt-table.actions td:last-child {
	width: 13em;
}
.act15em .tt-table.actions th:last-child,
.act15em .tt-table.actions td:last-child {
	width: 15em;
}

.action-right .tt-table .tt-table-actions {
	justify-content: right !important;
}
.action-right .tt-table .tt-table-actions .tt-but {
	margin: 0 0.2em 0 0 !important;
}
.action-right .tt-table .tt-table-actions .tt-ico {
	margin: 0 0.3em !important;
}

.on-info-circle {
	border: 2px solid #999999;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 1em;
	display: flex;
	height: 1.6em;
	width: 1.6em;
}

.wer-pop[data-form="auth_login"] {
	max-width: 30em;
	padding: 0 1em 2em 1em;
}

.on-tog-pri > .wer-toggle-next {
	background-color: #20a291 !important;
	text-align: center;
	font-weight: 600;
	margin-top: 2em;
}
.on-tog-pri > .wer-toggle-body {
	border-color: #20a291 !important;
}
.on-tog-pri > .wer-toggle-next.wer-toggle-off, .on-tog-pri > .wer-toggle-next {
	padding: 0.5em 1em;
}

.clau { color: #ffcb00; }

.wer-fake-text {
	border: 1px solid #cacaca;
	border-radius: 0.5em;
	padding: 1em;
}

/* TABLE AVATARS */
.on-table-thumb {
	text-align: center;
}
.on-table-avatar {
	border-radius: 0.5em;
	max-height: 3.5em;
}



/* SUBPAGE & SWITCHER */
.tt-box-body.on-boxer, .on-boxer {
	background-color: #c5eae5;
	/* border-radius: 1.5em; */
	padding: 1.5em;
}
.on-boxer > .on-switcher .tt-tab.tt-but {
	background-color: transparent;
	padding: 0.75em 0.5em !important;
	border-radius: 0.8em;
	min-width: 10em;
	color: #000000;
}
.on-boxer > .on-switcher .tt-tab.tt-but.tt-tab-active {
	background-color: #ffffff;
	color: #20a291;
}
.on-boxer > .on-box,
.on-boxer > .tt-tab-box {
	background-color: #ffffff;
	/* border-radius: 0.8em; */
	padding: 1.2em 2em;
}
.on-box ~ .on-box {
	margin-top: 1.5em;
}
.on-boxer > .on-switcher .tt-tab.tt-but::before {
	background-color: rgba(255,255,255,0.4);
}

.on-hi {
	color: #ffcb00 !important;
}

.wer-intaritori-list .wer-toggle-next:first-child { margin-top: 0 !important; }

.wer-pop-body #intaritori-total {
	margin-bottom: 2em;
	padding-top: 0;
	margin-top: 0;
}
#intaritori-total > .tt-box-body {
	margin: 0.75em;
}
.wer-pop-body #intaritori-total > .tt-box-body {
	margin: 0 0.5em 0.5em 0.5em;
	border: 1px solid #f5f5f5;
	padding: 0.4em 0.7em;
}


.inline-drop {
	background-color: transparent;
	outline: none !important;
	display: inline-block;
	cursor: pointer;
	font: inherit;
	border: none;
	padding: 0;
}
.inline-drop option {
	background-color: default;
}
.inline-drop:visited {
	text-decoration: none;
	outline: none;
}
.inline-drop:focus-visible {
	outline: none;
}

/* COLORS */
.light-box {
	background-color: #f9f9f9;
	border: 1px solid #eeeeee;
	border-radius: 2em;
	padding: 1em;
}

/* CLEAR INPUT */
select.clear-input,
input.clear-input,
.wer-input.clear-input
select.clear-input:focus,
input.clear-input:focus,
.wer-input.clear-input:focus {
	background-color: transparent !important;
	border: none !important;
	text-decoration: none;
}
select.clear-input:focus-visible,
input.clear-input:focus-visible,
.wer-input.clear-input:focus-visible {
	outline: none;
}


/* LISTER CONTAINERS */
.on-scroll-30vh { max-height: 30vh; }
.on-scroll-40vh { max-height: 40vh; }
.on-scroll-50vh { max-height: 50vh; }
.on-scroll-60vh { max-height: 60vh; }
.on-scroll-70vh { max-height: 70vh; }
.on-scroll-30vh,
.on-scroll-40vh,
.on-scroll-50vh,
.on-scroll-60vh,
.on-scroll-70vh {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	border: 1px solid #eaeaea;
	overflow: auto;
	padding: 1em;
}

/* RANDOM */
.absright {
	transform: translateY(-50%);
	position: absolute;
	left: 100%;
	top: 50%;
}
.wer-input.modified.wer-valid.ttb-white { background-color: white !important; }

/* FLIPPER */
.wer-flipper-container {
	overflow: hidden;
	width: 100%;
}
.wer-flipper-slide {
	transition: transform 0.3s ease-in-out;
	flex-direction: row;
	align-items: center;
	display: flex;
}
.wer-flipper-page {
	transition: 0.8s ease-in-out;
	max-height: 5vh;
	flex-shrink: 0;
	width: 100%;
	opacity: 0;
}
.wer-flipper-page.current {
	max-height: 200vh;
	opacity: 1;
}