@charset "UTF-8";

/* STILI GENERALI */

@font-face {
  font-family: "Gotham";
  src: url(/fonts/Gotham-Black.woff2?233b60e3d7138e731576d85a80143009) format("woff2"), url(/fonts/Gotham-Black.woff?915015358b6444f2ac52437a4cf64f12) format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "GothamBook";
  src: url(/fonts/GothamBook.woff2?ef3f915f067bf52079154d27a1d7d55e) format("woff2"), url(/fonts/GothamBook.woff?5278f18e0ba2964a3ae5bf8bf571fd74) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GothamMedium";
  src: url(/fonts/Gotham-Medium.woff2?e159b39415c92e71fa08f43629cce45c) format("woff2"), url(/fonts/Gotham-Medium.woff?fbfe0ab5012085a435b633d6127c60f9) format("woff");
  font-weight: 500;
  font-style: normal;
}

html {
  font-size: 13px;
}

body {
  font-family: "GothamBook", sans-serif;
  font-weight: normal;
  font-style: normal;
  background: #ffffff;
  color: #1d2540;
}

/* SCROLLBAR - CHROME ONLY */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 0px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  width: 10px;
  border-radius: 5px;
  background: #adadad;
}

/* END SCROLLBAR */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "GothamMedium";
  font-weight: 500;
  font-style: normal;
  color: #1d2540;
}

h1 {
  font-size: 3.5rem;
  /* font-family: 'GothamBook', sans-serif;
  font-weight: normal;
  font-style: normal; */
}

strong {
  font-family: "GothamMedium";
  font-weight: 500;
  font-style: normal;
}

.img-thumbnail {
  background-color: #253151;
  border: 1px solid #1d2540;
}

a {
  color: #253151;
}

a:hover {
  text-decoration: none;
}

/* LAYOUT */

.wrapper {
  width: 100%;
}

#content {
  width: 100%;
  padding: 0;
  min-height: 100vh;
  padding: 3rem 5.5rem !important;
  margin-left: 160px;
}

#sidebar {
  min-width: 160px;
  max-width: 160px;
  background: #1d2540;
  color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.logo {
  display: inline-block;
}

.logo a {
  padding: 20px 40px;
  display: block;
}

#sidebar ul.components {
  padding: 0;
  margin-bottom: 0;
}

#sidebar ul.components li a {
  text-align: center;
  font-family: "Gotham";
  font-weight: 500;
  font-style: normal;
  padding: 18px 10px 11px;
  display: block;
  background: #253151;
  border-bottom: 1px solid #1d2540;
  transition: background 0.3s ease, color 0.3s ease;
}

/* #sidebar ul li.active > a {
    background: transparent;
    color: #fff;
} */

#sidebar ul li a:hover {
  text-decoration: none;
}

#sidebar ul li svg {
  width: 100%;
  max-width: 40px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

#sidebarCont {
  flex: 1 0 auto;
}

#userMenu {
  flex-shrink: none;
  width: 100%;
  background: #253151;
  padding: 15px 45px;
  position: relative;
}

#userMenu img {
  border-radius: 50%;
}

#userMenu .userAvatar {
  cursor: pointer;
}

#userMenu .userAvatar img {
  transition: 0.3s;
  border-radius: 50%;
  border: 1px solid #253151;
  width: 100%;
}

#userMenu .userAvatar:hover img {
  border: 5px solid #1d2540;
}

#userMenuPanel {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 200px;
  z-index: 3;
  transform: translateX(200px);
  background: #fff;
  color: #253151;
  border-left: 0;
  padding: 27px 15px 15px;
  border: 2px solid #253151;
  border-left: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
}

#userMenuPanel.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 300ms;
}

#userMenuPanel-close {
  font-family: "GothamMedium";
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 0;
  width: 25px;
  height: 25px;
  line-height: 26px;
  text-align: center;
  box-sizing: border-box;
  color: #253151;
}

#userMenuPanel-close:hover {
  color: #808080;
}

#notification {
  position: fixed;
  z-index: 2;
  bottom: 40px;
  right: 0;
  color: #fff;
  background: #1d2540;
  -webkit-border-top-left-radius: 25px;
  -webkit-border-bottom-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  width: 70px;
  height: 70px;
  padding: 16px 17px 15px 20px;
}

#notiCounter {
  position: absolute;
  top: 15px;
  right: 10px;
  background: #ed1c24;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  padding: 3px;
  border-radius: 50%;
  font-family: "Gotham";
  font-weight: 500;
  font-style: normal;
  min-width: 20px;
  text-align: center;
}

#notificationPanel {
  position: fixed;
  bottom: 20px;
  right: 0px;
  max-width: 400px;
  /* min-height: 200px; */
  z-index: 3;
  transform: translateX(400px);
  transition: 200ms cubic-bezier(0, 0, 0.2, 1);
  background: #253151;
  border: 2px solid #253151;
  border-right: 0;
  padding: 25px 10px 10px;
}

#notificationPanel.active {
  transform: translateX(0px);
}

#notificationPanel-close {
  color: #fff;
  font-family: "GothamMedium";
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 0;
  /* padding: 8px; */
  width: 25px;
  height: 25px;
  line-height: 26px;
  text-align: center;
  /* background: red; */
  box-sizing: border-box;
  /* transition: 200ms ease-in; */
}

#notificationPanel-close:hover {
  color: #808080;
}

#userMenuPanel .dropdown-divider {
  border-top: 1px solid #253151;
}

#userMenuPanel .dropdown-item,
#notificationPanel .dropdown-item {
  padding: 0.5rem 0.25rem;
  color: #253151;
}

#notificationPanel .dropdown-item {
  color: #fff;
  white-space: normal;
}

#userMenuPanel .dropdown-item:focus,
#userMenuPanel .dropdown-item:hover,
#notificationPanel .dropdown-item:focus,
#notificationPanel .dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background-color: #253151;
}

#notificationPanel .dropdown-item:focus,
#notificationPanel .dropdown-item:hover {
  color: #94a9ff;
  text-decoration: underline;
  background-color: transparent;
}

.dropdown-item-trash {
  color: #94a9ff;
}

.dropdown-item-trash:hover,
.dropdown-item-trash:focus {
  color: #bd2130;
}

/* FORM ELEM */

.btn {
  border-radius: 1.25rem;
  font-family: "GothamMedium";
  font-weight: 500;
  font-style: normal;
  padding: 0.375rem 0.75rem 0.175rem 0.75rem;
}

.btn-square {
  border-radius: 0;
}

label {
  font-family: "GothamMedium";
  font-weight: 500;
  font-style: normal;
}

sup {
  top: -0.3rem;
  left: 0.1rem;
}

.form-control {
  border-radius: 1.25rem;
  border: 1px solid #fff;
}

.form-control.form-control-dark {
  border: 1px solid #e6e6e6;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #fff;
  outline: 0;
  box-shadow: none;
}

.form-control.form-control-dark:focus {
  border-color: #e6e6e6;
}

.input-group-text {
  border-radius: 1.25rem;
  padding: 0.375rem 0.75rem 0.375rem 1.1rem;
  background-color: #fff;
  border: 1px solid #fff;
}

.input-group-text.input-group-text-dark {
  border: 1px solid #e6e6e6;
}

.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
  border-left: 0;
}

.btn-primary {
  color: #1d2540;
  background: #94a9ff;
  border-color: #94a9ff;
  /* font-family: 'Gotham';
  font-weight: 500;
  font-style: normal; */
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
  color: #1d2540;
  background-color: transparent;
  border-color: #94a9ff;
  box-shadow: none;
}

.btn-light {
  color: #fff;
  background: #94a9ff;
  border-color: #94a9ff;
  /* font-family: 'Gotham';
  font-weight: 500;
  font-style: normal; */
}

