/*
Green: #33AD66
Light grey: #f3f3f3
Dark grey: #4a4a4a

Turqoise: #57c1bf
Yellow: #f8b44e;
Orange: #ed6d54;
Red: #BE1011;

*/

/*helper classes*/

.green{
  color: #33AD66;
}

.red {
  color: #BE1011;
}

.turquoise{
  color: #57c1bf
}

.turquoise-bg{
  background-color: #57c1bf
}

.yellow{
  color: #f8b44e;
}

.yellow-bg{
  background-color: #f8b44e;
}

.orange{
  color: #ed6d54
}

.orange-bg{
  background-color: #ed6d54
}

.capitalize{
  text-transform: capitalize;
}

.uppercase{
  text-transform: uppercase;
}

.dot{
  display: inline-block;
  width: 15px; height: 15px;
  border-radius: 15px;
  margin-bottom: -2px;
  position: relative;
}

.large-text {
  font-size: 2.5em
}

.x-large-text {
  font-size: 3.5em
}

.bold {
  font-weight: bold;
}

.child-v-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.no-border {
  border: none !important;
}

.top-margin {
  margin-top: 2em;
}

.widgetH2 {
  margin-bottom: 1em;
}

i {
  border: solid Green;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin: 0.2em 2em;
}

.arrow-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: transform 0.20s ease;
}

.arrow-up {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transition: transform 0.20s ease;
}

/**/


#product-viewer{
  margin-top: 60px;
}

#desktop-nav {
  width: 80%;
  margin-left: 10%;
}


/*product selector*/

.choose{
  text-align: center;
}

#product-selector .btn{
  color: #4a4a4a;
  background: transparent;
  border-left: 3px solid #fff;
  height: 50px;
  border-radius: 0;
  position: relative;
  font-weight: bold;
  transition: ease-in all 0.2s;
}

.middle-btn {
  border-right: 3px solid #fff;
}

#product-selector .btn:hover{
  background-color: #fff;
}

#product-selector #modig_btn{
  border-right: 3px solid #fff;
}

#product-selector .btn:before {
  position: absolute;
  content: '';
  background: #33AD66;
  height: 6px;
  margin-top: 10px;
  width: 0%;
  bottom: -1px;
  left: 0;
  transition: ease-in all 0.2s;
}

#product-selector .groenknap:before {
  position: absolute;
  content: '';
  background: white;
  height: 6px;
  margin-top: 10px;
  width: 0%;
  bottom: -1px;
  left: 0;
  transition: ease-in all 0.2s;
}

#product-selector .btn:hover::before {
  height: 6px;
  width: 100%;
}

#product-selector .btn.active:before {
  position: absolute;
  content: '';
  background: #33AD66;
  height: 6px;
  margin-top: 10px;
  width: 100%;
  bottom: -1px;
  left: 0;
}

#product-selector .btn.active, #product-selector .btn:active {
  color: #33AD66;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,.125);
  box-shadow: inset 0 0px 0px rgba(0,0,0,.125);
}
/*product selector*/

/*fordeling section*/
@-webkit-keyframes watering_can_animation {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes watering_can_animation {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes watering_can_animation {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes watering_can_animation {
  0%   { transform: rotate(4deg); }
  50%   { transform: rotate(-1deg); }
  100%   { transform: rotate(4deg); }
}

#watering_can {  
  -webkit-animation: watering_can_animation 4s infinite; /* Safari 4+ */
  -moz-animation: watering_can_animation 4s infinite; /* Fx 5+ */
  -o-animation: watering_can_animation 4s infinite; /* Opera 12+ */
  animation: watering_can_animation 4s infinite; /* IE 10+, Fx 29+ */
}


/*fordeling section*/
#widget_wrapper .tab-content {
  background: #fff;
  padding: 20px;
  border: 0px solid #ddd;
  border-top: 0px solid #ddd;
}

#widget_wrapper .nav-tabs {
  border-bottom: 0px solid #ddd;
  font-weight: bold;
}


#widget_wrapper .nav-tabs > li, .nav-pills > li {
  float:none;
  display:inline-block;
  /*display:inline;*/
  zoom:1;
/*  margin-left: 20px;
  margin-right: 20px;     */
 /* width: 200px; */
  margin: 0 auto;
}

#widget_wrapper .nav-tabs, .nav-pills {
  text-align:center;
}

#widget_wrapper .nav-tabs>li>a, .yearSelectBtn {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 0px solid transparent;
  border-radius: 0;
  color: #4A4A4A;    
}

.yearSelectBtn:focus{
  outline: none !important;
}

#widget_wrapper .nav-tabs>li>a:before, .yearSelectBtn:before {
  position: absolute;
  content: '';
  background: #e8e8e8;
  height: 5px;
  margin-top: 10px;
  width: 100%;
  bottom: 0px;
  left: 0;
}

#widget_wrapper .nav-tabs>li>a:after, .yearSelectBtn:after {
  position: absolute;
  content: '';
  background: #33AD66;
  height: 5px;
  margin-top: 10px;
  width: 0%;
  bottom: 0px;
  left: 0;
  transition: ease-in all 0.2s;  
}


#widget_wrapper .nav-tabs>li>a:hover::after, .yearSelectBtn:hover::after {
  position: absolute;
  content: '';
  background: #33AD66;
  height: 5px;
  margin-top: 10px;
  width: 100%;
  bottom: 0px;
  left: 0;
}

