.toggleCheckbox {
  display: none;
}

.toggleContainer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -moz-fit-content;
  width: fit-content;
  border: 4px solid #e5e5e5;
  border-radius: 50px;
  background: #e5e5e5;
  font-size: 16px;
  color: #343434;
  cursor: pointer;
  height: 50px;
  width: 100%;
}

.toggleContainer::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0%;
  border-radius: 20px;
  background: #127be8;
  transition: all 0.3s;
}

.toggleContainer div {
  line-height: 42px;
  text-align: center;
  border-radius: 50px;
  z-index: 1;
  font-family: "Work Sans";
}

.toggleCheckbox:checked + .toggleContainer::before {
  left: 50%;
}

.toggleCheckbox:checked + .toggleContainer div:first-child {
  color: #0a0a0a;
  transition: color 0.3s;
}

.toggleCheckbox:checked + .toggleContainer div:last-child {
  color: white;
  transition: color 0.3s;
}

.toggleCheckbox + .toggleContainer div:first-child {
  color: white;
  transition: color 0.3s;
}

.toggleCheckbox + .toggleContainer div:last-child {
  color: #0a0a0a;
  transition: color 0.3s;
}

.vehicle_Main {
  display: flex;
  flex-direction: row;
  padding: 64px calc(50vw - 600px);
  gap: 54px;
}
.vehicle_Main .description {
  width: 489px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.vehicle_Main .description .text_Container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vehicle_Main .description .text_Container .header_Menu_Group {
  display: none;
}
.vehicle_Main .description .text_Container .title {
  font-size: 72px;
  font-weight: 600;
  font-family: "Playfair Display";
  line-height: 86.4px;
}
.vehicle_Main .description .text_Container .title-text {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.vehicle_Main .description .img {
  margin-top: 71px;
  max-height: 406px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vehicle_Main .description .img .vehicle_know_Img {
  width: auto;
}
.vehicle_Main .vehicle_detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #f0f0f0;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 32px;
  height: -moz-fit-content;
  height: fit-content;
}
.vehicle_Main .vehicle_detail .text_Container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
  margin: 0 0 44px 0;
}
.vehicle_Main .vehicle_detail .text_Container .title_Text {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.vehicle_Main .vehicle_detail .text_Container .title_Text * {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
}
.vehicle_Main .vehicle_detail .text_Container .title_Text .step-bar {
  height: 3px;
  width: 100%;
  background-color: #127be8;
  border-radius: 10px;
}
.vehicle_Main .vehicle_detail .text_Container .title_Text.opacity {
  opacity: 0.4;
}
.vehicle_Main .vehicle_detail .text_Container .title_Text.opacity .step-number {
  font-size: 16px;
  font-weight: 400;
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .text_Container .title_Text.opacity .step-title {
  font-size: 14px;
  font-weight: 400;
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .text_Container .title_Text.passed .step-number {
  font-size: 16px;
  font-weight: 400;
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .text_Container .title_Text.passed .step-title {
  font-size: 16px;
  font-weight: 400;
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .search {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.vehicle_Main .vehicle_detail .search .text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: "Work Sans";
}
.vehicle_Main .vehicle_detail .search .vin {
  width: 358px;
}
.vehicle_Main .vehicle_detail .enter_VIN {
  display: flex;
  flex-direction: column;
  margin: 16px 0 0 0;
}
.vehicle_Main .vehicle_detail .enter_VIN .text {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 24px 0;
}
.vehicle_Main .vehicle_detail .enter_VIN .input {
  display: flex;
  flex-direction: row;
}
.vehicle_Main .vehicle_detail .enter_VIN .input .input_Box {
  width: 100%;
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  padding: 0 10px 0 20px;
  color: black;
  background: transparent;
}
.vehicle_Main .vehicle_detail .enter_VIN .input .input_Box:focus {
  border: 1px solid #127be8 !important;
  outline: none;
}
.vehicle_Main .vehicle_detail .enter_VIN .input .updateBtn {
  width: 108px;
  height: 48px;
  margin-left: -53px;
  border-radius: 99px;
  background-color: #d9eafc;
  color: #127be8;
  border: 1px solid #127be8;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.vehicle_Main .vehicle_detail .enter_VIN .input .updateBtn:hover {
  background-color: #9bc9f7;
}
.vehicle_Main .vehicle_detail .enter_VIN .findBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  margin: 16px 0 0 0;
  border: 1px solid #f6e19b;
  color: #aa8200;
  border-radius: 12px;
  width: 40%;
  background-color: #fcf5de;
}
.vehicle_Main .vehicle_detail .enter_VIN .findBox .rectangular {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vehicle_Main .vehicle_detail .enter_VIN .findBox .rectangular .information_Img {
  width: 16px;
}
.vehicle_Main .vehicle_detail .enter_VIN .findBox .vin-text {
  text-align: left;
  padding-left: 16px;
  flex: 6;
}
.vehicle_Main .vehicle_detail .damage-error-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.vehicle_Main .vehicle_detail .damage-error-buttons .backBtn,
.vehicle_Main .vehicle_detail .damage-error-buttons .contactBtn {
  flex: 1;
  padding: 16px;
  border-radius: 99px;
  color: #127be8;
  transition: background-color 0.3s ease;
}
.vehicle_Main .vehicle_detail .damage-error-buttons .contactBtn {
  background-color: transparent;
  border: 1px solid #0a0a0a;
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .damage-error-buttons .contactBtn:hover {
  background-color: #9bc9f7;
}
.vehicle_Main .vehicle_detail .damage-error-buttons .backBtn:hover {
  background-color: #9bc9f7;
}
.vehicle_Main .vehicle_detail .emailRequest {
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .emailRequest .title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 12px 0;
}
.vehicle_Main .vehicle_detail .emailRequest .input_Box {
  width: 100%;
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  padding: 0 10px 0 20px;
  color: black;
  background: transparent;
}
.vehicle_Main .vehicle_detail .emailRequest .input_Box:focus {
  border: 1px solid #127be8 !important;
  outline: none;
}
.vehicle_Main .vehicle_detail .emailRequest .email_buttons {
  display: flex;
  flex-direction: row;
  margin-top: 44px;
}
.vehicle_Main .vehicle_detail .emailRequest .email_buttons .email_skipBtn,
.vehicle_Main .vehicle_detail .emailRequest .email_buttons .email_okBtn {
  flex: 1;
  padding: 16px;
  border-radius: 99px;
  color: #127be8;
}
.vehicle_Main .vehicle_detail .emailRequest .email_buttons .email_okBtn {
  background-color: #127be8;
  color: white;
  margin-left: 20px;
}
.vehicle_Main .vehicle_detail .emailRequest .email_buttons .email_okBtn:hover {
  background-color: #0e62bb;
}
.vehicle_Main .vehicle_detail .emailRequest .email_buttons .email_okBtn:disabled {
  background-color: #65aaf0;
}
.vehicle_Main .vehicle_detail .payment {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vehicle_Main .vehicle_detail .payment .text {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.vehicle_Main .vehicle_detail .payment .payment-method {
  width: 358px;
}
.vehicle_Main .vehicle_detail .payment .box-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.vehicle_Main .vehicle_detail .payment .box-group .box-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  gap: 8px;
}
.vehicle_Main .vehicle_detail .payment .box-group .box-item.selected {
  background-color: #d9eafc;
}
.vehicle_Main .vehicle_detail .payment .box-group .box-item .itemTitle {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.vehicle_Main .vehicle_detail .payment .box-group .box-item .itemDesc {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.vehicle_Main .vehicle_detail .payment .insurance-prices {
  text-align: center;
}
.vehicle_Main .vehicle_detail .serviceLocation {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  gap: 24px;
}
.vehicle_Main .vehicle_detail .serviceLocation .streetInfo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 60px;
}
.vehicle_Main .vehicle_detail .serviceLocation .streetInfo .group {
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .serviceLocation .streetInfo .group .title {
  font-size: 16px;
  font-weight: 400;
  padding: 12px 0 12px 0;
}
.vehicle_Main .vehicle_detail .serviceLocation .streetInfo .group .input_Box {
  width: 100%;
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  padding: 0 10px 0 20px;
  color: black;
  background: transparent;
}
.vehicle_Main .vehicle_detail .serviceLocation .streetInfo .group .input_Box:focus {
  border: 1px solid #127be8 !important;
  outline: none;
}
.vehicle_Main .vehicle_detail .serviceLocation .cityInfo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.vehicle_Main .vehicle_detail .serviceLocation .cityInfo .group {
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .serviceLocation .cityInfo .group .title {
  font-size: 16px;
  font-weight: 400;
  padding: 12px 0 12px 0;
}
.vehicle_Main .vehicle_detail .serviceLocation .cityInfo .group .input_Box {
  width: 100%;
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  padding: 0 10px 0 20px;
  color: black;
  background: transparent;
}
.vehicle_Main .vehicle_detail .serviceLocation .cityInfo .group .input_Box:focus {
  border: 1px solid #127be8 !important;
  outline: none;
}
.vehicle_Main .vehicle_detail .serviceLocation .rain-snow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vehicle_Main .vehicle_detail .serviceLocation .rain-snow .rain-snow-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.vehicle_Main .vehicle_detail .serviceLocation .rain-snow .rain-snow-label-text {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
.vehicle_Main .vehicle_detail .serviceLocation .rain-snow .rain-snow-label .card-box-checkbox {
  border-radius: 2px;
  width: 16px;
  height: 16px;
  margin-left: 20px;
}
.vehicle_Main .vehicle_detail .serviceLocation .rain-snow-hint {
  padding: 8px 12px;
  border: 1px solid #f6e19b;
  background-color: #fcf5de;
  border-radius: 12px;
  display: flex;
  gap: 12px;
}
.vehicle_Main .vehicle_detail .serviceLocation .rain-snow-hint .rectangular {
  width: 16px;
  height: 16px;
}
.vehicle_Main .vehicle_detail .serviceLocation .rain-snow-hint .rectangular img {
  width: 100%;
  height: 100%;
}
.vehicle_Main .vehicle_detail .serviceLocation .rain-snow-hint-text {
  flex: 1;
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #aa8200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vehicle_Main .vehicle_detail .serviceLocation .additional {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vehicle_Main .vehicle_detail .serviceLocation .additional-title {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.vehicle_Main .vehicle_detail .serviceLocation .additional-text {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  height: 117px;
  padding: 12px;
  outline: none;
  background: transparent;
}
.vehicle_Main .vehicle_detail .serviceLocation .additional-text:focus {
  border-color: #127be8;
}
.vehicle_Main .vehicle_detail .serviceLocation .street-box {
  position: relative;
}
.vehicle_Main .vehicle_detail .serviceLocation .street-box-items {
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 6px 0;
  width: 100%;
  max-height: 300px;
  overflow: auto;
}
.vehicle_Main .vehicle_detail .serviceLocation .street-box-item {
  font-family: "Work Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 4px 12px;
  width: 100%;
}
.vehicle_Main .vehicle_detail .serviceLocation .street-box-item:hover {
  background: #e0e0e0;
}
.vehicle_Main .vehicle_detail .contactInfo {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.vehicle_Main .vehicle_detail .contactInfo .contact-title {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  margin: 8px 0 0 0;
}
.vehicle_Main .vehicle_detail .contactInfo .nameGroup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.vehicle_Main .vehicle_detail .contactInfo .nameGroup .group {
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .contactInfo .nameGroup .group .title {
  font-size: 16px;
  font-weight: 400;
  padding: 0px 0 12px 0;
}
.vehicle_Main .vehicle_detail .contactInfo .nameGroup .group .input_Box {
  width: 100%;
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  padding: 0 10px 0 20px;
  color: black;
  background: transparent;
}
.vehicle_Main .vehicle_detail .contactInfo .nameGroup .group .input_Box:focus {
  border: 1px solid #127be8 !important;
  outline: none;
}
.vehicle_Main .vehicle_detail .contactInfo .serviceDescription {
  display: flex;
  flex-direction: row;
  padding: 40px 0 0px 0;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.vehicle_Main .vehicle_detail .contactInfo .serviceDescription .descText {
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .contactInfo .serviceDescription .card-box-checkbox {
  border-radius: 2px;
  width: 16px;
  height: 16px;
  margin-left: 20px;
}
.vehicle_Main .vehicle_detail .review {
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .review .boxContainer {
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .review .boxContainer .appointTitle {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 8px;
}
.vehicle_Main .vehicle_detail .review .boxContainer .orderTitle {
  padding-bottom: 8px;
}
.vehicle_Main .vehicle_detail .review .boxContainer .desc1 {
  font-size: 20px;
  font-weight: 500;
}
.vehicle_Main .vehicle_detail .review .desc {
  padding-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .review .payment_buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
}
.vehicle_Main .vehicle_detail .review .payment_buttons .creditBtn,
.vehicle_Main .vehicle_detail .review .payment_buttons .serviceBtn {
  flex: 1;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  margin: 10px 10px 0 10px;
  color: #0a0a0a;
  transition: background-color 0.3s ease;
}
.vehicle_Main .vehicle_detail .review .payment_buttons .creditBtn.selected,
.vehicle_Main .vehicle_detail .review .payment_buttons .serviceBtn.selected {
  background-color: #d9eafc;
  border-color: #127be8;
}
.vehicle_Main .vehicle_detail .review .payment_buttons .creditBtn:hover,
.vehicle_Main .vehicle_detail .review .payment_buttons .serviceBtn:hover {
  background-color: #9bc9f7;
}
.vehicle_Main .vehicle_detail .invoiceSection {
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .invoiceSection .print-btn {
  display: block;
  width: 100%;
  padding: 8px 0;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  color: #127be8;
  transition: background-color 0.3s ease;
}
.vehicle_Main .vehicle_detail .invoiceSection .print-btn:hover {
  background-color: #9bc9f7;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section {
  margin-bottom: 12px;
  color: #696969;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .section_address {
  margin-top: 8px;
  margin-bottom: 12px;
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .left {
  padding-top: 20px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  justify-content: left;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .left div:first-child {
  margin-bottom: 8px;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .left div:last-child {
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .right {
  padding-top: 20px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  justify-content: right;
  text-align: right;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .right .time {
  text-align: right;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .right div:first-child {
  margin-bottom: 8px;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .right div:last-child {
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .value {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  font-family: "Playfair Display";
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section .Emailvalue {
  font-size: 16px;
  font-weight: 400;
  padding-top: 8px;
  color: #0a0a0a;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section:last-child {
  margin-bottom: 0;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section:nth-child(3) {
  display: flex;
  justify-content: space-between;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section:nth-child(3) .label,
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section:nth-child(3) .value {
  flex: 1;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section:nth-child(3) .label:nth-child(2n),
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .section:nth-child(3) .value:nth-child(2n) {
  text-align: right;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .order-details {
  margin-top: 20px;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .order-details .title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .order-details .item {
  display: flex;
  padding: 12px 16px;
  justify-content: space-between;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .order-details .item .desc {
  text-align: right;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .order-details .total-item {
  padding: 12px 16px;
  justify-content: space-between;
  background-color: #ededed;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .order-details .total-item:not(:last-child) {
  margin-bottom: 8px;
}
.vehicle_Main .vehicle_detail .invoiceSection .invoice .invoice-content .order-details .total-item .desc {
  text-align: right;
}
.vehicle_Main .vehicle_detail .buttons {
  display: flex;
  flex-direction: row;
  margin-top: 44px;
  gap: 20px;
}
.vehicle_Main .vehicle_detail .buttons .backBtn,
.vehicle_Main .vehicle_detail .buttons .okBtn {
  flex: 1;
  padding: 16px;
  border-radius: 99px;
  color: #127be8;
  transition: background-color 0.3s ease;
}
.vehicle_Main .vehicle_detail .buttons .okBtn {
  background-color: #127be8;
  color: white;
}
.vehicle_Main .vehicle_detail .buttons .okBtn:hover {
  background-color: #0e5cb1;
}
.vehicle_Main .vehicle_detail .buttons .okBtn:disabled {
  background-color: #9bc9f7;
}
.vehicle_Main .vehicle_detail .buttons .backBtn:hover {
  background-color: #9bc9f7;
}
.vehicle_Main .vehicle_detail .hidden {
  display: none;
}
.vehicle_Main .vehicle_detail .show {
  display: grid;
}
.vehicle_Main .vehicle_detail .additional_inputs {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.vehicle_Main .vehicle_detail .additional_inputs .input-box {
  display: flex;
  flex-direction: column;
}
.vehicle_Main .vehicle_detail .additional_inputs .input-box .text {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
}
.vehicle_Main .vehicle_detail .additional_inputs .input-box .input {
  border: 1px solid #e0e0e0;
  padding: 13px 16px;
  border-radius: 99px;
  background: transparent;
  font-family: "Work Sans";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.vehicle_Main .vehicle_detail .additional_inputs .input-box .input::-moz-placeholder {
  color: #696969;
}
.vehicle_Main .vehicle_detail .additional_inputs .input-box .input::placeholder {
  color: #696969;
}

.checkbox_Group {
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 16px;
}
.checkbox_Group .card-box {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #d9d9d9;
  padding: 16px;
  cursor: pointer;
}
.checkbox_Group .card-box .card-box-header {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 16px;
}
.checkbox_Group .card-box .card-box-header .card-box-title {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.checkbox_Group .card-box .card-box-header .card-box-container {
  flex: 1;
  display: flex;
  justify-content: right;
  align-items: center;
}
.checkbox_Group .card-box .card-box-header .card-box-container .card-box-checkbox {
  border-radius: 2px;
  width: 16px;
  height: 16px;
}
.checkbox_Group .card-box .card-box-body {
  display: flex;
  flex-direction: row;
  font-size: 16px;
  font-weight: 400;
  justify-content: space-between;
}
.checkbox_Group .card-box .card-box-body .card-box-text {
  padding-right: 20px;
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.checkbox_Group .card-box .card-box-body .card-box-img {
  background-color: white;
  border-radius: 12px;
  width: 116px;
}
.checkbox_Group .card-box .card-box-body .card-box-img .windshieldImg {
  width: 100%;
}
.checkbox_Group .uploadCard-box-group {
  display: flex;
  flex-direction: row;
  margin-top: 8px;
}
.checkbox_Group .uploadCard-box-group .uploadCard-box-body1 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkbox_Group .uploadCard-box-group .uploadCard-box-body {
  flex: 1;
  display: flex;
  flex-direction: row;
  font-size: 16px;
  font-weight: 400;
  padding: 16px;
  border-radius: 12px;
  background-color: #f0f0f0;
  justify-content: center;
  align-items: center;
}
.checkbox_Group .uploadCard-box-group .uploadCard-box-body .uploadCard-box-text {
  flex: 3;
}
.checkbox_Group .uploadCard-box-group .uploadCard-box-body .uploadCard-box-img {
  flex: 1;
  border-radius: 12px;
  height: 64px;
  display: flex;
  justify-content: right;
  align-items: center;
}
.checkbox_Group .uploadCard-box-group .uploadCard-box-body .uploadCard-box-img .camera_Img {
  width: 31.42px;
  height: 32px;
  cursor: pointer;
}

.repairInfo {
  display: flex;
  flex-direction: column;
}
.repairInfo .repairInfo-box {
  margin: 0px 0 16px 0;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  font-family: "Work Sans";
}
.repairInfo .repairInfo-box.selected {
  background-color: #d9eafc;
}
.repairInfo .repairInfo-box .repairInfo-img {
  border-radius: 12px;
  background-color: #636363;
  width: 128px;
  height: 73px;
}
.repairInfo .box-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.repairInfo .box-grid .card-box-body {
  display: flex;
  flex-direction: row;
  font-size: 16px;
  font-weight: 400;
  padding: 16px;
  justify-content: center;
  align-items: center;
  font-family: "Work Sans";
}
.repairInfo .box-grid .card-box-body .card-box-text {
  flex: 1;
  font-family: "Work Sans";
}
.repairInfo .box-grid .card-box-body .card-box-img {
  border-radius: 12px;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.repairInfo .box-grid .card-box-body .card-box-img .camera_Img {
  width: 31.42px;
  height: 32px;
  cursor: pointer;
}

.schedule {
  display: flex;
  flex-direction: column;
}
.schedule .schedule-title {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  color: #0a0a0a;
}
.schedule .date-box {
  margin-top: 16px;
}
.schedule .date-box .date {
  margin: 12px 0;
}
.schedule .date-box .date .date-head {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: row;
}
.schedule .date-box .date .date-head .prev,
.schedule .date-box .date .date-head .dateTitle,
.schedule .date-box .date .date-head .next {
  display: flex;
  align-items: center;
  color: #696969;
}
.schedule .date-box .date .date-head .prev,
.schedule .date-box .date .date-head .next {
  flex: 1;
}
.schedule .date-box .date .date-head .dateTitle {
  flex: 13;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #696969;
}
.schedule .date-box .date .date-head .prev {
  display: flex;
  justify-content: start;
  cursor: pointer;
}
.schedule .date-box .date .date-head .next {
  display: flex;
  justify-content: end;
  cursor: pointer;
}
.schedule .date-box .date .date-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 12px;
  color: #696969;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.schedule .date-box .date .date-body .day {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.schedule .date-box .date .date-body .day .day-title {
  font-family: "Playfair Display";
  font-size: 16px;
  font-weight: 600;
  line-height: 21.33px;
  text-align: center;
}
.schedule .date-box .date .date-body .day .number {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.schedule .date-box .date .date-body .day.selected {
  border-bottom: 2px solid #127be8;
  color: #127be8;
}
.schedule .date-box .date .date-body .day.selected .number {
  font-weight: 700;
}
.schedule .date-box .date .date-body .day:hover {
  border-bottom: 2px solid #9bc9f7;
}
.schedule .date-box .availabletime {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.schedule .date-box .availabletime .morning,
.schedule .date-box .availabletime .afternoon {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule .date-box .availabletime .morning .morning-title,
.schedule .date-box .availabletime .morning .afternoon-title,
.schedule .date-box .availabletime .afternoon .morning-title,
.schedule .date-box .availabletime .afternoon .afternoon-title {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.schedule .date-box .availabletime .morning .morning-text,
.schedule .date-box .availabletime .morning .afternoon-text,
.schedule .date-box .availabletime .afternoon .morning-text,
.schedule .date-box .availabletime .afternoon .afternoon-text {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  color: #0a0a0a;
  text-align: left;
}
.schedule .availabletime .morning,
.schedule .availabletime .afternoon {
  cursor: pointer;
}
.schedule .availabletime .morning.selected,
.schedule .availabletime .afternoon.selected {
  background: #d9eafc;
  border: 1px solid #127be8;
}
.schedule .available-select {
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.schedule .available-select-text {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

@media (max-width: 1100px) {
  .vehicle_Main {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 34px;
  }
  .vehicle_Main .description {
    margin-right: 0;
    width: 100%;
  }
  .vehicle_Main .description .text_Container {
    margin-bottom: 0;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group {
    display: flex;
    flex-direction: column;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .backBtn1 {
    width: 16px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .backBtn1 .backImg {
    width: 16px;
    height: 44px;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup {
    display: flex;
    flex-direction: row;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 8px;
    margin: 16px 0 0 0;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container .title_Text {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container .title_Text * {
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container .title_Text .step-bar {
    height: 3px;
    width: 100%;
    background-color: #127be8;
    border-radius: 10px;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container .title_Text.opacity {
    opacity: 0.4;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container .title_Text.opacity .step-number {
    font-size: 16px;
    font-weight: 400;
    color: #0a0a0a;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container .title_Text.opacity .step-title {
    font-size: 14px;
    font-weight: 400;
    color: #0a0a0a;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container .title_Text.passed .step-number {
    font-size: 16px;
    font-weight: 400;
    color: #0a0a0a;
  }
  .vehicle_Main .description .text_Container .header_Menu_Group .menuGroup .header_text_Container .title_Text.passed .step-title {
    font-size: 16px;
    font-weight: 400;
    color: #0a0a0a;
  }
  .vehicle_Main .description .text_Container .title {
    font-size: 48px;
    font-weight: 600;
    line-height: 63.98px;
  }
  .vehicle_Main .description .text_Container .title-text {
    font-size: 16px;
    font-weight: 400;
  }
  .vehicle_Main .description .img {
    display: none;
  }
  .vehicle_Main .vehicle_detail {
    padding: 0px;
    background-color: white;
    border: none;
    width: 100%;
  }
  .vehicle_Main .vehicle_detail .text_Container {
    display: none;
  }
  .vehicle_Main .vehicle_detail .img {
    display: none;
  }
  .vehicle_Main .vehicle_detail .search {
    margin: 0;
  }
  .vehicle_Main .vehicle_detail .search .text {
    margin-bottom: 12px;
  }
  .vehicle_Main .vehicle_detail .search .vin {
    width: 100%;
  }
  .vehicle_Main .vehicle_detail .emailRequest,
  .vehicle_Main .vehicle_detail .payment,
  .vehicle_Main .vehicle_detail .serviceLocation,
  .vehicle_Main .vehicle_detail .contactInfo,
  .vehicle_Main .vehicle_detail .review,
  .vehicle_Main .vehicle_detail .invoiceSection {
    flex-direction: column;
  }
  .vehicle_Main .vehicle_detail .enter_VIN {
    margin-top: 24px;
  }
  .vehicle_Main .vehicle_detail .enter_VIN .findBox {
    width: 100%;
    margin-top: 16px;
  }
  .vehicle_Main .vehicle_detail .checkbox_Group {
    grid-template-columns: repeat(1, 1fr);
  }
  .vehicle_Main .vehicle_detail .checkbox_Group .uploadCard-box-group {
    display: flex;
    flex-direction: column;
    border: 1px solid #d3d3d3; /* Light gray border */
    padding: 10px; /* Add some padding inside the box */
    border-radius: 10px; /* Slightly rounded corners */
  }
  .vehicle_Main .vehicle_detail .checkbox_Group .uploadCard-box-body1 {
    margin-bottom: 16px;
    line-height: 24px;
  }
  .vehicle_Main .vehicle_detail .checkbox_Group .uploadCard-box-body {
    margin-bottom: 10px; /* Space between text and image section */
  }
  .vehicle_Main .vehicle_detail .checkbox_Group .uploadCard-box-img {
    text-align: center; /* Center the image inside the div */
  }
  .vehicle_Main .vehicle_detail .damage-error-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0 0 80px 0;
  }
  .vehicle_Main .vehicle_detail .damage-error-buttons .backBtn {
    display: none;
  }
  .vehicle_Main .vehicle_detail .emailRequest .email_buttons {
    flex-direction: column;
    margin: 32px 0 80px 0;
  }
  .vehicle_Main .vehicle_detail .emailRequest .email_buttons .email_skipBtn {
    order: 2;
    margin-top: 0;
  }
  .vehicle_Main .vehicle_detail .emailRequest .email_buttons .email_okBtn {
    order: 1;
    margin-left: 0;
    margin-bottom: 16px;
  }
  .vehicle_Main .vehicle_detail .payment {
    margin: 0;
  }
  .vehicle_Main .vehicle_detail .payment .payment-method {
    width: 100%;
  }
  .vehicle_Main .vehicle_detail .repairInfo .box-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
    gap: 16px;
  }
  .vehicle_Main .vehicle_detail .repairInfo .box-grid .card-box-body:first-child {
    padding: 0;
  }
  .vehicle_Main .vehicle_detail .serviceLocation .streetInfo {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    margin-bottom: 0px;
  }
  .vehicle_Main .vehicle_detail .serviceLocation .streetInfo .group .input_Box {
    width: 100%;
  }
  .vehicle_Main .vehicle_detail .serviceLocation .streetInfo .group .input_Box:focus {
    border: 1px solid #127be8 !important;
    outline: none;
  }
  .vehicle_Main .vehicle_detail .serviceLocation .cityInfo {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .vehicle_Main .vehicle_detail .serviceLocation .cityInfo .group .input_Box {
    width: 100%;
  }
  .vehicle_Main .vehicle_detail .serviceLocation .cityInfo .group .input_Box:focus {
    border: 1px solid #127be8 !important;
    outline: none;
  }
  .vehicle_Main .vehicle_detail .contactInfo .nameGroup {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .vehicle_Main .vehicle_detail .contactInfo .nameGroup .group .input_Box {
    width: 100%;
  }
  .vehicle_Main .vehicle_detail .contactInfo .nameGroup .group .input_Box:focus {
    border: 1px solid #127be8 !important;
    outline: none;
  }
  .vehicle_Main .vehicle_detail .review .payment_buttons {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
  }
  .vehicle_Main .vehicle_detail .review .payment_buttons .creditBtn,
  .vehicle_Main .vehicle_detail .review .payment_buttons .serviceBtn {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .vehicle_Main .vehicle_detail .buttons {
    flex-direction: column;
    margin-top: 32px;
    margin-bottom: 80px;
  }
  .vehicle_Main .vehicle_detail .buttons .backBtn {
    display: none;
  }
  .vehicle_Main .vehicle_detail .buttons .okBtn {
    margin-left: 0;
  }
  .vehicle_Main .vehicle_detail .findBox {
    flex-direction: column;
    align-items: flex-start;
  }
  .vehicle_Main .vehicle_detail .additional_inputs {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .schedule .schedule-title {
    font-size: 16px;
    font-weight: 400;
    color: #0a0a0a;
  }
  .schedule .date-box .date .date-head {
    padding: 10px, 10px, 20px, 10px;
  }
  .schedule .date-box .date .date-head .prev,
  .schedule .date-box .date .date-head .next {
    flex: 1;
  }
  .schedule .date-box .date .date-head .dateTitle {
    flex: 9;
  }
  .schedule .date-box .date .date-body {
    grid-template-columns: repeat(5, 1fr);
  }
  .schedule .date-box .availabletime {
    grid-template-columns: repeat(1, 1fr);
  }
}
.appointment-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 128px;
}
.appointment-page .appointment-main {
  display: flex;
  flex-direction: row;
  width: 1184px;
}
.appointment-page .appointment-main .title-group {
  display: flex;
  flex-direction: column;
  width: 489px;
  margin: 0 54px 0 0;
}
.appointment-page .appointment-main .title-group .title {
  font-family: "Playfair Display";
  font-size: 72px;
  font-weight: 600;
  line-height: 86.4px;
  text-align: left;
  margin-bottom: 24px;
}
.appointment-page .appointment-main .title-group .description {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.appointment-page .appointment-main .appoint-item-group {
  display: flex;
  flex-direction: column;
  padding: 32px;
  width: 641px;
  background-color: #f0f0f0;
  border-radius: 12px;
}
.appointment-page .appointment-main .appoint-item-group .item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.appointment-page .appointment-main .appoint-item-group .item .title {
  display: flex;
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  margin-bottom: 8px;
}
.appointment-page .appointment-main .appoint-item-group .item .desc {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.appointment-page .appointment-main .appoint-item-group .item1 {
  margin-top: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.appointment-page .appointment-main .appoint-item-group .item1 .title1 {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-bottom: 8px;
}
.appointment-page .appointment-main .appoint-item-group .item1 .desc1 {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.appointment-page .appointment-main .appoint-item-group .title {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  margin-bottom: 12px;
}
.appointment-page .appointment-main .appoint-item-group .button-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 44px;
}
.appointment-page .appointment-main .appoint-item-group .button-group .reschedule-button {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0a0a0a;
  height: 48px;
}
.appointment-page .appointment-main .appoint-item-group .button-group .reschedule-button:hover {
  background-color: #d1cbcb;
}
.appointment-page .appointment-main .appoint-item-group .button-group .cancel-button {
  flex: 1;
  border: none;
  border-radius: 99px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e00000;
  height: 48px;
}
.appointment-page .appointment-main .appoint-item-group .button-group .cancel-button:hover {
  background-color: #d1cbcb;
}
.appointment-page .appointment-main .appoint-item-group .message-group {
  display: flex;
  flex-direction: column;
}
.appointment-page .appointment-main .appoint-item-group .message-group .message-title {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.appointment-page .appointment-main .appoint-item-group .message-group .message-desc {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 16px 0 16px 0;
  align-items: center;
}
.appointment-page .appointment-main .appoint-item-group .message-group .message-desc .input-title {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  flex: 1;
}
.appointment-page .appointment-main .appoint-item-group .message-group .message-desc input {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid #cfcfcf;
}
.appointment-page .appointment-main .appoint-item-group .message-group .content {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #696969;
}
.appointment-page .appointment-main .appoint-item-group .hidden-button-group {
  display: flex;
}
.appointment-page .appointment-main .appoint-item-group .hidden-button-group .hidden-cancel-button {
  display: none;
}

@media (max-width: 1100px) {
  .appointment-page {
    padding: 30px 16px 0px 16px;
  }
  .appointment-page .appointment-main {
    width: 100%;
    flex-direction: column;
    margin-left: 10px;
    margin-top: -15px;
  }
  .appointment-page .appointment-main .title-group {
    margin: 0px;
    width: 100%;
  }
  .appointment-page .appointment-main .title-group .title {
    display: flex !important;
    margin-bottom: 34px;
    font-size: 48px;
    font-weight: 600;
    line-height: 63.98px;
    text-align: left;
  }
  .appointment-page .appointment-main .item-group {
    margin-top: 40px;
    padding: 0px 0 96px 0;
    background-color: transparent;
  }
  .appointment-page .appointment-main .item-group .item1 {
    margin-bottom: 40px;
  }
  .appointment-page .appointment-main .item-group .title {
    display: none;
  }
  .appointment-page .appointment-main .item-group .button-group {
    margin-bottom: 40px;
  }
  .appointment-page .appointment-main .item-group .button-group .cancel-button {
    display: none;
  }
  .appointment-page .appointment-main .item-group .message-group {
    margin-bottom: 40px;
  }
  .appointment-page .appointment-main .item-group .hidden-button-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 96px;
  }
  .appointment-page .appointment-main .item-group .hidden-button-group .hidden-cancel-button {
    display: flex !important;
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 99px;
    justify-content: center;
    align-items: center;
    color: #e00000;
    height: 48px;
  }
  .appointment-page .appointment-main .appoint-item-group {
    padding: 40px 0 0 0;
    background-color: transparent;
    width: 100%;
  }
  .appointment-page .appointment-main .appoint-item-group .item1 {
    margin-bottom: 40px;
  }
  .appointment-page .appointment-main .appoint-item-group .title {
    display: none;
  }
  .appointment-page .appointment-main .appoint-item-group .button-group {
    margin-bottom: 40px;
  }
  .appointment-page .appointment-main .appoint-item-group .button-group .cancel-button {
    display: none;
  }
  .appointment-page .appointment-main .appoint-item-group .hidden-button-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 96px;
  }
  .appointment-page .appointment-main .appoint-item-group .hidden-button-group .hidden-cancel-button {
    display: flex !important;
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 99px;
    justify-content: center;
    align-items: center;
    color: #e00000;
    height: 48px;
  }
  .appointment-page .appointment-main .appoint-item-group .hidden-button-group .hidden-cancel-button:hover {
    background-color: rgb(255, 195, 195);
  }
}
.not-service-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 76px;
}
.not-service-page .not-service-main {
  display: flex;
  flex-direction: row;
  width: 1189px;
}
.not-service-page .not-service-main .service-title-group {
  display: flex;
  flex-direction: column;
  width: 489px;
  margin-right: 54px;
}
.not-service-page .not-service-main .service-title-group .service-title {
  font-family: "Playfair Display";
  font-size: 72px;
  font-weight: 600;
  line-height: 86.4px;
  text-align: left;
  margin-bottom: 24px;
}
.not-service-page .not-service-main .service-title-group .service-description {
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.not-service-page .not-service-main .not-service-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.not-service-page .not-service-main .not-service-body .not-service-item-group {
  display: flex;
  flex-direction: row;
  width: 641px;
  height: 114px;
  border: 1px solid #e6e6e6;
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 32px;
}
.not-service-page .not-service-main .not-service-body .not-service-item-group .service-button-group {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.not-service-page .not-service-main .not-service-body .not-service-item-group .service-button-group .contact-button {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0a0a0a;
  border-radius: 99px;
  padding: 16px;
  height: 48px;
  border: none;
}
.not-service-page .not-service-main .not-service-body .not-service-item-group .service-button-group .contact-button:hover {
  background-color: #d9eafc;
}
.not-service-page .not-service-main .not-service-body .not-service-item-group .service-button-group .redirect-button {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #127be8;
  border-radius: 99px;
  background-color: #d9eafc;
  padding: 16px;
  height: 48px;
}
.not-service-page .not-service-main .not-service-body .not-service-item-group .service-button-group .redirect-button:hover {
  background-color: #bcd9f8;
}
.not-service-page .not-service-main .not-service-body .not-service-item-group .hidden-service-button-group {
  display: none;
}

@media (max-width: 1100px) {
  .not-service-page {
    padding: 14px 16px 0 16px;
    justify-content: start;
  }
  .not-service-page .not-service-main {
    width: 100%;
    flex-direction: column;
  }
  .not-service-page .not-service-main .service-title-group {
    width: 100%;
    margin-right: 0px;
  }
  .not-service-page .not-service-main .service-title-group .service-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 63.98px;
  }
  .not-service-page .not-service-main .service-title-group .service-description {
    margin-bottom: 0px;
  }
  .not-service-page .not-service-main .not-service-body .not-service-item-group {
    background-color: transparent;
    height: auto;
    padding: 0px;
    border: none;
    margin: 32px 0 96px 0;
  }
  .not-service-page .not-service-main .not-service-body .not-service-item-group .service-button-group {
    display: none;
  }
  .not-service-page .not-service-main .not-service-body .not-service-item-group .hidden-service-button-group {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .not-service-page .not-service-main .not-service-body .not-service-item-group .hidden-service-button-group .hidden-contact-button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0a0a0a;
    border-radius: 99px;
    padding: 16px;
    height: 48px;
    border: none;
  }
  .not-service-page .not-service-main .not-service-body .not-service-item-group .hidden-service-button-group .hidden-contact-button:hover {
    background-color: #d9eafc;
  }
  .not-service-page .not-service-main .not-service-body .not-service-item-group .hidden-service-button-group .hidden-redirect-button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #127be8;
    border-radius: 99px;
    background-color: #d9eafc;
    padding: 16px;
    height: 48px;
  }
  .not-service-page .not-service-main .not-service-body .not-service-item-group .hidden-service-button-group .hidden-redirect-button:hover {
    background-color: #bcd9f8;
  }
}/*# sourceMappingURL=sassStyle.css.map */