:root {
  --color-primary: #195ea1;
  --color-secondary: #888888;
  --color-success: #04aa6d;
  --color-danger: #dc3545;
  --white: #ffffff;
}

#sidebar {
  background-color: rgb(25, 94, 161);
  width: 200px;
  height: 100vh;
  overflow: hidden;
}
#sidebar #logo {
  background: #ffffff;
  height: 80px;
  display: flex;
  padding: 10px;
}
#sidebar #logo img {
  width: 100%;
  margin: auto auto;
}
#sidebar #sidebar-group {
  background: #ffffff;
}
#sidebar #sidebar-group .sidebar-menu {
  border-bottom: white 1px solid;
  display: flex;
  background-color: rgb(25, 94, 161);
  padding: 0 10px;
}
#sidebar #sidebar-group .sidebar-menu:hover, #sidebar #sidebar-group .sidebar-menu.active {
  background-color: rgba(25, 94, 161, 0.7);
}
#sidebar #sidebar-group .sidebar-menu .menu-li {
  height: 50px;
  color: #ffffff;
  font-size: 16px;
  flex: 1;
  display: flex;
  align-items: center;
}
#sidebar .logout {
  position: absolute;
  bottom: 50px;
  left: 40px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
#sidebar .logout .logout-link {
  color: white;
}
#sidebar .logout .display-name {
  display: flex;
  justify-content: center;
  inline-size: 150px;
  overflow-wrap: break-word;
}

body {
  height: 100vh;
  width: 100vw;
}
body main {
  flex-wrap: nowrap;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  width: 100vw;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
}
body #main-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  flex: 1;
}
body #main-container #main-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: auto;
  padding: 80px 60px;
}
body #main-container #main-content .modal-content .modal-content-border {
  border-radius: 10px;
}
body #main-container #main-content .modal-content .header-padding {
  display: block;
  padding: 0 10px 10px 10px;
  border: none;
}
body #main-container #main-content .modal-content .header-padding .icon-close-modal {
  border: none;
  justify-content: center;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}
body #main-container #main-content .modal-content .modal-body-content {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  margin-left: 30px;
}
body #main-container #main-content .modal-content .button-footer {
  background-color: #ededed;
  border-radius: 0 0 10px 10px;
  border: none;
  padding: 0.5rem;
}
body #main-container #main-content .modal-content .btn-close {
  font-size: 30px;
  padding-left: 0;
}
body #main-container #main-content #content-body {
  background: var(--white);
  display: flex;
  flex: 1;
  flex-direction: column;
}
body #main-container #main-content #content-body .section-title {
  border: 1px solid var(--color-secondary);
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body #main-container #main-content #content-body .custom-input-group {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 10px;
}
body #main-container #main-content #content-body .custom-input-group .text-title {
  display: inline-flex;
  align-items: center;
  background: #bebaba;
  color: black;
  border-radius: 5px;
  width: 250px;
  padding: 5px 10px;
  -moz-column-gap: 5px;
       column-gap: 5px;
  height: -moz-fit-content;
  height: fit-content;
}
body #main-container #main-content #content-body .custom-input-group .custom-input-group-body {
  display: flex;
  flex: 1;
}
body #main-container #main-content #content-body .custom-input-group .custom-input-group-body .custom-input {
  height: 35px;
}
body #main-container #main-content #content-body .custom-input-group .custom-input-group-body .text-validate {
  color: var(--color-danger);
  padding-left: 15px;
  padding-right: 15px;
}
body #main-container #main-content #content-body .custom-input-group .space-holder {
  width: 250px;
}

#exception-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
#exception-page .message {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 61px;
  margin-top: 48px;
  text-align: center;
}
#exception-page .message .message-description {
  font-size: 22px;
  line-height: 140%;
  margin-top: 16px;
}
#exception-page .btn {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  height: 45px;
  line-height: 24px;
  margin-top: 32px;
  width: 170px;
}

a, a:hover {
  text-decoration: none !important;
  color: initial !important;
}

