/* Minification failed. Returning unminified contents.
(6458,35): run-time error CSS1030: Expected identifier, found '.'
(6458,59): run-time error CSS1031: Expected selector, found ')'
(6458,59): run-time error CSS1025: Expected comma or open brace, found ')'
 */
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic);
/*#text {margin:50px auto; width:500px}
.hotspot {color:#900; padding-bottom:1px; border-bottom:1px dotted #900; cursor:pointer}*/

/*#tt {position:absolute; display:block; background:url('../../images/tooltip/tt_left.gif') top left no-repeat}
#tttop {display:block; height:5px; margin-left:5px; background:url('../../images/tooltip/tt_top.gif') top right no-repeat; overflow:hidden}
#ttcont {display:block; padding:2px 12px 3px 7px; margin-left:5px; background:#666; color:#FFF}
#ttbot {display:block; height:5px; margin-left:5px; background:url('../../images/tooltip/tt_bottom.gif') top right no-repeat; overflow:hidden}*/

/* Use CSS3 border-radius instead of images to get round corners */
/* Removed border styles from the "tt" id and put them in "ttcont" instead. Fixed iPhone Safari issue. */
/*#tt {position:absolute; display:block; border-style: solid; border-color: #666; border-top-right-radius: 5px; border-top-left-radius: 5px; border-bottom-right-radius: 5px}*/
#tt {position:absolute; display:block}
#ttcont {display:block; padding:5px 8px 5px 8px; background:#666; color:#FFF; border-style: solid; border-color: #666; border-top-right-radius: 0px; border-top-left-radius: 0px; border-bottom-right-radius: 0px}
/* ===========================================================
 *
 *  Name:          selectordie_dev.css
 *  Updated:       2014-10-10
 *  Created by:    Per V @ Vst.mn
 *  What?:         Base CSS for Select or Die
 *
 *  Copyright (c) 2014 Per Vestman
 *  Dual licensed under the MIT and GPL licenses.
 *
 *  No, I don't usually comment my CSS, but in this
 *  case it might "help" someone.
 *
 *  Oddny | Cogs 'n Kegs
 * =========================================================== */

/* Remove, change to fit your needs */
/*@import url(https://fonts.googleapis.com/css?family=Lato:300,700);*/ /* Removed by MIBR */

