* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

body {
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 20px;
  padding-bottom: 10px;
}

.back-icon {
  font-size: 24px !important;
  color: #0074d9 !important;
  cursor: pointer !important;
  position: absolute !important;
  top: 3% !important;
  left: 1% !important;
}

.create-back-icon {
  font-size: 24px !important;
  color: #0074d9 !important;
  cursor: pointer !important;
  position: absolute !important;
  top: 3% !important;
  left: 5% !important;
}

.fixed_table {
  top: 0;
  position: fixed;
  display: none;
  background-color: white;
  border-bottom: 1px solid gainsboro !important;
  z-index: 5000;
}

.form-control {
  text-align: left !important;
}

.btnTest {
  background-color: #2196f3;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  outline: none;
}

.dropdownTest {
  padding: 5px;
}

.dropdown-contentTest {
  display: none;
  position: absolute;
  z-index: 1;
  right: 15px;
  padding: 10px;
}

.dropdown-contentTest a li {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-contentTest li {
  list-style-type: none;
}

.dropdown-contentTest input li checkbox {
  margin-right: 20px;
}

.dropdown-contentTest a:hover {
  background-color: #ddd;
}

.dropdownTest:hover .dropdown-contentTest {
  display: block;
  background-color: #fff;
  background-clip: border-box;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px !important;
  border-radius: 1rem;
}

.btnTest:hover,
.dropdownTest:hover .btnTest {
  background-color: #0b7dda;
}

#button {
  display: inline-block;
  background: #16222a;
  background: linear-gradient(to right, #3a6073, #16222a);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button::after {
  content: "\f077";
  font-family: "FontAwesome", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
  z-index: 1000;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
  z-index: 9000;
}

.topnav {
  overflow: hidden;
  background: linear-gradient(to right, #3a6073, #16222a);
  display: flex;
  justify-content: flex-end;
}

.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  background: #16222a;
  background: linear-gradient(to right, #3a6073, #16222a);
  background-color: linear-gradient(to right, #3a6073, #16222a) !important;
}

.topnav a.active {
  background-color: linear-gradient(to right, #3a6073, #16222a) !important;
  color: white;
  top: 0;
  right: 0;
  margin: 5px;
}

.topnav a:hover {
  text-decoration: none;
}

.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  margin-top: 3px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkmark {
  position: absolute;
  top: 10px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 50%;
  margin-left: 25px;
}

.checkboxContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkboxContainer input:checked ~ .checkmark {
  background-color: #2196f3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

.checkboxContainer .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

select::-ms-expand {
  display: none;
}

.select {
  position: relative;
  display: flex;
  width: 20em;
  height: 3em;
  line-height: 3;
  background: #2c3e50;
  overflow: hidden;
  border-radius: 0.25em;
  margin-left: 58px;
}

select {
  flex: 1;
  padding: 0 0.5em;
  color: #fff;
  cursor: pointer;
}

.select::after {
  content: "\25BC";
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  background: #34495e;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

.select:hover::after {
  color: #f39c12;
}

.ui-w-80 {
  width: 80px !important;
  height: auto;
}

.btn-default {
  border-color: rgba(24, 28, 33, 0.1);
  background: rgba(0, 0, 0, 0);
  color: #4e5155;
}

label.btn {
  margin-bottom: 0;
}

.btn-outline-primary {
  border-color: #26b4ff;
  background: transparent;
  color: #26b4ff;
}

.btn {
  cursor: pointer;
}

.text-light {
  color: #babbbc !important;
}

.btn-facebook {
  border-color: rgba(0, 0, 0, 0);
  background: #3b5998;
  color: #fff;
}

.btn-instagram {
  border-color: rgba(0, 0, 0, 0);
  background: #000;
  color: #fff;
}

.card {
  background-clip: padding-box;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px !important;
}

.settingsContainer {
  width: 95%;
  overflow: hidden;
  height: auto;
  margin: 10px;
}

@media (max-width: 768px) {
  .settingsContainer {
    width: 90%;
    margin: 5px;
  }
}

.settingContainerSectionFields {
  float: left;
  margin-bottom: 20px;
  width: 95%;
  height: auto;
  overflow: hidden;
  display: table-cell;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 20px;
}

.settingContainerSectionFields:hover {
  background: #076585;
  background: linear-gradient(to right, #fff, #076585);
  background: linear-gradient(to right, #fff, #076585);
}

::placeholder {
  text-align: left !important;
}

.settingContainerSectionRows {
  text-align: left !important;
  margin-top: 5px;
  margin-bottom: 10px;
  height: auto;
  overflow: hidden;
  float: left;
  width: 95%;
  display: table-row;
}

.settingContainerSectionRight {
  width: 95%;
  height: auto;
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: 10px;
}

.settingContainerSectionTitle {
  width: 200px;
  height: auto;
  overflow: hidden;
  margin: 5px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 5px 5px 5px 5px;
}

.box {
  height: auto;
  overflow: hidden;
  width: 100%;
  border: 1px solid black;
}

.boxRight {
  width: 45%;
  float: left;
  border: 1px solid black;
  margin-left: 20px;
}

.hoverfeautre {
  background-color: none;
}

.hoverfeautre:hover {
  border-bottom: 1px solid black;
}

.paddingButton {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.paddingButtonSave {
  margin-left: 55px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.settingText {
  width: 70%;
  float: left;
  text-align: left;
  font-size: 15px;
  padding: 0px 0 0 10px;
  margin-left: 50px;
  margin-top: 10px;
}

.bold-text {
  font-weight: 700;
}

.settingToggle {
  width: 150px;
  float: right;
  padding: 0 0px 0px 0;
  margin-top: 10px;
}

.settingTextbox {
  width: 150px;
  float: right;
  padding: 0 0px 0px 25px;
  margin-top: 0px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 22px;
  width: 40px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.row-bordered {
  overflow: hidden;
}

.account-settings-fileinput {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.account-settings-links .list-group-item.active {
  font-weight: bold !important;
}

html:not(.dark-style) .account-settings-links .list-group-item.active {
  background: #24c6dc !important;
  background: linear-gradient(to right, #514a9d, #24c6dc) !important;
}

.account-settings-multiselect ~ .select2-container {
  width: 100% !important;
}

.light-style .account-settings-links .list-group-item {
  padding: 0.85rem 1.5rem;
  border-color: rgba(24, 28, 33, 0.03) !important;
}

.material-style .account-settings-links .list-group-item {
  padding: 0.85rem 1.5rem;
  border-color: rgba(24, 28, 33, 0.03) !important;
}

.material-style .account-settings-links .list-group-item.active {
  color: #4e5155 !important;
}

.dark-style .account-settings-links .list-group-item {
  padding: 0.85rem 1.5rem;
  border-color: rgba(255, 255, 255, 0.03) !important;
}

.dark-style .account-settings-links .list-group-item.active {
  color: #fff !important;
}

.light-style .account-settings-links .list-group-item.active {
  color: white;
  background: #24c6dc !important;
  background: linear-gradient(to right, #514a9d, #24c6dc) !important;
}

.text {
  display: table;
  margin: 20px auto;
}

.t-dropdown-block {
  width: 170px;
  height: 28px;
  margin: 20px auto;
  position: relative;
  font-size: 15px;
}

.t-dropdown-list {
  display: none;
  background-color: #fff;
  border: 1px solid #ddd;
  z-index: 10;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  position: absolute;
  margin-top: 10px;
  width: auto !important;
}

.t-dropdown-item {
  padding: 5px 20px;
  margin: 0;
  cursor: pointer;
}

.t-dropdown-item:hover {
  background-color: #f1f1f1;
}

.t-dropdown-select {
  border: 1px solid #ddd;
  width: 80%;
  height: 37px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  box-sizing: content-box;
}

.t-dropdown-input {
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
  border: 0;
  height: 100%;
  width: 100%;
  padding: 0 3px 0 10px;
  box-sizing: border-box;
}

.t-select-btn {
  background-image: url(https://cdn4.iconfinder.com/data/icons/ui-indicatives/100/Indicatives-26-128.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 7px 7px;
  position: absolute;
  width: 30px;
  top: 0;
  right: 0;
  height: 100%;
  border-left: 1px solid #ddd;
}

.t-select-btn:active {
  background-color: #f1f1f1;
}

.date_class {
  width: 250px;
  margin-top: 5px;
}

input[type="date"]::-webkit-clear-button {
  display: none;
}

input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: #2c3e50;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  color: #95a5a6;
  font-family: "Helvetica", arial, sans-serif;
  font-size: 18px;
  border: 1px solid #ecf0f1;
  padding: 5px;
  display: inline-block;
  visibility: visible;
}

input[type="date"],
label {
  color: grey !important;
}

input[type="date"],
focus {
  color: #95a5a6;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.arrows {
  display: inline;
}

.fa-chevron-circle-down,
.fa-chevron-circle-up {
  cursor: pointer;
}

.paginate_button {
  border-radius: 0 !important;
}

#my-table_filter input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d2d6da;
  appearance: none;
  border-radius: 0.5rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.table-sortable th {
  cursor: pointer;
  vertical-align: middle !important;
}

.table-sortable .th-sort-asc::after {
  content: "\25b4";
  font-size: 20px;
  float: right;
  color: blue;
  margin: -26px;
  padding-right: 5px;
}

.table-sortable .th-sort-desc::after {
  content: "\25be";
  font-size: 20px;
  float: right;
  color: blue;
  margin: -26px;
  padding-right: 5px;
}

.table-sortable .th-sort-asc::after,
.table-sortable .th-sort-desc::after {
  margin-left: 5px;
}

.table-sortable .th-sort-asc,
.table-sortable .th-sort-desc {
  background: rgba(0, 0, 0, 0.1);
}

.numericButton {
  background-color: #ffffff;
  color: black;
  display: inline-block;
  min-width: 30px !important;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
}

.currentPageButton {
  background: linear-gradient(to right, #514a9d, #24c6dc);
  color: #fff !important;
  display: inline-block;
  min-width: 30px !important;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
}

.nextbutton {
  background-color: #ffffff;
  color: #666666 !important;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 55px;
}

#page_navigation {
  padding-top: 8px;
  margin-left: 25px;
  margin-bottom: 10px;
}

.numericButton:hover {
  color: blue;
  transition: 1s;
}

.currentPageButton:hover {
  color: blue;
  transition: 1s;
}

#button_top {
  display: inline-block;
  background: linear-gradient(to right, #514a9d, #24c6dc);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button_top::after {
  content: "\f077";
  font-family: "FontAwesome", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#button_top:hover {
  cursor: pointer;
  background-color: #333;
}

#button_top:active {
  background-color: #34b1c5;
}

#button_top.show_top {
  opacity: 1;
  visibility: visible;
}

.dataTables_length label {
  text-align: left;
  font-weight: 400;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-top: 10px !important;
  width: 250px !important;
  margin-left: 20px;
}

.dataTables_length .bs-select select {
  float: left;
  font-size: 1rem;
  font-weight: normal;
  max-width: 50%;
  padding: 8px 24px 8px 10px;
  color: black;
  background-color: white;
  border: 1px solid #495057 !important;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select {
  display: inline-block;
  width: 25%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    right 0.75rem center/8px 10px no-repeat;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid gainsboro !important;
}

.custom-select-new {
  display: inline-block;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    right 0.75rem center/8px 10px no-repeat;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid gainsboro !important;
  margin-bottom: 5px;
}

.tooltip {
  position: relative !important;
  display: inline-block !important;
  cursor: pointer;
  text-decoration: none;
}

.tooltip .tooltiptext {
  visibility: hidden !important;
  width: auto !important;
  background: linear-gradient(to right, #514a9d, #24c6dc);
  color: white !important;
  text-align: center !important;
  border-radius: 6px !important;
  padding: 5px !important;
  bottom: 120%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 1s !important;
  position: absolute !important;
  z-index: 1000 !important;
}

.tooltip:hover .tooltiptext {
  visibility: visible !important;
  opacity: 1;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.inactiveLink {
  pointer-events: none;
  cursor: default;
}

.containerBar {
  width: 100%;
  background-color: #ddd;
}

.skills {
  text-align: right;
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
}

navbar {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 100%;
  font-size: 14px;
  transform: translateX(-50%) translateY(0%);
}

navbar input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
  cursor: pointer;
}

navbar .active {
  background: #3a3a3a;
}

navbar ul {
  margin: 0;
  padding: 0;
}

navbar a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
}

navbar li {
  position: relative;
  float: left;
  width: 100%;
  list-style: none;
  color: #fff;
  transition: 0.5s;
  border-top: 1px solid #555;
}

navbar li:first-child {
  border-top: none;
}

navbar ul > li.sub > a:after {
  pointer-events: none;
  position: relative;
  float: right;
  content: "+";
  margin-top: -0.1em;
  font-size: 1.2em;
  vertical-align: middle;
  transition: 0.5s;
}

navbar li:hover {
  background: #3a3a3a;
}

navbar a {
  color: white !important;
}

navbar .submenu {
  max-height: 0;
  overflow: hidden;
  border-top: none;
  transition: max-height 0.5s ease-in-out;
}

navbar input[type="checkbox"]:checked ~ .submenu {
  max-height: 999px;
  border-top: 1px solid #555;
}

navbar input[type="checkbox"]:checked ~ a:after {
  transform: rotate(45deg);
}

navbar .submenu a {
  padding: 10px 20px;
  color: black !important;
}

navbar .submenu li {
  list-style-position: inside;
  list-style-type: square;
  background: white;
}

navbar .submenu li.sub {
  list-style: none;
}

navbar .submenu li li {
  background: #3a3a3a;
}

navBar .submenu li li li {
  background: #2a2a2a;
}

.options-container {
  position: fixed;
  display: inline-block;
  z-index: 9999;
  top: 7.4%;
  right: 0;
}

.options {
  display: none;
  position: absolute;
  top: 7.4%;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-right: 3px solid green !important;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 9999;
}

.options.show {
  display: block;
  opacity: 1;
}

.options ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.options li {
  padding: 10px;
  cursor: pointer;
}

.close {
  color: #aaa;
  float: right !important;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.button_container {
  display: flex;
}

.item {
  padding: 5px;
}

.close-button {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.close-button:hover {
  opacity: 1;
}

.close-button:before,
.close-button:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
}

.close-button:before {
  transform: rotate(45deg);
}

.close-button:after {
  transform: rotate(-45deg);
}

.modal-backdrop {
  background-color: transparent !important;
}

thead {
  height: 65px !important;
}

.file-label {
  background-color: transparent;
  color: #fff;
  border: 1px solid gainsboro;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 0px !important;
  margin-right: 10px;
}

.file-label:hover {
  background-color: #0056b3;
  color: white;
}

.file-icon {
  margin-right: 5px;
}

.import-button {
  background-color: transparent;
  border: none;
  color: green;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.3s ease, color 0.3s ease;
}

.import-button:hover {
  color: blue;
}

.table_item_one .col-md-6 {
  width: fit-content !important;
}

.table_item_one .col-sm-12 {
  width: fit-content !important;
}

.progress-container {
  position: fixed;
  width: 100%;
  background-color: transparent;
  height: 15px;
  overflow: hidden;
  bottom: 0;
  z-index: 9999;
  left: 0;
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: #4285f4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.form-select:focus {
  border: 1px solid green !important;
  box-shadow: 0 0 0 2px green !important;
}

.blocked {
  display: block !important;
  position: relative !important;
}

.ease {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.tabs {
  background: #fff;
  position: relative;
  margin-bottom: 50px;
}

.tabs > input,
.tabs > span {
  width: 20%;
  height: 60px;
  line-height: 60px;
  position: absolute;
  top: 0;
}

.tabs > input {
  cursor: pointer;
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  z-index: 99;
}

.tabs > span {
  background: #f0f0f0;
  text-align: center;
  overflow: hidden;
}

.tabs > span i,
.tabs > span {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.tabs > input:hover + span {
  background: rgba(255, 255, 255, 0.1);
}

.tabs > input:checked + span {
  background: #fff;
}

.tabs > input:checked + span,
.tabs > input:hover + span {
  color: #3498db;
}

#tab-1,
#tab-1 + span {
  left: 0;
}

#tab-2,
#tab-2 + span {
  left: 20%;
}

#tab-3,
#tab-3 + span {
  left: 40%;
}

#tab-4,
#tab-4 + span {
  left: 60%;
}

#tab-5,
#tab-5 + span {
  left: 80%;
}

.tab-content {
  padding: 80px 20px 20px;
  width: 100%;
  min-height: 340px;
}

.tab-content section {
  width: 100%;
  display: none;
}

.tab-content section h1 {
  margin-top: 15px;
  font-size: 100px;
  font-weight: 100;
  text-align: center;
}

#tab-1:checked ~ .tab-content #tab-item-1 {
  display: block;
}

#tab-2:checked ~ .tab-content #tab-item-2 {
  display: block;
}

#tab-3:checked ~ .tab-content #tab-item-3 {
  display: block;
}

#tab-4:checked ~ .tab-content #tab-item-4 {
  display: block;
}

#tab-5:checked ~ .tab-content #tab-item-5 {
  display: block;
}

.effect-1 > input:checked + span {
  background: #fff;
}

.t-select-btn {
  position: absolute;
  width: 30px;
  top: 0;
  right: 0;
  height: 100%;
  border-left: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-select-btn i {
  transition: transform 0.3s;
}

.t-dropdown-list.is-visible + .t-dropdown-select .t-select-btn i {
  transform: rotate(180deg);
}

.width30 {
  width: 35% !important;
}

#mainContainer {
  position: absolute;
  top: 80%;
  width: 600px;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: white;
  z-index: 99999;
  border-radius: 8px;
}

#searchContainer {
  height: 350px;
  border-bottom: 1px solid gainsboro;
  overflow-y: scroll;
  display: none;
}

#recentContainer {
  max-height: 220px;
  border-bottom: 1px solid gainsboro;
  display: none;
}

#recentContainer h6 {
  padding-left: 35px;
  padding-top: 20px;
  font-size: 15px;
}

#searchContainer h6 {
  padding-left: 35px;
  padding-top: 20px;
  font-size: 15px;
}

#resultsList li {
  list-style-type: none;
  line-height: 22px;
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  color: #333840 !important;
}

