How can I adjust the opacity in Bootstrap 4? I have tried targeting the background elements like tooltip-inner and tooltip, but adding opacity:1 did not produce the desired effect:
.tooltip .tooltip-inner {
background-color: #014379;
}
.tooltip .arrow:before {
border-top-color: #014379;
}
What steps should I take to change the opacity successfully? Thank you!