[data-tooltip] {
  position: relative; }
  [data-tooltip]:hover {
    opacity: 1; }
    [data-tooltip]:hover::before {
      opacity: 1;
      top: 105%; }
  [data-tooltip]:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    content: attr(data-tooltip);
    position: absolute;
    font-size: .75rem;
    color: rgba(255, 255, 255, 0.86);
    text-transform: none;
    font-weight: normal;
    text-align: center;
    line-height: 1.36em;
    padding: .4em 1em;
    left: 50%;
    right: 0;
    margin: 0 auto;
    transform: translate(-50%, 0);
    width: fit-content;
    background: #111;
    border-radius: 4px;
    transition: all 0.3s ease;
    top: 50%;
    opacity: 0;
    pointer-events: none; }

html {
  font-size: 16px; }
  @media (max-width: 767px) {
    html {
      font-size: 14px; } }
#header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  background: #fff;
  z-index: 4;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5); }
  #header .logo svg {
    width: 160px;
    height: 40px; }

body {
  color: #555;
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  background: #141e30;
  background: -webkit-linear-gradient(-45deg, #243b55, #141e30);
  background: linear-gradient(-45deg, #243b55, #141e30);
  height: 100%;
  min-height: 100vh; }

header {
  display: flex; }
  header .logo svg {
    width: 180px;
    height: 45px; }

#wrapper {
  position: relative;
  min-height: 100vh;
  margin: 4rem 0 0 0;
  transition: margin 0.4s ease 0s;
  padding: 0 2rem 6rem; }
  @media (max-width: 991px) {
    #wrapper {
      padding: 0 0 6rem; } }
.btn {
  text-transform: uppercase;
  letter-spacing: .092em;
  transition: opacity 0.3s ease; }
  @media (hover: hover) {
    .btn:hover {
      opacity: .45; } }
  .btn.active {
    outline: none; }
    .btn.active:focus, .btn.active:active, .btn.active:visited {
      outline: none; }
    .btn.active.focus {
      outline: none; }
      .btn.active.focus:focus, .btn.active.focus:active, .btn.active.focus:visited {
        outline: none; }
  .btn:focus {
    outline: none !important; }
  .btn.btn-primary {
    background: #0BB2E0;
    border-color: #0BB2E0; }
    .btn.btn-primary:hover {
      border-color: #0BB2E0;
      background: #0BB2E0; }

.action-btn {
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: fit-content;
  /*margin: 10px auto 30px;*/ }

/* Hover effect for all buttons */
.action-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); }

/* Icon styles for all buttons */
.action-btn i {
  margin-right: 8px;
  font-size: 18px; }

