* {
  box-sizing: border-box;
  -webkit-appearance: none !important;
  outline: none !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  color: #474747;
}

h1 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}

h2 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #474747;
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

p:last-child {
  margin-bottom: 0px;
}

b,
strong,
.font-bold {
  font-weight: 700 !important;
}

i,
em,
.font-italic {
  font-style: italic !important;
}

.font-medium {
  font-weight: 500 !important;
}

img {
  display: block;
  width: 100%;
}

a,
a:focus {
  color: #474747;
  text-decoration: underline;
}

a:hover,
a:focus:hover {
  color: #720007;
}

/* Buttons */

.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 80px;
  min-height: 38px;
  padding: 10px 16px 10px 16px;
  border: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: 0.2s all ease-in-out;
}

.button.button1,
.button.button1:focus {
  background: #720007;
  border: 2px solid #720007;
  color: #FFFFFF;
}

.button.button1:hover,
.button.button1:focus:hover {
  background: transparent;
  color: #720007;
}

.button.button2,
.button.button2:focus {
  background: transparent;
  border: 2px solid #720007;
  color: #720007;
}

.button.button2:hover,
.button.button2:focus:hover {
  background: #720007;
  color: #FFFFFF;
}

/* Container Wrapper */

#container-wrapper,
#container-auth-wrapper {
  position: relative;
}

.main-fluid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.limit-wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  width: 100%;
  height: 72px;
  background: #720007;
  background: linear-gradient(to left, #720007 0%, #800008 20%, #b9020d 45%, #e20a17 100%);
  border-bottom: 4px solid #E20A17;
  margin-bottom: 40px;
}

header .limit-wrapper {
  position: relative;
}

header .row-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}

header .row-fluid .column-left .block-welcome h2 {
  font-weight: 500;
  color: #FFFFFF;
}

header .row-fluid .column-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .row-fluid .column-right .block-notification {
  margin: 0 8px;
}

header .row-fluid .column-right .block-notification svg {
  cursor: pointer;
}

header .row-fluid .column-right .block-notification svg.active .icon-notification-bg {
  fill: #BB000C;
}

header .row-fluid .column-right .block-notification svg.active .icon-notification-point {
  fill: #E20A17;
}

header .row-fluid .column-right .block-notification svg.active .icon-notification-point-border {
  fill: #E20A17;
}

header .row-fluid .column-right .block-notification svg.open .icon-notification-bg {
  fill: #BB000C;
}

header .row-fluid .column-right .block-notification svg.open .icon-notification-point {
  fill: #E20A17;
}

header .row-fluid .column-right .block-notification svg.open .icon-notification-point-border {
  fill: #FFFFFF;
}

header .row-fluid .column-right .block-profile {
  margin: 0 8px;
  transition: all 0.2s ease-in-out;
}

header .row-fluid .column-right .block-profile svg {
  cursor: pointer;
}

header .row-fluid .column-right .block-profile:hover {
  opacity: 0.8;
}

header .row-fluid .column-right .block-logout {
  margin-left: 20px;
  transition: all 0.2s ease-in-out;
}

header .row-fluid .column-right .block-logout a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: underline;
}

header .row-fluid .column-right .block-logout a svg {
  margin-right: 5px;
}

header .row-fluid .column-right .block-logout a span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-style: normal;
  color: #FFFFFF;
}

header .row-fluid .column-right .block-logout:hover {
  opacity: 0.8;
}

.page-auth-wrapper {
  min-height: calc(100vh - 231px);
}

.page-auth-wrapper .main-fluid,
.page-auth-wrapper .limit-wrapper {
  height: 100%;
}

.page-auth-wrapper .bg-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 231px);
  background-color: #F6F6F6;
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  padding: 20px 0px;
}

.page-auth-wrapper .header-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-auth-wrapper .header-auth h1 {
  font-weight: 700;
  color: #720007;
}

.page-auth-wrapper .line-red-auth {
  width: 100%;
  height: 8px;
  background-color: #720007;
  margin-top: 25px;
  margin-bottom: 25px;
}

.page-auth-wrapper .body-auth {
  width: 100%;
}

.page-auth-wrapper .body-auth .form-default-wrapper {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.page-auth-wrapper .body-auth .form-default-wrapper .block-field-checkbox {
  justify-content: center;
}

.page-auth-wrapper .footer-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.page-auth-wrapper .footer-auth a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.page-auth-wrapper .footer-app-download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.page-default-wrapper {
  min-height: calc(100vh - 231px);
}

.page-default-wrapper .main-fluid,
.page-default-wrapper .limit-wrapper {
  height: 100%;
  min-height: calc(100vh - 231px);
}

.page-default-wrapper .bg-default {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 231px);
  background-color: #F6F6F6;
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  padding: 20px 0px;
}

.page-default-wrapper .bg-tab-default {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 231px);
  background-color: #F6F6F6;
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.block-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.block-tabs-wrapper .block-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 3);
  background-color: #E6E6E6;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.block-tabs-wrapper .block-tab a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 15px;
  text-decoration: none;
}

.block-tabs-wrapper .block-tab a .block-tab-title h2 {
  font-weight: 500;
  color: #797979;
  text-transform: uppercase;
}

.block-tabs-wrapper .block-tab.block-tab-active {
  background-color: #F6F6F6;
  box-shadow: none;
  z-index: 1;
}

.block-tabs-wrapper .block-tab.block-tab-active a .block-tab-title h2 {
  font-weight: 600;
  color: #980009;
}

.block-filters-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 30px 0;
  padding: 0 15px;
}

.block-filters-wrapper .block-filter-status,
.block-filters-wrapper .block-filter-read {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.block-filters-wrapper .block-filter-status .block-field-radio .radio-button label,
.block-filters-wrapper .block-filter-read .block-field-radio .radio-button label {
  text-transform: uppercase;
  white-space: nowrap;
}

.block-filters-wrapper .block-filter-search {
  display: flex;
  align-items: center;
}

.block-filters-wrapper .block-filter-search .block-input-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 270px;
  height: 40px;
  background-color: #FFFFFF;
  border: 2px solid #E6E6E6;
  border-radius: 4px;
}