#recentSearchesList li {
  list-style-type: none;
  line-height: 22px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
  font-size: 15px;
  color: #333840;
}

#recentSearchesList li:hover {
  background-color: ghostwhite;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-right: 3px solid #4285f4;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

#resultsList li:hover {
  background-color: ghostwhite;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-right: 3px solid #4285f4;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.blocked {
  display: block !important;
  position: relative !important;
}

.columnContainer {
  padding: 1px;
  width: 150px;
}

.columnContainer:hover i {
  color: #4285f4;
}

.columnContainer:hover span {
  color: #4285f4;
}

.columnOptions {
  margin-left: 10px;
  font-size: 15px;
  color: black;
  margin-bottom: 5px;
  font-weight: 500;
  cursor: pointer;
}

.columnModal {
  position: fixed;
  right: -300px;
  width: 200px;
  z-index: 9999;
  overflow: hidden;
  background-color: transparent !important;
  animation: fadeInFromRight 0.5s ease forwards;
  transition: right 0.5s ease;
  left: unset;
  width: 400px;
  top: 0;
  bottom: 0;
}

.columnModal .modal-dialog {
  height: 100%;
}

.columnModal .modal-content {
  height: 95%;
}

.columnModal .modal-header {
  border-bottom: none !important;
}

@keyframes fadeInFromRight {
  0% {
    right: -600px;
  }

  100% {
    right: 0;
  }
}