.btn-light:hover,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus {
  color: #94a9ff;
  background-color: #fff;
  border-color: #94a9ff;
  box-shadow: none;
}

.btn-dark {
  color: #fff;
  background: #1d2540;
  border-color: #1d2540;
  /* font-family: 'Gotham';
  font-weight: 500;
  font-style: normal; */
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus {
  color: #1d2540;
  background-color: #fff;
  border-color: #1d2540;
  box-shadow: none;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  cursor: inherit;
  display: block;
}

.btn-reset {
  background: transparent;
  border: none;
  outline: none;
}

.btn-reset:hover,
.btn-reset:focus {
  background: transparent;
  border: none;
  outline: none;
}

.btn-post {
  font-size: 0.7rem;
  line-height: 1;
  padding: 0.375rem 0.75rem 0.375rem 0.75rem;
}

.invalid-feedback {
  display: block;
}

.is-invalid .input-group-text {
  border-color: #e3342f;
}

.dropdown-toggle::after {
  vertical-align: 0.1rem;
}

.form-check-radio-group {
  padding-top: 6px;
}

.form-radio-thumb {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border: 1px solid #1d2540;
  background: #fff;
  position: relative;
}

.form-radio-thumb:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 0 19px;
  border-color: transparent transparent transparent #efefef;
}

.form-radio-thumb.form-radio-thumb__opt-blu {
  border: 1px solid #636cb0;
  background: #94a9ff;
}

.form-radio-thumb.form-radio-thumb__opt-blu:after {
  border-color: transparent transparent transparent #8d9df7;
}

.form-radio-thumb.form-radio-thumb__opt-rosso {
  border: 1px solid #a81600;
  background: #e91600;
}

.form-radio-thumb.form-radio-thumb__opt-rosso:after {
  border-color: transparent transparent transparent #cf0b03;
}

.form-radio-thumb.form-radio-thumb__opt-giallo {
  border: 1px solid #e7ce02;
  background: #fff204;
}

.form-radio-thumb.form-radio-thumb__opt-giallo:after {
  border-color: transparent transparent transparent #ffea07;
}

.form-radio-thumb.form-radio-thumb__opt-viola {
  border: 1px solid #71354f;
  background: #a8354f;
}

.form-radio-thumb.form-radio-thumb__opt-viola:after {
  border-color: transparent transparent transparent #9a354f;
}

.form-radio-thumb.form-radio-thumb__opt-verde {
  border: 1px solid #146b02;
  background: #14b600;
}

.form-radio-thumb.form-radio-thumb__opt-verde:after {
  border-color: transparent transparent transparent #14a503;
}

.form-radio-thumb.form-radio-thumb__opt-arancio {
  border: 1px solid #ff6c00;
  background: #ffac02;
}

.form-radio-thumb.form-radio-thumb__opt-arancio:after {
  border-color: transparent transparent transparent #ff8801;
}

.form-radio-thumb.form-radio-thumb__opt-nero {
  border: 1px solid #000814;
  background: #222222;
}

.form-radio-thumb.form-radio-thumb__opt-nero:after {
  border-color: transparent transparent transparent #303030;
}

/* MODAL */

.modal {
  background: rgba(29, 37, 64, 0.75);
}

@media screen and (min-width: 576px) {
  .modal-dialog {
    max-width: 550px;
  }
}

.modal-content {
  border: 1px solid #fff;
  background: #fff;
  border-radius: 0px;
}

.modal-header {
  border-bottom: 2px solid #e6e6e6;
  padding: 1rem 1rem 0.7rem 2rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1;
  font-size: 2rem;
}

.modal-header .close {
  color: #1d2540;
  opacity: 1;
}

.modal-body {
  padding: 2rem;
}

/* CARD */

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #253151;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  color: #fff;
}

.card-header .h1,
.card-header .h2,
.card-header .h3,
.card-header .h4,
.card-header .h5,
.card-header .h6,
.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
  color: #fff;
}

.card-footer {
  background-color: #253151;
  color: #fff;
}

/* TABLE */

.table-admin {
  overflow-y: auto;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.table {
  color: inherit;
}

.table-sm {
  font-size: 0.9rem;
}

.table thead th {
  background: #253151;
  color: #c6c6c6;
}

.table thead th a {
  color: #fff;
}

/* PAGER */

.pagination {
  justify-content: center;
  margin-bottom: 0;
}

.page-link {
  padding: 0.5rem 0.75rem;
  color: #253151;
}

.page-link:hover {
  color: #1d2540;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #253151;
  border-color: #253151;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* TABS */

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #94a9ff;
}

.nav-pills .nav-link {
  border: 1px solid #94a9ff;
  color: #94a9ff;
}

@media (min-width: 992px) {
  .d-lg-inlineblock {
    display: inline-block !important;
  }
}

.badge {
  border: none;
}

/* AREA LOGIN */

.bg-gradient-primary {
  background: #1d2540;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.bg-gradient-primary a {
  color: #fff;
}

.bg-gradient-primary a:hover,
.bg-gradient-primary a:focus {
  color: #fff;
}

.form-signin {
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.form-signin img {
  margin: 0 35px;
}

.bg-gradient-primary .btn-primary {
  /* #00c7eb #1853f9 */
  background: #00c8eb;
  background: -webkit-gradient(left top, right top, color-stop(0%, #00c8eb), color-stop(100%, #1854f9));
  background: linear-gradient(to right, #00c8eb 0%, #1854f9 100%);
  border: none;
  box-shadow: 0px 4px 7px 3px rgba(17, 23, 43, 0.8);
  color: #fff;
  padding: 0.575rem 0.75rem 0.375rem 0.75rem;
}

.bg-gradient-primary .form-group {
  border-radius: 1.25rem;
}

.breadcrumbs {
  font-family: "Gotham";
  font-weight: 500;
  font-style: normal;
  color: #808080;
  font-size: 0.75rem;
}

.breadcrumbs a {
  color: #808080;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #808080;
}

#fileList__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#fileTable.fileTable__file.fileTable__file-list {
  flex: 1 1 auto;
  min-height: 0px;
  position: relative;
}

#fileTable.fileTable__file.fileTable__file-list .fileTable-content {
  overflow-y: scroll;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

#fileTable {
  font-size: 1rem;
}

#fileTable .fileTable-header {
  background: #fff;
  color: #5f6368;
  border-bottom: 1px solid #dadce0;
  font-family: "Gotham";
  font-weight: 500;
  font-style: normal;
}

#fileTable .fileTable-header .fileTable-header_row {
  display: flex;
  flex-wrap: wrap;
}

#fileTable .fileTable-header .fileTable-col.fileTable-col__mime {
  /* background: red; */
  max-width: 55px;
}

/* #fileTable .fileTable-header .fileTable-col.fileTable-col__name {
} */

#fileTable .fileTable-header .fileTable-col.fileTable-col__modify {
  /* background: red; */
  max-width: 150px;
}

#fileTable .fileTable-header .fileTable-col.fileTable-col__dimension {
  /* background: purple; */
  max-width: 100px;
}

#fileTable .fileTable-header .fileTable-col.fileTable-col__action {
  /* background: yellow; */
  max-width: 110px;
}

/* TABELLA-ALTEZZA-FLUIDA */

#content.content-fluid {
  height: 100vh;
}

#table {
  flex: 1;
  position: relative;
  /* overflow-x: auto; */
}

#goBack {
  display: block;
  position: absolute;
  top: -1.5rem;
  left: 15px;
  color: #fff;
  background: #1d2540;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
}

#goBack:hover {
  color: #94a9ff;
}

#goBack.static {
  position: relative;
  top: inherit;
  left: inherit;
  display: inline-block;
  margin-bottom: 0rem;
}

#fileTable.fileTable__small {
  font-size: 0.83rem;
}

#fileTable .fileTable-header .fileTable-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding: 10px 5px;
}

#fileTable .fileTable-header .fileTable-col a {
  color: #5f6368;
}

