
/*
  ___                   _
 | _ \___ __ ___ _ _ __| |
 |   / -_) _/ _ \ '_/ _` |
 |_|_\___\__\___/_| \__,_|

*/

.Record {
  border-bottom: 1px solid #eee;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.01);
  width: 100%;

  font-size: @record-font-size;
  @media @onlyScreen and @smallmobile, @mobile {
    font-size: @record-font-size - @record-font-size-mobile-decrement;
  }

  .Record-wrapper {
    display: table;
    width: 100%;

    min-height: @record-row-height;
    border-spacing: 15px;
    @media @onlyScreen and @smallmobile, @mobile {
      border-spacing: 10px;
      min-height: @record-mobile-row-height;
    }
  }

  .Record-label,
  .Record-value {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    text-align: left;
  }

  .Record-label {
    font-weight: normal;
    text-align: right;
    text-transform: uppercase;
    opacity: 0.7;
    @media @onlyScreen and @smallmobile, @mobile {
      width: 25%;
    }
  }

  .Record-label:after {
    content: " " @record-label-separator;
  }

  .Record-value {
    font-weight: bold;
    line-height: @line-height-base - 0.1;
    font-size: @record-font-size + @record-value-font-size-increment;
  }

}







/*
  ___                   _          _ _ _                   _
 | _ \___ __ ___ _ _ __| |  ___ __| (_) |_   _ __  ___  __| |___
 |   / -_) _/ _ \ '_/ _` | / -_) _` | |  _| | '  \/ _ \/ _` / -_)
 |_|_\___\__\___/_| \__,_| \___\__,_|_|\__| |_|_|_\___/\__,_\___|

*/

.Record.edit {
  .Record-wrapper {
    width: 75%;
    margin: 0px auto;
    @media @onlyScreen and @smallmobile, @mobile {
      width: 100%;
    }
  }
  .Record-label {
    width: 35%;
    line-height: @line-height-base - 0.15;
    font-size: @record-font-size;
    @media @onlyScreen and @smallmobile, @mobile {
      width: 30%;
    }
  }
  .Record-label:after {
    content: "";
  }
  .Record-value {
    width: 65%;
    position: relative;
  }
}






/*
  ___                   _           _
 | _ \___ __ ___ _ _ __| |  ___ ___| |_
 |   / -_) _/ _ \ '_/ _` | (_-</ -_)  _|
 |_|_\___\__\___/_| \__,_| /__/\___|\__|

*/


.Record.recordSet > .Record-wrapper > .Record-label,
.Record.recordSet > .Record-wrapper > .Record-value {
  display: block;
  width: 100%;
  text-align: left;
  font-size: @record-font-size;
}

.Record.recordSet > .Record-wrapper > .Record-label {
  text-transform: capitalize;
  font-size: @record-font-size;
}

.Record.recordSet > .Record-wrapper > .Record-label:after {
  content: "";
}

.Record.recordSet {
  border-bottom: none;
  box-shadow: none;
  margin: 30px auto 15px;

  width: 75%;
  @media @onlyScreen and @smallmobile, @mobile {
    width: 92%;
  }

  .Record {
    border-bottom: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.04);
  }

  .Record-wrapper {
    min-height: @record-row-height - 50px;
    display: table;
    border-spacing: 5px;
    width: 100%;
    @media @onlyScreen and @smallmobile, @mobile {
      border-spacing: 3px;
    }
  }




}

.recordSet .Grid-item .Record:last-child {
  padding-bottom: 20px;
}

.recordSet .Grid-item .Record:first-child {
  padding-top: 20px;
}

