@charset "UTF-8";
.o-loading {
  display: flex;
  flex-direction: row;
  padding: 1.25rem 0.625rem;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.o-loading__container {
  background-color: #fff;
}

.o-loading__item {
  display: flex;
  flex-direction: column;
  padding: 0 0.625rem;
}

.o-loading__line {
  width: 100%;
  height: 15px;
  margin-bottom: 1.25rem;
  background-color: #efefef;
  animation: pulse 1s infinite ease-in-out;
}

.o-loading__image {
  width: 100px;
  height: 100px;
  margin-bottom: 1.25rem;
  background-color: #efefef;
  animation: pulse 1s infinite ease-in-out;
}

.o-loading__separator {
  width: 100%;
  height: 2px;
  margin: 0.3125rem 0 1.5625rem 0;
  background-color: #efefef;
}

.o-loading__list {
  display: flex;
  align-items: center;
}

.o-loading .-right {
  align-items: flex-end;
}

.o-loading .-h30p {
  height: 30px;
}

.o-loading .-h45p {
  height: 45px;
}

.o-loading .-w10p {
  width: 10%;
}

.o-loading .-w20p {
  width: 20%;
}

.o-loading .-w30p {
  width: 30%;
}

.o-loading .-w40p {
  width: 40%;
}

.o-loading .-w50p {
  width: 50%;
}

.o-loading .-w60p {
  width: 60%;
}

.o-loading .-w70p {
  width: 70%;
}

.o-loading .-w80p {
  width: 80%;
}

.o-loading .-w90p {
  width: 90%;
}

.o-loading .-w100p {
  width: 100%;
}

.-wrap {
  flex-flow: wrap;
}

.o-loadingLarge {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}

.o-loadingLarge__img {
  width: 200px;
}

.o-loadingLarge__item {
  height: 15px;
  margin-bottom: 1.25rem;
  background-color: #efefef;
  animation: pulse 1s infinite ease-in-out;
}

.o-loadingLarge__item.-inline {
  margin-right: 1.25rem;
  margin-bottom: 0;
}

.o-loadingLarge__item.-w40p {
  width: 40%;
}

.o-loadingLarge__item.-w50p {
  width: 50%;
}

.o-loadingLarge__item.-w60p {
  width: 60%;
}

@keyframes pulse {
  0% {
    background-color: rgba(157, 157, 157, 0.1);
  }
  50% {
    background-color: rgba(157, 157, 157, 0.3);
  }
  100% {
    background-color: rgba(157, 157, 157, 0.1);
  }
}

.btnLoading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

.btnLoading > div {
  display: flex;
  width: 12px;
  height: 12px;
  margin-right: 3px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-animation: btnLoading-bouncedelay 1.4s infinite ease-in-out both;
  animation: btnLoading-bouncedelay 1.4s infinite ease-in-out both;
}

.btnLoading > div:last-child {
  margin-right: 0;
}

.btnLoading .bounce1 {
  -webkit-animation-delay: -.32s;
  animation-delay: -.32s;
}

.btnLoading .bounce2 {
  -webkit-animation-delay: -.16s;
  animation-delay: -.16s;
}

@keyframes btnLoading-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.-addressListLoading {
  flex-flow: wrap;
}

.-addressBoxLoading {
  width: calc(50% - 20px);
  padding: 1.25rem 0.3125rem 0 0.3125rem;
  margin: 0.625rem;
  border: 1px solid #efefef;
}

.-checkoutStepLoading {
  width: calc(100% - 20px);
  padding: 0;
  margin-left: 0.625rem;
}

.-checkoutStepLoading > :first-child {
  width: 50%;
  padding: 1.25rem 1.25rem 0 1.25rem;
  border-right: 1px solid #ddd;
}

.-checkoutStepLoading > :last-child {
  width: 50%;
  padding: 1.25rem 1.25rem 0 1.25rem;
}

.-paymentListLoading {
  flex-direction: column;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.-paymentBoxLoading {
  width: calc(100% - 20px);
  padding: 1.25rem 0.3125rem 0 0.3125rem;
  margin: 0.625rem;
  border: 1px solid #efefef;
}

.-cartList {
  padding: 1.25rem 0.625rem;
}

.-otherItems {
  padding: 1.25rem 0.625rem;
  margin-top: 1.25rem;
}

.-addCreditCard {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.-addCreditCard .-paymentBoxLoading {
  flex: 0 1 calc(50% - 20px);
}

.-addCreditCard .-paymentBoxLoading:last-child {
  flex: 0 1 100%;
}

.-wrapBox {
  flex-direction: row;
  flex-wrap: wrap;
}

.-emptyBox {
  display: flex;
  align-items: center;
  background-color: #fafafa;
}

.-emptyBox .o-loading__item {
  align-items: center;
}

.-paymentHeader {
  padding-top: 1.875rem;
  background-color: #fff;
}

.btn.-white, .btn.-whiteSmallBorderBold {
  background-color: #fff;
  color: #25262b;
}

.btn.-small, .btn.-whiteSmallBorderBold {
  height: 50px;
  padding: 0.9375rem 3.125rem;
  font-size: 0.875rem;
}

.btn.-whiteSmallBorderBold, .btn.-borderBold {
  border: 3px solid #ddd;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  font-family: "Avenir", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
  transition: background .3s ease;
  border-radius: 2px;
}

.btn:hover {
  opacity: .8;
}

.btn.-xsmall {
  padding: 7px 0.625rem;
  font-size: 0.8125rem;
}

.btn.-medium {
  padding: 1.25rem;
  font-size: 0.875rem;
}

.btn.-large {
  min-width: 215px;
  padding: 1.25rem 50px;
  font-size: 1rem;
}

.btn.-full {
  width: 100%;
  padding: 1.25rem 50px;
  font-size: 1rem;
}

.btn.-black {
  background-color: #25262b;
  color: #fff;
}

.btn.-black:hover {
  background-color: #3d3e46;
}

.btn.-gray {
  background-color: #fafafa;
  border-color: #e6e6e6;
}

.btn.-red {
  background-color: #d50000;
  color: #fff;
}

.btn.-blue {
  background-color: #1f9cd7;
  color: #fff;
}

.btn.-pink {
  background-color: #eb008c;
  color: #fff;
}

.btn.-green {
  background-color: #03a87c;
  color: #fff;
}

.btn.-border {
  border-color: #25262b;
}

.btn.-border:hover {
  background-color: #03a87c;
  color: #fff;
  border-color: #03a87c;
}

.btn.-greenBorder {
  color: #03a87c;
  border-color: #03a87c;
}

.btn.-rounded {
  border-radius: 100px;
}

.btn.-link {
  text-decoration: underline;
}

.btn.-justText {
  text-decoration: underline;
}

.btn.-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  right: 5%;
  font-family: "boyner" !important;
}

.btn.-back {
  position: relative;
  justify-content: flex-start;
  padding-left: 1.5625rem !important;
  font-weight: 700;
}

.btn.-back::before {
  content: "";
  position: absolute;
  top: calc(50% - 9px);
  left: 0;
  font-family: "boyner" !important;
  font-size: 1rem;
}

.btn.-facebook {
  position: relative;
  height: 60px;
  background-color: #3b5997;
  color: #fff;
}

.btn.-facebook::before {
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  left: 10%;
  font-family: "boyner" !important;
  font-size: 1.375rem;
  font-weight: 400;
}

.btn.-twitter {
  position: relative;
  height: 60px;
  background-color: #1aa1f3;
  color: #fff;
}

.btn.-twitter::before {
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  left: 10%;
  font-family: "boyner" !important;
  font-size: 1.375rem;
}

.btn:disabled {
  background-color: #ddd;
  cursor: not-allowed;
  opacity: .8;
}

.btn.-iconText {
  display: inline-flex;
  color: #000;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  vertical-align: middle;
}

.btn.-iconText:first-of-type {
  margin-right: 1.875rem;
}

.btn.-iconText::before {
  margin-right: 0.3125rem;
}

.btn.-no-pad-left {
  padding-left: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input:disabled {
  background-color: #fafafa;
  cursor: not-allowed;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-row .form-control,
.form-row .select-control {
  width: 100%;
}

.form-row .form-label {
  display: flex;
  margin-bottom: 0.3125rem;
  color: #25262b;
  font-size: 0.875rem;
}

.form-row .or {
  position: relative;
  text-align: center;
}

.form-row .or::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background-color: #25262b;
}

.form-row .or span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 1.25rem 0.625rem;
  background-color: #fff;
  font-size: 0.875rem;
}

.select-list {
  position: relative;
}

.select-list::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 15px;
  font-family: "boyner";
  font-size: 0.625rem;
  pointer-events: none;
}

.select-list .select-control {
  width: 100%;
  height: 60px;
  padding: 0.9375rem 40px 0.9375rem 0.9375rem;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  font-size: 0.875rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 2px;
}

.select-list .select-control::-ms-expand {
  display: none;
}

.select-list .select-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.select-list .select-control:focus {
  border-color: #25262b;
}

.select-list .select-control.-err {
  border-color: #d50000;
}

.select-list .select-control.-small {
  height: 50px;
}

.select-list::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.select-list.-medium .select-control {
  height: 50px;
}

.select-list.-medium::after {
  line-height: 49px;
}

.select-list.-noLabel::before {
  top: 25px;
}

.-selectHalf {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.-selectHalf .select-list {
  width: calc(50% - 0.625rem);
}

.-selectHalf .form-label {
  width: calc(50% - 0.625rem);
}

.-selectHalfOneLabel {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.-selectHalfOneLabel + .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 30%;
}

.-selectHalfOneLabel.form-group {
  width: 70%;
}

.-selectHalfOneLabel .select-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  margin-right: 0.9375rem;
}

.-selectHalfOneLabel .select-list:first-child {
  width: 50%;
  min-width: 50%;
}

.-selectHalfOneLabel .select-list .form-label {
  flex: 1 0 100%;
  font-size: 0.8125rem;
}

.-twoSelectOneLabel {
  width: 100%;
}

.form-element {
  position: relative;
}

.form-element .lookPassword {
  position: absolute;
  top: 23px;
  right: 13px;
  font-size: 0.875rem;
  cursor: default;
  opacity: 0;
}

.form-control {
  height: 60px;
  padding: 1.25rem;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  color: #545454;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-control:focus {
  border-color: #25262b;
}

.form-control:focus + .lookPassword {
  opacity: 1;
}

.form-control:invalid {
  box-shadow: none;
}

.form-control.-err {
  border-color: #d50000;
}

.form-control.-small {
  padding: 0.3125rem 0.9375rem;
}

.form-control.-cvv {
  width: 100%;
}

.-errMsg {
  margin: 0.625rem 0;
  color: #d50000;
  font-size: 0.875rem;
}

.custom-radio {
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  -moz-appearance: none;
}

.custom-radio ~ .custom-radio-label {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 1.25rem;
  line-height: 1.25rem;
  cursor: pointer;
}

.custom-radio ~ .custom-radio-label::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 50%;
}