#fileTable .fileTable-header .fileTable-col a:hover,
#fileTable .fileTable-header .fileTable-col a:focus {
  color: #94a9ff;
  text-decoration: none;
}

#fileTable .fileTable-content {
  background: #fff;
  color: #808080;
}

#fileTable .fileTable-content_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0px 10px;
  border-bottom: 1px solid #dadce0;
}

#fileTable .fileTable-content_row:last-child {
  border-bottom: 0;
}

#fileTable .fileTable-content_row .fileTable-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding: 12px 5px 8px;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__name .btn.btn-info {
  padding: 0.375rem 0.5rem 0.175rem 0.5rem;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__mime {
  padding: 8px 5px;
  max-width: 45px;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__mime img {
  width: 19px;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__mime img.folder {
  width: 31px;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__action {
  /* background: yellow; */
  max-width: 90px;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__action a {
  margin: 0px 5px;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__action a.first-child {
  margin-left: 0;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__action a.last-child {
  margin-right: 0;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__modify {
  /* background: red; */
  max-width: 150px;
}

#fileTable .fileTable-content_row .fileTable-col.fileTable-col__dimension {
  /* background: purple; */
  max-width: 100px;
}

.fileTable-col__action form {
  display: inline-block;
  margin: 0px 5px;
}

.fileTable-col__action form button {
  background: transparent;
  border: none;
  padding: 0;
}

/* INFO POST */

@media screen and (max-width: 991px) {
  #postListArticle {
    order: 2;
  }

  #postListAside {
    order: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.post-info-post h1 {
  margin-bottom: 0;
}

.post-info-text {
  font-size: 1.1rem;
}

.post-info-text p:first-child::first-letter {
  background-color: #e6e6e6;
  border: none;
  box-shadow: none;
  color: #1d2540;
  float: left;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem;
  margin-right: 1rem;
  margin-top: 0.5rem;
  padding: 0.6rem 0.8rem;
}

.post-info-author {
  display: flex;
  align-items: center;
}

.post-info-author .author-avatar {
  max-width: 70px;
  margin-right: 1rem;
}

.post-info-author .author-avatar img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  border: 1px solid #1d2540;
}

.post-info-author .author-info {
  font-family: "GothamMedium";
  font-weight: 500;
  color: #1d2540;
}

.post-info-thumb {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  color: #808080;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.post-info-thumb:hover {
  color: #1d2540;
  background: #fafafa;
}

.post-info-thumb__icon {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

/* TICKET */

#table.ticketArea {
  overflow-x: initial;
}

.ticketArea {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

#ticketList {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  border-right: 3px solid #e6e6e6;
}

#tickeContent {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

#ticketInfo {
  background: #fff;
  border-left: 3px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#ticketInfo .ticketInfo__details {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 3px solid #e6e6e6;
}

#ticketInfo .ticketInfo__users {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 3px solid #e6e6e6;
  flex: 1 1 auto;
  min-height: 0px;
  position: relative;
}

#ticketInfo .ticketInfo__files {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  flex: 1 1 auto;
  min-height: 0px;
  position: relative;
}

#ticketInfo .ticketInfo__users > div,
#ticketInfo .ticketInfo__files > div {
  overflow-y: scroll;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Ticket list */

@media screen and (max-width: 1024px) {
  .fileTable__ticket .fileTable-col__date {
    display: none;
  }
}

#fileTable .fileTable-header .fileTable-col__state,
#fileTable .fileTable-content .fileTable-col__state {
  max-width: 58px;
}

#fileTable.fileTable__ticket .fileTable-content_row {
  margin: 0;
}

#fileTable.fileTable__ticket a.fileTable-content_row {
  color: #808080;
}

#fileTable.fileTable__ticket a.fileTable-content_row:hover,
#fileTable.fileTable__ticket a.fileTable-content_row:focus,
#fileTable.fileTable__ticket a.fileTable-content_row.ticket_active {
  text-decoration: none;
  background: #ced5e8;
}

.fileTable__ticket strong {
  color: #000;
}

.ticketState {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin: 3px auto;
}

.ticketState.ticketState-close {
  background: #ff3504;
}

.ticketState.ticketState-open {
  background: #4fb37b;
}

/* New ticket form */

.ticketUserList li {
  font-size: 80%;
  padding: 0.1rem 0;
}

.ticketUserList li img,
#ticketUserResult li img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 2px 5px;
}

#ticketUserListUl li.list-group-item {
  border: none;
}

#ticketUserListUl li.list-group-item span.removeUser {
  cursor: pointer;
}

#ticketUserResult {
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
  background: #e6e6e6;
}

#ticketUserResult li.list-group-item {
  background: transparent;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
}

#ticketUserResult li div {
  width: 100%;
}

#ticketUserResult li.list-group-item img {
  border: 1px solid #e6e6e6;
}

#ticketUserResult li.list-group-item:hover {
  color: #94a9ff;
}

#ticketUserResult li.list-group-item:hover img {
  border-color: #94a9ff;
}

.createTicketTwoCol .col {
  min-height: 150px;
}

.createTicketTwoCol .col:first-child {
  border-right: 3px solid #e6e6e6;
}

.ticketFileList li a {
  font-size: 80%;
  display: block;
  padding: 0.3rem 0;
  margin: 0.3rem 0;
  color: #808080;
  border-bottom: 1px solid #dadce0;
}

.ticketFileList li a i {
  margin: 0 0.4rem;
}

#previousFiles .list-unstyled li,
#multipleFile .list-unstyled li,
#singleFile .list-unstyled li {
  font-size: 0.8rem;
  list-style: none;
}

.ticketFileList li img,
#previousFiles .list-unstyled li img,
#multipleFile .list-unstyled li img,
#singleFile .list-unstyled li img {
  width: 20px;
  margin: 0px 5px;
}

.informativaFileList.ticketFileList li {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #dadce0;
}

.informativaFileList.ticketFileList li a {
  font-size: 100%;
  width: 100%;
  border-bottom: none;
}

.informativaFileList.ticketFileList li:hover,
.informativaFileList.ticketFileList li:focus {
  background: #808080;
  color: #fff;
}

.informativaFileList.ticketFileList li:hover a,
.informativaFileList.ticketFileList li:focus a {
  color: #fff;
  text-decoration: none;
}

/* Ticket Chat */

#ticketChatWrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-right: -15px;
}

#ticketChat {
  flex: 1 1 auto;
  min-height: 0px;
  position: relative;
}

#ticketChat #ticketChat-elements {
  overflow-y: scroll;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding-right: 15px;
}

#ticketChat .ticketChat-elem {
  position: relative;
  max-width: 60%;
  margin: 0.5rem 0;
  float: left;
  clear: both;
}

#ticketChat .ticketChat-elem.ticketChat-elem__myElem {
  float: right;
}

.ticketChat-elem .ticketChat-elem__image {
  width: 33px;
  height: 33px;
  position: absolute;
  top: 18px;
  left: 0;
}

.ticketChat-elem .ticketChat-elem__image img {
  width: 100%;
  border-radius: 50%;
}

.ticketChat-elem .ticketChat-elem__txt {
  padding: 24px;
  margin-left: 20px;
  background: #ced5e8;
  border-radius: 15px;
}

.ticketChat-elem.ticketChat-elem__myElem .ticketChat-elem__txt {
  background: #c1ebc5;
}

.ticketChat-elem .ticketChat-elem__info {
  text-align: right;
}

#ticketChatMessage {
  /* background: green; */
  position: relative;
  margin-right: 15px;
}

#ticketChatMessage textarea,
#ticketChatMessage input {
  resize: none;
  padding-right: 65px;
}

#ticketChatMessage textarea {
  height: 75px;
}

