.modal--right-side {
  background-color: #00000099;
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;

  .modal--right-side-body {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    min-height: calc(100% - 6.875rem);
    position: absolute;
    right: 0;
    top: 6.875rem;
    width: 24.5rem;
  }

  .modal--right-side-header {
    align-items: center;
    background-color: #FFFFFF;
    display: flex;
    height: 6.875rem;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: absolute;
    right: 0;
    top: 0;
    width: 21.5rem;

    .modal--right-side-header-logo {
      width: 13.25rem;
    }
  }

  .modal--right-side-header-grey .modal--right-side-body {
    background-color: #EFF1F5;
  }

  &.active {
    display: block;
  }

  @media screen and (max-width: 767px) {
    .modal--right-side-body {
      width: 100%;
    }

    .modal--right-side-header {
      width: calc(100% - 3rem);;
    }
  }
}

.modal-filter {
  .modal-filter-title {
    padding: 0 1.5rem 1rem 1.5rem;
  }
}

.title-modal {
  display: flex;
  flex-direction: column;

  .title-modal-text {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.75rem;
    text-align: left;
    font-family: 'Marianne', sans-serif;
    margin: 0;
  }

  .title-modal-line {
    background-color: #f7904a;
    height: 0.063rem;
    margin: 1.25rem auto 0 0;
    width: 5.875rem;
  }
}

.topic-modal-generic {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-top: 0.0625rem;
  position: relative;

  &:first-child {
    margin-top: 0;
  }
}

.checked-modal-label {
  background-color: #000091;
  cursor: default;
}

.topic-modal-text {
  box-shadow: 0 -0.0625rem 0 0 #D9D9D9, 0 0.0625rem 0 0 #D9D9D9;
  color: #000000;
  padding: 1rem 1.5rem;
  width: 100%;
  text-decoration: none;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75rem;

  &.checked-modal-a {
    box-shadow: inherit;
    color: white;
    font-size: 1.125rem;
    pointer-events: none;
  }
}