/*
 *  This is a common file to include common stylings throughout all Pages in Workstation
 */

/** NO FLASH PAGE **/
.instruction-section {
    text-align: center;

    .message {

        &-title {
            padding: 60px 0;

            h4 {
                color: $timberwolf;
            }

        }

        &-body {
            width: 90%;
            margin: 0 auto 70px;
            font-size: 0;

            .section {
                float: none;
                display: inline-block;
                word-wrap: break-word;
                vertical-align: top;
                font-size: 12px;
                padding: 0 40px;
            }

            p {
                color: $gorilla;
                font-size: 14px;
                margin: 5px 0;
            }

        }

        &-footer {
            border-top: 1px solid $koala;
            width: 70%;
            margin: 0 auto;
            padding-top: 20px;

            p {
                color: $timberwolf;
                font-size: 14px;
            }

        }

    }

}

/*
 *  This style is to be used for Legacy Pages of Workstation i.e. Privacy Policy and Terms and Conditions.
 */
.legal {

    &-title {
        margin: 0 0 20px 0;
        padding-top: 50px;
        text-align: center;
    }

    .section-title {
        padding-bottom: 10px;
        text-transform: uppercase;
    }

    .sub-heading {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: medium;
    }

    .address {
        margin: 10px 0px 10px 30px;
    }

    ol {
        list-style: decimal;
        margin-left: 30px;
        padding: 15px 0;

        li {
            line-height: 18px;
            margin-bottom: 9px;
            padding-left: 5px;
        }

    }

    ul {
        list-style: disc;
        margin-left: 30px;
        padding-top: 15px;

        li {
            margin-bottom: 9px;
            padding-left: 5px;
        }

        ul {
            padding: 0;
            list-style: circle;
        }
    }

    .terms-conditions-topic {
        padding: 10px 0 20px 0;

        h4,
        p {
            margin-top: 0;
            padding-top: 15px;
        }

    }

}

/* style rules for /multiplereleases page */

.info-banner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px 12px;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  background-color: #f4f8ff;
  margin: 15px 0;

  .info-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .info-icon {
    font-size: 20px;
    margin-top: 2px;
  }

  .info-text {
    color: #1f2937;
    font-size: 14px;

    strong {
      display: block;
      margin-bottom: 4px;
    }
  }

  .info-btn {
    display: block;
    align-self: flex-start;
    background-color: #3b6ea5;
    color: #ffffff;
    border: none;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    margin-left: 38px;

    &:hover {
      background-color: #2f5f8f;
    }
  }
}