.custom-radio:checked ~ .custom-radio-label {
  font-weight: 700;
}

.custom-radio:checked ~ .custom-radio-label::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: calc(50% - 5px);
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #03a87c;
  border-radius: 50%;
}

.custom-radio:checked ~ .custom-radio-label::after {
  border: 1px solid #03a87c;
}

.custom-checkbox {
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  -moz-appearance: none;
}

.custom-checkbox ~ .custom-checkbox-label {
  position: relative;
  align-items: center;
  padding-left: 30px;
  line-height: 1.5;
  cursor: pointer;
}

.custom-checkbox ~ .custom-checkbox-label::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 2px;
}

.custom-checkbox ~ .custom-checkbox-label.-green {
  color: #03a87c;
}

.custom-checkbox:focus ~ .custom-checkbox-label {
  outline: 2px dotted #212121;
  outline: 5px auto -webkit-focus-ring-color;
}

.custom-checkbox:checked ~ .custom-checkbox-label::after {
  content: "";
  padding: 3px 4px;
  border: 1px solid #03a87c;
  background-color: #03a87c;
  color: #fff;
  font-family: "boyner" !important;
  font-size: 0.625rem;
}

.m-formType.-vertical {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 1.875rem;
}

.m-formType.-vertical .form-row {
  flex-direction: column;
  align-items: flex-start;
  margin-right: 1.875rem;
}

