.actuator-h2o-kit-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.actuator-h2o-kit-container .actuator-h2o-kit-card{
    width: 50%;
    padding: .5em;
    position: relative;
}

.actuator-h2o-kit-container .actuator-h2o-kit-card-inner{
    background-color: white;
    border-radius: 5px;
    padding: 1.75rem;
    padding-bottom: .5rem;
    box-shadow: 1px 1px 10px 1px rgba(0,0,0,.1);
    border-bottom-color: transparent;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    height: 100%;
    transition: all .15s ease 0s;
}

.actuator-h2o-kit-container .actuator-h2o-kit-card-inner .top{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 5px;
    align-content: flex-start;    
}

.actuator-h2o-kit-container h4{
    width: 100%;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: .5em;
    padding-left: 1em;
}

.actuator-h2o-kit-container .left-col-arkod{
    width: 30%
}
.actuator-h2o-kit-container .left-col-arkod img{
    width: 100%;
    margin-top: 0;
    height: 120px;
    object-fit: contain;
}
.actuator-h2o-kit-container .right-col-arkod{
    width: 70%;
    padding-left: 1em;
}
.actuator-h2o-kit-container .right-col-arkod p{
    margin: 0;
    color: #374047;
    font-weight: 400;
    margin-bottom: 2px;
    font-size: .8em;
    letter-spacing: .1px;
}
.actuator-h2o-kit-container .bottom{
    padding-top: .5em;
}

.actuator-h2o-kit-title{
    color: var(--color-primary);
}


.actuator-h2o-kit-container .bottom .chip{
    background-color: #fff;
    border: 1px solid var(--custom-color);
    color: var(--custom-color);
    padding: 0px 4px;
    font-weight: 600;
    font-size: .8em;
    margin: 0px 2px;
    border-radius: 10px;
    transition: all .33s ease 0s;
  }
  
  .actuator-h2o-kit-container .bottom a:hover .chip{
    /*opacity: .8;*/
    color: white;
    background-color: var(--custom-color);
    transition: all .33s ease 0s;
    cursor: pointer;
  }
  
  .actuator-h2o-kit-container .bottom .not-link.chip:hover{
    /*opacity: .8;*/
    color: white;
    background-color: var(--custom-color);
    opacity: .8;
    transition: all .33s ease 0s;
    cursor: default;
  }

  .actuator-h2o-kit-container .actuator-h2o-kit-card-inner:hover{
    border-bottom-color: #007fc1;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    transition: all .15s ease 0s;
    cursor: pointer;
    transform: scale(1.015);
  }

  .card-number{
    position: absolute;
    top: 0px;
    left: 0px;
    background: #007fc1;
    color: white;
    font-weight: 800;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: all .2s ease 0s;
  }

  
  .actuator-h2o-kit-card:nth-child(1) .card-number{
    background: #df4918;
  }

  .actuator-h2o-kit-container .actuator-h2o-kit-card:hover .card-number{
    top: -2px;
    left: -2px;
    transform: scale(1.075, 1.075);
    transition: all .2s ease 0s;
  }