.modal_style {
  position: fixed;
  width: 200px;
  z-index: 99999;
  overflow: hidden;
  background-color: transparent !important;
  animation: fadeInFromLeft 0.5s ease forwards;
  transition: right 0.5s ease;
  width: 400px;
  top: 0;
  bottom: 0;
}

.modal-content {
  padding: 20px;
  margin: 0px !important;
  width: auto !important;
  box-shadow: none !important;
}

@keyframes fadeInFromLeft {
  0% {
    left: -600px;
  }

  100% {
    left: 0;
  }
}

.modal_style .modal-dialog {
  height: 100%;
}

.modal_style .modal-content {
  height: 95%;
}

.additionalColumns {
  padding: 5px;
  margin-bottom: 10px;
}

.additionalColumns h6 {
  margin: 10px;
}

.column-visible {
  display: table-cell;
}

.column-hidden {
  display: none;
}

.label-enabled {
  color: green;
}

.label-disabled {
  color: red;
}

#searchQuery {
  width: 175px !important;
}

#resetButton {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-top: auto;
  margin-left: 10px;
  margin-bottom: 5px;
}

.block-display {
  display: block;
}

.display-none {
  display: none;
}

.mainDocumentTables thead th h6 {
  font-size: 12px !important;
}

.table thead th h6 {
  font-size: 12px !important;
}

