/*-------------------------------------------------------------
                        CSS Table Of Contents:
---------------------------------------------------------------

1. GENERAL

2. EFFECTS
    [Image Effects]
    [Section Effects]

3. LAYOUT
    [Section]
    [Breadcrumb Header]

4. UTILITIES
    [Border]
    [Color]
    [List]

5. COMPONENTS
    [Button]
    [Icon]
    [Footer]
    [Go Top Button]
    [Main Carousel]
    [Pagination]
    [Preloader]
    [Separator]
    [Share Bar]

6. PLUGIN SETTINGS
    [Owl Custom Style]

7. THEME SPECIFIC COMPONENTS
    [Blog]
    [Cart]
    [Discount Badge]
    [Login]
    [Product]


/*---------------------------------------------------------------------------------------
1. GENERAL
---------------------------------------------------------------------------------------*/

html {
    font-size: 14px;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #949494;
    padding: 0;
    margin: 0;
}

ol,
p,
ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    border: none;
}

a {
    color: #757575;
    text-decoration: none;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

a:active,
a:hover {
    color: #000000;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #17161b;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #17161b;
}

p {
    line-height: 24px;
    margin-bottom: 24px;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    font-weight: 700;
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
    font-weight: 600;
}

@media (max-width: 575px) {
    html {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .display-4 {
        font-size: 3rem;
    }
}

pre {
    font-size: 100%;
    margin: 0;
    padding: 0;
}

pre code {
    display: block;
    background: #eeeeee;
    color: #434343;
    font-size: 15px;
    font-weight: 400;
    font-family: "Courier New", Courier, monospace;
}


/*---------------------------------------------------------------------------------------
2. EFFECTS
---------------------------------------------------------------------------------------*/


/*------------------------- [Image Effects] -------------------------*/

.img-fx {
    position: relative;
    overflow: hidden;
    display: block;
}

.img-fx img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}


/*  image zoom  */

.img-fx.img-zoom-sm img {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
}

.img-fx.img-zoom-sm:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/*  image zoom  */

.img-fx.img-zoom img {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
}

.img-fx.img-zoom:hover img {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}


/*  image overlay  */

.img-fx.img-overlay::after {
    content: "";
    background-color: black;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.img-fx.img-overlay:hover::after {
    opacity: 0.4;
}


/* image side pan */

.img-fx.img-side-pan:hover img {
    margin-left: -11%;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}


/* image sepia */

.img-fx.img-sepia img {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
}

.img-fx.img-sepia:hover img {
    -webkit-filter: sepia(0);
    filter: sepia(0);
}


/*------------------------- [Section Effects] -------------------------*/


/*  section overlay */

.overlay-black {
    position: relative;
}

.overlay-black::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
}

.overlay-black .container,
.overlay-black .container-fluid,
.overlay-black .content-switch {
    position: relative;
    z-index: 1;
}


/* section parallax background */

.section-bg-fix {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 992px) {
    .section-bg-fix {
        background-attachment: scroll;
    }
}


/*---------------------------------------------------------------------------------------
3. LAYOUT
---------------------------------------------------------------------------------------*/


/*------------------------- [Section] -------------------------*/

.section {
    padding-top: 70px;
    padding-bottom: 40px;
}

@media screen and (max-width: 992px) {
    .section {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}

.section-header {
    padding-bottom: 16px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .section-header p {
        margin-left: 100px;
        margin-right: 100px;
    }
}


/*------------------------- [Breadcrumb Header] -------------------------*/

.breadcrumb-header {
    padding-top: 40px;
    padding-bottom: 16px;
    background: rgba(0, 0, 0, 0) url('../img/bg/breadcrumb-bg.jpg') no-repeat scroll 50% 0 / cover;
    /*min-height: 300px; RZ 10.2.21 zur verringerung des Abstandes im Header*/
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .breadcrumb-header {
        padding-top: 30px;
        min-height: 150px;
    }
}

.breadcrumb-header .breadcrumb {
    background-color: transparent;
    padding-left: 0;
}

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a {
    color: inherit;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}


/*---------------------------------------------------------------------------------------
4. UTILITIES
---------------------------------------------------------------------------------------*/


/*------------------------- [Border] -------------------------*/

.border-md {
    border: 2px solid #dee2e6;
}

.border-lg {
    border: 4px solid #dee2e6;
}


/*------------------------- [Color] -------------------------*/

.bg-fb {
    background-color: #4867AA;
}

.bg-tw {
    background-color: #1DA1F2;
}

.bg-pin {
    background-color: #ce1f21;
}

.text-fb {
    color: #4867AA;
}

.text-tw {
    color: #1DA1F2;
}

.text-pin {
    color: #ce1f21;
}


/*------------------------- [List] -------------------------*/

.list {
    list-style-type: disc;
    margin: 0 0 10px 25px;
}


/*------------------------- [Spacing] -------------------------*/

.flex-basis-10 {
    flex-basis: 10%;
}

.flex-basis-25 {
    flex-basis: 25%;
}

.flex-basis-50 {
    flex-basis: 50%;
}

.flex-basis-75 {
    flex-basis: 75%;
}

@media screen and (max-width: 992px) {
    [class*="flex-basis"] {
        flex-basis: auto;
    }
}


/*---------------------------------------------------------------------------------------
5. COMPONENTS
---------------------------------------------------------------------------------------*/


/*------------------------- [Button] -------------------------*/

.btn-solid {
    background-color: #fff;
    border-color: #ccc;
}

.btn-rounded {
    border-radius: 999px;
}


/*------------------------- [Icon] -------------------------*/

.icon {
    float: left;
    text-align: center;
    font-size: 20px;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}


/*------------------------- [Footer] -------------------------*/

footer {
    background-color: #c4caca;
    padding: 30px 0 10px;
}

.footer-menu h5 {
    color: white;
}

.footer-menu a,
.footer-menu a:visited {
    font-weight: 600;
    margin-left: 5px;
}

.footer-menu a:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 768px) {
    footer {
        padding-top: 0;
    }
    .footer-menu {
        padding-top: 30px;
    }
}

.footer-social li {
    display: inline-block;
}

.footer-social a {
    display: block;
    color: white;
    font-size: 24px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 34px;
    margin: 30px 10px 5px;
}


/*-------------------------  [Go Top Button] -------------------------*/

#goTop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
    opacity: 0.5;
    padding: 0;
    line-height: 49px;
    font-size: 20px;
    text-align: center;
    color: #e65100;
    border: 1px solid #e65100;
    border-radius: 50%;
    background-color: #222222;
    z-index: 10;
}