.m-formType.-vertical .form-row .-labelName {
  margin-bottom: 0.625rem;
  font-weight: 700;
}

.m-formType.-vertical .btn {
  align-self: flex-start;
  max-width: 200px;
  margin-top: 27px;
  margin-right: 0;
  text-transform: uppercase;
}

.form-inline {
  display: flex;
}

.form-inline .form-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.form-group {
  width: 100%;
}

.m-alertModal {
  display: flex;
  flex-direction: column;
}

.m-alertModal__content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.m-alertModal__status {
  margin-right: 1.25rem;
  text-align: center;
  border-radius: 50%;
}

.m-alertModal__status::before {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.m-alertModal__title {
  width: 100%;
  margin-bottom: 0.9375rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.m-alertModal__button {
  width: 150px;
  height: 50px;
}

.m-alertModal__message {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
}

.m-alertModal .-success {
  background-color: #03a87c;
  color: #fff;
  font-family: "boyner";
}

.m-alertModal .-success::before {
  content: "";
  font-size: 26px;
}

.m-alertModal .-error {
  background-color: #d50000;
  color: #fff;
}

.m-alertModal .-error::before {
  content: "!";
  font-size: 53px;
}

.m-alertModal .-warning {
  background-color: #ffc107;
  color: #fff;
}

.m-alertModal .-warning::before {
  content: "!";
  font-size: 53px;
}

.m-alertModal .-info {
  background: #1aa1f3;
  color: #fff;
}

.m-alertModal .-info::before {
  content: "i";
  font-size: 53px;
}

.o-step {
  display: flex;
  height: 130px;
}

.o-step__item {
  position: relative;
  display: flex;
  flex-basis: 50%;
  width: 50%;
  height: 100%;
  padding: 0 1.25rem;
  background-color: #fafafa;
}

.o-step__item:first-child {
  border-right: 1px solid #ddd;
}

.o-step__item:first-child .o-step__ico::after {
  content: "";
}

.o-step__item.-active {
  background-color: #fff;
}

.o-step__item.-active .o-step__title {
  color: #03a87c;
}

.o-step__item:not(.-active) .o-step__paragraph {
  opacity: .5;
}

.o-step__link {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.25rem 0;
}

.o-step__link.-outside {
  position: static;
}

.o-step__link.-outside::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.o-step__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
}

.o-step__ico {
  color: #03a87c !important;
  font-size: 0.75rem;
}

.o-step__ico::after {
  content: "";
  margin-left: 0.625rem;
  color: #03a87c;
  font-family: "boyner";
}

.o-step__paragraph {
  display: -webkit-box;
  overflow: hidden;
  max-height: 58px;
  margin: 0.3125rem 0;
  font-size: 0.875rem;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.o-orderSummary {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.o-orderSummary__header {
  display: flex;
  align-items: center;
  height: 90px;
  padding: 1.25rem;
  border-bottom: 1px solid #ddd;
}

.o-orderSummary__title {
  font-size: 1.125rem;
}

.o-orderSummary__body {
  padding: 1.25rem;
  border-bottom: 1px solid #ddd;
  font-size: 0.875rem;
}

.o-orderSummary__footer {
  padding: 1.25rem;
}

.o-orderSummary__item {
  padding: 0.625rem 0;
}

.o-orderSummary__item.-discount {
  color: #03a87c;
  font-weight: 700;
}

.o-orderSummary__item .-removeDiscount {
  color: #9d9d9d;
  cursor: pointer;
}

.o-orderSummary__item .-removeDiscount::before {
  content: "";
  padding-right: 0.625rem;
  margin-left: 0.625rem;
  border-left: 1px solid #ddd;
}

.o-orderSummary__item.-total {
  font-weight: 700;
}

.o-orderSummary__itemVal {
  text-align: right;
}

.o-orderSummary .btn {
  width: 100%;
  margin-top: 1.25rem;
}

.o-orderSummary .lightningText {
  margin-top: 11px;
}

.o-orderSummary .lightningText a {
  display: block;
  color: #03a87c;
  font-size: 12px;
  text-align: center;
}

.o-orderSummaryLoading__title {
  padding-bottom: 1.25rem;
  font-size: 1.25rem;
}

.o-orderSummaryLoading__item {
  display: flex;
}

.o-orderSummaryLoading__item .o-loadingLarge__item:first-child {
  margin-right: 1.25rem;
}

.o-orderSummaryLoading__item:last-child .o-loadingLarge__item {
  margin-bottom: 0;
}

.o-orderSummaryLoading__horizontalRule {
  height: 2px;
  margin-bottom: 1.25rem;
  background-color: #f0f0f0;
}

.m-searchableDropdown {
  position: relative;
  flex-basis: 100%;
  font-size: 0.875rem;
}

.m-searchableDropdown__searchWrapper {
  position: relative;
}

.m-searchableDropdown__searchWrapper::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: #999;
  font-family: "boyner";
  font-size: 1.1875rem;
  font-weight: 700;
  pointer-events: none;
}

.m-searchableDropdown__searchWrapper::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 1.25rem;
  font-family: "boyner";
  font-size: 0.625rem;
  pointer-events: none;
}

.m-searchableDropdown__searchWrapper .form-control {
  padding-left: 50px;
}

.m-searchableDropdown__options {
  position: absolute;
  z-index: 4;
  top: 60px;
  display: none;
  width: 100%;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 2px;
}

.m-searchableDropdown__options.-open {
  display: flex;
  flex-direction: column;
}

.m-searchableDropdown__options.-scrollY {
  overflow-y: auto;
  max-height: 175px;
}

.m-searchableDropdown__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #ddd;
}

