:root{
  --bodyBg         : #f5f5f5;  /* Baggrundsfarve */
  --white          : #ffffff;  /* Hvid */

  --colorBase      : #008c6e;   /* Thema farve 1 / Top navigation */
  --colorPrimary   : #008c6e;   /* Theme farve 2 / Footer */
  --colorSecondary : #008c6e;   /* Buttons 1 */
  --colorTertiary  : #063F33;   /* Buttons 2 */

  --textColor      : #333333;   /* Tekst */
  --linkColor      : #008c6e;   /* Links */

  --jumbotronBG    : rgba(0,140,1,0.15); /* Jumbotron baggrundsfarve */
}

/* Use this CSS-file to override any styles set by system-default */


/**  
 *   STYLESHEET IMPORTS
 **/


 /* Webfont: InteloRegular */@font-face {
  font-family: 'InteloRegular';
  src: url('fonts/InteloRegular.eot');
  src: url('fonts/InteloRegular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
   url('fonts/InteloRegular.woff') format('woff'), /* Modern Browsers */
   url('fonts/InteloRegular.ttf') format('truetype'), /* Safari, Android, iOS */
   url('fonts/InteloRegular.svg#InteloRegular') format('svg');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;/* IE9 Compat Modes */
  /* Legacy iOS */
}
/* Webfont: InteloLight */@font-face {
  font-family: 'InteloLight';
  src: url('fonts/InteloLight.eot');
  src: url('fonts/InteloLight.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
   url('fonts/InteloLight.woff') format('woff'), /* Modern Browsers */
   url('fonts/InteloLight.ttf') format('truetype'), /* Safari, Android, iOS */
   url('fonts/InteloLight.svg#InteloLight') format('svg');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;/* IE9 Compat Modes */
  /* Legacy iOS */
}
/* Webfont: InteloBold */@font-face {
  font-family: 'InteloBold';
  src: url('fonts/fontsInteloBold.eot');
  src: url('fonts/InteloBold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
   url('fonts/InteloBold.woff') format('woff'), /* Modern Browsers */
   url('fonts/InteloBold.ttf') format('truetype'), /* Safari, Android, iOS */
   url('fonts/InteloBold.svg#InteloBold') format('svg');
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;/* IE9 Compat Modes */
  /* Legacy iOS */
}
/* Webfont: InteloExtraBold */@font-face {
  font-family: 'InteloExtraBold';
  src: url('fonts/InteloExtraBold.eot');
  src: url('fonts/InteloExtraBold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
   url('fonts/InteloExtraBold.woff') format('woff'), /* Modern Browsers */
   url('fonts/InteloExtraBold.ttf') format('truetype'), /* Safari, Android, iOS */
   url('fonts/InteloExtraBold.svg#InteloExtraBold') format('svg');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;/* IE9 Compat Modes */
  /* Legacy iOS */
}
/* Webfont: InteloMedium */@font-face {
  font-family: 'InteloMedium';
  src: url('fonts/InteloMedium.eot');
  src: url('fonts/InteloMedium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
   url('fonts/InteloMedium.woff') format('woff'), /* Modern Browsers */
   url('fonts/InteloMedium.ttf') format('truetype'), /* Safari, Android, iOS */
   url('fonts/InteloMedium.svg#InteloMedium') format('svg');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;/* IE9 Compat Modes */
  /* Legacy iOS */
}
/* Webfont: InteloItalic */@font-face {
  font-family: 'InteloItalic';
  src: url('fonts/InteloItalic.eot');
  src: url('fonts/InteloItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
   url('fonts/InteloItalic.woff') format('woff'), /* Modern Browsers */
   url('fonts/InteloItalic.ttf') format('truetype'), /* Safari, Android, iOS */
   url('fonts/InteloItalic.svg#InteloItalic') format('svg');
  font-style: italic;
  font-weight: normal;
  text-rendering: optimizeLegibility;/* IE9 Compat Modes */
  /* Legacy iOS */
}
 
/*Using variables*/
html{
  background: var(--bodyBg);
}
body {
  font-family: 'InteloRegular';
  background: var(--bodyBg) !important;
  padding-top: 53px;

  /* Space for navbar */ }
  @media (min-width: 768px) {
    body {
      margin-bottom: 100px;
      /* Space for sticky footer */ 
    } 
    .media-page .content .section.media > .container{
      padding-bottom: 60px; /* Same height as footer */
    }
}
      
h1, h2, h3, h4, h5, h6 {
  font-family: 'InteloBold', 'Georgia', 'sans-serif';
}

h1{
    font-size: 24px;
}

h4{
    color: var(--textColor) !important;
}

a {
    color: var(--linkColor);
}

/*Generelt*/
.text-success {
    color: #5cb85c !important;
}

.section {
    padding: 50px 0 50px;
    background-color: var(--bodyBg);
}

/* Buttons */
.btn{ font-family: 'InteloRegular'; }

.btn-primary {
    font-family: 'InteloRegular';
    background: var(--colorSecondary) !important;
    border-color: var(--colorTertiary) !important;
}

.btn-primary:hover{
    background: var(--colorTertiary) !important;
    border-color: var(--colorSecondary) !important; }
}

.btn-link {
    color: var(--colorTertiary);
}

.btn-success {
    color: var(--white);
    background-color: var(--colorSecondary) !important;
    border-color: var(--colorTertiary) !important;
}
.btn-success:hover {
    color: var(--white);
    background-color: var(--colorTertiary) !important;
    border-color: var(--colorSecondary) !important; }
}

.RadDropDownList_Bootstrap .rddlInner {
    color: #fff !important;
    background-color: #fff;
    border: 1px solid var(--colorSecondary);
    background: -webkit-linear-gradient(var(--colorSecondary), var(--colorTertiary));
    background: linear-gradient(var(--colorSecondary), var(--colorTertiary));
}

/*Login side*/
.login-page-heading {
    color: var(--white);
    font-weight: 700;
    text-align: center;
    margin: 50px 0 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 50px;
    font-family: 'InteloBold';
}

.login-page-description {
    color: var(--white);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0 0 40px;
    font-size: 36px;
    font-family: 'InteloBold';
}

/* Carousel */
.carousel-caption p {
    font-size: 2.5vw;
}

/* Navigation bar*/
.dropdown-menu > li > a {
    color: #333;
    font-weight: bold;
    padding: 10px 15px !important;
}

.navbar {
    background: var(#fff);
    border: transparent;
    border-top: 3px solid var(--colorBase);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar .navbar-nav > li > a {
    font-size: 16px;
    color: var(--colorBase);
    transition: all 0.3s ease;;
}

.navbar .navbar-nav > li > a.navbar-nav-cart {
    background: var(--colorSecondary);
    color: var(--white);
    font-weight: 700;
}
.navbar .navbar-nav > li > a.navbar-nav-cart:hover{
  background-color: var(--colorTertiary);
}

.navbar .navbar-nav > .active > a {
    color: var(--colorBase);
    background: transparent !important;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
    color: var(--white);
    background-color: var(--colorBase);
}
.navbar .navbar-nav > .open > a, .navbar .navbar-nav > .open > a:focus > .open > a:hover {
    background: var(--colorSecondary) !important;
}
#impleomenu-cat > li > div > ul > li > a.k-link {
    background-color: transparent !important;
    color: var(--colorBase);
    transition: all 0.3s ease;
}
.k-menu .k-link.k-state-active {
    background-color: var(--colorBase);
    color: var(--white);
}
.k-link:link, .k-link:visited, .k-nav-current.k-state-hover .k-link {
    color: var(--colorBase);
}
.k-state-active {
    color: var(--white) !important;
    background: var(--colorSecondary) !important;
}
#impleomenu-cat > li > .k-link {
    background: var(--white);
    color: var(--colorBase);
}
.k-animation-container li.k-state-border-down{
  background: var(--colorSecondary) !important;
}
.k-state-hover{
  background: var(--colorTertiary)  !important;
}
.k-animation-container .k-link:hover{
  color: var(--colorSecondary);
}
.k-state-hover{
  background: #f5f5f5 !important;
}
.searchprodrow .panel-product-heading:hover{
  color: var(--colorSecondary) !important;
}

/* Topmenu */
.navbar-brand .logo {
  margin-top: 3px;
  height: 44px;
}
.jumbotron-inner {
  background-color: var(--jumbotronBG);
  padding: 40px 0;
  background-image: none;
}

/* Min profil */
.section-profile #ctl00_ctl00_MC_PH_LIT_ProfileTabsPanel{
  background: #fff;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background: var(--colorPrimary);
  color: var(--white);
  font-size: 13px;
}
.footer .container{
  background: var(--colorPrimary);
}
.footer a, .footer-credits{
  color: var(--white);
}
.footer a:hover{
  background-color: transparent;
  text-decoration: underline;
}

/* Breadcrumps */
.section-breadcrumbs {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid #ddd;
    line-height: 40px;
}

.section-breadcrumbs a{
  color: var(--textColor);
}

.section-breadcrumbs a:nth-child(2){
  display: none;
}

/*Produkt- og kategorisider*/
.section-products {
    background: var(--bodyBg);
    border-bottom: 0px solid #ddd;
}

.panel-product{
  /* background-color: #fafafa; */
  margin-bottom: 20px;
  /* box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.15); */
}

/*.panel-product:hover{
  background: var(--colorTertiary);
}*/

.panel-product a{
  text-decoration: none !important;
} 

.panel-product-heading {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  min-height: 64px;
  overflow: hidden;
  margin-bottom: 0px !important;
  padding: 20px 0;
}

.panel-product-heading:hover{
    color: #008c6e !important;
}

#ctl00_MainContentPH_pnlR_Cat .panel-product a,
#ctl00_MC_PH_pnlR_Cat .panel-product a{
    text-decoration: none !important;
} 

.panel-product-image {
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.15);
    margin: 0 auto;
    margin-bottom: 20px;
    display: block;
    height: 250px;
    transition: all 0.3s ease;
}

.panel-preview-illustrations .panel-product-image {
    margin: 20px auto;
    display: block;
    height: 100px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.panel-preview-large a {
    outline: none !important;
    position: relative;
    width: 60%;
    z-index: 99;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 auto;
    display: block;
    border: solid 1px #dcdcdc !important;
    cursor: zoom-in;
}

.panel-preview-price {
    color: var(--colorSecondary);
}

.panel-options .total-price {
    color: var(--textColor);
    font-size: 32px;
    line-height: 34px;
    margin: 0 0 3px;
}

.qty-desc {
    color: var(--colorSecondary);
}

.panel-preview-thumbs .thumbItem{ 
  color: var(--linkColor);
}

.section-customize .form-group{
  max-width: 300px;
}

/* Webshopview */
.webshop-product-image img {
  width: 150px;
  margin-bottom: 25px;
  box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.15);
}
.webshop-product-image img:hover {
    -moz-transform: scale(2.5);
    -o-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
}
.RadComboBox_Bootstrap .rcbReadOnly {
    color: #ffffff !important;
    background-color: var(--colorSecondary) !important;
    font-weight: bold;
    max-width: 300px;
}
.webshop-product-title {
    padding: 5px 0;
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.428;
}
.webshop-product-price-total {
    font-size: 16px;
    padding:3px 0;
}
/*@media (max-width: 767px) {
    .panel-product-image {
        height: 100px;
    }
}*/

/* Checkout */
#ctl00_MC_PH_pnl_DeliveryMethod,
#ctl00_MC_PH_pnl_Delivery .form-horizontal hr {
  display: none;
}
#ctl00_MC_PH_pnl_CartHelp div,
#ctl00_MC_PH_pnl_CartTotal,
.cart-row.cart-total{
  background: #F5F5F5;
}
.btn-webshop-dl{
  background: var(--colorSecondary);
  border: 1px solid var(--colorTertiary);
}

.cart-product-image img {
    width: 100px;
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.15);
}