#ticketChatMessage .ticketChatMessage__action {
  width: 25px;
  height: 25px;
  /* background: red; */
  text-align: center;
  font-size: 17px;
  line-height: 25px;
  color: #1d2540;
  position: absolute;
  top: 10px;
  right: 10px;
}

#ticketChatMessage .ticketChatMessage__action:hover {
  color: #808080;
}

#ticketChatMessage .ticketChatMessage__attach {
  right: 36px;
  cursor: pointer;
}

#ticketChatMessage .ticketChatMessage__attach .btn-file input[type=file] {
  width: 17px;
  height: 20px;
}

#ticketChatMessage .ticketChatMessage__submit {
  top: 40px;
  background: #1d2540;
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 13px;
  border: none;
}

#ticketChatMessage .ticketChatMessage__submit:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #fff;
  transform: scale(0.9);
  transform-origin: center;
}

#ticketChatMessage .ticketChatMessage__submit:hover,
#ticketChatMessage .ticketChatMessage__submit:focus {
  color: #ced5e8;
}

#ticketChatMessage .ticketChatMessage__submit:hover:after,
#ticketChatMessage .ticketChatMessage__submit:focus:after {
  border-color: #ced5e8;
}

#ticketChatMessage .ticketChatMessage__submit:disabled,
#ticketChatMessage .ticketChatMessage__submit[disabled],
#ticketChatMessage .ticketChatMessage__submit:disabled:hover,
#ticketChatMessage .ticketChatMessage__submit[disabled]:hover,
#ticketChatMessage .ticketChatMessage__submit:disabled:focus,
#ticketChatMessage .ticketChatMessage__submit[disabled]:focus {
  background: #d0d0d0;
  color: #eee;
}

#ticketChatMessage .ticketChatMessage__submit:disabled:after,
#ticketChatMessage .ticketChatMessage__submit[disabled]:after,
#ticketChatMessage .ticketChatMessage__submit:disabled:hover:after,
#ticketChatMessage .ticketChatMessage__submit[disabled]:hover:after,
#ticketChatMessage .ticketChatMessage__submit:disabled:focus:after,
#ticketChatMessage .ticketChatMessage__submit[disabled]:focus:after {
  border-color: #eee;
}

#ticketChatFiles-list ul {
  margin: 0;
  padding: 10px 0 0 15px;
}

#ticketChatMessage #ticketChatMessage__emoji-list {
  /* background: red; */
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 300px;
  height: 200px;
  padding: 10px;
  margin-bottom: 8px;
  overflow-y: scroll;
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 6px;
  transition-duration: 200ms;
  transition-delay: 0ms;
  transform-style: flat;
  transform-origin: 50% 50% 0;
  opacity: 0;
  transition: all 0.2s linear;
  visibility: hidden;
}

#ticketChatMessage #ticketChatMessage__emoji-list.active {
  visibility: visible;
  opacity: 1;
  bottom: 100%;
}

.intercom-emoji-picker-emoji {
  padding: 5px;
  width: 30px;
  line-height: 30px;
  display: inline-table;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  font-size: 28px;
  transition: transform 60ms ease-out;
  transition-delay: 60ms;
  font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
}

.intercom-emoji-picker-emoji:hover {
  transition-delay: 0ms;
  transform: scale(1.4);
}

#ticketList__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#fileTable.fileTable__ticket-list {
  flex: 1;
  height: 100%;
  min-height: 0px;
  position: relative;
}

#fileTable.fileTable__ticket-list .fileTable-content {
  overflow-y: scroll;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

/* Scrollbar */

#fileTable.fileTable__ticket .fileTable-content::-webkit-scrollbar {
  width: 10px;
}

/* Track */

#fileTable.fileTable__ticket .fileTable-content::-webkit-scrollbar-track {
  border-radius: 0px;
  background: #ced5e8;
}

/* Handle */

#fileTable.fileTable__ticket .fileTable-content::-webkit-scrollbar-thumb {
  width: 10px;
  border-radius: 5px;
  background: #adadad;
}

.polizza {
  font-size: 16px;
}

.polizza {
  width: 100%;
}

.polizza-number {
  font-size: 2em;
  margin-bottom: 1.75em;
  font-family: "GothamMedium", sans-serif;
  color: #253151;
}

.polizza-number h3 {
  font-size: 0.6em;
  font-family: "GothamMedium", sans-serif;
  margin: 0;
  color: #253151;
}

.polizza-number input {
  height: 30px;
  width: 100%;
  max-width: 200px;
  border-radius: 30px;
  border: 1px solid #808080;
  font-size: 0.5em;
  padding: 0 1em;
  margin-top: 1em;
  font-family: "GothamBook", sans-serif;
  color: #808080;
}

.polizza-number input:focus {
  border-color: #253151;
  outline: none;
}

.polizza-info {
  font-size: 1em;
  display: flex;
  width: 100%;
  margin-bottom: 3em;
  font-family: "GothamBook", sans-serif;
  color: #808080;
}

.polizza-info div {
  flex: 1;
}

.polizza-info h4 {
  font-size: 1.2em;
  margin-bottom: 1em;
  font-family: "GothamMedium", sans-serif;
  color: #253151;
}

.polizza-info input {
  height: 30px;
  width: 100%;
  max-width: 200px;
  border-radius: 30px;
  border: 1px solid #808080;
  font-size: 1em;
  padding: 0 1em;
  font-family: "GothamBook", sans-serif;
  color: #808080;
}

.polizza-info input:focus {
  border-color: #253151;
  outline: none;
}

.polizza-status {
  display: flex;
  width: 100%;
  font-size: 1em;
  margin-top: 6em;
}

.polizza-status div {
  flex: 0 0 20%;
  margin-right: 50px;
}

.polizza-status div:last-child {
  margin-right: 0;
}

.polizza-status div h4 {
  font-size: 1.2em;
  margin-bottom: 1em;
  font-family: "GothamMedium", sans-serif;
  color: #253151;
}

.polizza-status div fieldset {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.polizza-status div fieldset input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.polizza-status div fieldset input[type=checkbox] {
  width: 70px;
  height: 30px;
}

.polizza-status div fieldset input[type=checkbox] + label {
  width: 70px;
  height: 30px;
  background: #808080;
  border-radius: 30px;
  position: relative;
  z-index: -1;
  margin: 0;
}

.polizza-status div fieldset input[type=checkbox] + label:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}

.polizza-status div fieldset input[type=checkbox]:checked + label {
  background: #38c172;
}

.polizza-status div fieldset input[type=checkbox]:checked + label:after {
  left: 100%;
  transform: translate(-100%, -50%);
}

.polizza-status div fieldset input[type=checkbox]#payment_ok {
  pointer-events: none;
}

.polizza-status div fieldset input[type=file] {
  width: 100%;
}

