p {
  display: block;
}
.form-group textarea {
  width: 100%;
}

.service-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Open Sans';
}
.service-card {
  width: 375px;
  height: 321px;
  background: #fff;
  border-top-right-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
    0 24px 46px var(--box-shadow-color);
}

.service-card:hover .overlay {
  transform: scale(4) translateZ(0);
}

.service-card:hover .circle {
  border-color: #ffffff;
  background: #4e73df;
}

.service-card:hover .circle:after {
  background: var(--bg-color-light);
}

.service-card:hover p {
  color: #fff;
}

.service-card:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
    0 15px 24px var(--box-shadow-color);
}
.service-card img {
  width: 90px;
}
.service-card p {
  font-size: 18px;
  color: #ffffff;
  margin-top: 30px;
  z-index: 1000;
  transition: color 0.3s ease-out;
  background: #2f56c8;
  padding: 5px 25px;
  border-radius: 50px;
}

.circle {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #4e73df;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.circle:after {
  content: '';
  height: 118px;
  display: block;
  position: absolute;
  background: var(--bg-color);
  border-radius: 50%;
  top: 7px;
  left: 7px;
  transition: opacity 0.3s ease-out;
}

.circle svg {
  z-index: 10000;
  transform: translateZ(0);
}

.overlay {
  width: 130px;
  position: absolute;
  height: 118px;
  border-radius: 50%;
  background: #4e73df;
  z-index: 0;
  transition: transform 0.3s ease-out;
  transform: translate(0px, -40px);
}

/* Tooltip Css */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.marginBottom {
  margin-bottom: 13px;
}

/*Custom Css*/
body {
  color: #000000;
}

.sidebar-dark .nav-item .nav-link:focus {
  color: #000;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: rgb(255, 255, 255);
  opacity: 1;
}

.btn-completed {
  padding: 10px;
  background: #10ab8e;
  color: #ffffff;
  text-decoration: none;
  box-shadow: rgb(0 0 0 / 10%) 0px 0px 3px;
  font-size: 16px;
  font-weight: bold;
  /* width: inherit; */
  text-align: center;
  border-radius: 3px;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-completed:hover {
  border-color: #10ab8e;
  background: transparent;
  color: #10ab8e;
}

.btn-completed:disabled {
  border-color: #2f56c8;
  background-color: #2f56c8;
  color: white;
}
.btn-completed:focus {
  color: #fff;
  background-color: #10ab8e;
  border-color: #10ab8e;
  box-shadow: 0 0 0 0.1rem rgb(255 255 255 / 50%);
}
.btn-completed:not(:disabled):not(.disabled).active:focus,
.btn-completed:not(:disabled):not(.disabled):active:focus,
.show > .btn-completed.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgb(255 255 255 / 70%);
}
.btn-completed:active {
  background-color: #10ab8e !important;
  border-color: #10ab8e !important;
}

.btn-danger {
    text-decoration: none;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 3px;
    font-size: 16px;
    font-weight: bold;
    /* width: inherit; */
    text-align: center;
    border-radius: 3px;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-ongoing {
    padding: 10px;
    text-decoration: none;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 3px;
    font-size: 16px;
    font-weight: bold;
    /* width: inherit; */
    text-align: center;
    border-radius: 3px;
    display: inline-block;
    border: 2px solid transparent;
    background-color: #006599;
    color: white;
}

.btn-ongoing:hover {
    border: 2px solid #006599;
    background-color: white;
    color: #006599;
}

.padding-top-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
}
.theme-page-heading {
  color: black;
  font-family: 'Montserrat', sans-serif;
}
.topbar.navbar-light .navbar-nav .nav-item .nav-link span {
  color: #fff !important;
}
.topbar.navbar-light .navbar-nav .nav-item .nav-link i {
  color: #fff !important;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
  background-color: #eaecf4;
  color: #ffffff;
}
/*form css*/
.padding-top-bottom form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.padding-top-bottom form .form-group > div {
  width: 100% !important;
}
.form-control {
  width: 100% !important;
}

