  .shortcuts-wrapper {
    margin: 0 auto;
    width: 750px;
    display: flex; display: -webkit-flex; 
    flex-flow: row wrap; -webkit-flex-flow: row wrap;
    justify-content: flex-start; -webkit-justify-content: flex-start;
  }
    .shortcuts-col {
      width: 33%;
      margin: 0;
    }
      .shortcuts-wrapper a {
        display: block;
        width: 220px;
        height: 175px;
        border-radius: 5px;
        overflow: hidden;
        margin: 7px auto;
        position: relative;
        -webkit-transition: all .4s ease-in-out 0s;
        -moz-transition: all .4s ease-in-out 0s;
        -ms-transition: all .4s ease-in-out 0s;
        -o-transition: all .4s ease-in-out 0s;
        transition: all .4s ease-in-out 0s;
      }
        .shortcuts-wrapper a.grey {
          background: #787777;
        }
        .shortcuts-wrapper a.grey-dark {
          background: #3d3b3b;
        }

        .shortcuts-wrapper.class_icon_text a .more {
          position: absolute;
          top: 7px;
          right: 14px;
          height: 18px;
          width: 18px;
          text-align: center;
          font-size: 18px !important;
          line-height: 1.0;
          color: #eead2c;
        }
          .shortcuts-wrapper.class_icon_text a .more {
          /*  background: url('../../_img/modules/plus-orange.png') no-repeat top left; */
          }
        .shortcuts-wrapper.class_icon_text a .icon {
          position: absolute;
          top: 20px;
          left: 0;
          width: 100%;
          height: 90px;
          display: flex; display: -webkit-flex; 
          flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
          justify-content: space-around; -webkit-justify-content: space-around;
        }
          .shortcuts-wrapper.class_icon_text a .icon img {
            margin: auto;
          }
        .shortcuts-wrapper.class_icon_text a .text {
          position: absolute;
          bottom: 20px;
          left: 0;
          width: 100%;
          height: 40px;
          display: flex; display: -webkit-flex; 
          flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
          justify-content: space-around; -webkit-justify-content: space-around;
        }
          .shortcuts-wrapper.class_icon_text a .text .inside {
            margin: auto;
            font-size: 17px;
            text-transform: uppercase;
            font-family: 'DIN MedCdn';
            line-height: 1.0;
            color: #eead2c;
            text-align: center;
          }


      .shortcuts-wrapper.class_icon_text a:hover {
        background: #eead2c;
      }
        .shortcuts-wrapper.class_icon_text a:hover .more {
         /* background: url('../../_img/modules/plus-black.png') no-repeat top left; */
          color: #3d3b3b;
        }
        .shortcuts-wrapper.class_icon_text a:hover .text .inside {
          color: #000000;
        }


      .shortcuts-wrapper.img_text_link a .on-overlay {
          display: none;
      }
      .shortcuts-wrapper.img_text_link a .on-hover {
          display: none;
          position: absolute;
          left: 10px;
          bottom: 15px;
          width: 200px;
          z-index: 22;
      }
          .shortcuts-wrapper.img_text_link a:hover .on-hover {
              display: block;
          }
          .shortcuts-wrapper.img_text_link a .on-hover .name {
              width: 100%;
              padding: 5px 0;
              font-size: 23px;
              color: #000;
              font-family: 'DIN BoldCnd';
              line-height: 1.0;
              text-transform: uppercase;
          }
          .shortcuts-wrapper.img_text_link a .on-hover .button {
              width: 80%;
              background-color: #3d3b3b;
              padding: 4px 8px;
              font-size: 12px;
              color: #eead2c;
              line-height: 1.2;
              text-transform: uppercase;
              position: relative;
          }
              .shortcuts-wrapper.img_text_link a .on-hover .button .more {
                  position: absolute;
                  z-index: 23;
                  right: 0px;
                  top: 2px;
                  margin-right: -6px;
                  background: url('../../_img/modules/plus-orange.png') no-repeat center center;
                  width: 18px;
                  height: 18px;
              }


      .shortcuts-wrapper.img_text_link a:hover .on-overlay {
          display: block;
          position: absolute;
          top: 0px;
          bottom: 0px;
          left: 0px;
          right: 0px;
          background: #eead2c;
          opacity: 0.5;
          z-index: 20;
      }