.polizza-status div fieldset input[type=file] + label {
  background: #f6b800;
  color: #fff;
  padding: 0 3em;
  border-radius: 2em;
  height: 30px;
  transition: background 0.3s ease-in-out;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.polizza-status div fieldset input[type=file]:hover + label {
  background: #c39200;
}

.polizza-method {
  font-family: "GothamBook", sans-serif;
  color: #808080;
}

.polizza-method fieldset {
  width: 100%;
  position: relative;
}

.polizza-method fieldset select {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 30px;
  background: transparent;
  border-radius: 30px;
  padding: 0 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: "GothamMedium", sans-serif;
  color: #808080;
}

.polizza-method fieldset:after {
  content: "\F0DD";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #808080;
  margin-top: -0.25em;
  z-index: -1;
}

.polizza-cta {
  border-top: 1px solid #808080;
  padding-top: 3em;
  margin-top: 3em;
}

.polizza-cta .btn {
  padding: 0.5em 1.5em;
  border-radius: 1.5em;
  color: #fff;
  margin-right: 3em;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  font-size: 1em;
}

.polizza-cta .btn-replace {
  background: #6e9de9;
}

.polizza-cta .btn-replace:hover {
  background: #427fe2;
}

.polizza-cta .btn-cancel {
  background: #e3342f;
}

.polizza-cta .btn-cancel:hover {
  background: #c51f1a;
}

.polizza-cta .btn-save {
  background: #38c172;
}

.polizza-cta .btn-save:hover {
  background: #2d995b;
}

@media screen and (max-width: 1480px) {
  .polizza {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .polizza {
    font-size: 16px;
  }

  .polizza-info {
    flex-wrap: wrap;
  }

  .polizza-info div {
    flex: 0 0 33%;
    margin-bottom: 2em;
  }

  .polizza-info div h4 {
    font-size: 1em;
    margin-bottom: 0.6em;
  }

  .polizza-status {
    flex-wrap: wrap;
    margin-top: 1em;
  }

  .polizza-status div {
    flex: 0 0 50%;
    margin: 0;
    margin-bottom: 2em;
    padding: 0;
    padding-right: 1em;
  }

  .polizza-status div h4 {
    font-size: 1em;
    margin-bottom: 0.6em;
  }

  .polizza-status div fieldset {
    display: block;
  }

  .polizza-status div fieldset input[type=file] + label {
    padding: 0;
  }

  .polizza-cta {
    margin-top: 1em;
    padding-top: 1em;
    text-align: center;
  }

  .polizza-cta .btn {
    margin-right: 5px;
    font-size: 0.9em;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.8em;
  }

  .polizza-cta .btn i {
    margin-right: 10px;
  }
}

#has_payment_changed,
#has_files_changed {
  display: none;
}

header {
  font-size: 16px;
}

header {
  display: flex;
  margin-bottom: 3rem;
  position: static;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #808080;
  padding: 1em 0;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

header .breadcrumbs a,
header .breadcrumbs p {
  color: #253151;
  text-transform: uppercase;
  margin: 0;
  font-size: 4em;
  font-family: "GothamMedium", sans-serif;
}

header .breadcrumbs a i,
header .breadcrumbs p i {
  font-size: 1em;
  font-family: "Font Awesome 5 Free", sans-serif;
  margin-right: 20px;
}

header .user {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .user-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 50px;
}

header .user-info h1,
header .user-info span {
  margin: 0;
  padding: 0;
  line-height: 1;
}

header .user-info h1 {
  font-size: 2.5em;
  font-family: "GothamMedium", sans-serif;
}

header .user-info span {
  font-size: 0.9em;
  margin-bottom: 5px;
  padding-left: 5px;
  font-family: "GothamBook", sans-serif;
  color: #808080;
}

header .user-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #253151;
  cursor: pointer;
  text-decoration: none;
}

header .user-avatar img {
  width: 100%;
}

@media screen and (max-width: 1480px) {
  header {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  header {
    font-size: 12px;
  }

  header .breadcrumbs {
    width: auto;
  }

  header .breadcrumbs a {
    font-size: 2em;
  }

  header .breadcrumbs a i {
    font-size: 1em;
    margin-right: 10px;
  }

  header .user-info {
    display: none;
  }
}

header + .sectionTitle {
  margin-top: 0;
}

.sectionTitle + .sectionSubtitle {
  margin-top: -2rem;
  padding-left: 0;
}

#sidebar > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#sidebar > div > form {
  margin-top: auto;
}

#sidebar ul.components li {
  height: 80px;
}

@media screen and (max-width: 1024px) {
  #sidebar ul.components li {
    height: 65px;
  }
}

#sidebar ul.components li a {
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #1d2540;
  transition: background 0.3s ease, color 0.3s ease;
}

#sidebar ul.components li a svg {
  transform-origin: center;
  transform: scale3d(2, 2, 2);
  margin: 0;
}

@media screen and (max-width: 1024px) {
  #sidebar ul.components li a svg {
    transform: scale3d(1.5, 1.5, 1.5);
  }
}

#sidebar ul.components li#menuInfo a {
  color: #92a2ff;
}

#sidebar ul.components li#menuInfo a svg {
  fill: #92a2ff;
}

#sidebar ul.components li#menuInfo a:hover,
#sidebar ul.components li#menuInfo a:active {
  background: #92a2ff;
  color: #ffffff;
}

#sidebar ul.components li#menuInfo a:hover svg,
#sidebar ul.components li#menuInfo a:hover path,
#sidebar ul.components li#menuInfo a:active svg,
#sidebar ul.components li#menuInfo a:active path {
  fill: #ffffff;
}

#sidebar ul.components li#menuCond a {
  color: #f6b825;
}

#sidebar ul.components li#menuCond a svg {
  fill: #f6b825;
}

#sidebar ul.components li#menuCond a:hover,
#sidebar ul.components li#menuCond a:active {
  background: #f6b825;
  color: #ffffff;
}

#sidebar ul.components li#menuCond a:hover svg,
#sidebar ul.components li#menuCond a:hover path,
#sidebar ul.components li#menuCond a:active svg,
#sidebar ul.components li#menuCond a:active path {
  fill: #ffffff;
}

#sidebar ul.components li#menuCassa a {
  color: #d82550;
}

#sidebar ul.components li#menuCassa a svg {
  fill: #d82550;
}

#sidebar ul.components li#menuCassa a:hover,
#sidebar ul.components li#menuCassa a:active {
  background: #d82550;
  color: #ffffff;
}

#sidebar ul.components li#menuCassa a:hover svg,
#sidebar ul.components li#menuCassa a:hover path,
#sidebar ul.components li#menuCassa a:active svg,
#sidebar ul.components li#menuCassa a:active path {
  fill: #ffffff;
}

#sidebar ul.components li#menuUsers a {
  color: #66fbffff;
}

#sidebar ul.components li#menuUsers a svg {
  fill: #66fbffff;
}

#sidebar ul.components li#menuUsers a:hover,
#sidebar ul.components li#menuUsers a:active {
  background: #66fbffff;
  color: #171717;
}

#sidebar ul.components li#menuUsers a:hover svg,
#sidebar ul.components li#menuUsers a:hover path,
#sidebar ul.components li#menuUsers a:active svg,
#sidebar ul.components li#menuUsers a:active path {
  fill: #171717;
}

#sidebar ul.components li#menuGuide a {
  color: #ff8650ff;
}

#sidebar ul.components li#menuGuide a svg {
  fill: #ff8650ff;
}

#sidebar ul.components li#menuGuide a:hover,
#sidebar ul.components li#menuGuide a:active {
  background: #ff8650ff;
  color: #ffffff;
}

#sidebar ul.components li#menuGuide a:hover svg,
#sidebar ul.components li#menuGuide a:hover path,
#sidebar ul.components li#menuGuide a:active svg,
#sidebar ul.components li#menuGuide a:active path {
  fill: #ffffff;
}

#sidebar ul.components li#menuPrat a {
  color: #e0e7f5;
}

#sidebar ul.components li#menuPrat a svg {
  fill: #e0e7f5;
}

#sidebar ul.components li#menuPrat a:hover,
#sidebar ul.components li#menuPrat a:active {
  background: #e0e7f5;
  color: #171717;
}

#sidebar ul.components li#menuPrat a:hover svg,
#sidebar ul.components li#menuPrat a:hover path,
#sidebar ul.components li#menuPrat a:active svg,
#sidebar ul.components li#menuPrat a:active path {
  fill: #171717;
}

#sidebar ul.components li#menuFlot a {
  color: #d82550;
}

#sidebar ul.components li#menuFlot a svg {
  fill: #d82550;
}

#sidebar ul.components li#menuFlot a:hover,
#sidebar ul.components li#menuFlot a:active {
  background: #d82550;
  color: #ffffff;
}

#sidebar ul.components li#menuFlot a:hover svg,
#sidebar ul.components li#menuFlot a:hover path,
#sidebar ul.components li#menuFlot a:active svg,
#sidebar ul.components li#menuFlot a:active path {
  fill: #ffffff;
}