.m-searchableDropdown__option:hover {
  background-color: #fafafa;
  cursor: pointer;
}

.m-searchableDropdown__option:last-child {
  border-bottom: 0;
}

.m-searchableDropdown__option.-visualFocus {
  background-color: #fafafa;
}

.m-searchableDropdown__option.-selected {
  height: 60px;
  border: 1px solid #ddd;
  cursor: not-allowed;
  border-radius: 2px;
}

.m-searchableDropdown__option.-selected:hover {
  background-color: initial;
}

.m-searchableDropdown__option.-selected .m-searchableDropdown__optionTitle {
  font-weight: initial;
}

.m-searchableDropdown__option.-selected .m-searchableDropdown__optionCode {
  font-weight: initial;
}

.m-searchableDropdown__option .bo-cross {
  cursor: pointer;
}

.m-searchableDropdown__option .bo-cross.-nopadding {
  padding: 0;
}

.m-searchableDropdown__option.-alternateSelected {
  height: 60px;
  border: 1px solid #ddd;
  cursor: default;
  border-radius: 2px;
}

.m-searchableDropdown__option.-alternateSelected .m-searchableDropdown__optionInfo {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.m-searchableDropdown__optionInfo {
  display: flex;
  flex-direction: column;
}

.m-searchableDropdown__optionTitle {
  font-weight: 700;
}

.m-searchableDropdown__expire {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
}

.m-searchableDropdown__expireTitle {
  color: #03a87c;
}

.m-searchableDropdown__optionCode {
  color: #03a87c;
  font-weight: 700;
}

.o-alert {
  display: flex;
  padding: 0.9375rem;
  margin: 0.9375rem 0;
  border-radius: 5px;
}

.o-alert.-success {
  border: 2px solid #03a87c;
  color: #03a87c;
}

.o-alert.-error {
  border: 2px solid #d50000;
  color: #d50000;
}

.o-alert.-warning {
  border: 2px solid #ffc107;
  color: #000;
}

.o-alert.-info {
  border: 2px solid #1aa1f3;
  color: #1aa1f3;
}

.-list {
  margin: 1.25rem;
  list-style-type: disc;
}

.o-notify {
  position: fixed;
  right: -400px;
  bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 355px;
  min-height: 80px;
  padding: 0.9375rem 0.9375rem 0.9375rem 1.25rem;
  background-color: #fff;
  color: #000;
  transition: all 1s;
}

.o-notify__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.o-notify.open {
  right: 40px;
  min-width: 150px;
  animation: right-to-left 1s 1 ease-in-out;
}

.o-notify::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #25262b;
}

.o-notify__status {
  align-self: flex-start;
  padding-top: 0.3125rem;
  text-align: center;
}

.o-notify__status::before {
  display: block;
  width: 30px;
  height: 30px;
  font-weight: 700;
  line-height: 30px;
}

.o-notify__status.-success {
  background-color: #03a87c;
  color: #fff;
  font-family: "boyner";
}

.o-notify__status.-success::before {
  content: "";
  font-size: 0.9375rem;
}

.o-notify__status.-error {
  background-color: #d50000;
  color: #fff;
}

.o-notify__status.-error::before {
  content: "!";
  font-size: 1.25rem;
}

.o-notify__status.-warning {
  background-color: #ffc107;
  color: #fff;
}

.o-notify__status.-warning::before {
  content: "!";
  font-size: 1.25rem;
}

.o-notify__status.-info {
  background: #1aa1f3;
  color: #fff;
}

.o-notify__status.-info::before {
  content: "i";
  font-size: 1.25rem;
}

.o-notify__icon {
  height: 1.25rem;
  min-width: 1.25rem;
}

.o-notify__text {
  width: 70%;
  margin-left: 0.9375rem;
  font-size: 1rem;
  word-wrap: break-word;
}

.o-notify__options {
  align-self: flex-start;
  margin-left: 1.25rem;
}