#goTop:hover {
    opacity: 0.85;
}


/*------------------------- [Main Carousel] -------------------------*/

#mainCarousel .item {
    height: 600px;
    background-size: cover;
    background-position: top center;
}


/* captions */

#mainCarousel .owl-caption-container {
    height: 100%;
}

#mainCarousel .owl-caption-data>* {
    margin: 1rem auto;
    max-width: 500px;
}


/* navigation */

#mainCarousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* mobile settings */

@media (max-width: 575px) {
    #mainCarousel .item {
        height: 400px;
    }
    #mainCarousel .owl-nav {
        display: none;
    }
}


/*------------------------- [Pagination] -------------------------*/

.page-link {
    color: #222;
    border-color: #222;
    line-height: 25px;
}

.page-link:hover {
    color: #222;
    border-color: #222;
}

.page-item.active .page-link {
    background-color: #cd201f;
    border-color: #222;
}

.page-item.disabled .page-link {
    border-color: #222;
}


/*-------------------------  [Preloader] -------------------------*/

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    opacity: 1;
    z-index: 9999;
}


/*------------------------- [Separator] -------------------------*/

div[class^="sep-"] {
    position: relative;
    display: inline-block;
    height: 3px;
    margin-bottom: 10px;
}

.sep-xs {
    width: 30px;
}

.sep-sm {
    width: 60px;
}


/*------------------------- [Share Bar] -------------------------*/

.share-bar li {
    display: inline-block;
}

.share-bar a {
    display: block;
    text-align: center;
    min-width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
}

.share-facebook {
    color: #4867AA;
}

.share-facebook:hover {
    color: #fff;
    background-color: #4867AA;
}

.share-twitter {
    color: #1DA1F2;
}

.share-twitter:hover {
    color: #fff;
    background-color: #1DA1F2;
}

.share-pinterest {
    color: #ce1f21;
}

.share-pinterest:hover {
    color: #fff;
    background-color: #ce1f21;
}


/*---------------------------------------------------------------------------------------
6. PLUGIN SETTINGS
---------------------------------------------------------------------------------------*/


/*------------------------- [Owl Custom Style] -------------------------*/


/* Nav Verically Centered */

.owl-nav-center .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2.5rem;
    margin: 0;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.owl-nav-center .owl-nav .owl-prev {
    position: absolute;
    left: 10px;
    color: #414141;
    margin: 0;
    pointer-events: auto;
}

.owl-nav-center .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    color: #414141;
    margin: 0;
    pointer-events: auto;
}

.owl-nav-center .owl-nav i {
    font-size: 2.5rem;
}


