/*      APPLICATION CARDS START       */

.application-card-block-img {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
 
.application-card-block-img {
    display: grid;
    place-items: center;
    height: 100px;
}
 
.application-card-block-img img {
    max-height: 100px;
    min-height: 100px;
    height: 100%;
}
 
.application-card-block-title {
    font-weight: bold;
    height: 50px;
    color: #03234b;
    text-align: center;
}
 
.application-cards-container {
    display: flex;
    flex-wrap: wrap;
}
 
.application-card-block-list ul li::before {
    display: none;
}
 
.application-card-block-list ul li {
    padding-left: 0;
    font-size: 14px;
}
 
.application-card-block-list {
    text-align: center;
}

/*      
    APPLICATION CARDS END       
*/

/*
    PRODUCT TYPES CARDS START
*/
 
.product-types-card, .product-types-card-inactive {
    display: flex;
    margin-top: 25px;
    transition: all .3s ease;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}
.product-types-card:hover {
    border-color: rgba(2, 171, 245, .4);
    -webkit-box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    outline: 0;
    cursor: pointer;
}
.product-types-card-inactive:hover {
    cursor: inherit;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    border-color: inherit;
}  
  
.product-types-card-left {
    background-color: #03243b;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: grid;
    place-items: center;
    text-align: center;
    min-width: 210px;
}
  
.product-types-card-right {
    padding: 10px;
    padding-left: 20px;
    width: 100%;
}
  
.product-types-card-title {
    font-weight: bold;
}
 
.product-types-card-description {
    color: #74757c;
}
  
.product-types-card-cta {
    float: right;
    margin-right: 30px;
    margin-top: 10px;
}
  
.st-link .st-link__icon--arrow-small,
a .st-link__icon--arrow-small {
    width: 6px;
    height: 15px;
}
  
@media only screen and (max-width: 600px) {
  .product-types-card {
    display: grid;
  }
}
 
/*
    PRODUCT TYPES CARDS END
*/




table thead tr td {
    font-size: 12px;
    color: #74757c;
}

table {
    border-top: 1px solid #03234b;
}