.padding-top-bottom form .form-control:first-child {
  /*height: 40px !important;*/
}
.padding-top-bottom form .form-group {
  width: calc(33.33% - 15px);
}

.padding-top-bottom form .form-group:nth-child(8),
.padding-top-bottom form .form-group:nth-child(9) {
  width: 100%;
}
.padding-top-bottom form .form-group textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.padding-top-bottom form .form-group textarea:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.newProperty-sec form .form-group:nth-child(5) {
  width: 100%;
}
.newProperty-sec form .form-group:nth-child(6),
.newProperty-sec form .form-group:nth-child(7),
.newProperty-sec form .form-group:nth-child(8) {
  width: calc(33.33% - 15px);
}
.newProperty-sec form .form-group:nth-child(9) {
  width: 100%;
}
select {
  width: 100% !important;
}

.required_field {
  color: red;
}
.padding-top-bottom form .btn-completed {
  margin-bottom: 20px;
}
/*dvLeft*/
.sidebar-dark .sidebar-brand {
  color: #10ab8e;
  background: #fff;
}
.sidebar-dark hr.sidebar-divider {
  border-top: 1px solid #00aa90;
}
.bg-gradient-primary {
  background-color: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 10%, #ffffff 100%);
  background-size: cover;
}
/*dvRight*/
#content-wrapper .topbar {
  background: #10ab8e !important;
  color: #fff;
}
#content-wrapper .topbar .navbar-nav {
  background: #10ab8e !important;
}
/* navigation */
.sidebar-dark .nav-item .nav-link {
  color: #000;
  font-weight: 600;
}
.sidebar-dark .nav-item .nav-link i {
  color: #10ab8e;
}
.sidebar-dark .nav-item .nav-link[data-toggle='collapse']::after {
  color: #000;
}

.navbar-nav {
  background: #fff;
}
.nav-item {
  position: relative;
}
.nav li a.nav-link:hover {
  color: #fff;
  text-decoration: none;
}
.nav-item a {
  color: #000000;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1.5;
  padding: 0.7rem 1.2rem 0.7rem 0.7rem;
  z-index: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.nav-item a:before {
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  content: '';
  z-index: -1;
  position: absolute;
  background: #10ab8e;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.nav-item a:hover:before {
  right: 0;
}
.nav-item.active a.nav-link.collapsed {
  background: #eeeeee;
}
.nav-item.active > a.nav-link {
  color: #000 !important;
  background: #eff1ec !important;
}
.nav-item.mainDropdown > span,
.nav-item.subDropdown > span {
  position: absolute;
  top: 1px;
  right: 0;
  cursor: pointer;
  padding: 10px;
}
.menuExpand {
  padding: 10px;
  color: #161313;
  font-weight: bolder;
  font-size: 17px;
}
.nav-item.active span {
  color: #000 !important;
}
.nav-item.active .nav-link {
  background: 0 0;
}


.topbar .dropdown-list .dropdown-header {
  background-color: #10ab8e;
  border: 1px solid #10ab8e;
}
#content-wrapper .topbar .icon-circle {
  background-color: #10ab8e !important;
}
.tenant-sec form .form-group:nth-child(8),
.tenant-sec form .form-group:nth-child(9),
.tenant-sec form .form-group:nth-child(10),
.tenant-sec form .form-group:nth-child(11) {
  width: calc(25.33% - 15px);
}
.payment-form form .form-group:nth-child(6),
.payment-form form .form-group:nth-child(7)
 {
  width: calc(33.33% - 15px);
}
.payment-form form .form-group:nth-child(5) {
  /*width: 100%;*/
}
.payment-form form .form-group:nth-child(8) {
    width: 100%;
}

