* {
    box-sizing: border-box;
}

a {
    outline: 0;
}

.default_button {
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 1px 0 0;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 1px 0 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 0 0;
    background-color: lightgray;
    border: 1px solid gray;
    font-size: 12px;
    font-weight: bold;
    color: black;
    padding: 4px;
    text-decoration: none;
}

body {
    background: white;
    color: black;
    font-size: 16px;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    position: relative;
    overflow-y: scroll;
}

h1 {
    font-size: 20px;
    margin-bottom: 1em;
    margin-top: 0;
}

h2:first-child {
    padding-top: 0;
    margin-top: 0;
}

p {
    margin-bottom: 1.5em;
    margin-top: 0;
}

img {
    width: 100%;
}

input, textarea {
    display: block;
    margin: 0;
    font-family: sans-serif;
    font-size: 16px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    padding: 5px;
    border: solid 1px lightgray;
    transition: box-shadow 0.3s, border 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border: solid 1px gray;
    box-shadow: 0 0 5px 1px lightblue;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

.content a {
    font-weight: bold;
    color: black;
}

.content {
    z-index: 0;
    position: relative;
    padding-bottom: 40px;
    top: 40px;
}

.content h1.invisible_headline {
    display: none;
}

.content h1 {
    color: grey;
    text-transform: uppercase;
}

.content h1:before, .content h1:after {
    content: '';
}

#head {
    padding-top: 10px;
    background: white;
    width: 100%;
    z-index: 10;
    position: relative;
}

#head h1 {
    font-size: 33px;
    margin: 0.5em 0 0;
}

#head h2 {
    color: gray; 
    font-size: 17px; 
    margin-bottom: 1.3em; 
    margin-top: 0.2em;
}

#links {
    background: black;
    min-width: 100% !important;
    border-bottom: 2px white solid;
    font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
    color: white;
}

#links a {
    color: white;
    font-size: 15px;
    font-weight: bold;
    margin-right: 32px;
    text-decoration: none;
    text-transform: uppercase;
    background: black;
    line-height: 65px;
    padding: 20px 0;
}

#links.stick a {
    padding: 12px 0;
}

#links a.active {
    font-weight: bold;
    color: #b0e0e4;
}
    
#mobile_menu_bar {
    display: none;
}

#cart_menu_bar {
    background: black none repeat scroll 0 0;
    border-left: 1px solid gray;
    float: right;
    padding-left: 15px;
    position: relative;
    cursor: pointer;
}

.cart_qtip {
    font-size: 15px !important;
}

#amount_container {
    padding-right: 10px;
}

.centered_800_px {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

#video_dummy {
    cursor: pointer;
}

.video_container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video_iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.amount_input {
    width: 2em;
    text-align: center;
}

.catalog_item {
    border-bottom: 1px gray dotted;
    border-top: 1px gray dotted;
    margin: 15px 0;
    padding: 15px 0;
}

.catalog_item__content{
    float: left;
    width: 75%;
}

.catalog_item__img {
    width: 18%;
    margin-right: 2%;
    float: left;
}

.catalog_item__descr {
    font-weight: bold;
}

.catalog_item__art_nr {
    font-size: 0.8em;
}

.catalog_item__descr_long {
    float: left;
    padding-top: 15px;
    width: 100%;
}

.catalog_item__detail_link {
    float: left;
    width: 100%;
    margin: 10px 0;
}

.catalog_item__amount {
    margin-top: 15px;
    float: left;
}

.catalog_item__amount .amount_input {
    display: inline-block;
}

.catalog_item__amount .catalog_item_add_btn {
    display: inline-block;
    float: right;
}


.infobox {
    background-color: #f0f0f0;
    box-shadow: 0 0 4px 0 lightgray;
    margin-bottom: 25px;
    padding: 10px;
}

.cart_item {
    border-bottom: 1px gray dotted;
    border-top: 1px gray dotted;
    margin: 15px 0;
    padding: 15px 0;
}

