body {
    font-family: 'SVN-Arial', Arial, sans-serif; /* Regular as default */
    font-weight: 400; /* Default weight for Regular */
    font-style: normal; /* Default style for Regular */
    line-height: 1.6;
}
/* Bold text */
strong, b {
    font-weight: 700;
}

/* Italic text */
em, i {
    font-style: italic;
}

/* Bold and Italic text */
.bold-italic {
    font-weight: 700;
    font-style: italic;
}


/* a */
a {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}   

    a:focus {
        outline: none;
    }

    a:focus, a:hover {
        color: #ee2225;
        text-decoration: none;
    }
/* /a */
/* button */
.btn-w {
    position: relative;
    text-transform: uppercase;
    color: #fff;
    background-color: #ee2225;
    display: inline-block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

    .btn-w::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 0;
        background-color: rgba(0,0,0,0.1);
        transition: height 0.3s;
    }

    .btn-w:hover {
        color: #fff;
    }

        .btn-w:hover:before {
            height: 100%;
        }
/* ./button */
/* heading */
.heading {
    border-bottom: 1px solid white;
    color: #ee2225;
    font-weight: bold;
    padding-bottom: 15px;
}

.heading-1 {
    color: #ee2225;
    text-transform: uppercase;
}

.heading-2 {
    text-transform: uppercase;
}

.heading-4 {
    font-weight: bold;
}
/* ./heading */
.position-relative {
    position: relative !important;
}
/* title */
.title {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

    .title:after {
        border-bottom: 1px solid #ee2225;
        bottom: -16px;
        content: "";
        display: inline-block;
        left: 0;
        position: absolute;
        width: 100%;
    }
/* ./title */
/* headline */
.headline {
    color: #ee2225;
    text-transform: uppercase;
    margin-bottom: 10px;
}
/* headline */
/* display */
.flex {
    display: flex;
}

.flex-center {
    margin: auto;
}

.floating {
    position: absolute;
}


/* ./display */
/* card */
.card {
    background-color: white;
    border: 1px solid #edeae6;
    padding: 5px;
    -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
}

.inner {
    padding: 15px;
    overflow: hidden;
}
/* ./card */
/* widget-wrapper */
.widget-wrapper {
    position: relative;
    background: #fff;
    margin: 40px 0;
    padding: 15px;
}

    .widget-wrapper .headline {
        margin-top: 0;
    }
/* ./widget-wrapper */

.widget-heading {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    padding: 15px;
    background: #fff;
    vertical-align: middle;
}

    .widget-heading::before {
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        background-color: #ee2225;
        z-index: 0;
        margin-top: -1px;
    }

    .widget-heading .widget-heading-title {
        display: inline-block;
        background: #fff;
        padding: 0 20px;
        text-align: center;
        position: relative;
        color: #ee2225;
        font-weight: 400;
    }

/* pagination */
.large-paging {
    text-align: center;
}

.pagination > li > a, .pagination > li > span {
    color: #333;
}

    .pagination > li > a:focus,
    .pagination > li > a:hover,
    .pagination > li > span:focus,
    .pagination > li > span:hover,
    .pagination > .active > a,
    .pagination > .active > a:focus,
    .pagination > .active > a:hover,
    .pagination > .active > span,
    .pagination > .active > span:focus,
    .pagination > .active > span:hover {
        background-color: #ee2225;
        border-color: #ee2225;
        color: #fff;
    }
/* ./pagination */

/* back to top */
.back-to-top {
    background: #ee2225 !important;
}
/* ./back to top */

.product-name a, .article-name a {
    font-weight: bold;
    color: #337ab7;
}

.shopping-cart {
    height: 50px;
    text-align: center;
}

.btn-u {
    background: #ee2225;
    color: white;
}

.sign-in a:hover, .sign-in a:focus {
    color: white;
}

#toggled_content {
    position: fixed;
    background: #ee2225;
    width: 170px;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}
#toggled_content_mobile {
    position: fixed;
    background: #ee2225;
    width: 170px;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}
