/*#region global */
.t-pl-3 {
  padding-left: 3rem !important;
}

.grey-card {
  background: var(--grey50);
  border-radius: 16px;
  display: flex;
  align-items: center;
}

.grey-card img {
  padding-left: 1rem;
  max-width: 150px;
}

.grey-card-content {
  padding: 2rem;
  text-wrap: pretty;
}

/*#endregion */

/*#region audit-table */
.audit-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.audit-table-container {
  border-radius: 8px;
  border: 1px solid var(--grey100);
  margin-bottom: 2rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .audit-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .audit-table {
    min-width: 800px;
  }

  .audit-table th,
  .audit-table td {
    white-space: nowrap;
  }
}

.audit-table th {
  background: var(--grey50);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.audit-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--grey100);
}

.audit-table tr:last-child td {
  border-bottom: none;
}

.audit-table a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}

.audit-table a:hover {
  color: var(--primary);
}

.audit-table td:last-child a {
  background: none;
  text-decoration: underline;
}

.audit-table td:last-child a:hover {
  color: var(--primary);
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../../img/ico/ico-sign-info.svg') no-repeat center;
  background-size: contain;
  cursor: help;
  margin-bottom: 0.5rem;
  vertical-align: middle;
}

.tooltip {
  visibility: hidden;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: max-content;
  max-width: 300px;
  z-index: 1;
  font-size: 14px;
  color: var(--grey800);
  opacity: 0;
  transition: opacity 0.2s;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/*#endregion */

/*#region InitialView */

/*#endregion */

/*#region FeaturesView (section) */

.section_content > img {
  margin-bottom: 2rem;
}

.card {
  position: relative;
  margin: 3rem 0;
}

.card > img {
  position: absolute;
  top: -24px;
  left: 2rem;
  width: 48px;
}

.card-title,
.card-info {
  padding: 2rem;
}

.card-info {
  background: var(--grey50);
  border-radius: 0 0 16px 16px;
}

.t-tab .o-listIcon > li {
  position: relative;
  padding-left: 3rem;
}

.t-tab .o-listIcon > li::before {
  content: '';
  position: absolute;
  left: 2.5rem;
  top: 0;
  width: 2px;
  height: calc(100% - 1rem);
  background: var(--grey50);
}

/*#endregion */

/*#region Navigation Section */
.section-nav {
  display: none;
}

.navSide {
  width: 380px;
  background: #fff;
}

.navSide a {
  position: relative;
  padding-bottom: 1rem;
  color: var(--grey600);
  text-decoration: none;
}

.navSide a::before {
  content: '';
  position: absolute;
  top: 5px;
  left: -1rem;
  width: 10px;
  height: 16px;
  background: url('../../img/ico/ico-arrow-link-grey.svg') no-repeat;
  transform: rotate(0deg);
  opacity: 0;
  margin-left: 0;
  transition: all 0.2s ease-in;
}

.navSide a:hover::before,
.navSide a.active::before {
  opacity: 1;
  left: -12px;
}

#InitialView {
  padding-top: 6rem;
}

/*#endregion */

/********************************************************RESPONSIVE
******************************************************************/

@media screen and (min-width: 640px) {
  #InitialView .initialView_img img {
    width: 400px;
    top: 10px;
  }

  .card > img {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 48px;
  }

  section {
    padding: 3rem 0;
  }

  .navSide.fixed {
    position: fixed;
    top: 140px;
    left: calc(50% + 1rem);
  }

  .navSide.absolute {
    position: absolute;
    bottom: 100px;
    left: calc(50% + 1rem);
  }
}

#FeaturesView {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  #InitialView {
    padding-top: 7rem;
  }

  h1 {
    font-size: 40px;
  }

  .section-nav {
    display: block;
  }

  .navSide.fixed {
    position: fixed;
    top: 140px;
    left: calc(50% - (1024px / 2) + ((1024px / 3) * 2) + 0.5rem);
  }

  .navSide.absolute {
    left: calc(50% - (1024px / 2) + ((1024px / 3) * 2) + 0.5rem);
  }
}

@media screen and (min-width: 1920px) {
  .navSide.fixed {
    position: fixed;
    top: 140px;
    left: calc(50% - (1200px / 2) + ((1200px / 3) * 2) + 0.5rem);
  }

  .navSide.absolute {
    left: calc(50% - (1200px / 2) + ((1200px / 3) * 2) + 0.5rem);
  }
}

@media screen and (max-width: 1024px) {
  .grey-card img {
    display: none;
  }
}
