/* css styles */

/********************
 * BEGIN: Style for the navigation "buttons" on the root landing page.
 ********************/

ul.product-list {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
    font-size: 0;
}

ul.product-list li {
    display: inline-block;
    background: white;
    border-radius: 15px;
    vertical-align: top;
    width: 200px;
    height: 153px;
    padding: 0;
    margin: 0 10px;
    box-shadow: 0px 1px 5px rgba(33,33,33,.2);
}

ul.product-list a {
    text-decoration: none !important;
}

ul.product-list a::after {
    content: none !important;
}

ul.product-list a:hover {
    box-shadow: 10px 10px 10px rgba(33,33,33,.2);
    background-color: #447099;
    color: white;
    text-decoration: none !important;
}

ul.product-list li {
    margin-bottom: 30px;
}

ul.product-list li img {
    width: 40px;
    height: auto;
}

.product-btn {
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    position: relative;
    border-radius: 15px;
    padding: 10px;
}

.product-btn h3 {
    /*text-transform: uppercase;*/
    font-size: 16px;
    font-weight: 500;
    color: #222b37;
    line-height: 22px;
    margin: 20px 0 0;
}

/* adapted from bootstrap for h3 position and different margin */
a.external.product-btn h3:after {
    display: inline-block;
    height: .75rem;
    width: .75rem;
    margin-bottom: .15em;
    margin-left: 0em;
    content: "";
    vertical-align: -0.125em;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(39, 128, 227)" class="bi bi-box-arrow-up-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z"/><path fill-rule="evenodd" d="M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z"/></svg>');
    background-repeat: no-repeat;
    background-size:.75rem .75rem
}

a.external.product-btn:hover h3:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(255, 255, 255)" class="bi bi-box-arrow-up-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z"/><path fill-rule="evenodd" d="M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z"/></svg>');
}

.product-btn:hover h3 {
    /*text-transform: uppercase;*/
    font-size: 16px;
    color: #fff !important;
    line-height: 22px;
    margin: 20px 0 0;
}

.aligner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 24em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.aligner-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.aligner-item--fixed {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    max-width: 100%;
}

/********************
 * END: Style for the navigation "buttons" on the root landing page.
 ********************/
