/*
 Theme Name:   uba
 Theme URI:    https://ubagroup.com/
 Description:  A child theme of the UBA's Parent Theme
 Author:       UBA x Axon
 Author URI:   https://ubagroup.com
 Template:     hello-elementor
 Version:      2.0.0
*/

table tbody tr:hover > td,
table tbody tr:hover > th,
table tbody > tr:nth-child(2n + 1) > td,
table tbody > tr:nth-child(2n + 1) > th {
  background: initial !important;
}

#search-icon span {
  color: #676767;
  font-size: 14px;
  line-height: 20px;
  font-family: "Roboto";
}

#search-container {
  position: relative;
  display: flex;
  align-items: center;
}

#search-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
}

#search-icon:hover {
  color: inherit;
  background: unset;
}

#searchform {
  display: none;
  position: absolute;
  right: 0;
  top: -3px;
  background-color: #fff;
  z-index: 1000;
  font-size: 12px;
  line-height: 16px;
  font-family: "Roboto";
  font-weight: 500;
  color: #f22010;
}

#searchsubmit:hover,
#searchsubmit:focus,
#search-icon:focus {
  background: unset;
  color: inherit;
  border: 0;
  outline: none;
}

.search-flex {
  --border-height: 1px;
  --border-before-color: rgba(221, 221, 221, 0.39);
  --border-after-color: #ddd;
  --input-hovered-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-flex input[type="text"] {
  width: 200px;
  background-color: transparent;
  box-sizing: border-box;
  padding-inline: 0.5em;
  border: none;
  border-bottom: var(--border-height) solid var(--border-before-color);
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: 14px;
  line-height: 16px;
  font-family: "Roboto";
  font-weight: 500;
}

.search-flex input:hover {
  background: var(--input-hovered-color);
}

.search-flex input:focus {
  outline: none;
}

.search-flex input:focus ~ .s-input-border {
  width: calc(100% - 24%);
}

.search-flex .s-input-border {
  position: absolute;
  background: var(--border-after-color);
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.close-search {
  position: absolute;
  right: 50%;
  color: #fff;
  margin-top: 10px;
  cursor: pointer;
}

#searchform.opening {
  display: block;
  animation: slideIn 0.3s forwards;
}

#searchform.closing {
  animation: slideOut 0.3s forwards;
}

#searchsubmit {
  padding: 0;
  border: 0;
  border-bottom: 1px solid;
  border-radius: inherit;
  font-size: 12px;
  line-height: 16px;
  font-family: "Roboto";
  font-weight: 500;
  color: #f22010;
}

@keyframes slideIn {
  from {
    transform: translateX(-10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-10px);
    opacity: 0;
  }
}



/*footer*/
.uba-footer-container {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  padding: 0 10px;
}

.footer-widget {
  margin-bottom: 10px;
}

.plus-button, .minus-button {
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  background-color: #0073aa;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  text-align: center;
}

.plus-button:hover, .minus-button:hover {
  background-color: #005177;
}
