@include export-module('co-tile-render-layout') {
  .co-tile-render {
    box-shadow: 0 0 2px 0 rgba(72,79,96,.25);
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 216px; // just defaults: consumer of <tile-renderer> can give his own outter dimensions in css
    width: 117px;
    background-color: #F7FAFA;

    &.selected {
      box-shadow: 0 0 2px 2px, #73B77E;
    }

    &.small-size {
      padding: 2px;
      width: 58px;
      height: 75px;
      div.image {
        width: 53px;
        height: 55px;
        icon.selected {
          top: 50%;
          left: 50%;
          margin-right: -50%;
          transform: translate(-50%, -50%);
        }
      }
      div.info {
        span.price {
          font-size: 11px;
          font-weight: normal;
        }
      }
    }

    &:not(.selected):hover {
      box-shadow: 0 0 2px 0 #1A73E8;
    }

    div.image {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-bottom: 11px;
      height: 120px;
      background-color: white;
      tag-label {
        position: absolute;
        top: 4px;
        left: 3px;
      }


      div.info {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 5px;
        justify-content: center;
        min-height: 40px;
        span.label {
          font-size: 10px;
        }
        span.description {
          overflow: hidden;
          word-wrap: break-word;
        }
        span.price {
          position: absolute;
          font-weight: bold;
          bottom: 6px;
          left: 6px;
        }
      }

      image-display {
        padding: 5px;
      }
    }
  }