.custom-btn {
  height: 40px;
  min-width: 150px;
  background: var(--white);
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
  border-width: 2px;
  border-style: solid;
  padding: 5px 10px;
}
.custom-btn.half-size {
  min-width: 90px;
}
.custom-btn.btn-del-size {
  min-width: 70px;
}
.custom-btn.large-size {
  min-width: 250px;
}
.custom-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.custom-btn:not(:disabled):hover {
  opacity: 0.7;
}
.custom-btn.color-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.custom-btn.color-danger {
  color: var(--color-danger);
  border-color: var(--color-danger);
}
.custom-btn.color-secondary {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.custom-btn.color-success {
  color: var(--color-success);
  border-color: var(--color-success);
}

.custom-btn-register {
  height: 35px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  min-width: 125px;
  font-size: clamp(0.8125rem, 0.0724rem + 0.7895vw, 1rem);
  font-weight: 600;
  background: var(--white);
  border-radius: 30px;
  border-width: 2px;
  border-style: solid;
  padding: 5px 10px;
}
.custom-btn-register.color-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.w-100 {
  width: 100%;
}

.w-90 {
  width: 90.2%;
}

.w-85 {
  width: 85%;
}

.w-80 {
  width: 80%;
}

.w-20 {
  width: 20%;
}

.w-15 {
  width: 15%;
}

.w-10 {
  width: 10%;
}

.w-12 {
  width: 12%;
}

.w-3-car {
  width: 3.6%;
}

.w-3-part {
  width: 3.2%;
}

.w-4 {
  width: 4%;
}

.w-5 {
  width: 5%;
}

.w-6 {
  width: 6%;
}

.w-7 {
  width: 7%;
}

.w-8 {
  width: 8%;
}

.w-9 {
  width: 9%;
}

.w-10 {
  width: 10%;
}

.w-14 {
  width: 14%;
}

.h-35 {
  height: 35px;
}

@media screen and (max-width: 1700px) {
  body #main-container #main-content {
    padding: 80px 20px;
  }
  body #main-container #main-content #content-body .custom-input-group .text-title {
    width: 200px;
  }
  body #main-container #main-content #content-body .custom-input-group .space-holder {
    width: 200px;
  }
  .custom-btn.large-size {
    min-width: 180px;
  }
}
.content-list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.content-list .form-search .form-search-items {
  border: 1px solid var(--color-secondary);
  border-radius: 20px;
  padding: 16px 60px;
}
.content-list .form-search .form-search-items .fontsize-form-search {
  background-color: #bebaba;
  color: black;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
  height: 35px;
}
.content-list .form-search .form-search-items .suggestion {
  display: none;
  width: 94%;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
  cursor: context-menu;
  position: absolute;
  z-index: 10;
}
.content-list .form-search .form-search-items .suggestion div {
  padding: 0 0.375rem;
}
.content-list .form-search .form-search-items .suggestion div:hover {
  background: #1e90ff;
}
.content-list .form-search .form-search-items .h-35 {
  height: 35px;
}
.content-list .form-search .form-search-items .form-footer {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  justify-content: end;
}
.content-list .font-24 {
  font-size: 24px;
}
.content-list .modal-content .staff-list-table {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0;
}
.content-list .modal-content .staff-modal-footer {
  background-color: #ededed;
  border-radius: 0 0 10px 10px;
  border: none;
  padding: 0.5rem;
}
.content-list .list-items .btn-add {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
}
.content-list .list-items .btn-add-content {
  font-size: 15px;
  padding: 10px 0;
}

@media screen and (max-width: 1500px) {
  .content-list .form-search .form-search-items .fontsize-form-search {
    font-size: clamp(0.75rem, 0.25rem + 0.5263vw, 0.8125rem);
    height: -moz-fit-content;
    height: fit-content;
  }
}
.content-form {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}

