﻿/* Grays */
/* Colors */
/* Theme  */
/* Theme Light */
/* Theme Dark */
/* Theme Medium */
/* Grays */
/* StreamScore colors */
/* Rollup colors */
/* Recipient Search Badge colors */
/* Rollup badge background colors */
/* Animation Mixins */
@keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
    transform: translate3d(0, 0px, 0);
  }
}
.dropdownAnimation {
  animation-name: dropdownAnimation;
  -webkit-animation-duration: compact(0.25s, false, false, false, false, false, false, false, false, false);
  -moz-animation-duration: compact(0.25s, false, false, false, false, false, false, false, false, false);
  -ms-animation-duration: compact(0.25s, false, false, false, false, false, false, false, false, false);
  -o-animation-duration: compact(0.25s, false, false, false, false, false, false, false, false, false);
  animation-duration: compact(0.25s, false, false, false, false, false, false, false, false, false);
  -webkit-animation-fill-mode: compact(both, false, false, false, false, false, false, false, false, false);
  -moz-animation-fill-mode: compact(both, false, false, false, false, false, false, false, false, false);
  -ms-animation-fill-mode: compact(both, false, false, false, false, false, false, false, false, false);
  -o-animation-fill-mode: compact(both, false, false, false, false, false, false, false, false, false);
  animation-fill-mode: compact(both, false, false, false, false, false, false, false, false, false);
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

.infinite-spin {
  animation-name: spin;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

a {
  color: #ED7D38;
  font-size: inherit;
  font-weight: normal;
}

.form-group label {
  margin-top: 5px;
  margin-bottom: 5px;
}

.brand-logo {
  margin-top: 1px;
  margin-bottom: 7px;
  margin-left: 10px;
  margin-right: 0;
}
.brand-logo img.logo {
  width: 170px;
  margin-right: 20px;
}

.icon-banner {
  width: 180px;
}

.body-container {
  margin-top: 60px;
  padding-bottom: 40px;
}

.logged-out-page iframe {
  display: none;
  width: 0;
  height: 0;
}

.form-check .form-check-label {
  margin-left: 0.5rem;
}

.btn-cta {
  min-width: 200px;
  color: #FFFFFF;
  background-color: #ED7D38;
  border: 1px solid #ED7D38;
  border-radius: 50px;
  padding: 0.875rem 2.5rem;
}

.footer {
  background: #FFFFFF;
  color: #94A3B8;
  padding: 20px 1rem;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  width: 100%;
  font-size: calc(0.875rem - 0.05rem);
}
.footer a {
  color: inherit;
  font-size: inherit;
  padding: 0 5px;
}
@media (max-width: 991px) {
  .footer {
    margin-left: 0;
    width: 100%;
  }
}

/* Navbar */
.dropdown-menu {
  min-width: 250px;
  min-height: 50px;
}
.dropdown-menu i {
  font-size: 17px;
}
.dropdown-menu a,
.dropdown-menu a:active,
.dropdown-menu a:visited,
.dropdown-menu a:checked {
  color: #181A3C;
  text-decoration: none !important;
}
.dropdown-menu.navbar-dropdown {
  position: absolute;
  font-size: 0.9rem;
  margin-top: 0;
  padding: 0;
}
.dropdown-menu.navbar-dropdown .dropdown-item {
  color: #181A3C !important;
  margin-bottom: 0;
  padding: 0.25rem 1.5rem;
  cursor: pointer;
}
.dropdown-menu.navbar-dropdown .dropdown-item i {
  font-size: 17px;
}
.dropdown-menu.navbar-dropdown .dropdown-item a,
.dropdown-menu.navbar-dropdown .dropdown-item a:active,
.dropdown-menu.navbar-dropdown .dropdown-item a:visited,
.dropdown-menu.navbar-dropdown .dropdown-item a:checked {
  color: #181A3C;
  text-decoration: none !important;
}

.account-info {
  display: inline;
  min-height: 60px;
}
.account-info .user-name {
  display: table-row;
  position: relative;
  top: 2px;
}

.account-info:after {
  border-top: 0;
  border-right: 0;
  border-left: 10px;
  border-bottom: 0;
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  content: "\f078";
  width: auto;
  height: auto;
  vertical-align: baseline;
  position: relative;
  left: 10px;
  top: 3px;
}

.brand-logo {
  margin-bottom: 7px;
  margin-left: 15px;
  margin-right: 0;
}
.brand-logo img.logo {
  width: 170px;
  margin-right: 20px;
}

nav.navbar.fixed-top {
  position: relative;
}

.grecaptcha-badge {
  bottom: 0 !important;
  top: 200px;
  z-index: 1;
}
