.checkout {
  margin-top: 86px;
  margin-bottom: 64px;
  color: white;
}
@media (max-width: 768px) {
  .checkout {
    padding: 32px 16px 32px 16px;
  }
}
@media (max-width: 767px) {
  .checkout {
    padding: 16px 16px 32px 16px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.checkout .left {
  flex: 1;
}
.checkout .main-flex {
  display: flex;
  gap: 32px;
}
@media (max-width: 767px) {
  .checkout .main-flex {
    flex-direction: column;
    margin-top: 24px;
  }
}
.checkout h1 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
}
.checkout .breadcrumbs .home {
  display: flex;
  align-items: center;
}
.checkout .breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.checkout .breadcrumbs li {
  list-style-type: none;
}
.checkout .breadcrumbs li a {
  font-size: 14px;
  line-height: 20px;
  color: white;
  padding: 16px 0px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .checkout .breadcrumbs li a {
    padding: 0px;
  }
}
.checkout .breadcrumbs li a:hover {
  text-decoration: underline;
}
.checkout .breadcrumbs .breadcrumbs-item {
  color: rgb(105, 171, 228);
  font-weight: 600;
}
.checkout .breadcrumbs .breadcrumbs-item:hover {
  text-decoration: none;
}
.checkout .card {
  background-color: var(--grey-black);
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid rgb(73, 80, 87);
  border-radius: 16px;
}
.checkout .card h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.checkout .card .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0px;
}
.checkout .card .toggle {
  margin-top: 20px;
}
.checkout .card ul {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.checkout .card ul li {
  list-style-type: none;
}
.checkout .card ul li a {
  cursor: pointer;
}
.checkout input[type=text], .checkout input[type=email], .checkout input[type=date], .checkout input[type=number], .checkout select {
  background-color: rgb(15, 17, 19);
  padding: 12px 14px;
  border: 1px solid rgb(73, 80, 87);
  border-radius: 24px;
  color: rgb(173, 181, 189);
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.checkout input[type=text]:hover, .checkout input[type=email]:hover, .checkout input[type=date]:hover, .checkout input[type=number]:hover, .checkout select:hover {
  border: 1px solid white;
}
.checkout .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .checkout .grid {
    grid-template-columns: 1fr;
  }
}
.checkout .contact {
  margin-bottom: 16px;
}
.checkout input[type=checkbox] {
  margin-right: 8px;
}
.checkout .check-container {
  position: relative;
  padding-left: 16px;
}
.checkout .check-container input {
  opacity: 0;
  width: 0px;
  height: 0px;
  cursor: pointer;
}
.checkout .check-container .checkmark {
  position: absolute;
  height: 16px;
  width: 16px;
  border: 1px solid white;
  left: 0;
  top: 2px;
  border-radius: 3px;
}
.checkout .check-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: -1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkout .check-container input:checked ~ .checkmark:after {
  display: block;
}
.checkout .radio-container {
  position: relative;
  padding-left: 24px;
}
.checkout .radio-container input {
  opacity: 0;
  height: 0;
  width: 0;
}
.checkout .radio-container .radio-checkmark {
  height: 24px;
  width: 24px;
  border-radius: 50px;
  border: 1px solid rgb(255, 255, 255);
  position: absolute;
  top: -2px;
  left: 0;
}
.checkout .radio-container .radio-checkmark:after {
  display: none;
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: white;
  border-radius: 50px;
}
.checkout .radio-container input:checked ~ .radio-checkmark:after {
  display: block;
}
.checkout .radio-flex {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .checkout .radio-flex {
    flex-direction: column;
  }
}
.checkout .card-info {
  margin-bottom: 16px;
}
.checkout .or {
  text-align: center;
  border-bottom: 1px solid rgb(73, 80, 87);
  margin-bottom: 16px;
}
.checkout .or h2 {
  font-size: 14px;
  padding: 0px 16px;
  display: inline-block;
  position: relative;
  top: 10px;
  background-color: var(--grey-black);
}
.checkout p {
  font-size: 12px;
  line-height: 16px;
  margin-top: 16px;
}
.checkout .payment-card input {
  background-color: var(--grey-black);
}
.checkout .circle {
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.checkout .circle:hover {
  border: 1px solid white;
}
.checkout .dropdown {
  position: relative;
}
.checkout .dropdown select {
  appearance: none;
}
.checkout .dropdown span {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 12px;
}
.checkout .summary {
  background-color: var(--grey-black);
  color: white;
  padding: 16px;
  border: 1px solid rgb(73, 80, 87);
  border-radius: 16px;
  max-width: 379px;
  width: 100%;
}
@media (max-width: 767px) {
  .checkout .summary {
    max-width: none;
  }
}
.checkout .summary .product {
  display: flex;
  gap: 16px;
}
.checkout .summary .product h4 {
  font-weight: 600;
  word-wrap: break-word;
}
.checkout .summary .product .product-description {
  display: flex;
  gap: 16px;
  font-size: 12px;
  line-height: 16px;
}
.checkout .summary .product .color-name {
  display: flex;
  gap: 4px;
}
.checkout .summary .product .color {
  height: 16px;
  width: 16px;
  border-radius: 24px;
  border: 1px solid rgb(228, 233, 239);
}
.checkout .summary .product .product-img {
  border-radius: 16px;
  background-color: white;
  padding: 4px;
  overflow: hidden;
}
.checkout .summary .product .product-img img {
  aspect-ratio: 1;
  object-fit: contain;
}
.checkout .summary table {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: rgb(228, 233, 239);
  border-spacing: 0px 16px;
}
.checkout .summary .check-table {
  border-top: 1px solid rgb(73, 80, 87);
}
.checkout .summary .sub-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(73, 80, 87);
  font-weight: 600;
  padding: 16px 0px;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid rgb(73, 80, 87);
  margin-bottom: 16px;
}
.checkout .summary .right-align {
  text-align: right;
}
.checkout .secure {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 8px;
}
.checkout .secure h3 {
  font-size: 12px;
  line-height: 14px;
  color: rgb(228, 233, 239);
}
.checkout .date-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.checkout .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 16px 32px;
  font-size: 14px;
  line-height: 20px;
  color: rgb(228, 233, 239);
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .checkout .product-grid {
    gap: 16px 17px;
  }
}

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