@font-face {
    font-family: 'Lato';
    src: url('/site_media/css/fonts/Lato-Regular.ttf');
}

:root {
	--main-bg-color: linear-gradient(#00a513, #004f05);
	--main-focus-bg-color: linear-gradient(#00a013, #004005);
	--hover-bg-color: linear-gradient(#666, #080808);
    --active-bg-color: linear-gradient(#b3b3b3, #666);
	--header-bg-color: linear-gradient(#777777, #333333);
    --checkbox-checked-bg-color: #00a513;
    --default-buttons-color: #008b10;
    --default_bg-color: #00a513;
    --default_sub_bg-color: #388938;
    --default_table_tr_bg: #CCEEDD;

}

html[data-theme="fac_cloud"] {
    --main-bg-color: linear-gradient(#425467, #6b7f95);
    --nav-menu-item-selected_color: #3d668f;
    --nav-category-header-active: #3b80c5;
    --sidepanel-bg-color: #374554;
    --checkbox-checked-bg-color: #3793ef;
    --default-buttons-color: #488dd3;
    --default_bg-color: #6d8095;
    --default_sub_bg-color: #8da5bf;
    --default_table_tr_bg: #cad7e5;
}

body {
    color: black;
    font-family: Lato, Helvetica,Arial,sans-serif;
	font-size:12px;
}
body.waiting * {
    cursor: wait !important;
}

a.sync:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
}

h1 {
    font-size:18px;
}

h2 {
    font-size:15px;
}

h3 {
    font-size:15px;
    font-weight: 400;
    color : rgba(0,0,0,.5);
}

p {
    margin: .2em 0 .8em 0.2em;
}

select {
	height: 22px;
}

tr select {
	height: 30px;
}
div#variables{
    display: block;
}
form .jstree ul {
    margin: 0 !important;
    padding: 0 !important;
}

label.error {
    color: #990000; 
    padding-left: 2px;
    white-space: nowrap;
}

label[for="searchbar"] img, div.searchbar img {
    vertical-align: middle;
}

div.searchbar {
	margin-top: 5px;
}

input:focus, textarea:focus {
    -webkit-box-shadow: 0 1px 2px #CCCCCC inset;
    -moz-box-shadow: 0 1px 2px #CCCCCC inset;
    box-shadow: 0 1px 2px #CCCCCC inset;
    border-color: orange;
}

span.counter {
    color: #777777;
    font-size: 11px;
    padding-left: 10px;
}

table tr.log_selected {
    background-color:#62A4F6 !important;
}
table tr.log_debug {
    background-color: #C1DCDC;
}

table tr.log_information {
    background-color: #E8E8E8;
}

table tr.log_notice {
    background-color: var(--default_table_tr_bg);
}

table tr.log_warning {
    background-color: #C8C8FF;
}

table tr.log_error {
    background-color: #FFFFB0;
}

table tr.log_critical {
    background-color: #E8E8E8;
}

table tr.log_alert {
    background-color: #FFC0A3;
}

table tr.log_emergency {
    background-color:#FFA0A0;
}

table.form_list td, table.form_list th {
    vertical-align: middle;
}

table.widgets {
    border-collapse: separate;
    width: 100%;
}

table.widgets td,
table.widgets th {
    border-bottom: none;
    width: 33%;
}

table thead th .text span {
    padding: 0px;
}
td, th {
    font-family: Lato, Helvetica,Arial,sans-serif;
    padding: 5px;
    vertical-align: middle;
}

thead th {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-transform: capitalize;
}

ul.dropdown {
    display: none; /* Hide initially */
    border: 1px solid rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 12px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 3px 12px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 12px rgba(0,0,0,0.2);
    margin: 0;
    padding: 0;
    position: absolute;
}

ul.dropdown.pull-right {
    right: 0;
    left: auto;
}

ul.dropdown > li {
    background: #EEEEEE;
    border: none;
    border-bottom: 1px solid #DCDCDC;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

ul.dropdown > li:last-child {
    border-bottom: none;
}

ul.dropdown > li > a:hover {
    background: #888888;
    color: white;
    text-shadow: none;
}

ul.dropdown > li > a {
    color: black;
    display:block;
    height: 25px;
    min-width: 80px;
    line-height: 25px;
    padding: 0px 10px;
    vertical-align: middle;
    white-space: nowrap;
}

ul.dropdown > li > a.link_disabled,
ul.dropdown > li > a:hover.link_disabled {
    background: #EEEEEE;
}

ul.dropdown > li > a.link_disabled {
    color: black;
    cursor: default;
    opacity: 0.4;
}

li.dropdown-toggle {
    position: relative;
}

li.dropdown-toggle > a {
    padding-left: 8px;
    padding-right: 8px;
}

ul.horizontal {
    margin: 0;
    padding: 0;
}

ul.horizontal li {
	float: left;
	list-style-type: none;
	margin: 5px;
	padding: 0 0;
}
#right-menu-bar ul.horizontal li {
	margin: 7px;
}

ul.messagelist li {
    margin: 0;
	background: #dfd url(/site_media/admin/img/icon-yes.svg) 5px 6px no-repeat;
	padding: 6px 4px 6px 25px;
	font-size: 12px;
	background-size: 14px auto;
}
ul.messagelist li.error {
    background: #ffefef url(/site_media/admin/img/icon-no.svg) 5px 6px no-repeat;
	font-size: 12px;
	background-size: 15px auto;
}
ul.messagelist li.warning {
    background: #ffc url(/site_media/admin/img/icon-alert.svg) 5px 6px no-repeat;
	font-size: 12px;
    background-size: 14px auto;
}

ul.messagelist li.none {
    background-image: none;
    line-height: 25px;
    padding-top: 0;
    padding-bottom: 0;
}

ul.vertical-menu > li {
    float: none;
    height: 25px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

div.inline-loading {
    display: inline;
    padding: 0 10px;
}

div.loading {
    text-align: center;
    width: 100%;
}

div.loading span {
    vertical-align: middle;
}

div.loading span.large {
    background: url('../forti_styles/images/loading_48.gif') no-repeat;
    background-position: center center;
    display: inline-block;
    opacity: 0.5;
    height: 48px;
    width: 48px;
}

div.loading span.small {
    background: url('../forti_styles/images/loading.gif') no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
}

.b_actions {
    padding-left: 5px;
}

.button.narrow, .button.narrow:active {
	padding: 5px;
	font-size: 11px;
}

.button.wide, .button.wide:active {
	padding: 10px 15px;
	font-size: 11px;
}

/* Submit row buttons */
.submit-row button,
.submit-row input[type="button"],
.submit-row input[type="submit"] {
    min-width: 120px;
    height: 34px;
    cursor: pointer;
	border-radius: 4px;
	padding: 2px 3px;
	float: none;
}

/* Submit buttons */
.submit-row input[type=submit].default{
    text-transform: none;
}

button.default, .button.default, input[type=submit].default, .submit-row input.default {
    color: #fff;
    background: var(--main-bg-color);
    font-weight: 600;
}

/* Default buttons */
button, .button, input[type="submit"], input[type="button"]
{
    height: 21px;
	padding: 0px 10px;
    color: var(--default-buttons-color);
    background: linear-gradient(#fff, #f6f6f6);
    border-color: #ccc;
	border-style: solid;
	border-width: 1px;
	border-radius: 4px;
	margin: 0px 5px;
	font-size: 11px;
	transition: 0.3s;
	transition-timing-function: ease-out;
    min-width: 90px;
    cursor: pointer;
    white-space: nowrap;
}
.filter-submit input{
    margin: 3px 5px;
}

/* Hover buttons */
button:active, button:focus, button:hover,
.button:active, .button:focus, .button:hover,
input[type=submit]:active, input[type=button]:active,
input[type=submit]:focus, input[type=button]:focus,
input[type=submit]:hover, input[type=button]:hover {
	color: #fff !important;
	opacity: 0.75;
}

button:focus, 
button:hover, 
.button:focus, 
.button:hover,
input[type=submit]:focus, 
input[type=button]:focus,
input[type=submit]:hover, 
input[type=button]:hover {
    background: var(--hover-bg-color) !important;
}

button:active, 
.button:active, 
input[type=submit]:active, 
input[type=button]:active, 
.submit-row input:active {
    background: var(--active-bg-color) !important;    
}

button[disabled], .button[disabled], .button[disabled].default,
input[type=submit][disabled], input[type=button][disabled],
input[type=submit][disabled].default, input[type=button][disabled].default {
    background-position: bottom;
    opacity: 0.4;
    pointer-events: none;
    border-color: #ccc;
}

.submit-row button.button[name="wizard_goto_step"],
.submit-row button.button[name="resend-code"] {
	min-width: 120px;
	height: 2.5em;
	cursor: pointer;
	color: #008b10;
	background: linear-gradient(#fff, #f6f6f6);
	border-color: #ccc;
	padding-top: 0px;
	font-weight: 400;
	font-size: 12px;
	border-radius: 4px !important;
}

.btn-link {
    background: none !important;
    border: none !important;
    border-radius: unset;
    box-shadow: none;
    color: #447e9b;
    height: auto;
    margin: 0;
    min-width: unset;
    padding: 0;
    text-decoration: none;
}

.btn-link[disabled] {
    opacity: 0.4;
    pointer-events: none;
}

.btn-link:hover,
.btn-link:focus,
.btn-link:active,
.btn-link:visited {
    background: none !important;
    color: #447e9b;
    opacity: 1;
    text-decoration: none;
}

.btn-link:focus,
.btn-link:hover {
    color: #036 !important;
    text-decoration: underline;
}

#windows-event-buttons input[type="button"].windows-event-button {
    color: #008b10;
}

.crt_active, .nroll_approved, .user-active {
    color: green;
}

.crt_expired, .nroll_rejected, .user-inactive {
    color: red;
}

.crt_pending, .nroll_pending, .user-locked {
    color: #FF6600;
}

.crt_revoked {
    color: #0A339C;
}

.disabled {
    color: #777777;
}

.editable input {
    margin-right: 5px;
}

.help_info {
    color: gray;
    font-size: 11px;
    font-style: italic;
    padding-left: 18px;
}

.list_action {
    cursor: pointer;
}

.list_action:hover {
    opacity: 0.6;
}

.tree {
    padding: 2px 0px;
}

.menu a {
	color: black;
	display: block;
	height: 22px;
	padding: 5px 5px 0px;
	transition: 0.3s;
	cursor: pointer;
}

.menu > li > a:hover {
    background: #e6e6e6;
    color: black;
}

.menu > li > a.link_disabled,
.menu > li > a.link_disabled:hover {
    color: #b8b8b8;
    cursor: default;
    background: none;
    text-shadow: none;
}

.menu li {
	border: 1px solid #b8b8b8;
	box-shadow: 1px 0 0 #EEEEEE;
	-moz-box-shadow: 1px 0 0 #EEEEEE;
	-webkit-box-shadow: 1px 0 0 #EEEEEE;
	height: 27px;
	font-size: 15px;
	font-weight: 400;
	border-radius: 2px;
}

.module h2, .module caption, .inline-group h2 {
    background: var(--header-bg-color);
    color: white;
	text-transform: Capitalize;
	border-radius: 3px;
}
div.selector-chosen h2 {
    background: var(--header-bg-color);
    color: #fff;
}
div.selector .selector-available h2, div.selector-chosen h2 {
    height: 15px;
    padding: 5px 8px;
	font-size: 12px
}

.not-configured {
    color: #ee4400;
}

.num_children {
    color: #FF4000;
    font-size: 80%;
    margin-left: 5px;
    vertical-align: top;
}

.paginator .pagesize {
    float: right;
}

.content_header {
    font-weight: 400;
    margin-top: 0px;
    padding-left: 0px;
}

.content_header h2, .content_header h3, #menu-bar-container > h1 {
	color: #262626;
	background: linear-gradient(#f1f1f1, #c1c1c1);
	line-height: 22px;
	margin: 0;
	padding: 7px 0px 4px 10px;
	font-family: Lato,Helvetica,Arial,sans-serif;
    font-weight: 400;
    text-align: left;
}

fieldset.module .form-row,
fieldset.module .form-row label,
fieldset.module .form-row p {
    font-size: 15px;
    font-weight: 400;
    color: #262626;
    border : none;
}

div#content.colM {
    padding: 0px;
}

div label{
    margin-left: 0px;
}

fieldset.module {
	margin: 0;
	border: none;
	background: white;
}

.content_header .popup_close {
    cursor: pointer;
    position: absolute;
    top: 7px;
    right: 10px;
}

.inline-popup-content {
    padding: 5px 15px;
}

.result_list table thead th {
    color: #262626;
    border: 1px solid #b4b4b4;   
    background: #f6f6f6;
    height: 35px;
    text-align: center;
    vertical-align: middle;
    white-space: normal !important;
}

.result_list table thead th.sorted {
    background-position: 0 0 !important;
}

.result_list table thead th a:link,
.result_list table thead th a:visited {
    color: #262626;
}
.result_list table thead th a:hover,
.result_list table thead th:hover {
	background-image: linear-gradient(#fff,#eee);
}

#result_list tbody tr td, #result_list tbody tr th {
    font-size: 15px;
    line-height: 21px;
    transition: 0.5s;
}

#result_list tbody tr td a:link, 
#result_list tbody tr td a:visited, 
#result_list tbody tr th a:visited, 
#result_list tbody tr th a:link,
#result_list tbody tr th {
    color: #262626;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px!important;
}


.result_list .sorted a {
    margin-right: 4px;
}

.search_default {
    color: gray;
    font-style: italic; 
}

.static-usage-meter {
    background: none repeat scroll 0 0 #8A8A8A;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 -1px 1px rgba(255, 255, 255, 0.3) inset;
    float: left;
    height: 1.2em;
    margin-right: 5px;
    padding: 1px;
    position: relative;
    width: 55%;
}
.static-usage-meter > span {
    background-color: #486A9F;
    border-radius: 3px 3px 3px 3px;
    display: inline-block;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.static-usage-meter label {
	color: white;
	font-weight: bold;
	left: 44%;
	position: absolute;
	margin-top: -1px;
}

.token-status_-1 {
    color: red;
}

.token-status_0 {
    color: gray;
}

.token-status_1 {
    color: green;
}

.token-status_2 {
    color: orange;
}

.token-status_3 {
    color: black;
}

.user-status {
    margin-left: 5px;
    vertical-align: middle;
}

#container {
    min-width: 800px;
}

#content.colM div.padded-container {
    margin-left: 15px;
}

#content.clear-pad {
    margin: 0;
    padding: 0px;
}

#changelist {
    border-left: none !important;
    border-right: none !important;
    position: static !important;
}

#changelist.module {
    border-top: 0;
}

