@keyframes beat {
  to {
    transform: scale(1.4);
  }
}
@keyframes glow {
  33% {
    box-shadow: 0 0 3px #4dffa3, 0 0 6px #4dffa3, 0 0 9px #4dffa3, 0 0 12px #4dffa3;
  }
}
main {
  padding: 130px 30px 0;
}
main h2 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
  text-transform: uppercase;
}
main .o {
  position: relative;
  z-index: 0;
}
main .o .header {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
main .o .header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .o button {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  padding: 5px;
  border-bottom-left-radius: 10px;
  background: #000;
  outline: none;
  border: none;
  cursor: pointer;
}
main .o button svg path.heart {
  fill: #000;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 8px;
  transition: all 0.1s linear;
}
main .o button.f svg path.heart {
  animation: beat 0.25s;
  animation-iteration-count: 4;
  animation-direction: alternate;
  transform-origin: center;
  fill: #fff;
  stroke: #fff;
}
main .des .db .d, main .des .db .dd {
  display: flex;
  padding: 15px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
main .des .db .d div, main .des .db .dd div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
main .des .db .d div span:not(.c), main .des .db .dd div span:not(.c) {
  font-size: 10px;
}
main .des .db .d div p.km0 span, main .des .db .dd div p.km0 span {
  display: none;
}
main .des .db .dd {
  padding: 15px 0;
}
main .des .db .dd div p {
  display: flex;
  align-items: center;
  font-size: 14px;
}
main .des .db .b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 20px;
  grid-column-gap: 10px;
  grid-row-gap: 8px;
}
main .des .db .b div {
  cursor: pointer;
  aspect-ratio: 1/1;
}
main .des .db .b div.more {
  position: relative;
  z-index: 0;
}
main .des .db .b div.more::after {
  content: "More";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6274509804);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}
