:root {
  --bs-info: #347696;
  --bs-info-rgb: 52, 118, 150;
  --bs-warning: #f8b333;
  --bs-light: #fff;
  --bs-primary: #a20957;
  --bs-primary-rgb: 162, 9, 87;
}

body {
  font-family: "Lato", sans-serif;
}

.overflow-hide {
  overflow: hidden;
}

.header {
  background-color: #191919;
  position: sticky;
  top: 0;
  z-index: 3;
}
.header .inside {
  display: flex;
  max-width: 100% !important;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
  padding-left: 80px;
  padding-right: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .inside {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header .inside .logos {
  width: 290px;
}
.header .inside .logos svg {
  height: 80px;
}
.header .inside .menu-toggle {
  margin-left: auto;
  background-color: var(--bs-warning);
  padding: 5px 20px;
  height: 80px;
  display: none;
  width: 80px;
  cursor: pointer;
}
.header .inside .menu-toggle .line {
  margin-top: 10px;
  height: 2px;
  background: #252525;
  display: block;
}
@media (max-width: 1024px) {
  .header .inside .menu-toggle {
    display: block;
  }
}
.header .inside .menu {
  height: 80px;
  width: 100%;
  justify-content: right;
  display: flex;
  align-items: center;
}
.header .inside .menu .menu-hide {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 15px 22px;
}
.header .inside .menu ul {
  margin: 0;
  padding: 0;
}
.header .inside .menu ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 15px;
  margin-right: 15px;
}
.header .inside .menu ul li a {
  color: var(--bs-light);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.header .inside .menu ul li:hover a {
  color: var(--bs-warning);
}
.header .inside .menu .dropdown .dropdown-menu {
  border-radius: 0;
}
.header .inside .menu .dropdown .dropdown-menu li {
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  display: block;
}
.header .inside .menu .dropdown .dropdown-menu li a.dropdown-item {
  color: var(--bs-warning) !important;
}
.header .inside .menu .dropdown .dropdown-menu li a.dropdown-item:hover {
  background-color: #e9ecef !important;
}
@media (max-width: 1024px) {
  .header .inside .menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: var(--bs-warning);
    justify-content: center;
    overflow: auto;
    z-index: -9;
    transition: opacity 0.5s;
  }
  .header .inside .menu.show {
    visibility: visible;
    opacity: 1;
    z-index: 999999;
  }
  .header .inside .menu ul {
    text-align: center;
  }
  .header .inside .menu ul > li {
    display: block;
  }
  .header .inside .menu ul > li a {
    font-size: 1.5rem;
    color: #252525;
  }
  .header .inside .menu ul > li a:hover {
    color: var(--bs-light);
  }
}

.input-autocomplete-ctn {
  position: sticky;
  position: sticky;
  top: 101px;
  z-index: 2;
  background-color: #fff;
}

.autoComplete_wrapper {
  width: 100%;
}
.autoComplete_wrapper > input {
  width: 100%;
  border: 2px solid var(--bs-info) !important;
  border-top: 0 !important;
  color: var(--bs-info) !important;
  background-image: url("../../images/search.svg");
  background-size: 45px;
  border-radius: 0;
  font-size: 35px;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 80px;
}
.autoComplete_wrapper > input::placeholder {
  color: var(--bs-info) !important;
}
.autoComplete_wrapper > input::selection {
  background-color: #B4D5FE !important;
}
.autoComplete_wrapper > input:focus::placeholder {
  font-size: 30px;
}
@media (max-width: 768px) {
  .autoComplete_wrapper > input {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 25px;
    background-size: 30px;
  }
  .autoComplete_wrapper > input:focus::placeholder {
    font-size: 20px;
  }
}

#contentAutoComplete ul {
  padding: 0;
}
#contentAutoComplete .no_result {
  padding-top: 15px;
  text-align: center;
}
#contentAutoComplete .row-result-autocomplete {
  padding-top: 15px;
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid;
}
#contentAutoComplete .row-result-autocomplete mark {
  padding: 0 !important;
}
#contentAutoComplete .row-result-autocomplete button {
  margin-left: auto;
}
@media (max-width: 768px) {
  #contentAutoComplete .row-result-autocomplete {
    display: block;
  }
  #contentAutoComplete .row-result-autocomplete button {
    margin-top: 5px;
    display: block;
    width: 100%;
  }
}

.type_infos {
  background-color: var(--bs-warning);
  padding: 5px 10px;
  font-weight: 900;
  color: white;
}

.type_value {
  padding: 5px 10px;
}

.bg-primary,
.bg-info {
  color: var(--bs-light);
}

.border-primary {
  border-color: var(--bs-primary) !important;
}

.form-security {
  position: relative;
}
.form-security::before {
  content: "";
  position: absolute;
  margin-top: -25px;
  left: 25px;
  top: -40px;
  width: 55px;
  height: 140px;
  background-image: url(../../images/deco.svg);
}

.btn {
  border-radius: 10rem;
  transition: border-radius 0.5s;
  text-transform: uppercase;
  box-shadow: none !important;
}
.btn:hover {
  border-radius: 0 !important;
}
.btn.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn.btn-warning {
  background-color: var(--bs-warning);
  border-color: var(--bs-warning);
}

.modal-content {
  border-radius: 0;
}
.modal-content .modal-header {
  border-radius: 0;
}

.modal-dialog {
  margin-bottom: 150px;
}

.table-custom {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.26);
  border-radius: 8px;
}
.table-custom table {
  margin: 0;
}
.table-custom thead th {
  background-color: #f9fafb !important;
  color: #6b7280 !important;
  border: 1px solid #e5e7eb !important;
  border-top: 0 !important;
  padding: 14px 24px;
  vertical-align: initial;
}
.table-custom thead th:first-child {
  border-right: none !important;
}
.table-custom thead th:last-child {
  border-right: none !important;
}
.table-custom tbody {
  border: 0 !important;
}
.table-custom tbody td {
  border: 1px solid #e5e7eb;
  padding: 12px 24px;
  vertical-align: initial;
}
.table-custom tbody td:first-child {
  border-right: none;
}
.table-custom tbody td:last-child {
  border-right: none;
}
.table-custom tbody tr:last-child td {
  border-bottom: none;
}

/*# sourceMappingURL=default.css.map */
