/*


#176acf
#3084e8
#2279a2
#2279a2
#2279a2


*/

button, 
.btn {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #FFFFFF;
    background-color: #1252a1;
    border: 0;
    border-radius: 3px;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: initial;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.3s;
    user-select: none;
}

button:hover,
button:active,
button:focus,
.btn:hover,
.btn:active,
.btn:focus {
  outline: 0;
  color: #FFFFFF;
  text-decoration: none;
  background-color: #0f468a;
}

.btnNormal {
    box-sizing: border-box;
    display: inline-block;
    background-color: transparent;
    border: 0;
    color: #444;
    border-radius: 3px;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.3s;
    user-select: none;
}

.btnNormal:hover,
.btnNormal:active,
.btnNormal:focus {
    color: #444;
    background-color: #EFEFEF;
    text-decoration: none;
}

.btnNormalSmall {
  box-sizing: border-box;
  display: inline-block;
  background-color: transparent;
  border: 0;
  color: #444;
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.3s;
  user-select: none;
}

.btnNormalSmall:hover,
.btnNormalSmall:active,
.btnNormalSmall:focus {
  color: #444;
  background-color: #EFEFEF;
  text-decoration: none;
}

/*
.btnOutline {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 12px;
  background-color: #1252a1;
  border: 0;
  color: #FFF;
  border-radius: 3px;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.3s;
  user-select: none;
}

.btnOutlineIcon {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.btnOutline:hover,
.btnOutline:active,
.btnOutline:focus {
  background-color: #18396f;
  text-decoration: none;
}
*/


.btnOutlineSmall {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 8px;
  background-color: transparent;
  border: 0;
  color: #444;
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 13px;
  
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.3s;
  user-select: none;
  border: 1px solid #d7d7d7;
}

.btnOutlineSmallIcon {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.btnOutlineSmall:hover,
.btnOutlineSmall:active,
.btnOutlineSmall:focus {
  color: #444;
  background-color: #EFEFEF;
  text-decoration: none;
}

.btnLight {
  box-sizing: border-box;
  display: inline-block;
  background-color: #d7d7d7;
  border: 1px solid #d7d7d7;
  color: #444444;
  border-radius: 5px;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 0px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.2s;
  transition: border-color 0.2s;
}

.btnLight:hover,
.btnLight:active,
.btnLight:focus {
  color: #111111;
  background-color: #FFFFFF;
  text-decoration: none;
}

.btnLightIcon {
  display: inline-block;
  margin: 0 3px 0 0;
}

.btnLightTitle {
  display: inline-block;
}

.btnSmallOutline {
  box-sizing: border-box;
  font-size: 18px;
  border: 1px solid #d7d7d7;
  width: 33px;
  height: 33px;
  border-radius: 3px;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

.btnSmallOutline:hover {
  background-color: #EFEFEF;
}

.btnCenterContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 10px;
}

.btnRightContainer {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 10px;
  width: 100%;
  margin: 0;
}

.btnSmall {
  box-sizing: border-box;
  font-size: 18px;
  width: 33px;
  height: 33px;
  border-radius: 3px;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

.btnSmall:hover {
  background-color: #EFEFEF;
}

.filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  box-sizing: border-box;
  gap: 10px;
  margin: 0;
  overflow: hidden;
  background-color: #FFF;
  z-index: 100;
  user-select: none;
  padding: 8.5px;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
}

.filtersBtn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  gap: 5px;
  padding: 5px 10px 5px 10px;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  border: 1px solid #d7d7d7;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.filtersBtn:hover {
  background-color: #EFEFEF;
}

.filtersBtnActive {
    background-color: #d7d7d7 !important;
}

.filtersBtnIcon {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
}

.filtersBtnText {
  font-size: 13px;
}

.filtersHr {
  margin: 0;
  height: 35px;
  width: 1px;
  border: 0;
  background-color: #e9e9e9;
}

.filtersHrHorizontal {
  margin: 0;
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #e9e9e9;
}

.filterSearch {
  height: 36px;
}

.filterSelect {
  height: 36px;
  max-width: 200px;
}

.filterSelect:focus {
  outline: none;
  border: 1px solid #d7d7d7;
}

.filterLabel {
  font-size: 12px;
  color: #999;
}


.topBarFilters {
  width: 100%;
}

.btnOutline {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: flex-start;
  gap: 10px;
  font-weight: bold;
  height: 38px;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid #d7d7d7;
  padding: 10px 16px 10px 16px;
  user-select: none;
}

.btnOutlineTitle {
  font-size: 13px;
}

.btnOutlineIcon {
  font-size: 16px;
}

.btnOutline:hover {
  background-color: #EFEFEF;
}

.btnOutlineNormal {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: flex-start;
  gap: 10px;
  font-weight: bold;
  height: 38px;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid #d7d7d7;
  padding: 10px 16px 10px 16px;
  user-select: none;
  color: #888888;
}

.btnOutlineNormal:hover {
  background-color: #EFEFEF;
}