/* ###### Utils ####### */
strong {
  font-family: Roboto;
  font-weight: 500;
}
.error-message {
  color: #ff0000;
}
.warning-message {
  color: #AF3D45;
}
.info-message {
  color: #16C3E3;
}
.centered {
  text-align: center;
}
.absolute {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
a {
  color: #16C3E3;
}
a:hover {
  color: #40d1ec;
}
a:hover,
a:visited,
a:focus {
  text-decoration: none;
}
h3 {
  margin: 0px;
  color: #464646;
  font-size: 18px;
  margin-bottom: 8px;
}
.highlight {
  color: #16C3E3;
}
.top-left {
  top: 0;
  left: 0;
}
.top-right {
  top: 0;
  right: 0;
}
.bottom-left {
  bottom: 0;
  left: 0;
}
.bottom-right {
  bottom: 0;
  right: 0;
}
.content {
  position: relative;
  height: 100%;
}
.loading-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 250;
  background-color: rgba(255, 255, 255, 0.7);
}
.icon-btn {
  width: 22px;
  height: 22px;
  font-size: 22px;
  cursor: pointer;
  color: #000;
  transition: color 0.5s;
}
.icon-btn.active {
  color: #16C3E3;
}
.social-profile-picture {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  overflow: hidden;
  background: no-repeat center center;
  background-size: cover;
}
.legend-style-text {
  position: relative;
  text-align: center;
}
.legend-style-text span {
  background-color: #fff;
  padding: 0 10px;
}
.legend-style-text:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: 0px;
  right: 0px;
  top: 50%;
  margin-top: -1px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.w-dropdown {
  position: relative;
}
.w-dropdown .dropdown-menu {
  padding: 0;
}
.w-dropdown .arrow {
  font-size: 8px;
}
.w-dropdown .btn-link {
  text-decoration: none;
}
.borderless {
  border: none!important;
}
/* ###### Loading spinner ###### */
.spinner-fixed {
  position: fixed;
  height: 60px;
  width: 60px;
  display: block;
  animation: rotation .6s infinite linear;
  border-left: 6px solid rgba(22, 195, 227, 0.15);
  border-right: 6px solid rgba(22, 195, 227, 0.15);
  border-bottom: 6px solid rgba(22, 195, 227, 0.15);
  border-top: 6px solid rgba(22, 195, 227, 0.8);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -30px;
  z-index: 1000;
}
.spinner-center {
  height: 60px;
  width: 60px;
  display: block;
  animation: rotation .6s infinite linear;
  border-left: 6px solid rgba(22, 195, 227, 0.15);
  border-right: 6px solid rgba(22, 195, 227, 0.15);
  border-bottom: 6px solid rgba(22, 195, 227, 0.15);
  border-top: 6px solid rgba(22, 195, 227, 0.8);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -30px;
  z-index: 1000;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* ###### END Loading spinner ###### */
/* ###### Utils ####### */