#sidebar ul.components li#menuTick a {
  color: #4fb37b;
}

#sidebar ul.components li#menuTick a svg {
  fill: #4fb37b;
}

#sidebar ul.components li#menuTick a:hover,
#sidebar ul.components li#menuTick a:active {
  background: #4fb37b;
  color: #ffffff;
}

#sidebar ul.components li#menuTick a:hover svg,
#sidebar ul.components li#menuTick a:hover path,
#sidebar ul.components li#menuTick a:active svg,
#sidebar ul.components li#menuTick a:active path {
  fill: #ffffff;
}

.sectionTitle {
  text-transform: uppercase;
  background: linear-gradient(to right, #d88bf0, #ed6f74);
  margin: 3rem 0;
  padding: 0.75em;
  padding-top: 0.77em;
  font-size: 1.2em;
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  line-height: 1;
  font-family: "GothamMedium", sans-serif;
}

.sectionSubtitle {
  text-transform: uppercase;
  margin: 1.75rem 0;
  padding: 0.75em;
  padding-top: 0.77em;
  color: #1d2540;
  font-size: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  line-height: 1;
  font-family: "GothamMedium", sans-serif;
}

.sectionParagraph {
  margin: 2rem 0 1rem;
  padding: 0;
  color: #808080;
  font-size: 1.2em;
  line-height: 1;
  font-family: "GothamMedium", sans-serif;
}

.styledForm {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .styledForm {
    flex-direction: column;
    width: 80%;
    max-width: 70vw;
  }
}

.styledForm .form-check-radio-group {
  width: 100%;
  display: block;
}

.styledForm > div {
  width: auto;
}

@media screen and (max-width: 1200px) {
  .styledForm > div {
    width: 100%;
    font-size: 0;
  }

  .styledForm > div fieldset {
    font-size: 16px;
    width: 48%;
    margin: 0 auto 1rem !important;
    padding: 0 1em;
  }

  .styledForm > div fieldset input,
  .styledForm > div fieldset select {
    width: 100% !important;
  }

  .styledForm > div fieldset i {
    margin-right: 2rem;
  }
}

.styledForm > div + div {
  font-size: 13px;
  margin-left: 3em;
}

@media screen and (max-width: 1200px) {
  .styledForm > div + div {
    width: auto;
    margin-left: 0;
    text-align: center;
    margin-top: 3rem;
  }

  .styledForm > div + div .button {
    margin-left: 0;
  }
}

.styledForm .expand {
  width: 350px;
}

.styledForm .expand input,
.styledForm .expand .datalist {
  width: 100% !important;
}

.styledForm .expand input-label,
.styledForm .expand .datalist-label {
  width: 100% !important;
}

.styledForm fieldset + button,
.styledForm fieldset + a {
  margin-left: 0.5rem;
}

.icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 0;
  transition: 0.3s ease;
  border: none;
  background: none;
  outline: none;
}

.icon:focus {
  outline: none;
}

.icon i {
  color: #dadce0ff;
  transition: 0.3s ease;
}

.icon svg {
  width: 100%;
  fill: #dadce0ff;
  transition: 0.3s ease;
}

.icon-view:hover i,
.icon-primary:hover i {
  color: #38c172ff;
}

.icon-view:hover svg,
.icon-primary:hover svg {
  fill: #38c172ff;
}

.icon-edit:hover i,
.icon-secondary:hover i {
  color: #92a2ffff;
}

.icon-edit:hover svg,
.icon-secondary:hover svg {
  fill: #92a2ffff;
}

.icon-delete:hover i {
  color: #e3342fff;
}

.icon-delete:hover svg {
  fill: #e3342fff;
}

.button {
  font-size: 1.2em;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  border-radius: 2em;
  border: none;
  margin-bottom: 1em;
  padding: 0.5em 1em;
  text-align: center;
  font-family: "GothamMedium", sans-serif;
  transition: background 0.3s ease;
}

.button:focus {
  outline: none;
}

.button-add,
.button-primary {
  background: #38c172;
  color: #ffffff;
}

.button-add:hover,
.button-primary:hover {
  color: #ffffff;
  background: #27864f;
}

.button-search {
  background: #92a2ffff;
  color: #ffffff;
}

.button-search:hover {
  color: #ffffff;
  background: #5f76ff;
}

.button-secondary {
  background: #1d2540ff;
  color: #ffffff;
}

.button-secondary:hover {
  color: #ffffff;
  background: #0d111d;
}

.button-reset,
.button-danger {
  background: #e3342fff;
  color: #ffffff;
}

.button-reset:hover,
.button-danger:hover {
  color: #ffffff;
  background: #c51f1a;
}

.button-info {
  color: #ffffff;
  width: 165px;
  background: linear-gradient(to right, #6e9de9, #88e9f3);
  transition: background 0.6s ease-out;
}

.button-info:hover {
  color: #ffffff;
  background-position: 165px;
}

.button-logout {
  background: transparent;
  color: #ffffff;
  display: block;
  margin: auto auto 0;
}

.button-logout svg {
  fill: white;
}

.button-logout:hover {
  color: #e6e6e6;
}

.button-logout:hover svg {
  fill: #e6e6e6;
}

.button-form {
  background: transparent;
  color: #ffffff;
  display: block;
  margin: auto auto 0;
}

.button-form svg {
  fill: white;
}

.button-form:hover {
  color: #e6e6e6;
}

.button-form:hover svg {
  fill: #e6e6e6;
}

.button svg,
.button i {
  display: inline-block;
  width: 25px;
  fill: #ffffff;
  color: #ffffff;
}

.button + .button {
  margin-left: 1em;
}

.button svg {
  display: inline-block;
  width: 25px;
  fill: #ffffff;
}

.styledInput {
  font-size: 1.2em;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  margin-bottom: 1em;
  position: relative;
}

.styledInput input[type=text],
.styledInput input[type=email] {
  font-family: "GothamBook", sans-serif;
  background: none;
  border: 2px solid #808080;
  border-radius: 2em;
  color: #171717;
  height: 40px;
  width: 200px;
  outline: none;
  padding: 0.5em;
  text-align: center;
}

.styledInput input::-webkit-input-placeholder {
  color: #808080;
}

.styledInput input::-moz-placeholder {
  color: #808080;
}

.styledInput input:-ms-input-placeholder {
  color: #808080;
}

.styledInput input::-ms-input-placeholder {
  color: #808080;
}

.styledInput input::placeholder {
  color: #808080;
}

.styledInput input:not([value=""]) {
  background-color: #e8f0fe;
}

.styledInput select {
  font-family: "GothamBook", sans-serif;
  background: none;
  border: 2px solid #808080;
  border-radius: 2em;
  width: 200px;
  outline: none;
  padding: 0.5em;
  height: 40px;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #808080;
}

.styledInput select::-ms-expand {
  display: none;
}

.styledInput select:not([value=""]) {
  background-color: #e8f0fe;
  color: #171717;
}

.styledInput i {
  color: #808080;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-100%, -50%);
}

.styledInput + .styledInput {
  margin-left: 0.5em;
}

.styledInput .invalid-feedback {
  position: absolute;
  padding: 0.2rem 0.5rem;
}

.styledInput.styledSelect select,
.styledInput.styledDatalist select {
  display: none;
  background: transparent;
}

.styledInput.styledSelect select:not([value=""]) + .datalist .datalist-label,
.styledInput.styledDatalist select:not([value=""]) + .datalist .datalist-label {
  background-color: #e8f0fe;
  color: #171717;
}

.styledInput.styledSelect .datalist,
.styledInput.styledDatalist .datalist {
  position: relative;
  width: 200px;
  text-align: center;
}

.styledInput.styledSelect .datalist-label,
.styledInput.styledDatalist .datalist-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.5rem;
  font-family: "GothamBook", sans-serif;
  width: 200px;
  outline: none;
  padding: 0.5em;
  height: 40px;
  border: 2px solid #808080;
  border-radius: 20px;
  color: #808080;
  cursor: pointer;
}