/* Hash Thumbnails Style */

.owl-thumbnail.active {
    border-color: #222;
    box-shadow: 0 0 5px #222;
}


/* Responsive Navbar Slides */

@media screen and (min-width: 992px) {
    .owl-navbar-slides {
        width: 200px;
    }
}


/*---------------------------------------------------------------------------------------
7. THEME SPECIFIC COMPONENTS
---------------------------------------------------------------------------------------*/


/*------------------------- [Blog] -------------------------*/

.blog-post {
    margin: .5rem;
}

.blog-meta {
    font-weight: bold;
    margin-bottom: .75rem;
}

.blog-meta li {
    display: inline-block;
}

.blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    color: white;
    width: 80px;
    text-align: center;
    text-transform: uppercase;
    background-color: #cd201f;
}

.blog-date strong {
    position: relative;
    display: block;
    padding: 10px 5px 5px;
}

.blog-date strong::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 1px;
    margin-left: -10px;
    background-color: white;
}

.blog-date span {
    display: block;
    font-size: 16px;
    padding: 5px 5px 10px;
}

.blog-author::after {
    content: "/";
    margin: 0 .5rem;
    font-weight: normal;
    opacity: 0.5;
}

.blog-link {
    font-size: 16px;
}

.blog-comments img {
    width: 50px;
    border-radius: 50%;
}


/* Blogs Filters */

.blogs-filter {
    padding: 15px;
    margin-bottom: 30px;
}

.blogs-filter .blogs-tags li a {
    display: block;
    font-weight: bold;
    margin: 5px;
    padding: 3px;
    border: 1px solid #ccc;
}


/*------------------------- [Cart] -------------------------*/

.cart-table thead {
    color: white;
    background-color: #222;
}

.cart-table img {
    display: block;
}

.cart-total {
    color: #000;
    width: 400px;
    padding: 0 15px;
}

.cart-total2 {
    color: #000;
    width: 600px;
    padding: 0 15px;
}

.cart-total .row {
    border-bottom: 1px solid #ccc;
}

.cart-total .row:last-child {
    border-bottom: none;
}

@media (max-width: 575px) {
    .cart-table img {
        margin: auto;
    }
    .cart-table tr th:nth-child(1),
    .cart-table img+p {
        text-align: center !important;
    }
    .cart-table tr th:nth-child(2),
    .cart-table tr td:nth-child(2) {
        display: none;
    }
    .cart-total {
        width: 180px;
    }
}


/*------------------------- [Discount Badge] -------------------------*/

div[class^="discount-badge"] {
    color: #fff;
    font-weight: 600;
}

div[class^="discount-badge"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    background: transparent;
    border-width: 40px;
    border-style: solid;
}

.discount-badge-red::before {
    border-color: #cd201f transparent transparent #cd201f;
}

.discount-badge-yellow::before {
    border-color: #e3a51e transparent transparent #e3a51e;
}

.discount-badge-blue::before {
    border-color: #1e5ce3 transparent transparent #1e5ce3;
}

div[class^="discount-badge"] span {
    position: absolute;
    display: block;
    top: 13px;
    left: 10px;
}


/*------------------------- [Login] -------------------------*/

.login-form {
    max-width: 380px;
    margin: auto;
    padding: 2.5rem 1.5rem 0;
}

.login-form label {
    font-weight: bold;
}


/*------------------------- [Product] -------------------------*/

.product {
    border: 1px solid #3567a8;
    border-radius: 18px;
    padding: 20px 15px 30px 15px;
    margin: 10px 0;
    text-align: center;
/*    overflow: hidden; ausgeklammert, damit die News komplett angezeigt werden. RZ 21.6.21*/
}

@media screen and (min-width: 992px) {
    .product {
        min-height: 250px;
    }
}

.product-info {
    display: block;
    color: #222;
    margin: 10px 0;
}

.product-brand {
    font-size: 13px;
    color: #757575;
    margin-top: 20px;

}

.product-title {
    font-size: 14px;
    /*text-transform: uppercase;*/
    color: #222;
    text-overflow: ellipsis;
    max-height: 20px;
}

.product-price-old {
    text-decoration: line-through;
    color: #757575;
    margin-left: 15px;
}


/* Products Filter */

.products-filter {
    padding: 15px;
    margin-bottom: 30px;
}

.products-filter li {
    position: relative;
    border-bottom: 1px solid #ccc;
}

.products-filter li:last-child {
    border-bottom: none;
}

.products-filter a {
    line-height: 40px;
}

.products-filter li button,
.products-filter li span {
    position: absolute;
    right: 0;
}