.o-notify__button {
  padding: 0.3125rem 0.625rem;
  background-color: #fff;
  color: #999;
  cursor: pointer;
}

.o-notify__button.-success {
  background-color: #fff;
  color: #03a87c;
}

.o-notify__button.-error {
  background-color: #fff;
  color: #d50000;
}

.o-notify__button.-warning {
  background-color: #fff;
  color: #ffc107;
}

.o-notify__button.-info {
  background-color: #fff;
  color: #1aa1f3;
}

.o-notify__content {
  display: flex;
  align-items: center;
}

.o-notify.-success::after {
  background-color: #03a87c;
}

.o-notify.-error::after {
  background-color: #d50000;
}

.o-notify.-warning::after {
  background-color: #ffc107;
}

.o-notify.-info::after {
  background-color: #1aa1f3;
}

@keyframes rigth-to-left {
  0% {
    right: -350px;
  }
  50% {
    right: -150px;
  }
  100% {
    right: 100px;
  }
}

body {
  overflow-x: hidden;
  background-color: #f7f6f6;
}

.o-simpleHeader {
  margin-bottom: 1.5625rem;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.o-simpleHeader__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.o-simpleHeader .a-secureLogo {
  display: flex;
  align-items: center;
}

.o-simpleHeader .a-secureLogo__text {
  margin-right: 0.625rem;
  color: #03a87c;
  font-size: 0.8125rem;
  font-weight: 700;
}

.m-masterpass__message {
  position: relative;
  padding: 1.25rem;
  margin-bottom: 1.5625rem;
  border-bottom: 1px solid #ddd;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.m-masterpass__message--title {
  color: #d50000;
  font-size: 1rem;
  font-weight: 400;
}

.m-masterpass__message--text {
  max-width: 70%;
  margin: 0.625rem 0;
  font-size: 0.875rem;
}

.m-masterpass__message .btn {
  display: inline-block;
  width: 20%;
}

.m-masterpass__message .-closeBox {
  margin-left: 40px;
  cursor: pointer;
}

.m-masterpass__message--img {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  max-height: 32px;
}

.m-masterpassList {
  width: 100%;
}

.m-masterpassList__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.m-masterpassList__itemBody {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.9375rem;
}

.m-masterpassList__itemFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0.9375rem;
  border-top: 1px solid #e6e6e6;
  background-color: #fafafa;
  border-radius: 0 0 2px 2px;
}

.m-masterpassList__item .-delete {
  font-size: 0.875rem;
  font-weight: 700;
}

.m-masterpassList__item .-delete::before {
  margin-right: 0.625rem;
}

.m-masterpassList__item .-isSelected {
  display: flex;
  color: #03a87c;
  font-weight: 700;
  text-transform: uppercase;
}

.m-masterpassList__item .-isSelected::before {
  margin-right: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
}

.m-masterpassList__item .-isSelected.-active {
  animation: fadein 1.2s;
}

.m-masterpassList__item .-isSelected:not(.-active)::before {
  content: "";
  width: 11px;
}

.m-masterpassList__item.-addCard {
  background-color: #fff;
}

.m-masterpassList__item.-addCard .custom-radio-label {
  margin-bottom: 1.875rem;
  color: #03a87c;
}

.m-masterpassList__item:last-child {
  margin-bottom: 0;
}

.m-masterpassList__item .-img {
  max-height: 20px;
  margin-right: 0.625rem;
}

.m-masterpassList__cardInfo {
  display: flex;
  flex-direction: column;
  max-width: 40%;
  word-break: break-word;
}

.m-masterpassList__installmentInfo {
  display: flex;
  opacity: 0;
  visibility: hidden;
}

.m-masterpassList__cvv {
  max-width: 40%;
  margin-left: 20px;
}

.m-masterpassList__cardName {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0.625rem;
  font-weight: 700;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.m-masterpassList__label {
  border: solid 1px #ddd;
  cursor: pointer;
  border-radius: 2px;
}

.m-masterpassList__radio {
  display: none;
}

.m-masterpassList__radio:checked ~ .m-masterpassList__label {
  border-color: #03a87c;
  transition: border-color .4s linear;
}

.m-masterpassList__radio:checked ~ .m-masterpassList__label > * > .m-masterpassList__installmentInfo {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease-out;
}

.m-masterpassList__radio:checked ~ .m-masterpassList__label > * > * > .m-masterpassList__cardName {
  color: #03a87c;
  transition: color .3s linear;
}

.m-masterpassList--content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1.5625rem;
}

.m-masterpassList--content .-mpLogo {
  align-self: flex-end;
  max-height: 32px;
}

.m-masterpassList--content .-note {
  align-self: flex-start;
  padding-top: 6px;
  padding-left: 0;
  font-size: 0.75rem;
}

.m-masterpassList--img {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-block;
  max-height: 32px;
}

.m-masterpassRegister {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 1.875rem;
  margin-top: 1.25rem;
  background-color: #fafafa;
  font-size: 0.875rem;
}

