@keyframes reanimate-underline-1px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 1px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 1px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 1px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
}
@keyframes reanimate-underline-2px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 2px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 2px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 2px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 2px;
  }
}
@keyframes reanimate-underline-3px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 3px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 3px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 3px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 3px;
  }
}
@keyframes reanimate-underline-4px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 4px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 4px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 4px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 4px;
  }
}
@keyframes reanimate-underline-5px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 5px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 5px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 5px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 5px;
  }
}
/** Usage

    ```scss
      .lds { 
        @include ldsRingAnimation($foreground-color: #fff, $width: 2px, $size: 25px);
      }
    ```

    ```html
      <div class="lds">
        <div></div>
        <div></div>
        <div></div>
      </div>
    ```
 */
.cart-page {
  color: #001965;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 130px;
}
@media screen and (min-width: 500px) {
  .cart-page {
    margin-bottom: 200px;
  }
}
.cart-page .cart-page__title {
  font-weight: normal;
  font-size: 22px;
  line-height: 33px;
  margin: 0;
}
.cart-page .cart-page__notice {
  display: flex;
  align-items: center;
  margin: 2em 0;
}
.cart-page .cart-page__notice img {
  margin-right: 1em;
}
.cart-page .cart-page__items {
  padding-bottom: 1em;
}
.cart-page .cart-page__cta {
  background-color: #005ad2;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 0.75em 4em;
  margin-top: 1em;
  margin-right: 1em;
  min-width: 150px;
  border: 0;
  border-radius: 2em;
  outline: 0;
  transition: background-color 0.3s;
  cursor: pointer;
}
.cart-page .cart-page__cta[disabled] {
  cursor: not-allowed;
  background-color: #e1eeff;
}
.cart-page .cart-page__hr {
  border: 1px solid #eff0f2;
  height: 0;
}

.cart__toggle {
  position: relative;
  display: inline-block;
}
.cart__toggle .cart__count {
  position: absolute;
  font-size: 9.5px;
  background-color: #025edc;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  top: 0;
  right: 0;
  min-width: 16px;
  min-height: 16px;
  border-radius: 8px;
}

#nni-hcp-cart {
  position: relative;
  z-index: 1300;
}

.drawer {
  position: fixed;
  top: 0;
  right: -370px;
  bottom: 0;
  width: 370px;
  background-color: #ffffff;
  transition: right 0.3s ease-in-out;
}
.drawer.drawer--open {
  right: 0;
  box-shadow: 0 2px 74px 0 rgba(20, 16, 16, 0.5);
}
.drawer.drawer--open .drawer__mask {
  background: transparent;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.drawer .drawer__close {
  padding: 1em;
  text-align: right;
  cursor: pointer;
  position: relative;
  height: 29px;
  width: 29px;
  position: absolute;
  top: 26px;
  right: 26px;
}
.drawer .drawer__content {
  padding: 64px 53px 1em 37px;
  overflow-y: scroll;
  height: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 500px) {
  .drawer {
    width: 100%;
    right: -100%;
  }
  .drawer .drawer__content {
    padding: 45px 30px 1em 30px;
  }
}
.item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 2em 0;
}
.item .item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 1em;
  color: #001965;
}
.item .item__title {
  margin: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
}
.item .item__label {
  display: block;
  font-size: 12px;
  margin-bottom: 15px;
}
.item .item__quantity {
  background: #eff0f2 url(clientlibs/resources/show.cab418e7.svg) right 17px center no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 12px 40px 12px 20px;
  padding: 0.5em 3em 0.5em 2em;
}
.item .item__field {
  display: flex;
  align-items: center;
}
.item .item__delete {
  flex: 0 0 15px;
  width: 15px;
  margin-left: 10px;
  cursor: pointer;
}
.item .item__thumb {
  align-self: center;
}
.item .item__thumb img {
  box-shadow: 4px 6px 9px rgba(0, 0, 0, 0.33);
  width: 95px;
  display: block;
}

.item__error select {
  border: 2px solid #e6553f !important;
}
.item__error-message {
  background: #fdeeec;
  padding: 10px;
  color: #001965;
  display: flex;
  align-items: center;
}
.item__error-message-icon {
  margin: 0px 10px 0px 5px;
  height: 25px;
}

@keyframes reanimate-underline-1px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 1px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 1px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 1px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
}
@keyframes reanimate-underline-2px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 2px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 2px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 2px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 2px;
  }
}
@keyframes reanimate-underline-3px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 3px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 3px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 3px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 3px;
  }
}
@keyframes reanimate-underline-4px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 4px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 4px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 4px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 4px;
  }
}
@keyframes reanimate-underline-5px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 5px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 5px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 5px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 5px;
  }
}
/** Usage

    ```scss
      .lds { 
        @include ldsRingAnimation($foreground-color: #fff, $width: 2px, $size: 25px);
      }
    ```

    ```html
      <div class="lds">
        <div></div>
        <div></div>
        <div></div>
      </div>
    ```
 */
.address {
  background-color: #eff0f2;
  font-size: 14px;
  line-height: 18px;
  padding: 30px 15px;
}
.address__edit {
  text-align: right;
  margin-top: -15px;
}
.address__show {
  padding-left: 10px;
}
.address__form label {
  display: block;
  font-size: 12px;
  line-height: 17px;
}
.address__form input {
  background: #ffffff;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 12px 20px;
  margin: 5px 0;
  width: 100%;
}
.address__form input[type=checkbox] {
  width: 23px;
  height: 23px;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}
.address__form input[type=checkbox] + label {
  display: inline-block;
}
.address__form input[type=checkbox]:checked {
  position: relative;
}
.address__form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='24px' height='23px' viewBox='0 0 24 23' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E0-0-account-checkmark%3C/title%3E%3Cg id='Phase-2--image-exports' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpolyline id='0-0-account-checkmark' stroke='%23001965' stroke-width='4' points='2 13.2568054 9.43109131 19.3512878 21.7590332 2'%3E%3C/polyline%3E%3C/g%3E%3C/svg%3E");
  width: 24px;
  height: 23px;
  bottom: 0;
  right: 0;
}
.address__form select {
  background: #eff0f2 url(clientlibs/resources/show.cab418e7.svg) right 17px center no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 12px 40px 12px 20px;
  background-color: #ffffff;
  width: 100%;
  margin: 5px 0;
  padding-right: 36px;
  padding-left: 17px;
}
.address__row {
  display: flex;
  width: 100%;
  justify-content: stretch;
  align-items: center;
}
.address__row .address__field {
  margin-right: 7px;
}
.address__row .address__field:last-child {
  margin-right: 0;
}
.address__link {
  text-decoration: none;
  cursor: pointer;
}
@media (hover: hover) {
  .address__link {
    text-decoration: none;
    background-image: linear-gradient(#005ad2, #005ad2);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
  }
  .address__link:hover, .address__link:focus {
    background-size: 100% 2px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .address__link {
    text-decoration: none;
    background-image: linear-gradient(#005ad2, #005ad2);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
  }
  .address__link:hover, .address__link:focus {
    background-size: 100% 2px;
  }
}
.address__link--active {
  font-weight: bold;
  color: #001965;
  background-image: none;
  transition: none;
  animation: none;
}
