html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}
body::-webkit-scrollbar{
  width: 7px;
  background: #2C2D35;
}
body::-webkit-scrollbar-thumb{
  width: 7px;
  background: #FFFFFF;
}
a.buttons-collection {
  margin-left: 1em;
}
.container.bg-white {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#content {
  flex-grow: 1;
}
.bgd-worldwide{
  background: linear-gradient(180deg, rgba(14,128,150,1) 0%, rgb(14, 128, 170, 1) 10%, rgba(255,255,255,1) 100%);
}
.bg-worldwide {
  background-color: rgb(14, 128, 150);
}
.text-worldwide {
  color: rgb(14, 128, 150);
}
.b-worldwide {
  border-color: rgb(14, 128, 150) !important;
}
.b-medium {
  border-width: medium !important;
}
.btn-worldwide{
  background-color: rgb(14, 128, 150);
}
.btn-worldwide:hover{
  border-color: rgb(14, 128, 150);
  color: rgb(14, 128, 150) !important;
}
.btn-worldwide:disabled{
  background-color: rgb(14, 128, 150);
}
#contenedor_carga{
  background-color: rgba(250, 240, 245, 0.9);
  height: 100%;
  width: 100%;
  position: fixed;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 100;
}
#carga{
  border: 15px solid #ccc;
  border-top-color: #F4266A;
  border-top-style: groove;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  margin: 10px;
  margin-left: 45%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation: girar 1.5s linear infinite;
  -o-animation: girar 1.5s linear infinite;
  animation: girar 1.5s linear infinite;
}
@keyframes girar{
  from { transform: rotate(0deg);}
  to { transform: rotate(360deg);}
}
.tooltip-primary {
  --bs-tooltip-bg: var(--bs-primary);
  --bs-tooltip-color: var(--bs-white);
}
.tooltip-info {
  --bs-tooltip-bg: var(--bs-info);
  --bs-tooltip-color: var(--bs-black);
}
.tooltip-warning {
  --bs-tooltip-bg: var(--bs-warning);
  --bs-tooltip-color: var(--bs-black);
}
.tooltip-success {
  --bs-tooltip-bg: var(--bs-success);
  --bs-tooltip-color: var(--bs-white);
}
.tooltip-danger {
  --bs-tooltip-bg: var(--bs-danger);
  --bs-tooltip-color: var(--bs-white);
}
.custom-tooltip {
  --bs-tooltip-bg: var(--bs-info) !important;
  --bs-tooltip-color: var(--bs-white);
}