/*
	CHECKOUT
*/
.checkout {
  width: 100%;
  position: relative;
}

.checkout__section {
  width: 100%;
  position: relative;
  padding-top: 6em;
  padding-bottom: 6em;
}
@media (min-width: 1080px) {
  .checkout__section {
    padding-top: 8em;
    padding-bottom: 8em;
  }
}
@media (min-width: 1440px) {
  .checkout__section {
    padding-top: 10em;
    padding-bottom: 10em;
  }
}

.checkout__container {
  margin-left: 15%;
  margin-right: 15%;
  position: relative;
}

.checkout__title {
  width: 100%;
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #000;
  text-align: center;
}
.checkout__title h1 {
  color: white;
  font-size: 22px !important;
  text-transform: uppercase;
  margin: 0px;
  padding: 0px;
  position: relative;
}

.checkout__table {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  width: calc(100% - 42px);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 2em;
  padding-bottom: 2em;
}
@media (min-width: 1080px) {
  .checkout__table {
    width: calc(100% - 82px);
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 4em;
    padding-bottom: 4em;
  }
}

.checkout__row {
  width: 100%;
  position: relative;
  padding-top: 1em;
  padding-bottom: 1em;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #000;
}

.checkout__table__body {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.checkout__table__body li {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1080px) {
  .checkout__table__body li {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.checkout__table__body li + li {
  margin-top: 0px;
}
@media (min-width: 1080px) {
  .checkout__table__body li + li {
    margin-top: 12px;
  }
}

.checkout__table__name {
  width: 58.33333%;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1080px) {
  .checkout__table__name {
    width: 25%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.checkout__table__name.is--empty {
  display: none;
}
@media (min-width: 1080px) {
  .checkout__table__name.is--empty {
    display: block;
  }
}
.checkout__table__name strong {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  text-transform: uppercase;
}
@media (min-width: 1080px) {
  .checkout__table__name strong {
    font-size: 18px;
  }
}
.checkout__table__name label {
  color: #000;
  font-size: 14px;
  position: relative;
}
@media (min-width: 1080px) {
  .checkout__table__name label {
    font-size: 15px;
  }
}

.checkout__table__value {
  width: 41.66666%;
  text-align: right;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1080px) {
  .checkout__table__value {
    width: 25%;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.checkout__table__value.is--empty {
  display: none;
}
@media (min-width: 1080px) {
  .checkout__table__value.is--empty {
    display: block;
  }
}
.checkout__table__value p {
  color: #F76ADA;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  position: relative;
}
@media (min-width: 1080px) {
  .checkout__table__value p {
    font-size: 15px;
  }
}
.checkout__table__value p svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #F76ADA;
  stroke-width: 2;
  display: inline-block;
  margin: 0px auto;
  padding: 0px;
  position: relative;
}

.checkout__table__price {
  width: 41.66666%;
  text-align: right;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1080px) {
  .checkout__table__price {
    width: 25%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.checkout__table__price.is--empty {
  display: none;
}
@media (min-width: 1080px) {
  .checkout__table__price.is--empty {
    display: block;
  }
}
.checkout__table__price data {
  color: #000;
  font-size: 14px;
  display: block;
  position: relative;
}
@media (min-width: 1080px) {
  .checkout__table__price data {
    font-size: 15px;
  }
}

.checkout__footer {
  width: 100%;
  position: relative;
}

.checkout__footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.checkout__footer__column {
  width: 100%;
  position: relative;
}
@media (min-width: 1080px) {
  .checkout__footer__column {
    width: 50%;
  }
}
.checkout__footer__column.is--left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 1080px) {
  .checkout__footer__column.is--left {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
.checkout__footer__column.is--left .checkout__footer__link {
  background-color: white;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-top: 1px solid transparent;
}
@media (min-width: 1080px) {
  .checkout__footer__column.is--left .checkout__footer__link {
    border-top: 1px solid #000;
    border-right: 1px solid transparent;
  }
}
.checkout__footer__column.is--left .checkout__footer__link:hover {
  color: white;
  background-color: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
}
.checkout__footer__column.is--left .checkout__footer__link:hover svg {
  fill: white;
  margin-right: 14px;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
}
.checkout__footer__column.is--left .checkout__footer__link:hover span {
  color: white;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
}
.checkout__footer__column.is--left .checkout__footer__link svg {
  margin-right: 16px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.checkout__footer__column.is--right {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (min-width: 1080px) {
  .checkout__footer__column.is--right {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
.checkout__footer__column.is--right .checkout__footer__link {
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  background: -webkit-gradient(linear, right top, left top, from(#89E872), to(#FFE800));
  background: linear-gradient(270deg, #89E872, #FFE800);
}
.checkout__footer__column.is--right .checkout__footer__link:hover {
  color: white;
  background-color: #000;
  background: -webkit-gradient(linear, right top, left top, from(#000), to(#000));
  background: linear-gradient(270deg, #000, #000);
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
}
.checkout__footer__column.is--right .checkout__footer__link:hover svg {
  fill: white;
  margin-left: 14px;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
}
.checkout__footer__column.is--right .checkout__footer__link:hover span {
  color: white;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
}
.checkout__footer__column.is--right .checkout__footer__link svg {
  margin-left: 16px;
}

.checkout__footer__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #000;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.checkout__footer__link span {
  color: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
}
.checkout__footer__link svg {
  width: 14px;
  margin: 0px;
  padding: 0px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
  transition: all 0.3s cubic-bezier(0.41, 0, 0.13, 1.005);
}