.Questions_Wrap {
  margin-top: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden; }
  .Questions_Wrap input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .Questions_Wrap .tab {
    width: 100%;
    color: #2e3b3a;
    margin-bottom: 1px; }
    .Questions_Wrap .tab:last-child {
      margin-bottom: 0px; }
    .Questions_Wrap .tab-label {
      display: flex;
      border: 1px solid #dfdcdc;
      justify-content: space-between;
      padding: 0.9rem;
      background: #f3f4f5;
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 0px;
      font-weight: 400;
      transition: all 0.07s linear;
      cursor: pointer; }
      @media (max-width: 639px) {
        .Questions_Wrap .tab-label {
          font-size: 14px;
          line-height: 19px; } }
      .Questions_Wrap .tab-label:hover {
        background: #d7dbde; }
      .Questions_Wrap .tab-label::after {
        font-family: "Font Awesome 5 Pro" !important;
        content: "\f054";
        width: 1em;
        height: 1em;
        text-align: center;
        transition: all .45s; }
    .Questions_Wrap .tab-content {
      max-height: 0;
      padding: 0;
      color: #2e3b3a;
      overflow: hidden;
      background: white;
      transition: all .45s;
      border-top: none;
      border-left: 1px solid rgba(0, 0, 0, 0);
      border-right: 1px solid rgba(0, 0, 0, 0);
      border-bottom: 1px solid rgba(0, 0, 0, 0);
      -webkit-background-clip: padding-box;
      background-clip: padding-box;
      opacity: 0;
      filter: alpha(opacity=0); }
    .Questions_Wrap .tab-close {
      display: flex;
      justify-content: flex-end;
      padding: 0.9rem;
      background: #f3f4f5;
      cursor: pointer; }
      .Questions_Wrap .tab-close:hover {
        background: #d7dbde; }
  .Questions_Wrap input:checked + .tab-label {
    background: #d7dbde; }
    .Questions_Wrap input:checked + .tab-label::after {
      transform: rotate(90deg); }
  .Questions_Wrap input:checked ~ .tab-content {
    max-height: 450px;
    overflow-y: scroll;
    border-color: rgba(0, 0, 0, 0);
    margin-bottom: 0.7rem;
    padding: 2rem;
    opacity: 1;
    filter: alpha(opacity=100);
    border: 1px solid #dfdcdc;
    border-top: 0px; }
    .Questions_Wrap input:checked ~ .tab-content::-webkit-scrollbar {
      width: 5px; }
    .Questions_Wrap input:checked ~ .tab-content::-webkit-scrollbar-track {
      box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
      background-color: #f3f4f5; }
    .Questions_Wrap input:checked ~ .tab-content::-webkit-scrollbar-thumb {
      background-color: #1e2a42;
      outline: 1px solid #1e2a42; }
