/* style/base-structure/vars.css */
:root {
    --default: #fff;
    --light-blue: #99d9ed;
    --base-blue: #74a5d5;
    --dark-blue: #0057b8;
    --lime: #B5E61D;
    --red: #FF0000;
    --green: #00CC00;
    --bg-header-url: url('../../icons/main/bg-header.png');
    --bg-default-url: url('../../icons/main/background.png');
    --bg-nav-arrow-left: url('../../icons/arrows/arrow-left.png');
    --bg-nav-arrow-right: url('../../icons/arrows/arrow-right.png');
    --bg-nav-arrow-up: url('../../icons/arrows/arrow-up.png');
    --bg-nav-arrow-down: url('../../icons/arrows/arrow-down.png');
    --borger-thin-base-blue: 1px solid var(--base-blue);    
    --borger-thin-dark-blue: 1px solid var(--dark-blue);
    --borger-thin-lime: 1px solid var(--lime);
    --borger-middle-base-blue: 2px solid var(--base-blue); 
    --borger-middle-dark-blue: 2px solid var(--dark-blue); 
    --borger-bold-base-blue: 3px solid var(--base-blue);
    --borger-bold-dark-blue: 3px solid var(--dark-blue);
    --borger-bold-lime: 3px solid var(--lime);
}
/* style/base-structure/main.css */
* {
    text-align: center;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    min-height: 375px;
}

header {
    position: absolute;
    width: 100%;
    height: 60px;
    min-width: 350px;
}

main {
    box-sizing: border-box;
    padding-top: 65px;
    height: 100%;
    min-width: 350px;
}

