@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");
.material-symbols-sharp {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: whitesmoke;
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}

.content {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto 450px;
}
.content .content-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
}
.content .content-left .inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: grayscale(100%);
  transition: 0.5s ease;
}
.content .content-left .inner:hover {
  filter: grayscale(0%);
}
.content .content-left .inner.showroom {
  background-image: url("../media/showroom.jpg");
}
.content .content-left .inner.limousine {
  background-image: url("../media/limousine.jpg");
}
.content .content-left .inner .cover {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s ease;
}
.content .content-left .inner .cover:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.content .content-left .inner .cover .slide-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.8em;
  font-weight: 600;
  color: white;
  padding: 20px 0;
  border-bottom: 2px solid white;
}
.content .content-left .inner .cover .support-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: white;
}
.content .content-left .inner .cover .support-info .text {
  font-size: 0.8em;
}
.content .content-left .inner .cover .support-info .phone {
  font-size: 1.5em;
  font-weight: 600;
}
.content .content-left .inner .cover .support-info .email {
  font-size: 1em;
  font-weight: 600;
}
.content .content-right {
  background-color: white;
  position: relative;
}
.content .content-right .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}
.content .content-right .inner .logo {
  width: 190px;
}
.content .content-right .inner .icon {
  color: orangered;
  font-size: 2em;
}
.content .content-right .inner .formtitle {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 5px;
}
.content .content-right .inner .subtitle {
  font-size: 0.75em;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.6);
}
.content .content-right .inner img {
  width: 140px;
  position: relative;
  margin-top: 10px;
}
.content .content-right .inner .copyrights {
  font-size: 0.75em;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  margin: 10px 0;
}

.cancel-content {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cancel-content .content-container {
  width: 450px;
  height: 250px;
  position: relative;
  background-color: white;
  box-shadow: 0 0 12px -5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cancel-content .content-container .icon {
  color: red;
  font-size: 2.3em;
  margin: 5px 0;
}
.cancel-content .content-container .success {
  color: green;
}
.cancel-content .content-container .pagetitle {
  font-size: 1.35em;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
}
.cancel-content .content-container .text {
  text-align: center;
  font-size: 0.85em;
  padding: 0 20px;
}
.cancel-content .content-container .orderdetails {
  width: 100%;
  height: auto;
  position: relative;
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.cancel-content .content-container .orderdetails .text {
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}
.cancel-content .content-container .bottomtext {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75em;
  margin-top: 5px;
}

form {
  width: 100%;
  padding: 5px;
}
form .section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
form .section .section-inner {
  display: grid;
  grid-template-rows: auto auto;
}
form .section .section-inner .top label {
  font-size: 0.75em;
  font-weight: 500;
}
form .section .section-inner .bottom input,
form .section .section-inner .bottom select {
  width: 100%;
  height: 30px;
  padding-left: 5px;
  font-size: 0.75em;
  background-color: white;
  border: 2px solid rgba(9, 52, 122, 0.1);
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  outline: none;
  transition: 0.2s linear;
}
form .section .section-inner .bottom input:focus,
form .section .section-inner .bottom select:focus {
  border-color: #09347a;
}
form .single-grid {
  grid-template-columns: 100%;
}
form button {
  width: 100%;
  height: 30px;
  margin: 10px 0;
  color: white;
  font-size: 0.8em;
  background-color: #09347a;
  border: 1px solid #09347a;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .content {
    grid-template-columns: 100%;
  }
  .content .content-left {
    display: none !important;
  }
  .content .content-right {
    width: 100% !important;
    height: auto;
  }
  .content .content-right .inner {
    justify-content: flex-start;
    padding-bottom: 30px;
  }
  .content .content-right .inner .logo {
    width: 150px;
  }
  .content .content-right .inner form {
    padding: 0 5px;
  }
  .content .content-right .inner form .section {
    grid-template-columns: 100%;
  }
}/*# sourceMappingURL=ui.css.map */