@import "styles/base.scss";

.row {
  width: 100%;
  position:relative;
  display: flex;
  align-items: center;
}

.allData-row {
  
  // Borders for everything but the open/close
  border: 1px solid $grey-border;
  border-left: none;
  min-height: 92px;
  
  
  margin: 0;
  
  // this prevents child contents with margin rules from moving the containers
  // overflow: auto;

  .opener {
    background:#00AEEF;
    border: 3px solid #00AEEF;
    position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px;
    width: 10px;
  }
}

  .date {
    color: #002C5A;
    font-family: "Source Sans Pro";
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 22px;
  }

  .duration {
    color: #7A8690;
    font-family: "Source Sans Pro";
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
  }

  .arrow {
    font-size: 9px;
    color: #8CA3AD;
  }

  .sub-col {
    padding: 0;
    align-items: center;
    display: flex;
  }


  .base-col {
        vertical-align: middle;
        justify-content: space-evenly;
        align-items: center;
        display: flex;
        position: relative;

        &:after {
          content: '';
          position: absolute;
          right: 0;
          top: 10px;
          bottom: 10px;
          width: 1px;
          background: $gray;
        }

        // No padding on first bar
        &:first-child {
          .col-holder {
            padding: 0;
          }
        }

        // Hide last divider bar
        &:last-child {
          &:after {
            display: none;
          }
        }

        .col-holder {
                // padding: 0 10px 0 20px;
                display: flex;
                align-items: center;
                text-align: left;
                &.vertical {
                  display: block;
                }
              }
      }