.property-unit form .form-group:nth-child(8),
.property-unit form .form-group:nth-child(9) {
  width: calc(50.33% - 15px);
}
.property-unit form .form-group:nth-child(10) {
  width: 100%;
}
.show-tenant form .form-group:nth-child(7),
.show-tenant form .form-group:nth-child(8),
.show-tenant form .form-group:nth-child(9),
.show-tenant form .form-group:nth-child(10) {
  width: calc(25.33% - 15px);
}
.show-lease-form form .form-group:nth-child(7),
.show-lease-form form .form-group:nth-child(8),
.show-lease-form form .form-group:nth-child(9),
.show-lease-form form .form-group:nth-child(10),
.show-lease-form form .form-group:nth-child(11),
.show-lease-form form .form-group:nth-child(12),
.show-lease-form form .form-group:nth-child(13),
.show-lease-form form .form-group:nth-child(14),
.show-lease-form form .form-group:nth-child(15),
.show-lease-form form .form-group:nth-child(16) {
  width: calc(50.33% - 15px);
}
.show-lease-form form hr {
  flex-basis: 100%;
}
.edit-lease-form form hr {
  flex-basis: 100%;
}

.edit-lease-form form .form-group:nth-child(8),
.edit-lease-form form .form-group:nth-child(9),
.edit-lease-form form .form-group:nth-child(10),
.edit-lease-form form .form-group:nth-child(11),
.edit-lease-form form .form-group:nth-child(12),
.edit-lease-form form .form-group:nth-child(13),
.edit-lease-form form .form-group:nth-child(14),
.edit-lease-form form .form-group:nth-child(15),
.edit-lease-form form .form-group:nth-child(16),
.edit-lease-form form .form-group:nth-child(17),
.edit-lease-form form .form-group:nth-child(18) {
  width: calc(50.33% - 15px);
}
/* table */
.table {
  font-size: 16px;
  color: #000;
  text-align: center;
  align-items: center;
  white-space: nowrap;
  overflow-y:hidden;
  height:auto;
  display:block;
}
.table-bordered thead tr th,
tfoot tr th {
  background: #10ab8e;
  color: #fff;
}
.table td,
.table th {
  vertical-align: middle;
}
table tbody .even {
  background-color: #41454712;
}
.btn-success {
  background-color: #10ab8e;
  border-color: #10ab8e;
}
.btn-success:hover {
  background-color: #0b826b;
  border-color: #0b826b;
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  background-color: #0b826b;
  border-color: #0b826b;
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgb(0 170 144 / 0%);
}
.page-item.active .page-link {
  background-color: #10ab8e;
  border-color: #10ab8e;
}
.property-table .table {
  text-align: start !important;
}



input[type=date].form-control, input[type=text].form-control, input[type=number].form-control, select.form-control, input[type=file].form-control
{
    height: 50px !important;
    border: #10ab8e 1px solid;
    color: black;
}

span.select2-selection.select2-selection--single {
    height: 50px !important;
}

/* media query */
@media only screen and (max-width: 768px) {
      h2,h2.common-heading,
      .large-heading {
        font-size: 18px !important;
      }


      .sidebar .nav-item .nav-link span {
        font-size: 14px !important;
        font-weight: 700;
      }

    form .form-group label {
    font-size: 18px;
    }

    .payment-btn {
        position: fixed;
        bottom: 8%;
        right: 5%;
        z-index: 1;
        padding: 4px !important;
        font-size: 14px;
        min-width: 100px;
    }
.large-heading {
    font-size: 20px;
}
}