.m-masterpassRegister__form {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.m-masterpassRegister .form-control {
  width: 100%;
  margin-top: 0.625rem;
}

.m-masterpassRegister__text {
  color: #666;
}

.m-masterpassRegister .btn {
  width: 100%;
  margin-top: 27px;
  text-transform: uppercase;
}

.m-masterpassCheckbox {
  display: flex;
  justify-content: flex-start;
  font-size: 0.875rem;
}

.m-masterpassCheckbox .custom-checkbox-label {
  margin-right: auto;
}

.m-masterpassResendOtp {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.m-masterpassCounter {
  margin-top: 0.625rem;
  color: #999;
}

.m-masterpassTiming {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.-gray {
  background-color: #fafafa;
}

.-bkmModal .modal__content--title {
  display: flex;
  align-items: center;
  font-size: 1.375rem;
}

.o-modal {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  font-size: 0.875rem;
  transition: all .3s ease;
}

.o-modal__checkbox {
  display: none;
}

.o-modal__checkbox:checked ~ .o-modal {
  display: flex;
}

.o-modal.-open {
  display: flex;
}

.o-modal.-open .o-modal__container {
  opacity: 1;
}

.o-modal__backdrop {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.o-modal__container {
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
  width: 720px;
  max-width: 70vw;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}

.o-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.875rem 0;
  border-bottom: 1px solid #e6e6e6;
}

.o-modal__title {
  order: -1;
  padding-left: 1.875rem;
  font-size: 1.125rem;
}

.o-modal__body {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-height: 70vh;
  margin: 1.25rem;
}

.o-modal__body::-webkit-scrollbar {
  width: 10px;
}

.o-modal__body::-webkit-scrollbar-track {
  border-right: 4px solid white;
  border-left: 4px solid white;
  background-color: #ddd;
}

.o-modal__body::-webkit-scrollbar-thumb {
  width: 10px;
  min-height: 30px;
  background-color: #9d9d9d;
  border-radius: 5px;
  outline: none;
}

.o-modal__body .btn {
  margin-right: 0.625rem;
  margin-left: auto;
}

.o-modal__buttons {
  display: flex;
  margin-top: 1.25rem;
}

.o-modal__buttons .btn {
  min-width: 125px;
  margin-right: 1.25rem;
  margin-left: 0;
  text-transform: uppercase;
}

.o-modal__footer {
  display: flex;
  justify-content: flex-end;
  width: 100vw;
  padding: 0.9375rem;
  border-top: solid 1px #e6e6e6;
}

.o-modal__close {
  padding-right: 1.875rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.o-modal .-otpSubmitButton {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
  padding: 1.25rem;
  background-color: #d50000;
  color: #fff;
  font-size: 0.875rem;
  -ms-flex: 0 0 41.66667%;
}

#delivery {
  background-color: #fff;
  padding: 30px;
}

#delivery .newSection {
  margin-top: 15px;
}

#delivery #noDeliveryPanel .m-storeList__info {
  font-size: 14px;
}

#delivery #noDeliveryPanel form {
  width: 100%;
}

#delivery #noDeliveryPanel form button {
  float: right;
}

#delivery #noDeliveryPanel form > .form-row {
  margin-left: -10px;
  margin-right: -10px;
}

#delivery #noDeliveryPanel form .-errMsg {
  font-size: 13px;
}

#delivery #noDeliveryPanel form input {
  height: 50px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

#delivery #noDeliveryPanel form label {
  font-size: 12px;
  font-weight: 900;
}

#delivery #noDeliveryPanel form .m-searchableDropdown__searchWrapper:before {
  top: 16px;
}

#delivery #noDeliveryPanel form .m-searchableDropdown__searchWrapper:after {
  color: #999;
  top: 21px;
}

#delivery #noDeliveryPanel .carService {
  margin-top: 25px;
  height: 83px;
  background-color: #e8f1fd;
  padding: 20px;
  width: 100%;
  margin-bottom: 25px;
}

#delivery #noDeliveryPanel .carService .checkboxWrapper {
  float: left;
  position: relative;
}

#delivery #noDeliveryPanel .carService .checkboxWrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  z-index: 100;
}

#delivery #noDeliveryPanel .carService .checkboxWrapper .checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid #666;
  border-radius: 3px;
  background-color: #fff;
}

#delivery #noDeliveryPanel .carService .checkboxWrapper input:checked + div:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid #03a87c;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#delivery #noDeliveryPanel .carService .textSection {
  font-size: 14px;
  color: #1d1d1d;
  float: right;
  width: calc(100% - 30px);
}

#delivery #noDeliveryPanel .carService .textSection .carServiceTitle {
  font-weight: 900;
  float: left;
}

#delivery #noDeliveryPanel .carService .textSection .carServiceTitle span {
  display: block;
  float: left;
}

#delivery #noDeliveryPanel .carService .textSection .carServiceTitle .infoIcon {
  float: left;
  width: 17px;
  height: 17px;
  margin-left: 10px;
  cursor: pointer;
}

#delivery #noDeliveryPanel .carService .textSection .carServiceText {
  margin-top: 8px;
  float: left;
}

#delivery #noDeliveryPanel .carService .infoWrapper {
  position: relative;
}

#delivery #noDeliveryPanel .carService .infoWrapper .carServiceInfo {
  position: absolute;
  left: 0;
  top: 26px;
  width: 470px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

#delivery #noDeliveryPanel .carService .infoWrapper .carServiceInfo .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

#delivery #noDeliveryPanel .carService .infoWrapper .carServiceInfo .infoImage {
  float: left;
}

#delivery #noDeliveryPanel .carService .infoWrapper .carServiceInfo .infoTextWrapper {
  float: right;
  width: calc(100% - 120px);
  color: #1d1d1d;
}

#delivery #noDeliveryPanel .carService .infoWrapper .carServiceInfo .infoTextWrapper .title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 24px;
}

#delivery #noDeliveryPanel .carService .infoWrapper .carServiceInfo .infoTextWrapper .text {
  font-size: 14px;
  line-height: 20px;
}