.block-filters-wrapper .block-filter-search .block-input-search .select2 {
  width: 100% !important;
  min-width: 120px;
  max-width: 120px;
}

.block-filters-wrapper .block-filter-search .block-input-search .select2 .select2-selection--single {
  background-color: #F1F1F1;
  border: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 36px;
}

.block-filters-wrapper .block-filter-search .block-input-search .select2 .select2-selection--single .select2-selection__rendered {
  display: inline-block;
  width: 100%;
  height: 100%;
  max-width: 120px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #797979;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 10px 30px 10px 9px;
}

.block-filters-wrapper .block-filter-search .block-input-search .select2 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  color: #797979;
}

.block-filters-wrapper .block-filter-search .block-input-search .select2 .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 36px;
}

.block-filters-wrapper .block-filter-search .block-input-search .select2 .select2-selection--single .select2-selection__arrow b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-color: #797979 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  transition: all 0.3s ease-in-out;
}

.block-filters-wrapper .block-filter-search .block-input-search .select2.select2-container--open .select2-selection__arrow b {
  transform: translateY(-50%) rotate(180deg);
}

.block-filters-wrapper .block-filter-search .block-input-search input[type=text] {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #474747;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 9px 10px 9px 10px;
}

.block-filters-wrapper .block-filter-search .block-input-search .block-icon-search {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 9px 9px 9px;
}

.block-filters-wrapper .block-filter-search .block-input-search .block-icon-search svg:first-child {
  display: flex;
}

.block-filters-wrapper .block-filter-search .block-input-search .block-icon-search svg:last-child {
  display: none;
  cursor: pointer;
}

.block-filters-wrapper .block-filter-search .block-input-search.focused {
  border: 2px solid #720007;
}

.block-filters-wrapper .block-filter-search .block-input-search.clean .block-icon-search svg:first-child {
  display: none;
}

.block-filters-wrapper .block-filter-search .block-input-search.clean .block-icon-search svg:last-child {
  display: flex;
}

.block-filters-wrapper .block-filter-search .block-submit-search {
  margin-left: 15px;
  cursor: pointer;
}

.block-filters-wrapper .block-filter-search .block-submit-search span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-style: normal;
  color: #720007;
  text-decoration: underline;
  text-transform: uppercase;
}

.block-filters-wrapper .block-filter-search .block-submit-search span:hover {
  opacity: 0.6;
}

.block-filters-wrapper .block-new-register {
  display: flex;
  align-items: center;
  margin-left: 70px;
}

.block-filters-wrapper .block-new-register a {
  text-decoration: none;
}

.block-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 950px;
  margin: 40px auto;
  padding: 0 15px;
}

.block-header-wrapper .block-header-subtitle {
  display: flex;
  align-items: center;
}

.block-header-wrapper .block-header-subtitle h2 {
  font-weight: 500;
  color: #272727;
  text-transform: uppercase;
  margin-right: 15px;
}

.block-header-wrapper .block-header-subtitle h2:after {
  content: "";
  display: block;
  width: 25px;
  height: 4px;
  background-color: transparent;
}

.block-header-wrapper .block-header-subtitle h2:last-child {
  margin-right: 0px;
}

.block-header-wrapper .block-header-subtitle h2:last-child:after {
  background-color: #720007;
}

.block-header-wrapper .block-new-register {
  display: flex;
  align-items: center;
  margin-left: 70px;
}

.block-header-wrapper .block-new-register a {
  text-decoration: none;
}

.block-list-table {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 15px;
}

.block-list-table .block-table-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.block-list-table .block-table-footer .block-table-info .dataTables_info {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #797979;
  padding: 0;
}

.block-list-table .block-table-footer .block-table-paging {
  margin-left: 30px;
}

.block-list-table .block-table-footer .block-table-paging .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.block-list-table .block-table-footer .block-table-paging .pagination .paginate_button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.block-list-table .block-table-footer .block-table-paging .pagination .paginate_button.first {
  display: flex;
  margin-right: 15px;
}

.block-list-table .block-table-footer .block-table-paging .pagination .paginate_button.previous {
  display: flex;
  margin-right: 15px;
}

.block-list-table .block-table-footer .block-table-paging .pagination .paginate_button.next {
  display: flex;
  margin-left: 15px;
}

.block-list-table .block-table-footer .block-table-paging .pagination .paginate_button.last {
  display: flex;
  margin-left: 15px;
}

.block-list-table .block-table-footer .block-table-paging .pagination .paginate_button:not(.disabled) {
  cursor: pointer;
}

.block-list-table .block-table-footer .block-table-paging .pagination .paginate_button:not(.disabled):hover svg path {
  fill: #720007;
}

.block-list-table .dataTables_length {
  display: none;
}

.block-list-table table.dataTable thead .sorting:before,
.block-list-table table.dataTable thead .sorting_asc:before,
.block-list-table table.dataTable thead .sorting_desc:before,
.block-list-table table.dataTable thead .sorting_asc_disabled:before,
.block-list-table table.dataTable thead .sorting_desc_disabled:before {
  content: "";
  display: block;
  top: 6px;
  right: 10px;
  width: 12px;
  height: 12px;
  background-image: url("/images/icon-up.png");
  background-repeat: no-repeat;
  opacity: 1;
}

.block-list-table table.dataTable thead .sorting:after,
.block-list-table table.dataTable thead .sorting_asc:after,
.block-list-table table.dataTable thead .sorting_desc:after,
.block-list-table table.dataTable thead .sorting_asc_disabled:after,
.block-list-table table.dataTable thead .sorting_desc_disabled:after {
  content: "";
  display: block;
  bottom: 6px;
  right: 10px;
  width: 12px;
  height: 12px;
  background-image: url("/images/icon-down.png");
  background-repeat: no-repeat;
  opacity: 1;
}