.products-filter li button:focus {
    box-shadow: none;
}

.products-filter ul li ul a {
    margin-left: 15px;
}


/* Products view bar */

.products-view {
    padding: 12px 20px;
    background-color: #f4f4f4;
}

.products-view label {
    margin: 0;
    margin-right: 5px;
}


/* Product Image */

.product-thumbnail li {
    display: inline-block;
}

.product-thumbnail a {
    display: block;
    margin: 10px 5px 10px 0;
    border: 1px solid #ccc;
}

.product-thumbnail img {
    width: 100%;
    height: auto;
}

.product-images {
    border: 1px solid #ccc;
}

@media (max-width: 767px) {
    .product-image-box {
        padding: 0 75px;
    }
}

@media (max-width: 575px) {
    .product-image-box {
        padding: 0;
    }
}

.blau {
	color: #3B6BA9;
}

.bottom {
	vertical-align: bottom;
}

.center {
	text-align: center;
}

.btn-blue {
    color: #fff;
    background-color: #3B6BA9;
    border-color: #3B6BA9;
}

.bg-blue {
    color: #fff;
    background-color: #3B6BA9;
    border-color: #3B6BA9;
}

.no-border {
    border: 0px;
}

.no-pic {
    max-height: 150px;
}

.white {
    color: #ffffff;
}

.high {
    min-height: 150px;
    max-height: 150px;
}

.scheme_1 .elevatezoom_big_wrapper {
    width: 370px;
    padding: 2px;
    background: #fff;
    border: 1px solid #dfdfdf;
}

.scheme_1 .elevatezoom_big_clicker {
    cursor: pointer;
    display: none;
}

.zoomWrapper,
#elevatezoom_big {
    width: 364px !important;
    height: auto !important;
    position: relative !important;
}

#elevatezoom_big {
    background: rgba(0, 0, 0, 0.05);
}

#elevatezoom_big ~ #elevatezoom_big {
        width: 0 !important;
        height: 0 !important;
    }

.zoomContainer {
    z-index: 1 !important;
}

.zoomLens {
    z-index: 1 !important;
}

.zoomWindow {
    margin: -3px 0 0 0 !important;
}