#delivery #noDeliveryPanel .carService .image img {
  float: right;
}

#delivery .m-boxModel {
  box-shadow: none !important;
  border: 1px solid #eeeeee;
  border-radius: 3px;
}

#delivery .m-boxModel .-open {
  position: relative;
}

#delivery .m-boxModel .-open label {
  color: #03a87c;
}

#delivery .m-boxModel .-open:after {
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 2px;
  background-color: #03a87c;
}

#delivery .m-boxModel label {
  font-size: 13px;
  font-weight: 900;
  line-height: 60px;
  height: auto;
  color: #505050;
  padding: 0 !important;
}

#delivery .m-boxModel label img {
  margin-right: 10px;
}

#delivery .m-boxModel .icustomLabel .info {
  position: absolute;
  line-height: 24px;
  text-align: center;
  width: 129px;
  font-size: 12px;
  left: 0;
  right: 0;
  margin: auto;
  background: #d6f6ea;
  border-radius: 3px;
  top: -13px;
  color: #03a87c;
}

#delivery .m-boxModel .icustomLabel .info:before {
  content: " ";
  top: 100%;
  left: 50%;
  border: solid rgba(0, 0, 0, 0);
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #d6f6ea rgba(194, 225, 245, 0) rgba(194, 225, 245, 0);
  border-width: 8px;
  margin-left: -8px;
}

#delivery .m-boxModel__body {
  padding: 0 !important;
}

#delivery label,
#delivery label.icustomLabel:focus {
  outline: none !important;
}

#delivery .m-boxModel__header {
  border: 0 !important;
  height: auto !important;
}

#delivery .m-boxModel__header label:after, #delivery .m-boxModel__header label:before {
  opacity: 0;
}

.-boxModel {
  margin-bottom: 1.25rem;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.m-boxModel {
  margin-bottom: 1.25rem;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.m-boxModel__header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 85px;
  padding: 0 1.25rem;
}

.m-boxModel__header.-open {
  border-bottom: 1px solid #e6e6e6;
}

.m-boxModel__header.-mpLink {
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
}

.m-boxModel__header.-mpLink .-title {
  padding-left: 0;
}

.m-boxModel__header .-title {
  padding-left: 1.875rem;
  font-size: 1.125rem;
}

.m-boxModel.-freecharge {
  background-color: rgba(255, 255, 255, 0.8);
}

.m-boxModel__logo {
  margin-left: auto;
}

.m-boxModel__body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1.25rem;
}

.m-boxModel__body.-mpLink {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.m-boxModel__body.-mpLink .-msg {
  font-size: 0.875rem;
}

.m-boxModel__body.-mpLink .btn {
  min-width: 125px;
  margin-left: 1.25rem;
  text-transform: uppercase;
}

.m-boxModel__footer {
  padding: 1.875rem 1.25rem;
  border-top: 1px solid #e6e6e6;
}

.m-addressItem {
  display: flex;
  width: calc((100% - 20px) / 2);
  height: 200px;
  font-size: 0.875rem;
}

.m-addressItem:nth-child(2n + 1) {
  margin: 0 1.25rem 1.25rem 0;
}

.m-addressItem.-addAddress, .m-addressItem.-selectStore {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.9375rem;
  border: 1px solid #ddd;
  background-color: #fafafa;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 2px;
}

.m-addressItem.-addAddress:before, .m-addressItem.-selectStore:before {
  content: "";
  margin-bottom: 0.9375rem;
  color: #03a87c;
  font-family: "boyner";
  font-size: 2rem;
  font-weight: 400;
}

.m-addressItem.-selectStore:before {
  content: "";
}

.m-addressItem__edit {
  padding: 0;
  cursor: pointer;
  text-transform: uppercase;
}

.m-addressItem__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0.9375rem;
  border: 1px solid #ddd;
  background-color: #fafafa;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-radius: 2px;
}