.register-form {
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
}
.register-form p {
  margin-bottom: 0px;
}
.register-form label {
  margin-bottom: 0;
}
.register-form .title {
  border: 1px solid #85898d;
  height: 35px;
  font-size: 18px;
  width: 50%;
  margin-right: 2%;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-form .title-body {
  border: 1px solid #85898d;
  height: 35px;
  font-size: 18px;
  font-weight: 600;
  width: 50%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-form .text-title {
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
  background: #bebaba;
  width: 20%;
  margin-right: 5px;
  height: -moz-fit-content;
  height: fit-content;
  color: black;
  font-weight: 500;
  margin-bottom: 0;
  padding: 5px 10px;
  text-align: inherit;
  border-radius: 2px;
}
.register-form .text-title-full {
  width: 100%;
}
.register-form .item-checkbox {
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
}
.register-form .car-label {
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
  font-weight: 400;
  margin-left: 0.5rem;
  margin-bottom: 0;
}
.register-form #store_id {
  width: 45%;
  margin-left: 0.5rem;
}
.register-form .input-select {
  word-wrap: normal;
  width: 75%;
  padding: 4px;
}
.register-form .select-normal {
  height: 30px;
  width: 100%;
}
.register-form .group-input-validate {
  flex-direction: column;
  width: 40%;
}
.register-form .text-title-footer {
  background: #bebaba;
  width: 10%;
  margin-right: 5px;
  height: -moz-fit-content;
  height: fit-content;
  color: black;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
  margin-bottom: 0;
  padding: 5px 10px;
  text-align: inherit;
  border-radius: 2px;
}
.register-form .p-10px {
  padding: 10px;
}
.register-form .group-button {
  justify-content: center;
  align-items: center;
  width: 30%;
  display: flex;
}
.register-form .group-button .btn-submit {
  width: 200px;
  height: 35px;
  border-radius: 30px;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-form .group-button .btn-cancel {
  border-radius: 20px;
  height: 35px;
  width: 200px;
  margin-left: 30px;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
  text-decoration: none;
  padding-left: 1.5rem;
}
.register-form .group-button-half {
  width: 50%;
}
.register-form .car-title {
  display: flex;
  margin-bottom: 0px;
}
.register-form .input-mileage {
  word-wrap: normal;
  width: 100px;
  height: 30px;
  margin: 0 0 0 0.5rem;
}
.register-form .form-input {
  display: flex;
  width: 100%;
  margin: 1rem 0;
}
.register-form .form-input input {
  padding: 4px;
}
.register-form .form-input .text-title-custom {
  background: #bebaba;
  width: 40%;
  margin-right: 5px;
  color: black;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
  margin-bottom: 0;
  padding: 5px 10px;
  text-align: inherit;
  border-radius: 2px;
}
.register-form .form-input .form-input-left {
  width: 50%;
  display: flex;
}
.register-form .form-input .form-input-right {
  width: 50%;
  display: flex;
}
.register-form .form-input .group-input-custom {
  display: flex;
  width: 100%;
}
.register-form .form-input .group-input-custom .shadai-no {
  width: 10%;
}
.register-form .form-input .group-input-custom .body-price {
  width: 25%;
  background: aliceblue;
  font-weight: 500;
}
.register-form .form-input .group-input-custom .body-price-type-item {
  display: flex;
  padding: 0.25rem 0.5rem 0;
}
.register-form .form-input .group-input-custom .body-price-type-item .price-label {
  margin: 0 0 0 0.5rem;
  font-size: clamp(0.8125rem, 0.5658rem + 0.2632vw, 0.875rem);
}
.register-form .form-input .text-private {
  font-size: clamp(0.75rem, 0.2969rem + 0.5263vw, 0.875rem);
  font-weight: 400;
  margin-left: 0.5rem;
}
.register-form .form-input .flex-input {
  display: flex;
}
.register-form .form-input .flex-input .fuel-type {
  display: flex;
  margin-left: 0.5rem;
}
.register-form .form-input .flex-input .fuel-type .fuel-item {
  display: flex;
  padding-top: 0.25rem;
  padding-right: 0.5rem;
}
.register-form .form-input .flex-input .fuel-type .fuel-item .fuel-name {
  margin-bottom: 0;
  margin-left: 0.25rem;
  font-size: clamp(0.8125rem, 0.5658rem + 0.2632vw, 0.875rem);
  font-weight: 400;
}
.register-form .form-input .group-input-check {
  display: flex;
  align-items: center;
  padding-top: 0.25rem;
  margin-left: 0.5rem;
}
.register-form .form-input .input-price {
  width: 25%;
}
.register-form .form-input .input-frame {
  width: 100%;
}
.register-form .form-input .input-frame-custom {
  width: 50%;
}
.register-form .form-input .place-store-input {
  width: 90%;
}
.register-form .form-check {
  display: flex;
  width: 100%;
  padding-left: 0;
  position: initial;
  margin: 1rem 0;
}
.register-form .form-check .group-checkbox-custom {
  display: flex;
  width: 100%;
  height: 100%;
}
.register-form .form-check .flex-checkbox {
  display: flex;
}
.register-form .form-check .flex-checkbox .mileage-item .mileage-group-checkbox {
  display: flex;
  padding-top: 0.25rem;
  padding-right: 0.5rem;
}
.register-form .form-check .flex-checkbox .mileage-item .mileage-group-input {
  margin-right: 0.5rem;
}
.register-form .form-check .flex-checkbox .mileage-item .mileage-group-input .unit {
  margin: 0.25rem 0 0 0.25rem;
}
.register-form .form-check .flex-checkbox .shaken-type-item {
  display: flex;
  align-items: baseline;
}
.register-form .form-check .flex-checkbox .shaken-type-item .shaken-type-group-checkbox {
  display: flex;
  padding: 0.25rem 0.5rem 0 0;
  height: -moz-fit-content;
  height: fit-content;
}
.register-form .form-check .flex-checkbox .shaken-type-item #shaken {
  display: flex;
}
.register-form .form-check .flex-checkbox .shaken-type-item #shaken .shaken-group {
  display: flex;
}
.register-form .form-check .flex-checkbox .shaken-type-item #shaken .shaken-group .shaken-label {
  margin-bottom: 0;
  margin-right: 0.5rem;
  padding: 0.25rem;
}
.register-form .form-check .flex-checkbox .guarantee-group-checkbox {
  display: flex;
}
.register-form .form-check .guarantee-item .car-label-custom {
  margin-left: 0;
}
.register-form .form-check #guarantee {
  padding-top: 1rem;
  gap: 1.5rem;
}
.register-form .form-select {
  display: flex;
  width: 100%;
  margin: 1rem 0;
}
.register-form .form-select .color {
  display: flex;
}
.register-form .form-select .color .color-type {
  margin-right: 1.5rem;
  width: 100%;
}
.register-form .form-select .color .select-color-type {
  word-wrap: normal;
  width: 100%;
  height: 30px;
}
.register-form .form-select .color .color-name {
  width: 100%;
}
.register-form .section-setting-item {
  display: flex;
  margin: 0 0 0.25rem;
}
.register-form .section-setting-item .col-6 {
  padding: 0;
}
.register-form .section-equipment .equipment {
  height: auto;
  border: 1px solid #c1baba;
  border-radius: 30px;
}
.register-form .section-equipment .equipment .equipment-line {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
.register-form .section-equipment .equipment .equipment-item {
  min-width: -moz-max-content;
  min-width: max-content;
  justify-content: center;
}
.register-form .section-equipment .equipment .equipment-item .car-equipment {
  font-size: clamp(0.8125rem, 0.0724rem + 0.7895vw, 1rem);
  font-weight: 400;
  margin-bottom: 0;
  margin-left: 0.5rem;
}
.register-form .section-equipment .button-check-length {
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
}
.register-form .section-equipment input[type=text] {
  padding: 3px;
}
.register-form .section-input-preview {
  display: flex;
}
.register-form .section-input-preview .space-title {
  width: 10%;
  margin-right: 5px;
}
.register-form .section-input-preview .show-preview {
  width: 100%;
}
.register-form .upload-image {
  margin-left: 50px;
  position: relative;
  width: 530px;
  height: 65px;
  background-color: #accae4;
  border: 2px dashed black;
}
.register-form .upload-image .fa-upload {
  position: absolute;
  right: 20px;
  top: 35%;
}
.register-form .upload-image .text-upload {
  position: absolute;
  padding: 2% 3%;
}
.register-form .upload-image #file-upload {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.register-form .section-vehicle-image .list-item-car {
  margin: 1rem 0;
}
.register-form .section-vehicle-image .list-item-car .form-img {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.register-form .section-vehicle-image .list-item-car .form-img .show-img {
  width: 20%;
  padding: 1rem;
}
.register-form .section-vehicle-image .list-item-car .form-img .show-img .icon-handle {
  display: flex;
  margin: 0.5rem;
}
.register-form .section-vehicle-image .list-item-car .form-img .show-img .image-car {
  height: 200px;
  width: 100%;
  border-radius: 20px;
  background: white;
  border: none;
}
.register-form .section-vehicle-image .list-item-car .form-img .show-img .image-car .image_preview {
  height: 200px;
  width: 100%;
  border-radius: 20px;
  border: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.register-form .section-vehicle-image .list-item-car .form-img .show-img .publish-image {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.register-form .section-vehicle-image .list-item-car .form-img .show-img .publish-image .radioCheck {
  word-wrap: normal;
  width: 30px;
}
.register-form .section-vehicle-image .group-button {
  margin: auto;
  width: 40%;
  display: flex;
}
.register-form .section-vehicle-image .group-button .button-submit {
  font-size: clamp(0.8125rem, 0.0724rem + 0.7895vw, 1rem);
  border-radius: 30px;
}
.register-form .section-vehicle-image .group-button .button-back {
  font-size: clamp(0.8125rem, 0.0724rem + 0.7895vw, 1rem);
  width: 50%;
  border-radius: 30px;
  margin-left: 15px;
}
.register-form .media-container {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  gap: 10px;
}
.register-form .media-container .title-img {
  height: 35px;
  width: 90%;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #85898d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-form .media-container .btn-img {
  background-color: #F2F2F2;
  margin-right: 10px;
  width: 24%;
  border-radius: 30px;
  height: -moz-fit-content;
  height: fit-content;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
}
.register-form .media-container .image-name-group {
  width: 60%;
}
.register-form .media-container .image-name-group .image-name {
  height: 35px;
  border: 1px solid;
  background-color: #e7e6e6;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 0.5rem;
}
.register-form .search-car {
  margin-left: 0;
  margin-right: 0;
}
.register-form .search-car .title-select-car {
  display: flex;
  width: 25%;
  margin: 0;
}
.register-form .search-car .title-select-car .col-6 {
  padding-left: 0;
}
.register-form .search-car .title-car-select {
  width: 100%;
}
.register-form .search-car .page-title {
  background: #bebaba;
  color: black;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
  margin-bottom: 0;
  padding: 5px 10px;
  text-align: inherit;
  border-radius: 2px;
  min-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.register-form .search-car .group-input {
  padding: 0px 15px;
  width: 75%;
}
.register-form .search-car .group-input .col-8 {
  padding-left: 0;
}
.register-form .search-car .group-search-item {
  gap: 10px;
  margin-top: 0;
}
.register-form .search-car .group-search-item .staff-in-charge {
  width: 45%;
}
.register-form .text-title-table {
  width: 100%;
  height: 35px;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #777777;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-form .content-table {
  margin: 1rem 0;
}
.register-form .content-table .select-car-area {
  background-color: #e4fcf9;
  height: 800px;
  border: 1px solid #777777;
  padding: 1px;
  position: relative;
  margin-bottom: 1rem;
}
.register-form .custom-input-group .text-title {
  width: 30% !important;
  max-width: 250px;
}
.register-form .custom-input-group .custom-input-group-body .select2-container {
  width: 100% !important;
}
.register-form .footer-select-car {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.register-form .footer-select-car .title-footer {
  font-weight: 600;
  height: 35px;
  font-size: 18px;
  border: 1px solid #85898d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-form .footer-select-car .select-car-info-container .setting-pdf {
  margin: 0.5rem 0;
}
.register-form .footer-select-car .select-car-info-container .setting-pdf .text-title {
  width: 40%;
}
.register-form .footer-select-car .select-car-info-container .setting-pdf .group-input {
  display: flex;
}
.register-form .footer-select-car .select-car-info-container .col-6 {
  padding-left: 0;
}

.bg-title-page {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 0.5rem;
  width: 100%;
  border: 1px solid var(--color-secondary);
  height: 40px;
  font-weight: 600;
}

.datepicker-custom {
  background-image: url("/images/calendar.svg");
  background-position-x: calc(100% - 5px);
  background-position-y: 50%;
  background-repeat: no-repeat;
  padding-right: 30px;
}

@media screen and (max-width: 1500px) {
  .register-form .group-button .btn-submit {
    width: 45%;
  }
  .register-form .group-button .btn-cancel {
    width: 50%;
    margin-left: 10px;
  }
  .register-form .form-check .flex-checkbox {
    flex-direction: column;
    gap: 15px;
  }
  .register-form .form-check #shaken {
    flex-direction: column;
    gap: 15px;
  }
  .register-form .form-input-custom {
    flex-direction: column;
    gap: 1rem;
  }
  .register-form .form-input-custom .form-input-left {
    width: 100%;
  }
  .register-form .form-input-custom .form-input-right {
    width: 100%;
  }
  .register-form .form-input-custom .text-title-custom {
    width: 20%;
  }
  .register-form .form-input-custom .input-price {
    width: 19% !important;
  }
  .register-form .form-input .flex-input {
    flex-direction: column;
  }
  .register-form .form-input .flex-input .displacement {
    width: 75%;
  }
  .register-form .section-equipment .equipment .equipment-item {
    min-width: -moz-max-content;
    min-width: max-content;
    justify-content: center;
    padding: 8px;
  }
  .register-form .section-vehicle-image .list-item-car .form-img .show-img {
    width: 25%;
  }
  .register-form .media-container .btn-img {
    width: 40%;
  }
  .register-form .media-container .image-name-group {
    width: 50%;
  }
  .register-form .search-car {
    flex-direction: column;
    gap: 1rem;
  }
  .register-form .search-car .title-select-car {
    width: 50%;
  }
  .register-form .search-car .group-input {
    width: 100%;
    padding-right: 0px;
  }
  .register-form .search-car .group-input .col-4 {
    padding-right: 0px;
  }
}
.form-create-store .input-address {
  margin: 0;
}
.form-create-store .img-upload {
  width: 100%;
  border-radius: 30px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  font-size: clamp(0.8125rem, 0.3191rem + 0.5263vw, 0.9375rem);
}
.form-create-store .title-media {
  width: 20%;
}
.form-create-store .title-media .text-title {
  width: 100%;
}
.form-create-store .background-image-registration .item {
  display: flex;
  padding: 1.5rem 1rem;
}
.form-create-store .background-image-registration .item .group-title {
  display: flex;
}
.form-create-store .background-image-registration .item .group-title .text-title {
  width: -moz-fit-content;
  width: fit-content;
}
.form-create-store .background-image-registration .item .img-upload {
  width: 50%;
}
.form-create-store .group-button {
  width: 87%;
  justify-content: flex-end;
}

@media screen and (max-width: 1500px) {
  .register-form .group-button .btn-cancel {
    width: 200px;
  }
  .register-form .group-button .btn-submit {
    width: 200px;
  }
}