.panel {
  background: #fff;
  padding: 2.6rem;
  border-radius: 1rem;
  box-shadow: 0 3px 24px 1px rgba(0, 0, 0, 0.15); }
  .panel .title-panel {
    position: relative;
    font-size: 2.5rem;
    color: #03101f;
    margin: 0 0 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #dddddd; }
    .panel .title-panel small {
      display: block;
      margin-bottom: .3em;
      text-transform: uppercase;
      letter-spacing: 0.072em;
      font-size: .52em; }
    .panel .title-panel::after {
      content: "";
      display: inline-block;
      vertical-align: middle;
      display: none;
      height: 6px;
      width: 120px;
      position: absolute;
      left: 3rem;
      bottom: -3px;
      background: #0BB2E0; }
    .panel .title-panel:before {
      content: "";
      display: inline-block;
      vertical-align: middle;
      height: calc(100% - 1.6rem);
      width: 4px;
      position: absolute;
      left: 1.6rem;
      top: 0;
      background: #0BB2E0; }
    @media (max-width: 767px) {
      .panel .title-panel::before {
        left: 15px; } }
  .panel .caption {
    text-align: center; }
    .panel .caption h2 {
      position: relative;
      font-size: 1.5rem;
      line-height: 1.42em;
      margin: 0 0 1.6rem;
      padding-bottom: 1.6rem;
      color: #03101f; }
      .panel .caption h2:before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        height: 4px;
        background: #0BB2E0;
        width: 86px;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto; }
    .panel .caption p {
      font-size: 1.125rem;
      margin: 0 0 1em; }
      .panel .caption p:last-child {
        margin-bottom: 0; }
  .panel .well {
    margin: 1.5rem auto 2.5rem;
    border: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: .6rem; }
    .panel .well .btn-lg {
      padding: .8em 1.5em; }
  @media (max-width: 991px) {
    .panel .title-panel {
      font-size: 2rem;
      line-height: 1.5em; } }
.panel-form {
  padding: 3rem 0 0; }
  .panel-form .title-panel {
    padding-left: 3rem;
    padding-right: 3rem; }
  .panel-form .form-content {
    padding: 0 3rem; }
  .panel-form .actions {
    display: flex;
    text-align: right;
    background: #eee;
    padding: 1.6rem 3rem;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3rem; }
    .panel-form .actions .btn, .panel-form .actions .action-btn {
      padding: .8em 1.4em;
      font-size: medium;
      flex: 1;
      text-align: center;
      max-height: 60px;
      white-space: nowrap;
      overflow: hidden;
      margin: 5px;
      text-overflow: ellipsis;
      text-transform: uppercase;
      letter-spacing: 1px; }
    .panel-form .actions i {
      text-align: center;
      font-style: normal;
      height: 20px; }
    .panel-form .actions.stacked {
      flex-direction: column;
      align-items: stretch; }
      .panel-form .actions.stacked .btn, .panel-form .actions.stacked .action-btn {
        width: 100%;
        max-width: none; }
  @media (max-width: 1000px) {
    .panel-form .actions {
      flex-direction: column;
      align-items: stretch; }
      .panel-form .actions .btn, .panel-form .actions .action-btn {
        width: 100%;
        max-width: none; } }
  @media (max-width: 991px) {
    .panel-form {
      padding: 2rem 0 0; }
      .panel-form .title-panel {
        padding-left: 2rem;
        padding-right: 2rem; }
      .panel-form .form-content {
        padding-left: 2rem;
        padding-right: 1.6rem; } }
.action-btn-recalcular {
  background-color: #18b3e1;
  /* Vibrant blue */ }

.action-btn-recalcular:hover {
  background-color: #85d3e8;
  /* Darker blue on hover */ }

.action-btn-simular {
  background-color: #009688;
  /* Vibrant blue */ }

.action-btn-simular:hover {
  background-color: #4DB6AC;
  /* Darker blue on hover */ }

.action-btn-salvar {
  background-color: #005c06;
  /* Strong red */ }

.action-btn-salvar:hover {
  background-color: #00f410;
  /* Darker red on hover */ }

.action-btn-compartilhar {
  background-color: #7255a4;
  /* Light purple */ }

.action-btn-compartilhar:hover {
  background-color: #d1c4e9;
  /* Even lighter purple on hover */ }

.action-btn-switch {
  background-color: #20c997;
  /* Light purple */ }

.action-btn-switch:hover {
  background-color: #198f6e;
  /* Even lighter purple on hover */ }

.action-btn-home {
  background-color: #5b8a72;
  /* Muted green for a calm, inviting feel */ }

.action-btn-home:hover {
  background-color: #a3d0b5;
  /* Softer green on hover */ }

/* Ensure the form content takes 80% of the viewport height */
.form-content {
  max-height: 50vh;
  /* 80% of the viewport height */
  overflow-y: auto;
  /* Enable vertical scrolling */
  padding: 20px;
  /* Optional: Add some padding for better spacing */
  box-sizing: border-box;
  /* Ensure padding is included in the height calculation */ }

/* Optional: Style for the scroll bar */
.form-content::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */ }

.form-content::-webkit-scrollbar-thumb {
  background-color: #243b55;
  /* Color of the scrollbar thumb */
  border-radius: 4px;
  /* Rounded corners for the scrollbar thumb */ }

.form-content::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* Background of the scrollbar track */ }

.tab-content::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */ }

.tab-content::-webkit-scrollbar-thumb {
  background-color: #243b55;
  /* Color of the scrollbar thumb */
  border-radius: 4px;
  /* Rounded corners for the scrollbar thumb */ }

.tab-content::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* Background of the scrollbar track */ }