.m-addressItem__label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  color: #000;
  line-height: 1.5rem;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  cursor: pointer;
  overflow-wrap: break-word;
  -ms-word-break: break-all;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.m-addressItem__title {
  display: block;
  overflow: hidden;
  font-weight: 700;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-addressItem__name {
  display: block;
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-addressItem__desc {
  display: -webkit-box;
  overflow: hidden;
  max-height: 45px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.m-addressItem__footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.m-addressItem__footer.-isEditable {
  display: none;
}

.m-addressItem__footer.-isSelectable {
  color: #03a87c;
}

.m-addressItem__radio {
  display: none;
  opacity: 0;
}

.m-addressItem__radio:checked ~ .m-addressItem__box {
  border: 1px solid #03a87c;
  background-color: #fff;
}

.m-addressItem__radio:checked ~ .m-addressItem__box .m-addressItem__label .m-addressItem__title {
  color: #03a87c;
  transition: color 0.3s ease;
}

.m-addressItem__radio:checked ~ .m-addressItem__box .m-addressItem__selected {
  padding: 0;
  margin-right: 1.875rem;
  color: #03a87c;
  text-transform: uppercase;
}

.m-addressItem__radio:checked ~ .m-addressItem__box .m-addressItem__selected::before {
  content: "";
  margin-right: 0.3125rem;
  font-family: "boyner";
}

.m-addressItem__radio:checked ~ .m-addressItem__box .m-addressItem__footer.-isEditable {
  display: flex;
}

.m-addressItem__radio:checked ~ .m-addressItem__box .m-addressItem__footer.-isSelectable {
  display: none;
}

.m-storeList {
  overflow-y: auto;
  max-height: 150px;
  min-height: 150px;
  margin: 0 1.25rem;
}

.m-storeList::-webkit-scrollbar {
  width: 10px;
}

.m-storeList::-webkit-scrollbar-track {
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  background-color: #ddd;
}

.m-storeList::-webkit-scrollbar-thumb {
  width: 10px;
  min-height: 30px;
  background-color: #9d9d9d;
  border-radius: 5px;
  outline: none;
}

.m-storeList__info {
  padding-top: 0.9375rem;
  border-top: 1px solid #999;
}

.m-storeList__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  padding: 0 1.25rem;
  color: #25262b;
  font-size: 1rem;
  font-weight: 700;
}

.m-storeList__item:hover {
  background-color: #f7f6f6;
  cursor: pointer;
  border-radius: 5px;
}

.m-storeList__item.highlight {
  background-color: #03a87c;
  color: #fff;
  border-radius: 5px;
}

.m-storeList__item.highlight::after {
  content: "";
  display: flex;
  font-family: "boyner";
}

@media (min-width: 768px) {
  .m-checkout__wrapper {
    order: 2;
  }
}

@media (min-width: 992px) {
  .m-checkout__wrapper {
    order: 1;
    min-height: 670px;
  }
}

.orderSummary__wrapper {
  padding-bottom: 1.875rem;
}

@media (min-width: 768px) {
  .orderSummary__wrapper {
    order: 1;
  }
}

@media (min-width: 992px) {
  .orderSummary__wrapper {
    order: 2;
  }
}

.o-checkout__content {
  display: none;
}

.o-checkout__content.-active {
  display: flex;
  flex-direction: column;
}

.o-checkout .info {
  display: flex;
}

.o-checkout .info-ico {
  width: 45px;
  height: 30px;
  background: #efefef;
  font-size: 1.125rem;
  font-weight: 700;
  font-style: normal;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.o-checkout .info-text {
  margin-left: 0.9375rem;
  color: #545454;
  font-size: 0.75rem;
}

.m-creditCard {
  width: calc(50% - 20px);
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}

.m-creditCard .form-label {
  font-weight: 700;
}

.m-creditCard.-open {
  display: flex;
  flex-direction: column;
}

.m-creditCard .-cardType {
  position: absolute;
  top: 33px;
  right: 10px;
}

.m-installment {
  display: flex;
  flex-direction: column;
  width: 50%;
  font-size: 0.875rem;
}

.m-installment.-heightFix {
  align-self: flex-start;
}

.m-installment__header {
  margin-bottom: 0.3125rem;
  font-weight: 700;
}

.m-installment__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-bottom: 1.25rem;
  border: 1px solid #ddd;
  background-color: #fafafa;
  border-radius: 2px;
}

.m-installment__desc {
  text-align: center;
}

.m-installment__table {
  flex: 1;
  width: 100%;
}

.m-installment__table--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
  border-bottom: solid 1px #e6e6e6;
  font-size: 0.875rem;
}

.m-installment__table--item:last-of-type:not(:only-of-type) {
  flex: 1;
  border-bottom: none;
}

.m-installment__table--item.-active {
  background: #fff;
  color: #03a87c;
  transition: background-color .4s linear;
}

.m-installment__table--item .-name {
  min-width: 50%;
  padding: 0.9375rem 1.25rem;
}

.m-installment__table--item .-name:first-child {
  border-right: solid 1px #e6e6e6;
}

.m-installment__table--item .custom-radio:checked ~ .custom-radio-label {
  color: #03a87c;
}

.m-3dCheckbox,
.m-mpCheckbox {
  display: flex;
  font-size: 0.875rem;
}

.o-agreement__headline {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.o-agreement__title {
  font-size: 1rem;
  font-weight: 400;
}

.o-agreement__hr {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
  border-bottom: 1px solid #ddd;
}

.o-agreement .scroll {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 170px;
  margin: 0.625rem 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.o-agreement .scroll h3 {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
}

.o-agreement .scroll p {
  color: #666;
  font-size: 0.875rem;
}

.o-agreement .scroll::-webkit-scrollbar {
  width: 10px;
}

.o-agreement .scroll::-webkit-scrollbar-track {
  background-color: #ddd;
  border-radius: 5px;
}

.o-agreement .scroll::-webkit-scrollbar-thumb {
  width: 6px;
  min-height: 30px;
  background-color: #9d9d9d;
  border-radius: 5px;
  outline: none;
}

.custom-radio:focus ~ .custom-radio-label {
  outline: 2px dotted #212121;
  outline: 5px auto -webkit-focus-ring-color;
}

.checkoutPayAtDoorDescWrapper {
  padding: 30px;
}

.checkoutPayAtDoorDescWrapper .m-boxModel__payAtDoorDescription {
  font-size: 12px;
}

.checkoutPayAtDoorDescWrapper .m-boxModel__payAtDoorDescription.-main {
  font-size: 16px;
  margin-bottom: 20px;
}

.maxiPuanWrapper {
  clear: both;
  width: 100%;
  margin-top: 20px;
}

.maxiPuanWrapper .title-label {
  width: 100%;
  font-size: 14px;
  font-weight: 900;
}

.maxiPuanWrapper label {
  float: left;
  clear: both;
  margin-top: 10px;
  font-size: 14px;
}

.maxiPuanWrapper label strong {
  font-weight: 900;
}

.creditMaxiPoint {
  color: #03a87c;
}


/*# sourceMappingURL=maps/checkout.css.map */