main .des .db .b div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .cde {
  position: relative;
  z-index: 0;
}
main .cde .price_holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 30px 0 10px;
  font-family: "Oswald";
}
main .cde .price_holder .pr {
  font-size: 24px;
  font-weight: bold;
  width: -moz-max-content;
  width: max-content;
  margin-right: 50px;
}
main .cde .price_holder .pr:not(.req) {
  font-size: 30px;
}
main .cde .price_holder .crypto_price_field {
  display: flex;
  align-items: center;
  font-size: 14px;
}
main .cde .price_holder .crypto_price_field img {
  width: 20px;
  margin-right: 5px;
}
main .cde .price_holder .crypto_price_field.hidden {
  opacity: 0;
  display: none;
}
main .cde .price_holder .breaker {
  flex-basis: 100%;
}
main .cde .price_holder button {
  border: none;
  margin-top: 10px;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  flex: 1;
  padding: 8px 30px;
  font-size: 18px;
  background: #000;
  color: #1ED551;
  font-weight: bold;
  font-family: "Oswald";
  outline: none;
  animation: glow 3s ease-in-out infinite alternate;
}
main .cde .desc {
  transition: all 0.4s ease;
}
main .cde .desc > * {
  color: #fff;
  font-size: 12px;
  max-width: 100%;
  font-weight: normal;
  font-family: "Open Sans";
}
main .cde.short .desc {
  max-height: 400px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
main .cde.short .desc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  opacity: 1;
  z-index: 1;
  background: linear-gradient(360deg, #000 0, rgba(0, 0, 0, 0) 100%);
}
main .cde > * {
  color: #fff;
  font-weight: normal;
  font-family: "Open Sans";
}
main .cde > *:not(.pr, .crypto_price_field) {
  font-size: 12px;
  transition: all 0.4s ease;
}
main .cde > *.heading {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}
main .cde > *.loc {
  margin: 3px 0 0px;
}
main .cde > *.reference {
  margin: 3px 0 15px;
}
main .cde button.showMore {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0 2px 2px;
  color: #fff;
  font-weight: bold;
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
}
main .cde:not(.short) button.showMore {
  left: 80%;
  bottom: 0px;
}
main .cde .act {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
main .cde .act button {
  border: none;
  outline: none;
  background: none;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
}
main .cde .act button img {
  max-width: 15px;
  margin-right: 6px;
}
main .cde .act button:nth-of-type(1) {
  margin-right: 40px;
}
main .det_con h2 {
  text-align: left;
  padding-bottom: 15px;
}
main .det_con h2.tb {
  padding-top: 20px;
  font-size: 24px;
}
main .det_con .det:not(.feat), main .det_con .con {
  margin-top: 40px;
}
main .det_con .det.feat h2:nth-of-type(1) {
  margin-top: 40px;
}
main .det_con .det div, main .det_con .det ul li {
  color: #fff;
  display: flex;
  font-size: 14px;
}
main .det_con .det div:not(:last-of-type), main .det_con .det ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
main .det_con .det div span, main .det_con .det ul li span {
  display: block;
  width: 140px;
  opacity: 0.6;
}
main .det_con .feat p {
  color: #fff;
}
main .det_con .feat h2:not(:first-of-type) {
  padding-top: 30px;
}
main .det_con .feat .box {
  display: flex;
  flex-wrap: wrap;
}
main .det_con .feat .box li {
  display: list-item;
  width: calc(50% - 15px);
  margin: 0 0 0 15px;
  list-style-type: square;
}
main .det_con .con .i {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}
main .det_con .con .i p {
  color: #fff;
  font-size: 14px;
}
main .det_con .con .i p:nth-of-type(1) {
  font-size: 16px;
  font-weight: bold;
}
main .det_con .con .i .d.ag p {
  font-size: 12px;
}
main .det_con .con .i .d.ag img {
  max-width: 100px;
  max-height: 40px;
  margin-top: 8px;
}
main .det_con .con .holder {
  transition: all 0.75s ease;
}
main .det_con .con .holder .h input, main .det_con .con .holder .h textarea {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  background: none;
  border: none;
  outline: none;
  border-radius: 0;
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #fff;
}
main .det_con .con .holder .h input::-moz-placeholder, main .det_con .con .holder .h textarea::-moz-placeholder {
  color: #fff;
}
main .det_con .con .holder .h input::placeholder, main .det_con .con .holder .h textarea::placeholder {
  color: #fff;
}
main .det_con .con .holder .h textarea {
  border: 1px solid #fff;
  resize: none;
  padding: 10px;
  height: 150px;
}
main .det_con .con .holder button {
  border: none;
  background: none;
  outline: none;
  padding: 5px 0 8px;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
main .det_con .con .holder.sending {
  filter: blur(1px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .det_con .con.locked_form {
  pointer-events: none;
}
main .det_con .con.locked_form .holder {
  position: relative;
  z-index: 0;
}
main .det_con .con.locked_form .holder::before {
  content: "Please log in first";
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  z-index: 1;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 6px;
}
main .det_con .con.locked_form .holder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5647058824);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
main button {
  cursor: pointer;
}

.purchase_confirmation {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 10px;
  padding: 30px 20px;
  color: #fff;
  width: 400px;
  max-width: calc(100% - 60px);
  transition: all 0.4s ease;
}
.purchase_confirmation h2 {
  font-size: 20px;
}
.purchase_confirmation p {
  margin: 12px 0 20px;
  font-size: 12px;
}
.purchase_confirmation button {
  padding: 10px 20px;
  outline: none;
  border: none;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  color: #000;
  margin-right: 15px;
  font-size: 12px;
}
.purchase_confirmation:not(.active) {
  transform: translate(-50%, calc(-50% + 100px));
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media screen and (min-width: 650px) {
  main .o .header {
    height: 300px;
  }
  main h2 {
    text-align: left;
  }
  main .des .db .d, main .des .db .dd {
    margin: 40px 0;
  }
  main .det_con .con .holder .h {
    margin: 30px 0 40px;
  }
  main .det_con .con .holder .h div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  main .det_con .con .holder .h textarea {
    margin: 15px 0 0;
    padding: 12px;
  }
}
#gallery {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}
#gallery .close {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
#gallery .close button {
  position: relative;
  z-index: 1;
  cursor: pointer;
  top: 50px;
  right: 20px;
  width: 35px;
  height: 35px;
  border: none;
  outline: none;
  background: none;
}
#gallery .close button div {
  width: 30px;
  height: 3px;
  background: #fff;
  border: 1px solid #000;
  mix-blend-mode: difference;
  position: absolute;
  top: 50%;
  left: 0;
}
#gallery .close button div:nth-of-type(1) {
  transform: rotate(-45deg);
}
#gallery .close button div:nth-of-type(2) {
  transform: rotate(45deg);
}
#gallery .heading_img {
  position: relative;
  z-index: 0;
}
#gallery .heading_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#gallery .heading_img button {
  border: none;
  background: none;
  mix-blend-mode: difference;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}