.item {
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.fa-search:hover {
    color: #3c67a8;
}


.col-xs-5th-1, .col-xs-5th-2, .col-xs-5th-3, .col-xs-5th-4 {
    float: left;
}

.col-xs-5th-5 {
    float: left;
    width: 100%;
}

.col-xs-5th-4 {
    width: 80%;
}
.col-xs-5th-3 {
    width: 60%;
}

.col-xs-5th-2 {
    width: 40%;
}

.col-xs-5th-1 {
    width: 20%;
}

.col-xs-5th-pull-5 {
    right: 100%;
}

.col-xs-5th-pull-4 {
    right: 80%;
}

.col-xs-5th-pull-3 {
    right: 60%;
}

.col-xs-5th-pull-2 {
    right: 40%;
}

.col-xs-5th-pull-1 {
    right: 20%;
}

.col-xs-5th-pull-0 {
    right: auto;
}
.col-xs-5th-push-5 {
    left: 100%;
}

.col-xs-5th-push-4 {
    left: 80%;
}

.col-xs-5th-push-3 {
    left: 60%;
}

.col-xs-5th-push-2 {
    left: 40%;
}

.col-xs-5th-push-1 {
    left: 20%;
}

.col-xs-5th-push-0 {
    left: auto;
}

.col-xs-5th-offset-5 {
    margin-left: 100%;
}

.col-xs-5th-offset-4 {
    margin-left: 80%;
}

.col-xs-5th-offset-3 {
    margin-left: 60%;
}

.col-xs-5th-offset-2 {
    margin-left: 40%;
}

.col-xs-5th-offset-1 {
    margin-left: 20%;
}

.col-xs-5th-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {
	.col-sm-5th-1, .col-sm-5th-2, .col-sm-5th-3, .col-sm-5th-4 {
		float: left;
	}

	.col-sm-5th-5 {
		float: left;
		width: 100%;
	}

	.col-sm-5th-4 {
		width: 80%;
	}

	.col-sm-5th-3 {
		width: 60%;
	}

	.col-sm-5th-2 {
		width: 40%;
	}

	.col-sm-5th-1 {
		width: 20%;
	}

    .col-sm-5th-pull-5 {
        right: 100%;
    }

    .col-sm-5th-pull-4 {
        right: 80%;
    }

    .col-sm-5th-pull-3 {
        right: 60%;
    }

    .col-sm-5th-pull-2 {
        right: 40%;
    }

    .col-sm-5th-pull-1 {
        right: 20%;
    }

    .col-sm-5th-pull-0 {
        right: auto;
    }

    .col-sm-5th-push-5 {
        left: 100%;
    }

    .col-sm-5th-push-4 {
        left: 80%;
    }

    .col-sm-5th-push-3 {
        left: 60%;
    }
    .col-sm-5th-push-2 {
        left: 40%;
    }

    .col-sm-5th-push-1 {
        left: 20%;
    }

    .col-sm-5th-push-0 {
        left: auto;
    }

    .col-sm-5th-offset-5 {
        margin-left: 100%;
    }

    .col-sm-5th-offset-4 {
        margin-left: 80%;
    }

    .col-sm-5th-offset-3 {
        margin-left: 60%;
    }

    .col-sm-5th-offset-2 {
        margin-left: 40%;
    }

    .col-sm-5th-offset-1 {
        margin-left: 20%;
    }

    .col-sm-5th-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {
    .col-md-5th-1, .col-md-5th-2, .col-md-5th-3, .col-md-5th-4 {
        float: left;
    }

    .col-md-5th-5 {
        float: left;
        width: 100%;
    }
    .col-md-5th-4 {
        width: 80%;
    }
    .col-md-5th-3 {
        width: 60%;
    }
    .col-md-5th-2 {
        width: 40%;
    }
    .col-md-5th-1 {
        width: 20%;
    }
    .col-md-5th-pull-5 {
        right: 100%;
    }
    .col-md-5th-pull-4 {
        right: 80%;
    }
    .col-md-5th-pull-3 {
        right: 60%;
    }
    .col-md-5th-pull-2 {
        right: 40%;
    }
    .col-md-5th-pull-1 {
        right: 20%;
    }
    .col-md-5th-pull-0 {
        right: auto;
    }
    .col-md-5th-push-5 {
        left: 100%;
    }
    .col-md-5th-push-4 {
        left: 80%;
    }
    .col-md-5th-push-3 {
        left: 60%;
    }
    .col-md-5th-push-2 {
        left: 40%;
    }
    .col-md-5th-push-1 {
        left: 20%;
    }
    .col-md-5th-push-0 {
        left: auto;
    }
    .col-md-5th-offset-5 {
        margin-left: 100%;
    }
    .col-md-5th-offset-4 {
        margin-left: 80%;
    }
    .col-md-5th-offset-3 {
        margin-left: 60%;
    }
    .col-md-5th-offset-2 {
        margin-left: 40%;
    }
    .col-md-5th-offset-1 {
        margin-left: 20%;
    }
    .col-md-5th-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {
    .col-lg-5th-1, .col-lg-5th-2, .col-lg-5th-3, .col-lg-5th-4 {
        float: left;
    }
    .col-lg-5th-5 {
        float: left;
        width: 100%;
    }
    .col-lg-5th-4 {
        width: 80%;
    }
    .col-lg-5th-3 {
        width: 60%;
    }
    .col-lg-5th-2 {
        width: 40%;
    }
    .col-lg-5th-1 {
        width: 20%;
    }
    .col-lg-5th-pull-5 {
        right: 100%;
    }
    .col-lg-5th-pull-4 {
        right: 80%;
    }
    .col-lg-5th-pull-3 {
        right: 60%;
    }
    .col-lg-5th-pull-2 {
        right: 40%;
    }
    .col-lg-5th-pull-1 {
        right: 20%;
    }
    .col-lg-5th-pull-0 {
        right: auto;
    }
    .col-lg-5th-push-5 {
        left: 100%;
    }
    .col-lg-5th-push-4 {
        left: 80%;
    }
    .col-lg-5th-push-3 {
        left: 60%;
    }
    .col-lg-5th-push-2 {
        left: 40%;
    }
    .col-lg-5th-push-1 {
        left: 20%;
    }
    .col-lg-5th-push-0 {
        left: auto;
    }
    .col-lg-5th-offset-5 {
        margin-left: 100%;
    }
    .col-lg-5th-offset-4 {
        margin-left: 80%;
    }
    .col-lg-5th-offset-3 {
        margin-left: 60%;
    }
    .col-lg-5th-offset-2 {
        margin-left: 40%;
    }
    .col-lg-5th-offset-1 {
        margin-left: 20%;
    }
    .col-lg-5th-offset-0 {
        margin-left: 0%;
    }
}

.width100 {
    max-width: 100px;
}

.fontsize12 {
    font-size: 12px;
}


/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v30-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v30-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v30-latin-300.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v30-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v30-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-900 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-v30-latin-900.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v30-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v30-latin-900.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v30-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v30-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}


