@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900&display=swap&subset=latin-ext);@-webkit-keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@-webkit-keyframes moveArrowRight {
  0% {
    right: 0;
  }
  100% {
    right: -40px;
  }
}
@keyframes moveArrowRight {
  0% {
    right: 0;
  }
  100% {
    right: -40px;
  }
}
@-webkit-keyframes moveArrowLeft {
  0% {
    left: 0;
  }
  100% {
    left: -40px;
  }
}
@keyframes moveArrowLeft {
  0% {
    left: 0;
  }
  100% {
    left: -40px;
  }
}
h1 {
  color: #6C0674;
  font-size: 3.5rem;
  line-height: 4.55rem;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}

h2 {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}

h3 {
  color: #000000;
  font-size: 2.25rem;
  line-height: 2.925rem;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}

h4 {
  color: #000000;
  font-size: 2rem;
  line-height: 2.6rem;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}

h5 {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.95rem;
  font-weight: 300;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}

h6 {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}

p {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}

a {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
a:hover {
  text-decoration: none;
}

.hide {
  display: none;
}

.button {
  text-align: center;
  padding: 15px 50px;
  font-size: 1.625rem;
  line-height: 2.1125rem;
  display: inline-block;
  border-radius: 20px;
  box-shadow: none;
  border: 1px solid #000000;
  color: #000000;
  background: #ffffff;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  transition: all 0.4s;
}
.button:hover {
  transition: all 0.4s;
}
@media screen and (min-width: 62.0em) {
  .button {
    padding: 15px 100px;
  }
}
.button.gold {
  border: 0;
  background: #FFA145;
  background: linear-gradient(90deg, #ffa145 0%, #ffcb75 100%);
  color: #ffffff;
}
.button.gold:hover {
  background: #FFCB75;
  background: linear-gradient(90deg, #ffcb75 0%, #ffa145 100%);
}
.button.purple {
  border: 1px solid #6858A5;
  background: transparent;
  color: #6858A5;
}
.button.with_arrow {
  position: relative;
}
.button.with_arrow i {
  display: none;
}
@media screen and (min-width: 36.0em) {
  .button.with_arrow i {
    width: 70px;
    height: 27px;
    position: absolute;
    right: -40px;
    top: 18px;
    z-index: 10;
    display: block;
    background: url("/img/arrow_blue_right.svg") right center no-repeat;
  }
}
.button.with_arrow:hover i {
  -webkit-animation-name: moveArrowRight;
          animation-name: moveArrowRight;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.button.with_arrow:hover.arrow_left i {
  -webkit-animation-name: moveArrowLeft;
          animation-name: moveArrowLeft;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.button.with_arrow.arrow_white i {
  background: url("/img/arrow_white_right.svg") right center no-repeat;
}
.button.with_arrow.purple.arrow_left i {
  background: url("/img/arrow_purple_left.svg") right center no-repeat;
}
.button.with_arrow.arrow_left i {
  left: -40px;
  right: initial;
}
.button.white-space {
  white-space: nowrap;
}

.input-error {
  color: #e3342f !important;
  padding-top: 5px;
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}

form .form-check {
  padding-left: 0;
}
form label {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
form .form-check {
  padding-left: 0;
}
form .input-group-append {
  cursor: pointer;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
form .input-group-append span {
  background: #e9ecef;
}
form .input-group-append span i {
  color: #495057;
}
form .input-group-append:hover span {
  background: #738699;
}
form .input-group-append:hover span i {
  color: #ffffff;
}
form input.form-control {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  border: 1px solid #ffffff;
  margin-bottom: 25px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
form input.form-control:focus {
  outline: 0;
  border-color: #ffffff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
}
form input.form-control.form-error {
  border: 1px solid #e3342f;
}
form textarea:focus, form textarea.form-control:focus {
  outline: 0;
  box-shadow: none;
}
form button {
  box-shadow: none;
}
form button:focus {
  outline: 0;
}

@media screen and (min-width: 100.0em) {
  .container {
    min-width: 1540px;
  }
}

@media screen and (min-width: 120.0em) {
  .container-fluid.container-content {
    max-width: 1900px;
  }
}

nav .navbar-nav {
  flex-direction: row;
  justify-content: flex-end;
}
nav .navbar-nav .nav-item .nav-link {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.625rem;
  text-transform: uppercase;
  margin-right: 30px;
}
nav .navbar-nav .nav-item .nav-link:hover {
  text-decoration: underline;
}
nav .navbar-nav .nav-item .nav-link.active {
  color: #ec1c24;
  text-decoration: underline;
}

#navbar {
  position: absolute;
  top: -3000px;
  z-index: 1000;
  left: 0;
  padding: 10px 0;
  width: 100vw;
  border-bottom: 1px solid #6858A5;
  transition: all 0.4s;
}
@media screen and (min-width: 36.0em) {
  #navbar {
    padding: 25px 0;
  }
}
@media screen and (min-width: 62.0em) {
  #navbar {
    display: none;
  }
}
#navbar.showing {
  background: #ffffff;
  top: 0;
  transition: all 0.4s;
}
#navbar.show {
  background: #ffffff;
  top: 0;
}
#navbar.profile-layout.showing {
  top: 62px;
}
#navbar.profile-layout.show {
  top: 62px;
}
#navbar.profile-layout .navbar-nav {
  margin-top: 30px;
}
#navbar #toggle {
  right: 0;
}
#navbar .navbar-nav {
  margin-top: 90px;
  margin-bottom: 30px;
  flex-direction: column;
}
@media screen and (min-width: 36.0em) {
  #navbar .navbar-nav {
    margin-top: 90px;
  }
}
#navbar .navbar-nav .nav-item {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (min-width: 36.0em) {
  #navbar .navbar-nav .nav-item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
#navbar .navbar-nav .nav-item.active {
  background: rgba(0, 0, 0, 0.2);
}
#navbar .navbar-nav .nav-item .nav-link {
  color: #000000;
  font-size: 1.25rem;
  margin-right: 0;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}

#toggle {
  width: 32px;
  height: 28px;
  z-index: 1000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 15px;
  margin-top: 17px;
  display: block;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