.sod_select,
.sod_select *
    {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
     -webkit-touch-callout: none;
       -webkit-user-select: none;
          -moz-user-select: none;
           -ms-user-select: none;
               user-select: none;
    }

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select
    {
        display: inline-block;
        position: relative;
        line-height: 1;

        width: 200px;
        padding: 15px 10px;
        border: 3px solid #5e5e5e;
        background: #ffffff;
        color: #444444;
        font-size: 11px;
        font-weight: 700;
        text-align: left;
        text-transform: uppercase;
        outline: 0;
        outline-offset: -2px; /* Opera */
        cursor: default;
    }

    /* Up/Down arrows */
    .sod_select:before,
    .sod_select:after
        {
            content: "\25B2";
            position: absolute;
            right: 10px;
            top: 12px;
            font-size: 7px;
        }

        /* Down arrow */
        .sod_select:after
            {
                content: "\25BC";
                top: auto;
                bottom: 12px;
            }

    /* Change the border color on hover, focus and when open */
    .sod_select:hover,
    .sod_select.open,
    .sod_select.focus { border-color: #000000; }

        .sod_select.open { color: #919191; }
        .sod_select.focus { box-shadow: 0 0 5px rgba(0,0,0,.2); }

    /* When the entire SoD is disabled, go crazy! */
    .sod_select.disabled
        {
            border-color: #828282;
            color: #b2b2b2;
            cursor: not-allowed;
        }

    /* The "label", or whatever we should call it. Keep the first three lines for truncating. */
    .sod_select .sod_label
        {
            display: block;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;

            padding-right: 15px;
        }

        .sod_select .sod_prefix { /* Use this if you're using a prefix and want to style it */ }
        .sod_select .sod_placeholder { /* Use this if you're using a placeholder and want to style it */ }



    /* Options list wrapper */
    .sod_select .sod_list_wrapper
        {
            position: absolute;
            top: 100%;
            left: 0;
            display: none;
            height: auto;
            width: 200px;
            margin: 0 0 0 -3px;
            background: #ffffff;
            border: 3px solid #000000;
            border-top: none;
            color: #444444;
            font-weight: 300;
            z-index: 1;
        }

        /* Shows the option list (don't edit) */
        .sod_select.open .sod_list_wrapper { display: block;  }

        /* Don't display the options when  */
        .sod_select.disabled.open .sod_list_wrapper { display: none;  }

        /* When the option list is displayed above the SoD */
        .sod_select.above .sod_list_wrapper
            {
                top: auto;
                bottom: 100%;
                border-top: 3px solid #000000;
                border-bottom: none;
            }

    /* Options list container */
    .sod_select .sod_list
        {
            display: block;
            overflow-y: auto;
            padding: 0;
            margin: 0;
        }

        /* All the options. Keep the first three lines for truncating... */
        .sod_select .sod_option
            {
                display: block;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;

                position: relative;
                padding: 10px 10px;
                list-style-type: none;
            }

            /* Optgroups */
            .sod_select .sod_option.optgroup,
            .sod_select .sod_option.optgroup.disabled
                {
                    background: inherit;
                    color: #939393;
                    font-size: 10px;
                    font-style: italic;
                }

                /* Children of an optgroup */
                .sod_select .sod_option.groupchild { padding-left: 20px; }

            /* Used together with placeholderOption / data-placeholder-option */
            .sod_select .sod_option.is-placeholder {
                display: none;
            }

            /* Disabled option */
            .sod_select .sod_option.disabled
                {
                    background: inherit;
                    color: #cccccc;
                }

            /* Hover state for options, also used when a user uses his/hers up/down keys */
            .sod_select .sod_option.active
                {
                    background: #f7f7f7;
                    color: #333333;
                }

            /*Make room for the check mark */
            .sod_select .sod_option.selected
                {
                    font-weight: 700;
                    padding-right: 25px;
                }

                /* Displays a check mark for the selected option */
                .sod_select .sod_option.selected:before
                    {
                        content: "";
                        position: absolute;
                        right: 10px;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                            -ms-transform: translateY(-50%);
                                transform: translateY(-50%);
                        display: inline-block;
                        color: #808080;
                        height: 9px;
                        width: 10px;
                        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
                    }

                /* Add a .no_highlight class to you SoD to hide the check mark and don't bold the option */
                .sod_select.no_highlight .sod_option.selected { font-weight: 300; }
                .sod_select.no_highlight .sod_option.selected:before { display: none; }

            .sod_select .sod_option.link { /* If data-link is set on a specific option */ }
            .sod_select .sod_option.linkexternal { /* If data-link-external is set on a specific option */ }



    /* Hide native select */
    .sod_select select { display: none !important; }

        /* The native select in touch mode. Keep this first line. Sorry, keep everything. */
        .sod_select.touch select
            {
                -webkit-appearance: menulist-button;

                position: absolute;
                top: 0;
                left: 0;
                display: block !important;
                height: 100%;
                width: 100%;
                opacity: 0;
                z-index: 1;
            }

input[type=submit]::-moz-focus-inner, input[type=button]::-moz-focus-inner
{
  padding: 0;
  border: 0;
}

input[type=text], input[type=password], input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #D0D0D0;
    border-radius: 0;
    padding: 0 10px;
    margin: 0px;
    background-color: #FDFDFD;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    color: #252525;
    outline: none;
}

input[type=text]:hover, input[type=password]:hover, input[type="search"]:hover {
    border: 1px solid #A0A0A0;
}

input[type=text]:focus, input[type=password]:focus, input[type="search"]:focus {
    border: 1px solid #A0A0A0;
    background-color: White;
}

input[type=text]:disabled, input[type=password]:disabled, input[type="search"]:disabled {
    border: 1px solid #A0A0A0;
    background-color: #E0E0E0;
    cursor: not-allowed;
}

/* Get rid of stupid browser-controlled search field cruft. */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

input, select, textarea, button 
{
  font-family: inherit;
}

textarea
{
  -webkit-appearance: none;
  border: 1px solid #D0D0D0;
  background-color: #FDFDFD;
  box-sizing: border-box;
  font-size: 14px;
  color: #252525;
}

textarea:hover
{
  border: 1px solid #A0A0A0;
}

textarea:focus
{
  border: 1px solid #A0A0A0;
  background-color: White;
}

textarea:disabled
{
  border: 1px solid #A0A0A0;
  background-color: #E0E0E0;
  cursor: not-allowed;
}

.mekanikaOrangeColor
{
  color: #F78D26;
}

.mekanikaOrangeHighlightColor
{
  color: #FDAE62;
}

.mekanikaBlueColor
{
  color: #689096;
}

.mekanikaLightGrayColor
{
  color: #E3E3E3;
}

.fancybox-opened .fancybox-skin
{
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: White;
}

.fancybox-checkout-klarna-iframe .fancybox-skin, 
.fancybox-checkout-terms .fancybox-skin, 
.fancybox-checkout-delivery-info .fancybox-skin, 
.fancybox-reset-pwd-dialog .fancybox-skin, 
.fancybox-dialog .fancybox-skin
{
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.mekanikaDialog
{
  max-height: 999999px;
  position: relative;
  padding: 15px;
}

.mekanikaDialogHeading
{
  width: 100%;
  min-height: 25px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #E3E3E3;
}

.mekanikaDialogMessage
{
  margin-top: 10px;
  margin-bottom: 20px;
  display: block;
  line-height: 20px;
}

.mekanikaResetPwdReqTextBoxLabel
{
  color: #808080;
}

.mekanikaResetPwdReqTextBox
{
  width: 100%;
  margin-top: 3px !important;
  margin-bottom: 30px !important;
  display: block;
}

.mekanikaResetPwdReqBtn
{
  margin-bottom: 10px;
}

.divCompletePage
{
  margin: 0 auto 0 auto;
  width: 980px;
  height: auto;
  position: relative;
}

.globalTestModeBanner {
    min-width: 980px;
    top: 0px;
    left: 0px;
    background-color: #FF6464;
    color: #404040;
    border-bottom: 1px solid #C0C0C0;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    padding-top: 16px;
    padding-bottom: 16px;
}

.globalTestModeBannerWrapper {
    width: 980px;
    margin: auto;
}

.globalTestModeHeading {
    margin-bottom: 8px;
    font-size: 16px;
}

.divTop
{
  /*width: 100%;*/
  min-width: 980px;
  height: 86px;
  background-color: #F78D26;
  color: White;
  border-bottom: 4px solid #689096;
}

.divTopCenter
{
  width: 980px;
  height: inherit;
  margin: auto;
  position: relative;
}

.divTopLogo
{
  width: 626px;
  padding-left: 5px;
  height: inherit;
}

.imgTopLogo
{
  position: absolute;
  top: 14px;
}

.topButton
{
  position: absolute;
  top: 0px;
  width: 86px;
  height: inherit;
  cursor: pointer;
  text-align: center;
  border-left: 1px solid #FDAE62;
  text-decoration: none;
}

.topButton:hover
{
  /*transition: background-color .15s ease-in-out;*/
  background-color: #F99B3F;
}

.topButtonHighlight
{
  background-color: #FDAE62;
}

.topButtonHighlight:hover
{
  background-color: #FDAE62;
}

.topButtonContact
{
  left: 631px;
}

.topButtonFilmRoom
{
  left: 718px;
}

.topButtonCart
{
  left: 805px;
}

.topButtonLogIn
{
  left: 892px;
  border-right: 1px solid #FDAE62;
}

.imgTopButtonContact
{
  position: absolute;
  top: 22px;
  left: 31px;
}

.imgTopButtonFilmRoom
{
  position: absolute;
  top: 30px;
  left: 31px;
}

.imgTopButtonCart
{
  position: absolute;
  top: 27px;
  left: 27px;
}

.topButtonCartNrOfArticles
{
  display: none;
  border-radius: 9px;
  width: 18px;
  height: 18px;
  background-color: #ED1C24;
  color: white;
  position: absolute;
  top: 22px;
  left: 45px;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.topButtonCartNrOfArticlesShow
{
  display: table;
}

.topButtonCartNrOfArticlesMoreThanOneDigit
{
  padding-left: 3px;
  padding-right: 3px;
}

.imgTopButtonLogIn
{
  position: absolute;
  top: 29px;
  left: 32px;
}

.topButtonText
{
  display: block;
  padding: 54px 5px 0;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 86px;
  white-space: nowrap;
  color: White;
  line-height: 13px;
}

.topButtonTextCart
{
  white-space: normal;
}

.topDropDown
{
  position: absolute;
  top: 90px;
  right: -1px;
  width: 289px;
  padding: 11px 22px 19px;
  text-align: left;
  background-color: White;
  color: #252525;
  box-shadow: rgba(50, 50, 50, 0.498039) 0px 2px 10px 0px;
  cursor: auto;
  z-index: 1;
  display: none;
}

.topDropDownArrow
{
  position: absolute;
  top: -20px;
  right: 27px;
  width: 0px;
  height: 0px;
  border-style: solid; /* Arrow might get blurred in Firefox with certain graphics card settings (anisotropic filtering). */
  border-width: 0 16px 21px 16px;
  border-color: transparent transparent White transparent;
}

.topDropDownHeading
{
  height: 41px;
  font-size: 18px;
  border-bottom: 1px solid #E3E3E3;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topDropDownContactText
{
  margin-top: 12px;
}

.divFPContactInfoContent.divAboutUsContactInfoContent.topDropDownContactInfoContent
{
  margin: 20px 0 0 0;
}

.topDropDownContactButtonsWrapper
{
  border-top: 1px solid #E3E3E3;
  margin-top: 18px;
}

.topDropDownCartSumWrapper
{
  padding-top: 12px;
}

.topDropDownCartLeft
{
  float: left;
}

.topDropDownCartRight
{
  float: right;
}

.topDropDownCartSum
{
  font-weight: 500;
}

.topDropDownCartShippingWrapper
{
  padding: 15px 0;
}

.topDropDownCartShipping
{
  font-weight: 500;
}

.topDropDownCartTotalWrapper
{
  border-top: solid 2px #252525;
  padding-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.topDropDownCartVATWrapper
{
  padding-top: 10px;
  color: #999999;
}

.topDropDownCartVAT
{
  font-weight: 500;
}

.btnDim
{
  -webkit-appearance: none;
  border-radius: 0;
  color: White;
  background-color: #689096;
  padding: 11px 15px 12px 15px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  height: 40px;
  text-align: left;
  font-size: 14px;
  border-style: none;
  position: relative;
  box-shadow: 2px 2px 5px #999999;
  transition: 0.15s;
}

.btnDim:hover
{
  background-color: #779CA1;
  padding-right: 10px;
  padding-left: 20px;
}

a.btnDim, div.btnDim, a.btnBright, div.btnBright
{
  height: 17px;
}

.btnBright
{
  -webkit-appearance: none;
  border-radius: 0;
  color: White;
  background-color: #F78D26;
  padding: 11px 15px 12px 15px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  height: 40px;
  text-align: left;
  font-size: 14px;
  border-style: none;
  position: relative;
  box-shadow: 2px 2px 5px #999999;
  transition: 0.15s;
}

.btnBright:hover
{
  background-color: #F99B3F;
  padding-right: 10px;
  padding-left: 20px;
}

.topDropDownSupportButton
{
  margin-top: 17px;
  margin-bottom: 10px;
}

.topDropDownCartToCart
{
  margin-top: 17px;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.topDropDownCartToCheckout
{
  text-decoration: none;
  display: block;
}

.topDropDownCartContinue
{
  color: #689096;
  margin-top: 17px;
  cursor: pointer;
  display: inline-block;
}

.topDropDownCartContinue:hover
{
  text-decoration: underline;
}

.topDropDownLogInInfoWrapper
{
  margin-top: 12px;
}

.topDropDownLogInInfoHeading
{
  color: #F78D26;
}

.topDropDownLogInInfoText
{
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

.topDropDownLogInEmailWrapper
{
  margin-top: 15px;
}

.topDropDownLogInLabel
{
  color: #808080;
}

.topDropDownLogInTextBox
{
  display: block;
  width: 100%;
  margin-top: 3px !important;
}

.topDropDownLogInPasswordWrapper
{
  margin-top: 10px;
  margin-bottom: 20px;
  position: relative;
}

.topDropDownLogInPasswordForgot
{
  color: #F78D26;
  display: inline-block;
  position: absolute;
  right: 0px;
}

.topDropDownLogInPasswordForgot:hover
{
  text-decoration: underline;
}

.topDropDownMyPagesButton
{
  margin-top: 17px;
  margin-bottom: 10px;
}

.topDropDownLogInOutButton
{
  width: 100%;
}

.topDropDownLogInNoAccountWrapper
{
  margin-top: 14px;
}

.topDropDownLogInNoAccount
{
  font-weight: 300;
  color: #689096;
}

.topDropDownLogInCreateAccount
{
  font-weight: 300;
  color: #F78D26;
  text-decoration: none;
}

.topDropDownLogInCreateAccount:hover
{
  text-decoration: underline;
}

.divMainPageLeft
{
  width: 206px;
  height: auto;
  padding-top: 9px;
  float: left;
}

.menuContainer
{
  width: 206px;
  height: auto;
  padding-bottom: 20px;
}

.menuCategoryLabel
{
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #F78D26;
  height: 18px;
  padding: 6px 0 6px 5px;
  border-bottom: 2px solid #689096;
}

.menuCategoryLabel:hover
{
  text-decoration: underline;
}

.menuLeftItemLvl1
{
  width: 195px;
  padding: 8px 0 8px 11px;
  text-decoration: none;
  color: #689096;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid #E3E3E3;
}

.menuLeftItemLvl1:hover
{
  background-color: #FDE8D4;
}

.menuLeftItemLvl2
{
  width: 176px;
  padding: 8px 0 8px 30px;
  text-decoration: none;
  color: #689096;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid #E3E3E3;
}

.menuLeftItemLvl2:hover
{
  background-color: #FDE8D4;
}

.menuLeftItemLvl3
{
  width: 157px;
  padding: 8px 0 8px 49px;
  text-decoration: none;
  color: #689096;
  font-size: 13px;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid #E3E3E3;
}

.menuLeftItemLvl3:hover
{
  background-color: #FDE8D4;
}

.menuItemSelected
{
  font-weight: bold;
  color: #F78D26;
  background-color: #FDE8D4;
}

.menuItemDisabled
{
  color: #999999;
  text-decoration: line-through;
  cursor: not-allowed;
}

.menuItemDisabled:hover
{
  background-color: #E9E9E9;
}

.divTrustBox
{
  min-height: 407px;
}

.divFPContactInfo
{
  margin-top: 15px;
  margin-bottom: 20px;
  width: 205px;
  height: 273px;
  color: #F78D26;
}

.divFPContactInfoHeading
{
  width: 191px;
  background-color: #F78D26;
  font-size: 22px;
  font-weight: bold;
  padding: 12px 0 14px 14px;
  color: White;
}

.divFPContactInfoContent
{
  position: relative;
  height: 206px;
  color: #F78D26;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 15px solid #F78D26;
}

.divFPContactInfoArrow
{
  margin-left: 92px;
  width: 0;
  height: 0; 
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;	
  border-top: 16px solid #F78D26;
}

.imgFPContactInfoTele
{
  position: absolute;
  top: 100px;
  left: 5px;
}

.lblFPContactInfoTele
{
  position: absolute;
  top: 98px;
  left: 47px;
}

.lblFPContactInfoTeleHours
{
  position: absolute;
  top: 117px;
  left: 47px;
  font-size: 13px;
}

.imgFPContactInfoMail
{
  position: absolute;
  top: 162px;
  left: 6px;
}

.aFPContactInfoMail
{
  position: absolute;
  top: 162px;
  left: 47px;
  color: #F78D26;
  text-decoration: none;
}

.aFPContactInfoMail:hover
{
  text-decoration: underline;
}

.frontpageDivWelcomeAndChooseCar
{
  width: 762px;
  height: 314px;
  border-bottom: 4px solid #689096;
}

.makepageDivWelcomeAndChooseCar
{
  margin-top: 26px;
}

.frontpageDivWelcome
{
  position: relative;
  background-color: #F78D26;
  float: left;
  width: 498px;
  height: inherit;
}

.frontpageDivWelcomeMessage
{
  padding-top: 13px;
  padding-left: 32px;
}

.frontpageH1Welcome
{
  padding: 0;
  font-size: 55px;
  font-weight: 700;
  color: White;
}

.frontpageDivTrustpilot
{
  position: absolute;
  top: 226px;
  left: 41px;
}

.frontpageImgTrustPilotLogo
{
  padding-bottom: 5px;
  padding-left: 2px;
}

.trustpilotStarBackground
{
  margin-right: 3px;
  float: left;
}

.TEH_logotype
{
  position: absolute;
  top: 234px;
  left: 202px;
}

.frontpageDivFreeShipping
{
  position: absolute;
  top: 234px;
  left: 204px;
}

.frontpageDivSwish
{
  position: absolute;
  top: 246px;
  left: 342px;
}

.frontpageDivWarranty
{
  position: absolute;
  top: 216px;
  left: 292px;
}

.frontpageDivChooseCar
{
  background-color: #F78D26;
  float: right;
  width: 216px;
  height: inherit;
  padding-left: 23px;
  padding-right: 12px;
  color: White;
}

.frontpageDivChooseCarRegNr
{
  position: relative;
}

.frontpageChooseCarMessage
{
  position: absolute;
  top: 18px;
  font-size: 19px;
  font-weight: bold;
}

.frontpageDivChooseCarRegNrBox
{
  position: absolute;
  top: 112px;
  width: 195px;
}

.tbRegNr {
    position: absolute;
    left: 17px;
    color: #9DB4B7 !important;
    text-transform: uppercase;
    text-align: center;
    border-radius: 3px !important;
    outline: none;
    font-weight: bold !important;
    font-size: 26px !important;
    height: 41px !important;
    width: 178px;
    padding: 2px !important;
    background-color: White;
}

.imgRegNrPlate
{
  position: absolute;
  left: 2px;
}

.frontpageBtnShowParts
{
  -webkit-appearance: none;
  position: absolute;
  top: 58px;
  right: 0px;
  background-color: White;
  border-radius: 4px;
  display: table-cell;
  color: #F78D26;
  padding: 7px 13px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

.frontpageBtnShowParts:hover
{
  color: #FDAE62;
}

.frontpageDivChooseCarSwitchToManual
{
  position: absolute;
  top: 246px;
  width: 200px;
  font-size: 20px;
  font-weight: bold;
}

.frontpageLbtnChooseCarManually
{
  text-decoration: none;
  color: White;
}

.frontpageSelectCarManually.sod_select:hover
{
  border-color: White;
  color: #FDAE62;
}

.frontpageSelectCarManually.sod_select,
.frontpageSelectCarManually.sod_select.focus,
.frontpageSelectCarManually.sod_select.open
{
  width: 205px;
  padding: 5px 13px 4px;
  color: #F78D26;
  line-height: normal;
  font-size: 12px;
  border-color: White;
  box-shadow: none;
  border-radius: 3px;
  margin-top: 17px;
  text-transform: none;
  cursor: pointer;
}

.frontpageSelectCarManually.sod_select:before,
.frontpageSelectCarManually.sod_select:after
{
  content: none;
}

.frontpageSelectCarManually.sod_select .sod_label.sod_placeholder
{
  font-size: 23px;
  font-weight: bold;
  /*overflow: visible;*/
}

.frontpageSelectCarManually.sod_select.disabled
{
  border-color: White;
  color: #B0C1C4;
}

.frontpageSelectCarManuallyMake.sod_select .sod_label
{
  /*overflow: visible;*/
  padding-right: 0;
}

.frontpageSelectCarManually.sod_select .sod_label
{
  font-size: 23px;
  font-weight: bold;
  /*overflow: visible;*/
}

.frontpageSelectCarManually.sod_select .sod_list_wrapper
{
  width: auto;
  min-width: 205px;
  border-color: White;
  border-radius: 3px;
  border-top-right-radius: 0px;
  color: #252525;
  left: auto;
  right: -3px;
  z-index: 1000;
}

.frontpageSelectCarManually.sod_select .sod_option
{
  padding-right: 28px;
  text-overflow: initial;
}

.frontpageSelectCarManually.sod_select .sod_option.active
{
  color: #252525;
}

.frontpageImgChooseCarRightArrow
{
  position: absolute;
  top: 27px;
  left: 186px;
}

.frontpageImgChooseCarRightArrow.frontpageImgChooseCarRightArrowManual
{
  left: 205px;
}

.carinfoBoxSmall
{
  position: relative;
  top: -9px;
  margin-bottom: 9px;
  width: 206px;
  background-color: #F78D26;
  color: White;
  border-bottom: 4px solid #689096;
}

.carinfoBoxSmall .carinfoBoxMessage
{
  display: none;
}

.carinfoBoxSmall .carinfoBoxRegNr
{
  padding: 14px 12px 10px;
  font-size: 26px;
  font-weight: bold;
}

.carinfoBoxSmall.carinfoBoxRegNrSearch .carinfoBoxRegNr
{
  display: block;
}

.carinfoBoxSmall .carinfoBoxTableWrapper
{
  padding-top: 0px;
  padding-left: 12px;
}

.carinfoBoxSmall.carinfoBoxRegNrSearch .carinfoBoxTableWrapper
{
  padding-top: 0px;
}

.carinfoBoxSmall .carinfoBoxTable
{
  border-collapse: collapse;
  width: 176px;
  font-size: 12px;
  font-weight: 500;
}

.carinfoBoxSmall td
{
  vertical-align: top;
}

.carinfoBoxSmall tr.spaceOver > td
{
  padding-top: 3px;
}

.carinfoBoxSmall .carinfoBoxTableMake
{
  min-width: 60px;
  width: 60px;
  padding-left: 0px;
  font-weight: bold;
}

.carinfoBoxSmall .carinfoBoxTableMakeVal
{
  white-space: nowrap;
}

.carinfoBoxSmall .carinfoBoxTableModel
{
  padding-left: 0px;
  font-weight: bold;
}

.carinfoBoxSmall .carinfoBoxTableYear
{
  padding-left: 0px;
  font-weight: bold;
}

.carinfoBoxSmall .carinfoBoxTableRowChassisNr,
.carinfoBoxSmall .carinfoBoxTableRowEngineCode {
    display: none;
}

.carinfoBoxSmall.carinfoBoxRegNrSearch .carinfoBoxTableRowChassisNr,
.carinfoBoxSmall.carinfoBoxRegNrSearch .carinfoBoxTableRowEngineCode {
    display: table-row;
}

.carinfoBoxSmall .carinfoBoxTableChassisNr
{
  white-space: nowrap;
  padding-left: 0px;
  font-weight: bold;
}

.carinfoBoxSmall .carinfoBoxTableChassisNrVal
{
  word-wrap: break-word;
  max-width: 130px;
}

.carinfoBoxSmall .carinfoBoxMoreInfo
{
  display: inline-block;
  padding-top: 14px;
  padding-right: 8px;
}

.carinfoBoxSmall .carinfoBoxMoreInfoLink
{
  text-decoration: none;
  color: White;
  font-size: 13px;
  font-weight: bold;
}

.carinfoBoxSmall .carinfoBoxRightArrow
{
  padding-left: 2px;
  position: relative;
  top: 3px;
}

.carinfoBoxSmall .carinfoBoxChangeCar
{
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 17px;
}

.carinfoBoxSmall .carinfoBoxChangeCarLink
{
  text-decoration: none;
  color: White;
  font-size: 13px;
  font-weight: bold;
}

.carinfoBoxSmall .carinfoBoxMenuNotice
{
  display: none;
}

.carinfoBoxLarge
{
  position: relative;
}

.carinfoBoxLarge .carinfoBoxMessage
{
  position: absolute;
  top: 18px;
  font-size: 19px;
  font-weight: bold;
}

.carinfoBoxLarge .carinfoBoxRegNr
{
  position: absolute;
  top: 52px;
  font-size: 30px;
  font-weight: bold;
  display: none;
}

.carinfoBoxLarge.carinfoBoxRegNrSearch .carinfoBoxRegNr
{
  display: block;
}

.carinfoBoxLarge .carinfoBoxTableWrapper
{
  position: absolute;
  top: 55px;
}

.carinfoBoxLarge.carinfoBoxRegNrSearch .carinfoBoxTableWrapper
{
  padding-top: 0px;
  top: 97px;
}

.carinfoBoxLarge .carinfoBoxTable
{
  border-collapse: collapse;
  width: 218px;
  font-size: 13px;
  font-weight: 500;
}

.carinfoBoxLarge td
{
  vertical-align: top;
}

.carinfoBoxLarge tr.spaceOver > td
{
  padding-top: 3px;
}

.carinfoBoxLarge .carinfoBoxTableMake
{
  min-width: 57px;
  width: 57px;
  padding-left: 0px;
  font-weight: bold;
}

.carinfoBoxLarge .carinfoBoxTableMakeVal
{
  white-space: nowrap;
}

.carinfoBoxLarge .carinfoBoxTableModel
{
  padding-left: 0px;
  font-weight: bold;
}

.carinfoBoxLarge .carinfoBoxTableYear
{
  padding-left: 0px;
  font-weight: bold;
}

.carinfoBoxLarge .carinfoBoxTableRowChassisNr,
.carinfoBoxLarge .carinfoBoxTableRowEngineCode {
    display: none;
}

.carinfoBoxLarge .carinfoBoxTableChassisNr
{
  white-space: nowrap;
  padding-right: 5px;
  padding-left: 0px;
  font-weight: bold;
}

.carinfoBoxLarge .carinfoBoxTableChassisNrVal
{
  word-wrap: break-word;
}

.carinfoBoxLarge .carinfoBoxMoreInfo
{
  display: inline-block;
  padding-top: 15px;
}

.carinfoBoxLarge .carinfoBoxMoreInfoLink
{
  text-decoration: none;
  color: White;
  font-weight: bold;
}

.carinfoBoxLarge .carinfoBoxRightArrow
{
  padding-left: 2px;
  position: relative;
  top: 3px;
}

.carinfoBoxLarge .carinfoBoxChangeCar
{
  display: inline-block;
  padding-top: 15px;
  padding-left: 25px;
}

.carinfoBoxLarge .carinfoBoxChangeCarLink
{
  text-decoration: none;
  color: White;
  font-weight: bold;
}

.carinfoBoxLarge .carinfoBoxMenuNotice
{
  top: 246px;
}

.frontpageDivChooseCarManual
{
  position: relative;
}

.frontpageDivChooseCarManualSelects
{
  position: absolute;
  top: 39px;
}

/* Prevents scrollbars in fancybox dialogs on touch enabled devices. */
.fancybox-new-customer-offer-popup .fancybox-inner,
.fancybox-carinfo-dialog .fancybox-inner,
.fancybox-filmroom-popup .fancybox-inner,
.fancybox-checkout-klarna-iframe .fancybox-inner,
.fancybox-checkout-terms .fancybox-inner,
.fancybox-checkout-delivery-info .fancybox-inner,
.fancybox-feeinfo-dialog .fancybox-inner,
.fancybox-generic-dialog .fancybox-inner {
    overflow: auto !important;
}

/* Prevent vertical scrollbar in Fancybox in Firefox */
.fancybox-lock .fancybox-overlay
{
  overflow-y: auto !important;
}

.feeinfoBody
{
  overflow: hidden;
}

.carinfoBody, .newCustomerOfferBody
{
  margin: 0px;
  background-color: #F78D26;
  color: White;
  font-family: Ubuntu, Arial, Helvetica, sans-serif;
}

.carinfoDivContainer
{
  max-height: 999999px;
  padding: 17px 21px 19px;
  border-bottom: 4px solid #689096;
}

.carinfoDivClose, .newCustomerOfferDivClose
{
  background-color: #689096;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  transition: 0.15s;
}

.carinfoDivClose:hover, .newCustomerOfferDivClose:hover
{
  background-color: #779CA1;
}

.newCustomerOfferDivCloseBright {
    background-color: #F78D26;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    transition: 0.15s;
}

.newCustomerOfferDivCloseBright:hover {
    background-color: #F99B3F;
}

.carinfoImgClose, .newCustomerOfferImgClose
{
  position: absolute;
  left: 8px;
  top: 8px;
}

.carinfoHeading
{
  font-size: 26px;
}

.carinfoLblRegNr
{
  font-size: 30px;
  font-weight: bold;
}

.carinfoTblCarInfo
{
  border-collapse: collapse;
  font-weight: 700;
  line-height: 20px;
  font-size: 16px;
}

.carinfoTdCarInfoCategory {
    white-space: nowrap;
}

.carinfoTdCarInfoValue
{
  padding-left: 20px;
  font-weight: 500;
}

.mekanikaRotator
{
  width: 762px;
  height: 303px;
}

.frontpageDivFrontPageContent
{
  margin-bottom: 30px;
}

.divBottom
{
  /*width: 100%;*/
  min-width: 980px;
  height: 341px;
  background-color: #F78D26;
  color: White;
  border-top: 4px solid #689096;
}

.divBottomInfoLinks
{
  width: 980px;
  margin: 0 auto;
  padding-top: 52px;
}

.tblBottomInfoLinks
{
  border-collapse: collapse;
  margin-left: 20px;
}

.bottomInfoLinksColumnWrapper
{
  vertical-align: top;
  padding: 0px;
}

.bottomInfoLinksColumn
{
  border-collapse: collapse;
  width: 252px;
}

.bottomInfoLinksHeading
{
  padding-bottom: 3px;
  font-size: 24px;
}

.bottomInfoLink
{
  color: White;
  text-decoration: none;
}

.bottomInfoLink:hover
{
  text-decoration: underline;
}

.bottomDivider
{
  width: 980px;
  margin: 30px auto 16px auto;
  border-top: 1px solid White;
}

.divBottomInfo
{
  width: 980px;
  margin: 0 auto;
  font-size: 24px;
}

.divBottomInfoPaymentOptions
{
  width: 496px;
  padding-left: 21px;
  float: left;
  border-right: 1px solid White;
}

.imgBottomInfoPaymentOptions
{
  display: block;
  padding-top: 15px;
}

.divBottomInfoRight
{
  width: 430px;
  float: right;
  padding-top: 10px;
  font-size: 12px;
}

.frontpageDivCarMakes
{
  width: 762px;
  color: White;
  background-color: #F78D26;
  border-bottom: 4px solid #689096;
}

.frontpageDivCarMakesHeading
{
  float: left;
  width: 179px;
  line-height: 25px;
}

.frontpageH2CarMakesHeading
{
  position: static;
  font-size: 25px;
  font-weight: bold; 
  color: White;
  margin: 14px 0 12px 24px;
  background: none;
  border-bottom: none;
  padding: 0;
}

.frontpageDivCarMakesList
{
  width: 583px;
  float: right;
  padding: 18px 0 12px;
}

.divCarMakeBox
{
  float: left;
  padding-bottom: 7px;
}

.spCarMakeText
{
  font-size: 16px;
  font-weight: 500;
  margin-right: 20px;
}

.aCarMakeLink
{
  color: White;
  text-decoration: none;
}

.aCarMakeLink:hover
{
  text-decoration: underline;
}

.frontpageDivFilmRoom
{
  margin-top: 16px;
}

.divFilmRoom
{
  height: 254px;
  border: 4px solid #689096;
}

.divFilmRoomLeft
{
  position: relative;
  float: left;
  width: 297px;
  height: 254px;
  border-right: 4px solid #689096;
}

.hlFilmRoomLink
{
  color: White;
}

.divFilmRoomHeading .hlFilmRoomLink
{
  color: #F78D26;
  text-decoration: none;
  display: block;
}

.divFilmRoomHeading .hlFilmRoomLink:hover span
{
  text-decoration: underline;
}

.divFilmRoomHeading
{
  margin: 26px 0 0 22px;
  font-size: 33px;
  font-weight: bold;
  color: #F78D26;
  width: 272px;
}

.divFilmRoomHeadingText
{
  display: inline;
  position: relative;
  top: -15px;
  left: -2px;
  color: #F78D26;
}

.divFilmRoomDescription
{
  width: 260px;
  height: 135px;
  position: absolute;
  top: 111px;
  left: 20px;
}

.divFilmRoomSmallDescription
{
  font-size: 16px;
  font-weight: bold;
  color: #689096;
}

.divFilmRoomLargeDescription
{
  font-size: 29px;
  font-weight: bold;
  color: #F78D26;
  padding-top: 5px;
}

.frontpageDivOffersAndMisc
{
  margin-top: 36px;
}

.frontpageDivOffersSection
{
  width: 373px;
  float: left;
}

.frontpageDivOffersSectionHeading
{
  margin-top: 16px;
  padding-bottom: 2px;
  font-size: 24px;
  font-weight: bold;
  color: #689096;
}

.frontpageDivOffer
{
  position: relative;
  height: 262px;
  width: 373px;
  border-bottom: 4px solid #689096;
  text-align: center;
  z-index: 0;
}

.frontpageDivOfferCallOut
{
  pointer-events: none;
  position: absolute;
  top: 6px;
  left: 23px;
  font-size: 31px;
  font-weight: bold;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: #F78D26;
  color: White;
}

.frontpageDivOfferCallOutText
{
  width: 105px;
  height: 105px;
  display: table-cell;
  vertical-align: middle;
}

.frontpageDivOfferHeading
{
  pointer-events: none;
  position: absolute;
  right: 0px;
  top: 21px;
  font-size: 24px;
  font-weight: bold;
  color: #F78D26;
  text-align: right;
}

.frontpageDivOfferImg
{
  display: table-cell;
  vertical-align: middle;
  height: 262px;
  width: 373px;
}

.frontpageDivOfferInfoWrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    margin-bottom: 8px;
}

.frontpageDivOfferTextTopBlock {
    pointer-events: none;
    margin-bottom: 2px;
}

.frontpageDivOfferTextTop
{
  font-size: 17px;
  font-weight: bold;
  padding: 1px 0 2px 4px;
  color: #689096;
  text-align: right;
  background-color: White;
  display: inline-block;
}

.frontpageDivOfferPriceBlock {
    position: relative;
}

.frontpageDivOfferPrice
{
  pointer-events: auto;
  font-size: 31px;
  font-weight: bold;
  padding: 2px 62px 2px 8px;
  color: White;
  background-color: #F78D26;
  display: inline-block;
  cursor: pointer;
  text-align: left;
}

.frontpageDivOfferPrice:hover {
    background-color: #F99B3F;
}

.frontpageDivOfferPrice:hover
{
  background-color: #F99B3F;
}

.frontpageImgOfferCart
{
  position: absolute;
  top: 10px;
  right: 7px;
  cursor: pointer;
}

.frontpageOfferPriceExclVatNote {
    margin-bottom: 4px;
    font-size: 14px;
}

.frontpageDivOfferTextBottomBlock {
    pointer-events: none;
    margin-top: 2px;
}

.frontpageDivOfferTextBottom
{
  font-size: 17px;
  font-weight: bold;
  padding: 1px 0 2px 4px;
  color: #689096;
  text-align: right;
  background-color: White;
  display: inline-block;
}

.frontpageDivMisc
{
  width: 379px;
  margin-left: 10px;
  float: right;
}

.frontpageImgMisc
{
  margin-left: 27px;
  border: none;
}

.frontpageDivAboutUsMainHeading
{
  text-align: center;
  margin-top: 36px;
}

.frontpageDivAboutUs
{
  margin-top: 29px;
  margin-bottom: 21px;
  color: White;
  border-bottom: 4px solid #689096;
}

.frontpageAboutUsArrow
{
  position: relative;
  top: -1px;
}

.frontpageAboutUsSubHeading
{
  position: static;
  margin: 0px;
  font-size: 18px;
  font-weight: bold;
  color: White;
  background: none;
  border-bottom: none;
  padding: 0;
}

.frontpageDivAboutUsSubHeading
{
  height: 38px;
  padding-top: 7px;
  background-color: #F78D26;
  float: left;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.frontpageDivAboutUsSubHeading:hover
{
  background-color: #F99B3F;
}

.frontpageDivAboutUsSubHeadingLeft
{
  width: 315px;
}

.frontpageDivAboutUsSubHeadingMiddle
{
  width: 314px;
  margin-left: 18px;
}

.frontpageDivAboutUsSubHeadingRight
{
  width: 315px;
  margin-left: 18px;
}

.frontpageDivAboutUsBody
{
  display: none;
  color: #252525;
  font-size: 13px;
}

.frontpageTblAboutUsBody
{
  border-collapse: collapse;
}

.frontpageTdAboutUsBody
{
  background-color: #FDF3E9;
  padding: 9px 8px 13px 8px;
  vertical-align: top;
  line-height: 20px;
}

.frontpageTdAboutUsBodyLeft
{
  width: 299px;
}

.frontpageTdAboutUsBodyMiddle
{
  width: 298px;
}

.frontpageTdAboutUsBodyRight
{
  width: 299px;
}

.frontpageTdAboutUsBodyDivider
{
  width: 18px;
  background-color: White;
  padding: 0px;
}

.frontpageDivAboutUsBodyParagraph
{
  text-indent: 20px;
  display: inline-block;
}

a img
{
  border: none;
}

a
{
  color: #252525;
}

h1
{
  padding: 20px 22px;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  position: static;
  color: #F78D26;
}

h2
{
  font-size: 22px;
  font-weight: 700;
  color: #F78D26;
  margin-top: 38px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e3e3e3;
  background: url('../../images/catalog_heading_bg.png');
  padding: 12px 22px;
}

.h2Checkout
{
  margin-top: 46px !important;
}

.h2CatalogHeader
{
  font-size: 18px;
  border-bottom: none;
  background: none;
  padding: 0;
  color: #689096;
  margin-top: 24px;
  margin-bottom: 4px;
}

h3
{
  font-size: 16px;
  font-weight: 700;
  color: #689096;
  margin-top: 30px;
  margin-bottom: 5px;
}

h4
{
  font-size: 14px;
  margin-bottom: 4px;
}

.disabledSectionHeadingColor
{
  color: #999999;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 1024px)
{
  html
  {
    -webkit-text-size-adjust: 100%;
  }
}

body
{
  margin: 0px;
  font-family: Ubuntu, Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #252525;
  background-color: #FFFFFF;
}

.topTabs
{
  background-repeat: no-repeat;
  z-index: 3;
  position: absolute;
  top: 0px;
  height: 31px;
  width: 81px;
  padding-top: 9px;
  font-size: 10px;
  font-weight: bold;
  color: #252525;
  text-decoration: none;
  text-align: center;
}

.divMainPageRight
{
  position: relative;
  float: right;
  width: 774px;
  height: auto;
}

.divMainPageContents
{
  position: relative;
  width: 762px;
  padding: 13px 0 0 12px;
  margin-bottom: 20px;
}

.divCatalog
{
  position: relative;
  width: 762px;
  height: auto;
}

.pageHeadingWrapper
{
  height: 84px;
  border-bottom: 1px solid #E3E3E3;
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 762px;
  background: url('../../images/catalog_heading_bg.png');
}

.catalogHeaderDescription
{
  max-height: 999999px;
  float: left;
  padding: 15px 18px 0px 18px;
  line-height: 24px;
}

.catalogHeaderDescriptionAccessories
{
  padding-bottom: 0px;
}

.catalogHeaderImage
{
  float: right;
  position: relative;
  left: 18px;
}

.panCatalogMessageNote
{
  background-color: #E1E9EA;
  margin: 15px 0 25px;
  padding: 13px 18px;
  line-height: 18px;
}

.lblCatalogMessage
{
  position: relative;
  top: 4px;
  left: 10px;
}

.catalogMessageCheck
{
  position: relative;
  top: 1px;
  margin-right: 10px;
}

.catalogHeaderRow
{
  border-top-style: solid;
  border-bottom-style: solid;
  border-width: 1px;
  border-color: #E3E3E3;
  color: #666666;
  font-weight: 500;
}

.catalogHeaderCell
{
  height: 19px;
  vertical-align: middle;
  font-weight: 500;
  padding-top: 12px;
  padding-bottom: 11px;
}

.catalogHeaderCellBild
{
  width: 75px;
  min-width: 75px;
}

.catalogHeaderCellBenamning
{
  width: 400px;
  text-align: left;
  padding-left: 6px;
}

.catalogHeaderCellPlacering
{
  width: 80px;
  min-width: 80px;
}

.catalogHeaderCellArtikelNr
{
  width: 90px;
  min-width: 90px;
}

.catalogHeaderCellLager
{
  width: 60px;
  min-width: 60px;
}

.catalogHeaderCellPrisInkl
{
  width: 61px;
  min-width: 61px;
}

.catalogHeaderCellAntal
{
  width: 120px;
  min-width: 120px;
}

.catalogHeaderCellAntalStatic
{
  width: 90px;
}

.catalogHeaderCellAntalStaticOrderHistory
{
  width: 80px;
}

.catalogHeaderCellSumma
{

}

.catalogHeaderCellRemove
{
  width: 50px;
}

.catalogRowEmpty
{
  height: 12px;
}

.catalogRowEmptyThin
{
  height: 2px;
}

.catalogCellCategoryName
{
  height: 37px;
  vertical-align: middle;
  padding-left: 18px;
  background-color: #E1E9EA;
}

.catalogCategoryName
{
  position: static;
  font-size: 17px;
  color: #252525;
  display: inline;
  border-bottom: none;
  background: none;
  padding: 0;
}

.catalogRow
{
  height: 134px;
}

.catalogRowLineAtTop
{
  height: 134px;
  border-top: 1px solid #E3E3E3;
}

.catalogRowLineAtBottom
{
  height: 134px;
  border-bottom: 1px solid #E3E3E3;
}

.catalogCellBild
{
  width: 75px;
  text-align: center;
}

.catalogCellBildWrapperDiv
{
  position: relative;
}

.discountStarCatalog
{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  background-color: #F78D26;
  color: White;
  border-radius: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  position: absolute;
  top: -8px;
  left: -5px;
  display: none;
}

.catalogCellBenamning
{
  padding: 10px 0 10px 6px;
  line-height: 20px;
}

.catalogRowFeeArticle .catalogCellBenamning
{
  padding-top: 0;
}

.catalogRowPledgeArticle .catalogCellBenamning
{
    padding-top: 0;
}

.catalogRowPledgeArticle .catalogCellBenamning,
.catalogRowPledgeArticle .catalogCellArtikelNr,
.catalogRowPledgeArticle .checkoutCellAntalStatic,
.catalogRowPledgeArticle .mypagesReturnsCellAntal
{
    padding-top: 14px;
    padding-bottom: 17px;
}

.catalogRowPledgeArticle .mypagesReturnsCellAntal
{
    padding-right: 2px;
}

.catalogCellBenamningHeading {
    margin: 0;
}

.catalogCellBenamningName
{
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
  line-height: 20px;
}

a.catalogCellBenamningName:hover
{
  text-decoration: underline;
}

.catalogCellBenamningArticleNr {
    color: #999999;
}

.catalogCellBenamningArticleText
{
  font-size: 13px;
  display: block;
  margin-top: 5px;
}

.catalogCellBenamningReadMore
{
  font-weight: 500;
  text-decoration: none;
  color: #F78D26;
  margin-top: 5px;
  display: block;
}

.catalogCellBenamningReadMore:hover
{
  text-decoration: underline;
}

.catalogCellFeeArticleName
{
  display: inline-block;
  margin-right: 8px;
}

.catalogCellPlacering
{
  text-align: center;
  padding: 5px 0px;
  line-height: 20px;
}

.catalogCellArtikelNr
{
  text-align: center;
}

.catalogCellLager
{
  text-align: center;
}

.catalogStockLevel
{
  border-style: solid;
  border-width: 8px;
  border-radius: 100%;
  display: inline-block;
}

.stockLevelInStock
{
  border-color: #2dd32d;
}

.stockLevelInStockAtSupplier
{
  border-color: #2DD32D #2DD32D #F78D26 #F78D26;
}

.stockLevelOnOrder
{
  border-color: #F78D26;
}

.stockLevelOutOfStock
{
  border-color: #F73A25;
}

.catalogLabelStock
{
  padding-top: 1px;
  display: inline-block;
}

.catalogQuantity
{
  border-collapse: collapse;
}

.catalogQuantityCell
{
  padding: 0;
}

.catalogQuantityContainer
{
  position: relative;
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}

.catalogQuantityContainerShadow
{
  background-color: #DADADA;
  width: 102px;
  height: 40px;
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: -1;
}

.catalogQuantityButton
{
  border-style: none;
  border-width: 0px;
  padding: 0px;
  background-color: #F0F0F0;
  width: 30px;
  height: 40px;
  color: #F78D26;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0px;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
}

.catalogQuantityButton:hover
{
  background-color: #F7F7F7;
}

.catalogQuantityButton.catalogQuantityButtonDown
{
  background-image: url('../../images/quantity_down.png');
  border-right: 1px solid #DADADA;
}

.catalogQuantityButton.catalogQuantityButtonUp
{
  background-image: url('../../images/quantity_up.png');
  border-left: 1px solid #DADADA;
}

.catalogTextBoxAntal
{
  border-style: none !important;
  height: 40px !important;
  width: 40px !important;
  padding: 0px !important;
  margin: 0px !important;
  font-weight: 300;
  background-color: #F7F7F7 !important;
  line-height: 40px;
  text-align: center;
}

.catalogTextBoxAntal:focus
{
  background-color: White !important;
}

.catalogCellAntal
{
  text-align: center;
  font-weight: 500;
  padding: 0px;
}

.catalogCellPrisInkl
{
  white-space: nowrap;
  text-align: center;
  padding: 10px 6px 10px 10px;
  line-height: 22px;
}

.catalogCellPrisInklCart
{
  white-space: nowrap;
  text-align: center;
  padding: 0 6px;
}

.catalogCellSumma
{
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: bold;
}

.catalogCellRemove
{
  text-align: center;
}

.priceCatalog
{
  font-size: 20px;
  font-weight: bold;
  color: #F78D26;
}

.priceCatalogDiscounted
{
  /*position: relative;*/
  /*top: 2px;*/
}

.priceCatalogStrikeThrough
{
  text-decoration: line-through;
}

.catalogPriceExclVatNote {
    color: #999999;
}

.catalogArticleFeeContainer {
    margin: 2px 0 7px;
}

.productpageArticleFeeContainer
{
  font-size: 16px;
  font-weight: 500;
  color: #808080;
  margin-top: 2px;
}

.articleFeeInfo
{
  color: #F78D26;
  text-decoration: none;
}

.articleFeeInfo:hover
{
  text-decoration: underline;
}

.catalogCellKop
{
  text-align: center;
  padding: 0px 15px 0px 12px;
}

.catalogBuyButtonContainer
{
  position: relative;
  width: 81px;
  margin: 6px auto 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.catalogBuyButton
{
  position: relative;
  pointer-events: auto;
  font-size: 18px;
  font-weight: bold;
  padding: 3px 39px 3px 8px;
  color: White;
  background-color: #F78D26;
  display: inline-block;
  cursor: pointer;
  width: 81px;
  box-sizing: border-box;
  box-shadow: 2px 2px 5px #999999;
  transition: 0.15s;
}

.catalogBuyButton:hover
{
  background-color: #F99B3F;
}

.catalogBuyButtonCart
{
  position: absolute;
  top: 5px;
  right: 7px;
  cursor: pointer;
}

.catalogNrInCart {
    background-color: #E1E9EA;
    padding: 9px 7px;
    display: none;
    color: #252525;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    line-height: initial;
}

.productpageQuantityAndBuy .catalogNrInCart {
    width: 225px;
    margin-left: 122px;
    text-align: center;
}

.catalogNrInCartArrow
{
  position: absolute;
  width: 0px;
  height: 0px;
  border-bottom: 10px solid #E1E9EA;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: -10px;
  left: 61px;
}

.productpageQuantityAndBuy .catalogNrInCartArrow {
    left: 213px;
}

.catalogQuantityInStock {
    background-color: #FDE8D4;
    padding: 9px 7px 6px;
    display: none;
    color: #252525;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    width: 150px;
    right: 83px;
    white-space: normal;
    border-radius: 3px;
    line-height: initial;
}

.checkoutArticlesTable .catalogQuantityInStock {
    right: 0;
}

.productpageQuantityAndBuy .catalogQuantityInStock {
    width: 225px;
    margin-left: 122px;
    right: 0;
    text-align: center;
}

.catalogQuantityInStockArrow {
    position: absolute;
    width: 0px;
    height: 0px;
    border-bottom: 10px solid #FDE8D4;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: -10px;
    left: 119px;
}

.checkoutArticlesTable .catalogQuantityInStockArrow {
    left: 77px;
}

.catalogQuantityInStockIcon {
    width: 20px;
    height: 20px;
    fill: #252525;
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
    top: -1px;
    position: relative;
}

.catalogMakeFilter {
    margin: 16px 0 18px;
    background-color: #E1E9EA;
    padding: 15px 18px;
}

.catalogMakeFilterHeading
{
  float: left;
  font-size: 20px;
  width: 167px;
}

.catalogMakeFilterItems
{
  float: right;
  width: 539px;
  padding-left: 20px;
  line-height: 20px;
}

.catalogMakeFilterItem
{
  white-space: pre-wrap;
}

.catalogMakeFilterLink
{
  color: #252525;
  text-decoration: none;
}

.catalogMakeFilterLink:hover
{
  text-decoration: underline;
}

.shoppingCartTable
{
  margin-top: 25px;
}

.shoppingCartTable .catalogHeaderRow, 
.checkoutArticlesTable .catalogHeaderRow, 
.orderconfArticlesTable .catalogHeaderRow, 
.mypagesTblOrderRows .catalogHeaderRow
{
  border-bottom-style: none;
}

.shoppingCartTable .catalogRow, 
.checkoutArticlesTable .catalogRow
{
  height: 114px;
  border-top: 1px solid #E3E3E3;
}

.orderconfArticlesTable .catalogRow, 
.mypagesTblOrderRows .catalogRow
{
  height: 50px;
  border-top: 1px solid #E3E3E3;
}

.mypagesTblReturnRows .catalogRow
{
  height: 50px;
  border-bottom: 1px solid #E3E3E3;
}

.shoppingCartTable .catalogRow.catalogRowWithFees, 
.checkoutArticlesTable .catalogRow.catalogRowWithFees
{
  height: 98px;
}

.shoppingCartTable .catalogRowFeeArticle, 
.checkoutArticlesTable .catalogRowFeeArticle
{
  height: 41px;
  vertical-align: top;
  color: #808080;
}

.orderconfArticlesTable .catalogRowFeeArticle, 
.mypagesTblOrderRows .catalogRowFeeArticle
{
  height: 33px;
  vertical-align: top;
}

.mypagesTblReturnsOrderRows .catalogRowPledgeArticle {
    height: 59px;
}

.shoppingCartMessage
{
  margin-bottom: 0;
}

.shoppingCartSummaryTable
{
  width: 100%;
  margin-bottom: 30px;
  border-top: 1px solid #E3E3E3 !important;
}

.checkoutArticlesSummaryTable
{
  margin-bottom: 0px;
}

.shoppingCartSummarySumma
{
  font-weight: 500;
  text-align: right;
  padding-top: 10px;
}

.shoppingCartSummarySummaValue
{
  font-weight: 500;
  text-align: right;
  padding-top: 10px;
  padding-right: 10px;
  width: 100px;
}

.shoppingCartSummaryRowTotal
{
  border-top: solid 2px #252525;
}

.shoppingCartSummaryTotal
{
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  padding-top: 10px;
}

.shoppingCartSummaryTotalValue
{
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  padding-top: 10px;
  padding-right: 10px;
  width: 100px;
}

.shoppingCartSummaryTotalVAT
{
  font-weight: 500;
  text-align: right;
  padding-top: 5px;
  color: #999999;
}

.shoppingCartSummaryTotalVATValue
{
  font-weight: 500;
  text-align: right;
  padding-top: 5px;
  padding-right: 10px;
  width: 100px;
  color: #999999;
}

.shoppingCartSummaryFee
{
  font-weight: 500;
  text-align: right;
  padding-top: 5px;
  padding-bottom: 10px;
}

.shoppingCartSummaryFeeValue
{
  font-weight: 500;
  text-align: right;
  padding-top: 5px;
  padding-bottom: 10px;
  padding-right: 10px;
  width: 100px;
}

.shoppingCartEmptyButton
{
  width: 150px;
  margin-left: 10px;
  display: inline-block;
}

.shoppingCartUpdateButton
{
  width: 150px;
  margin-left: 20px;
  display: inline-block;
}

.shoppingCartRowUpdateButton
{
  margin-bottom: 12px;
}

.shoppingCartCheckoutButton
{
  width: 200px;
  margin-left: 202px;
  display: inline-block;
}

.shoppingCartContinueArrow
{
  border-width: 0px;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.shoppingCartContinue
{
  color: #689096;
  font-size: 16px;
  margin-left: 7px;
  text-decoration: none;
  display: inline-block;
}

.shoppingCartContinue:hover
{
  text-decoration: underline;
}

.checkoutPromoCodesValueWrapper {
    background-color: #6EDE71;
    padding: 20px;
    font-weight: bold;
    margin: 18px auto;
    text-align: center;
}

.checkoutPromoCodesValue {
    font-weight: normal;
}

.createuserUserInfo {
    line-height: 40px;
    margin: 35px 0 0 10px;
}

.createuserPasswordWrapper
{
  margin-top: 10px;
}

.createuserCustomerTypeWrapper
{
  margin: 15px 0;
}

.createuserRbtnRegularCustomer
{
  display: inline-block;
  margin-left: 185px;
}

.createuserRbtnCompanyCustomer
{
  display: inline-block;
  margin-left: 10px;
}

.createuserLabel
{
  width: 180px;
  display: inline-block;
}

.createuserTextBox
{
  width: 300px;
  height: 32px !important;
  line-height: 32px !important;
}

.createuserTextBoxError
{
  background-color: #FF6464 !important;
}

.btnAddCo
{
  position: absolute;
  top: 9px;
  left: 380px;
  /*display: inline-block;*/
  display: none;
  background-color: #D0D0D0;
  width: 65px;
  height: 22px;
  font-size: 10px;
  text-align: center;
  line-height: 22px;
}

.btnAddCo:hover
{
  background-color: #D7D7D7;
  cursor: pointer;
}

.btnAddCo + input[type=text], .btnAddCo + input[type=password]
{
  padding-right: 72px;
}

.btnAddCo:hover + input[type=text], .btnAddCo:hover + input[type=password]
{
  border: 1px solid #A0A0A0;
}

.createuserTbPostalCode
{
  width: 75px;
  height: 32px !important;
  line-height: 32px !important;
}

.createuserTbCity
{
  width: 204px;
  margin-left: 5px !important;
  height: 32px !important;
  line-height: 32px !important;
}

.createuserStar
{
  color: #ED1C24;
  display: inline-block;
  margin-left: 7px;
  position: relative;
  top: -8px;
}

.createuserBtnCreateUser
{
  width: 230px;
  margin: 25px 0 25px 260px;
}

.loginControlsWrapper
{
  margin: 50px 200px;
}

.mypagesLeft
{
  float: left;
}

.mypagesRight
{
  float: right;
  width: 599px;
  box-sizing: border-box;
  padding: 0 5px 0 15px;
  line-height: 20px;
}

.mypagesMenuBg
{
  color: White !important;
  background-color: #F78D26;
  font-weight: 700 !important;
  text-decoration: none !important;
  cursor: default;
}

.mypagesMenuLabel
{
  display: block;
  width: 160px;
  margin-bottom: 10px;
  padding-left: 14px;
  line-height: 40px;
  font-weight: 500;
  text-decoration: none;
  box-sizing: border-box;
  color: #689096;
}

.mypagesMenuLabel:hover
{
  text-decoration: underline;
}

.mypagesPanel
{
  max-height: 999999px;
  position: relative;
}

.mypagesPanelHidden
{
  display: none;
}

.mypagesBtnSaveSettings
{
  width: 230px;
  margin: 25px 0 25px 250px;
}

.mypagesHelloHeading
{
  margin-top: 7px;
}

.cellCustomerStatisticsPeriod {
    font-weight: 700;
    padding: 10px 20px 0 0;
    width: 150px;
}

.cellCustomerStatisticsPeriodValue {
    font-weight: bold;
    padding-top: 10px;
}

.cellCustomerStatisticsPeriodDetails {
    font-weight: 300;
    padding-left: 20px;
}

.cellCustomerStatisticsPeriodDetailsValue {
    font-weight: 300;
}

.chartPartsForCarMakesContainer {
    margin-top: 20px;
}

.chartPartsForCarMakes
{
  vertical-align: top;
}

.mypagesTblOrderHistory
{
  width: 100%;
  margin: 30px 0 15px;
}

.mypagesSettingsControls
{
  line-height: 40px;
  margin-top: 15px;
}

.mypagesReturnInfoNote
{
  display: block;
  font-style: italic;
  margin: 5px 0 0 15px;
}

.divTextContent
{
  max-height: 999999px;
  margin-top: 15px;
  line-height: 20px;
}

.hrInPage
{
  border: 0;
  height: 1px;
  color: #E3E3E3;
  background-color: #E3E3E3;
}

.checkoutArticlesTable
{
  margin-top: 25px;
}

.checkoutCellAntal
{
  text-align: center;
}

.checkoutCellAntalStatic
{
  text-align: center;
  font-weight: 500;
}

.checkoutRbtnCustomer
{
  display: block;
  font-size: 16px;
  margin-left: 40px;
}

.checkoutRbtnCustomer label
{
  padding-left: 10px;
}

.checkoutRbtnNewCustomer
{
  margin-top: 20px;
  margin-bottom: 10px;
}

.checkoutRbtnGuestCustomer {
    margin-top: 10px;
}

.checkoutDivCustomerType {
    display: none;
}

.checkoutRbtnNewCustomerType
{
  display: block;
  margin: 0 0 8px 67px;
}

.checkoutRbtnNewCustomerTypeFirst {
    margin-top: 10px;
}

.checkoutRbtnNewCustomerType label {
    padding-left: 8px;
}

.checkoutRbtnNewCustomerCompany
{
  margin-bottom: 15px;
}

.checkoutRbtnGuestCustomerCompany {
    margin-bottom: 0;
}

.checkoutDivLoggedInAs {
    display: none;
    margin: 15px 0 0 72px;
}

.checkoutLblLoggedInAs
{
  font-weight: bold;
}

.checkoutLbtnLogOut
{
  color: #F78D26;
  text-decoration: none;
}

.checkoutLbtnLogOut:hover
{
  text-decoration: underline;
}

.checkoutDivLoginControls
{
  display: none;
  margin-left: 73px;
  width: 289px;
}

.checkoutDivCheckoutSections
{
  max-height: 999999px;
  padding-left: 10px;
}

.checkoutDivPromoCodeContent
{
  line-height: 20px;
  padding-left: 10px;
}

.checkoutLblPromoCode
{
  margin-bottom: 20px;
}

.checkoutTbPromoCode
{
  display: inline-block;
  width: 190px;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutBtnPromoCodeAdd
{
  display: inline-block;
  position: relative;
  margin-left: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  line-height: 32px;
  width: 121px;
  height: initial;
}

.checkoutDivShippingInfoContent
{
  /*display: none;*/
}

.checkoutDivCustomerInfo
{
  display: none;
  line-height: 40px;
  padding-left: 10px;
  margin-bottom: 10px;
}

.checkoutLblCustomerInfo
{
  width: 150px;
  display: inline-block;
}

.checkoutDivCustomerInfoPassword
{
  margin-top: 14px;
}

.checkoutTbCustomerInfo
{
  width: 300px;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutInfoStar
{
  color: #ED1C24;
  display: inline-block;
  margin-left: 7px;
  position: relative;
  top: -8px;
}

.checkoutInfoStarGrey
{
  color: Gray;
}

.checkoutDivShippingInfoInner
{
  float: left;
  padding-left: 10px;
  line-height: 40px;
}

.checkoutShippingInfoSubHeading
{
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

.checkoutLblShippingInfo
{
  width: 150px;
  display: inline-block;
}

.checkoutTbShippingInfo
{
  width: 300px;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutTbShippingInfoPostalCode
{
  width: 75px;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutTbShippingInfoCity
{
  width: 204px;
  margin-left: 5px !important;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutDivShippingInfoChooseAddress
{
  display: none;
}

.checkoutDdlShippingInfoChooseAddress
{
  width: 212px;
}

.checkoutDivInvoiceToShippingAddress
{
  display: none;
  margin-top: 7px;
}

.checkoutLblInvoiceToShippingAddress
{
  width: 150px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
}

.checkoutDivInvoiceAddress
{
  display: none;
}

.checkoutLblInvoiceTo
{
  width: 150px;
  display: inline-block;
}

.checkoutDdlInvoiceAddressChooseAddress
{
  width: 212px;
}

.checkoutTbInvoiceTo
{
  width: 300px;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutTbInvoiceToPostalCode
{
  width: 75px;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutTbInvoiceToCity
{
  width: 204px;
  margin-left: 5px !important;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutDivMandatoryField
{
  line-height: normal;
}

.checkoutLblMandatoryField
{
  display: inline-block;
  width: 450px;
  text-align: right;
  font-size: 13px;
  color: #808080;
  line-height: 24px;
}

.checkoutLblMandatoryStar
{
  color: Red;
}

.checkoutDivShippingInfoOther
{
  float: right;
  width: 235px;
  margin-top: 36px;
}

.checkoutLblShipmentDesignation
{
  display: block;
  margin-bottom: 3px;
}

.checkoutTbShipmentDesignation
{
  display: block;
  width: 225px;
  height: 32px !important;
  line-height: 32px !important;
}

.checkoutLblMessageToMekanika
{
  display: block;
  margin-top: 20px;
  margin-bottom: 3px;
}

.checkoutTbMessageToMekanika
{
  display: block;
  resize: none;
  width: 225px;
  height: 110px;
  box-sizing: border-box;
}

.checkoutDivDeliveryOptionsContent
{
  padding-left: 10px;
}

.checkoutADeliveryInfo
{
  color: #F78D26;
  text-decoration: none;
}

.checkoutADeliveryInfo:hover
{
  text-decoration: underline;
}

.checkoutDivPaymentOptionsContent
{
  line-height: 20px;
  padding-left: 10px;
}

.checkoutDivPaymentOptionsContent input + label
{
  padding-left: 8px;
}

.checkoutDivPaymentOptionsCards
{
  margin-left: 30px;
  margin-top: 25px;
}

.checkoutDivPaymentOptionsBank
{
  margin-left: 30px;
  margin-top: 30px;
}

.checkoutDivKlarnaInvoice
{
  margin-left: 30px;
  margin-top: 33px;
  position: relative;
}

.checkoutKlarnaIframe
{
  color: #F78D26;
  text-decoration: none;
}

.checkoutKlarnaIframe:hover
{
  text-decoration: underline;
}

.checkoutDivPaymentOptionsSocSecOrOrgNr
{
  margin-top: 15px;
  margin-left: 10px;
}

.checkoutLblPaymentOptionsSocialSecNr
{
  display: block;
}

.checkoutLblPaymentOptionsOrgNr
{
  display: none;
}

.checkoutTbPaymentOptionsSocSecOrOrgNr
{
  width: 150px;
  height: 32px !important;
  line-height: 32px !important;
  margin-top: 3px !important;
}

.checkoutKlarnaSpinner
{
  position: relative;
  display: inline-block;
  width: 20px;
  margin-left: 3px;
  margin-right: 5px;
}

.checkoutLblKlarnaInvoiceOrgNrFormat
{
  display: none;
}

.checkoutDivPaymentOptionsAddressInfo
{
  display: none;
}

.checkoutDivPaymentOptionsChooseAddress
{
  display: none;
  margin-top: 15px;
}

.checkoutDdlPaymentOptionChooseAddress
{
  margin-top: 3px;
  width: 400px !important;
}

.genericSelect.sod_select.checkoutDdlPaymentOptionChooseAddress .sod_list_wrapper
{
  min-width: 400px;
}

.checkoutDivKlarnaAccount
{
  margin-left: 30px;
  margin-top: 28px;
  position: relative;
}

.checkoutBtnSendOrderInt
{
  position: absolute;
  visibility: hidden;
}

.checkoutBtnSendOrder
{
  font-weight: 500;
  height: 60px;
  line-height: 60px;
  width: 240px;
  display: inline-block;
  box-sizing: border-box;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  padding-top: 0px;
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
}

.checkoutBtnSendOrder:hover
{
  padding-left: 15px;
  padding-right: 15px;
}

.checkoutDivCheckboxesBottom
{
  line-height: 32px;
  width: 500px;
  margin: auto;
}

.checkoutMekanikasTerms
{
  font-weight: bold;
}

.checkoutMekanikasTermsLink
{
  color: #F78D26;
  text-decoration: none;
}

.checkoutMekanikasTermsLink:hover
{
  text-decoration: underline;
}

.orderConfCellBenamningName {
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}

.orderConfCellBenamningName:hover {
    text-decoration: underline;
}

.orderconfOrderDetailsTable
{
  display: block;
}

.orderConfInfoCategory
{
  font-weight: bold;
  width: 120px;
  min-width: 120px;
  vertical-align: top;
}

.divOrderConfOrderDetails
{
  margin: 0 38px 24px 38px;
}

.orderconfShippingDetails
{
  display: inline-block;
}

.orderconfInvoiceDetails
{
  display: none;
  margin-left: 50px;
}

.orderconfArticlesHeading
{
  color: #689096;
  border-bottom: none;
  background: none;
  padding: 0;
}

.orderconfArticlesTable
{
  width: 100%;
  border-bottom: 1px solid #E3E3E3;
}

.orderconfCellSumma
{
  color: #252525;
}

.orderconfSummaryTable
{
  width: 100%;
}

.orderconfSummaryNoBottomPadding
{
  padding-bottom: 0px;
}

.orderconfHeaderCellBenamning
{
  width: auto;
}

.orderconfHeaderCellSumma
{
  width: 61px;
}

.mypagesLblMandatoryField
{
  display: inline-block;
  width: 480px;
  text-align: right;
  font-size: 13px;
  color: #808080;
  line-height: 24px;
}

.mypagesOrderHistoryRow
{
    cursor: pointer;
}

.mypagesOrderHistoryRow:hover
{
    background-color: #E1E9EA;
}

.mypagesReturnsIncDec
{
  width: 40px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  display: inline-block;
}

.mypagesReturnsInc
{
  color: #F78D26;
}

.mypagesReturnsInc:hover
{
  color: #F99B3F;
}

.mypagesReturnsDec
{
  color: #689096;
  display: inline-block;
  margin-left: 10px;
}

.mypagesReturnsDec:hover
{
  color: #779CA1;
}

.tblOrderHistoryCell
{
  text-align: center;
  height: 30px;
}

.tblOrderHistoryRowSelected {
    font-weight: 700;
    background-color: #C7D7D9 !important;
}

.tblOrderHistoryCellOrderNr {
    font-weight: bold;
}

.tblOrderHistoryEndRow .tblOrderHistoryCell {
    border-bottom: 1px solid #E3E3E3;
}

.mypagesCellOrderInfoCategory
{
  font-weight: bold;
  width: 120px;
  min-width: 120px;
  vertical-align: top;
}

.lbtnOrderHistory
{
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.lbtnOrderHistory:hover
{
  text-decoration: underline;
}

.mypagesDivOrderInfo
{
  display: none;
}

.mypagesOrderInfoHeading
{
  margin-top: 50px;
}

.mypagesTblOrderRows
{
  margin-top: 30px;
  width: 100%;
  border-bottom: 1px solid #E3E3E3;
}

.divReturnsOrderInfo
{
  display: none;
}

.checkoutDivDeliveryOptionsDesc
{
  line-height: 20px;
}

.checkoutTblOptions
{
  font-size: 16px;
  margin-top: 11px;
  width: 100%;
  border-collapse: collapse;
}

.checkoutTblOptions td
{
  height: 60px;
  vertical-align: middle;
  padding: 14px 0 0;
}

.checkoutTblOptions input + label
{
  padding-left: 8px;
}

.checkoutDivOptionDescription
{
  color: #808080;
  line-height: 18px;
  margin-top: 3px;
  font-size: 14px;
  cursor: pointer;
}

.tblcellOptionsLogo
{
  width: 126px;
  min-width: 126px;
  text-align: center;
  padding-left: 10px !important;
}

.tblcellOptionsLogo img
{
  cursor: pointer;
}

.tblcellOptionsType
{
  width: 40px;
  text-align: center;
}

.tblcellOptionsDescription *
{
  cursor: pointer;
}

.productpageTblProductInfo
{
  border-collapse: collapse;
  padding: 0;
  margin: 5px 0 0 0;
  border: 0;
}

.productpageTblProductInfo td
{
  padding: 0;
}

.productpageDivProductPhoto
{
  position: relative;
  width: 381px;
  height: 230px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}

.productpageDiscountStar
{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 20px;
  background-color: #F78D26;
  color: White;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0px;
  left: 3px;
}

.productpageDiscountStar div
{
  width: 100px;
  height: 100px;
  display: table-cell;
  vertical-align: middle;
}

.productpageNoPhoto
{
  color: #999999;
  font-size: 18px;
  font-weight: 500;
}

.productpageProductRight
{
  width: 361px;
  margin-top: 15px;
  padding-left: 20px;
}

.productpageProductInfo
{
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E3E3E3;
}

.productpageArticleNr
{
  color: #808080;
}

.productpageArticleNrValue
{
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 5px;
  border-bottom: none;
  background: none;
  color: #689096;
}

.productpageInfoList
{
  list-style-type: square;
}

.productpagePrice
{
  margin: 0 0 20px 130px;
}

.productpageLblPrice
{
  font-size: 36px;
  font-weight: 700;
  color: #F78D26;
}

.productpageLblPriceRegular
{
  display: block;
  font-size: 23px;
  font-weight: 500;
  color: #808080;
  text-decoration: line-through;
}

.productpageLblListPrice
{
    text-decoration: none;
    padding-top: 4px;
}

.productpagePriceExclVatNote {
    color: #999999;
}

.productpageBtnBuy {
    position: absolute;
    display: inline-block;
    width: 239px;
    font-size: 24px;
    font-weight: bold;
    padding: 6px 0px 34px 18px !important;
    box-sizing: border-box;
    right: 0px;
}

.productpageBtnBuyCart
{
  position: absolute;
  top: 10px;
  right: 11px;
}

.productpageSubHeading
{
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 10px;
  color: #252525;
}

.productpageSubHeadingBold
{
  font-weight: 700;
}

.productpageStockLevelWrapper
{
  margin: 18px 0 0 141px;
  display: flex;
}

.productpageStockLevel
{
  border-style: solid;
  border-width: 12px;
  border-radius: 100%;
  height: 0;
}

.productpageLabelStock
{
  font-size: 16px;
  margin-left: 10px;
}

.productpagePanDescription
{
  max-height: 999999px;
}

.productpageH2Description
{
  margin-top: 33px;
}

.productpageLblDescription
{
  line-height: 20px;
}

.productpageDivCompatibleCars
{
  margin-bottom: 14px;
  color: #808080;
  font-size: 16px;
  line-height: 20px;
}

.productpageUlCompatibleCars
{
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.productpageLiCompatibleCars
{
  padding-bottom: 6px;
}

.productpageLinkToLandingPage
{
  color: #808080;
  text-decoration: none;
}

.productpageLinkToLandingPage:hover
{
  text-decoration: underline;
}

.productpageImportantNote
{
  line-height: 20px;
}

.mypagesReturnStep2Heading
{
  margin-top: 50px;
}

.divReturnsReturnReason
{
  display: none;
}

.mypagesReturnReasonWrapper
{
  margin: 15px 0;
}

.mypagesTbReturnReason
{
  display: block;
  width: 100%;
  height: 128px;
  margin-top: 3px !important;
  resize: none;
}

.mypagesBtnReturnsSend
{
  display: none;
  margin-top: 25px;
  width: 230px;
}

.checkoutLblPaymentOptionsName 
{
  cursor: pointer;
}

.checkoutDivPaymentOptionsInfo
{
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  margin: 10px 0px;
  padding: 0px 15px 15px 15px;
  font-size: 14px;
}

.checkoutKlarnaChangeSocSecOrOrgNr
{
  display: inline-block;
  color: #F78D26;
  margin-top: 3px;
  text-decoration: none;
}

.checkoutKlarnaChangeSocSecOrOrgNr:hover
{
  text-decoration: underline;
}

.checkoutDivPaymentOptionsAddressRows
{
  font-weight: bold;
  margin-top: 3px;
}

.mypagesDivReturnInfo
{
  display: none;
}

.mypagesTblReturnRows
{
  margin-top: 30px;
  width: 100%;
}

.aSupportLink
{
  display: block;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  margin-left: 20px;
  color: #689096;
}

.aSupportLink:hover
{
  text-decoration: underline;
}

.aSupportLinkSelected
{
  font-weight: bold;
  color: #F78D26;
}

.panSupportContent
{
  display: none;
  position: relative;
  top: -10px;
}

.supportFilmWrapper
{
  padding-left: 194px;
  margin: 25px 0;
}

.faqTable
{
  border-collapse: collapse;
}

.faqTableHeading
{
  line-height: 20px;
}

.faqTableLeftCol
{
  width: 33px;
}

.faqTableBullet
{
  font-size: 20px;
  display: block;
  padding-left: 19px;
  margin-top: 30px;
  color: #689096;
}

.catalogPagesOuter
{
  width: 762px;
  margin-top: 10px;
}

.catalogPagesInner
{
  margin-left: auto;
  margin-right: auto;
}

.catalogPagePrevNext
{
  width: 120px;
}

.catalogPagePrev
{
  padding-right: 10px;
  text-align: right;
}

.catalogPageNext
{
  padding-left: 10px;
  text-align: left;
}

.catalogPageNumberCell
{
  text-align: center;
}

.catalogPageNumberLink
{
  font-size: 16px;
  text-decoration: none;
}

.catalogPageNumberLink:hover
{
  text-decoration: underline;
}

.divFrontPageMsg
{
  display: none;
  background-color: #E1E9EA;
  padding: 15px 18px;
  margin-bottom: 22px;
}

.checkoutDivBottomMsg
{
  display: none;
  background-color: #E1E9EA;
  margin-top: 24px;
  padding: 15px 18px;
}

.checkoutSummary {
  margin-top: 30px;
  text-align: center;
  width: 100%;
  border-top: solid 2px #252525;
}

.aboutusTblFilmRoom
{
  margin-top: 36px;
}

.aboutusTblFilmRoom td
{
  padding: 0;
}

.aboutusTdFilmRoomDescription
{
  padding: 2px 0 0 20px !important;
  vertical-align: top;
}

.aboutusDivFilmRoomHeading
{
  width: 272px;
}

.aboutusHlToFilmRoomHeading
{
  color: #F78D26;
  text-decoration: none;
  display: block;
}

.aboutusHlToFilmRoomHeading:hover span
{
  text-decoration: underline;
}

.aboutusFilmRoomHeadingText
{
  font-size: 33px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  top: -15px;
  left: 3px;
}

.divAboutUsInventory
{
  max-height: 999999px;
  display: inline;
  float: left;
}

.divAboutUsInventoryPhoto
{
  display: inline;
  float: right;
}

.imgAboutUsInventory
{
  padding-left: 15px;
}

.divFPContactInfoContent.divAboutUsContactInfoContent
{
  border: none;
  height: 150px;
  margin: 26px 0 0 30px;
}

.divAboutUsContactInfoContent .imgFPContactInfoTele
{
  top: 64px;
}

.divAboutUsContactInfoContent .lblFPContactInfoTele
{
  top: 62px;
}

.divAboutUsContactInfoContent .lblFPContactInfoTeleHours
{
  top: 81px;
}

.divAboutUsContactInfoContent .imgFPContactInfoMail,
.divAboutUsContactInfoContent .aFPContactInfoMail
{
  top: 126px;
}

.qMarkCircle
{
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-weight: bold;
  color: White;
  line-height: 18px;
  text-align: center;
  background: #689096;
  margin-left: 6px;
}

.imgMekanikaPlusAutobutler
{
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
}

.divAutobutlerSectionCommon
{
  padding-left: 50px;
  padding-right: 50px;
  font-size: 16px;
  text-align: justify;
}

divAutobutlerSectionOffer
{
  position: relative;
}

.divAutobutlerSectionSignUp
{
  margin-bottom: 80px;
}

.divAutobutlerHeading
{
  margin-top: 30px;
  text-align: center;
  font-size: 24px;
}

.divAutobutlerInventoryPhoto
{
  position: absolute;
  left: 557px;
  width: 203px;
}

.imgAutobutlerInventoryPhoto
{
  position: absolute;
  top: -50px;
  left: -5px;
}

.divAutobutlerForm
{
  line-height: 27px;
  text-align: left;
  background-color: #ECECEC;
  font-size: 16px;
  width: 400px;
  margin: 40px auto 0;
  padding: 10px;
  border-radius: 5px;
}

.lblAutobutlerForm
{
  width: 180px;
  display: inline-block;
}

.tbAutobutlerForm
{
  width: 200px;
  font-weight: bold;
}

.tbAutobutlerFormPostalCode
{
  width: 45px;
  font-weight: bold;
}

.tbAutobutlerFormCity
{
  width: 135px;
  font-weight: bold;
}

.lblAutobutlerFormAsterisk
{
  color: Red;
  display: inline-block;
  width: 9px;
  text-align: right;
}

.lblAutobutlerFormAsteriskPostalCode
{
  color: Red;
  display: inline-block;
  width: 9px;
  text-align: right;
  padding-right: 1px;
}

.lblAutobutlerMandatoryField
{
  display: inline-block;
  width: 277px;
  font-size: 12px;
  text-align: right;
}

.lblAutobutlerMandatoryStar
{
  color: Red;
}

.btnAutobutlerSend
{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.pAutobutlerDisclaimer
{
  font-size: 12px;
  font-style: italic;
  color: #5A5A5A;
  margin-top: 20px;
}

.makepageDivPromises
{
  padding: 15px 10px;
  line-height: 16px;
  background-color: #F78D26;
  color: white;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 4px solid #689096;
}

.makepageTblPromises
{
  width: 100%;
  text-align: center;
}

.makepageTdPromisesHeading
{
  width: 33%;
  font-weight: bold;
  font-size: 20px;
  color: White;
  padding-bottom: 6px;
}

.makepageImgPromiseTick
{
  position: relative;
  top: 1px;
  display: inline-block;
  margin-right: 10px;
}

.makepagePopular
{
  position: relative;
  height: 212px;
  width: 246px;
  border-bottom: 4px solid #689096;
  text-align: center;
  z-index: 0;
  float: left;
}

.makepagePopularCallOut
{
  pointer-events: none;
  position: absolute;
  top: 6px;
  left: 23px;
  font-size: 16px;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #F78D26;
  color: White;
  z-index: 1;
}

.makepagePopularCallOutText
{
  width: 70px;
  height: 70px;
  display: table-cell;
  vertical-align: middle;
}

.makepagePopularHeading
{
  pointer-events: none;
  position: absolute;
  right: 0px;
  top: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #F78D26;
  text-align: right;
}

.makepagePopularImgWrapper
{
  padding: 42px 0 9px;
  width: 246px;
  height: 160px;
  text-align: center;
  z-index: -1;
  display: table-cell;
  vertical-align: middle;
}

.makepagePopularTextTopBlock
{
  pointer-events: none;
  position: absolute;
  right: 0px;
  top: 115px;
}

.makepagePopularTextTop
{
  font-size: 17px;
  font-weight: bold;
  padding: 1px 0 2px 4px;
  color: #689096;
  text-align: right;
  background-color: White;
  display: inline-block;
}

.makepagePopularPriceBlock
{
  position: absolute;
  right: 0px;
  top: 141px;
}

.makepagePopularPrice
{
  pointer-events: auto;
  font-size: 24px;
  font-weight: bold;
  padding: 2px 30px 2px 8px;
  color: White;
  background-color: #F78D26;
  display: inline-block;
  text-align: left;
  cursor: pointer;
}

.makepagePopularPriceExclVatNote {
    margin-bottom: 4px;
    font-size: 14px;
}

.makepagePopularTextBottomBlock {
    pointer-events: none;
    position: absolute;
    right: 0px;
    top: 177px;
}

.makepagePopularTextBottom
{
  font-size: 17px;
  font-weight: bold;
  padding: 1px 0 2px 4px;
  color: #689096;
  text-align: right;
  background-color: White;
  display: inline-block;
}

.makepageMenuLinks
{
  max-height: 999999px;
  line-height: 20px;
}

.makepageMakeText
{
  max-height: 999999px;
  line-height: 20px;
  margin-bottom: 30px;
}

.genericSelect
{
    
}

.genericSelect.sod_select:hover
{
  border: 1px #A0A0A0 solid;
}

.genericSelect.sod_select,
.genericSelect.sod_select.focus,
.genericSelect.sod_select.open
{
  width: 300px;
  padding: 7px 13px;
  color: #252525;
  line-height: normal;
  font-size: 12px;
  box-shadow: none;
  text-transform: none;
  cursor: pointer;
  border: 1px #D0D0D0 solid;
  background-color: #FDFDFD;
}

.genericSelect.sod_select:before
{
  content: none;
}

.genericSelect.sod_select:after
{
  font-size: 12px;
  bottom: 8px;
}

.genericSelect.sod_select .sod_label.sod_placeholder
{
  font-size: 23px;
  font-weight: bold;
  /*overflow: visible;*/
}

.genericSelect.sod_select.disabled
{
  border-color: White;
  color: #B0C1C4;
}

.genericSelect.sod_select .sod_label
{
  font-size: 14px;
  font-weight: bold;
  /*overflow: visible;*/
}

.genericSelect.sod_select .sod_list_wrapper
{
  width: auto;
  min-width: 300px;
  left: -1px;
  margin: 0;
  padding-right: 1px;
  border: 1px solid #D0D0D0;
  border-radius: 0;
  color: #252525;
  z-index: 1000;
}

.genericSelect.sod_select .sod_option
{
  padding-right: 40px;
  text-overflow: initial;
}

.genericSelect.sod_select .sod_option.active
{
  color: #252525;
}

.filmroomTblLatest
{
  border-collapse: collapse;
}

.filmroomCellLatest
{
  vertical-align: top;
  padding: 0 0 10px;
}

.filmroomCellLatestRight
{
  padding: 0 0 10px 14px;
}

.filmroomVideoBig
{
  width: 366px;
  display: table-cell;
}

.filmroomVideoBigWrapper
{
  background-color: #689096;
  padding: 4px;
}

.filmroomVideoBigThumb
{
  width: 366px;
  height: 205px;
  vertical-align: middle;
}

.filmroomVideoBigHeadingWrapper
{
  background-color: #F78D26;
  margin: 0 4px;
}

.filmroomVideoBigHeading
{
  padding: 14px 15px;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: White;
}

.filmroomVideoBigLinkHeading
{
  color: White;
  text-decoration: none;
}

.filmroomVideoBigLinkHeading:hover
{
  text-decoration: underline;
}

.filmroomVideoBigDescription
{
  max-height: 999999px;
  padding: 15px 8px 15px;
  line-height: 20px;
  font-weight: 500;
}

.filmroomVideoBigFooter
{
  border-top: 1px solid #E3E3E3;
  margin: 0 4px;
}

.filmroomVideoBigUploaded
{
  color: #999999;
  font-size: 12px;
  padding: 10px;
}

.filmroomVideoSmall
{
  margin-top: 25px;
}

.filmroomVideoSmallLeft
{
  float: left;
  position: relative;
  border: 2px solid #689096;
}

.filmroomVideoSmallThumb
{
  width: 235px;
  height: 132px;
  vertical-align: middle;
}

.filmroomPopUp
{
  display: block;
}

.filmroomVideoSmallRight
{
  width: 510px;
  float: right;
}

.filmroomVideoSmallHeading
{
  margin: 0;
  padding: 0;
  color: #F78D26;
  font-size: 20px;
  font-weight: 500;
}

.filmroomVideoSmallLinkHeading
{
  color: #F78D26;
  text-decoration: none;
}

.filmroomVideoSmallLinkHeading:hover
{
  text-decoration: underline;
}

.filmroomVideoSmallDescription
{
  max-height: 999999px;
  line-height: 20px;
  font-weight: 500;
  margin: 10px 0 15px;
  padding-right: 15px;
}

.filmroomVideoSmallFooter
{
  border-top: 1px solid #E3E3E3;
}

.filmroomVideoSmallUploaded
{
  color: #999999;
  font-size: 12px;
  padding: 10px;
}

.touch .filmroomPlayButton
{
  background-image: url('../../images/ytPlayBright.png');
}

.no-touch .filmroomPlayButton
{
  background-image: url('../../images/ytPlayDark.png');
}

.filmroomPlayButton
{
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}

.filmroomPlayButton:hover
{
  background-image: url('../../images/ytPlayBright.png');
}

.filmroomVideoSmallPlayButton
{
  width: 235px;
  height: 132px;
}

.filmroomVideoBigPlayButton
{
  width: 366px;
  height: 205px;
}

/* Solves issue with image jumping when FancyBox adds the close button. Only happens if 
maxWidth/maxHeight is used. */
.fancybox-article-image .fancybox-skin
{
  margin: 18px 18px 0 0 !important;
}

.mypagesReturnsQuantityButton
{
  box-sizing: content-box;
}

.catalogRow .mypagesReturnsCellAntal
{
    padding: 10px 2px 10px 0;
}

.breadcrumbs
{
  height: 26px;
  position: relative;
  top: -1px;
}

.breadcrumbs > span+span::before
{
  content: "\00A0\00A0\00A0\203A\00A0\00A0\00A0";
  color: #999999;
}

.breadcrumb
{
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  text-decoration: none;
}

.breadcrumb:hover
{
  text-decoration: underline;
}

.breadcrumbs > span:last-child > a
{
  font-weight: bold;
}

.menuRootPageLinkTable
{
  width: 762px;
  padding-left: 50px;
  margin-top: 24px;
}

.menuRootPageLinkTable > tbody > tr
{
  height: 80px;
}

.menuRootPageMenuLinkHeading
{
  margin: 0;
}

.menuRootPageMenuLink
{
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
  color: #689096;
  text-decoration: none;
}

.menuRootPageMenuLink:hover
{
  text-decoration: underline;
}

.menuRootPageLinkRightPadding
{
  padding-right: 50px;
}

.menuRootPageCategoryImage
{
  padding-bottom: 10px;
}

.pickUpPointOnlyCatalogToolTip
{
  color: #F78D26;
}

/* Imbox: prevent chat window from showing above dialog box overlay */
.snapifyWrapper
{
  z-index: 8000 !important;
}

/* Imbox: prevent chat banner from showing above dialog box overlay */
#snapifyHidden
{
  z-index: 8000 !important;
}

/* ImBox contact sheet banner */
#snapifyHiddenContent
{
  font-family: inherit !important;
  font-weight: bold !important;
  font-size: 13px !important;
  padding: 9px 0 0 11px !important;
  border-bottom: none !important;
}

#snapifyHiddenContent:hover
{
  background-color: #F99B3F !important;
}

/* ImBox title list */
div.snapifyChatName, #imboxWTitle
{
  font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
}

div.pie-legend-container
{
  display: inline-block;
}

ul.pie-legend > li
{
  list-style-type: none;
}

ul.pie-legend > li > span
{
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  left: -5px;
}

.filmroomboxShort
{
  margin-top: 33px;
}

.filmroomboxShort, .filmroomboxShort .divFilmRoomLeft
{
  height: 200px;
}

.filmroomboxShort .divFilmRoomLeft
{
  width: 375px;
}

.filmroomboxShort iframe
{
  width: 375px;
  height: 200px;
}

.filmroomboxShort .divFilmRoomDescription
{
  width: 316px;
  top: 95px;
  left: 30px;
}

.filmroomboxShort .divFilmRoomLargeDescription
{
  font-size: 26px;
}

.filmroomboxShort .divFilmRoomHeading
{
  margin-top: 26px;
  margin-left: 30px;
}

.filmroomboxCatalog .divFilmRoomLargeDescription
{
  font-size: 28px;
}

.filmroomboxProductPage
{
  margin-top: 27px;
}

.divCatalog + .filmroomboxCatalog
{
  margin-top: 16px;
}

.cookieBar
{
  min-width: 980px;
  top: 0px;
  left: 0px;
  background-color: #F0F0F0;
  border-bottom: 1px solid #D0D0D0;
  font-size: 13px;
}

.cookieBarWrapper
{
  width: 980px;
  height: inherit;
  margin: auto;
}

.cookieBarContent
{
  padding-left: 12px;
}

.cookieBarButton
{
  height: auto !important;
  display: inline-block;
  padding: 6px 11px !important;
  margin: 6px 12px;
  font-size: 13px;
}

.newCustomerOfferPanel
{
  position: absolute;
  right: 0;
  bottom: -27px;
  width: 251px;
  background-color: #689096;
  padding: 7px 0 2px;
  text-align: center;
  z-index: 1;
}

.newCustomerOfferLink
{
  position: relative;
  top: -3px;
  cursor: pointer;
  color: White;
  text-decoration: none;
}

.newCustomerOfferLink:hover
{
  text-decoration: underline;
}

.newCustomerOfferContainer
{
  max-height: 999999px;
  width: 448px;
  padding: 17px 26px 23px;
  border-bottom: 4px solid #689096;
  color: White;
}

.newCustomerOfferHeading
{
  font-size: 24px;
}

.newCustomerOfferLblPercentageDiscount
{
  font-size: 70px;
  font-weight: 700;
}

.newCustomerOfferLblFirstOrder
{
  font-size: 33px;
}

.newCustomerOfferDivEmailControls
{
  margin-top: 40px;
}

.newCustomerOfferTbEmail
{
  color: #909090 !important;
  width: 270px;
  margin-right: 10px !important;
}

.newCustomerOfferBtnSend
{
  display: inline-block;
  position: absolute;
  left: 310px;
  box-shadow: none;
  padding: 11px 15px 12px 15px !important;
}

.newCustomerOfferDescription
{
  margin-top: 16px;
  font-size: 13px;
  text-align: justify;
  line-height: 16px;
}

.newCustomerOfferLogos
{
  display: block;
  margin: 34px auto 0;
}

.newCustomerOfferPanBottomCloseButton
{
  margin-top: 34px;
  text-align: center;
}

.newCustomerOfferBottomCloseButton
{
  display: inline-block;
  width: 150px;
  text-align: center;
}

.checkoutOfferDdlOfferChooseSize
{
  width: 180px !important;
}

.genericSelect.sod_select.checkoutOfferDdlOfferChooseSize .sod_label.sod_placeholder
{
  font-size: 14px !important;
  font-weight: bold;
}

.genericSelect.sod_select.checkoutOfferDdlOfferChooseSize .sod_list_wrapper
{
  min-width: 180px;
}

.checkoutOfferDivProductImage
{
  position: relative;
}

.checkoutOfferDivOfferPriceWrapper {
  position: absolute;
  bottom: 24px;
  right: -17px;
}

.checkoutOfferDivOfferPrice {
  pointer-events: auto;
  font-size: 21px;
  font-weight: bold;
  padding: 2px 24px 2px 8px;
  color: White;
  background-color: #F78D26;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
}

.checkoutOfferPriceExclVatNote {
    font-size: 12px;
    padding: 0 0 3px 0;
}

.checkoutOfferTblCellDescription {
    padding-left: 40px;
}

.checkoutOfferHeading {
  font-weight: 700;
  line-height: 26px;
}

.checkoutOfferAddToCartBlock
{
  display: inline-block;
  position:relative;
  top: initial;
  vertical-align: bottom;
  background-color: #F78D26;
  padding: 2px 40px 15px 10px !important;
  margin-left: 13px;
}

.checkoutOfferAddToCart
{
  pointer-events: auto;
  font-size: 16px;
  font-weight: bold;
  color: White;
  display: inline-block;
  line-height: 32px;
}

.checkoutOfferImgOfferCart
{
  position: absolute;
  top: 8px;
  right: 7px;
  cursor: pointer;
}

.checkoutOfferConfOuterWrapper {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  left: -8px;
}

.checkoutOfferConfArrow {
  width: 0;
  height: 0;
  border-right: 10px solid #E1E9EA;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-left: none;
  top: -7px;
  left: initial;
  display: inline-block;
  position: relative;
  margin-right: -6px;
}

.checkoutOfferConfInnerWrapper {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  line-height: 32px;
  margin-left: 2px;
  padding: 0px 8px;
  top: initial;
  left: initial;
  border-top-style: none;
  background-color: #E1E9EA;
  font-weight: 500;
  z-index: 1;
}

.searchField
{
  position: absolute;
  top: 28px;
  right: 371px;
  height: 30px !important;
  line-height: 30px !important;
  width: 240px;
  z-index: 1;
  padding: 0 30px 0 10px !important;
}

.searchMagGlass
{
  border-width: 0px;
  position: absolute;
  top: 29px;
  right: 372px;
  z-index: 2;
  cursor: pointer;
  padding: 5px 8px 5px 3px;
}

.searchResultRow
{
  height: 134px;
  border-bottom: 1px solid #E3E3E3;
}

.searchResultRow:last-child
{
  border-bottom: none;
}

.searchResultRowNoLineAtBottom
{
  height: 134px;
}

.ui-autocomplete .ui-menu-item
{
  line-height: 20px;
  font-size: 14px;
}

.ui-autocomplete .ui-state-focus
{
  color: #F78D26;
  border: none;
  margin: 0;
}

.searchpageSelectCarManually.sod_select,
.searchpageSelectCarManually.sod_select.focus,
.searchpageSelectCarManually.sod_select.open
{
  width: 169px;
  padding: 6px 12px 5px;
  margin-top: 19px;
}

.searchpageSelectCarManually.sod_select .sod_label.sod_placeholder
{
  font-size: 19px;
}

.searchpageSelectCarManually.sod_select .sod_label
{
  font-size: 19px;
}

.frontpageSelectCarManually.sod_select .sod_list_wrapper
{
  width: auto;
  min-width: 169px;
}

.searchPanChooseCar
{
  background-color: #F78D26;
  font-size: 22px;
  font-weight: bold;
  color: White;
  padding: 17px 0px 22px 22px;
  height: 78px;
}

.searchDivChooseCarRegNrBox
{
  position: relative;
  padding: 18px 0 0;
}

.searchDivChooseCarManuallyBox
{
  position: relative;
}

.searchTbRegNr
{
  left: 27px;
}

.searchImgRegNrPlate
{
  left: 12px;
}

.searchBtnShowParts
{
  right: initial;
  left: 216px;
  top: 18px;
  display: initial;
  line-height: 26px;
}

.searchToggleCarSelectView
{
  position: absolute;
  top: 20px; 
  font-size: 19px;
  color: white;
  padding: 10px 32px 10px 0;
  cursor: pointer;
}

.searchToggleCarSelectViewManual
{
  left: 390px;
}

.searchToggleCarSelectViewRegNr
{
  left: 540px;
}

.searchChooseCarRightArrowRegNr
{
  position: absolute;
  top: 12px;
  left: 282px;
}

.searchChooseCarRightArrowManual
{
  position: absolute;
  top: 12px;
  left: 171px;
}

.searchTblSearchResult
{
  border-collapse: collapse;
  margin-top: 14px;
  line-height: initial;
}

.swishConfirmBody, .walleyIdentificationBody
{
  background-color: #F78D26;
}

.swishConfirmOuter, .walleyIdentificationOuter 
{
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.swishConfirmMiddle, .walleyIdentificationMiddle 
{
    display: table-cell;
    vertical-align: middle;
}

.swishConfirmInner, .walleyIdentificationInner 
{
    text-align: center;
}

.swishConfirmLogoDesktop, .walleyIdentificationLogoDesktop
{
    margin-top: 20px;
}

.swishConfirmLogoResponsive, .walleyIdentificationLogoResponsive
{
    display: none;
    margin-top: 20px;
}

.swishConfirmMessage, .walleyIdentificationConfirmMessage
{
  box-sizing: border-box;
  margin: 30px auto 0 auto;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 38px;
  display: table;
}

.swishConfirmInstructionList, .walleyIdentificationInstructionList 
{
    margin: 0;
    padding-left: 23px;
}

.swishConfirmInstructionListItem, .walleyIdentificationInstructionListItem 
{
    text-align: left;
    padding-left: 12px;
    white-space: nowrap;
}

.swishConfirmSpinnerWrapper, .walleyIdentificationSpinnerWrapper 
{
    margin: 55px 0 0;
}

.swishConfirmSpinnerContainer, .walleyIdentificationSpinnerContainer
{
    margin: auto;
    width: 0px;
    height: 0px;
}

.swishConfirmButtonWrapper, .walleyIdentificationButtonWrapper
{
    margin-top: 167px;
}

.swishConfirmButton, .walleyIdentificationButton
{
    width: 200px !important;
    margin: 0 auto 20px auto !important;
    padding: 0 !important;
    text-align: center !important;
    font-size: 18px !important;
}

.swishTestButton
{
  margin: 20px auto !important;
  font-size: 12px !important;
  width: 200px !important;
  padding: 0 !important;
  text-align: center !important;
}

@media only screen and (max-width: 400px) {
    .swishConfirmButton, .walleyIdentificationButton
    {
        font-size: 16px !important;
    }

    .swishConfirmMessage, .walleyIdentificationConfirmMessage
    {
        font-size: 16px;
    }

    .swishConfirmInstructionList, .walleyIdentificationInstructionList
    {
        padding-left: 18px;
    }
}

@media only screen and (max-width: 319px) {
    .swishConfirmLogoDesktop, .walleyIdentificationLogoDesktop
    {
        display: none;
    }

    .swishConfirmLogoResponsive, .walleyIdentificationLogoResponsive
    {
        display: inline;
        width: 224px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .swishConfirmLogoDesktop, .walleyIdentificationLogoDesktop 
    {
        display: none;
    }

    .swishConfirmLogoResponsive, .walleyIdentificationLogoResponsive
    {
        display: inline;
        width: 70%;
    }

    .walleyIdentificationLogoResponsive {
        display: inline;
        width: 50%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .swishConfirmLogoDesktop /*, .walleyIdentificationLogoDesktop */ 
    {
        display: none;
    }

    .swishConfirmLogoResponsive /*, .walleyIdentificationLogoResponsive */ 
    {
        display: inline;
        width: 50%;
    }
}

.productpageKitArticleQuantityCell
{
  padding: 0 20px;
  font-size: 20px;
  font-weight: bold;
  width: 100px;
  white-space: nowrap;
  /*display: none;*/
}

.catalogInfoRowPremiumSupplier
{
  background-color: #F78D26;
  color: #fff;
  display: inline-block;
  padding: 4px 12px;
  font-weight: bold;
}

.catalogInfoRowAttnSubdued
{
  background-color: #689096;
  color: #fff;
  display: inline-block;
  padding: 3px 8px;
  font-weight: bold;
}

.contactFormDescription
{
  padding: 0 20px;
}

.contactFormFieldsWrapper
{
  margin: 40px 100px 0px;
}

.contactFormLabel
{
  font-weight: bold;
  font-size: 18px;
  color: #689096;
  line-height: 32px;
}

.contactFormTextBox
{
  width: 100%;
}

.contactFormTextBoxMessage
{
  height: 150px;
}

.contactFormSendButton
{
  width: 100%;
}

.productpageKitArticleContentRow:not(:last-child)
{
  border-bottom: 1px solid #E3E3E3;
}

.productpageKitArticleContentImageCell
{
  padding: 10px 20px;
}

.productpageKitArticleContentNameCell
{
  width: 100%;
}

.panCatalogHeader + .divCatalog
{
  margin-top: 15px;
}

.mypagesPanCurrentDiscount
{
  background-color: #F78D26;
  color: white;
  padding: 12px 15px;
}

.mypagesCurrentDiscount
{
  font-size: 16px;
  font-weight: bold;
  padding-right: 10px;
  line-height: 22px;
}

.mypagesCurrentDiscountValue
{
  font-size: 22px;
  font-weight: bold;
  line-height: 22px;
}

.newCustomerOfferBannerWide {
    position: relative;
    background-color: #689096;
    font-size: 14px;
    color: White;
    padding: 13px 22px 21px;
    margin: 18px 0;
}

.newCustomerOfferBannerWideHeading
{
  font-size: 22px;
}

.newCustomerOfferBannerWideLblPercentageDiscount {
    font-size: 42px;
    font-weight: 700;
    line-height: 54px;
}

.newCustomerOfferBannerWideDivEmailControls
{
  margin-top: 16px;
}

.newCustomerOfferBannerWideBtnSend {
    display: inline-block;
    box-shadow: 2px 2px 5px #777;
    padding: 11px 15px 12px 15px !important;
    margin-right: 16px;
}

.newCustomerOfferBannerWideTermsWrapper {
    font-size: 14px;
}

.newCustomerOfferBannerWideTerms {
    text-decoration: underline;
}

.newCustomerOfferBannerWideHeading {
    font-size: 22px;
}

.newCustomerOfferHeadingEmail {
    font-weight: bold;
    word-wrap: break-word;
}

.selectModelDialogModelRow {
    margin: 20px 20px 0 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.selectModelDialogDescription {
    padding: 0 20px;
}

.btnSwitchVatMode {
    -webkit-appearance: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    text-align: left;
    border-style: none;
    position: relative;
    transition: 0.15s;
    display: inline-block;
    margin-left: 10px;
    background-color: white;
    color: #f78d26;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    height: 28px;
    padding: 0 10px;
    font-weight: 500;
}

.checkoutArticleRowRegNr {
    border: 1px solid #AAA;
    display: inline-block;
    border-radius: 3px;
    padding: 2px 7px;
    margin-right: 6px;
    position: relative;
    margin-top: 6px;
    font-weight: 500;
    font-size: 14px;
}

.myPagesArticleName {
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
}

a.myPagesArticleName:hover {
    text-decoration: underline;
}

.orderSearchBoxWrapper {
    text-align: center;
    margin-top: 20px;
}

.orderSearchBoxTbFilterTerm {
    display: inline-block;
    width: 330px;
}

.orderSearchBoxInnerWrapper {
    display: flex;
    justify-content: center;
    margin: 12px 0;
}

.orderSearchBoxFromDateWrapper {
    text-align: initial;
    margin-right: 10px;
}

.orderSearchBoxToDateWrapper {
    text-align: initial;
    margin-left: 10px;
}

.orderSearchBoxDateLabel {
    display: block;
}

.orderSearchBoxDate {
    width: 153px;
    margin: 0;
    padding: 0 4px 0 8px;
    border: 1px solid #D0D0D0;
    border-radius: 0;
    height: 30px;
    box-sizing: border-box;
}

.orderSearchBoxBtn {
    width: 100%;
    margin-top: 18px;
    padding: 0 !important;
    text-align: center;
}

.myPagesOrderHistoryPaginationWrapper {
    display: flex;
    justify-content: center;
}

.myPagesOrderHistoryLinkWrapper {
    flex: 1 1 30%;
}

.myPagesOrderHistoryLinkWrapperNewer {
    text-align: right;
}

.myPagesOrderHistoryPageNr {
    font-size: 16px;
    flex: 1 1 auto;
    text-align: center;
}

.myPagesReturnsOrderHistoryRowSelected {
    background-color: #FCD4AC;
}

.checkoutDivToggleShippingInfo {
    margin-bottom: 30px;
}

.checkoutBtnToggleShippingInfo {
    width: 220px;
    margin: auto;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.invoiceTable {
    list-style: none;
    margin: 30px 0 15px;
    padding: 0;
}

.invoiceTableHeaderRow {
    display: flex;
    height: 42px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-width: 1px;
    border-color: #E3E3E3;
    color: #666666;
    font-weight: 500;
    text-align: center;
    align-items: center;
}

.invoiceTableHeaderCellInvoiceNr {
    flex: 0 0 80px;
}

.invoiceTableHeaderCellCreated {
    flex: 0 0 95px;
}

.invoiceTableHeaderCellDueDate {
    flex: 0 0 95px;
}

.invoiceTableHeaderCellAmount {
    flex: 0 0 100px;
}

.invoiceTableHeaderCellStatus {
    flex: 0 0 105px;
}

.invoiceTableHeaderCellDownloadBtn {
    flex: 1 0 auto;
}

li:last-of-type.invoiceTableRow {
    padding-bottom: 4px;
    border-bottom-style: solid;
    border-width: 1px;
    border-color: #E3E3E3;
}

/* If the invoice row base part (the always visible part) is followed by a sibling drop down 
element, make the base part show a pointer cursor. The drop down itself will show a regular arrow 
cursor. */
.invoiceTableBaseRowWrapper:has(+ .invoiceTableRowDropDown) {
    cursor: pointer;
}

.invoiceTableBaseRowWrapper {
    display: flex;
    height: 36px;
    text-align: center;
    align-items: center;
    margin: 4px 0 0;
}

.invoiceTableBaseRowWrapper:hover {
    background-color: #E1E9EA;
}

.invoiceTableBaseRowWrapperPastDue {
    /*background-color: #F47C70;*/
    /*background-color: #F7978D;*/
}

.invoiceTableBaseRowWrapperPastDue:hover {
    /*background-color: #F5867B;*/
}

.invoiceTableCellStatus {
    height: 26px;
    display: flex;
    align-items: center;
    flex: 0 0 105px;
    justify-content: center;
    border-radius: 12px;
    font-size: 13px;
}

.invoiceTableBaseRowWrapperPastDue .invoiceTableCellStatus {
    background-color: #F7978D;
}

.invoiceTableBaseRowWrapperSettled {
    /*background-color: #80E2AA;*/
    /*background-color: #E7E7E7;*/
}

.invoiceTableBaseRowWrapperSettled:hover {
    /*background-color: #80E2AA;*/
    /*background-color: #DADADA;*/
}

.invoiceTableBaseRowWrapperSettled .invoiceTableCellStatus {
    background-color: #80E2AA;
    /*background-color: #E7E7E7;*/
}

.invoiceTableCellInvoiceNr {
    flex: 0 0 80px;
    font-weight: bold;
}

.invoiceTableCellCreated {
    flex: 0 0 95px;
}

.invoiceTableCellDueDate {
    flex: 0 0 95px;
}

.invoiceTableCellAmount {
    flex: 0 0 100px;
    font-weight: bold;
}

.invoiceTableCellDownloadBtn {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
}

.invoiceTableCellDownloadBtn .btnDim {
    width: 74px !important;
    padding: 0 8px !important;
    height: 26px !important;
    text-align: center !important;
    font-size: 13px !important;
}

.invoiceTableCellDownloadBtn .invoiceTableDownloadBtnInProgress {
    background-color: #F78D26;
}

.invoiceTableRowExpanded .invoiceTableBaseRowWrapper {
    background-color: #E1E9EA;
}

.invoiceTableRowExpanded .invoiceTableRowDropDown {
    background-color: #EEF3F4;
}

.spanInvoicesShowOnlyUnpaid {
    display: block;
    margin: 0 0 0 10px;
}

.spanInvoicesShowOnlyUnpaid label {
    padding-left: 10px;
}

.spanInvoicesSearchAll {
    display: block;
    margin: 10px 0 0 10px;
}

.spanInvoicesSearchAll label {
    padding-left: 10px;
}