.block-list-table table.dataTable thead > tr > th.sorting_asc,
.block-list-table table.dataTable thead > tr > th.sorting_desc,
.block-list-table table.dataTable thead > tr > th.sorting,
.block-list-table table.dataTable thead > tr > td.sorting_asc,
.block-list-table table.dataTable thead > tr > td.sorting_desc,
.block-list-table table.dataTable thead > tr > td.sorting {
  padding-right: 30px;
}

.block-list-table table.dataTable.dtr-inline.collapsed > tbody > tr[role=row] > td:first-child:before,
.block-list-table table.dataTable.dtr-inline.collapsed > tbody > tr[role=row] > th:first-child:before {
  background-color: #720007;
  top: 50%;
  left: 5px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  border-radius: 16px;
}

.block-list-table table.dataTable > thead .sorting_asc:before {
  background-image: url("/images/icon-up-active.png");
}

.block-list-table table.dataTable > thead .sorting_desc:after {
  background-image: url("/images/icon-down-active.png");
}

.block-list-table table {
  width: 100%;
  max-width: 920px;
  margin: 0 !important;
  margin-top: 10px !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.block-list-table table * {
  transition: all 0.2s ease-in-out;
}

.block-list-table table thead {
  background-color: #F1F1F1;
}

.block-list-table table thead tr {
  height: 32px;
}

.block-list-table table thead tr th {
  text-align: center;
  vertical-align: middle;
  padding: 10px 30px;
}

.block-list-table table thead tr th span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #272727;
  text-transform: uppercase;
}

.block-list-table table thead tr.theader-empty {
  height: 15px;
}

.block-list-table table thead tr.theader-empty th {
  background-color: #FFFFFF;
}

.block-list-table table tbody {
  background-color: #FFFFFF;
}

.block-list-table table tbody tr {
  height: 40px;
}

.block-list-table table tbody tr td {
  text-align: center;
  vertical-align: middle;
  padding: 10px 30px;
  border-top: 1px solid #CCCCCC;
}

.block-list-table table tbody tr td.dataTables_empty,
.block-list-table table tbody tr td a,
.block-list-table table tbody tr td span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #474747;
}

.block-list-table table tbody tr td.dataTables_empty.table-logged-in,
.block-list-table table tbody tr td a.table-logged-in,
.block-list-table table tbody tr td span.table-logged-in {
  color: #2A9274;
}

.block-list-table table tbody tr td.dataTables_empty.table-logged-out,
.block-list-table table tbody tr td a.table-logged-out,
.block-list-table table tbody tr td span.table-logged-out {
  color: #E20A17;
}

.block-list-table table tbody tr td.dataTables_empty {
  display: table-cell;
}

.block-list-table table tbody tr td .table-call-in {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.block-list-table table tbody tr td .table-call-in span {
  margin-right: 10px;
}

.block-list-table table tbody tr td .table-call-in svg:hover path {
  fill: #FFFFFF;
}

.block-list-table table tbody tr td .table-call-in svg:hover circle {
  fill: #2A9274;
}

.block-list-table table tbody tr td .table-call-in .table-open-popup {
  position: absolute;
  display: none;
  top: 40px;
  right: 15px;
  width: 100%;
  max-width: 150px;
  background-color: #F6F6F6;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.block-list-table table tbody tr td .table-call-in .table-open-popup ul {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.block-list-table table tbody tr td .table-call-in .table-open-popup ul:before {
  content: "";
  position: absolute;
  top: -7px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 7px solid #F6F6F6;
}

.block-list-table table tbody tr td .table-call-in .table-open-popup ul li {
  width: 100%;
  text-align: left;
}

.block-list-table table tbody tr td .table-call-in .table-open-popup ul li a {
  padding: 10px 15px;
}

.block-list-table table tbody tr td .table-call-in .table-open-popup ul li a,
.block-list-table table tbody tr td .table-call-in .table-open-popup ul li span {
  display: block;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #797979;
  text-decoration: none;
}

.block-list-table table tbody tr td .table-call-in .table-open-popup ul li:hover {
  background-color: #F0F0F0;
  cursor: pointer;
}

.block-list-table table tbody tr td .table-call-in .table-open-popup ul li:hover a,
.block-list-table table tbody tr td .table-call-in .table-open-popup ul li:hover span {
  font-weight: 500;
  color: #720007;
}

.block-list-table table tbody tr td .table-call-in.show svg path {
  fill: #FFFFFF;
}

.block-list-table table tbody tr td .table-call-in.show svg circle {
  fill: #2A9274;
}

.block-list-table table tbody tr td .table-call-out {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-list-table table tbody tr td .table-call-out span {
  margin-right: 10px;
}

.block-list-table table tbody tr td .btn-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-list-table table tbody tr td .btn-actions .btn-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.block-list-table table tbody tr td .btn-actions .btn-delete:hover svg path {
  fill: #E20A17;
}

.block-list-table table tbody tr.child td {
  padding: 10px 10px;
}

.block-list-table table tbody tr.child td ul.dtr-details {
  width: 100%;
}

.block-list-table table tbody tr.child td ul.dtr-details li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 10px 0px !important;
}

.block-list-table table tbody tr.child td ul.dtr-details li .dtr-title span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #272727;
  text-transform: uppercase;
}

.block-list-table table tbody tr:hover td {
  background-color: #F0F0F0;
}

.block-list-table table tbody tr:hover td a,
.block-list-table table tbody tr:hover td span {
  color: #720007;
}

.block-list-table table tbody tr:hover td a.table-logged-in,
.block-list-table table tbody tr:hover td span.table-logged-in {
  color: #2A9274;
}

.block-list-table table tbody tr:hover td a.table-logged-out,
.block-list-table table tbody tr:hover td span.table-logged-out {
  color: #E20A17;
}