#widget_wrapper .nav-tabs>li.active>a, #widget_wrapper .nav-tabs>li.active>a:focus, #widget_wrapper .nav-tabs>li.active>a:hover, .yearSelectBtn.active, .yearSelectBtn.active:hover, .yearSelectBtn.active:focus {
  border: 0px solid #ddd;
  color: #33AD66;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,.125);
  box-shadow: inset 0 0px 0px rgba(0,0,0,.125);    
}

#widget_wrapper .nav-tabs>li.active>a:after, .yearSelectBtn.active:after {
  position: absolute;
  content: '';
  background: #33AD66;
  height: 5px;
  margin-top: 10px;
  width: 100%;
  bottom: 0px;
  left: 0;
}

#widget_wrapper .nav-tabs>li.active>a:before {
  border: 0px solid #ddd;
  content: '';
  position: absolute;
  top: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #33AD66;
  clear: both;
  left: 40%;
  background: transparent;
}

.yearSelectBtn{
  font-weight: bold;
  background: transparent;
  font-size: 16px;
  margin: 0 10px;
}

.yearSelectBtn.active:before {
  border: 0px solid #ddd;
  content: '';
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #33AD66;
  clear: both;
  left: 30%;
  background: transparent;
}


#updateMoney{
  border: #33AD66 solid 3px;
  border-radius: 3px;
  height: 50px;
  max-width: 220px;
  margin: auto;
}


/* Tabs fix */

.tab-content{
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: 0px solid #ddd;
}

/*spredning*/
#product_spread .regionDonut{
  width: 100%;
  display: inline-block;
  height: 200px;
}

.product_spread_results {
  margin-top: 1em;
}

section{
	padding: 80px 0;
	background: #fff;
	min-height: 500px;
  max-width: 1600px;
  margin: auto;  
}

section:nth-child(odd){
	background: #f3f3f3;
}

section .container{
	background: transparent;	
}

.sticky-nav-products{
  padding: 0px;
  background: #ebebeb;
}

.sticky-nav-products .icon-img{
  height: 50px;
  width: auto;
}

.affix {
  top: 70px;
  max-width: 1600px;
  z-index: 9999 !important;
}

.affix + #product-viewer {
  padding-top: 76px;
}

.customrow {
	margin-right: 0px; 
    margin-left: 0px;
}

#returnChart{
  margin-top: 30px;
}

#mapRegions {
  width: 100%;
  height: 500px;
}							


.mobile-dropdown {
  -webkit-transition: height 2s; /* Safari */
  transition: height 2s;
}

/* cost */

.cost-cards {
  margin-top: 2em;
}

.green-img-desktop {
  position: absolute;
  left: -1.66em;
}
.green-img-mobile {
  position: absolute;
  left: calc(50% - 26px);
  top: -1.666em;
  display: none;
}

.cost-card {
  height: 300px;
  padding: 1em 1.5em;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 0px 10px 0 rgba(0, 0, 0, 0.19);
}
.cost-card h2 {
  margin-top: 0;
}

.cost-card-sub {
  margin: 1em 0;
}

/* stemdata */

.table tr {
  border-bottom: 1px solid #ddd;
}

.table td:nth-child(even) {
  float: right;
  text-align: right;
}

.table td:nth-child(even) {
  float: right;
}

.stemdata-table td:nth-child(odd) {
  font-weight: 600;
}

/* Documents */

#documents {
  min-height: 0px;
}

/* SELECT */

.select-style {
  border-bottom: 1px solid #000;
  position: relative;
  width: 80%;
  left: 10%;
}

#select-arrow {
  border: solid;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin: 0.2em 0;
  position: relative;
  right: 1em;
}

.select-style select {
  padding: 5px 25px 5px 15px;
  background-color: transparent;
  border-width: 0px;
}

select:focus {
  outline:0;
}


.blocksContainer {
  text-align: center;
}

.countryBlocks {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  width: 190px;
  height: 200px;
  margin: 1%;
}

.documentBlocks {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  width: 175px;  
  margin: 1%;
}

.numberCircle {
  background: #f3f3f3;
  border-radius: 18px;
  width: 36px;
  height: 36px;
  padding: 8px;
  color: #4a4a4a;
  text-align: center;
  display: inline-block;
  margin-bottom: 5px;
}

.numberCircle.green {
  color: #fff;
  background: #33AD66;
}


/* MEDIA */

#mobile-selector {
  line-height: 40px;
  letter-spacing: 1.4px;
  height: 50px;
  width: 100%;
  font-weight: 600;
}

@media (max-width: 990px) {
  .cost-card {
    margin-top: 1em;
  }
  .green-img-desktop {
    display: none;
  }
  .green-img-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .afkast {
    margin-top: 2em;
  }
}

@media (max-width: 768px) {
  #desktop-nav {
    display: none;
  }
  #mobile-greenLine {
    height: 16px !important;
  }
  #widget_wrapper .nav-tabs > li, .nav-pills > li {
    display: inline-block;
  }
}

@media (min-width: 769px) {
  #mobile-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  section {
    padding: 40px 0;
  }
  .footer {
    word-wrap: break-word;
  }
  .downloadable-document {
    margin-top: 2em;
  }
  .numberCircle {
    background: #f3f3f3;
    border-radius: 5px;
    width: 13px;
    padding: 0;
    margin: 0;
    height: inherit;
  }
}

@media (min-width: 600px) {

  #lottie{
    height: 350px; 
    width: 100%;
  }

  #product-selector .btn.active:after {
    content: '';
    position: absolute;
    top: 49px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #33AD66;
    clear: both;
    left: 42%;
  }
}