.styledInput.styledSelect .datalist-label i,
.styledInput.styledDatalist .datalist-label i {
  transition: transform 0.3s ease;
}

.styledInput.styledSelect .datalist-select,
.styledInput.styledDatalist .datalist-select {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: "GothamBook", sans-serif;
  border: 2px solid #808080;
  border-top: none;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  overflow: hidden;
  height: 0;
}

.styledInput.styledSelect .datalist-option,
.styledInput.styledDatalist .datalist-option {
  width: 100%;
  background: #ffffff;
  padding: 0.5rem 1rem;
  text-align: center;
  cursor: pointer;
  font-family: "GothamBook", sans-serif;
  transition: background 0.3s ease;
  white-space: nowrap;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.styledInput.styledSelect .datalist-option:hover,
.styledInput.styledDatalist .datalist-option:hover {
  background: #e6e6e6;
}

.styledInput.styledSelect .datalist-option.selected,
.styledInput.styledDatalist .datalist-option.selected {
  background: #e8f0fe;
}

.styledInput.styledSelect .datalist-option.selected:hover,
.styledInput.styledDatalist .datalist-option.selected:hover {
  background: #b7d0fc;
}

.styledInput.styledSelect .datalist-option.disabled,
.styledInput.styledDatalist .datalist-option.disabled {
  pointer-events: none;
  background: #e6e6e6;
  color: #808080;
  cursor: not-allowed;
}

.styledInput.styledSelect .datalist-option.disabled:hover,
.styledInput.styledDatalist .datalist-option.disabled:hover {
  background: #e6e6e6;
}

.styledInput.styledSelect .datalist-option.hidden,
.styledInput.styledDatalist .datalist-option.hidden {
  display: none;
}

.styledInput.styledSelect .datalist-search,
.styledInput.styledDatalist .datalist-search {
  position: relative;
}

.styledInput.styledSelect .datalist-search input,
.styledInput.styledDatalist .datalist-search input {
  border: none;
  background: transparent;
  font-size: 1rem;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0;
}

.styledInput.styledSelect .datalist-search i,
.styledInput.styledDatalist .datalist-search i {
  font-size: 1rem;
  margin-right: 0.5rem;
  cursor: pointer;
}

.styledInput.styledSelect .datalist.open .datalist-label,
.styledInput.styledDatalist .datalist.open .datalist-label {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.styledInput.styledSelect .datalist.open .datalist-label i,
.styledInput.styledDatalist .datalist.open .datalist-label i {
  transform: translate(-100%, -50%) rotateX(180deg);
}

.styledInput.styledSelect .datalist.open .datalist-select,
.styledInput.styledDatalist .datalist.open .datalist-select {
  display: flex;
  height: auto;
}

.styledInput.styledUpload {
  position: relative;
  width: 200px;
  height: 40px;
}

.styledInput.styledUpload input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}

.styledInput.styledUpload .customInput {
  width: 100%;
  height: 100%;
  font-family: "GothamBook", sans-serif;
  background: none;
  border: 2px solid #808080;
  border-radius: 2em;
  color: #171717;
  outline: none;
  padding: 0.5em;
  text-align: center;
  cursor: pointer;
}

.styledInput.styledUpload .customInput.hasValue {
  background: #e8f0fe;
}

.styledInput.styledUpload .fileList {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 0.7rem;
  color: #808080;
  padding: 0 1rem;
}

.closeTicketForm .styledInput {
  display: none;
}

.moreInfoForm .button-info{
  width: 322px;
}
.moreInfoForm .button-info:hover{
  background-position: 322px;
}
.moreInfoForm {
  margin-right: 10px;
}

.ticketContent-close-box {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}


.styledTable {
  width: 100%;
  font-size: 16px;
  margin: 1em 0;
  background: transparent;
}

@media screen and (min-width: 900px) {
  .styledTable {
    font-size: 12px;
  }
}

@media screen and (min-width: 1200px) {
  .styledTable {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  .styledTable {
    font-size: 16px;
  }
}

.styledTable thead th {
  background: transparent;
  color: #25314c;
  width: auto;
  border: none;
  font-family: "GothamMedium", sans-serif;
  padding: 1em;
  font-size: 1em;
}

.styledTable thead th[data-column=table-status],
.styledTable thead th[data-column=table-email],
.styledTable thead th[data-column=table-files],
.styledTable thead th[data-column=table-attachments],
.styledTable thead th[data-column=table-notified],
.styledTable thead th[data-column=table-actions] {
  text-align: center;
}

.styledTable thead th a {
  color: #25314c;
  font-size: 1em;
}

.styledTable tbody {
  background: transparent;
}

.styledTable tbody tr {
  background: transparent;
  border-top: 1px solid #dadce0;
  font-size: 1em;
}

.styledTable tbody tr td {
  background: transparent;
  font-family: "GothamBook", sans-serif;
  padding: 1em;
  font-size: 1em;
}

.styledTable tbody tr td > span:focus {
  outline: none;
}

.styledTable tbody tr td .status {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #d82550ff;
  display: inline-block;
}

.styledTable tbody tr td .status-active {
  background: #38c172;
}

.styledTable tbody tr td .status[data-status=success] {
  background: #38c172;
}

.styledTable tbody tr td .status[data-status=pending] {
  background: #f6b800;
}

.styledTable tbody tr td .status[data-status=sub] {
  background: #3490dc;
}

.styledTable tbody tr td .status[data-status=fail] {
  background: #e3342f;
}

.styledTable tbody tr td .status[data-status=paid] {
  background: #38c172;
}

.styledTable tbody tr td .status[data-status=not_paid] {
  background: #e3342f;
}

.styledTable tbody tr td[data-column=table-status],
.styledTable tbody tr td[data-column=table-files],
.styledTable tbody tr td[data-column=table-attachments],
.styledTable tbody tr td[data-column=table-notified],
.styledTable tbody tr td[data-column=table-actions] {
  text-align: center;
}

.styledTable fieldset.hidden {
  display: block;
  width: 1.25em;
  height: 1em;
  position: relative;
  margin-top: 3px;
  cursor: pointer;
  float: right;
}

.styledTable fieldset.hidden input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.styledTable fieldset.hidden input + label {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: white;
  border: 1px solid #253151;
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
}

.styledTable fieldset.hidden input:checked + label {
  background: #38c172;
  border-color: white;
  position: relative;
}

.styledTable fieldset.hidden input:checked + label:after {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%);
}

.styledTable#tableToSend .status[data-status=paid] {
  background: #38c172;
}

.styledTable#tableToSend .status[data-status=not_paid] {
  background: #e3342f;
}

.styledTable#tableToSend .table-body thead th {
  text-align: left;
}

.styledTable#tableToSend .table-body thead th:last-child,
.styledTable#tableToSend .table-body thead th:nth-last-child(2) {
  text-align: center;
}

.styledTable#tableToSend .table-body tbody tr td {
  text-align: left;
}

.styledTable#tableToSend .table-body tbody tr td:last-child,
.styledTable#tableToSend .table-body tbody tr td:nth-last-child(2) {
  text-align: center;
}

.styledTable#tableToComplete .status[data-status=paid] {
  background: #38c172;
}

.styledTable#tableToComplete .status[data-status=not_paid] {
  background: #e3342f;
}

.styledTable-actions {
  padding: 0.75em;
  margin-top: 3em;
  text-align: right;
}

.styledTable-actions .btn {
  color: white;
  text-transform: uppercase;
  border: none;
  width: 15em;
  height: 2.5em;
  transition: background 0.3s ease-out;
  margin-left: 5em;
  font-size: 0.9em;
}