.block-list-table table.remove-status-column thead tr th:last-child {
  display: none;
}

.block-list-table table.remove-status-column tbody tr td:not(.dataTables_empty):last-child {
  display: none;
}

#listUserUtenteCaregiverEvaluations {
  max-width: 620px !important;
  margin: 0 auto !important;
}

#listUserUtenteCaregiverOccurrences {
  max-width: 620px !important;
  margin: 0 auto !important;
}

#listUserAlerts .btn-actions-alert {
  display: flex;
  align-items: center;
  justify-content: center;
}

#listUserAlerts .btn-actions-alert .btn-view-alert {
  display: flex;
}

#listUserAlerts .btn-actions-alert .btn-view-alert a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #E20A17;
  text-transform: uppercase;
  text-decoration: underline;
}

#listUserAlerts .btn-actions-alert .btn-read-alert {
  display: flex;
  margin-left: 10px;
  cursor: pointer;
}

#listUserAlerts .btn-actions-alert .btn-read-alert:hover svg path {
  fill: #E20A17;
}

.block-cards-wrapper {
  width: 100%;
  max-width: 950px;
  margin: 40px auto;
  padding: 0 15px;
}

.block-cards-wrapper .block-cards-group {
  margin-bottom: 20px;
}

.block-cards-wrapper .block-cards-group .block-cards-header {
  margin-bottom: 15px;
}

.block-cards-wrapper .block-cards-group .block-cards-header .block-cards-header-title {
  margin-bottom: 5px;
}

.block-cards-wrapper .block-cards-group .block-cards-header .block-cards-header-title h1 {
  font-weight: 700;
  color: #720007;
}

.block-cards-wrapper .block-cards-group .block-cards-header .block-cards-header-subtitle {
  display: flex;
  align-items: center;
}

.block-cards-wrapper .block-cards-group .block-cards-header .block-cards-header-subtitle h2 {
  font-weight: 500;
  color: #272727;
  text-transform: uppercase;
  margin-right: 15px;
}

.block-cards-wrapper .block-cards-group .block-cards-header .block-cards-header-subtitle h2:after {
  content: "";
  display: block;
  width: 25px;
  height: 4px;
  background-color: transparent;
}

.block-cards-wrapper .block-cards-group .block-cards-header .block-cards-header-subtitle h2:last-child {
  margin-right: 0px;
}

.block-cards-wrapper .block-cards-group .block-cards-header .block-cards-header-subtitle h2:last-child:after {
  background-color: #720007;
}

.block-cards-wrapper .block-cards-group .block-cards-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item {
  display: flex;
  align-items: center;
  position: relative;
  width: calc(50% - 15px);
  background-color: #FFFFFF;
  border-radius: 4px;
  border-right: 12px solid #FFFFFF;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
  padding: 10px 15px;
  margin-bottom: 20px;
  margin-right: 30px;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item:nth-child(2n+2),
.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item:last-child {
  margin-right: 0;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item .block-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item .block-card-title {
  width: calc(100% - 112px);
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item .block-card-title h2 {
  font-weight: 700;
  color: #272727;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item .block-card-status {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-filled {
  border-right: 12px solid #2A9274;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-filled .block-card-icon svg circle {
  fill: #eee0e0;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-filled .block-card-icon svg path.icon-fill {
  fill: #720007;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-filled .block-card-icon svg path.icon-stroke {
  stroke: #720007;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-unfilled {
  border-right: 12px solid #E20A17;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-unfilled .block-card-icon svg circle {
  fill: #eee0e0;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-unfilled .block-card-icon svg path.icon-fill {
  fill: #720007;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-unfilled .block-card-icon svg path.icon-stroke {
  stroke: #720007;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-disabled {
  border-right: 12px solid #CCCCCC;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-disabled .block-card-icon svg circle {
  fill: #eee0e0;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-disabled .block-card-icon svg path.icon-fill {
  fill: #720007;
}

.block-cards-wrapper .block-cards-group .block-cards-body .block-card-item.block-card-disabled .block-card-icon svg path.icon-stroke {
  stroke: #720007;
}

.block-register-wrapper {
  width: 100%;
  max-width: 950px;
  margin: 55px auto 0 auto;
  padding: 0 15px;
}

.block-register-wrapper .desktop-wrapper,
.block-register-wrapper .mobile-wrapper {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.block-register-wrapper .mobile-wrapper {
  display: none;
}

.block-register-wrapper .block-register-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F1F1F1;
}

.block-register-wrapper .block-register-header .block-register-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 25%;
  padding: 8px 20px;
}

.block-register-wrapper .block-register-header .block-register-title span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #272727;
  text-transform: uppercase;
}

.block-register-wrapper .block-register-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
}

.block-register-wrapper .block-register-body .block-register-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 25%;
  padding: 8px 20px;
}

.block-register-wrapper .block-register-body .block-register-info span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #474747;
}

.select2-dropdown {
  background-color: #FFFFFF;
  border: 1px solid #797979;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-dropdown .select2-results__option[aria-selected] {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-style: normal;
  color: #797979;
  padding: 10px 5px;
}

.select2-dropdown .select2-results__option--highlighted[aria-selected] {
  font-weight: 500;
  color: #720007;
  background-color: transparent;
}

.select2-dropdown .select2-results__option[aria-selected=true] {
  font-weight: 500;
  color: #720007;
  background-color: #F0F0F0;
}

.select2-dropdown.select2-dropdown-filter {
  width: 100% !important;
  min-width: 122px;
  max-width: 122px;
  background-color: #FFFFFF;
  border: 2px solid #E6E6E6;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-top: 2px;
  margin-left: -2px;
}

.select2-dropdown.select2-dropdown-filter .select2-results__option[aria-selected] {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-style: normal;
  color: #797979;
  padding: 10px 5px;
}

.select2-dropdown.select2-dropdown-filter .select2-results__option--highlighted[aria-selected] {
  font-weight: 500;
  color: #720007;
  background-color: transparent;
}

