/*--------------------------------------------------------------------------------------
  MAIN
--------------------------------------------------------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
}
* {
  font-family: 'Red Hat Display', sans-serif;
}
a {
  outline: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: none !important;
  background-color: transparent;
}
p {
  margin: 4px 0 4px 0;
}
a.no-cursor {
  cursor: default;
}

:root {
    --clic-primary: #063d4f;
    --clic-secondary: #c6c6c6;
    --clic-tertiary: #7e8a98;
    --clic-red: #ff4d32;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Red Hat Display', sans-serif;
    overflow-x: hidden;
}
p {
    margin-bottom: 0;
}
a, a:hover {
    color: inherit;
}
.text-clic-primary {
    color: var(--clic-primary) !important;
}
.text-clic-secondary {
    color: var(--clic-secondary) !important;
}
.text-clic-tertiary {
    color: var(--clic-tertiary) !important;
}
.text-clic-red {
    color: var(--clic-red) !important;
}
.bg-clic-primary {
    background-color: var(--clic-primary);
}
.bg-clic-secondary {
    background-color: var(--clic-secondary);
}
.bg-clic-tertiary {
    background-color: var(--clic-tertiary);
}
.bg-clic-red {
    background-color: var(--clic-red);
}
.container-nav {
    width: 90%;
}
.container-clic {
    width: 964px;
}
@media screen and (max-width: 1100px) {
    .container-clic {
        width: 900px;
    }
}
@media screen and (max-width: 991px) {
    .container-clic {
        width: 90%;
    }
}
@media screen and (max-width: 500px) {
    .container-clic {
        width: 90%;
    }
}
@media screen and (max-width: 500px) {
    .xs-hidden {
        display: none;
    }
}

/*--------------------------------------------------------------------------
 PULL LEFT-RIGHT
--------------------------------------------------------------------------*/
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}

/*--------------------------------------------------------------------------
 TOP
--------------------------------------------------------------------------*/
#goto_top {
  position: fixed;
  width: 40px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  z-index: 9998;
  display: none; 
  opacity: 0.8; 
  background-color: #06404F; 
  color: #fff; 
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
#goto_top:hover {
  background-color: #1c232a; 
}

/*--------------------------------------------------------------------------
 AJAX
--------------------------------------------------------------------------*/
#ajax_loader {
  display: none;
  background: url(../img/loaders/ajax-loader.gif) no-repeat center; 
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2;
}

/*--------------------------------------------------------------------------------------
  FOOTER
--------------------------------------------------------------------------------------*/
.footer {
    font-size: 14px;
    margin-bottom: 100px;
}
.footer .footer-content {
    height: 100%;
}
.footer .footer-content .footer-content__col {
    height: 380px;
    padding: 60px;
    width: calc(50vw - 190px);
}
.footer .footer-content .footer-content__col p {
    line-height: 1.2;
}
.footer .footer-content .footer-content__col .fa-linkedin {
    font-size: 32px;
}
.footer .footer-content .footer-content__col:nth-child(1) {
    margin-top: 110px;
}
.footer .footer-content .footer-content__col:nth-child(2) {
    width: 380px;
    font-size: 23px;
    line-height: 1.3;
    padding: 0;
}
.footer .footer-content .footer-content__col:nth-child(3) {
    margin-top: 42px;
}

@media screen and (max-width: 991px) {
    .footer {
        margin-bottom: 0;
    }
    .footer .footer-content {
        flex-direction: column;
    }
    .footer .footer-content .footer-content__col {
        width: 100%;
        align-items: center !important;
        text-align: center;
        height: auto;
        padding: 40px !important;
    }
    .footer .footer-content .footer-content__col:nth-child(1) {
        margin-top: 0px;
    }
    .footer .footer-content .footer-content__col:nth-child(2) {
        width: 100%;
    }
    .footer .footer-content .footer-content__col:nth-child(3) {
        margin-top: 0;
    }
}
@media screen and (max-width: 500px) {
    .footer .footer-content .footer-content__col {
        padding: 30px !important;
    }
}