#gallery .heading_img button:nth-of-type(1) {
  transform: translateY(-50%) rotate(180deg);
  left: 10px;
  right: auto;
}
#gallery .img {
  display: flex;
  padding-top: 25px;
  justify-content: space-between;
}
#gallery .img div {
  width: 16.6666666667%;
  cursor: pointer;
}
#gallery .img div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#gallery.active {
  left: 0;
}

@media screen and (min-width: 800px) {
  main {
    padding-bottom: 30px;
  }
  main .data_holder {
    display: flex;
  }
  main .o .header {
    height: 400px;
  }
  main .db, main .cde {
    flex: 1;
  }
  main .cde {
    max-width: 500px;
    padding-right: 30px;
  }
  main .cde .price_holder {
    padding-top: 20px;
    display: flex;
    align-items: center;
  }
  main .cde button.showMore {
    left: calc(50% - 40px);
  }
  main .det_con {
    width: 50%;
  }
  main .des {
    width: 500px;
    max-width: 50%;
  }
  main .des .db .d, main .des .db .dd {
    margin: 20px 0 0;
  }
  main .con {
    padding-right: 30px;
  }
  #gallery .close, #gallery .heading_img, #gallery .img {
    width: 1200px;
    max-width: calc(90% - 30px);
    max-height: 90vh;
    margin: 0 auto;
  }
  #gallery .heading_img button {
    right: -30px;
  }
  #gallery .heading_img button:nth-of-type(1) {
    left: -30px;
  }
}
@media screen and (min-height: 800px) {
  main .det {
    overflow-y: hidden;
  }
}
@media screen and (min-width: 1024px) {
  main {
    padding-left: 230px;
  }
  main .cde {
    max-width: 750px;
  }
  main .det_con .con .i .d {
    flex: 1;
  }
  main .det_con .con .i .d.ag {
    margin-left: 20px;
  }
  main .det_con .con .i .d.ag p {
    font-size: 14px;
  }
  main .det_con .con .i .d.ag img {
    max-height: 50px;
    max-width: 140px;
  }
  #gallery .heading_img button {
    right: -30px;
  }
  #gallery .heading_img button:nth-of-type(1) {
    left: -30px;
  }
}
@media screen and (min-width: 1200px) {
  main {
    padding-left: 250px;
  }
  main .des {
    width: 600px;
  }
  main .des .db .dd {
    margin-top: 30px;
  }
  main .des .db .dd div {
    font-weight: bold;
  }
  main .des .db .dd div p {
    font-size: 20px;
  }
  main .des .db .dd div span:not(.c) {
    font-size: 12px;
  }
}
@media screen and (min-width: 1440px) {
  main .det_con {
    padding-right: 60px;
    width: auto;
    flex: 1;
  }
  main .det_con .feat .box li {
    width: calc(33% - 15px);
  }
  main .det_con .con .holder .h {
    display: flex;
    justify-content: space-between;
  }
  main .det_con .con .holder .h div, main .det_con .con .holder .h textarea {
    width: calc(50% - 10px);
    margin: 0;
  }
  main .det_con .con .holder .h input {
    margin: 0;
  }
}
@media screen and (min-width: 1660px) {
  main .det_con .feat .box li {
    width: calc(25% - 15px);
  }
  main .det_con .con .holder .h div, main .det_con .con .holder .h textarea {
    width: calc(50% - 15px);
  }
}/*# sourceMappingURL=view_cars.css.map */