﻿/* Header */
.header-cart-wrapper { position: relative; }
.header-cart-wrapper > a { display: inline-block; }
.header-cart-wrapper > a > svg { fill: #FFF; height: 28px; transition: .3s ease-in-out; }
.header-cart-items-counter { position: absolute; right: -7px; top: -6px; background: var(--secondary-color); color: #FFF; width: 15px; height: 15px; display: flex; justify-content: center; align-items: center; border-radius: 50%; font-size: 0.8rem; }

header > div:last-child .header-cart-wrapper[data-cart="true"] > a { cursor: default; }

.header-dx .header-cart-wrapper { display: none; }

@media (pointer:fine) {
    .header-cart-wrapper > a:hover svg { filter: drop-shadow(0 0 1px #FFF); }
}

@media (max-width:1023px) {
    .header-dx .header-cart-wrapper { display: block; }
}

@media (max-width:1023px) {
    .header-cart-wrapper > a > svg { height: 26px; }
}

@media (max-width:480px) {
    .header-cart-wrapper { display: none; }
}