#changelist .actions .buttons {
    font-size: 12px;
    padding: 5px;
}

#changelist table td,
#changelist table th {
    text-align: center;
    white-space: nowrap !important;
}
#changelist table thead th.action-checkbox-column {
    width: 23px !important;
    text-align: center;
}

#changelist table tbody tr:hover td,
#changelist table tbody tr:hover th {
    background-color: #f6f6f6;
}

#changelist .sortoptions .sortremove {
    margin-right: 0;
}

#changelist .sortoptions .sortpriority {
    font-size: 9px !important;
}

#detail_view {
    background-color:#FFFFFF;
    border: 1px solid black;
    height: 100%;
    overflow: auto;
    position: fixed;
    right: -31%;
    vertical-align:top;
    min-width: 0px;
    width: 30%;
    z-index: 9999;
    transition: 0.3s;
}

#detail_view table tr.sub_title th {
    background-color: var(--default_sub_bg-color);
    color: white;
    text-align: center;
}

#detail_view table td, 
#detail_view table th {
    line-height: 12px;
    vertical-align: middle;
}

#detail_view table .label {
    white-space: nowrap;
}

#detail_view .header {
    background-color: var(--default_bg-color);
    border-bottom: 1px solid #222222;
    color: white;
    height: 25px;
}

#detail_view .header .detail_title {
    font-weight:bold;
    left:0;
    position:absolute;
    text-align:center;
    top:5px;
    width:100%;
}

