/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-size: 100%;*/
    /*font: inherit;*/
    /*vertical-align: baseline;*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    /*line-height: 1;*/
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
a{
    text-decoration: none;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.full-width{
    width:100%;
}

.error{
    color: red;
}

.clear-both{
    clear: both;
}

.float-left{
    float: left;
}
.float-right{
    float: right;
}

.wrapper-content{
    background-color: white;
    /*padding: 16px;*/
}
.wrapper-content .title{
    margin-bottom: 16px;
}

.list-item{
    padding: 12px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.list-item__wrapper_img{
    width: 48px;
}
.list-item__img{
    width: 40px;
    /*padding-right: 8px;*/
    height: 40px;
    min-height: 40px;
    object-fit: cover;
    object-position: center; /* Center the image within the element */
}
.list-item__title--normal{
    font-size: 13px;
}

.list-item__title--large{
    font-size: 16px;
}

.list-item__title--bold{
    font-weight: bold;
}

.list-item:hover{
    background-color: #E8EBF0;
    transition-duration: .28s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-property: background-color
}
.list-item .action-box{
    visibility: hidden;
}
.list-item:hover .action-box{
    visibility: visible;
}
.list-item__noborder{
    border-bottom: none;
}

.list-item__uppercase{
    text-transform: uppercase;
}

.list-item__title{
    color: #4e92e2;
    margin: auto;
    width: 280px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
}
.list-item__active{
    color: #4e92e2;
    border-radius: 5px;
    background-color: #e8f0fe;
}

.header-action{
    padding: 8px 0;
}


.dropbtn {
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 12px;
    border-radius: 6px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown .selected{
    display: block;
}
.line-through{
    text-decoration: line-through;
}

.current-price{
    color: #0288d1;
    font-size: 16px;
    font-weight: 700;
}

.button:hover{
    color: rgba(209,209,209,1);
}

.button__icon{
    padding-right: 8px;
}

.selectfield{
    border: none;
    display: block;
    padding: 4px 0;
    background-color: transparent;
    font-size: 14px;
    margin-left: -4px;
}

.grayColor{
    color: #797979;
}

.selectfield option{
    font-size: 14px;
}

/* Style the list */
ul.breadcrumb {
    padding: 10px 8px;
    list-style: none;
    /*background-color: #eee;*/
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 12px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}