main>div {
    height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.link {
    color: var(--dark-blue);
}

.hidden {
    display: none;
}

@media screen and (min-width: 901px) {
    .m-only {
        display: none !important;
    }
}

@media screen and (max-width: 900px) {
    .m-hidden {
        display: none !important;
    }
}
/* style/base-structure/scrollbar.css */
::-webkit-scrollbar {
    width: 9px;
    height: 6px;
}

::-webkit-scrollbar-track-piece {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: var(--light-blue);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--base-blue);
}
/* style/base-structure/header.css */
.header {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.header>div {
    background-image: var(--bg-header-url);
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    color: white;
}

.header>div>div {
    display: inline-block;
    vertical-align: top;
}

.header-logo {
    margin-top: -10px;
    width: 250px;
}

.header-icon {
    width: 60px;
    height: 40px;
}

.header-icon img {
    border: var(--borger-bold-base-blue);
    border-radius: 5%;
    height: 40px;
}

.header-icon img:hover {
    border: var(--borger-bold-dark-blue);
    cursor: pointer;
}

.header-icon img:hover:active {
    border: var(--borger-bold-lime);
    cursor: pointer;
}

.header-left {
    position: absolute;
    left: 20px;
}

.header-right {
    position: absolute;
    right: 20px;
}

.in-cart-number {
    display: inline-block;
    background-color: var(--lime);
    color: var(--dark-blue);
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: relative;
    top: -20px;
    left: 20px;
}

.in-cart-number.empty-cart {
    display: none;
}

@media screen and (max-width: 900px) {
    .header-logo {
        margin-top: 0px;
        height: 50px;
        width: auto;
    }

    .header-icon {
        z-index: 5;
    }
 }
/* style/base-structure/nav-arrows.css */
.nav-arrow {
    border: var(--borger-thin-base-blue);
    background-size: 100%;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 38px;
    height: 38px;
    cursor: pointer;
    user-select: none;
}

.nav-arrow:hover {
    border: var(--borger-thin-dark-blue);
}

.nav-arrow:active {
    border: var(--borger-thin-lime);
}

.nav-left {
    background-image: var(--bg-nav-arrow-left);
}

.nav-right {
    background-image: var(--bg-nav-arrow-right);
}

.nav-up {
    background-image: var(--bg-nav-arrow-up);
}

.nav-down {
    background-image: var(--bg-nav-arrow-down);
}
/* style/base-structure/buttons.css */
.button {
    color: var(--default);
    background-color: var(--dark-blue);
    border: var(--borger-thin-base-blue);
    border-bottom: var(--borger-middle-base-blue);
    display: inline-block;
    padding: 4px;
    padding-top: 5px;
    text-align: center;
    width: 135px;
    cursor: pointer;
    user-select: none;
}

.button:hover {
    background-color: var(--base-blue);
    border: var(--borger-thin-dark-blue);
    border-bottom: var(--borger-middle-dark-blue);
}

.button:hover:active {
    background-color: var(--lime);
}

.inactive-button {
    color: var(--dark-blue);
    border: var(--borger-middle-base-blue);
    display: inline-block;
    padding: 4px;
    text-align: center;
    width: 135px;
    user-select: none;
    font-weight: bold;
}
/* style/menu/menu.css */
.menu {
    display: inline-block;
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0px;
    padding-top: 65px;
    box-sizing: border-box;
    font-size: 1.2em;
    font-family: 'Arial';
}

.menu.opened {
    display: initial;
}

.menu>div {
    height: 100%;
    padding: 10px;
    padding-top: 0;
    box-sizing: border-box;
}

.menu nav {
    border-right: var(--borger-bold-base-blue);
    height: 100%;
}

@media screen and (max-width: 900px) {
    .menu {
        display: none;
        width: 100%;
    }

    .menu>div {
        background-color: var(--default);
        width: 300px;
        position: relative;
        z-index: 10;
    }

    .menu-background {
        position: absolute;
        top: 65px;
        bottom: 0;
        background-color: var(--base-blue);
        width: 100%;
        opacity: 0.75;
        z-index: 5;
        cursor: pointer;
    }
}

@media screen and (max-height: 375px) {
    .menu.opened {
        height: 375px;
    }
}
/* style/menu/menu-list.css */
.menu-list {
    padding-right: 10px;
}

.menu-item {
    border-bottom: var(--borger-bold-base-blue);
    display: block;
    text-align: left;
    height: 45px;
    padding: 15px 0 5px 15px;
    box-sizing: border-box;    
}

.menu-item.selected {
    background-color: var(--light-blue);
}

.menu-item:hover, .menu-item.selected:hover {
    background-color: var(--base-blue);
}

.menu-item:hover:active, .menu-item.selected:hover:active {
    background-color: var(--lime);
}
/* style/menu/cart.css */
.cart {
    border-bottom: var(--borger-bold-base-blue);
    text-align: left;
    margin-top: 40px;
    margin-right: 15px;
    padding-bottom: 5px;
}

.cart:hover {
    background-color: var(--light-blue);
}

.cart:hover:active {
    background-color: var(--lime);
}

.cart img {
    border: var(--borger-bold-base-blue);
    position: relative;
    top: 10px;
    border-radius: 5%;
    height: 40px;
    margin-right: 10px;
    vertical-align: bottom;
}

.cart:hover img {
    border: var(--borger-bold-dark-blue);
}

.cart:hover:active img {
    border: var(--borger-bold-lime);    
}
/* style/menu/footer.css */
.menu-footer {
    position: absolute;
    bottom: 15px;
    width: 270px;
}

.language {
    border-bottom: var(--borger-bold-base-blue);
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.language .button,.language .inactive-button {
    width: 110px;
    font-size: 0.9em;
}

.language img {
    height: 14px;
}

.our-email a:hover {    
    color: var(--dark-blue);
}
/* style/toolbar/top-toolbar.css */
.top-toolbar {
    border-bottom: var(--borger-bold-base-blue);
    height: 40px;
    padding-top: 4px;
    box-sizing: border-box;
}

@media screen and (max-width: 690px) {
    .top-toolbar {
        padding-right: 10px;
    }
}
/* style/base-structure/info-block.css */
.info-block {
    border: var(--borger-bold-base-blue);
    background-color: var(--default); 
    height: 460px;
    width: 310px;
    overflow-y: hidden;
    display: inline-block;
    border-radius: 3%;
    vertical-align: top;
    margin-bottom: 5px;
    padding-right: 3px;
    font-size: 1.1em;
}

.info-block p {
    padding-left: 3px;
    text-align: left;
}

.info-block-header {
    border-bottom: var(--borger-bold-base-blue); 
    height: 24px;
    text-align: left;
    font-size: 1.2em;
    padding: 15px 0 5px 10px;
    margin-bottom: 3px;
    user-select: none;
}

.info-block-header:hover {
    background-color: var(--light-blue);
    cursor: pointer;
}

.info-block-body {
    padding-left: 8px;
    padding-right: 8px;
    height: 415px;
    overflow-y: auto;
}

@media screen and (max-width: 690px) {
    .info-block {
        width: 320px;
    }
}
/* style/base-structure/info-section.css */
.info-section {
    border-bottom: var(--borger-middle-base-blue);
    padding-top: 10px;
    padding-bottom: 10px;
}

.info-title {
    color: var(--dark-blue);
    font-weight: bold;
    font-size: 1.1em;
}

.info-value {
    color: var(--dark-blue);
    font-weight: bold;
    font-size: 0.95em;
}

.multi-line span {
    vertical-align: top;
}

.multi-line .info-value {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    max-width: 70%;
}

.multi-line .info-value.max-width-60 {
    max-width: 60%;
}

.multi-line .info-value.max-width-80 {
    max-width: 80%;
}

@media screen and (max-width: 690px) {
    .item-info {
        width: 320px;
    }
}
/* style/base-structure/info-block-nav.css */
.vertical-block-nav {
    position: absolute;
    bottom: 30px;
    right: 25px;
    width: 40px;
}

.horizontal-block-nav {
    position: absolute;
    top: 535px;
    right: 25px;   
}

@media screen and (max-width: 350px) {
    .vertical-block-nav {
        left: 295px;
    }
}

@media screen and (max-height: 600px) {
    .horizontal-block-nav {
        display: none;
    }
}
/* style/item/item.css */
.content {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0 10px 10px 300px;
    box-sizing: border-box;
    font-family: 'Arial';
}

.item {
    border-top: var(--borger-bold-base-blue);
    border-bottom: var(--borger-bold-base-blue);
    height: 100%;
    box-sizing: border-box;
    overflow-y: hidden;
}

.container {
    background-image: var(--bg-default-url);
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding-top: 8px;
    padding-bottom: 40px;
    text-align: left;
}

@media screen and (min-width: 900px) {
    .info-panel {   
        text-align: left;
        width: 100%;
        overflow-x: scroll;
    }

    .info-group {
        width: 1310px;
        text-align: left;
    }
}

@media screen and (max-width: 900px) {
    .content {
        padding-left: 10px;
    }
}

@media screen and (max-width: 690px) {
    .container {
        text-align: center;
    }
}
/* style/payment-and-shipping/how-to-order.css */
.next-option {
    margin-top: 8px;
}

.info-section {
    padding-top: 9px;
    padding-bottom: 8px;
}

.info-section a {
    display: inline-block;
    width: 48%;
}

div.how-to-order p {
    text-align: justify;
    margin-bottom: 10px;
}

.payment-logo {
    width: 120px;
}

.info-attention {
    color: var(--dark-blue);
    display: inline-block;
    text-align: justify;
    font-weight: bold;
    font-size: 0.75em;
}
/* style/gallery/item-gallery.css */
.item-gallery {
    width: 320px;
}

.item-main-image {
    min-height: 230px;
}

.item-main-image img {
    box-sizing: border-box;
    width: 300px;
}

.item-main-image img:hover {
    border: var(--borger-bold-base-blue);
    cursor: pointer;
}

.item-gallery-list {
    border-top: var(--borger-middle-base-blue); 
    text-align: left;
    padding-top: 5px;
    padding-left: 2px;
}

.item-gallery-list img {
    box-sizing: border-box;
    width: 71px;
    vertical-align: middle;
    margin-right: 4px;
}

.item-gallery-list span {
    display: inline-block;
}

.item-gallery-list span:hover {
    cursor: pointer;
}

.item-gallery-list span:hover img {
    border: var(--borger-middle-base-blue);
    cursor: pointer;
    border-radius: 5px;
}

img.selected {
    border: var(--borger-bold-base-blue);
    border-radius: 5px;
}
/* style/gallery/full-image-gallery.css */
.full-view, .full-view>div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 350px;
    min-height: 350px;
    z-index: 10;
    cursor: pointer;
}

.full-view .nav-arrow {
    top: -50px;
}

.full-view-background {
    background-color: var(--base-blue);
    opacity: 0.5;
}

.full-image {
    margin-top: 4%;
    max-width: 88%;
    max-height: 88%;
}
