.path-kurssit .region-content h2 {
  font-weight: 300;
  color: #4470B3;
}
.path-kurssit .region-content h3 {
  font-weight: 500;
  font-size: 18px;
  color: #4470B3;
}

/***
 * Cart block
 * **/
#block-cart {
  display: none;
  position: fixed;
  right: 5%;
  top: 150px;
  width: 25%;
  height: 20vh;
  min-height: 100px;
  z-index: 11;
}
#block-cart > .field--name-body {
  padding: 10px;
  width: 100%;
  height: 20vh;
  min-height: 100px;
  background-color: #FFF;
  border: 3px ridge #666;
  border-bottom: 0;
  overflow-y: auto;
}
#block-cart > .field--name-body > h3 {
  font-size: 1.8rem;
  text-align: center;
  color: #4470B3;
  margin: 3px 0 5px 0;
  padding: 0;
}
#block-cart > .field--name-body p {
  font-weight: 300;
  text-align: left;
  margin: 3px 0 2px 0;
  font-size: 1.3rem;
}
#block-cart .checkout-btn {
  position: absolute;
  top: 100%;
  width: 100%;
  text-align: center;
  border: 3px ridge #666;
  border-top: 0;
  color: #FFF;
  background-color: #4470B3;
  padding: 10px 0 10px 0;
}
#block-cart .tyhja-btn {
  width: 35%;
  position: absolute;
  top: -45px;
  right: 0;
  text-align: center;
  border: 3px ridge #666;
  border-top: 0;
  color: #FFF;
  background-color: red;
  padding: 10px 0 10px 0;
}
#block-cart .prod-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.prod-row a {
  width: 15%;
}
#block-cart .field--name-body p {
  width: 85%;
}


/***
 * Checkout
 * **/

/*
 * Cartlist
 */

/* Progress tracker */
#checkout-progress {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.checkout-step {
  width: 32%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.checkout-step .glyphicon-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 50px;
  text-align: left;
}
.checkout-step .glyphicon-ok {
  color: green;
}
.checkout-step h3,
.checkout-step span {
  width: 100%;
  text-align: center;
}
.checkout-pending {
  color: #CCC;
}

/* Table listing */
#cartlist-table td {
  color: #607B93;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
}
#cartlist-table td a {
  color: #607B93;
}

/* Forward/Backward */
#cartlist-forward {
  text-align: right;
}

/*
 * Details
 */

#checkout-form {
  width: 80%;
  margin: 0 auto;
  margin-top: 35px;
}
#checkout-form hr {
  border-top: 2px solid #eee;
}
#checkout-form .form-group button[type*="submit"] {
  position: absolute;
  top: 0;
  right: 0;
}
#checkout-form input[type*="checkbox"] {
  box-shadow: none;
}


/*
 * Overview
 */
#checkout-overview{
  position: relative;
}
#overview-user dt {
  font-weight: 500;
}
#overview-user dd {
  font-weight: 300;
  font-size: 16px;
}
#overview-controls {
  width: 100%;
}
#overview-controls a[href*="details"] {
  float: left;
}
#overview-controls a[href*="process"] {
  float: right;
}