.form-group {
  margin-bottom: 1.6rem;
  position: relative; }
  .form-group:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    height: 100%;
    width: 4px;
    background: #0BB2E0;
    left: -1.5rem;
    top: 3px; }
    @media (max-width: 991px) {
      .form-group:before {
        left: -1rem; } }
  .form-group h4, .form-group .label-group {
    font-size: 1.125rem;
    margin: 0 0 .6em;
    line-height: 1.46em;
    position: relative; }
    .form-group h4 .btn, .form-group .label-group .btn {
      border: none;
      background: none;
      padding: .4em;
      position: relative;
      top: -4px;
      transition: all 0.3s ease; }
      .form-group h4 .btn:hover, .form-group .label-group .btn:hover {
        background: none;
        border: none;
        transform: scale(1.1);
        opacity: 1; }
      .form-group h4 .btn img, .form-group .label-group .btn img {
        display: none; }
      .form-group h4 .btn::before, .form-group .label-group .btn::before {
        content: "";
        line-height: 100%;
        display: block;
        vertical-align: middle;
        height: 36px;
        width: 36px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33.959' height='34.959' viewBox='0 0 33.959 34.959'%3E%3Cg id='video-helper' transform='translate(-1656 -650.041)'%3E%3Cpath id='Caminho_1' data-name='Caminho 1' d='M16,2.667A13.333,13.333,0,1,1,2.667,16,13.348,13.348,0,0,1,16,2.667ZM16,0A16,16,0,1,0,32,16,16,16,0,0,0,16,0ZM12,22.667V9.333l12,6.861Z' transform='translate(1656 653)' fill='%23999'/%3E%3Cpath id='Caminho_3' data-name='Caminho 3' d='M5.6,0A5.6,5.6,0,1,1,0,5.6,5.6,5.6,0,0,1,5.6,0Z' transform='translate(1676.646 652.155)' fill='%23fff'/%3E%3Cpath id='Caminho_2' data-name='Caminho 2' d='M7.713,0a7.713,7.713,0,1,0,7.713,7.713A7.713,7.713,0,0,0,7.713,0Zm0,11.73a.8.8,0,1,1,.8-.8A.8.8,0,0,1,7.713,11.73Zm1.26-3.81a1.7,1.7,0,0,0-.6,1.4H7.083A2.366,2.366,0,0,1,8,7.09c.368-.35.659-.627.618-1.17a.85.85,0,0,0-.877-.788c-.456,0-.988.339-.988,1.294H5.464A2.277,2.277,0,0,1,7.771,3.887,2.267,2.267,0,0,1,9.41,4.5a2.011,2.011,0,0,1,.549,1.477A2.875,2.875,0,0,1,8.973,7.92Z' transform='translate(1674.533 650.041)' fill='%233498db'/%3E%3C/g%3E%3C/svg%3E%0A"); }
    .form-group h4 .task-video-helper, .form-group .label-group .task-video-helper {
      display: inline-block;
      vertical-align: middle;
      border: none;
      background: none;
      position: relative;
      top: -4px;
      transition: all 0.3s ease; }
      .form-group h4 .task-video-helper:hover, .form-group .label-group .task-video-helper:hover {
        background: none;
        border: none;
        transform: scale(1.1);
        opacity: 1; }
      .form-group h4 .task-video-helper .icon::before, .form-group .label-group .task-video-helper .icon::before {
        content: "";
        line-height: 100%;
        display: block;
        vertical-align: middle;
        height: 36px;
        width: 36px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33.959' height='34.959' viewBox='0 0 33.959 34.959'%3E%3Cg id='video-helper' transform='translate(-1656 -650.041)'%3E%3Cpath id='Caminho_1' data-name='Caminho 1' d='M16,2.667A13.333,13.333,0,1,1,2.667,16,13.348,13.348,0,0,1,16,2.667ZM16,0A16,16,0,1,0,32,16,16,16,0,0,0,16,0ZM12,22.667V9.333l12,6.861Z' transform='translate(1656 653)' fill='%23999'/%3E%3Cpath id='Caminho_3' data-name='Caminho 3' d='M5.6,0A5.6,5.6,0,1,1,0,5.6,5.6,5.6,0,0,1,5.6,0Z' transform='translate(1676.646 652.155)' fill='%23fff'/%3E%3Cpath id='Caminho_2' data-name='Caminho 2' d='M7.713,0a7.713,7.713,0,1,0,7.713,7.713A7.713,7.713,0,0,0,7.713,0Zm0,11.73a.8.8,0,1,1,.8-.8A.8.8,0,0,1,7.713,11.73Zm1.26-3.81a1.7,1.7,0,0,0-.6,1.4H7.083A2.366,2.366,0,0,1,8,7.09c.368-.35.659-.627.618-1.17a.85.85,0,0,0-.877-.788c-.456,0-.988.339-.988,1.294H5.464A2.277,2.277,0,0,1,7.771,3.887,2.267,2.267,0,0,1,9.41,4.5a2.011,2.011,0,0,1,.549,1.477A2.875,2.875,0,0,1,8.973,7.92Z' transform='translate(1674.533 650.041)' fill='%233498db'/%3E%3C/g%3E%3C/svg%3E%0A"); }
    .form-group h4:after, .form-group .label-group:after {
      content: "";
      position: absolute;
      height: 104%;
      width: 102%;
      left: -1%;
      top: -2%;
      transform: translate(0, -2px);
      transition: all 0.3s ease;
      opacity: 0;
      pointer-events: none;
      border: 0 dashed #3498db;
      border-radius: 6px; }
    .form-group h4.hightlight::after, .form-group .label-group.hightlight::after {
      opacity: 1;
      border-width: 2px; }
  .form-group .form-control {
    padding: 0.9em 1.6em;
    border-radius: 6px;
    height: auto;
    box-shadow: none;
    transition: box-shadow 0.3s ease; }
    .form-group .form-control:focus {
      border-color: #0BB2E0;
      box-shadow: 0 0 0 2px rgba(11, 178, 224, 0.75); }
    .form-group .form-control.required:invalid {
      border-color: #f39c12;
      box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.3); }
  .form-group .btn {
    padding: 0.76em 1.2em; }
  .form-group[data-toggle-visible] {
    display: none; }
  .form-group .input-group-addon {
    color: #777;
    background: #eee; }

.radio > label, .checkbox > label {
  position: relative;
  display: block;
  padding: .8em 1.2em;
  padding-left: 32px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease; }
  .radio > label:hover, .checkbox > label:hover {
    background: #efefef; }

.radio-custom > label, .checkbox-custom > label {
  display: block;
  font-weight: normal;
  position: relative; }
  .radio-custom > label input, .checkbox-custom > label input {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0;
    margin-left: 16px;
    z-index: 2; }
    .radio-custom > label input.required:invalid ~ .task, .checkbox-custom > label input.required:invalid ~ .task {
      box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.3);
      border-color: #f39c12; }
    .radio-custom > label input:checked ~ .task, .checkbox-custom > label input:checked ~ .task {
      box-shadow: 0 0 0 2px rgba(0, 120, 184, 0.3);
      border-color: #0078B8; }
  .radio-custom > label .task, .checkbox-custom > label .task {
    position: relative;
    display: block;
    padding: .8em 1.2em;
    padding-left: 42px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer; }
    .radio-custom > label .task:hover, .checkbox-custom > label .task:hover {
      background: #efefef; }

.btn-toggle:hover {
  opacity: 1; }
  .btn-toggle:hover .task::before {
    transform: scale(1);
    opacity: 1;
    visibility: visible; }

.btn-toggle .task {
  position: relative;
  padding: 0 10px; }
  .btn-toggle .task::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -5px;
    margin-top: -5px;
    height: 10px;
    width: 10px;
    margin-right: .3em;
    border-radius: 100%;
    background: #2ECC71;
    transition: all 0.3s ease;
    transform: scale(0.6); }
  .btn-toggle .task-red::before {
    background: #E74C3C; }

.btn-toggle input[type="radio"]:checked ~ .task::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1); }

.panel-hero {
  max-width: 560px;
  margin: 0 auto;
  padding: 0; }
  .panel-hero .caption {
    padding: 2.6rem; }
  .panel-hero .controls {
    padding: 2.6rem;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    background: #eee; }
    .panel-hero .controls .btn {
      padding-top: 1em;
      padding-bottom: 1em; }
      .panel-hero .controls .btn .icon {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        top: -1px;
        margin-right: .3em; }
        .panel-hero .controls .btn .icon::before {
          content: "";
          line-height: 100%;
          display: block;
          vertical-align: middle;
          height: 1.6em;
          width: 1.6em;
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center;
          background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='%23ffffff' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 4c0-.478-.379-1-1-1h-16c-.62 0-1 .519-1 1v16c0 .621.52 1 1 1h16c.478 0 1-.379 1-1zm-16.5.5h15v15h-15zm12.5 10.75c0-.414-.336-.75-.75-.75h-8.5c-.414 0-.75.336-.75.75s.336.75.75.75h8.5c.414 0 .75-.336.75-.75zm0-3.248c0-.414-.336-.75-.75-.75h-8.5c-.414 0-.75.336-.75.75s.336.75.75.75h8.5c.414 0 .75-.336.75-.75zm0-3.252c0-.414-.336-.75-.75-.75h-8.5c-.414 0-.75.336-.75.75s.336.75.75.75h8.5c.414 0 .75-.336.75-.75z' fill-rule='nonzero'/%3E%3C/svg%3E"); }
        .panel-hero .controls .btn .icon.icon-video:before {
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-3 17v-10l9 5.146-9 4.854z'/%3E%3C/svg%3E"); }
      .panel-hero .controls .btn + .btn {
        margin-top: 1rem; }

section.section-form .container {
  max-width: 992px; }

.glyphicon-refresh-animate {
  -animation: spin .7s infinite linear;
  -webkit-animation: spin2 .7s infinite linear; }

@-webkit-keyframes spin2 {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  from {
    transform: scale(1) rotate(0deg); }
  to {
    transform: scale(1) rotate(360deg); } }

.container-video {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem; }
  @media (max-width: 991px) {
    .container-video {
      padding: 0; } }
  .container-video #player {
    border-radius: 0; }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust the opacity to control the blur intensity */
  backdrop-filter: blur(8px);
  /* Adjust the blur radius as needed */
  z-index: 9999;
  display: none;
  /* Hide the overlay by default */ }

#player {
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding-bottom: 0%;
  width: 50%;
  height: 50%;
  margin-left: 25%; }

#fechar {
  margin-top: 10%; }

@media screen and (max-width: 767px) {
  #player {
    margin-top: 0%;
    max-height: 25%; }
  #fechar {
    margin-top: 55%; } }