@media (max-width: 991px) {
  h2,
  h2.common-heading,
  .large-heading {
    font-size: 28px;
  }
  .padding-top-bottom form .form-group {
    width: 100%;
  }
  .tenant-sec form .form-group:nth-child(8),
  .tenant-sec form .form-group:nth-child(9),
  .tenant-sec form .form-group:nth-child(10),
  .tenant-sec form .form-group:nth-child(11) {
    width: 100%;
  }
  .payment-form form .form-group:nth-child(5),
  .payment-form form .form-group:nth-child(6),
  .payment-form form .form-group:nth-child(7),
  .payment-form form .form-group:nth-child(8) {
    width: 100%;
  }
  .property-unit form .form-group:nth-child(8),
  .property-unit form .form-group:nth-child(9) {
    width: 100%;
  }
  .show-tenant form .form-group:nth-child(7),
  .show-tenant form .form-group:nth-child(8),
  .show-tenant form .form-group:nth-child(9),
  .show-tenant form .form-group:nth-child(10) {
    width: 100%;
  }
  .show-lease-form form .form-group:nth-child(7),
  .show-lease-form form .form-group:nth-child(8),
  .show-lease-form form .form-group:nth-child(9),
  .show-lease-form form .form-group:nth-child(10),
  .show-lease-form form .form-group:nth-child(11),
  .show-lease-form form .form-group:nth-child(12),
  .show-lease-form form .form-group:nth-child(13),
  .show-lease-form form .form-group:nth-child(14),
  .show-lease-form form .form-group:nth-child(15),
  .show-lease-form form .form-group:nth-child(16) {
    width: 100%;
  }
  .edit-lease-form form .form-group:nth-child(8),
  .edit-lease-form form .form-group:nth-child(9),
  .edit-lease-form form .form-group:nth-child(10),
  .edit-lease-form form .form-group:nth-child(11),
  .edit-lease-form form .form-group:nth-child(12),
  .edit-lease-form form .form-group:nth-child(13),
  .edit-lease-form form .form-group:nth-child(14),
  .edit-lease-form form .form-group:nth-child(15),
  .edit-lease-form form .form-group:nth-child(16),
  .edit-lease-form form .form-group:nth-child(17),
  .edit-lease-form form .form-group:nth-child(18) {
    width: 100%;
  }
  .payment-btn {
    position: fixed;
    bottom: 8%;
    right: 5%;
    z-index: 1;
    padding: 8px;
    font-size: 14px;
    min-width: 100px;
  }
}

/*Login Form*/

.login-page {
  padding-top: 100px;
  padding-bottom: 100px;
}

.login-box {
  contain: content;
  width: 100%;
  background-color: #f3f4f6;
  border-radius: 0 70px;
  box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%),
    0 0.9375rem 1.40625rem rgb(4 9 20 / 3%),
    0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
  position: relative;
}

.login-box:before {
  content: '';
  background: url(https://1.bp.blogspot.com/--UQ8_O1EFN8/XWkZdpW_MMI/AAAAAAAATDE/kcJXA9nMy4ElB4NmBZDM6WwPE4JQD7ACQCLcBGAs/s1600/shape.png);
  position: absolute;
  right: 0;
  background-size: 100%;
  top: -80px;
  width: 100%;
  height: 653px;
  z-index: -1;
}
.large-heading {
  font-size: 34px;
}
.wrap-login {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
  -o-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #dedede;
  margin: 30px auto;
  padding: 20px 55px;
}

div#circle {
  -webkit-animation: wait 0s alternate infinite;
  animation: wait 0s alternate infinite;
}

.circle-ripple {
  background-color: transparent;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  -webkit-animation: ripple 0.7s linear infinite;
  animation: ripple 0.7s linear infinite;
  left: 60px;
  position: absolute;
  top: 44px;
}

@-webkit-keyframes wait {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes wait {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(175, 166, 255, 0.3),
      0 0 0 1em rgba(175, 166, 255, 0.3), 0 0 0 3em rgba(175, 166, 255, 0.3),
      0 0 0 5em rgba(175, 166, 255, 0.3);
  }

  100% {
    box-shadow: 0 0 0 1em rgba(175, 166, 255, 0.3),
      0 0 0 3em rgba(175, 166, 255, 0.3), 0 0 0 5em rgba(175, 166, 255, 0.3),
      0 0 0 8em rgba(175, 166, 255, 0);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgb(60 202 176 / 30%), 0 0 0 1em rgb(60 202 176 / 30%),
      0 0 0 3em rgb(60 202 176 / 30%), 0 0 0 5em rgb(60 202 176 / 30%);
  }

  100% {
    box-shadow: 0 0 0 1em rgb(60 202 176 / 30%), 0 0 0 3em rgb(60 202 176 / 30%),
      0 0 0 5em rgb(60 202 176 / 30%), 0 0 0 8em rgb(60 202 176 / 0%);
  }
}