.cart_item__delete {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    color: red;
    float: left;
    font-size: 30px;
    font-weight: bold;
    margin-right: 15px;
}

.cart_item__amount {
    float: right;
}

.cart_item__content {
    float: left;
    width: 65%;
}

.cart_item__img {
    width: 15%;
    margin-right: 2%;
    float: left;
}

.cart_item__descr {
    font-weight: bold;
}

.cart_item__art_nr {
    font-size: 0.8em;
}

.cart_submit_form_row {
    padding: 15px 0;
}

#cart_submit_form label {
    width: 30%;
    min-width: 50px;
    float: left;
    white-space: nowrap;
}

#cart_submit_form input, #cart_submit_form select, #cart_submit_form textarea {
    width: 70%;
    min-width: 50px;
    float: left;
}

.cart_submit_form__submit_btn {
    margin: 20px 0;
    float: right;
}

.g-recaptcha {
    float: right;
    width: 100%;
}

.g-recaptcha div {
    float: right;
}

.g-recaptcha div div {
    float: right;
}

.user_info_box {
    border-left: 5px solid green;
    margin-bottom: 10px;
    color: white;
    padding: 12px;
    font-family: 'Ubuntu', Arial, helvetica, sans-serif;
    border-left: 5px solid;
}

.user_info_box__descr__link {
    color: white !important;
    text-decoration: none;
    white-space: nowrap;
}

.user_info_box.success {
    background-color: #008000;
    border-color: #004e00;
}

.close_info {
    font-weight: bold;
    cursor: pointer;
    float: right;
}


/* sticky stuff */
#links.stick {
    margin-top: 0 !important;
    position: fixed;
    top: 0;
    z-index: 10000;
}

#links.stick a {
    line-height: 45px;
}

#link_wrapper {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

#link_wrapper li {
    display: inline;
}

/* mobile stuff */
@media only screen and (max-width: 730px) {
    #links a {
        display: block;
        padding: 0 15px;
        line-height: 45px;
        text-align: center;
        margin-right: 8px;
    }
    
    #links li:not(:last-child) {
        border-bottom: 1px gray solid;
    }
    
    #link_container {
        display: none;
    }
    
    #link_wrapper {
        display: inline-block;
    }

    #link_wrapper li {
        display: block;
    }
    
    #links.stick a {
        padding: 0 15px;
    }

    #mobile_menu_bar {
        display: inline-block;
    }
    
    #links.menu_open #cart_menu_bar{
        border-bottom: 1px solid gray;
        border-right: 1px solid gray;
    }
    
    #cart_menu_bar a {
        display: inline-block;
    }

    .cart_item__img {
        display: none;
    }

    #cart_submit_form input, #cart_submit_form select, #cart_submit_form textarea  {
        width: 100%;
    }
}


@media only screen and (min-width: 730px) {
    #link_container {
        display: inline-block !important;
    }
}


@media only screen and (max-width: 350px) {
    #links.menu_open #cart_menu_bar {
        display: none;
    }
}


/* fonticon stuff */
@font-face {
    font-family: 'icomoon';
    src:    url('fonts/icomoon.eot?ittijh');
    src:    url('fonts/icomoon.eot?ittijh#iefix') format('embedded-opentype'),
        url('fonts/icomoon.ttf?ittijh') format('truetype'),
        url('fonts/icomoon.woff?ittijh') format('woff'),
        url('fonts/icomoon.svg?ittijh#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-bars:before {
    content: "\e901";
    line-height: 38px;
    font-size: 16px;
    padding: 0 10px;
}
.icon-cart:before {
    content: "\e900";
}

#footer {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 20px;
    opacity: 0.4;
    font-style: italic;
}

#footer a {
    font-weight: bold;
    color: black;
}

.lang-switch-wrapper {
	float: right;
	text-align: right;
}

.lang-switch-wrapper a {
	color: black;
}