#detail_view .header .close {
    cursor:pointer;
    height:14px;
    position:absolute;
    right:5px;
    top:2px;
    width:14px;
}

#detail_view_data td.value {
    width: 100%;
    /* word break is a CSS3 rule to tell the browser that it's ok to break
       standard language rules for how words may be split for wrapping. */
    word-break: break-all;
    word-wrap: break-word;
}

a#download_link {
    color: black;
    display: table;
    height: 22px;
    padding: 5px 5px 0px;
    margin: 10px 0px;
    font-size: 15px;
  }

#fixed_table_header {
    position: fixed;
    z-index: 9;
}

#fixed_table_header table {
    table-layout: fixed;
}

#log_record_list table tbody td,
#log_record_list table tbody th {
    line-height: 20px;
    text-align: center;
}

#log_record_list table tbody td {
    border: 1px solid #e6e6e6;
}

#login_wij a, #login_wij button {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

#login_wij ul li button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 5px;
}

#login_wij ul {
    background-color: #555555;
    display: inline-block;
}

#login_wij ul li {
    border-bottom: 1px solid #777777;
    border-right: 1px solid #777777;
    font-size: 12px;
    line-height: 25px;
}

#login_wij ul li * {
    line-height: 100%;
    padding: 6px 8px;
}

#login_wij {
    color: white;
    min-width: 250px;
}