/*--------------------------------------------------------------------------------------
  NAVBAR
--------------------------------------------------------------------------------------*/
.nav .nav-content {
  margin-bottom: 80px;
}
.nav .nav-content .nav-link {
  gap: 10px;
  padding: 0;
}
.nav .nav-content .nav-link .nav-link__top {
  font-size: 10px;
  gap: 12px;
}
.nav .nav-content .nav-link .nav-link__top .fa-linkedin {
  font-size: 26px;
}
.nav .nav-content .nav-link .nav-link__top .bg-clic-red {
  padding: 5px 25px;
}
.nav .nav-content .nav-link .nav-link__bottom {
  font-size: 16px;
  padding-right: 42px;
  gap: 40px;
}
.nav .nav-content .nav-link .nav-link__bottom .nav-link__item {
  white-space: nowrap;
}
.nav .nav-content .nav-link .active {
  font-weight: 700;
}
.nav .nav-content .nav-link .nav-link__bottom .nav-link__item:before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--clic-secondary);
  position: absolute;
  left: calc(-20px + -7.5px);
  top: calc(50% - 7.5px);
  pointer-events: none;
}
.nav .nav-content .nav-content__burger {
  display: none;
}
.nav .nav-content .nav-content__burger button {
  outline: none;
  border: none;
  background: none;
  padding: 0;
  position: relative;
  width: 55px;
  height: 40px;
  display: flex;
  align-items: center;
}
.nav .nav-content .nav-content__burger button span {
  position: absolute;
  right: 0;
  display: block;
  width: 55px;
  height: 4px;
  background: var(--clic-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav .nav-content .nav-content__burger button span:nth-child(1) {
  transform: translateY(-15px);
}
.nav .nav-content .nav-content__burger button span:nth-child(2) {
  opacity: 1;
}
.nav .nav-content .nav-content__burger button span:nth-child(3) {
  transform: translateY(15px);
}
.nav .nav-content .nav-content__burger button.open span:nth-child(1) {
  transform: rotate(45deg);
}
.nav .nav-content .nav-content__burger button.open span:nth-child(2) {
  opacity: 0;
}
.nav .nav-content .nav-content__burger button.open span:nth-child(3) {
  transform: rotate(-45deg);
}
@media screen and (max-width: 991px) {
  .nav {
    position: relative;
  }
  .nav .nav-content {
    margin-bottom: 0px;
    padding-bottom: 1rem;
    align-items: center !important;
  }
  .nav .nav-content .nav-link {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    width: 100%;
    background: white;
    padding-top: 0;
    padding-bottom: 1rem;
    justify-content: center;
    align-items: center;
  }
  .nav .nav-content .nav-link.visible {
    display: flex !important;
  }
  .nav .nav-content .nav-link .nav-link__top,
  .nav .nav-content .nav-link .nav-link__bottom {
    width: 90%;
    justify-content: center !important;
  }
  .nav .nav-content .nav-link .nav-link__bottom {
    padding-right: 0;
  }
  .nav .nav-content .nav-link .nav-link__bottom .nav-link__item:before {
    content: none;
  }
  .nav .nav-content .nav-content__burger {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-content .nav-link {
    flex-direction: column-reverse !important;
  }
  .nav .nav-content .nav-link .nav-link__top,
  .nav .nav-content .nav-link .nav-link__bottom {
    flex-direction: column;
    text-align: center;
  }
  .nav .nav-content .nav-link .nav-link__bottom {
    gap: 8px;
  }
  .nav .nav-content .nav-link .nav-link__bottom .dropdown-menu {
    top: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .nav .nav-content .nav-link .nav-link__top {
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .nav .nav-content .nav-content__brand img {
    width: 244px;
    height: auto;
  }
  .nav .nav-content .nav-link .nav-link__top,
  .nav .nav-content .nav-link .nav-link__bottom {
    width: 95%;
  }
  .nav .nav-content .nav-content__burger button {
    width: 45px;
    height: 35px;
  }
  .nav .nav-content .nav-content__burger button span {
    width: 45px;
    height: 3px;
  }
  .nav .nav-content .nav-content__burger button span:nth-child(1) {
    transform: translateY(-12px);
  }
  .nav .nav-content .nav-content__burger button span:nth-child(3) {
    transform: translateY(12px);
  }
}
.nav .nav-content .account-picture {
  width: 34px;
  float: left;
  margin-top: -4px;
  margin-right: 6px;
  border-radius: 50% !important;
}

/*--------------------------------------------------------------------------------------
  DROPDOWN
--------------------------------------------------------------------------------------*/
.dropdown-menu {
  border: 0;
  opacity: 0;
  display: none;
  transform: scale(0);
  padding: 0.3125rem 0;
  transform-origin: 0 0;
  will-change: transform, opacity;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
@media (max-width: 992px) {
  #navbar_main ul.navbar-nav li.nav-item .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: unset;
    width: 100%;
  }
}
.open > .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  display: block;
  transform: scale(1);
}
.dropdown-menu.hiding {
  opacity: 0;
  display: block;
  transform: scale(0);
}
.dropdown-menu .disabled > a {
  color: #777;
}
.dropdown .btn.btn-primary {
  background-color: #06404f;
}
.dropdown .btn.btn-primary:focus,
.dropdown .btn.btn-primary.focus,
.dropdown .btn.btn-primary:hover {
  color: #e2e3e4 !important;
  background-color: #0a6e87;
  border-color: #0a6e87;
}
.dropdown-menu .disabled > a:focus,
.dropdown-menu .disabled > a:hover {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  color: #777;
}
.dropdown-menu .dropdown-item,
.dropdown-menu li > a {
  overflow: hidden;
  line-height: 1.428571;
  text-overflow: ellipsis;
  word-wrap: break-word;
  padding: 0.425rem 1.25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .dropdown-menu .dropdown-item,
  .dropdown-menu li > a {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(156, 39, 176, 0.4);
  background-color: #06404f;
  color: #ffffff;
}
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item.active,
.dropdown-menu a:active,
.dropdown-menu a.active {
  box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(156, 39, 176, 0.4);
  background-color: #06404f;
  color: #ffffff;
}
.dropdown-header {
  font-size: 0.75rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  text-transform: none;
  color: #777;
  line-height: 1.428571;
  font-weight: inherit;
}
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #06404f;
  border-color: #06404f;
}

/*--------------------------------------------------------------------------------------
  CONTAINER BLOCK
--------------------------------------------------------------------------------------*/
.container-block {
  padding-top: 78px;
  padding-bottom: 48px;
  min-height: calc(100vh - 300px);
}
@media (max-width: 992px) {
  .container-block {
    padding-top: 38px;
    padding-bottom: 38px;
  }
}
@media (max-width: 767px) {
  .container-block {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/*--------------------------------------------------------------------------
 PROCESS WINDOW
--------------------------------------------------------------------------*/
.window-process {
  display: none;
}
.window-process.active {
  display: block;
}
.display-process span i {
  font-size: inherit;
  font-weight: bold;
}

/*--------------------------------------------------------------------------------------
  CAPTCHA
--------------------------------------------------------------------------------------*/
.captcha {
  margin: 8px auto;
}
.captcha img {
  width: 100%;
  max-width: 220px;
  margin-top: 10px;
}
.captcha-image {
  background-color: #ffffff;
  border: 1px solid #ccc;
}
.captcha .form-group {
  margin-top: 10px;
}

/*--------------------------------------------------------------------------
 ARTICLE
--------------------------------------------------------------------------*/
div.display-article {
}
div.display-article p {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0.5rem !important;
  padding: 0;
}
div.display-article-small p {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 0.5rem !important;
  padding: 0;
}
div.display-article h2 {
  line-height: 1.0;
}

/*--------------------------------------------------------------------------
 DIVIDER
--------------------------------------------------------------------------*/
.divider {
  width: 100%;
  height: 1px;
  margin: 12px 0;
  overflow: hidden;
  background-color: #c5c5c5;
}
.divider-clic {
  width: 100%;
  height: 1px;
  margin: 12px 0;
  overflow: hidden;
  background-color: #ff4d32;
}
.divider-small {
  width: 100%;
  height: 1px;
  margin: 2px 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.06);
}
.divider-slow {
  width: 100%;
  height: 1px;
  margin: 12px 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.06);
}
.divider-sm {
  display: none;
}
.divider-md {
  display: none;
}
.divider-lg {
  display: none;
}
@media (max-width: 575px) {
  .divider-sm {
    display: block;
  }
}
@media (max-width: 767px) {
  .divider-md {
    display: block;
  }
}
@media (max-width: 991px) {
  .divider-lg {
    display: block;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY AVATAR
--------------------------------------------------------------------------*/
.display-avatar {
  margin: 0 auto;
  max-width: 196px;
  max-height: 196px;
  padding: 10px;
}
.display-avatar img {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------------------
 DISPLAY LOGO
--------------------------------------------------------------------------*/
.display-logo {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 320px;
  max-height: 320px;
}
.display-logo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 320px;
}

/*--------------------------------------------------------------------------
 MODAL DIALOG
--------------------------------------------------------------------------*/
.modal-dialog {
  border-radius: 15px;
  padding: 4px 4px 4px 4px;
  border: 0;
}
.modal-dialog {
  background-color: #F9FBFF;
}
.modal-outer .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    height: 91vh;
}
.modal-dialog .modal-content {
  background-color: #F9FBFF;
  padding: 0;
  border: 0;
}
.modal-dialog .modal-content .modal-body.modal-scroll {
  overflow-y: scroll;
  max-height: 440px;
}
.modal-dialog .modal-header {
  padding: 8px 8px 4px 12px;
}
.modal-dialog .modal-header i.fa-solid {
  margin-right: 12px;
}
.modal-dialog .modal-footer {
  padding: 12px 4px 10px 4px;
}

/*--------------------------------------------------------------------------
 CARD PANEL
--------------------------------------------------------------------------*/
.card {
  border: 0;
  margin-bottom: 16px;
  margin-top: 0;
  border-radius: 4px;
  color: #333333;
  background-color: #fafafa;
  font-size: .875rem;  
  width: 100%;
}
.card.no-background {
  background: transparent;
}
.card.bordered {
  border: 1px solid #cfcfcf;
}
.card .card-body {
  padding: 0.9375rem 20px 0.9375rem 20px;
  position: relative;
}
.card .card-header {
  border: 0; 
  border-radius: 0 0 0 0;
  padding: 14px 20px 12px 20px;  
  background-color: #7E8A98;
}
.card .card-header .card-title {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 3px;
  color: #ffffff !important;  
}
.card .card-header.no-wrap .card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;  
}
.card .card-header .card-category {
  margin: 0;
  font-size: 14px;
  margin-top: 4px;
  color: #ffffff !important;
}
.card.no-header .card-body {
  padding: 0.2375rem 20px 0.9375rem 20px;
}
.card .card-body p {
  margin: 0 0 2px 0;
}
.card .card-body h2 {
  font-size: 1.75rem;
  color: #294d75 !important;
  margin: 0 0 10px 0;
  padding: 0;
}
.card .card-body h3 {
  font-size: 1.55rem;
  color: #000000 !important;
  margin: 0 0 4px 0;
  padding: 0;
}
.card .card-body h4 {
  font-size: 1.25rem;
  color: #294d75;
  margin: 0 0 4px 0;
  padding: 0;
}
.card .card-body h5 {
  font-size: 1.10rem;
  margin: 0 0 4px 0;
  padding: 0;
}
@media (max-width: 768px) {
  .card .card-body h3 {
    font-size: 1.35rem;
  }
  .card .card-body h5 {
    font-size: 1.00rem;
  }
}
.card .card-header i.fa,
.card .card-header i.fa-solid {
  margin-top: 6px;
  font-size: 20px;
  color: #ffffff;
}

/*--------------------------------------------------------------------------
 FORM
--------------------------------------------------------------------------*/
form {
  border: 0;
}
.form-control {
  background-color: #fafafa;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  height: 34px;
}
p.form-control {
  height: auto;
  padding: 6px 8px 2px 8px;
  min-height: 34px;
}
p.form-comment {
  margin: 0 0 6px 0 !important;
  padding: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #06404F;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(48, 60, 73, 0.4);
}
.form-group {
  margin-bottom: 8px;
  padding: 0;
}
label.control-label {
  margin: 0 0 0 0 !important;
  padding: 0 !important;
  font-weight: bold;
  font-size: 14px;
}
.form-group label.control-label {
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  font-weight: bold;
}
.form-group .control-label {
  font-weight: bold;
}
.input-group-text {
  background-color: transparent !important;
  font-size: 14px;
  height: 34px;
}
.input-group-text-filled {
  background-color: #06404F !important;
  color: #ffffff !important;
  font-size: 14px;
  height: 34px;
}
.input-group-icon {
  background-color: transparent !important;
  font-size: 18px;
}
.input-group-append .btn {
  padding: 8px 16px;
  height: 35px;
}
.input-group-append i.fa-solid {
  font-weight: bold;
  font-size: 18px;
}
.input-group-append i.fa-solid.active {
  color: #ff0000;
}

/*--------------------------------------------------------------------------------------
 FORM ERROR
--------------------------------------------------------------------------------------*/
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #A70D0D;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #A70D0D;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/*--------------------------------------------------------------------------
 MESSAGE ALERT
--------------------------------------------------------------------------*/
.alert {
  font-size: 14px;
  text-align: center;
}
.alert.alert-hidden {
  display: none;
}
.alert.alert-warning {
  background-color: #A74D4D;
  color: #ffffff;
}
.alert.alert-warning p {
  line-height: 28px;
  padding: 0;
  margin: 0;
}
.alert.alert-warning a,
.alert.alert-warning .alert-link {
  color: #ffffff;
}
.alert.alert-success {
  background-color: #418B44;
  color: #ffffff;
}
.alert.alert-success p {
  line-height: 28px;
  padding: 0;
  margin: 0;
}
.alert.alert-success a,
.alert.alert-success .alert-link {
  color: #ffffff;
}
.alert.alert-danger {
  background-color: #7E0A0A;
  color: #ffffff;
}
.alert.alert-danger p {
  line-height: 28px;
  padding: 0;
  margin: 0;
}
.alert.alert-danger a,
.alert.alert-danger .alert-link {
  color: #ffffff;
}
.alert.alert-info {
  border-color: #e8e8e8;
  background-color: #e8e8e8;
  color: #000000;
}
.alert.alert-info p {
  line-height: 28px;
  padding: 0;
  margin: 0;
}
.alert.alert-info a,
.alert.alert-info .alert-link {
  color: #000000;
}

/*--------------------------------------------------------------------------
 TABLE
--------------------------------------------------------------------------*/
.table {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
}
.table thead tr th {
  padding: 12px 14px;
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  border-top: 0;
}
.table.table-list thead tr th {
  font-size: 1.3875em;
  font-weight: normal;
  color: #444444 !important;
  padding: 16px 20px;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #7E8A98; 
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  border-top: 0;
}
.table.table-list tr {
  height: 60px;
}
.table.no-header tr:first-child td {
  border-top: 0;
}
.table td {
  padding: 12px 12px;
  vertical-align: middle;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.table.table-top td {
  vertical-align: top;
  padding: 10px 12px 6px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.table.table-list tbody tr {
  background-color: #fafafa;
}
.table tr.selected {
  background-color: rgba(0, 0, 0, 0.02);
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}
.table-bordered {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.table-bordered th,
.table-bordered td {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
  border-top: 0;
}
.table-bordered tbody tr th {
  font-size: 14px;
}
.table-bordered tbody tr td {
  font-size: 13px;
}
.table-bordered tbody tr:last-child td {
  border-bottom: 0;
}
.table-bordered tbody tr:last-child {
  border-bottom: 0;
}
.table-bordered thead th:last-child,
.table-bordered tbody td:last-child {
  border-right: 0;
}
.table-bordered thead th:first-child,
.table-bordered tbody td:first-child {
  border-left: 0;
}
.table thead tr th a.ordered {
  color: #06404F !important;
  font-style: italic;
}
.table tbody tr td a {
  color: #294d75;
  cursor: pointer;
}
.table thead tr th a {
  color: #294d75;
}
.table thead tr th i.fa.fa-arrow-v,
.table thead tr th i.fa.fa-arrow-up,
.table thead tr th i.fa.fa-arrow-down {
  font-size: 12px;
}
.table.table-top td {
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.table thead tr th.language,
.table tbody tr td.language {
  text-align: center;
  min-width: 76px;
}
.table thead tr th.icon,
.table tbody tr td.icon {
  width: 48px;
  min-width: 48px;
  text-align: center;
}
.table tbody tr td.icon.middle {
  vertical-align: middle;
}
.table thead tr th.circle,
.table tbody tr td.circle {
  width: 60px;
  min-width: 60px;
  text-align: center;
}
.table.table-list.table-top tbody tr td.icon {
  padding-top: 12px;
}
.table.table-list.table-top tbody tr td.icon.middle {
  padding-top: 4px;
}
.table thead tr th.icon .fa-solid,
.table tbody tr td.icon .fa-solid {
  font-size: 16px;
}
.table.table-list thead tr th.icon .fa-solid,
.table.table-list tbody tr td.icon .fa-solid {
  font-size: 20px;
}
.table tbody tr td.image {
  width: 76px;
  min-width: 76px;
  max-width: 76px;
  text-align: center;
  padding: 8px 12px 8px 12px;
}
.table tbody tr td.image.large {
  width: 156px;
  min-width: 156px;
  max-width: 156px;
  text-align: center;
  padding: 8px 12px 8px 12px;
}
.table tbody tr td.image img {
  width: 100%;
}
.table thead tr th.price,
.table tbody tr td.price {
  text-align: right;
}
.table thead tr th.picture,
.table tbody tr td.picture {
  width: 60px;
  min-width: 60px;
  text-align: center;
}
.table thead tr th.picture .fa-solid,
.table tbody tr td.picture .fa-solid {
  font-size: 16px;
}
.table thead tr th.picture .badge,
.table tbody tr td.picture .badge {
  font-size: 14px;
}
.table thead th.check-box,
.table tbody td.check-box {
  width: 48px;
  text-align: center;
}
.table tbody td.check-box {
  padding-top: 0;
}
.table.table-top td.check-box {
  padding-top: 7px;
}
.table tbody td .form-group {
  margin: 0;
  padding: 0;
}
.table tbody td .form-group p {
  margin: 0 0 0 0;
  padding: 0;
}
.table tbody tr td .divider {
  height: 1px;
  margin: 8px 0;
  overflow: hidden;
  background-color: #c5c5c5;
}
.table tbody tr td form {
  padding: 0;
  margin: 0;
}
.table.no-header tr:first-child td {
  border-top: 0;
}
.table.table-inline th,
.table.table-inline td {
  padding: 8px 18px 8px 18px;
}
.table.table-inline th {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .table thead tr th.table-hidden-lg,
  .table tbody tr td.table-hidden-lg {
    display: none;
  }
}
@media (max-width: 767px) {
  .table thead tr th.table-hidden-md,
  .table tbody tr td.table-hidden-md {
    display: none;
  }
}
@media (max-width: 575px) {
  .table thead tr th.table-hidden-sm,
  .table tbody tr td.table-hidden-sm {
    display: none;
  }
}

/*--------------------------------------------------------------------------
 TABLE RESPONSIVE
--------------------------------------------------------------------------*/
.table-responsive {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive form {
  padding: 0;
  margin: 0;
  border: 0;
}

/*--------------------------------------------------------------------------
 DISABLED REMOVED
--------------------------------------------------------------------------*/
.info {
  color: #17a2b8 !important;
}
.empty {
  color: #acacac !important;
}
.success {
  color: #55b559 !important;
}
.warning {
  color: #aa4444 !important;
}
.removed {
  color: #aa4444 !important;
}
.enabled {
  color: #3b6ea6 !important;
}
.disabled {
  color: #aa4444 !important;
}
.default {
  color: #294d75 !important;
}
.uppercase {
  text-transform: uppercase;
}
.background-removed {
  background-color: #44aa44;
}
.background-enabled {
  background-color: #44aa44;
}
.background-disabled {
  background-color: #aa4444;
}
.background-default {
  background-color: #3b6ea6;
}

/*--------------------------------------------------------------------------
 FONT WEIGHT
--------------------------------------------------------------------------*/
.fw-lighter {
  font-weight:lighter!important
}
.fw-normal {
  font-weight:400!important
}
.fw-bold {
  font-weight:700!important
}
.fw-bolder {
  font-weight:bolder!important
}

/*--------------------------------------------------------------------------
 REQUIRED
--------------------------------------------------------------------------*/
.required {
  color: red;
  width: auto;
  float: none;
  display: inline;
  margin: 0 6px 0 6px;
}
p.text-required {
  margin: 6px 0 12px 0 !important;
}

/*--------------------------------------------------------------------------
 BUTTON
--------------------------------------------------------------------------*/
.btn {
  position: relative;
  padding: 8px 20px;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.428571;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: 0.2rem;
  outline: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow, transform;
}
.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  outline: 0;
}
.btn-rounded {
  border-radius: 20px;
}
.btn.btn-primary,
a.btn.btn-primary {
  color: #E2E3E4 !important;
  background-color: #06404F;
  border-color: #06404F;
}
.btn.btn-primary:focus,
.btn.btn-primary.focus,
.btn.btn-primary:hover {
  color: #E2E3E4 !important;
  background-color: #0A6E87;
  border-color: #0A6E87;
}
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary:not(:disabled):not(.disabled):active,
.btn.btn-primary:not(:disabled):not(.disabled).active {
  color: #E2E3E4 !important;
  cursor: initial;
  background-color: #0A6E87;
  border-color: black;
}
.btn.btn-primary:active:hover,
.btn.btn-primary:active:focus,
.btn.btn-primary:active.focus,
.btn.btn-primary.active:hover,
.btn.btn-primary.active:focus,
.btn.btn-primary.active.focus {
  color: #E2E3E4 !important;
  background-color: #0A6E87;
  border-color: #0A6E87;
}
.btn.btn-primary.disabled:focus,
.btn.btn-primary.disabled.focus,
.btn.btn-primary:disabled:focus,
.btn.btn-primary:disabled.focus {
  background-color: #06404F;
  border-color: #06404F;
}
.btn.btn-primary.disabled:hover,
.btn.btn-primary:disabled:hover {
  background-color: #06404F;
  border-color: #06404F;
}
.btn.btn-secondary,
a.btn.btn-secondary {
  color: #fff !important;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn.btn-secondary:focus,
.btn.btn-secondary.focus,
.btn.btn-secondary:hover {
  color: #333333 !important;
  background-color: #f2f2f2;
  border-color: #adadad;
}
.btn.btn-secondary:active,
.btn.btn-secondary.active,
.btn.btn-secondary:not(:disabled):not(.disabled):active,
.btn.btn-secondary:not(:disabled):not(.disabled).active {
  color: #333333 !important;
  background-color: #f2f2f2;
  border-color: #adadad;
  box-shadow: 0 2px 2px 0 rgba(250, 250, 250, 0.14), 0 3px 1px -2px rgba(250, 250, 250, 0.2), 0 1px 5px 0 rgba(250, 250, 250, 0.12);
}
.btn.btn-secondary:active:hover,
.btn.btn-secondary:active:focus,
.btn.btn-secondary:active.focus,
.btn.btn-secondary.active:hover,
.btn.btn-secondary.active:focus,
.btn.btn-secondary.active.focus {
  color: #333333 !important;
  background-color: #f2f2f2;
  border-color: #8c8c8c;
}
.btn.btn-secondary.disabled:focus,
.btn.btn-secondary.disabled.focus,
.btn.btn-secondary:disabled:focus,
.btn.btn-secondary:disabled.focus {
  background-color: #fafafa;
  border-color: #ccc;
}
.btn.btn-secondary.disabled:hover,
.btn.btn-secondary:disabled:hover {
  background-color: #fafafa;
  border-color: #ccc;
}
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:hover {
  box-shadow: 0 14px 26px -12px rgba(250, 250, 250, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(250, 250, 250, 0.2);
}
.btn.btn-info,
a.btn.btn-info {
  color: #fff !important;
  background-color: #008798;
  border-color: #008798;
  box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12);
}
.btn.btn-info:focus,
.btn.btn-info.focus,
.btn.btn-info:hover {
  color: #fff !important;
  background-color: #008798;
  border-color: #008798;
}
.btn.btn-info:active,
.btn.btn-info.active,
.btn.btn-info:not(:disabled):not(.disabled):active,
.btn.btn-info:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #008798;
  border-color: #008798;
  box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12);
}
.btn.btn-info:active:hover,
.btn.btn-info:active:focus,
.btn.btn-info:active.focus,
.btn.btn-info.active:hover,
.btn.btn-info.active:focus,
.btn.btn-info.active.focus {
  color: #fff !important;
  background-color: #008798;
  border-color: #008798;
}
.btn.btn-info.disabled:focus,
.btn.btn-info.disabled.focus,
.btn.btn-info:disabled:focus,
.btn.btn-info:disabled.focus {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.btn.btn-info.disabled:hover,
.btn.btn-info:disabled:hover {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.btn.btn-info:focus,
.btn.btn-info:active,
.btn.btn-info:hover {
  box-shadow: 0 14px 26px -12px rgba(0, 188, 212, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 188, 212, 0.2);
}
.btn.btn-success,
a.btn.btn-success {
  color: #fff !important;
  background-color: #418B44;
  border-color: #418B44;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.btn.btn-success:focus,
.btn.btn-success.focus,
.btn.btn-success:hover {
  color: #fff !important;
  background-color: #47a44b;
  border-color: #39843c;
}
.btn.btn-success:active,
.btn.btn-success.active,
.btn.btn-success:not(:disabled):not(.disabled):active,
.btn.btn-success:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #47a44b;
  border-color: #39843c;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.btn.btn-success:active:hover,
.btn.btn-success:active:focus,
.btn.btn-success:active.focus,
.btn.btn-success.active:hover,
.btn.btn-success.active:focus,
.btn.btn-success.active.focus {
  color: #fff !important;
  background-color: #47a44b;
  border-color: #255627;
}
.btn.btn-success.disabled:focus,
.btn.btn-success.disabled.focus,
.btn.btn-success:disabled:focus,
.btn.btn-success:disabled.focus {
  background-color: #4caf50;
  border-color: #4caf50;
}
.btn.btn-success.disabled:hover,
.btn.btn-success:disabled:hover {
  background-color: #4caf50;
  border-color: #4caf50;
}
.btn.btn-success:focus,
.btn.btn-success:active,
.btn.btn-success:hover {
  box-shadow: 0 14px 26px -12px rgba(76, 175, 80, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(76, 175, 80, 0.2);
}
.btn.btn-warning,
a.btn.btn-warning {
  color: #fff !important;
  background-color: #ff9800;
  border-color: #ff9800;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.btn.btn-warning:focus,
.btn.btn-warning.focus,
.btn.btn-warning:hover {
  color: #fff !important;
  background-color: #f08f00;
  border-color: #c27400;
}
.btn.btn-warning:active,
.btn.btn-warning.active,
.btn.btn-warning:not(:disabled):not(.disabled):active,
.btn.btn-warning:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #f08f00;
  border-color: #c27400;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.btn.btn-warning:active:hover,
.btn.btn-warning:active:focus,
.btn.btn-warning:active.focus,
.btn.btn-warning.active:hover,
.btn.btn-warning.active:focus,
.btn.btn-warning.active.focus {
  color: #fff !important;
  background-color: #f08f00;
  border-color: #804c00;
}
.btn.btn-warning.disabled:focus,
.btn.btn-warning.disabled.focus,
.btn.btn-warning:disabled:focus,
.btn.btn-warning:disabled.focus {
  background-color: #ff9800;
  border-color: #ff9800;
}
.btn.btn-warning.disabled:hover,
.btn.btn-warning:disabled:hover {
  background-color: #ff9800;
  border-color: #ff9800;
}
.btn.btn-warning:focus,
.btn.btn-warning:active,
.btn.btn-warning:hover {
  box-shadow: 0 14px 26px -12px rgba(255, 152, 0, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 152, 0, 0.2);
}
.btn.btn-danger,
a.btn.btn-danger {
  color: #fff !important;
  background-color: #720808;
  border-color: #720808;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.btn.btn-danger:focus,
.btn.btn-danger.focus,
.btn.btn-danger:hover {
  color: #fff !important;
  background-color: #A50C0C;
  border-color: #A50C0C;
}
.btn.btn-danger:active,
.btn.btn-danger.active,
.btn.btn-danger:not(:disabled):not(.disabled):active,
.btn.btn-danger:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #A70D0D;
  border-color: #A70D0D;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.btn.btn-danger:active:hover,
.btn.btn-danger:active:focus,
.btn.btn-danger:active.focus,
.btn.btn-danger.active:hover,
.btn.btn-danger.active:focus,
.btn.btn-danger.active.focus {
  color: #fff !important;
  background-color: #740909;
  border-color: #a21309;
}
.btn.btn-danger.disabled:focus,
.btn.btn-danger.disabled.focus,
.btn.btn-danger:disabled:focus,
.btn.btn-danger:disabled.focus {
  background-color: #740909;
  border-color: #f44336;
}
.btn.btn-danger.disabled:hover,
.btn.btn-danger:disabled:hover {
  background-color: #740909;
  border-color: #f44336;
}
.btn.btn-danger:focus,
.btn.btn-danger:active,
.btn.btn-danger:hover {
  box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2);
}
.btn.btn-picture {
  border: 0;
  padding: 8px 8px 4px 8px;
  border-radius: 10px;
  background-color: transparent;
  text-align: center; 
}
.btn.btn-picture:focus,
.btn.btn-picture:active,
.btn.btn-picture:hover {
  box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2);
}
.btn.btn-picture:hover,
.btn.btn-picture:active,
.btn.btn-picture.active {
  color: #fff !important;
  background-color: #06404F;
  border-color: #06404F;
}
.btn.btn-picture.no-hover:hover,
.btn.btn-picture.no-hover:active,
.btn.btn-picture.no-hover.active {
  box-shadow: unset;
  color: #fff !important;
  background-color: transparent;
}
.btn.btn-picture.disabled-picture:hover {
  background-color: #aa4444;
  color: #fff !important;
}
.btn.btn-picture.btn-filled {
  color: #fff !important;
  padding: 8px 12px 8px 12px;
  background-color: #06404F;
  border-color: #06404F;
}
.btn.btn-primary.btn-input-group {
  background-color: #e8e8e8;
  color: #444 !important;
  font-size: 14px;  
  padding-top: 6px;
  height: 34px;
}
.btn.btn-primary.btn-input-group:hover {
  background-color: #484848;
  color: #fff !important;
}
.btn.btn-input-group .fa-solid {
  font-size: 14px;  
}
.btn.btn-circle {
  border-radius: 50% !important;
  padding: 8px 12px;
  height: 36px;
  width: 36px;
}
.btn.btn-link {
  text-align: left !important;
  padding: 0;
}

/*--------------------------------------------------------------------------
 TOOLBAR
--------------------------------------------------------------------------*/
.btn.btn-toolbox {
  padding: 6px 14px 6px 14px;
  color: #fff !important;  
  background-color: #06404F;
  font-size: 14px;
}
.btn.btn-toolbox:focus,
.btn.btn-toolbox:active,
.btn.btn-toolbox.disabled,
.btn.btn-toolbox:hover {
  color: #444444 !important;
  background-color: #e3e3e3 !important;
}
.btn-group .btn.btn-toolbox:first-child {
  border-radius: 20px 0 0 20px;
}
.btn-group .btn.btn-toolbox:last-child {
  border-radius: 0 20px 20px 0;
}

/*--------------------------------------------------------------------------
 DISPLAY DOWNLOAD
--------------------------------------------------------------------------*/
.display-download {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-align: start;
  align-items: flex-start;
}
.display-download .display-download-left {
  width: 56px;
  padding: 0 4px;
  text-align: center;
}
.display-download .display-download-left form {
  padding: 0;
  margin: 0;
}
.display-download .display-download-left .btn-picture {
  margin: 0;
}
.display-download .display-download-left.no-padding .btn-picture {
  padding: 0;
}
.display-download .display-download-left .btn-picture i.fa-solid {
  font-size: 24px;
}
.display-download .display-download-left img {
  width: 46px;
  height: auto;
}
.display-download .display-download-body {
  text-align: left;
  padding-left: 6px;
  min-height: 40px;
  width: 100%;
}
.display-download .display-download-body p {
  font-size: 18px;
  line-height: 1.3;
  padding: 0 0 0 0;
  margin: 0;
}
.display-download .display-download-body h3 {
  font-size: 1.05rem !important;
  color: #294d75 !important;
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------------------
 DISPLAY SELECT
--------------------------------------------------------------------------*/
.display-select {
  margin-bottom: 30px;
}
.display-select a {
  font-size: 1.2rem;
  color: #303C49;
  font-weight: 500;
  display: block;
  border-radius: 0;
  border: 1px solid #efefef;
  padding: 10px 20px;
  margin-bottom: 8px;
}
.display-select a:hover {
  border: 1px solid #7E8A98;
}
.display-select a span {
  margin-top: 2px;
  display: block;
  font-size: 0.9rem;
  color: #848484;
  font-weight: 400;
}
.display-select a span.comment {
  text-transform: none;
  text-align: justify;
  text-justify: inter-word;  
  font-style: italic !important;
}
.display-select a.active {
  border: 1px solid #7E8A98;
  background-color: #7E8A98;
  color: #ffffff;
  position: relative;
}
.display-select a.active span {
  color: #ffffff;
}
@media (max-width: 767px) {
  .display-select {
    margin-bottom: 12px;
  }
  .display-select a.active:after {
    content: none;
  }
}
.display-select-vertical {
}
.display-select-vertical a {
  font-size: 1.2rem;
  color: #a0a0a0 !important;
  font-weight: normal;
  display: block;
  padding: 4px 20px;
  margin-bottom: 8px;
}
.display-select-vertical a:hover {
  
}
.display-select-vertical a span {
  margin-top: 2px;
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
}
.display-select-vertical a span.comment {
  text-transform: none;
  text-align: justify;
  text-justify: inter-word;  
  font-style: italic !important;
}
.display-select-vertical a.active {
  color: #000000 !important;
  position: relative;
  font-weight: 500;
}
.display-select-vertical a .fa-solid.fa-arrow-right {
  color: #6C8087;
  font-weight: bold;
}
.display-select-vertical a.active .fa-solid.fa-arrow-right {
  color: #ff4d32 !important;
  font-weight: bold;
}
.display-select-vertical a.active:hover {
  color: #444444;
}
.display-select-vertical a.active span {
}
@media (max-width: 992px) {
  .display-select-vertical a {
    padding: 4px 0;
  }
  .display-select-vertical a {
    padding-bottom: 10px;
    border-bottom: 1px solid #c0c0c0;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY HEADER
--------------------------------------------------------------------------*/
.display-header {
  background-color: #e8e8e8;
  padding: 6px 12px 6px 12px;
  margin-bottom: 16px;
  margin-top: 16px;
}
.display-header.first-header,
.display-header:first-child {
  margin-top: 0;
}
.display-header p {
  margin: 0 !important;
  padding: 0 !important;
  color: #06404F !important;
  font-size: 16px !important;
}
.display-header i.fa-solid {
  font-size: 28px;
}
.display-header .divider {
  margin-top: 6px;
  padding: 0;
}

/*--------------------------------------------------------------------------
 DISPLAY COMMENT
--------------------------------------------------------------------------*/
.display-comment {
  margin: 4px 0 2px 0 !important;
  font-size: 12px !important;
  text-align: left;
  color: #000000;
}
.display-comment.display-comment-justify {
  text-align: justify !important;
  font-size: 12px !important;
}
.display-comment.display-comment-quote:before {
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  position: relative;
  content: "\f10d";
  font-weight: normal;
  margin-right: 4px;
  color: #1C1C1C;
}
.display-comment.display-comment-quote:after {
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  position: relative;
  content: "\f10e";
  font-weight: normal;
  margin-left: 4px;
  color: #1C1C1C;  
}

/*--------------------------------------------------------------------------
 PAGINATION
--------------------------------------------------------------------------*/
.display-pagination {
  display: flex;
  margin-top: 2px;
  justify-content: center;
  line-height: 36px;
  font-size: 18px;
}
.display-pagination a:hover {
  background-color: #0A6E87;
  color: #fff;
}
.pagination-navigation {
  padding: 0 8px;
} 
.pagination-navigation a,
.pagination-navigation span {
  display: inline-block;
  width: 36px;
  height: 36px;
  padding: 0 5px;
  min-width: 36px;
  text-align: center;
  margin: 0 2px 4px 2px;  
  border-radius: 18px;
  color: #fff;
  background-color: #06404F;
}
.pagination-navigation span {
  background-color: #cccccc;
  color: #444;
}
.pagination-navigation span.nav_ext {
  background-color: transparent;
  color: #888;
}

/*--------------------------------------------------------------------------
 PAGINATION COUNTER
--------------------------------------------------------------------------*/
.pagination-counter {
  line-height: 36px;
  font-size: 18px;
  margin: 2px 0;
}
.pagination-counter span {
  display: inline-block;
  padding: 0 8px;
  min-width: 36px;
  margin: 0 7px 0 7px;
  text-align: center;
  border-radius: 18px;
  background-color: #06404F;
  color: #fff;
}
.pagination-counter span:first-child {
  margin-left: 0px;
}

/*--------------------------------------------------------------------------
 DISPLAY PAGE BREADCRUM
--------------------------------------------------------------------------*/
.display-page-breadcrumb {
  margin-top: 15px;
}
.display-page-breadcrumb nav > ol {
  list-style: none;
  padding: 0;
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.display-page-breadcrumb nav > ol > li {
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.display-page-breadcrumb nav > ol > li:after {
  content: '>';
  margin-left: 10px;
}
.display-page-breadcrumb nav > ol > li:last-child:after {
  display: none;
}
.display-page-breadcrumb,
.display-page-breadcrumb nav > ol > li a,
.display-page-breadcrumb nav > ol > li a:visited {
  color: #000000;
}
.display-page-breadcrumb nav > ol > li.current-item > span {
  border-bottom: 2px solid #eeeeee;
}

/*--------------------------------------------------------------------------
 DISPLAY PAGE HEADER
--------------------------------------------------------------------------*/
.display-page-header {
  background: #505050;
  position: relative;
  padding: 120px 0px;
}
.display-page-header .background {
  background-size: cover;
  background-position: center;
  position: absolute;
  opacity: 0.80;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.display-page-header h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: 2.731rem;
  font-weight: 600;
  text-transform: none;
}
.display-page-header p {
  margin: 15px 0px 0px;
  color: #FFFFFF;   
}
.display-page-header .container {
  position: relative;
  z-index: 1;
}
.display-page-header .display-page-breadcrumb,
.display-page-header .display-page-breadcrumb nav > ol > li a,
.display-page-header .display-page-breadcrumb nav > ol > li a:visited {
  color: #ffffff;
}
@media (max-width: 1199px) {
  .display-page-header {
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .display-page-header h1 {
    font-size: 1.731rem;
  }
}
@media (max-width: 768px) {
  .display-page-header {
    padding: 40px 0px;
  }
}

/*--------------------------------------------------------------------------
 GRAPHIC LEGEND
--------------------------------------------------------------------------*/
.graphic-legend {
  margin: 12px 0 0 0;
}
.graphic-legend-name {
  margin: 0;
  height: 8px;
  font-size: 10px;
  margin-right: 6px;
  padding: 0 0 0 4px;
  border-left: 14px solid #c0c0c0;
}

/*--------------------------------------------------------------------------
 DISPLY PICTURE
--------------------------------------------------------------------------*/
.display-picture {
  height: auto;
  max-width: 100%;
  margin-left: auto; 
  margin-right: auto;
}
.display-picture-cover {
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
}
.display-picture-cover img {
  width:  100%;
  height: 200px;
  object-fit: cover;
}
img.display-picture-full {
  width: 100%;
  height: auto;  
}
img.display-picture-edge {
  border-radius: 6px;
}
img.display-picture-gray {
  filter: grayscale(100%);
}
img.display-picture-rounded {
  border-radius: 50%;
}

/*--------------------------------------------------------------------------
 DISPLAY BORDERED
--------------------------------------------------------------------------*/
.display-bordered {
  padding: 12px 12px 10px 12px;
  border: 1px solid #efefef;
  border-radius: 4px;
  margin-bottom: 16px;
  margin-top: 8px;
}
.display-bordered.small-padding {
  padding: 4px 4px 2px 4px;
}
.display-bordered.no-padding {
  padding: 0;  
}
.display-bordered.no-margin {
  margin: 0;  
}

/*--------------------------------------------------------------------------
 DISPLAY TITLE
--------------------------------------------------------------------------*/
h1, h2 {
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: .2rem;
  word-break: break-word;
  text-transform: uppercase;  
  margin-bottom: 0;
  margin-top: 2px;
}
@media (max-width: 991px) {
  h1, h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  h1, h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 380px) {
  h1, h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 340px) {
  h1, h2 {
    font-size: 1.3rem
  }
}

/*--------------------------------------------------------------------------
 IEMS BRACKET
--------------------------------------------------------------------------*/
.display-bracket {
  height: 100%;
}
.display-bracket .item-bracket {
  border-color: #abb6c3;
  border-style: solid;
  border-width: .125rem;
  width: 1.125rem;
}
.display-bracket .item-container {
  padding: 1.225rem 0;
  width: 100%;
}
.display-bracket .item-bracket.item-bracket-left {
  border-right-width: 0;
  margin-right: .375rem;
}
.display-bracket .item-bracket.item-bracket-right {
  border-left-width: 0;
  margin-left: .375rem;
}

/*--------------------------------------------------------------------------
 DISPLAY NAVIGATE
--------------------------------------------------------------------------*/
.display-navigate {
  width: 100%;
  text-align: center;
  padding: 8px 4px 4px 4px;
}
.display-navigate .dropdown-toggle {
  border-radius: 18px;
  margin-bottom: 6px;
  padding: 4px 12px;
  font-size: 16px;
  height: 34px;
  width: 120px;
}
.display-navigate .dropdown-menu .dropdown-item,
.display-navigate .dropdown-menu a {
  padding: 0.225rem 1.25rem;
  text-align: center;
  font-size: 14px;
  font-weight: 0;
}
.display-navigate h4 {
  padding: 0;
  margin: 4px 0 0 0;
}

/*--------------------------------------------------------------------------
 DISPLAY NAVIGATE BUTTON
--------------------------------------------------------------------------*/
.navigate-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 18px;
  background-color: #06404F;
  color: #fff;
  width: 34px;
  height: 34px;
  transition: color .2s;
  padding: 10px;
}
.navigate-button:hover {
  background-color: #0A6E87;
}
.navigate-button .navigate-chevron {
  font-size: 18px;
  color: #ffffff;
}
span.navigate-button {
  background-color: #e3e3e3;
  color: #cccccc;
}
span.navigate-button:hover {
  background-color: #e3e3e3;
  color: #cccccc;
}
span.navigate-button .navigate-chevron {
  font-size: 18px;
  color: #cccccc;
}

/*--------------------------------------------------------------------------
 DISPLAY PICTURED
--------------------------------------------------------------------------*/
.display-pictured {
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  background-color: #fafafa;
  height: 100%;
}
.display-pictured-image {
  position: relative;
}
.display-pictured-image img {
  width: 100%;
  height: auto;
}
.display-pictured.display-pictured-edge {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.display-pictured.display-pictured-edge img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.display-pictured-image img.display-pictured-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.display-pictured .display-pictured-body {
  padding: 18px 16px 16px 16px;
  min-height: 80px;
  -ms-flex: 1;
  flex: 1;
}
.display-pictured .display-pictured-body p {
  color: #444;
  margin-top: 4px;
  font-weight: 300;
  font-size: 14px;
}
.display-pictured .display-pictured-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.display-pictured .display-pictured-content {
  height: 100%;
  display: grid;
  align-items: flex-start;
  grid-template-columns: 46px 1fr;
}
.display-pictured .display-pictured-left {
  background-color: #c6c6c6;
  display: flex; 
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 46px;  
}
.display-pictured .display-pictured-left .display-pictured-button {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  white-space: nowrap;
  font-size: 14px;
  padding: 4px 12px;
  background-color: #fff;
  color: #2a2a2a;
  text-align: center;
  font-weight: 500;
  transition: all .3s;
}
.display-pictured .display-pictured-right {
  padding: 18px 16px 16px 16px;
  min-height: 80px;
  overflow: hidden;
}
.display-pictured .display-pictured-right p {
  color: #444;
  margin-top: 4px;
  font-weight: 300;
  font-size: 14px;
}
.display-pictured .display-pictured-right h4 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.display-pictured .display-pictured-body h4.display-pictured-no-wrap,
.display-pictured .display-pictured-right h4.display-pictured-no-wrap {
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;  
  word-break: normal;
}
.display-pictured .display-pictured-body .fa-solid,
.display-pictured .display-pictured-right .fa-solid {
  width: 30px;
  text-align: center;
}
.display-pictured .display-pictured-comment {
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 4px 0 2px 0 !important;
  font-size: 12px !important;
  text-align: left;
}
.display-pictured .display-pictured-comment p {
  color: #444;
  margin-top: 4px;
  font-weight: normal;
}
.display-pictured p.display-pictured-category {
  color: #444;
  margin-top: 4px;
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 992px) {
  .display-pictured .display-pictured-right h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY PROFILE
--------------------------------------------------------------------------*/
.display-profile {
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  background-color: #fafafa;
  padding: 12px 12px;
  height: 100%;
}
.display-profile.transparent {
  background-color: transparent;
}
.display-profile-header {
  padding: 4px 0 0 0;
}
.display-profile-header p {
  font-size: 0.85rem !important;
  color: #000000;
  padding: 0;
  margin: 0;
}
.display-profile-header h4 {
  font-size: 1.25rem !important;
  color: #000000;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-profile-header h4,
.display-profile-header h5 {
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;  
  word-break: normal;
}
.display-profile-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.display-profile-picture .display-profile-image {
  padding-right: 20px;
  position: relative;
}
.display-profile-picture .display-profile-image img {
  margin-top: 4px;
  max-width: 96px;
}
.display-profile-picture .display-profile-image img.medium {
  max-width: 146px;
}
.display-profile-picture .display-profile-image img.large {
  max-width: 196px;
}
.display-profile-picture .display-profile-image img.cover {
  width: 216px;
  height: 120px;
  max-width: 216px;
  object-fit: cover;
  overflow: hidden;
}
.display-profile-picture .display-profile-content {
  padding: 0;
  margin: 0;
  overflow: hidden;
  -ms-flex: 1;
  flex: 1;
}
.display-profile-content p {
  font-size: 0.85rem !important;
  padding: 0;
  margin: 0;
}
.display-profile-content h4 {
  font-size: 1.25rem !important;
  margin: 0 0 4px 0;
  color: #000000;
  padding: 0;
}
.display-profile-content h5 {
  font-size: 1.15rem !important;
  margin: 0 0 4px 0;
  color: #000000;
  padding: 0;
}
.display-profile-content .fa-solid,
.display-profile-content .fa-solid {
  width: 30px;
  text-align: center;
}
.display-profile .display-profile-comment {
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 4px 0 2px 0 !important;
  font-size: 12px !important;
  text-align: left;
}
.display-profile .display-profile-comment p {
  color: #444;
  margin-top: 4px;
  font-weight: normal;
}
.display-profile-footer {
  text-align: right;
  padding: 0 0 8px 0;
}
.display-profile-footer a {
  font-size: 12px;
}
@media (max-width: 767px) {
  .display-profile-content h4 {
    font-size: 1.15rem !important;
  }
  .display-profile-picture .display-profile-image img {
    max-width: 64px;
  }
  .display-profile-picture .display-profile-image img.medium {
    max-width: 96px;
  }
  .display-profile-picture .display-profile-image img.large {
    max-width: 110px;
  }
  .display-profile-picture .display-profile-image img.cover {
    width: 116px;
    height: 96px;
    max-width: 116px;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY MARKER
--------------------------------------------------------------------------*/
.display-marker {
  z-index: 1000;
  display: block;
  position: absolute;
  color: #000;  
  top: 10px;
  left: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.8;
  font-size: 16px;
  padding-top: 3px;
  text-align: center;
  border: 1px solid #000000;
  background-color: #ffffff;
  border-radius: 50%;
}
.display-marker.display-marker-small {
  top: 10px;
  left: 8px;
  width: 20px;
  height: 20px;
  font-size: 10px;
  padding-top: 3px;
}

/*--------------------------------------------------------------------------
 DISPLAY DATE
--------------------------------------------------------------------------*/
p.display-date {
  margin: 0;
  padding: 0;
  font-size: 12px !important;
  text-align: right;
}

/*--------------------------------------------------------------------------
 DISPLAY HAPPENING
--------------------------------------------------------------------------*/
.display-happening {

}
.display-happening .display-happening-schedule {
  margin-bottom: 12px;
}
.display-happening .display-happening-schedule h5 {
  font-size: 1.1rem;
  line-height: 1.2rem;
}
.display-happening .display-happening-padding {
  padding-left: 30px;
}
.display-happening .fa-solid {
  width: 30px;
  text-align: center;
}

/*--------------------------------------------------------------------------
 DISPLAY FILTER PROCESS
--------------------------------------------------------------------------*/
.filter-process {
  padding: 0;
  margin: 4px 0 6px 0;
  list-style: none;
  text-align: center;
}
.filter-process a {
  cursor: pointer;
  margin: 0 4px 0 4px;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  margin-bottom: 5px;
  color: #444444;
  border: 1px solid #e5e5e5;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.filter-process a:hover,
.filter-process a.active {
  background-color: #f1f1f1;
  color: #444444;
}
.filter-process a:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------------------
 DISPLAY TITLE
--------------------------------------------------------------------------*/
.display-title {
  margin-bottom: 18px;
  padding: 0 0;
}
.display-title h3 {
  text-align: left;
  font-size: 1.75rem;
  margin: 0 0 14px 0;
  color: #000000;  
  padding: 0;
}
.display-title .divider {
  margin-top: 0;
}

/*--------------------------------------------------------------------------
 DISPLAY HAPPENING
--------------------------------------------------------------------------*/
.display-agenda {
  
}
.display-agenda .display-agenda-header {

}
.display-agenda .display-agenda-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.display-agenda .display-agenda-picture .display-agenda-image {
  position: relative;
}
.display-agenda .display-agenda-picture .display-agenda-image img {
  margin-top: 4px;
  width: 96px;
  height: 80px;
  object-fit: cover;
  overflow: hidden;
}
.display-agenda.display-agenda-small .display-agenda-picture .display-agenda-image img {
  margin-top: 4px;
  width: 56px;
  height: 40px;
  object-fit: cover;
  overflow: hidden;
}
.display-agenda .display-agenda-content {
  padding: 4px 0 0 0;
  margin: 0;
  overflow: hidden;
  padding-left: 20px;
  -ms-flex: 1;
  flex: 1;
}
.display-agenda .display-agenda-content p {
  font-size: 0.75rem !important;
  font-weight: 700;
  color: #000000;
  padding: 0;
  margin: 0;
}
.display-agenda .display-agenda-header h4,
.display-agenda .display-agenda-content h4 {
  font-size: 1.15rem !important;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-agenda .display-agenda-header h5,
.display-agenda .display-agenda-content h5 {
  font-size: 0.85rem !important;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-agenda .display-agenda-content .fa-solid {
  width: 30px;
  text-align: center;
}
.display-agenda.display-agenda-small .display-agenda-content h4 {
  font-size: 0.95rem !important;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-agenda.display-agenda-small .display-agenda-content h5 {
  font-size: 0.65rem !important;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-agenda.display-agenda-small .display-agenda-content p {
  font-size: 0.75rem !important;
  font-weight: normal;
  margin: 0 0 4px 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .display-agenda .display-agenda-content h4 {
    font-size: 0.95rem !important;
  }
}
@media screen and (max-width: 500px) {
  .display-agenda .display-agenda-picture .display-agenda-image img {
    width: 56px;
    height: 40px;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY Category
--------------------------------------------------------------------------*/
.category-select {
  text-decoration: none;
}
.category-select:focus {
  box-shadow: unset;
  outline: 0 !important;
}

/*--------------------------------------------------------------------------
 DISPLAY RECTANGLE
--------------------------------------------------------------------------*/
.display-partner {

}
.display-partner .col-md-2,
.display-partner .col-md-3,
.display-partner .col-md-4,
.display-partner .col-md-6,
.display-partner .col-md-8,
.display-partner .col-md-12,
.display-partner .col-lg-2,
.display-partner .col-lg-3,
.display-partner .col-lg-4,
.display-partner .col-lg-8,
.display-partner .col-lg-12 {
  margin-bottom: 20px;
  padding: 0;
}
.display-partner .display-partner-body {
  width: 100%;
  height: 100%;
  background: #fff;
  margin-bottom: 4px;
  overflow: hidden;
  padding: 16px 20px 4px 20px;
  padding: 0;
  margin: 0;
}
.display-partner .display-partner-body .display-partner-image {
  height: 100px;
  position: relative;
  overflow: hidden;
  text-align:center;
  padding: 2px 4px 2px 4px;
}
.display-partner .display-partner-body .display-partner-image:hover {
  filter: none;
}
.display-partner .display-partner-body .display-partner-image img {
  width: 100%; 
  height: 100%;
  object-fit: contain; 
  transform: scale(0.8);
  transition: transform 1s, filter 2s ease-in-out;
}
.display-partner .display-partner-body .display-partner-image:hover img {
  transform: scale(1);
  transition: all 1.35s;    
}

