@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.center{
    text-align: center;
}

* {
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

button.blue{
    font-size: 14px;
    color: #FFFFFF;
    border: #0073aa 1px solid;
    background-color: #0085ba;
    padding: 4px 12px 4px 12px !important;
    border-radius: 3px;
    height: auto !important;
    min-height: 32px;
    text-decoration: none;
    cursor: pointer;
}

.white-svg{
    filter: invert(100%);
}

table{
    border-top: 1px #d9d9d9 solid;
    border-collapse: collapse;
}

table tr > *{
    padding: .67em 1.34em .67em 0.9em;
    border-right: 1px #d9d9d9 solid;
    text-align: left;
    font-family: 'Work Sans',sans-serif;
    font-size: 1rem;
}

table tr{
    border-bottom: 1px #d9d9d9 solid;
    border-left: 1px #d9d9d9 solid;
    line-height: 1.7em;
}

table tr > th{
    color: #101218;
    line-height: 1.5;
    font-weight: 400;
}

table tr > td {
    color: #585858;
}

.product-thumbnail{
    width: 250px;
    text-align: center;
    margin-left: 1em;
    font-family: "Work Sans", sans-serif;
    text-decoration: none;
    position: relative;
    margin-bottom: 40px;
}

.product-thumbnail-picture{
    width: 100%;
    height: 310px;
    object-fit: contain;
}

.product-type{
    color: #585858;
    font-size: .8em;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: .4em;
    min-height: 1.3em;
}

.product-name{
    color: #00154f;
    font-size: 100%;
    margin-top: .3em;
    margin-bottom: .3em;
}

.product-price{
    color: rgb(88, 88, 88);
    font-size: .9em;
    font-weight: 500;
    line-height: 1.3em;
    margin-top: .3em;
    margin-bottom: 0;
}

.product-thumbnail-second-picture{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    transition: all .2s ease-in-out;
    opacity: 0;
    scale: 0.8;
    z-index: 9;
}

.product-thumbnail-second-picture:hover{
    opacity: 1;
    scale: 1.05;
}

#navbar{
    margin: 16px 15%;
    width: 70%;
    display: grid;
    background-color: #FFFFFF;
    grid-column-gap: 20px;
    align-items: center;
    grid-template-columns: auto auto;
}

#after-navbar{
    border-bottom: 1px #eaeaea solid;
    width: 100vw;
    margin: 4px 0 0 0;
}

#navbar-logo, #navbar-buttons{
    display: flex;
    flex-wrap: nowrap;
}

#navbar-buttons{
    justify-content: flex-end;
}

#navbar-buttons > a {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 2.5px;
    color: #000000;
    transition: all .3s ease;
    transform: scale(1);
    margin-left: auto;
    text-decoration: none;
    cursor: pointer;
}

#navbar-buttons > a:hover {
    transition: all .3s ease;
    transform: scale(1.2);
}

#navbar-buttons > a.selected {
    color: rgb(0, 122, 204);
}

#navbar-buttons > a.selected:hover {
    transform: scale(1);
}

#navbar-mobile{
    display: none;
}

#navbar-logo-mini{
    max-height: 64px;
}

#navbar-minicart > img, #navbar-menu{
    height: 40px;
    margin-top: 8px;
}

#navbar-menu.selected{
    transform: scale(0);
    transition: all .2s ease;
}

#navbar-menu{
    transform: scale(1);
    transition: all .2s ease;
    cursor: pointer;
}

#navbar-minicart{
    margin-left: auto;
    margin-right: 20px;
}

.widget-button.selected{
    background-color: rgb(2, 116, 190);
}

.widget-button:not(.selected){
    cursor: pointer;
    background-color: rgb(16, 18, 24);
}

.widget-button:not(.selected):hover{
    background-color: rgb(2, 116, 190);
}

.widget-button{
    overflow-y: hidden;
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    margin-top: 8px;
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
    height: fit-content;
    line-height: 1em;
    max-width: 260px;
    border: 0;
    color: #FFFFFF;
    letter-spacing: 3px;
    box-shadow: -4px 0 0 0 white, 4px 0 0 0 white;
}

.widget-button-large{
    max-width: none;
    height: 40px;
}

h3, h2{
    margin: 0 0 .5em 0;
    line-height: 1.2;
    color: #00154f;
    font-family: 'Open Sans',sans-serif;
    font-weight: 450;
}

h3{
    font-size: 1.5rem;
}

h2{
    font-size: 1.875rem;
}

.widget-input{
    line-height: 1;
    font-size: 1rem;
    padding: 10px 12px;
    border: #d9d9d9 1px solid;
    box-shadow: none;
    color: #646464;
    height: auto;
    font-family: 'Work Sans',sans-serif;
    transition: all .2s linear;
}

.widget-input:focus{
    color: #111;
    transition: all .2s linear;
    min-width: 3rem;
    text-decoration: unset;
    outline: thin dotted;
}

input[disabled=""]{
    background-color: #dbdbdb;
    cursor: not-allowed;
}