.checkout {
  padding-bottom: 28px;
}
.checkout .title-block {
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .checkout .title-block {
    margin-bottom: 30px;
  }
}
.checkout__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
}
@media (max-width: 1200px) {
  .checkout__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.checkout__inner .column {
  width: 59%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1200px) {
  .checkout__inner .column {
    width: 100%;
  }
}
.checkout .info .block {
  position: sticky;
  top: 145px;
}
.checkout .block {
  background: var(--light-gray);
  border: 1px solid var(--light);
  padding: 60px 70px;
}
@media (max-width: 1460px) {
  .checkout .block {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .checkout .block {
    padding: 32px 25px;
  }
}
.checkout .block .title {
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 40px;
}
@media (max-width: 1460px) {
  .checkout .block .title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .checkout .block .title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.checkout .block .product-list {
  border-top: 1px solid var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.checkout .block .product-list .item {
  border-bottom: 1px solid var(--light);
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 33px;
}
@media (max-width: 767px) {
  .checkout .block .product-list .item {
    display: grid;
    gap: 32px;
    row-gap: 16px;
    grid-template-columns: 73px 1fr -webkit-max-content;
    grid-template-columns: 73px 1fr max-content;
    grid-template-areas: "img number del" "name name name";
    padding: 16px 0;
  }
}
.checkout .block .product-list .item .img-block {
  max-width: 160px;
  font-size: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  grid-area: img;
}
@media (max-width: 1460px) {
  .checkout .block .product-list .item .img-block {
    max-width: 105px;
  }
}
.checkout .block .product-list .item .img-block img {
  max-width: 100%;
}
.checkout .block .product-list .item .name {
  font-size: 19px;
  font-weight: 500;
  color: var(--black);
  margin-right: auto;
  grid-area: name;
}
@media (max-width: 1460px) {
  .checkout .block .product-list .item .name {
    font-size: 16px;
  }
}
.checkout .block .product-list .item .number {
  grid-area: number;
}
@media (max-width: 767px) {
  .checkout .block .product-list .item .number {
    max-width: 100%;
  }
  .checkout .block .product-list .item .number input {
    width: 100%;
  }
}
.checkout .block .product-list .item .del {
  width: 50px;
  height: 50px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: transparent;
  grid-area: del;
}
.checkout .block .product-list .item .del:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../image/icon__faq.svg) no-repeat;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-size: contain;
}
.checkout .contact-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  row-gap: 40px;
}
@media (max-width: 767px) {
  .checkout .contact-data {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.checkout .contact-data .input-block label {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  display: block;
  margin-bottom: 14px;
}
.checkout .contact-data .input-block .custom-input {
  height: 60px;
  border: 1px solid var(--light);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-family: "Inter";
  font-weight: 500;
  padding: 0 20px;
  width: 100%;
}
.checkout .contact-data .input-block .custom-input::-webkit-input-placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .contact-data .input-block .custom-input::-moz-placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .contact-data .input-block .custom-input:-ms-input-placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .contact-data .input-block .custom-input::-ms-input-placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .contact-data .input-block .custom-input::placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .textarea-block .custom-textarea {
  background: var(--white);
  border: 1px solid var(--light);
  height: 226px;
  padding: 20px;
  font-size: 16px;
  font-family: "Inter";
  font-weight: 500;
  color: var(--black);
  width: 100%;
  resize: none;
}
.checkout .textarea-block .custom-textarea::-webkit-input-placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .textarea-block .custom-textarea::-moz-placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .textarea-block .custom-textarea:-ms-input-placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .textarea-block .custom-textarea::-ms-input-placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .textarea-block .custom-textarea::placeholder {
  color: rgba(90, 91, 97, 0.7);
}
.checkout .contact {
  font-size: 32px;
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1460px) {
  .checkout .contact {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .checkout .contact {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.checkout .btn-block .btn {
  margin: 0 auto;
}