@media screen and (min-width: 62.0em) {
  #toggle {
    display: none;
  }
}
#toggle .patty {
  width: 30px;
  height: 4px;
  margin: 10px 0;
  background: #000000;
  position: relative;
  transition: all 0.3s;
}
#toggle .patty:before, #toggle .patty:after {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  background: #000000;
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
#toggle:not(.collapsed) .patty {
  background: none !important;
}
#toggle:not(.collapsed) .patty:before {
  top: 0 !important;
  background: #6858A5 !important;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#toggle:not(.collapsed) .patty:after {
  top: 0 !important;
  background: #6858A5 !important;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#toggle.collapsed .patty:before {
  top: -12px;
}
#toggle.collapsed .patty:after {
  top: 12px;
}

.w-md-50 {
  width: 100%;
}
@media screen and (min-width: 62.0em) {
  .w-md-50 {
    width: 50% !important;
  }
}

.w-md-60 {
  width: 100%;
}
@media screen and (min-width: 62.0em) {
  .w-md-60 {
    width: 60% !important;
  }
}

.w-md-70 {
  width: 100%;
}
@media screen and (min-width: 62.0em) {
  .w-md-70 {
    width: 70% !important;
  }
}

.w-md-80 {
  width: 100%;
}
@media screen and (min-width: 62.0em) {
  .w-md-80 {
    width: 80% !important;
  }
}

.w-md-90 {
  width: 100%;
}
@media screen and (min-width: 62.0em) {
  .w-md-90 {
    width: 90% !important;
  }
}

.w-lg-50 {
  width: 100%;
}
@media screen and (min-width: 75.0em) {
  .w-lg-50 {
    width: 50% !important;
  }
}

.w-lg-60 {
  width: 100%;
}
@media screen and (min-width: 75.0em) {
  .w-lg-60 {
    width: 60% !important;
  }
}

.w-lg-70 {
  width: 100%;
}
@media screen and (min-width: 75.0em) {
  .w-lg-70 {
    width: 70% !important;
  }
}

.w-lg-80 {
  width: 100%;
}
@media screen and (min-width: 75.0em) {
  .w-lg-80 {
    width: 80% !important;
  }
}

.w-lg-90 {
  width: 100%;
}
@media screen and (min-width: 75.0em) {
  .w-lg-90 {
    width: 90% !important;
  }
}

.radio {
  margin: 16px 0;
  display: block;
  cursor: pointer;
}
.radio input {
  display: none;
}
.radio input + span {
  line-height: 18px;
  height: 18px;
  padding-left: 18px;
  display: block;
  position: relative;
}
.radio input + span:not(:empty) {
  padding-left: 26px;
}
.radio input + span:before, .radio input + span:after {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 50%;
  left: 0;
  top: 0;
  position: absolute;
}
.radio input + span:before {
  background: #6C0674;
  transition: background 0.2s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2);
}
.radio input + span:after {
  background: #fff;
  transform: scale(0.78);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
}
.radio input:checked + span:before {
  transform: scale(1.04);
  background: #6C0674;
}
.radio input:checked + span:after {
  transform: scale(0.4);
  transition: transform 0.3s ease;
}
.radio:hover input + span:before {
  transform: scale(0.92);
}
.radio:hover input + span:after {
  transform: scale(0.74);
}
.radio:hover input:checked + span:after {
  transform: scale(0.4);
}

.check {
  margin: 25px 0;
  display: block;
  cursor: pointer;
}
.check input {
  display: none;
}
.check input + span {
  line-height: 18px;
  min-height: 18px;
  padding-left: 18px;
  display: block;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.3125rem;
}
.check input + span:not(:empty) {
  padding-left: 26px;
}
.check input + span:before, .check input + span:after {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 3px;
  left: 0;
  top: 0;
  position: absolute;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.check input + span:before {
  background: #6C0674;
  transition: background 0.2s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2);
}
.check input + span:after {
  background: #fff;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
}
.check input:checked + span:before {
  transform: scale(1.04);
  background: #6C0674;
}
.check input:checked + span:after {
  transform: scale(0);
  transition: transform 0.3s ease;
}
.check:hover input + span:before {
  transform: scale(0.92);
}
.check:hover input + span:after {
  transform: scale(0.74);
}
.check:hover input:checked + span:after {
  transform: scale(0.4);
}

