/* CSS Document */
input[type="button"], 
input[type="submit"], 
.LinkButton, .link-button {
    background-color: var(--color-flexer-rosso-corsa);
    background-color: var(--color-flexer-indigo-dye);
    color: #FFF !important;
    font-weight: 400;
    border-radius: 50px;
    display: inline-block;
/*    padding: 10px;*/ 
    border: 1px solid var(--color-flexer-rosso-corsa);
    border: 1px solid var(--color-flexer-indigo-dye);
    text-align: center;
    min-width: 100px;
    cursor: pointer;
    line-height: 28px;
    padding: 3px;
    padding: 5px; 
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
/*
input[type="button"]:hover, input[type="submit"]:hover, .LinkButton:hover {
    background-color: #FFF;
    color: #e10a0a !important;
    border: 1px solid #e10a0a;
}
*/
.link-button.disabled,
.LinkButton.disabled {
    background-color: #CCC;
    border-color: #999;
    color: #999 !important;
    pointer-events: none;
}
.LinkButton.blue {
	background-color: var(--color-flexer-indigo-dye);
	border-color: var(--color-flexer-indigo-dye);
}
.LinkButton.Plus {
	min-width: unset;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	text-align: center;
	font-size: 20px;
	position: absolute;
	right: 25px;
	top: -20px;
	font-weight: 400;
	z-index: 1;
}
input[type="button"]:hover, 
input[type="submit"]:hover, 
.LinkButton:hover, .link-button:hover {
    background-color: var(--color-flexer-rosso-corsa);
    border: 1px solid var(--color-flexer-rosso-corsa);
}
input:focus {
    outline: none;
}
input[type="text"], 
input[type="number"], 
input[type="date"], 
input[type="time"], 
input[type="datetime"], 
input[type="password"], 
input[type="file"], 
input[type="tel"], 
input[type="email"], 
select {
    border: 1px solid var(--color-flexer-blue-grey);
    border-radius: 50px;
    width: 100%;
    min-width: 200px;
    display: block;
    padding: 10px;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 400;
}
select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
	background-image: url('../Icons/v1/arrow-blue-grey.svg') !important;
	background: no-repeat;
	background-position: right 10px center;
	background-size: 20px !important;
}
input[type="time"] {
	padding-top: 8.5px;
	padding-bottom: 8.5px;
}
input[type="number"] {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 26px;
}
input[type="text"]:focus, 
input[type="password"]:focus {
    animation: FocusInput 0.5s; 
    border-color: var(--color-flexer-navy) !important;
}
@keyframes FocusInput {
    from {
        border-color: var(--color-flexer-blue-grey);
    }
    to {
        border-color: var(--color-flexer-navy);
    }
}
/* The container must be positioned relative: */
.custom-select {
    position: relative;
    height: 38px;
    border-radius: 5px;
    border: 1px solid var(--color-flexer-blue-grey);
    font-weight: 400;
    width: 100%;
    max-width: 100%;
}
.custom-select:focus {
    animation: FocusInput 0.5s;
    border-color: var(--color-flexer-navy);
}
.custom-select select {
    display: none; /*hide original SELECT element:*/
}
.custom-select-std select {
	border-radius: 5px;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-top-width: 0px !important;
    border-color: var(--color-flexer-blue-grey);
}
.select-selected {
    background-color: #FFF;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 15px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--color-flexer-navy) transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    color: #393536;
    font-weight: 400;
    padding: 10px;
    border: none;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
}
.select-items div {
    color: #FFF;
    border-radius: 0;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: var(--color-flexer-navy);
    color: #FFF;
    top: 33px;
    left: -1px;
    right: 0;
    border-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 5;
    width: 100%;
    overflow: auto;
    max-height: 300px;
}
iframe::-webkit-scrollbar,
.check-box::-webkit-scrollbar,
.select-items::-webkit-scrollbar {
    width: 5px;
}
iframe::-webkit-scrollbar-track,
.check-box::-webkit-scrollbar-track,
.select-items::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
iframe::-webkit-scrollbar-thumb,
.check-box::-webkit-scrollbar-thumb,
.select-items::-webkit-scrollbar-thumb {
    background-color: #393536;
    outline: 1px solid #CCC;
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}
.select-items div:hover, .same-as-selected {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.1);
}
.checkbox {
    width: 30px;
    margin: 10px;
    margin-left: 0;
    position: relative;
    display: inline-block;
    line-height: 50px;
    height: 30px;
}
.checkbox label {
    cursor: pointer;
    position: absolute;
    height: 30px;
    top: 0;
    left: 0;
    background: #eee;
    border: 1px solid #ddd;
}
.checkbox label:after {
    opacity: 0.2;
    content: '';
    position: absolute;
    width: 9px;
    height: 5px;
    background: transparent;
    top: 6px;
    left: 7px;
    border: 5px solid #333;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}
.InfoField .check-box {
    position: relative;
    border-radius: 5px;
    border: 1px solid #efefef;
    font-weight: 400;
	width: 370px;
	max-width: 370px;
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top: none;
	width: 370px;
	height: 300px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.InfoField .check-box cbitem {
	display: block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	
}
.InfoField .check-box cbitem.checkbox input {
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	max-height: 30px;
	min-height: 30px;
}
.InfoField .check-box cbitem.checkbox label {
	height: 30px;
	line-height: 30px;
	width: 100%;
	padding-left: 30px;
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.checkbox label:hover::after {
    opacity: 0.5;
}
.checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}
input[type="range"] {
    width: 100% !important;
}
input[type="range"]:focus {}
label {
    font-weight: 600;
}
.ui-datepicker .ui-datepicker-title {
    margin: 0 !important;
}
select.ui-datepicker-year,
select.ui-datepicker-month {
    display: inline;
    width: 50px;
    min-width: 50px;
    margin-left: 5px !important;
    margin-right: 5px !important;
    height: 38px;
}
.ui-selectmenu-menu ul li.ui-state-disabled:first-of-type {
    display: none;
}
.Section .InfoField, 
#PUC.Module .Section .InfoField {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    min-width: 300px;
    width: calc(100% / 2 - 15px);
    max-width: 400px;
    margin-left: 7.5px;
    margin-right: 7.5px;
}
@media screen and (max-width: 999px) {
    .Section .InfoField, 
    #PUC.Module .Section .InfoField {
        max-width: calc(100% - 15px);
        width: calc(100% - 15px);
        min-width: 338px;
    }
}
@media screen and (max-width: 599px) {
    .Section .InfoField, 
    #PUC.Module .Section .InfoField {
        max-width: calc(100% - 15px);
        width: calc(100% - 15px);
        min-width: 338px;
        margin-left: 7.5px;
        margin-right: 7.5px;
    }
}
.Section .InfoField .InputField,
#PUC.Module .Section .InfoField .InputField {
    border: 1px solid var(--color-flexer-blue-grey);
    border-radius: 5px;
    min-width: 200px;
    padding: 10px;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 400;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-width: 100%;
    width: 100%;
    display: block;
    border-top: none;
    min-height: 38px;
    position: relative;
}
.Section .InfoField.span {
    width: calc(100% - 15px);
    max-width: calc(800px + 15px);
}
.Section .InfoField input, 
#PUC.Module .Section .InfoField input {
	border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-width: 100%;
    width: 100%;
    display: block;
    border-top: none;
	min-height: 38px;
}
.Section .InfoField input[type="radio"] {
	min-height: unset;
}
.Section .InfoField .InputField input[type="radio"], 
#PUC.Module .Section .InfoField .InputField input[type="radio"] {
    width: 13px;
    margin-right: 5px;
    display: inline-block;
	min-height: unset !important;
}
.Section .InfoField .InputField input[type="text"] {
    border: 1px solid var(--color-flexer-blue-grey);
    border-radius: 50px;
    width: 100%;
}
.Section .InfoField .InputField ul {}
.Section .InfoField .InputField ul li {
    list-style: none;
    padding: 10px;
    background-color: var(--color-grey-nxl);
    border-radius: 50px;
    margin-bottom: 5px;
    position: relative;
}
.Section .InfoField .InputField ul li a {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: var(--color-flexer-navy);
    border-radius: 50%;
    color: #FFF;
    display: block;
    position: absolute;
    right: 8px;
    top: 8px;
	animation: unset;
}
.Section .InfoField .InputField ul li a:hover {
	background-color: var(--color-flexer-rosso-corsa);
	color: #fff !important;
}
.Section .InfoField .InputField label, 
#PUC.Module .Section .InfoField .InputField label {
    margin-right: 20px;
}
.Section .InfoField span,
#PUC.Module.Section .InfoField span {
    display: block;
    padding: 10px;
    background-color: var(--color-grey-nxl);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #393536;
    font-weight: 400;
    border: 1px solid var(--color-flexer-blue-grey);;
    width: 100%;
    text-align: left;
    position: relative;
}
.Section .InfoField .custom-select,
#PUC.Module .Section .InfoField .custom-select {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
    width: 100%;
}
.Section .InfoField .check-box, 
#PUC.Module .Section .InfoField .check-box {
    position: relative;
    border-radius: 5px;
    border: 1px solid var(--color-flexer-blue-grey);;
    font-weight: 400;
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
    width: 100%;
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
}
.Section .InfoField .check-box skill {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
}
.Section .InfoField .check-box skill input {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
}
.Section .InfoField .check-box skill label {
    height: 30px;
    line-height: 30px;
    width: 100%;
    padding-left: 30px;
    font-weight: 400;
}
.Section .InfoField .text-area {
    position: relative;
    border-radius: 5px;
    border: 1px solid var(--color-flexer-blue-grey);;
    font-weight: 400;
    max-width: 100%;
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
    width: 100%;
    height: 300px;
}
.Section .InfoField .general {
    position: relative;
    border-radius: 5px;
    border: 1px solid var(--color-flexer-blue-grey);;
    font-weight: 400;
    max-width: 100%;
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
    width: 100%;
    padding: 15px;
    height: auto;
}
.Section .InfoField .text-area textarea {
    width: 100%;
    height: 100%;
    border: none;
    resize: none;
    font-weight: 400;
    padding: 10px;
    border-radius: 5px;
}
input[type="radio"] {
    display: inline-block !important;
    width: 25px !important;
}
.InputAlign {
    position: relative;
    width: 400px;
    height: 30px;
    line-height: 30px;
}
.InputAlign span {
    float: right;
}
info {
    background-image: url("../Icons/svg/info.svg");
    width: 15px;
    height: 15px;
    cursor: pointer;
    overflow: hidden;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    padding-top: 15px;
    margin-top: 0px;
    font-size: 11px;
    text-align: right;
    position: absolute;
    right: 0;
    right: 10px;
}
info:hover {
    background-image: url("../Icons/svg/info.svg");
    width: auto;
    max-width: 200px;
    height: auto;
    cursor: pointer;
    background-image: url();
    margin-top: 0px;
    background-color: #FFF;
    border: 1px solid #CCC;
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
}
#PageContent .Section.ValidationErrors, .PageContent .Section.ValidationErrors {
    border-color: var(--color-flexer-navy);
}
#PageContent .Section.ValidationErrors h2, .PageContent .Section.ValidationErrors h2 {
    color: var(--color-flexer-navy);
}
#PageContent .Section.ValidationErrors ul, .PageContent .Section.ValidationErrors ul, #PUC.Module.Verify ul {
    margin-left: 15px;
}
.InfoField .general * {
    box-sizing: border-box;
}
.InfoField .general span.check-box {
    all: unset;
    position: relative;
    line-height: 30px;
    overflow: hidden;
    vertical-align: top;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-bottom: 5px;
    border: 1px solid var(--color-flexer-blue-grey);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.InfoField .general span.aspNetDisabled.check-box {
    border: 1px solid var(--color-flexer-blue-grey) !important;
}
.InfoField .general span.check-box input[type="checkbox"] {
    width: 15px !important;
    height: 15px !important;
    vertical-align: middle;
    display: inline-block;
    line-height: 30px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin: 5px;
    margin-top: 2px;
    margin-left: 7px;
}
.InfoField .general span.check-box label {
    width: calc(100% - 30px);
    cursor: pointer;
    line-height: 30px;
    font-weight: 300;
}
.InfoField .general span.check-box:hover {
    background-color: var(--color-grey-nxl);
}
.InfoField.Currency {
    position: relative;
    z-index: 1;
}
.InfoField.Currency input {
    padding-left: 25px;
    position: relative;
}
.InfoField.Currency::after {
    content: 'R';
    font-weight: 600;
    color: var(--color-flexer-navy);
    line-height: 38px;
    position: absolute;
    left: 0;
    bottom: 10px;
    display: block;
    width: 25px;
    height: 38px;
    min-width: 30px;
    z-index: 10;
    text-align: center;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked + .slider {
    background-color: #2196F3;
}
input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
.ui-datepicker-prev,
.ui-datepicker-next {
    display: none;
}
.actions {
    position: absolute;
/*    width: calc(100% - 250px);*/
    width: calc(100% - 0px);
    right: 0px;
    bottom: 0px;
    padding: 5px;
    line-height: 40px;
    background-color: var(--color-grey-nxl);
    border-top: 1px solid #A3AFBF;
    text-align: right;
	z-index: 2;
}
@media screen and (max-width: 599px) {
    .actions {
/*        width: calc(100% - 55px);*/
        width: calc(100% - 0px);
    }
    .LinkButton.span, .link-button.span {
        width: 100%;
    }
}

.filters {
    width: 100%;
    background-color: #FBFBFB;
    border: 1px solid#efefef;
    display: block;
    height: auto;
    border-radius: 25px;
	line-height: 30px;
	padding: 5px;
	position: relative;
}
input[type="text"]#search,
.filters input[type="text"] {
	line-height: 20px;
	margin-bottom: 0px;
	padding: 8px;
	width: 30%;
	background-size: 20px;
	background-position: 8px 8px;
	background-repeat: no-repeat;
	padding-left: 40px;
	font-size: 15px;
}
input[type="text"]#search {
	background-image: url('../Icons/svg/search-2.svg');
}




/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: #e10a0a;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #e10a0a;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

div.li ul {
	padding-left: 25px;
}
div.li ul li {
	list-style: none;
	position: relative;
}
div.li ul li::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-color: #e10a0a;
	position: absolute;
	left: -20px;
	top: 7px;
	border-radius: 50%;
}