/* CSS */
.button-15 {
  background-image: linear-gradient(cornflowerblue, #0070c9);
  border: 1px solid #0077cc;
  border-radius: 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  direction: ltr;
  display: block;
  font-family: "SF Pro Text", "SF Pro Icons", "AOS Icons", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.47059;
  min-width: 30px;
  overflow: visible;
  padding: 4px 15px;
  text-align: center;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.button-15:disabled {
  cursor: default;
  opacity: 0.3;
}

.button-15:hover {
  background-image: linear-gradient(#51a9ee, #147bcd);
  border-color: #1482d0;
  text-decoration: none;
}

.button-15:active {
  background-image: linear-gradient(#3d94d9, #0067b9);
  border-color: #006dbc;
  outline: none;
}

.button-15:focus {
  box-shadow: rgba(131, 192, 253, 0.5) 0 0 0 3px;
  outline: none;
}

#successModal {
  height: fit-content !important;
  width: fit-content !important;
  top: 20% !important;
}

.table td {
  font-size: 13px !important;
}

.button-container .form-group {
  min-width: 100px !important;
}

.dropdown .dropdown-content {
  font-size: 14px !important;
}

/* Loading Icon */

.loading-icon {
  display: none;
  /* Initially hide the loading icon */
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000 !important;
}

.text-container {
  display: flex;
  backdrop-filter: none;
  /* Disable blur effect for the text container */
}

.text {
  margin: 0;
  white-space: nowrap;
  position: relative;
  z-index: 100000;
}

.spin {
  animation: spin 2s linear infinite;
}

.spin-reverse {
  animation: spin-reverse 2s linear infinite;
}

.pause {
  animation: pause 2s 1 forwards;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes pause {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.docuNationText {
  color: black;
  vertical-align: unset;
}

.docuNationTextGreen {
  font-size: 35px;
  color: green;
  vertical-align: unset;
}

.amount-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.amountInline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