#login_wij #login_button:hover {
    background-color: #777777;
}

#result_list tbody th a {
    font-size:15px;
}

table#result_list tbody tr:hover {
    background: #f6f6f6;
}

#org_edit_table {
    width: 100%;
}

#org_edit_table td {
    height: auto;
    border-bottom-style: none;
}

#org_members_table {
    width: 100%;
}

#org_image_container img {
    border: 1px solid #ccc;
}

#org_image_container {
    text-align: center;
}

#filter_button {
    color: black;
}

#filter_button span {
    font-size: 15px;
    margin-top: 11px;
}

#changelist-filter {
    position: fixed !important;
    top: 30px !important;
    right: 0px !important;
    margin-top: 1px  !important;
    display: none;
}

#filter-menu-bar {
    width: 100%;
    height: 32px;
    position: fixed;
    top: 40px;
    background: #FFF;
}

#filter-menu-bar ul {
    margin-top: 1px;
    position: fixed;
}

#filter-menu-bar li {
    height: 15px;
    margin: 5px 10px;
    background: aliceblue;
    border: 1px solid;
    border-color: gray;
    border-radius: 5px;
    color: #000;
    display: block;
    padding: 2px 10px 2px 5px;
}

#filter-menu-bar li a,
#filter-menu-bar li a:link,
#filter-menu-bar li a:hover,
#filter-menu-bar li a:visited,
#filter-menu-bar li a:active {
    padding: 2px 3px 0px 3px;
    color: aliceblue;
    background: #c10000;
    border-radius: 20px;
}