@media screen and (min-width: 120.0em) {
  .container-fluid.subscription-order, .container-fluid.subscription-header, .container-fluid.limited-container {
    max-width: 1890px;
    margin-left: auto;
    margin-right: auto;
  }
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #BABABA;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #BABABA;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #BABABA;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #BABABA;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}

body .coffee-holder {
  text-align: center;
  margin-bottom: 30px;
}
body .coffee-holder .coffee-type {
  background: url("/img/coffee_back.png") center center no-repeat;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  display: inline-block;
  width: 234px;
  height: 204px;
  color: #000000;
  padding-top: 70px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
body .coffee-holder .coffee-type span {
  font-size: 1.5rem;
  line-height: 1.95rem;
  color: #6C0674;
  display: block;
  margin-bottom: 8px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body .coffee-holder .coffee-type:hover, body .coffee-holder .coffee-type.active {
  color: #ffffff;
  text-decoration: none;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body .coffee-holder .coffee-type:hover span, body .coffee-holder .coffee-type.active span {
  color: #ffffff;
}
body .coffee-holder .coffee-type:hover span strong, body .coffee-holder .coffee-type.active span strong {
  margin-right: 0;
}
body .coffee-holder .coffee-type.coffee-1:hover, body .coffee-holder .coffee-type.coffee-1.active {
  background: url("/img/coffee_back_h_1.png") center center no-repeat;
}
body .coffee-holder .coffee-type.coffee-2:hover, body .coffee-holder .coffee-type.coffee-2.active {
  background: url("/img/coffee_back_h_2.png") center center no-repeat;
}
body .coffee-holder .coffee-type.coffee-3:hover, body .coffee-holder .coffee-type.coffee-3.active {
  background: url("/img/coffee_back_h_3.png") center center no-repeat;
}
body .coffee-holder .coffee-type.coffee-4:hover, body .coffee-holder .coffee-type.coffee-4.active {
  background: url("/img/coffee_back_h_4.png") center center no-repeat;
}
body .coffee-holder .coffee-type.coffee-5:hover, body .coffee-holder .coffee-type.coffee-5.active {
  background: url("/img/coffee_back_h_5.png") center center no-repeat;
}
body .coffee-holder .coffee-type.coffee-6:hover, body .coffee-holder .coffee-type.coffee-6.active {
  background: url("/img/coffee_back_h_6.png") center center no-repeat;
}
body header {
  padding-top: 40px;
}
@media screen and (min-width: 62.0em) {
  body header {
    padding-top: 80px;
  }
}
body header .nav-row {
  justify-content: space-between;
  display: flex;
  align-items: center;
}
body header .logo {
  width: 100%;
  max-width: 200px;
  display: block;
}
@media screen and (min-width: 36.0em) {
  body header .logo {
    max-width: 250px;
  }
}
body header .logo img {
  max-width: 200px;
  display: block;
}
@media screen and (min-width: 36.0em) {
  body header .logo img {
    max-width: 250px;
  }
}
body header nav .navbar-nav {
  display: none;
}
@media screen and (min-width: 62.0em) {
  body header nav .navbar-nav {
    display: flex;
  }
}
body header.subscription-header {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
@media screen and (min-width: 48.0em) {
  body header.subscription-header {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
body header.subscription-header .logo {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
body header.subscription-header .logo img {
  width: 100%;
  max-width: 250px;
}
@media screen and (min-width: 62.0em) {
  body header.subscription-header .logo {
    text-align: left;
    margin-bottom: 0;
  }
}
body header.subscription-header h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.45rem;
  line-height: 3.185rem;
}
@media screen and (min-width: 36.0em) {
  body header.subscription-header h1 {
    margin-bottom: 70px;
    font-size: 3.5rem;
    line-height: 4.55rem;
  }
}
body header .step-holder {
  text-align: center;
  margin-bottom: 50px;
}
body header .step-holder span {
  position: relative;
  display: inline-block;
  padding-right: 0;
  margin-right: 0;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 36.0em) {
  body header .step-holder span {
    padding-right: 50px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 48.0em) {
  body header .step-holder span {
    padding-right: 80px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 62.0em) {
  body header .step-holder span {
    padding-right: 50px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 75.0em) {
  body header .step-holder span {
    padding-right: 80px;
    margin-right: 20px;
  }
}
body header .step-holder span span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 2.275rem;
  line-height: 2.9575rem;
  padding-top: 10px;
  padding-right: 0;
  margin-right: 0;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
  display: none;
}
@media screen and (min-width: 36.0em) {
  body header .step-holder span span {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding-top: 6px;
    font-size: 1.75rem;
    line-height: 2.275rem;
  }
}
body header .step-holder span span:after {
  display: none;
}
body header .step-holder span:after {
  position: absolute;
  height: 1px;
  width: 60px;
  background: #6C0674;
  content: "";
  right: 0;
  top: 24px;
  display: none;
}
@media screen and (min-width: 36.0em) {
  body header .step-holder span:after {
    display: block;
    width: 35px;
  }
}
@media screen and (min-width: 48.0em) {
  body header .step-holder span:after {
    width: 60px;
  }
}
@media screen and (min-width: 62.0em) {
  body header .step-holder span:after {
    width: 35px;
  }
}
@media screen and (min-width: 75.0em) {
  body header .step-holder span:after {
    width: 60px;
  }
}
body header .step-holder span:last-of-type {
  padding-right: 0;
  margin-right: 0;
}
body header .step-holder span:last-of-type:after {
  display: none;
}
body header .step-holder span:last-of-type.active {
  padding-right: 0;
  margin-right: 0;
}
body header .step-holder span.active {
  padding-right: 0;
  margin-right: 0;
}
@media screen and (min-width: 36.0em) {
  body header .step-holder span.active {
    padding-right: 50px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 48.0em) {
  body header .step-holder span.active {
    padding-right: 80px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 62.0em) {
  body header .step-holder span.active {
    padding-right: 50px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 75.0em) {
  body header .step-holder span.active {
    padding-right: 80px;
    margin-right: 20px;
  }
}
body header .step-holder span.active span {
  background: #6C0674;
  color: #ffffff;
  display: block;
}
body footer {
  margin-bottom: 30px;
}
body footer .warehouse img {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 36.0em) {
  body footer .warehouse img {
    width: 50%;
  }
}
@media screen and (min-width: 75.0em) {
  body footer .warehouse img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
body footer .warehouse h5 {
  color: #6858A5;
  margin-bottom: 40px;
  margin-top: 30px;
  text-align: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 75.0em) {
  body footer .warehouse h5 {
    text-align: left;
  }
}
body footer .warehouse p, body footer .warehouse address {
  font-size: 1.5rem;
  line-height: 2.7rem;
  text-align: center;
}
@media screen and (min-width: 75.0em) {
  body footer .warehouse p, body footer .warehouse address {
    text-align: left;
  }
}
body footer .warehouse p.small, body footer .warehouse address.small {
  font-size: 1rem;
  line-height: 1.3rem;
  display: inline-block;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (min-width: 75.0em) {
  body footer .warehouse p.small, body footer .warehouse address.small {
    width: 70%;
    margin-bottom: 0;
  }
}
body footer .cafe {
  margin-top: 50px;
}
body footer .cafe img {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 36.0em) {
  body footer .cafe img {
    width: 50%;
  }
}
@media screen and (min-width: 75.0em) {
  body footer .cafe img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
body footer .cafe h5 {
  color: #6858A5;
  margin-bottom: 40px;
  margin-top: 60px;
  text-align: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 75.0em) {
  body footer .cafe h5 {
    text-align: left;
  }
}
body footer .cafe p {
  font-size: 1.5rem;
  line-height: 2.7rem;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 75.0em) {
  body footer .cafe p {
    text-align: left;
    margin-bottom: 0;
  }
}
body footer .cafe p a {
  color: #000000;
  display: block;
}
body main {
  padding-bottom: 80px;
}
body main.home .free-coffee {
  position: relative;
  height: 400px;
  margin-top: 100px;
}
@media screen and (min-width: 36.0em) {
  body main.home .free-coffee {
    height: 300px;
  }
}
@media screen and (min-width: 48.0em) {
  body main.home .free-coffee {
    background: url("/img/machula-1.svg") left top no-repeat;
    height: 500px;
  }
}
@media screen and (min-width: 62.0em) {
  body main.home .free-coffee {
    height: 600px;
    background-size: 960px auto;
    margin-top: 80px;
  }
}
@media screen and (min-width: 75.0em) {
  body main.home .free-coffee {
    height: 800px;
    background-size: 1170px auto;
    margin-top: 150px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.home .free-coffee {
    height: 800px;
    background-size: 1400px auto;
    margin-top: 200px;
  }
}
body main.home .free-coffee small {
  display: block;
  text-indent: 30px;
}
body main.home .free-coffee:before {
  display: none;
}
@media screen and (min-width: 62.0em) {
  body main.home .free-coffee:before {
    content: "";
    display: block;
    position: absolute;
    background: url("/img/master-coffee.png") center center no-repeat;
    background-size: cover;
    z-index: 1;
    width: 190px;
    height: 321px;
    left: 30px;
    top: 70px;
  }
}
@media screen and (min-width: 75.0em) {
  body main.home .free-coffee:before {
    width: 190px;
    height: 321px;
    left: 50px;
    top: 70px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.home .free-coffee:before {
    width: 233px;
    height: 394px;
    left: 80px;
    top: 70px;
  }
}
body main.home .free-coffee:after {
  display: none;
}
@media screen and (min-width: 75.0em) {
  body main.home .free-coffee:after {
    content: "";
    position: absolute;
    background: url("/img/free-machine.png") center center no-repeat;
    background-size: cover;
    z-index: 1;
    width: 680px;
    height: 535px;
    left: 460px;
    top: -10px;
    display: block;
  }
}
@media screen and (min-width: 100.0em) {
  body main.home .free-coffee:after {
    width: 791px;
    height: 623px;
    left: 490px;
    top: -50px;
  }
}
body main.home .free-coffee p {
  font-size: 1.5rem;
  line-height: 2.25rem;
  display: block;
  z-index: 5;
  color: #6858A5;
  text-align: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 48.0em) {
  body main.home .free-coffee p {
    text-align: left;
    color: #ffffff;
    width: 470px;
    position: absolute;
    left: 50px;
    top: 110px;
  }
}
@media screen and (min-width: 62.0em) {
  body main.home .free-coffee p {
    left: 230px;
    top: 110px;
  }
}
@media screen and (min-width: 75.0em) {
  body main.home .free-coffee p {
    left: 250px;
    top: 130px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.home .free-coffee p {
    left: 330px;
    top: 130px;
  }
}
body main.home .free-coffee p strong {
  display: block;
  font-size: 2.5rem;
  line-height: 3.25rem;
  margin-bottom: 25px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}
@media media_sm {
  body main.home .free-coffee p strong {
    margin-left: 30px;
  }
}
body main.home .free-coffee p span {
  display: block;
  margin-left: 0;
  width: 100%;
}
@media media_sm {
  body main.home .free-coffee p span {
    width: 300px;
    margin-left: 30px;
  }
}
body main.home .free-coffee p .button {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 48.0em) {
  body main.home .free-coffee p .button {
    text-align: left;
    white-space: nowrap;
    display: block;
    width: 420px;
    padding-left: 30px;
    padding-right: 80px;
  }
}
body main.home .free-coffee p .button i {
  display: none;
}
@media screen and (min-width: 48.0em) {
  body main.home .free-coffee p .button i {
    display: block;
  }
}
body main.home .about-machine {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 75.0em) {
  body main.home .about-machine {
    margin-bottom: 0;
  }
}
body main.home .about-machine img {
  display: block;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 75.0em) {
  body main.home .about-machine img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
body main.home .about-machine h3 {
  color: #6858A5;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 75.0em) {
  body main.home .about-machine h3 {
    margin-top: 70px;
    text-align: right;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.home .about-machine h3 {
    margin-top: 220px;
  }
}
body main.home .about-machine p {
  font-size: 1.5rem;
  line-height: 2.25rem;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 75.0em) {
  body main.home .about-machine p {
    text-align: right;
    margin-bottom: 60px;
  }
}
body main.home .about-machine .button {
  text-align: center;
}
@media screen and (min-width: 36.0em) {
  body main.home .about-machine .button {
    text-align: left;
  }
}
body main.home .about-machine .button i {
  display: none;
}
@media screen and (min-width: 48.0em) {
  body main.home .about-machine .button i {
    display: block;
  }
}
body main.home .coffee-pods {
  padding-top: 220px;
  background: url("/img/vlnovka.svg") top center no-repeat;
  background-size: 1000px auto;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (min-width: 48.0em) {
  body main.home .coffee-pods {
    margin-bottom: 150px;
    background: url("/img/vlnovka.svg") top center no-repeat;
    background-size: 100% auto;
    text-align: left;
  }
}
@media screen and (min-width: 75.0em) {
  body main.home .coffee-pods {
    padding-top: 220px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.home .coffee-pods {
    padding-top: 220px;
  }
}
body main.home .coffee-pods h3 {
  font-size: 1.875rem;
  line-height: 2.8125rem;
  color: #6858A5;
  margin-bottom: 50px;
  margin-top: 0;
  text-align: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 75.0em) {
  body main.home .coffee-pods h3 {
    text-align: left;
  }
}
@media screen and (min-width: 100.0em) {
  body main.home .coffee-pods h3 {
    margin-top: 100px;
  }
}
body main.home .coffee-pods ul {
  list-style: none;
  padding: 0px;
}
body main.home .coffee-pods p, body main.home .coffee-pods ul {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 75.0em) {
  body main.home .coffee-pods p, body main.home .coffee-pods ul {
    text-align: left;
  }
}
body main.home .coffee-pods .button {
  margin-top: 30px;
  margin-bottom: 100px;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 36.0em) {
  body main.home .coffee-pods .button {
    padding-left: 40px;
    padding-right: 40px;
    width: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 48.0em) {
  body main.home .coffee-pods .button {
    text-align: left;
    padding-left: 30px;
    padding-right: 80px;
  }
}
@media screen and (min-width: 75.0em) {
  body main.home .coffee-pods .button {
    width: auto;
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}
body main.home .coffee-pods .button i {
  display: none;
}
@media screen and (min-width: 48.0em) {
  body main.home .coffee-pods .button i {
    display: block;
  }
}
body main.home .coffee-pods img {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 36.0em) {
  body main.home .coffee-pods img {
    width: 60%;
  }
}
@media screen and (min-width: 75.0em) {
  body main.home .coffee-pods img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
body main.about {
  padding-top: 50px;
}
body main.about img {
  width: 100%;
  position: relative;
  margin-top: 50px;
  display: inline-block;
}
@media screen and (min-width: 75.0em) {
  body main.about img {
    margin-top: 0;
    left: -100px;
  }
}
body main.about .video-holder {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 50px;
}
@media screen and (min-width: 48.0em) {
  body main.about .video-holder {
    width: 60%;
  }
}
body main.about .video-holder.ar16_9 {
  padding-bottom: 56.25% !important;
  /* 16:9 */
}
body main.about .video-holder.ar16_10 {
  padding-bottom: 62.5% !important;
  /* 16:10 */
}
body main.about .video-holder.ar4_3 {
  padding-bottom: 75% !important;
  /* 4:3 */
}
body main.about .video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body main.about .about-text h3 {
  color: #6858A5;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: left;
  font-size: 2.25rem;
  line-height: 2.925rem;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}
body main.about .about-text h3 span {
  font-size: 2.025rem;
  line-height: 2.6325rem;
}
body main.about .about-text h4 {
  color: #6858A5;
  margin-bottom: 30px;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.95rem;
  margin-top: 50px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
body main.about .about-text p {
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
body main.about .about-text ul {
  -webkit-padding-start: 0;
  list-style: none;
  list-style-position: inside;
}
body main.about .about-text ul li {
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin-bottom: 8px;
  letter-spacing: 0.4px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
body main.about .about-text ul li:before {
  display: inline-block;
  content: "-";
  margin-right: 8px;
}
body main.subscription-order .order-image-holder {
  position: relative;
  padding-top: 50px;
}
@media screen and (min-width: 62.0em) {
  body main.subscription-order .order-image-holder {
    padding-top: 0;
  }
}
body main.subscription-order .order-image-holder img {
  width: 100%;
}
@media screen and (min-width: 62.0em) {
  body main.subscription-order .order-image-holder img {
    position: relative;
    top: -100px;
  }
}
body main.subscription-order .order-form-holder h3 {
  text-align: center;
  margin-bottom: 30px;
}
body main.subscription-order .order-form-holder h5 {
  text-align: center;
  margin-bottom: 50px;
}
body main.subscription-order .order-form-holder .errors {
  list-style: none;
  list-style-position: inside;
  text-align: center;
  -webkit-padding-start: 0;
}
body main.subscription-order .order-form-holder .errors li {
  font-size: 1rem;
  line-height: 1.3rem;
  color: #721c24;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.subscription-order .order-form-holder .input-error {
  color: #e3342f;
  padding-top: 5px;
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.subscription-order .order-form-holder .subscription-holder {
  text-align: center;
  margin-bottom: 30px;
}
body main.subscription-order .order-form-holder .subscription-holder .subscription-type {
  background: url("/img/coffee_back.png") center center no-repeat;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  display: inline-block;
  width: 234px;
  height: 204px;
  color: #000000;
  padding-top: 70px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
body main.subscription-order .order-form-holder .subscription-holder .subscription-type span {
  color: #6C0674;
  display: block;
  margin-bottom: 8px;
}
body main.subscription-order .order-form-holder .subscription-holder .subscription-type span strong {
  font-size: 1.5rem;
  line-height: 1.95rem;
  margin-right: 4px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.subscription-order .order-form-holder .subscription-holder .subscription-type:hover, body main.subscription-order .order-form-holder .subscription-holder .subscription-type.active {
  color: #ffffff;
  text-decoration: none;
  background: url("/img/coffee_back_h.png") center center no-repeat;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.subscription-order .order-form-holder .subscription-holder .subscription-type:hover span, body main.subscription-order .order-form-holder .subscription-holder .subscription-type.active span {
  color: #ffffff;
}
body main.subscription-order .order-form-holder .subscription-holder .subscription-type:hover span strong, body main.subscription-order .order-form-holder .subscription-holder .subscription-type.active span strong {
  margin-right: 0;
}
body main.subscription-order .order-form-holder .coffee-holder {
  text-align: center;
  margin-bottom: 30px;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type {
  background: url("/img/coffee_back.png") center center no-repeat;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  display: inline-block;
  width: 234px;
  height: 204px;
  color: #000000;
  padding-top: 70px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type span {
  font-size: 1.5rem;
  line-height: 1.95rem;
  color: #6C0674;
  display: block;
  margin-bottom: 8px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type:hover, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.active {
  color: #ffffff;
  text-decoration: none;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type:hover span, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.active span {
  color: #ffffff;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type:hover span strong, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.active span strong {
  margin-right: 0;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-1:hover, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-1.active {
  background: url("/img/coffee_back_h_1.png") center center no-repeat;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-2:hover, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-2.active {
  background: url("/img/coffee_back_h_2.png") center center no-repeat;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-3:hover, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-3.active {
  background: url("/img/coffee_back_h_3.png") center center no-repeat;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-4:hover, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-4.active {
  background: url("/img/coffee_back_h_4.png") center center no-repeat;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-5:hover, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-5.active {
  background: url("/img/coffee_back_h_5.png") center center no-repeat;
}
body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-6:hover, body main.subscription-order .order-form-holder .coffee-holder .coffee-type.coffee-6.active {
  background: url("/img/coffee_back_h_6.png") center center no-repeat;
}
@media screen and (min-width: 100.0em) {
  body main.subscription-order.step4 .order-image-holder {
    position: relative;
    overflow: hidden;
    min-height: 1000px;
  }
}
body main.subscription-order.step4 .order-image-holder img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 100.0em) {
  body main.subscription-order.step4 .order-image-holder img {
    width: 1260px;
    height: 950px;
    position: absolute;
    left: -150px;
  }
}
body main.subscription-order.step4 .order-form-holder {
  text-align: center;
}
@media screen and (min-width: 62.0em) {
  body main.subscription-order.step4 .order-form-holder {
    text-align: left;
  }
}
body main.subscription-order.step4 .order-form-holder h3 {
  color: #6C0674;
  text-align: center;
}
@media screen and (min-width: 62.0em) {
  body main.subscription-order.step4 .order-form-holder h3 {
    text-align: left;
  }
}
body main.subscription-order.step4 .order-form-holder h5 {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 62.0em) {
  body main.subscription-order.step4 .order-form-holder h5 {
    text-align: left;
  }
}
body main.subscription-order.step4 .order-form-holder p {
  font-size: 1.5rem;
  line-height: 2.1rem;
  margin-bottom: 50px;
  color: #000000;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.subscription-order.step4 .order-form-holder .form-check-label {
  display: inline-block;
}
body main.subscription-order.step_result {
  margin-top: 0;
}
@media screen and (min-width: 62.0em) {
  body main.subscription-order.step_result {
    margin-top: 50px;
  }
}
body main.subscription-order.step_result .order-result {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 75.0em) {
  body main.subscription-order.step_result .order-result {
    padding-left: 60px;
  }
}
body main.subscription-order.step_result .order-result h3 {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #6C0674;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 62.0em) {
  body main.subscription-order.step_result .order-result h3 {
    margin-top: 30px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.subscription-order.step_result .order-result h3 {
    margin-top: 130px;
  }
}
body main.subscription-order.step_result .order-result h3.bad-result {
  color: red;
}
body main.subscription-order.step_result .order-result h3.bad-result svg {
  width: 40px;
  height: 40px;
  position: relative;
  top: -5px;
  margin-right: 10px;
}
body main.subscription-order.step_result .order-result h3.bad-result svg .st0 {
  fill: red;
}
body main.subscription-order.step_result .order-result p {
  margin-bottom: 50px;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
body main.profile {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  width: calc(100% - 30px);
  /* Addresses billing and delivery */
}
body main.profile .profile-me {
  background: #6858A5;
  position: relative;
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-me {
    padding-top: 90px;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-me {
    min-height: 100vh;
  }
}
body main.profile .profile-me .profile-me-inner {
  display: inline-block;
  float: left;
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-me .profile-me-inner {
    padding-bottom: 50px;
    text-align: center;
    float: none;
    width: 100%;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-me .profile-me-inner {
    width: 100%;
    float: right;
    width: 350px;
    text-align: left;
  }
}
@media screen and (min-width: 100.0em) {
  body main.profile .profile-me .profile-me-inner {
    width: 500px;
  }
}
body main.profile .profile-me .profile-me-inner .logo {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-me .profile-me-inner .logo {
    display: inline-block;
    text-align: center;
    padding-bottom: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-me .profile-me-inner .logo {
    margin-bottom: 100px;
    text-align: left;
  }
}
body main.profile .profile-me .profile-me-inner .logo img {
  height: 42px;
  display: block;
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-me .profile-me-inner .logo img {
    height: auto;
    display: inline-block;
  }
}
body main.profile .profile-me .profile-me-inner h4 {
  color: #ffffff;
  margin-bottom: 50px;
}
body main.profile .profile-me .profile-me-inner h5 {
  color: #ffffff;
  margin-bottom: 15px;
}
body main.profile .profile-me .profile-me-inner p {
  font-size: 1.5rem;
  line-height: 1.95rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.profile .profile-me .profile-me-inner p strong {
  font-size: 1.875rem;
  line-height: 2.4375rem;
}
body main.profile .profile-me .profile-me-inner a {
  font-size: 1.5rem;
  line-height: 1.95rem;
  color: #ffffff;
  text-decoration: underline;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.profile .profile-me .profile-me-inner a:hover {
  text-decoration: none;
}
body main.profile .profile-me #toggle {
  margin-bottom: 17px;
  margin-top: 17px;
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-me #toggle {
    display: none;
  }
}
body main.profile .profile-me #toggle .patty {
  background: #ffffff;
}
body main.profile .profile-me #toggle .patty:before, body main.profile .profile-me #toggle .patty:after {
  background: #ffffff;
}
body main.profile .profile-me #toggle:not(.collapsed) .patty {
  background: none !important;
}
body main.profile .profile-me #toggle:not(.collapsed) .patty:before {
  background: #ffffff !important;
}
body main.profile .profile-me #toggle:not(.collapsed) .patty:after {
  background: #ffffff !important;
}
body main.profile .profile-inner div#address-billing {
  display: none;
}
body main.profile .profile-inner div#address-delivery {
  display: none;
}
body main.profile .profile-orders {
  padding-top: 40px;
  padding-left: 15px;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders {
    padding-left: 50px;
    padding-top: 103px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.profile .profile-orders {
    padding-left: 100px;
  }
}
body main.profile .profile-orders .profile-nav-holder {
  height: 72px;
  display: none;
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-orders .profile-nav-holder {
    display: block;
  }
}
body main.profile .profile-orders nav {
  width: 100%;
  margin-bottom: 30px;
  display: none;
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-orders nav {
    display: block;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders nav {
    max-width: 700px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.profile .profile-orders nav {
    max-width: 925px;
  }
}
@media screen and (min-width: 120.0em) {
  body main.profile .profile-orders nav {
    max-width: 1180px;
  }
}
body main.profile .profile-orders #toggle {
  display: block;
  margin-top: 0;
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-orders #toggle {
    display: none;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.profile .profile-orders .profile-inner {
    max-width: 925px;
  }
}
@media screen and (min-width: 120.0em) {
  body main.profile .profile-orders .profile-inner {
    max-width: 1180px;
  }
}
body main.profile .profile-orders .profile-inner h2 {
  color: #6C0674;
  font-size: 2.8rem;
  line-height: 3.64rem;
  margin-bottom: 35px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner h2 {
    font-size: 3.5rem;
    line-height: 4.55rem;
  }
}
body main.profile .profile-orders .profile-inner h5 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 2.08rem;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner h5 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner h5 {
    font-size: 1.5rem;
    line-height: 1.95rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-coffee {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin-bottom: 60px;
  border-radius: 12px;
  margin-left: 0;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-coffee {
    width: 100%;
  }
}
@media screen and (min-width: 100.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-coffee {
    width: 80%;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-coffee > div {
  padding: 15px 25px;
  font-size: 1.2rem;
  line-height: 1.56rem;
  color: #000000;
  text-align: left;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-coffee > div {
    padding: 25px;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-coffee > div:first-child {
  text-align: left;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-coffee > div {
    font-size: 1.5rem;
    line-height: 1.95rem;
  }
}
@media screen and (min-width: 62.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-coffee > div {
    text-align: right;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-coffee > div span {
  font-size: 1.5rem;
  line-height: 1.95rem;
  padding-left: 45px;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-coffee > div span {
    font-size: 1.5rem;
    line-height: 1.95rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-coffee > div a {
  font-size: 1.2rem;
  line-height: 1.56rem;
  text-decoration: underline;
  color: #6C0674;
  float: right;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
body main.profile .profile-orders .profile-inner .profile-order-coffee > div a:hover {
  text-decoration: none;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-coffee > div a {
    font-size: 1.5rem;
    line-height: 1.95rem;
  }
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-coffee > div a {
    float: none;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-coffee.coffee-1 span {
  background: url("/img/coffee_back_h_1.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-coffee.coffee-2 span {
  background: url("/img/coffee_back_h_2.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-coffee.coffee-3 span {
  background: url("/img/coffee_back_h_3.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-coffee.coffee-4 span {
  background: url("/img/coffee_back_h_4.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-coffee.coffee-5 span {
  background: url("/img/coffee_back_h_5.png") left center no-repeat;
  background-size: 37px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-coffee.coffee-6 span {
  background: url("/img/coffee_back_h_6.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-rating {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating {
    width: 100%;
  }
}
@media screen and (min-width: 100.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating {
    width: 80%;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee {
  width: 130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 410px) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee {
    width: 190px;
  }
}
@media (min-width: 460px) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee {
    width: 205px;
  }
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee {
    width: 368px;
  }
}
@media screen and (min-width: 62.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee {
    width: 318px;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee {
    width: 33%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 120.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee {
    width: 20%;
    margin-bottom: 0;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
  text-align: center;
  background: url("/img/coffee_back.png") top center no-repeat;
  background-size: 100% auto;
  padding-top: 40px;
  height: 140px;
  color: #000000;
  font-size: 1rem;
  line-height: 1.3rem;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
@media (min-width: 410px) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
    padding-top: 50px;
    height: 170px;
  }
}
@media (min-width: 460px) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
    padding-top: 55px;
    height: 200px;
  }
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
    padding-top: 90px;
    height: 250px;
  }
}
@media screen and (min-width: 48.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
    padding-top: 130px;
    height: 330px;
  }
}
@media screen and (min-width: 62.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
    padding-top: 110px;
    height: 280px;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
    padding-top: 60px;
    height: 215px;
  }
}
@media screen and (min-width: 100.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
    padding-top: 80px;
    height: 215px;
  }
}
@media screen and (min-width: 120.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div {
    padding-top: 60px;
    height: 165px;
    font-size: 0.875rem;
    line-height: 1.1375rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.95rem;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div strong {
    font-size: 1.5rem;
    line-height: 1.95rem;
  }
}
@media screen and (min-width: 120.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div strong {
    font-size: 1.125rem;
    line-height: 1.4625rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div .desc {
  display: none;
}
@media (min-width: 410px) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div .desc {
    display: block;
  }
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div .desc {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee div .desc {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee span {
  text-align: center;
  display: block;
  font-size: 1.2rem;
  line-height: 1.95rem;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee span {
    font-size: 1.5rem;
    line-height: 1.95rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a {
  text-align: center;
  display: block;
  font-size: 1.5rem;
  line-height: 1.95rem;
  text-decoration: underline;
  color: #000000;
  padding-top: 10px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a:hover {
  text-decoration: none;
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated {
  text-decoration: none;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  background: url("/img/star.svg") 0 0 no-repeat, url("/img/star.svg") 30px 0 no-repeat, url("/img/star.svg") 60px 0 no-repeat, url("/img/star.svg") 90px 0 no-repeat, url("/img/star.svg") 120px 0 no-repeat;
  background-size: 24px 24px, 24px 24px, 24px 24px, 24px 24px, 24px 24px;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated {
    width: 82px;
  }
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated {
    background: url("/img/star.svg") 0 0 no-repeat, url("/img/star.svg") 17px 0 no-repeat, url("/img/star.svg") 34px 0 no-repeat, url("/img/star.svg") 51px 0 no-repeat, url("/img/star.svg") 68px 0 no-repeat;
    background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-1 {
  background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star.svg") 30px 0 no-repeat, url("/img/star.svg") 60px 0 no-repeat, url("/img/star.svg") 90px 0 no-repeat, url("/img/star.svg") 120px 0 no-repeat;
  background-size: 24px 24px, 24px 24px, 24px 24px, 24px 24px, 24px 24px;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-1 {
    background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star.svg") 17px 0 no-repeat, url("/img/star.svg") 34px 0 no-repeat, url("/img/star.svg") 51px 0 no-repeat, url("/img/star.svg") 68px 0 no-repeat;
    background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-2 {
  background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star_active.svg") 30px 0 no-repeat, url("/img/star.svg") 60px 0 no-repeat, url("/img/star.svg") 90px 0 no-repeat, url("/img/star.svg") 120px 0 no-repeat;
  background-size: 24px 24px, 24px 24px, 24px 24px, 24px 24px, 24px 24px;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-2 {
    background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star_active.svg") 17px 0 no-repeat, url("/img/star.svg") 34px 0 no-repeat, url("/img/star.svg") 51px 0 no-repeat, url("/img/star.svg") 68px 0 no-repeat;
    background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-3 {
  background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star_active.svg") 30px 0 no-repeat, url("/img/star_active.svg") 60px 0 no-repeat, url("/img/star.svg") 90px 0 no-repeat, url("/img/star.svg") 120px 0 no-repeat;
  background-size: 24px 24px, 24px 24px, 24px 24px, 24px 24px, 24px 24px;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-3 {
    background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star_active.svg") 17px 0 no-repeat, url("/img/star_active.svg") 34px 0 no-repeat, url("/img/star.svg") 51px 0 no-repeat, url("/img/star.svg") 68px 0 no-repeat;
    background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-4 {
  background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star_active.svg") 30px 0 no-repeat, url("/img/star_active.svg") 60px 0 no-repeat, url("/img/star_active.svg") 90px 0 no-repeat, url("/img/star.svg") 120px 0 no-repeat;
  background-size: 24px 24px, 24px 24px, 24px 24px, 24px 24px, 24px 24px;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-4 {
    background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star_active.svg") 17px 0 no-repeat, url("/img/star_active.svg") 34px 0 no-repeat, url("/img/star_active.svg") 51px 0 no-repeat, url("/img/star.svg") 68px 0 no-repeat;
    background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-5 {
  background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star_active.svg") 30px 0 no-repeat, url("/img/star_active.svg") 60px 0 no-repeat, url("/img/star_active.svg") 90px 0 no-repeat, url("/img/star_active.svg") 120px 0 no-repeat;
  background-size: 24px 24px, 24px 24px, 24px 24px, 24px 24px, 24px 24px;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-rating .coffee a.rated.star-5 {
    background: url("/img/star_active.svg") 0 0 no-repeat, url("/img/star_active.svg") 17px 0 no-repeat, url("/img/star_active.svg") 34px 0 no-repeat, url("/img/star_active.svg") 51px 0 no-repeat, url("/img/star_active.svg") 68px 0 no-repeat;
    background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee.ordered div {
  color: #ffffff;
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee.ordered.coffee-1 div {
  background: url("/img/coffee_back_h_1.png") top center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee.ordered.coffee-2 div {
  background: url("/img/coffee_back_h_2.png") top center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee.ordered.coffee-3 div {
  background: url("/img/coffee_back_h_3.png") top center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee.ordered.coffee-4 div {
  background: url("/img/coffee_back_h_4.png") top center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee.ordered.coffee-5 div {
  background: url("/img/coffee_back_h_5.png") top center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .profile-order-rating .coffee.ordered.coffee-6 div {
  background: url("/img/coffee_back_h_6.png") top center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .profile-order-history {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin-bottom: 60px;
  border-radius: 12px;
  padding-top: 25px;
}
@media screen and (min-width: 75.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-history {
    width: 100%;
  }
}
@media screen and (min-width: 100.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-history {
    width: 80%;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-history .row {
  margin-left: 0;
  margin-right: 0;
}
body main.profile .profile-orders .profile-inner .profile-order-history .row div {
  padding: 0 25px 25px;
  font-size: 1.2rem;
  line-height: 1.95rem;
  color: #6C0674;
  text-align: right;
  margin-bottom: 0;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-history .row div {
    text-align: right;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.95rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-history .row div span {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.95rem;
  padding-left: 45px;
  display: inline-block;
  float: left;
}
body main.profile .profile-orders .profile-inner .profile-order-history .row div span.no-history {
  padding-left: 0;
}
@media screen and (min-width: 36.0em) {
  body main.profile .profile-orders .profile-inner .profile-order-history .row div span {
    float: left;
    display: inline-block;
    font-size: 1.875rem;
    line-height: 2.4375rem;
  }
}
body main.profile .profile-orders .profile-inner .profile-order-history .row.coffee-1 span {
  background: url("/img/coffee_back_h_1.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-history .row.coffee-2 span {
  background: url("/img/coffee_back_h_2.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-history .row.coffee-3 span {
  background: url("/img/coffee_back_h_3.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-history .row.coffee-4 span {
  background: url("/img/coffee_back_h_4.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-history .row.coffee-5 span {
  background: url("/img/coffee_back_h_5.png") left center no-repeat;
  background-size: 37px 32px;
}
body main.profile .profile-orders .profile-inner .profile-order-history .row.coffee-6 span {
  background: url("/img/coffee_back_h_6.png") left center no-repeat;
  background-size: 35px 32px;
}
body main.profile .profile-orders .profile-inner .coffee-rating {
  width: 400px;
  text-align: center;
}
body main.profile .profile-orders .profile-inner .coffee-rating .coffee {
  width: 400px;
  height: 350px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #ffffff;
  padding-top: 130px;
  margin-bottom: 40px;
}
body main.profile .profile-orders .profile-inner .coffee-rating .coffee strong {
  display: block;
  font-size: 1.875rem;
  line-height: 2.8125rem;
}
body main.profile .profile-orders .profile-inner .coffee-rating .coffee.coffee-1 {
  background: url("/img/coffee_back_h_1.png") left center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .coffee-rating .coffee.coffee-2 {
  background: url("/img/coffee_back_h_2.png") left center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .coffee-rating .coffee.coffee-3 {
  background: url("/img/coffee_back_h_3.png") left center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .coffee-rating .coffee.coffee-4 {
  background: url("/img/coffee_back_h_4.png") left center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .coffee-rating .coffee.coffee-5 {
  background: url("/img/coffee_back_h_5.png") left center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .coffee-rating .coffee.coffee-6 {
  background: url("/img/coffee_back_h_6.png") left center no-repeat;
  background-size: 100% auto;
}
body main.profile .profile-orders .profile-inner .coffee-rating h4 {
  text-transform: uppercase;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
}
body main.profile .profile-orders .profile-inner .coffee-rating .stars {
  margin-bottom: 30px;
}
body main.profile .profile-orders .profile-inner .coffee-rating .stars .star {
  display: inline-block;
  width: 76px;
  height: 60px;
  background: url("/img/star_rating.svg") center center no-repeat;
  background-size: 60px 60px;
}
body main.profile .profile-orders .profile-inner .coffee-rating .stars .star.active, body main.profile .profile-orders .profile-inner .coffee-rating .stars .star.hover {
  background: url("/img/star_rating_active.svg") center center no-repeat;
  background-size: 60px 60px;
}