.select2-dropdown.select2-dropdown-filter .select2-results__option[aria-selected=true] {
  font-weight: 500;
  color: #720007;
  background-color: #F0F0F0;
}

.block-field-checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.block-field-checkbox:not(:last-child) {
  margin-right: 25px;
}

.block-field-checkbox .checkbox-button {
  position: relative;
  display: flex;
  align-items: center;
}

.block-field-checkbox .checkbox-button input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  opacity: 0;
  z-index: 2;
}

.block-field-checkbox .checkbox-button .checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #272727;
  position: relative;
  margin-right: 10px;
}

.block-field-checkbox .checkbox-button .checkbox-wrapper::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #6A2323;
  opacity: 0;
}

.block-field-checkbox .checkbox-button label {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-style: normal;
  color: #272727;
  margin: 0;
  width: calc(100% - 28px);
}

.block-field-checkbox .checkbox-button label a {
  color: #720007;
}

.block-field-checkbox .checkbox-button input[type=checkbox]:checked + .checkbox-wrapper {
  border: 1px solid #6A2323;
}

.block-field-checkbox .checkbox-button input[type=checkbox]:checked + .checkbox-wrapper::before {
  opacity: 1;
}

.block-field-radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.block-field-radio:not(:last-child) {
  margin-right: 25px;
}

.block-field-radio .radio-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.block-field-radio .radio-button input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  opacity: 0;
  z-index: 2;
}

.block-field-radio .radio-button .radio-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #272727;
  border-radius: 50px;
  position: relative;
  margin-right: 5px;
}

.block-field-radio .radio-button .radio-wrapper::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #6A2323;
  border-radius: 50px;
  opacity: 0;
}

.block-field-radio .radio-button label {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-style: normal;
  color: #272727;
  margin: 0;
  width: calc(100% - 28px);
}

.block-field-radio .radio-button label a {
  color: #720007;
}

.block-field-radio .radio-button input[type=radio]:checked + .radio-wrapper {
  border: 1px solid #6A2323;
}

.block-field-radio .radio-button input[type=radio]:checked + .radio-wrapper::before {
  opacity: 1;
}

.block-field-radio .radio-button-other {
  margin-top: 10px;
}

.block-footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.block-footer-wrapper .button:not(:last-child) {
  margin-right: 30px;
}

.block-from-wrapper {
  width: 100%;
  max-width: 920px;
}

.block-from-wrapper .block-from-header {
  margin-top: 35px;
  padding: 0 15px;
}

.block-from-wrapper .block-from-header .block-from-header-title h1 {
  font-weight: 700;
  color: #720007;
}

.block-from-wrapper .block-from-header .block-from-header-subtitle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
}

.block-from-wrapper .block-from-header .block-from-header-subtitle h2 {
  font-weight: 500;
  color: #272727;
  text-transform: uppercase;
  margin-right: 15px;
}

.block-from-wrapper .block-from-header .block-from-header-subtitle h2:after {
  content: "";
  display: block;
  width: 25px;
  height: 4px;
  background-color: transparent;
}

.block-from-wrapper .block-from-header .block-from-header-subtitle h2:last-child {
  margin-right: 0px;
}

.block-from-wrapper .block-from-header .block-from-header-subtitle h2:last-child:after {
  background-color: #720007;
}

.block-from-wrapper .block-from-body {
  width: 100%;
  max-width: 570px;
  margin: 35px auto 35px auto;
  padding: 0 15px;
}

.form-default-wrapper .block-form-fieldset {
  display: flex;
  flex-wrap: wrap;
  border-top: 4px solid #E6E6E6;
  padding-top: 25px;
}

.form-default-wrapper .block-form-fieldset:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.form-default-wrapper .block-form-fieldset .block-fieldset-header {
  width: 100%;
  margin-bottom: 15px;
}

.form-default-wrapper .block-form-fieldset .block-fieldset-header span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #272727;
  text-transform: uppercase;
}

.form-default-wrapper .block-form-fieldset .block-form-group.block-form-big {
  width: 100%;
}

.form-default-wrapper .block-form-fieldset .block-form-group.block-form-medium {
  width: calc(66.66% - 8px);
  margin-right: 25px;
}

.form-default-wrapper .block-form-fieldset .block-form-group.block-form-medium:last-child {
  margin-right: 0;
}

.form-default-wrapper .block-form-fieldset .block-form-group.block-form-small {
  width: calc(33.33% - 17px);
  margin-right: 25px;
}

.form-default-wrapper .block-form-fieldset .block-form-group.block-form-small:last-child {
  margin-right: 0;
}

.form-default-wrapper .block-form-fieldset .block-form-group.block-form-normal {
  width: calc(50% - 13px);
  margin-right: 25px;
}

.form-default-wrapper .block-form-fieldset .block-form-group.block-form-normal:last-child {
  margin-right: 0;
}

.form-default-wrapper .block-form-fieldset .block-form-group.block-form-nomargin {
  margin-right: 0;
}

.form-default-wrapper .block-form-group {
  display: flex;
  justify-content: center;
}

.form-default-wrapper .block-form-group .block-field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
}

.form-default-wrapper .block-form-group .block-field .block-input {
  width: 100%;
  position: relative;
}

.form-default-wrapper .block-form-group .block-field .block-input label {
  position: absolute;
  top: 12px;
  left: 7px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #797979;
  background-color: #F6F6F6;
  padding: 0 5px;
  z-index: 10;
  cursor: text;
  transition: all 150ms ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  max-width: 90%;
}

.form-default-wrapper .block-form-group .block-field .block-input input[type=text],
.form-default-wrapper .block-form-group .block-field .block-input input[type=email],
.form-default-wrapper .block-form-group .block-field .block-input input[type=number],
.form-default-wrapper .block-form-group .block-field .block-input input[type=password] {
  position: relative;
  width: 100%;
  height: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #474747;
  padding: 5px 12px;
  background-color: #F6F6F6;
  border-radius: 4px;
  border: 1px solid #797979;
}