#filter-menu-bar .labelname {
    font-weight: bold;
}

#filter-menu-bar .close {
    color: rgb(134, 60, 60);
    margin-right: 4px;
}

span.errornote p {
    font-size: 13px;
    font-weight: bold;
    margin: 0;
}

span.errornote li {
    font-size: 12px;
}

/*****************************************************************
 * ICONS Definition 
 * Note: class that contains image-grid needs to be defined first
 *****************************************************************/
.arrowdown {
    width: 0;
    height: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #000000;
    content: "";
}

.arrowdown.menubar {
    display: inline-block;
    padding-left: 0;
    vertical-align: middle;
    margin-bottom: 0px;
	margin-left: 5px;
}

.list_sprite {
    background: url("../forti_styles/images/menubar/tool_sprites.png") no-repeat scroll 0 0 transparent;
    display: inline-block;
    height: 16px;
    min-width: 16px;
    padding: 0 2px;
    vertical-align: middle;
    width: 16px;
}

/* TODO this is a generalized version of tool_sprite. But due to
 * tool_sprite being used in many places, the rule has been copied here to
 * avoid breaking existing styles. In the future we want to trim style
 * definition in tool_sprite and use tool_sprite together with menu-icon rule
 */
.menu-icon {
    display: block;
    height: 16px;
    line-height: 16px;
    margin: 5px 0;
}

