body {
  font-family: "museo-sans";
  font-weight: 300;
  font-size: 17px;
  line-height: 1.3;
  color: #000000;
  background-color: #F9F9F9;
  overflow-x: hidden;
}
body.nav-active {
  overflow: hidden;
}
body.nav-active header .nav-btn {
  background-color: #ECEDED;
  gap: 0;
}
body.nav-active header .nav-btn span {
  position: absolute;
}
body.nav-active header .nav-btn span:nth-child(1) {
  display: none;
}
body.nav-active header .nav-btn span:nth-child(2) {
  transform: rotate(-45deg);
}
body.nav-active header .nav-btn span:nth-child(3) {
  transform: rotate(45deg);
}
body.nav-active header .nav-menu {
  right: 0;
}
body.nav-active main {
  position: relative;
}
body.nav-active main:after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--Grey-Scale-Light-Grey, #ECEDED);
  z-index: 3;
  margin-bottom: 64px;
  position: relative;
  color: #001489;
}
header .header-logo {
  width: 229px;
}
header a {
  font-size: 16px;
  color: #001489;
  text-decoration: none;
}
header .row {
  align-items: center;
}
header .header-contact {
  padding-right: 45px;
}
header nav {
  display: inline-block;
  vertical-align: middle;
}
header nav .nav-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}
header nav .nav-btn span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 10px;
  background-color: #001489;
  transform-origin: center;
  transition: 0.3s ease;
}
header nav .nav-btn span:first-child {
  background-color: #000;
}
header nav .nav-menu {
  position: absolute;
  width: 312px;
  top: calc(100% + 1px);
  right: -312px;
  height: calc(100vh - 100%);
  background-color: #ffffff;
  transition: right 0.3s ease;
}
header nav .nav-menu .nav-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  height: 100%;
}
header nav .nav-menu .nav-row .nav-col .nav-item {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
header nav .nav-menu .nav-row .nav-col .nav-item:hover {
  background-color: #ECEDED;
}
header nav .nav-menu .nav-row .nav-col .nav-item.active {
  background-color: #001489;
  color: #ffffff;
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item] .nav-item-icon {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=home] .nav-item-icon {
  background-image: url("../img/nav/home.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=home].active .nav-item-icon {
  background-image: url("../img/nav/home_active.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=media] .nav-item-icon {
  background-image: url("../img/nav/media_overall.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=media].active .nav-item-icon {
  background-image: url("../img/nav/media_overall_active.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=competitor_watch] .nav-item-icon {
  background-image: url("../img/nav/competitor_watch.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=competitor_watch].active .nav-item-icon {
  background-image: url("../img/nav/competitor_watch_active.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=evaluation] .nav-item-icon {
  background-image: url("../img/nav/evaluation.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=evaluation].active .nav-item-icon {
  background-image: url("../img/nav/evaluation_active.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=activities] .nav-item-icon {
  background-image: url("../img/nav/activities.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=activities].active .nav-item-icon {
  background-image: url("../img/nav/activities_active.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=target_media_list] .nav-item-icon {
  background-image: url("../img/nav/target_media_list.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=target_media_list].active .nav-item-icon {
  background-image: url("../img/nav/target_media_list_active.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=presentation_slides] .nav-item-icon {
  background-image: url("../img/nav/presentation_slide.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=presentation_slides].active .nav-item-icon {
  background-image: url("../img/nav/presentation_slide_active.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=logout] .nav-item-icon {
  background-image: url("../img/nav/logout.svg");
}
header nav .nav-menu .nav-row .nav-col .nav-item[data-nav-item][data-nav-item=logout].active .nav-item-icon {
  background-image: url("../img/nav/logout_active.svg");
}
@media (max-width: 991px) {
  header .header-logo {
    width: 150px;
  }
  header .ucb-text-logo {
    font-size: 12px;
  }
}

main {
  position: relative;
}
main #back-button {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: -43px;
  left: 12px;
  text-decoration: none;
}
main #back-button span {
  color: #001489;
  font-size: 16px;
  font-weight: 300;
}
main .header-card {
  border-radius: 12px;
  margin-bottom: 56px;
}
main .header-card > .card-body {
  border-radius: 12px;
  display: flex;
  height: 76px;
  background: linear-gradient(270deg, #0019AC 0%, #001489 100%);
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
}
main .header-card > .card-body h1 {
  color: #ffffff;
  font-family: "museo-sans";
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 0;
}
main .filter-form {
  display: flex;
  gap: 20px;
}
main .filter-form .js-daterangepicker,
main .filter-form .checkbox-dropdown-toggle {
  background-color: #ffffff;
  border: 1px solid #ECEDED;
  border-radius: 4px;
  padding: 12px 36px 12px 12px;
  width: 210px;
  text-align: left;
  height: 50px;
  display: flex;
  align-items: center;
}
main .filter-form .js-daterangepicker > span,
main .filter-form .checkbox-dropdown-toggle > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
main .filter-form .daterangepicker-wrapper {
  position: relative;
}
main .filter-form .daterangepicker-wrapper:after {
  content: " ";
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M5.33337 1.3335V4.00016" stroke="%23001489" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.6666 1.3335V4.00016" stroke="%23001489" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.6667 2.6665H3.33333C2.59695 2.6665 2 3.26346 2 3.99984V13.3332C2 14.0696 2.59695 14.6665 3.33333 14.6665H12.6667C13.403 14.6665 14 14.0696 14 13.3332V3.99984C14 3.26346 13.403 2.6665 12.6667 2.6665Z" stroke="%23001489" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 6.6665H14" stroke="%23001489" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
}
main .filter-form .js-daterangepicker {
  width: 250px;
}
main .filter-form .checkbox-dropdown {
  position: relative;
}
main .filter-form .checkbox-dropdown > .checkbox-dropdown-toggle {
  appearance: none;
  position: relative;
}
main .filter-form .checkbox-dropdown > .checkbox-dropdown-toggle:after {
  content: " ";
  display: block;
  position: absolute;
  right: 12px;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M0.75 0.75L4.75 4.75L8.75 0.75" stroke="%23001489" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: 16px 8px;
  background-repeat: no-repeat;
  background-position: center center;
}
main .filter-form .checkbox-dropdown > .checkbox-dropdown-toggle:not(:has(+ [hidden])):after {
  transform: rotate(180deg);
}
main .filter-form .checkbox-dropdown > .checkbox-dropdown-toggle[disabled]:after {
  opacity: 0.5;
}
main .filter-form .checkbox-dropdown > .checkbox-dropdown-menu {
  margin-top: 2px;
  position: absolute;
  z-index: 2;
  height: 164px;
  background-color: #ffffff;
  overflow-y: scroll;
  border-radius: 4px;
  border: 1px solid #ECEDED;
}
main .filter-form .checkbox-dropdown > .checkbox-dropdown-menu > .checkbox-dropdown-menu-item > label {
  padding: 12px 36px 12px 12px;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 0;
  border: 0;
  color: #001489 !important;
}
main .filter-form .checkbox-dropdown > .checkbox-dropdown-menu > .checkbox-dropdown-menu-item > label:hover {
  background-color: #ECEDED !important;
  color: #001489 !important;
}
main .filter-form .checkbox-dropdown > .checkbox-dropdown-menu > .checkbox-dropdown-menu-item input:checked + .btn {
  background-color: #001489 !important;
  color: #ECEDED !important;
}
main .home-stats .card {
  border-radius: 12px;
  border: 1px solid #ECEDED;
}
main .home-stats .card .card-body {
  padding: 24px;
}
main .home-stats .card .card-body .home-stats-item h3 {
  color: #001489;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
main .home-stats .card .card-body .home-stats-item .home-stats-item-headline {
  color: #4B4F54;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 16px;
}
main .home-stats .card .card-body .home-stats-item .home-stats-item-data h2 {
  color: #4B4F54;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
}
main .home-stats .card .card-body a.btn.btn-primary {
  border: 0;
  background: linear-gradient(270deg, #0019AC 0%, #001489 100%);
  border-radius: 29px;
  height: 38px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}
main .table.competitor-watch-table th,
main .table.competitor-watch-table td {
  min-width: 145px;
}
main .table.media-table {
  border-radius: 4px;
  overflow: hidden;
}
main .table.media-table th {
  white-space: nowrap;
  background-color: #ECEDED;
  font-size: 16px;
  font-weight: 600;
  color: #001489;
}
main .table.media-table th,
main .table.media-table td {
  padding: 10px;
  border-color: #ECEDED;
}
main .table.media-table td {
  color: #4B4F54;
}
main .table.media-table td a {
  color: #4B4F54;
  text-decoration: none;
}
main .card {
  border-color: #ECEDED;
}
main .card .card-header {
  background-color: #ffffff;
  border-bottom: 0;
  padding: 20px 20px 14px;
  color: #001489;
  font-size: 16px;
  font-weight: 600;
}
main .card .card-body {
  padding: 20px;
}

.lightpick {
  z-index: 1 !important;
}

/*# sourceMappingURL=style.css.map */