.styledTable-actions .btn-info {
  background: linear-gradient(to right, #6e9de9, #88e9f3);
  transition: background 0.6s ease-out;
}

.styledTable-actions .btn-info:hover {
  background-position: 15em;
}

.styledTable-actions .btn-danger {
  width: auto;
}

.styledTable-actions .btn-danger i {
  margin: 0 0.5em;
}

.postList {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 70%;
}

.postList.maxWidth {
  width: 100%;
}

.postList .sectionTitle {
  margin-top: 0;
}

.postItem {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5em 1em;
  border-bottom: 1px solid #808080;
}

.postItem h2 {
  flex: 0.6;
  margin: 0;
  margin-right: 1em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: "GothamMedium", sans-serif;
}

.postItem h3 {
  flex: 0.4;
  font-size: 1.4em;
  color: #808080;
  margin: 0;
  margin-right: 1em;
  font-family: "GothamBook", sans-serif;
}

.postItem p {
  flex: 1;
  margin: 0;
}

.postItem p small {
  font-size: 0.9em;
  color: #808080;
  font-family: "GothamBook", sans-serif;
}

.postItem p small:before {
  content: "|";
  display: inline;
  margin-right: 0.5em;
}

.postItem p small:first-of-type:before {
  content: "";
  display: none;
}

.postItem a {
  margin: 0;
  width: 2em;
  height: 2em;
  color: #253151;
  transition: color 0.3s ease;
}

.postItem a:hover {
  color: #151c2e;
}

.postItem a i {
  font-size: 2em;
  font-family: "Font Awesome 5 Free", sans-serif;
}

.infopost {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
}

.infopost-main {
  flex: 1;
}

.infopost-main .sectionTitle {
  margin-top: 0;
}

.infopost-main .sectionSubtitle {
  margin-bottom: 1rem;
}

.infopost-attachment {
  width: 400px;
  height: 100%;
  border-left: 1px solid #dadce0;
}

.infopost-attachment .sectionTitle {
  margin-top: 0;
  margin-left: 1rem;
}

.infopost-attachment ul {
  margin-top: -1rem;
}

.infopost-attachment ul li {
  padding: 1rem;
  border-bottom: none !important;
}

.infopost-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.infopost-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #253151;
  overflow: hidden;
}

.infopost-author .author-avatar img {
  width: 100%;
}

.infopost-author .author-info {
  margin-left: 1rem;
}

.infopost-data {
  margin-top: 0.5rem;
}

.userInfo {
  display: flex;
  align-items: flex-start;
}

.userInfo img {
  width: 180px;
  height: auto;
  margin-right: 2rem;
}

.userInfo-details {
  font-size: 1.2rem;
}

.ticketApp {
  flex: 1;
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 10px;
  margin-top: 2rem;
}

.ticketApp .ticketList {
  flex: 0 0 25%;
}

.ticketApp .ticketContent {
  flex: 0 0 75%;
  flex-direction: column;
  display: flex;
  border-left: 2px solid #e6e6e6;
}

.ticketApp .ticketContent-info {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 2px solid #e6e6e6;
  padding: 1rem;
}

.ticketApp .ticketContent-info-box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.25rem;
  border: none;
  flex-wrap: wrap;
}

.ticketApp .ticketContent-info-box:first-of-type {
  flex-direction: column;
  align-items: flex-start;
}

.ticketApp .ticketContent-info-box:first-of-type > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
}

.ticketApp .ticketContent-info-box:first-of-type > div > div {
  width: auto;
  margin-right: 1rem;
}

.ticketApp .ticketContent-info-box:first-of-type > div > strong {
  width: 100px;
}

.ticketApp .ticketContent-info-box:last-of-type {
  margin-bottom: 0;
}

.ticketApp .ticketContent-info-box .list-unstyled {
  margin-bottom: 0;
  align-items: center;
}

.ticketApp .ticketContent-info-box .list-unstyled li {
  margin-right: 0.5rem;
}

.ticketApp .ticketContent-info-box h3 {
  margin: 0;
  width: 100%;
  font-size: 1.2rem;
}

.ticketApp .ticketContent-info-box h5 {
  margin: 0;
  width: 70px;
  font-size: 1rem;
}

.ticketApp .ticketContent-info-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ticketApp .ticketContent-info-list figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-right: 1rem;
}

.ticketApp .ticketContent-info-list figure div {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
}

.ticketApp .ticketContent-info-list figure div img {
  width: 100%;
}

.ticketApp .ticketContent-info-list figure figcaption {
  margin-left: 0.5rem;
}

.ticketApp .ticketContent #ticketChatWrapper {
  width: 100%;
  max-width: 100%;
  flex: 1;
}

.ticketApp .ticketContent #ticketChatWrapper #ticketChatMessage {
  margin: 0 15px;
}

.content-flex {
  display: flex;
  flex-direction: column;
}

.terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}

.terms-breadcrumbs {
  width: 100%;
  border-bottom: 1px solid #808080;
  padding: 1rem;
  margin-top: -3rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.terms-breadcrumbs a,
.terms-breadcrumbs span {
  margin-bottom: 0;
  line-height: 1;
}

.terms-breadcrumbs i.fas.fa-angle-right {
  margin: 0 0.5rem;
}

.terms-structure {
  flex: 0.3;
  padding: 1rem;
  padding-top: 2rem;
}

.terms-structure ul {
  padding-left: 0;
  list-style: none;
}

.terms-structure ul > li {
  margin-bottom: 0.5rem;
}

.terms-structure ul ul li {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.terms-structure ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.terms-structure ul li a {
  margin-left: 1rem;
}

.terms-structure ul li a.icon {
  margin-left: auto;
}

.terms-structure ul li ul {
  width: 100%;
}

.terms-structure ul li form {
  line-height: 1;
  margin-left: 1rem;
  margin-bottom: 0;
}

.terms-structure ul li .icon {
  width: 18px;
  height: 18px;
}

.terms-structure ul li.active > a {
  color: #212529;
}

.terms-structure ul .list-tree .sublist-tree,
.terms-structure ul .sublist-tree .sublist-tree {
  display: none;
}

.terms-structure ul .list-tree-folder:hover {
  cursor: pointer;
  color: #3490dc;
}

.terms-main {
  flex: 1;
  margin-left: 2rem;
  border-left: 1px solid #e6e6e6;
  height: 100%;
}

.terms-main-actions {
  padding: 1rem;
  padding-bottom: 0;
  padding-top: 2rem;
}

.terms-main-actions .btn-group {
  height: 40px;
}

.terms-main-actions .btn-group .btn {
  border-radius: 40px;
}

.terms-main-actions .btn-group-toggle > .btn {
  padding: 0 1rem;
}

.terms-main-actions .btn-group-toggle .btn:not(:last-child):not(.dropdown-toggle),
.terms-main-actions .btn-group-toggle .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.terms-main-actions .btn-group-toggle .btn:not(:first-child),
.terms-main-actions .btn-group-toggle .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.terms-main-actions .btn-group:nth-of-type(2) {
  margin-left: 1rem !important;
}

.terms-main-actions .btn-group .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.terms-main-actions .btn-group .btn > i.fa-plus {
  margin-right: 1rem;
}

.terms-main-actions fieldset + .btn-group {
  margin-left: 1rem !important;
}

.terms-main-content {
  display: flex;
  flex-direction: column;
}

.terms-main-content-header {
  display: flex;
  padding: 1rem;
  border-bottom: 1px solid #e6e6e6;
}

.terms-main-content-header > div {
  padding: 0;
}

.terms-main-content-body {
  display: flex;
  padding: 1rem;
  flex-direction: column;
}

.terms-main-content-body .fileSystemElem.fileSystemList {
  margin: 0 !important;
  padding: 0 !important;
}

.terms-main-content-body .fileSystemElem.fileSystemList .searchFilter {
  padding: 0 !important;
}