i.fa.title-icon {
    display: block;
    height: 16px;
    line-height: 16px;
    margin: 5px 5px;
    color: rgb(46, 52, 54);
    text-indent: 0px;
}

.new_icon {
    background-position: 0 0;
}

.edit_icon {
    background-position: 0 -16px;
}

.del_icon {
    background-position: 0 -32px;
}

.download_icon {
    background-position: 0 -144px;
}

.import_icon {
    background-position: 0 -160px;
}

.star_icon {
    background-position: 0 -320px;
}

.export_icon {
    background-position: 0 -352px;
}

.table_icon {
    background-position: 0 -400px;
}

.disable_icon {
    background-position: 0 -464px;
}

.enable_icon {
    background-position: 0 -480px;
}

.twistie_show {
    background-position: 0 -720px;
}

.twistie_hide {
    background-position: 0 -736px;
}

.revert_icon {
    background-position: 0 -912px;
}

.toolmgmt_icon {
    background-position: 0 -960px;
}

.sync_icon {
    background-position: 0 -1152px;
}

.collapsed_icon {
    background-position: 0 -1040px;
}

.expanded_icon {
    background-position: 0 -1056px;
}

.approve_reject_icon {
    background-position: 0 -1072px;
}

.exclude_icon {
    background-position: 0 -1088px;
}

.include_icon {
    background-position: 0 -1104px;
}

.reference_icon {
    background-position: 0 -1120px;
}

.logoff_icon {
    background-position: 0 -1136px;
}

.revoke_icon {
    background-position: 0 -1168px;
}

.set_default_icon {
    background-position: 0 -1184px;
}

.unlock_icon {
    background-position: 0 -1200px;
}

.unlock_icon {
    background-position: 0 -1200px;
}

.play_icon {
    background-position: 0 -1217px;
}

.stop_icon {
    background-position: 0 -1233px;
}

.convert_icon {
    background-position: 0 -1252px;
}

.refresh_icon {
    background-position: 0 -112px;
}

.clear_icon {
    background-position: 0 -208px;
}

.time_icon {
    background-position: 0 -848px;
}

.check_icon {
    background-position: 0 -1008px;
}

.filter_icon {
    background-position: 0 -1024px;
}

.print_icon {
    background-position: 0 -512px;
}

.mobile_icon {
    background-position: 0 -926px;
}

.horizontal-icon {
    margin-right : 5px;
    vertical-align: middle;
}

.content-icon {
    color: royalblue;
    margin: 0 10px;
}

.action-counter.counter{
    padding-top: 0px;
}

.table__action-icon,
.table__action-icon.fa {
    font-size: 15px;
    margin-top: 11px;
}

/* jQuery Layout */
.ui-layout-pane {
  border: 1px solid #BBBBBB;
}
.ui-layout-resizer {
  background: #DDDDDD;
}
/* END - jQuery Layout */

/* Make a link look disabled, and not be able to be clicked. */
.disabled-link {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

ul#id_ha_monitored_ifaces * {
    font-size: 15px;
    margin-right: 5px;
}

p.instruction {
    margin-left: 12px;
}

tr.dynamic-snmp_hosts td.queries, tr.dynamic-snmp_hosts td.traps {
    font-size: 15px;
}

#content .required label, #content label.required {
	font-weight: 400 !important;
	color: #333 !important;
}