.field-step-second {
  display: none; }

.page-review #wrapper {
  margin-top: 1.6rem;
  padding-bottom: 5px;
  min-height: initial; }

.page-review .section-form .container {
  max-width: 100%;
  width: 100%; }

.page-review .panel-review {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  background: none;
  box-shadow: none; }

.page-review .wrap-results {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px; }
  @media (min-width: 851px) {
    .page-review .wrap-results {
      flex: none;
      width: 33.33%; } }
.page-review .container-portfolio {
  position: relative;
  flex: 1;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 1rem;
  z-index: 2; }
  @media (min-width: 851px) {
    .page-review .container-portfolio {
      max-height: calc(100vh - 145px); } }
  .page-review .container-portfolio .tabs-portfolio {
    display: flex;
    display: flex;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd; }
    .page-review .container-portfolio .tabs-portfolio li {
      list-style: none;
      flex: 1; }
      .page-review .container-portfolio .tabs-portfolio li + li {
        border-left: 1px solid #ddd; }
      .page-review .container-portfolio .tabs-portfolio li a {
        position: relative;
        display: block;
        padding: .8em;
        text-align: center;
        color: #555; }
        .page-review .container-portfolio .tabs-portfolio li a:hover, .page-review .container-portfolio .tabs-portfolio li a:focus {
          text-decoration: none; }
        .page-review .container-portfolio .tabs-portfolio li a::after {
          content: "";
          display: inline-block;
          vertical-align: middle;
          display: block;
          height: 4px;
          background: #0BB2E0;
          position: absolute;
          width: 0;
          max-width: 100%;
          left: 1px;
          right: 1px;
          margin: 0 auto;
          bottom: -2px;
          opacity: 0;
          transition: all .3s ease; }
      .page-review .container-portfolio .tabs-portfolio li.active a {
        color: #333;
        font-weight: bold; }
        .page-review .container-portfolio .tabs-portfolio li.active a::after {
          width: 120px;
          opacity: 1; }
      .page-review .container-portfolio .tabs-portfolio li:not(.active) a:hover::after {
        background: #ddd;
        width: 120px;
        opacity: 1; }
  .page-review .container-portfolio .tab-content {
    padding: 20px;
    overflow: auto; }
  .page-review .container-portfolio .text-box {
    text-align: center;
    padding: 1.6rem;
    border-radius: 1rem;
    background: #eee;
    margin: 0 auto; }
    .page-review .container-portfolio .text-box h2 {
      font-size: 1.5rem;
      color: #03101f;
      margin: 0 0 1em; }
      .page-review .container-portfolio .text-box h2::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        height: 4px;
        display: block;
        width: 120px;
        background: #0BB2E0;
        margin: .6em auto 0; }
    .page-review .container-portfolio .text-box p {
      line-height: 1.5em; }

.page-review .tab-container {
  position: relative; }

.page-review table th, .page-review table td {
  border: none; }

.page-review .info-rotate-device {
  display: none;
  position: fixed;
  left: 1px;
  right: 1px;
  bottom: 10px;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  margin: 0 auto;
  width: fit-content;
  background: rgba(0, 0, 0, 0.75); }
  .page-review .info-rotate-device .icon-rotate {
    display: inline-block;
    vertical-align: middle;
    animation: rotate 1.5s ease-in-out infinite alternate;
    position: relative;
    top: -1px;
    margin-left: 10px; }
    .page-review .info-rotate-device .icon-rotate::before {
      content: "";
      line-height: 100%;
      display: block;
      vertical-align: middle;
      height: 24px;
      width: 24px;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      display: inline-block;
      background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M18 24h-12c-1.104 0-2-.896-2-2v-20c0-1.104.896-2 2-2h12c1.104 0 2 .896 2 2v20c0 1.104-.896 2-2 2zm1-5.083h-14v3.083c0 .552.449 1 1 1h12c.552 0 1-.448 1-1v-3.083zm-7 3c-.553 0-1-.448-1-1s.447-1 1-1c.552 0 .999.448.999 1s-.447 1-.999 1zm7-17h-14v13h14v-13zm-1-3.917h-12c-.551 0-1 .449-1 1v1.917h14v-1.917c0-.551-.448-1-1-1zm-4.5 1.917h-3c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h3c.276 0 .5.224.5.5s-.224.5-.5.5z'/%3E%3C/svg%3E"); }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(-90deg); }
  100% {
    transform: rotate(-90deg); } }
  .page-review .info-rotate-device .close-info {
    position: absolute;
    right: -3px;
    top: -3px;
    background: none;
    outline: none;
    border: none;
    padding: 4px;
    display: block;
    width: 32px;
    height: 32px;
    opacity: .75;
    font-size: 24px;
    line-height: 0; }
  @media only screen and (max-width: 850px) and (orientation: portrait) {
    .page-review .info-rotate-device {
      display: block; } }
.panel-review {
  padding: 0; }
  .panel-review [class*="col-"] {
    width: 100% !important; }
  .panel-review h4 {
    min-height: initial; }
  .panel-review .title-panel {
    font-size: 1.25rem;
    padding: 1.6rem;
    margin: 0 0 15px; }
    .panel-review .title-panel::before {
      top: 100%;
      height: 4px;
      width: 120px;
      margin-top: -2px; }
    @media (min-width: 851px) {
      .panel-review .title-panel {
        margin: 0 0 5px; } }
  .panel-review .form-content {
    padding: 0 1.6rem; }
  .panel-review .form-group:not(.field-first-step) h4 {
    font-size: 14px;
    min-height: auto;
    margin: 0 0 .6em;
    flex: none;
    width: 100%; }
  @media (min-width: 1200px) {
    .panel-review .form-group:not(.field-first-step) {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 10px 0; }
      .panel-review .form-group:not(.field-first-step)::before {
        display: none; }
      .panel-review .form-group:not(.field-first-step) h4 {
        width: 40%;
        margin: 0; }
      .panel-review .form-group:not(.field-first-step).show {
        display: flex !important; } }
  .panel-review .form-group .input-group {
    margin: 0;
    flex: 1; }
  .panel-review .form-group .form-control {
    text-align: right; }
    .panel-review .form-group .form-control[type="number"] {
      padding-right: 6px; }
  .panel-review .actions {
    margin: 0; }