input.input {
  font-family: Ubuntu-Bold;
  font-size: 15px;
  color: #1b3815;
  line-height: 1.2;
  position: relative;
  display: block;
  width: 100%;
  height: 55px;
  background: #ebebeb;
  border-radius: 27px;
  padding: 0 35px;
  outline: 0;
}

.wrap-input {
  margin-bottom: 20px;
  width: 100%;
}

.login-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  background-color: #3ccab0;
  border-radius: 25px;
  font-family: Ubuntu-Bold;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.kDEcCH {
  padding: 0 !important;
  margin-bottom: 15px;
}

.sc-bcXHqe {
  border: 1px solid rgb(0 0 0 / 10%);
}

.iSAVrt {
  background: #10ab8e !important;
  color: #fff;
  font-size: 16px;
}

.sc-hHTYSt > div:nth-child(even) {
  background: rgb(0 0 0 / 5%);
}
.dwPlXY {
  font-size: 16px !important;
}

a.normal-link {
  color: #5dab0d;
  font-weight: 600;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

a.normal-link:visited {
  color: #5dab0d;
}

a.normal-link:hover {
  color: #3ccab0;
  text-decoration: underline;
}

.notify_user {
  font-weight: bold;
  color: #10ab8e;
}

.sms_send {
  font-weight: bold;
  color: #10ab8e;
}


.monthly_report form .form-group {
	width: calc(21.33% - 0px);
}

/* media query */
@media only screen and (max-width: 768px) {
	.monthly_report form .form-group {
		width: calc(98% - 0px);
	}
}

.fileuploader
{
    padding: 0;
}

.wd-5rem
{
    min-width: 5rem;
}

@media (min-width: 992px) {
    .btn-completed {
        width: 150px;
    }

    .btn-ongoing {
        width: 150px;
    }
    .btn-success {
        /* width: 150px; */
    }
    .table-preview{
        display:inline-table;
    }
}

.email-signup
{
    width: inherit !important;
}

@media (min-width: 769px) {
    #dynamicDependentTable tbody tr th, #dynamicPetTable tbody th, #dynamicVehicleTable tbody th {
        display: none!important;
    }
}
@media (max-width: 768px) {
    #dynamicDependentTable tbody th {
        display: block;
        background-color: #1cc88a;
        color: black;
    }
    #dynamicDependentTable thead {
        display: none;
    }

    #dynamicDependentTable tbody tr {
        display: block;
        margin-bottom: 10px;
    }

    #dynamicDependentTable tbody td {
        display: flex;
        flex-direction: column;
    }

    #dynamicDependentTable tbody td input {
        width: 100%;
        margin-bottom: 5px;
    }

    #dynamicPetTable tbody th {
        display: block;
        background-color: #1cc88a;
        color: black;
    }
    #dynamicPetTable thead {
        display: none;
    }

    #dynamicPetTable tbody tr {
        display: block;
        margin-bottom: 10px;
    }

    #dynamicPetTable tbody td {
        display: flex;
        flex-direction: column;
    }

    #dynamicPetTable tbody td input {
        width: 100%;
        margin-bottom: 5px;
    }

    #dynamicVehicleTable tbody th {
        display: block;
        background-color: #1cc88a;
        color: black;
    }
    #dynamicVehicleTable thead {
        display: none;
    }

    #dynamicVehicleTable tbody tr {
        display: block;
        margin-bottom: 10px;
    }

    #dynamicVehicleTable tbody td {
        display: flex;
        flex-direction: column;
    }

    #dynamicVehicleTable tbody td input {
        width: 100%;
        margin-bottom: 5px;
    }
}
