.autocomplete {
  position: relative;
  border-radius: 5px;
}
.autocomplete .v-select .dropdown-toggle {
  height: 43px;
  padding: 0;
}
.autocomplete .v-select .vs__selected-options {
  overflow: hidden;
}
.autocomplete .v-select .vs__selected-options input,
.autocomplete .v-select .vs__selected-options input:focus {
  font-size: 14px;
  padding-left: 20px;
  font-style: normal;
  font-weight: normal;
  margin: 0;
}
.autocomplete .v-select .vs__actions {
  padding: 0;
}
.autocomplete .v-select .vs__actions .clear {
  display: none;
}
.autocomplete .v-select .open-indicator {
  width: 100%;
}
.autocomplete .v-select .open-indicator:before {
  border-width: 1px 1px 0 0;
  height: 5.5px;
  width: 5.5px;
  top: -4px;
  position: relative;
}
.autocomplete .v-select .selected-tag {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  padding-left: 20px;
  line-height: 37px;
  white-space: nowrap;
  overflow: hidden;
  padding-top: 2px;
}
.autocomplete .v-select.loading .open-indicator {
  display: none;
}

.fmmp-select {
  display: inline-block;
  position: relative;
}
.fmmp-select select {
  padding-right: 17px;
}
.fmmp-select select::-ms-expand {
  display: none;
}
.fmmp-select select::-ms-value {
  background: none;
  color: inherit;
}
.fmmp-select .select-box {
  background-color: #ffffff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  pointer-events: none;
  position: absolute;
  top: 1px;
  right: 1px;
  height: 40px;
  width: 17px;
}
.fmmp-select .select-box-arrow {
  height: 18px;
  left: auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 12px;
  width: 15px;
  color: #545454;
}
.fmmp-select select[disabled] ~ .select-box {
  background-color: #e7e7e7;
}

.driv-tabs__header {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0;
  list-style: none;
}
.driv-tabs__header li {
  padding: 5px 20px;
  cursor: pointer;
}
.driv-tabs__header li:before {
  display: none;
}
.driv-tabs__container .driv-section {
  display: none;
}
.driv-tabs__container .driv-tab {
  display: block;
}
@media (max-width: 767px) {
  .driv-tabs__container .driv-section {
    display: block;
    margin-top: 15px;
  }
  .driv-tabs__container .driv-tab {
    display: none;
  }
  .driv-tabs__container .driv-tabs__header {
    display: none;
  }
}

.driv-dropdown-button {
  position: relative;
}
.driv-dropdown-button .driv-dropdown-button-options {
  display: none;
  position: absolute;
  width: auto;
  background-color: white;
  text-decoration: none;
  margin: 0;
  border: 1px solid gray;
  z-index: 100000;
}
.driv-dropdown-button:hover .driv-dropdown-button-options {
  display: block;
}
.driv-dropdown-button .driv-dropdown-button-option:before {
  display: none;
}
.driv-dropdown-button .driv-dropdown-button-option a {
  white-space: nowrap;
}

.driv-checkbox {
  margin-left: 10px;
  cursor: pointer;
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.driv-checkbox .checkbox-label {
  min-height: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
}
.driv-checkbox .checkbox-label input[type=checkbox] {
  margin: 0 20px 0 0;
  height: auto !important;
  width: auto !important;
}
.driv-checkbox .checkbox-label.disabled {
  text-decoration: line-through;
  opacity: 0.5;
}

.driv-section__title {
  cursor: pointer;
  width: 100%;
  height: 50px;
  padding-left: 15px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.driv-section__title:after {
  font-family: "FontAwesome";
  content: "\f067";
  height: 100%;
  width: 50px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.driv-section__content {
  display: none;
}
.driv-section.show-content .driv-section__content {
  display: block;
  padding: 15px;
}
.driv-section.show-content .driv-section__title:after {
  content: "\f068";
}