.form-default-wrapper .block-form-group .block-field .block-input textarea {
  position: relative;
  width: 100%;
  height: 120px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #474747;
  padding: 10px 12px;
  background-color: #F6F6F6;
  border-radius: 4px;
  border: 1px solid #797979;
  resize: none;
}

.form-default-wrapper .block-form-group .block-field .block-input input[type=number]::-webkit-outer-spin-button,
.form-default-wrapper .block-form-group .block-field .block-input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.form-default-wrapper .block-form-group .block-field .block-input input[type=number] {
  -moz-appearance: textfield !important;
}

.form-default-wrapper .block-form-group .block-field .block-input .block-field-empty,
.form-default-wrapper .block-form-group .block-field .block-input .block-field-invalid {
  position: absolute;
  display: none;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  color: #E20A17;
  padding: 2px 0px 0px 5px;
}

.form-default-wrapper .block-form-group .block-field.block-field-icon {
  display: flex;
  align-items: center;
}

.form-default-wrapper .block-form-group .block-field.block-field-icon .block-icon {
  display: flex;
  margin-right: 8px;
}

.form-default-wrapper .block-form-group .block-field.block-field-icon .block-input {
  width: calc(100% - 32px);
}

.form-default-wrapper .block-form-group .block-field.focused .block-input label {
  color: #720007;
  top: -8px;
}

.form-default-wrapper .block-form-group .block-field.focused .block-input input[type=text],
.form-default-wrapper .block-form-group .block-field.focused .block-input input[type=email],
.form-default-wrapper .block-form-group .block-field.focused .block-input input[type=number],
.form-default-wrapper .block-form-group .block-field.focused .block-input input[type=password] {
  border: 2px solid #720007;
}

.form-default-wrapper .block-form-group .block-field.focused .block-input textarea {
  border: 2px solid #720007;
}

.form-default-wrapper .block-form-group .block-field.filled .block-input label {
  color: #474747;
}

.form-default-wrapper .block-form-group .block-field.filled .block-input input[type=text],
.form-default-wrapper .block-form-group .block-field.filled .block-input input[type=email],
.form-default-wrapper .block-form-group .block-field.filled .block-input input[type=number],
.form-default-wrapper .block-form-group .block-field.filled .block-input input[type=password] {
  border: 1px solid #797979;
}

.form-default-wrapper .block-form-group .block-field.filled .block-input textarea {
  border: 1px solid #797979;
}

.form-default-wrapper .block-form-group .block-field.is-empty .block-input label {
  color: #E20A17;
}

.form-default-wrapper .block-form-group .block-field.is-empty .block-input input[type=text],
.form-default-wrapper .block-form-group .block-field.is-empty .block-input input[type=email],
.form-default-wrapper .block-form-group .block-field.is-empty .block-input input[type=number],
.form-default-wrapper .block-form-group .block-field.is-empty .block-input input[type=password] {
  border: 2px solid #E20A17;
}

.form-default-wrapper .block-form-group .block-field.is-empty .block-input textarea {
  border: 2px solid #E20A17;
}

.form-default-wrapper .block-form-group .block-field.is-empty .block-input .block-field-empty {
  display: block;
}

.form-default-wrapper .block-form-group .block-field.is-invalid .block-input label {
  color: #E20A17;
}

.form-default-wrapper .block-form-group .block-field.is-invalid .block-input input[type=text],
.form-default-wrapper .block-form-group .block-field.is-invalid .block-input input[type=email],
.form-default-wrapper .block-form-group .block-field.is-invalid .block-input input[type=number],
.form-default-wrapper .block-form-group .block-field.is-invalid .block-input input[type=password] {
  border: 2px solid #E20A17;
}