#cboxClose {
    background: none;
    border: 0;
}

#content a.selector-chooseall,
#content a.selector-clearall {
    font-weight: 400;
    background: none;
    cursor: pointer;
}

#content .submit-row {
    background: #f6f6f6;
    border: none;
}

#log_debug_button {
    margin-right: 0px;
}

#log_debug_dropdown_button {
    margin-left: 0px;
}

.local-users-dropdown .menubar.arrowdown {
    margin-bottom: 0px;
    margin-left : 5px;
}

#guest-info-table label {
    width: 9em;
}

div .aligned label {
    width: 13em;
    padding: 2px 10px 0 0;
}

#content form .aligned .result_list.tabular p,
#content form .aligned ul[class*="-choices"] {
	margin-left: 0px;
}

.aligned label:not(.vCheckboxLabel):after {
    vertical-align: middle;
    height: 26px;
}

#content div.selector p.selector-filter, #content div.selector p.selector-filter label {
    margin-left: inherit;
}

#content ul.ui-sortable li.ui-sortable-handle label {
    margin-left: inherit;
}

#content.colM div#content-main form div div.submit-row {
    vertical-align: bottom;
}

select#id_usage_profile {
    margin-left: 95px;
}

ul li {
	list-style-type: unset; 
	line-height: 15px;
}

label.required + input[type="text"],
label.required + input[type="password"]{
    background-color: #ffffcc;
}
.form-row.errors ul.errorlist li {
    padding-left: 27px;
}
ul.errorlist li, td ul.errorlist {
	margin-left:0 !important;
	background: #ba2121 url(/site_media/admin/img/icon-alert.svg) 5px .3em no-repeat;
	border-radius: 3px;
	display: block;
}
td ul.errorlist {
    width: fit-content;
}
ul.errorlist li, td ul.errorlist li {
    font-size: 12px !important;
    padding: 4px 5px 4px 27px;
    margin: 0 0 0 23px;
    color: white;
}
.form-row ul.warnlist, td ul.warnlist {
	padding-left: 0;
	margin-left:0 !important;
	background: #ffc url(/site_media/admin/img/icon-alert.svg) 5px .2em no-repeat;
	display: block;
}
ul.warnlist li {
    font-size: 12px !important;
    padding: 2px 5px 0 0;
    margin: 0 0 0 23px;
    color: black;
}
.form-row.errors {
	background: #ffc;
}
.errornote{
    background: #ffefef url(/site_media/admin/img/icon-no.svg) 5px 4px no-repeat;
    font-size: 12px;
    background-size: 14px auto;
    padding: 10px 23px;
    margin: 0px 0px 5px 0px;
    color: #ba2121;
    border: none;
    line-height: 4px;
}

.errors input[type=text],
.errors input[type=password] {
	background: url(/site_media/admin/img/icon-deletelink.svg) 5px 4px no-repeat;
	background-color: #ffefef ;
    background-position: center right .25em;
    background-size: 1em;
	border: 1px solid #d00013;
} 
.errors .selector-filter input {
	background: none;
	border: 1px solid #ccc;
}

tr.add-row td a {
    background: url(/site_media/admin/img/icon-addlink.svg) 0 no-repeat !important;
    padding-left: 16px !important;
    font-size: 11px !important;
}

tr.add-row td input[type="button"], .add-row input[type="button"] {
    background: url(/site_media/admin/img/icon-addlink.svg) 4px no-repeat;
	padding: 0px 5px 0px 20px;
	min-width: 0;
}

tr.add-row td input[type="button"]:hover, .add-row input[type="button"]:hover{
    opacity: 0.75;
	background-color: rgb(46, 52, 54);
}

.help, p.help, form p.help, div.help, form div.help, div.help li {
    font-size: inherit;
}

.enforce_verification label, .auth_reg_enforce_verification label{
    margin-right: 13px;
}

/* HELPERS */
.text-dark {
    color: black !important;
}

.align-baseline {
    vertical-align: baseline !important;
}