.form-default-wrapper .block-form-group .block-field.is-invalid .block-input .block-field-invalid {
  display: block;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input label {
  opacity: 0;
  visibility: hidden;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input .select2 {
  width: 100% !important;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input .select2 .select2-selection--single {
  background-color: #F6F6F6;
  border-radius: 4px;
  border: 1px solid #797979;
  height: 40px;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input .select2 .select2-selection--single .select2-selection__rendered {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #474747;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 10px 30px 10px 10px;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input .select2 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  font-weight: 400;
  color: #797979;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input .select2 .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 40px;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input .select2 .select2-selection--single .select2-selection__arrow b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-color: #959595 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  transition: all 0.3s ease-in-out;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input .select2.select2-container--open .select2-selection--single {
  border: 2px solid #720007;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field .block-input .select2.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: translateY(-50%) rotate(180deg);
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field.focused .block-input label,
.form-default-wrapper .block-form-group.block-form-group-select .block-field.filled .block-input label {
  opacity: 1;
  visibility: visible;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field.focused .block-input .select2.select2-container--open .select2-selection--single,
.form-default-wrapper .block-form-group.block-form-group-select .block-field.filled .block-input .select2.select2-container--open .select2-selection--single {
  border: 1px solid #797979;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field.is-empty .block-input label {
  color: #E20A17;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field.is-empty .block-input .select2 .select2-selection--single {
  border: 2px solid #E20A17;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field.is-empty .block-input .select2 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  color: #E20A17;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field.is-invalid .block-input label {
  color: #E20A17;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field.is-invalid .block-input .select2 .select2-selection--single {
  border: 2px solid #E20A17;
}

.form-default-wrapper .block-form-group.block-form-group-select .block-field.is-invalid .block-input .select2 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  color: #E20A17;
}

.form-default-wrapper .block-form-group.block-form-group-radio {
  justify-content: left;
}

.form-default-wrapper .block-form-group.block-form-group-radio .block-field-radio-label {
  margin-right: 40px;
  margin-bottom: 25px;
}

.form-default-wrapper .block-form-group.block-form-group-radio .block-field-radio-label span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #272727;
}

.form-default-wrapper .block-form-group.block-form-group-radio .block-field-radio {
  width: auto;
}

.form-default-wrapper .block-form-group.block-form-group-radio .block-field-radio .radio-button label {
  text-transform: uppercase;
}

.form-default-wrapper .block-form-group.block-form-group-radio-nowrap {
  justify-content: left;
}

.form-default-wrapper .block-form-group.block-form-group-radio-nowrap .block-field-radio-label {
  display: flex;
  width: calc(33.33% - 17px);
  margin-right: 25px;
  margin-bottom: 25px;
}

.form-default-wrapper .block-form-group.block-form-group-radio-nowrap .block-field-radio-label span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #272727;
}

.form-default-wrapper .block-form-group.block-form-group-radio-nowrap .block-field-radio-group {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  flex-wrap: wrap;
  width: calc(66.66% - 8px);
}

.form-default-wrapper .block-form-group.block-form-group-radio-nowrap .block-field-radio-group .block-field-radio {
  width: calc(33.33% - 15px);
  margin-right: 15px !important;
}

.form-default-wrapper .block-form-group.block-form-group-radio-wrap {
  justify-content: left;
}

.form-default-wrapper .block-form-group.block-form-group-radio-wrap .block-field-radio-label {
  width: calc(33.33% - 17px);
  margin-right: 25px;
  margin-bottom: 25px;
}

.form-default-wrapper .block-form-group.block-form-group-radio-wrap .block-field-radio-label span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #272727;
}

.form-default-wrapper .block-form-group.block-form-group-radio-wrap .block-field-radio-group {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  flex-wrap: wrap;
  width: calc(66.66% - 8px);
}

.form-default-wrapper .block-form-group.block-form-group-radio-wrap .block-field-radio-group .block-field-radio {
  width: 100%;
  margin-right: 0px !important;
}

.form-default-wrapper .block-form-group.block-form-group-repeater {
  justify-content: left;
  flex-wrap: wrap;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-label {
  width: calc(33.33% - 17px);
  margin-right: 25px;
  margin-bottom: 25px;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-label span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #272727;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  width: calc(66.66% - 8px);
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items.block-repeater-items-big {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  width: 100%;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items .block-repeater-item {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items .block-repeater-item .block-field .block-input .block-field-invalid {
  display: none;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items .block-repeater-item .block-field.is-invalid .block-input .block-field-invalid {
  display: block;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items .block-repeater-item .block-repeater-remove {
  position: absolute;
  top: 10px;
  right: -25px;
  opacity: 1;
  visibility: visible;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items .block-repeater-item .block-repeater-remove svg {
  cursor: pointer;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items #blockCaregiverContactsDefault .block-repeater-remove {
  opacity: 0;
  visibility: hidden;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items #blockCaregiverDiagnosisFamilyDefault .block-repeater-remove {
  opacity: 0;
  visibility: hidden;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items #blockCaregiverDiagnosisFotherDefault .block-repeater-remove {
  opacity: 0;
  visibility: hidden;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-items #blockPatientMedicationDefault .block-repeater-remove {
  opacity: 0;
  visibility: hidden;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-add {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 25px;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-add div {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-add div span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #720007;
  text-transform: uppercase;
  text-decoration: underline;
}

.form-default-wrapper .block-form-group.block-form-group-repeater .block-repeater-add div:hover {
  opacity: 0.6;
}

.form-default-wrapper .block-form-group-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.form-default-wrapper .block-form-group-footer .button:not(:last-child) {
  margin-right: 30px;
}

.box-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(39, 39, 39, 0.75);
  z-index: 10;
}

.box-alert .box-alert-bg {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 15px;
  background-color: #FFFFFF;
}

.box-alert .box-alert-bg .box-alert-header .box-alert-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.box-alert .box-alert-bg .box-alert-header .box-alert-close svg {
  cursor: pointer;
}

.box-alert .box-alert-bg .box-alert-body {
  width: 100%;
  max-width: 350px;
  margin: 5px auto 5px auto;
}

.box-alert .box-alert-bg .box-alert-body .box-alert-title {
  margin-bottom: 10px;
}

.box-alert .box-alert-bg .box-alert-body .box-alert-title span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #272727;
}

.box-alert .box-alert-bg .box-alert-body .box-alert-description {
  margin-bottom: 20px;
}

.box-alert .box-alert-bg .box-alert-body .box-alert-description span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #474747;
}

.box-alert .box-alert-bg .box-alert-footer {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 350px;
  border-top: 1px solid #797979;
  padding-top: 20px;
  margin-top: 20px;
  margin: 15px auto 5px auto;
}

.box-alert .box-alert-bg .box-alert-footer .box-alert-btn {
  margin-right: 20px;
}

.box-alert .box-alert-bg .box-alert-footer .box-alert-btn:not(:last-child) {
  margin-right: 20px;
}

.box-alert .box-alert-bg .box-alert-footer .box-alert-btn a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #E20A17;
  text-decoration: none;
}

.box-alert .box-alert-bg .box-alert-footer .box-alert-btn button {
  background: none;
  border: 0;
  box-shadow: none;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #2A9274;
  text-decoration: none;
  cursor: pointer;
}

.box-alert.box-alert-delete {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}

.box-alert.box-alert-show {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  transition: opacity 0.3s ease-in-out;
}

.block-monitoring-wrapper {
  width: 100%;
  max-width: 820px;
  margin-top: 30px;
  margin-bottom: 35px;
  padding: 0 15px;
}

.block-monitoring-wrapper .block-monitoring-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.block-monitoring-wrapper .block-monitoring-header .block-monitoring-export {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-monitoring-wrapper .block-monitoring-header .block-monitoring-export span {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #797979;
  text-transform: uppercase;
  margin-right: 15px;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-tabs {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-tabs .block-monitoring-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  border: 1px solid #797979;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-tabs .block-monitoring-tab a {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 15px 15px;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-tabs .block-monitoring-tab a .block-tab-title span {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #797979;
  text-transform: uppercase;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-tabs .block-monitoring-tab.block-monitoring-tab-active {
  background-color: #FFFFFF;
  border: 1px solid #720007;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-tabs .block-monitoring-tab.block-monitoring-tab-active a .block-tab-title span {
  color: #720007;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list {
  background-color: #FFFFFF;
  border: 1px solid #720007;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 40px 0;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list.mobile-wrapper {
  display: none;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F1F1F1;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div {
  padding: 8px 5px;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-title span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #272727;
  text-transform: uppercase;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-label span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #797979;
  text-transform: uppercase;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-first {
  background-color: rgba(114, 0, 7, 0.12);
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-first span {
  font-weight: 500;
  color: #720007;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body {
  background-color: #FFFFFF;
  padding-top: 15px;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #CCCCCC;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div {
  padding: 12px 5px;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 15px;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-title svg {
  margin-right: 2px;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-title span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #272727;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-label span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #797979;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-first span {
  font-weight: 500;
  color: #720007;
}

.block-monitoring-wrapper .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div:first-child {
  border-top: 1px solid #CCCCCC;
}

#blockManualMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-title {
  width: 125px;
}

#blockManualMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-label {
  width: 95px;
}

#blockManualMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-title {
  width: 125px;
}

#blockManualMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-label {
  width: 95px;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-header {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div {
  padding: 3px 5px;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-title {
  width: 220px;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-label {
  width: 285px;
  background-color: #FFFFFF;
  border-left: 1px solid #CCCCCC;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-label svg {
  margin-right: 2px;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-header > div.block-monitoring-list-header-label span {
  font-weight: 500;
  color: #474747;
  text-transform: none;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div {
  padding: 12px 5px;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-title {
  justify-content: center;
  width: 220px;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-title span {
  font-weight: 400;
  color: #797979;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-title.block-monitoring-list-body-first {
  background-color: rgba(114, 0, 7, 0.12);
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-label {
  width: 285px;
  border-left: 1px solid #CCCCCC;
}

#blockAutomaticMonitoring .block-monitoring-body .block-monitoring-list .block-monitoring-list-body > div > div.block-monitoring-list-body-first span {
  font-weight: 500;
  color: #720007;
}

#box-notifications {
  position: absolute;
  top: 80px;
  right: -5px;
  width: 100%;
  height: 100vh;
  max-width: 370px;
  max-height: 680px;
  display: none;
  z-index: 15;
}

#box-notifications .box-notifications-bg {
  width: 100%;
  height: 100vh;
  max-width: 370px;
  max-height: 680px;
  margin: 0 0 0 auto;
  padding: 20px 0px;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.3);
}

#box-notifications .box-notifications-bg .box-notifications-header {
  padding: 0px 20px;
}

#box-notifications .box-notifications-bg .box-notifications-header .box-notifications-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

#box-notifications .box-notifications-bg .box-notifications-header .box-notifications-close svg {
  cursor: pointer;
}

#box-notifications .box-notifications-bg .box-notifications-header .box-notifications-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

#box-notifications .box-notifications-bg .box-notifications-header .box-notifications-title > div span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #720007;
  text-transform: uppercase;
  margin-left: 5px;
}

#box-notifications .box-notifications-bg .box-notifications-header .box-notifications-title > div a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #474747;
  margin-right: 5px;
}

#box-notifications .box-notifications-bg .box-notifications-body {
  height: calc(100% - 95px);
  overflow-y: auto;
}

#box-notifications .box-notifications-bg .box-notifications-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 0px 20px;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li {
  padding: 10px 0px;
  border-bottom: 1px solid rgba(188, 188, 188, 0.95);
}

#box-notifications .box-notifications-bg .box-notifications-body ul li:first-child {
  border-top: 1px solid rgba(188, 188, 188, 0.95);
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-header > div {
  margin-bottom: 10px;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-header > div span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #272727;
  margin-right: 15px;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-header > div svg {
  display: block;
  cursor: pointer;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-body > div {
  margin-bottom: 2px;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-body > div span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #797979;
  text-transform: uppercase;
  margin-right: 15px;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-footer > div span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #797979;
  margin-right: 15px;
}

#box-notifications .box-notifications-bg .box-notifications-body ul li .box-notification-list-footer > div a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #E20A17;
  text-transform: uppercase;
  text-decoration: underline;
}

#boxLoading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(39, 39, 39, 0.75);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}

#boxLoading .box-alert-bg {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 30px;
  background-color: #FFFFFF;
}

#boxLoading .box-alert-bg .box-alert-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  margin: 5px auto 5px auto;
}

#boxLoading .box-alert-bg .box-alert-body img {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

#boxLoading .box-alert-bg .box-alert-body span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #272727;
}

#boxLoading.box-alert-show {
  visibility: visible;
  opacity: 1;
  z-index: 20;
  transition: opacity 0.3s ease-in-out;
}

footer {
  margin-top: 40px;
}

footer .row-fluid {
  display: flex;
  align-items: center;
}

footer .row-fluid .column-footer-label {
  margin-bottom: 12px;
}

footer .row-fluid .column-footer-label span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 15px;
}

footer .row-fluid .column-footer-logos {
  display: flex;
  align-items: center;
}

footer .row-fluid .column-footer-logos .logo-image {
  margin-right: 30px;
}

footer .row-fluid .column-footer-logos .logo-image img {
  height: 52px;
}

footer .row-fluid .column-footer-logos .logo-image-small {
  margin-right: 15px;
}

footer .row-fluid .column-footer-logos .logo-image:last-child {
  margin-right: 0;
}

footer .row-fluid .column-left {
  margin-right: 85px;
}

footer .row-fluid .column-middle {
  margin-right: 30px;
}

footer .row-fluid .column-right {
  margin-right: 0px;
}

