@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

n p,
a,
li,
span {
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.2px;
}

select,
input {
    font-family: "Poppins", sans-serif;
}

/*.body-container {
    min-height: 100vh;
    display: flex;
    position: relative;
}*/

:root {
    --header-height: 112px;
    --nav-width: 90px;
    --first-color: #27386d;
    /* --first-color-light: #384ca238; */
    --first-color-light: #EAF4FF;
    --sec-color: #F8F9FF;
    --light-color: #f8f9ff;
    --white-color: #ffffff;
    --black-color: #000000;
    --adskate-light-blue: #318AE2;
    --adskate-transparent-blue: #EAF4FF;
    --z-fixed: 100;
}

*,
::before,
::after {
    box-sizing: border-box;
}

:focus {
    box-shadow: none !important;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif !important;
    transition: 0.5s;
    /* background-color: #f8f9ff; */
    background: linear-gradient(
        100deg,          /* Slight diagonal effect */
        white 5%,        /* Start white earlier */
        var(--adskate-transparent-blue) 50%,  /* Expand the blue wider */
        white 95%        /* End white later */
    );
    height: 100vh; /* Full page height */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/***header-css****/

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: white;
    z-index: var(--z-fixed);
    transition: 0.5s;
    padding-left: 50px;
    padding-right: 50px;
    border-bottom: 2px solid #f4f5f8;
    z-index: 9999;
}

header .nav-link,
.card-list .profile-ad,
.navbar-vertical label,
.dropdown-item {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    color: var(--black-color);
}

.dropdown-item1 {
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1;
    color: var(--black-color);
    padding: 10px;
    border-radius: 5px;
}

.dropdown-item {
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0px;
}

.dropdown-menu {
    color: var(--white-color);
    border-color: lightgray !important;
    background-color: white;
}

.nav-item.active a {
    color: var(--white-color);
    background-color: var(--adskate-light-blue);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--black-color);
    background-color: var(--first-color-light);
}

.show > .dropdown-toggle {
    background-color: var(--first-color-light);
    color: black;
}

.navbar-nav {
    margin: 0 auto !important;
}

.collapse.navbar-collapse {
    justify-content: center;
}

.btn-group {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.navbar {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-nav li {
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
}

.navbar-nav li a {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    border-radius: 8px;
}

.sm-view {
    display: none !important;
}

a.nav-link.active {
    position: relative;
}

a.nav-link:hover:after,
.nav-item.active a.nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: -50px;
    right: 0;
    background: var(--first-color);
    border-radius: 50px;
    margin: 0 auto;
    border-radius: 300px;
}

.card-list {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-right: 20px;
}

.card-list .avatar img {
    width: 48.22px;
    height: 48.22px;
    overflow: hidden;
}

.card-list .name-title {
    font-family: Open Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.71;
    margin-bottom: 0;
    color: var(--black-color);
    text-transform: capitalize;
}

.card-list .profile-ad {
    color: #bfbfbf;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.66;
}

li.nav-item.dropdown {
    list-style: none;
}

.nav-link {
    padding: 0 !important;
}

.nav-link.dropdown-toggle {
    position: relative;
}

.nav-link.dropdown-toggle:after {
    display: none;
}

.nav-link.dropdown-toggle:before {
    content: "";
    background-image: url("../img/caret.svg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    height: 6px;
    width: 12px;
    position: absolute;
    right: 1px;
    top: 42%;
    margin-right: 5px;
}

.active > .nav-link.dropdown-toggle:before {
    color: white;
}

.navbar-vertical {
    position: fixed;
    display: inline-block;
    z-index: 1020;
    top: 112px;
    padding: 0;
    width: 355px;
    background-color: var(--white-color);
    height: calc(100vh - 112px);
    border-right: 1px solid #f4f5f8;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.03);
}

.aside-list-item {
    padding: 0;
    background-color: var(--white-color);
}

.accordion:nth-of-type(1) .card-header {
    border-top: none;
}

.card {
    border: none;
}

.card-header {
    background-color: transparent;
    padding: 20px 16px;
    border-top: 1px solid #f4f5f8 !important;
    border-bottom: 1px solid #f4f5f8;
}

.aside-list-item img {
    margin-right: 15px;
}

.aside-list-item {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.33;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    position: relative;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
}

.aside-list-item:hover {
    color: black;
}

.aside-list-item:after,
.card_inner .accordion:after {
    content: "";
    background-image: url("../img/arrow.svg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    height: 8px;
    width: 13px;
    position: absolute;
    right: 0;
    top: 32%;
    transform-origin: center;
}

.aside-list-item:after,
.card_inner .accordion.active:after {
    transform: rotate(180deg);
}

.aside-list-item.collapsed:after,
.card_inner .accordion:after {
    transform: rotate(0deg);
}

ul {
    list-style: none;
    list-style-type: none;
    padding-left: 0rem;
}

.chk-item {
    position: relative;
}

span.checkbox__inner {
    background-color: var(--white-color);
    border: 1px solid var(--first-color);
    border-radius: 3px;
    box-sizing: border-box;
    display: inline-block;
    height: 18px;
    position: relative;
    transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
        background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
    width: 18px;
    z-index: 2;
    position: relative;
    min-height: 18px;
    min-width: 18px;
}


.dma_name_panel input[type="search"] {
    border: 1px solid #BFBFBF;
    font-size: 12px;
    height: 40px;
    padding: 10px 10px;
    width: 100%;
    border-radius: 2px;
    margin-bottom: 20px;

}

span.checkbox__inner.disabled {
    background-color: #F2F4F7;
    border: 1px solid #EAECF0;
}

.checklist-item input[type="checkbox"] {
    position: absolute;
    left: 0px;
    height: 100%;
    opacity: 0;
    z-index: 9;
    line-height: 0;
}

.chk-item input[type="checkbox"]:checked~span.checkbox__inner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/blue-check.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.chk-item input[type="checkbox"]:checked~span.checkbox__inner {
    border-color: var(--first-color);
}

.chk-item {
    display: flex;
    align-items: normal;
    column-gap: 10px;

}

.navbar-vertical label {
    font-weight: 400;
    text-transform: capitalize;
}

/* Two columns: ul.checklist-item {
    display: flex;
    column-gap: 50px;
    row-gap: 15px;
    flex-wrap: wrap;
}

ul.checklist-item li {
    width: calc(50% - 30px);
} */

ul.checklist-item {
    display: block; /* or flex-direction: column if you want to keep flex */
    padding: 0;
    margin: 0;
}

ul.checklist-item li {
    width: 100%;
    margin-bottom: 12px; /* space between items */
    margin-top: 12px;
}

.navbar-vertical .card-body {
    padding: 20px 16px;
}

.checklist-item {
    padding-left: 0;
    margin-bottom: 0;
}

.navbar-vertical .navbar-vertical-footer {
    position: fixed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 0;
    -webkit-transition: width 0.2s ease;
    -o-transition: width 0.2s ease;
    transition: width 0.2s ease;
    background-color: var(--white-color);
    z-index: 1000;
    width: 354px;
}

.card_inner .accordion+.panel {
    padding: 0;
}

.panel {
    background-color: var(--white-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-wrap-creative-id {
    overflow-wrap: break-word;
    /* white-space: normal;  */
    overflow:visible;
    text-overflow: clip; 
}

.perf-metric-text {
    font-size: medium;
    font-weight: bold;
    color: var(--first-color);
}

.card_inner .accordion.active+.panel {
    padding: 20px 0;
}

.card_inner {
    padding-left: 3px;
    padding-right: 3px;
}

.card_inner .accordion {
    border-radius: 3px;
    border: 1px solid var(--sec-color);
    background-color: var(--sec-color);
    padding: 20px 10px;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    color: #27386D !important;
}

.card_inner .accordion:focus-visible {
    border-color: transparent;
}

.radio_inner .form-check label,
.card_inner .accordion,
.dwn-btn,
.btn.primary-btn,
.tab-item-btn a,
.panel p,
.data-btn,
thead th,
tbody td {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.33;
}

.h4-text {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.33;
}

.value-mt-list li p,
.value-mt-list li span {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.33;
}

.card_inner .accordion:after {
    right: 10px;
    top: 45%;
}

.form-check-input {
    border-color: #f4f5f8;
}

.form-check-input:checked {
    background-color: #f9f5ff;
    border-color: var(--first-color);
}

.form-check-input[type="radio"] {
    height: 16px;
    width: 16px;
    margin-top: 0;
    border: 1px solid #27386d;
}

.form-check-input:checked[type="radio"] {
    background-image: url(../img/radio-check.svg);
    background-origin: content-box;
    background-size: 8px;
    background-color: var(--sec-color);
}

.radio_inner,
.radio_inner .form-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio_inner .form-check {
    min-width: 50%;
    justify-content: flex-start;
    column-gap: 9px;
    margin-bottom: 0;
}

.radio_inner {
    justify-content: center;
    column-gap: 10px;
}

.navbar-vertical-content {
    overflow: auto;
    height: calc(100vh - 4rem);
}

.dwn-btn {
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #9ea5bd;
    display: flex;
    align-items: center;
}

.dwn-btn:hover {
    color: var(--first-color);
}

.dwn-btn img {
    margin-right: 12px;
}

.btm-btn-area,
.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-group {
    column-gap: 25px;
    padding: 20px 50px 20px;
    border-top: 1px solid #f4f5f8;
}

.btm-btn-area {
    padding: 12px 16px;
    border-top: 1px solid #f4f5f8;
}

.btn.primary-btn {
    padding: 9px 18px;
    background-color: var(--adskate-light-blue);
    border-color: var(--adskate-light-blue);
    border-radius: 300px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

.btn.primary-btn:hover {
    background-color: transparent;

    border-color: var(--first-color);

    color: var(--first-color);
}

.navbar-vertical-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.cs-dma_name::-webkit-scrollbar,
.cs-city_name::-webkit-scrollbar {
    width: 2px;
    height: 10px;
}

.navbar-vertical-content::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
.cs-dma_name::-webkit-scrollbar-track,
.cs-city_name::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: var(--first-color);
    border-radius: 120px;
}

.modal-body::-webkit-scrollbar-thumb {
    background-color: #fdfcff;
}


.main-right-content {
    /*margin-left: 353px;*/
    padding: 30px 50px 0px 403px;
    height: calc(100% - 112px);
    margin-top: 112px;
}

.main-right-content-ov {
    /*margin-left: 353px;*/
    padding: 30px 50px 0px 30px;
    height: calc(100% - 112px);
    margin-top: 112px;
}

.main-right-content-ov1 {
    /*margin-left: 353px;*/
    padding: 30px 50px 0px 30px;
    height: calc(100% - 112px);
}

.dt-tab-inner,
.data-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/*.dt-tab-inner {
    justify-content: center;
}*/

/*.dt-tab-inner .btn-wrapper {
    margin-left: auto;
}*/

.tb-left,
.tb-right {
    width: 50%;
}

/*.dt-tab-inner .tb-right {
  width: 100%;
  justify-content: center;
}*/


.tb-right,
.tab-item-btn,
.tb-img-blk {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.tab-item-btn {
    column-gap: 28px;
    margin-bottom: 0;
    border-bottom: 1px solid #f4f5f8;
    padding-left: 0;
}

.tb-title {
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.38;
    text-transform: uppercase;
    color: black;
    margin-bottom: 0;
    padding-left: 3px;
}

.tb-title1 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.38;
    text-transform: uppercase;
    color: black;
    margin-bottom: 0;
    padding-left: 3px;
}

.tb-title-sm {
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.38;
    text-transform: uppercase;
    color: var(--first-color);
    margin-bottom: 0;
}

.tb-btn {
    background-color: var(--first-color);
    border-color: #f4f5f8;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 100px;
    cursor: pointer;
}

.tb-btn:hover,
.data-btn:hover {
    background-color: var(--white-color);
    border-color: var(--first-color);
    color: var(--first-color);
}

.tab-item-btn .tab-button {
    color: #bfbfbf;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid transparent;
}

.tab-item-btn .tab-button>img {
    margin-right: 5px;
    width: 14px;
    height: 14px;
    filter: invert(75%) sepia(0%) saturate(3%) hue-rotate(12deg) brightness(100%) contrast(98%);
}

.tab-item-btn .tab-button:hover,
.tab-button.active {
    color: var(--first-color);
    border-color: var(--first-color);
}

.tab-item-btn .tab-button:hover img,
.tab-button.active img {
    filter: inherit;
}

.img-outer {
    height: 66px;
    width: 66px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f6f6f6;
}

.tb-img-blk {
    column-gap: 8px;
    padding-left: 30px;
    border-left: 1px solid #f4f5f8;
}

.img-title {
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.33;
    color: var(--black-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

.table-data {
    margin: 30px 0 0;
    padding: 0;
}

.data-table-item {
    background-color: var(--white-color);
    border: 1px solid #f4f5f8;
    padding: 42px 30px 30px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.data-table-item2 {
    background-color: #fafbfd;
    border: 1px solid #f4f5f8;
    padding: 42px 30px 30px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    margin-bottom: 30px;
}

.data-table-header h4 {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    text-transform: uppercase;
    color: var(--black-color);
    margin-bottom: 0;
}

.data-table-header1 h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    font-weight: 400;
    line-height: 1.45;
    color: var(--black-color);
    margin-bottom: 0;
    padding-block: 1rem;
}

/*.data-table-item:nth-last-of-type(1) {
    margin-bottom: 0;
}*/

.data-table-header {
    margin-bottom: 20px;
}

.data-btn {
    padding: 12px 25px;
    background-color: var(--first-color);
    text-transform: uppercase;
    border: 1px solid var(--first-color);
    border-radius: 300px;
    color: #fff;
}

thead {
    background-color: var(--adskate-light-blue);
    border-radius: 5px;
    margin-bottom: 10px;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    /* margin-bottom: 0 !important; */
}

thead th {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
}

th img {
    cursor: pointer;
}

.swtich-icon {
    width: 15px;
    height: 15px;
    margin: 5px;

}

thead th,
tbody td {
    padding: 20px 36px 20px 16px !important;
}

.daterangepicker thead th, 
.daterangepicker tbody td {
    padding: 0 !important;
}

.drp-fixed {
    position: fixed;
}

thead th:nth-of-type(1) {
    border-top-left-radius: 5px;
}

thead th:nth-last-of-type(1) {
    border-top-right-radius: 5px;
}

tbody tr:nth-of-type(odd) {
    background-color: #eaf4ff;
}

tbody tr:nth-of-type(even) {
    background-color: #f8fbff;
}

.table> :not(caption)>*>* {
    border-bottom-width: 0;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

tr:nth-last-of-type(1) td:last-child {
    /* border-right-style: solid; */
    border-bottom-right-radius: 10px;
}

tr:nth-last-of-type(1) td:first-child {
    /* border-right-style: solid; */
    border-bottom-left-radius: 10px;
}

.interactive-table tbody td {
    transition: background-color 0.2s ease;
}

.interactive-table tbody tr:hover td {
    background-color: #d9ecff; /* Or whatever highlight color you prefer */
}

.interactive-table tbody tr:hover td:first-child {
    position: relative;
    font-weight: 600;
    color: #000;
}

.interactive-table .hover-arrow {
    display: none;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-left: 6px;
}

.interactive-table tbody tr:hover .hover-arrow {
    display: inline-block;
}

.metric-actions-table {
    max-width: 800px;
    margin-bottom: 10px;
    margin: 0 auto; /* Center the table itself */
    text-align: left; /* Keep text inside table cells left-aligned */
    width: auto; /* Adjust width as needed */
    background-color: white; /* Set table background to white */
    border-collapse: separate; /* Allows spacing between rows */
    border-spacing: 0 5px; /* Add space between rows */
}

.metric-actions-table th,
.metric-actions-table td {
    padding: 12px; /* Add some padding for a cleaner look */
}

.metric-actions-table tbody tr {
    background-color: #f9f9f9; /* Light gray background for rows */
    border-radius: 8px; /* Rounded corners for each row */
    overflow: hidden; /* Prevent overflow of rounded corners */
}

.performers-table {
    background-color: white;
    border-collapse: separate;
    border-spacing: 0 5px;
}

.performers-table th,
.performers-table td {
    padding: 20px 36px 20px 16px !important;
}

.performers-table tbody tr {
    background-color: #f9f9f9; /* Light gray background for rows */
}

.graph-area img {
    width: 100%;
}

.modal .modal-header {
    margin: 50px 72px 0;
    border-bottom: 1px solid #f4f5f8;
    padding: 0;
    padding-bottom: 30px;
}

.modal-body {
    margin: 0 72px;
    padding: 30px 0 50px;
}

.modal-title {
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--first-color);
    text-align: center;
    width: 100%;
    word-wrap: break-word;  
}

button.btn-close {
    width: 43px;
    height: 43px;
    position: absolute;
    right: -12px;
    top: -12px;
    background-color: var(--adskate-light-blue);
    color: #fff !important;
    z-index: 2;
    border-radius: 50%;
    opacity: 1 !important;
    padding: 0 !important;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.btn-close img {
    width: 15px;
}

.modal-list {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
}

.ct_area_rt img {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    /*min-height: 150px;
    aspect-ratio: 1/1;*/
   
}

.dt-obj-title {
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.38;
    text-transform: uppercase;
    color: #000;
}

.dt-obj-title1 {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    color: var(--black-color);
}

.ct_area_lt p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.71;
    color: var(--black-color);
    margin-bottom: 0;
}

.modal-list .modal-list-block {
    display: flex;
    justify-content: space-between;
    column-gap: 83px;
    padding-right: 2px
}

.modal-content {
    border-radius: 10px;
    box-shadow: none;
    max-height: 590px;
}

.modal-body {
    overflow: auto;
}

.ct_area_lt {
    padding-top: 25px;
}

.value-mt-list {
    margin-left: 23px;
    padding-left: 0;
}

.value-mt-list li {
    display: flex;
    /* align-items: center; */
    /*justify-content: space-between;*/
    position: relative;
}

.value-mt-list li:before {
    content: "";
    background-color: var(--first-color);
    height: 7px;
    width: 7px;
    position: absolute;
    left: -23px;
    top: 10px;
    border-radius: 50%;
    z-index: 2;
}

.value-mt-list {
    position: relative;
    margin-top: 0;
}

/* .value-mt-list:after {
    content: "";
    background-color: var(--sec-color);
    height: calc(100% - -10px);
    width: 1px;
    position: absolute;
    left: -20px;
    top: -10px;
    border-radius: 0;
} */

.value-mt-list li p {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.value-mt-list li p,
.value-mt-list li span {
    color: var(--first-color);
}

.adskate-text {
    color: var(--first-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.33;
    display: inline-flex;
    justify-content: center;
    padding: 5px;
    align-items: center;
}

.compliance-text {
    color: black;
    font-size: 14px;
    font-style: normal;
    line-height: 1.33;
    display: inline-flex;
    justify-content: center;
    padding: 5px;
    align-items: center;
}

.value-mt-list li:nth-last-of-type(1) {
    margin-bottom: 0;
}

/*.value-mt-list li span {
    border-bottom: 1px solid var(--first-color);
}*/

.value-mt-list li {
    /* border-bottom: 1px solid var(--sec-color); */
    margin-top: 20px;
    margin-bottom: 20px;
}

.ct_area_lt {
    width: 40%;
}

.ct_area_rt {
    width: 60%;
    text-align: right
}

.modal-list-block {
    margin-bottom: 50px;
}

.modal-list-block:nth-last-of-type(1) {
    margin-bottom: 0;
}

html,
body {
    overflow-x: hidden;
}

.card-header:first-child {
    border-top: none !important;
}

.dropdown-item {
    background-color: white !important;
    color: black !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--black-color) !important;
    background-color: var(--first-color-light) !important;
    border-radius: 0px;
}

.dropdown-item1:focus,
.dropdown-item1:hover {
    color: var(--black-color) !important;
    background-color: var(--first-color-light);
}

.tab-content {
    display: none;
    /* Hide all content by default */
}

.tab-content.active {
    display: block;
    /* Show active content */
}


#myChart {
    width: 100%;
    /*max-height: 420px !important;*/
}

button#sidebar-toggle {
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

button#sidebar-toggle img {
    width: 20px;
}

.modal {
    z-index: 999999;
    background: #000000a8;
}

select#performance {
    border: none;
    padding: 5px;
    font-size: 12px;
    line-height: 1.3;
    color: var(--first-color);
    display: block;
    margin-left: auto;
    border-radius: 2px;
    background-color: transparent;
    outline: 1px solid var(--first-color);
    width: 250px;
}

/* Custom Dropdown Button */
/* .adskate-dropdown {
    background-color: white;
    color: var(--first-color);
}

.adskate-dropdown:hover,
.adskate-dropdown:focus {
    background-color: var(--first-color-light);
    color: var(--first-color);
}

.adskate-dropdown::after {
    border-top-color: var(--first-color);
} */

.adskate-dropdown {
    background-color: white;
    color: var(--first-color);
    border: none; /* Remove border */
    padding: 10px 20px; /* Add padding */
    font-size: 16px; /* Set font size */
    cursor: pointer; /* Set cursor to pointer */
    text-align: center; /* Center align text */
}

/* Hover and Focus Styles */
.adskate-dropdown:hover,
.adskate-dropdown:focus {
    background-color: transparent; /* Change background color on hover/focus */
    color: var(--first-color-light); /* Change text color on hover/focus */
}

/* Active (Clicked) State */
.adskate-dropdown:active {
    background-color: transparent; /* Change background color when clicked */
    color: white; /* Change text color when clicked */
}

/* Custom Arrow Color */
.adskate-dropdown::after {
    border-top: 0.3em solid var(--first-color); /* Change the arrow color */
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    content: "";
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
}

.show > .adskate-dropdown {
    background-color: transparent !important; 
    color: var(--first-color) !important; 
    border-color: transparent !important; 
}

/* Remove Default Bootstrap Arrow */
/* .adskate-dropdown.dropdown-toggle::after {
    display: none;
} */

select#performance:focus-visible {
    outline: 1px solid var(--first-color);
    background-color: transparent;
}

select#performance1 {
    border: none;
    width: 200px;
    padding-inline: 7px;
    font-size: 12px;
    line-height: 1.3;
    color: var(--first-color);
    border-radius: 2px;
    background-color: transparent;
    outline: 1px solid var(--first-color);
    margin-inline: 1rem;
    height: 2.5rem;
}

select.date-range-dropdown {
    border: none;
    padding: 7px;
    font-size: 12px;
    line-height: 1.3;
    color: var(--first-color);
    border-radius: 2px;
    background-color: transparent;
    outline: 1px solid var(--first-color);
}

li.date-range {
    padding-right: 1rem;
}


.modal-btn {
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}


.campaign-metric.checklist-item {
    flex-direction: column;
}


.campaign-metric.checklist-item li {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.rd-item {
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
    margin-left: 15px;
}


span.st-icon {
    line-height: 0;
    font-size: 0;
}

.campaign-metric.checklist-item li input[type="radio"] {
    position: absolute;
    right: 0px;
    height: 100%;
    opacity: 0;
    z-index: 9;
    line-height: 0;
}


span.st-icon img {
    width: 12px;
    height: 12px;
    filter: grayscale(100%);
    opacity: .2;
}


.rd-item input[type="checkbox"]:checked+span.st-icon img {
    filter: grayscale(0);
    opacity: 1;
}


/*.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}*/

.rd-item .tooltiptext {
    visibility: hidden;
    min-width: 70px;
    background-color: #2a386f;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 0px;
    position: absolute;
    z-index: 1;
    top: -15px;
    right: 18px;
    font-size: 10px
}

.rd-item .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #2a386f;
}

.rd-item:hover .tooltiptext {
    visibility: visible;
}


.slct-all {
    padding: 9px 18px;
    background-color: transparent;
    border: 1px solid #E7EAFF;
    border-radius: 300px;
    max-height: 35px;
}

.slct-all input[type="checkbox"] {
    position: absolute;
    left: 0px;
    height: 100%;
    opacity: 0;
    z-index: 9;
    line-height: 0;
    width: 100%;
}

.slct-all label {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    color: #E7EAFF;
    text-transform: uppercase;
    line-height: 1.33;
}

.btm-btn-area.chck-unck-btn {
    padding: 20px 0 0;
    border: none;
    justify-content: flex-start;
    column-gap: 12px;
}


.btn.primary-btn.selct-btn {
    color: var(--sec-color);
}

.slct-all:hover,
.slct-all:hover label {
    border-color: var(--first-color);
    color: var(--first-color);
}


.slct-all input[type="checkbox"]:checked+span+label {
    color: var(--first-color);
}


.navbar .card:nth-last-of-type(1) .checklist-item.campaign-metric li {
    justify-content: space-between;
}

.apply_btn_cls .primary-btn {
    padding: 10px 24px;
    background-color: var(--adskate-light-blue);
    color: #fff;
    font-weight:600;
    border-color: var(--adskate-light-blue);
}


.tb-img-blk {
    margin-left: auto;
}

/* .data-table-item.pr-metrics {
    padding-top: 28px;
    padding-bottom: 20px;
} */

.pr-itm-row,
.tpi-item-row {
    margin-left: 0;
    padding-left: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

}

.pr-itm-row1:after {
    content: "";
    display: table;
    clear: both;
}

.pr-itm-box {
    background-color: var(--first-color);
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    position: relative;
}

.takeaway-itm-box {
    padding: 20px;
    border-radius: 18px;
    position: relative;
    color: black;
    font-weight:500;
}

.action_takeaway_box {
    background-color: var(--adskate-transparent-blue);
}

.spend_takeaway_box {
    background-color: #E9FBEB;
}

.benchmark_takeaway_box {
    background-color: #FBECDE;
}

.pr-itm-box1 {
    transition: background-color 0.3s ease; 
}

.pr-itm-box1.dependent {
    background-color: var(--adskate-light-blue);
    color: white;
}

.pr-itm-box1.dependent:hover {
    background-color: var(--first-color); 
    cursor: pointer; 
}

.pr-itm-box1.active {
    background-color: var(--first-color); 
    color: white;
}

.pr-itm-box1-text {
    color: var(--first-color);
}

.pr-itm-box1-text.active {
    color: white;
}

.pr-itm-box1 {
    background-color: var(--adskate-transparent-blue);
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 18px;
    text-align: center;
    position: relative;

    display: flex;
    flex-direction: column;
}

.pr-itm-box-metric {
    background-color: var(--first-color);
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth color transition */
}

.pr-itm-box-metric:hover {
    background-color: var(--second-color); /* Change to desired hover color */
}

.pr-itm-box-toplow {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Content container animation */
.content-box-metric {
    background-color: var(--second-color);
    border-radius: 10px;
    align-items: center;
    text-align: left;
    display: block; 
    overflow: hidden; /* For smooth animation */
    height: 0; 
    transition: height 0.5s ease; 
    justify-content: center;
}

#content-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    margin-bottom: 20px; 
    padding: 20px 0; 
}

.pr-itm-box img {
    margin-right: 5px;
}

.pr-itm-column1 {
    float: left;
    padding: 10px;
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.pr-itm-column2 {
    float: left;
    padding: 20px;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.pr-itm-column3 {
    float: left;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.pr-heading {
    color: var(--sec-color);
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
}

.pr-heading1 {
    color: var(--first-color);
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
}


.pr-sm-value {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.333;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 0;
}

.pr-sm-value1 {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.333;
    color: var(--first-color);
    text-transform: capitalize;
    margin-top: 8px;
    vertical-align: middle;
    margin-bottom: 0px;

}

.pr-text-dependent {
    color: white;
}

.pr-sm-value2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.333;
    color: white;
    margin-top: 5px;
    margin-bottom: 0px;
}

.pr-bottom-text {
    margin-top: auto; /* Push the bottom text to the bottom of the box */
}

.active > .pr-bottom-text > .pr-sm-value2 {
    color: white
}

.dependent-hr {
    width: 50%; 
    margin: 10px auto; 
    border: 1px solid white;
}

.active > .pr-bottom-text > .dependent-hr {
    border: 1px solid white;
}

.pr-sm-value3 {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.333;
    color: var(--black-color);
    text-transform: capitalize;
    margin-top: 12px;
    vertical-align: middle;
}

a.click-btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 1;
}


.mb-10 {
    margin-bottom: 10px;
}


h4.d-flex {
    display: flex;
    align-items: center;
    column-gap: 7px;
}


.chart-img {
    border-radius: 10px;
    padding: 10px;
    color: white;
    text-decoration: underline;
}

.info-img {
    margin-top: -6px;
}


.data-table-header .radio_inner .form-check label {
    line-height: 1.66;
}


.tb-left,
.tb-rite {
    display: flex;
    column-gap: 20px;
}

.tb-left .radio_inner {
    column-gap: 16px;
}


.tpi-item-row li {
    width: calc(20% - 10px);
}

.pr-itm-row li {
    width: calc(25% - 8px);
}


.tpi-img {
    width: 100%;
    height: 282px;
    border-radius: 2px;
    
}


.bg-blue {
    background-color: #556BAF;
}

.bg-blue h3 {
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.29;
}


.graph-area {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.chart-btn {
    margin-left: 10px;
    color: white;
    text-decoration: underline;
    font-weight: normal;
}


.more-less-btn {
    margin-left: auto;
    margin-top: 22px;
    width: fit-content;
    display: block;
}

.show-less {
    background-color: var(--sec-color);
    border-color: var(--sec-color);
    color: #000;
}

.modal-body.txt-body {
    padding: 62px 74px;
    margin: 0;
}

.ct_area_lt.w-100 {
    width: 100% !important;
    padding-top: 0;
}

.modal-content {
    margin-left: auto;
    margin-right: auto;
}


.switch {
    position: relative;
    display: block;
    /*width: 50px;
    height: 30px;*/
    overflow: hidden;
    height: 18px;
    margin-left: 0;
    line-height: 1;
}


.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    box-shadow: none !important;
    outline: none !important;
}

.slider.round {
    border-radius: 50px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 1px;
    right: 1px;
    bottom: 1.5px;
    background-color: var(--first-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    border-radius: 100px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: .5px;
    background: var(--sec-color);
    border-radius: 100px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 18px;
    width: 33px;
}


.toggle {
    width: 33px;
}


input:checked+.slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}


.toggle-switch-menu {
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #F4F5F8;
    border-radius: 300px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 20px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.03);
}

.toggle-switch-menu span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
}

.switch1 {
    position: relative;
    display: block;
    /*width: 50px;
    height: 30px;*/
    overflow: hidden;
    height: 34px;
    margin-left: 0;
    line-height: 1;
}

.switch1 input {
    opacity: 0;
    width: 0;
    height: 0;
    box-shadow: none !important;
    outline: none !important;
}

.slider1.round {
    border-radius: 50px;
}

.slider1:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 1px;
    right: 1px;
    bottom: 1.5px;
    background-color: var(--first-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    border-radius: 100px;
}

.slider1 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: .5px;
    background: var(--sec-color);
    border-radius: 100px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 34px;
    width: 60px;
}

.toggle1 {
    width: 60px;
}

input:checked+.slider1:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.toggle-switch-menu1 {
    padding: 15px 20px;
    background-color: #e7eaff;
    border: 1px solid #e7eaff;
    border-radius: 300px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 20px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.03);
}

.toggle-switch-menu1 span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
}

.parent-div {
    text-align: center;
  }

  .child-div {
    display: inline-block;
    margin-top: 30px;
  }

.cht-btm-info {
    text-align: center;
    margin-top: 28px;
}

.cht-btm-info .cht-info-title {
    font-size: 20px;
    line-height: 1.2;
    color: var(--first-color);
    text-transform: uppercase;
    margin-bottom: 35px;
}

ul.modal-ft-list {
    padding-left: 0;
    margin-top: 0;
    /*border-top: 1px solid #F5F5F5;*/
    padding-top: 25px;
    /*border-bottom: 1px solid #F5F5F5;*/
}

.ct_area_lt .pt-list-title {
    font-size: 14px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 1.71;
    color: #000;
    margin-bottom: 0px;
    text-transform: capitalize;

}

.ct_area_lt li {
    margin-bottom: 15px;
}


p.selcted-item {
    display: flex;
    column-gap: 30px;
}

p.selcted-item {
    font-weight: 500;
}


.value-mt-list li p {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.333;
    min-width: 258px;
}

.adskate-bold-text {
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.333;
    min-width: 258px;
    margin-bottom: 0rem;
}


.data-creative-block {
    display: block;
    column-gap: 60px;
    /*align-items: center;*/
}

.data-creative-block .ct_area_lt {
    width: 75%;
    padding-top: 0;
}

.data-creative-block .ct_area_rt {
    width: 25%;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    align-items: center;
    flex-direction: column;
}

/*.data-creative-block .ct_area_rt:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    height: 180px;
    width: 100%;
}*/

a.img-zoom-btn {
    text-align: center;
    font-family: Open Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    color: var(--first-color);
    z-index: 8;
    position: relative;
    border-bottom: 1px solid #f4f5f8;
    width: fit-content;
    /*bottom: 32px;*/
    /* margin-top:15px; */
    left: auto;
    right: auto;
    display: block;

    padding-left: 5px;
    padding-right: 5px;
}

a.img-zoom-btn:hover {
    border-bottom: 1px solid var(--first-color);
}


.navbar-vertical .checklist-item.crt-attr li {
    justify-content: flex-start !important;

}


.crt-attr .chk-item {
    min-width: 112px;
}


.crt-list {
    position: relative;
}

.crt-list .toggle {
    position: absolute;
    right: 10px;
    top: 32%;
}

.navbar .toggle label {
    font-size: 16px !important;
    width: 33px;
}

.navbar .toggle .slider:before {
    background-color: #fff;
}

.navbar .toggle .slider {
    background-color: #27386d29;
}

.navbar .toggle input:checked+.slider {
    background-color: var(--first-color);
}

.errorModal-Message {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
}

.errorModal .modal-content {
    min-height: 200px;
    display: flex;
    justify-content: center;
}

span.st-icon img.errorModal .modal-header {
    padding-top: 0;
    margin-top: 0;
}

.accordion.btn {
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
}

.accordion.btn:after,
.crt-list.accordion:after {
    display: none;
}

.rd-item input[type="radio"]:checked~span.st-icon img {
    filter: grayscale(0);
    opacity: 1;
}

.data-link,
.data-link:hover {
    color: #000;
    cursor: pointer;
}

.modal-list.imglist-block {
    display: flex;
    column-gap: 100px;
    row-gap: 50px;
    flex-wrap: wrap;
}

.modal-list.imglist-block li {
    width: calc(50% - 50px);
    column-gap: 0;
    padding: 0;
    margin: 0;
}

.modal-list.imglist-block li img {
    width: 100%;
}

.imglist-popup .modal-content {
    max-width: 95% !important;
}

.imglist-popup1 .modal-content {
    max-width: 75% !important;
}


.data-btn.info-btn img {
    margin-right: 10px;
}

.data-btn.info-btn {
    padding: 5px 8px;
    background-color: var(--sec-color);
    color: #000;
    border-color: var(--sec-color);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
}

.data-btn.info-btn:hover {
    border-color: var(--first-color);
}

.chat-btn {
    margin-left: auto;
}


.imglist-popup .modal-content {
    padding-bottom: 50px !important;
}

.imglist-popup1 .modal-content {
    padding-bottom: 50px !important;
}

.imglist-popup .modal-content .modal-body {
    padding-bottom: 0;
}

.imglist-popup1 .modal-content .modal-body {
    padding-bottom: 0;
}

.tb-left .radio_inner {
    margin-left: auto;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


.profile-icon-img {
    max-width: 41px;
    max-height: 30px;
}

.tpi-img {
    object-fit: contain;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-position: center;
}


.cs-dma_name li,
.cs-city_name li {
    width: 100% !important;
}


.cs-dma_name,
.cs-city_name {
    overflow-y: scroll;
}


.action-pop .modal-content {
    max-width: 90%
}

.href-link {
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    line-height: 1.38;
    color: var(--first-color);
    margin-bottom: 0;
}

.href-link:hover {
    color: #27386d;
}

.x-close {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 6px;
    padding-right: 6px;
    background: #e7eaff;
    color: #27386d;
    text-align: center;
}

.x-close:hover {
    color: #27386d;
}

/*********media-query********/
@media only screen and (max-width: 1600px) {
    /*.tb-right {
    column-gap: 20px;
  }

  .tb-img-blk {
    padding-left: 20px;
  }*/

    .dt-tab-inner {
        column-gap: 20px;
    }


    .tb-btn {
        padding: 15px 25px;
    }

    .data-creative-block .ct_area_lt {
        width: 65%;
        padding-top: 0;
    }

    .data-creative-block .ct_area_rt {
        width: 35%;
    }
}

@media only screen and (max-width: 1430px) {

    .tb-title {
        font-size: 20px;
    }


    .tpi-item-row li {
        width: calc(25% - 10px);
    }

    .pr-itm-row li {
        width: calc(25% - 8px);
    }

}

@media only screen and (max-width: 1348px) {


    .tb-right {
        column-gap: 15px;

        justify-content: space-between;
    }


    /* .tb-left,
    .tb-right {
        width: 100%;
    }*/

    .tb-title {
        font-size: 20px;
        /*text-align: center;*/
    }

    .data-btn.info-btn {
        min-width: 184px;
    }

    .tpi-img {
        height: 200px;
    }

    .pr-heading {
        font-size: 40px;
    }


}

@media (max-width: 1220px) {
    .navbar-nav li {
        margin-left: 15px;
        margin-right: 15px;
    }

    thead th,
    tbody td {
        padding: 20px 15px !important;
    }


    .data-table-header.tp-header {
        flex-direction: column;
        gap: 15px;
    }

    .data-table-header.tp-header .tb-left {
        justify-content: space-between;
        width: 100%;
    }

    .tb-left .radio_inner {
        margin-left: 0;
    }

    .dt-tab-inner .btn-wrapper {
        margin-left: 0;
        text-align: left;
    }
}

@media (max-width: 1199px) {
    .header {
        padding-left: 20px;
        padding-right: 20px;
    }


    .navbar-toggler {
        padding: 5px !important;
        line-height: 1 !important;
        font-size: 15px !important;
        border-radius: 2px;
        margin-left: auto;
        margin-right: 15px;
        background-color: #27386d1f;
        border-radius: 50%;
    }

    .navbar-toggler span {
        line-height: 0;
        height: auto;
        width: auto;
    }

    .navbar-toggler-icon img {
        width: 20px;
        height: 20px;
    }

    .navbar-vertical .card-body,
    .card-header {
        padding: 20px;
    }

    .btm-btn-area,
    .btn-group {
        padding-left: 20px;
        padding-right: 20px;
    }

    a.nav-link:hover:after,
    .nav-item.active a.nav-link::after {
        display: none;
    }

    .navbar-collapse {
        background-color: var(--white-color);
        width: 100%;
        position: absolute;
        top: 82px;
        border-width: 0 1px 1px 1px;
        border-style: solid;
        border-color: #f4f5f8;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .navbar-nav li {
        margin: 15px;
        text-align: center;
    }

    .navbar-collapse .navbar-nav {
        padding-bottom: 20px;
    }

    .modal-title {
        font-size: 30px;
    }

    .modal .modal-header {
        margin: 50px 35px 0;
        padding-bottom: 30px;
    }

    .modal-body {
        margin: 0 35px;
        padding: 30px 0;
    }

    .modal-content {
        max-height: 400px;
    }

    .modal-dialog {
        max-width: 90%;
        margin: 0 auto !important;
    }

    .modal-list .modal-list-block {
        column-gap: 20px;
    }

    .dt-obj-title {
        font-size: 22px;
    }

    .modal-fullscreen-lg-down .modal-content {
        border-radius: 10px !important;
    }

    .ct_area_rt img {
        /*border-radius: 10px;*/
        max-height: 100%;
        width: 100%;
    }


    .pr-itm-row li,
    .tpi-item-row li {
        width: calc(50% - 5px);
    }


    .tp-header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
    }

    .tp-header .btn.data-btn {
        margin-left: auto;
    }

}


@media (max-width: 1024px) and (min-width:993px) {
    .btn-wrapper {
        width: 100%;
        text-align: center;
    }

    .tb-right {
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
    .navbar-vertical {
        width: 265px;
        height: 100%;
    }

    .main-right-content {
        padding: 35px 20px;
    }

    .card-list .name-title {
        font-size: 12px;
    }

    .card-list .avatar img {
        width: 35px;
        height: 35px;
    }

    .nav-link.dropdown-toggle:before {
        height: 5px;
        width: 9px;
        padding-right: 5px;
    }

    .card-list {
        padding-right: 15px;
    }

    #sidebar {
        position: fixed;
        top: 0;
        left: -273px;
        height: 100%;
        z-index: 1020;
        transition: left 0.3s ease;
    }

    #sidebar.sidebar-open {
        left: 0 !important;

    }

    .modal-list .modal-list-block {
        flex-direction: column;
        gap: 15px;
    }

    .ct_area_lt,
    .ct_area_rt {
        width: 100%;
    }

    .ct_area_lt {
        padding-top: 0;
    }

    button#sidebar-toggle {
        display: block;
    }

    .nav_logo {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    button#sidebar-toggle {
        order: 2;
    }

    .navbar-toggler {
        order: 3;
    }

    .nav-item.dropdown {
        order: 4;
    }

    .navbar-vertical .navbar-vertical-footer {
        max-width: 264px;
    }

    .dwn-btn {
        font-weight: 500;
    }

    .btm-btn-area {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .dwn-btn img {
        margin-right: 6px;
    }

    button.btn-close {
        width: 35px;
        height: 35px;
        right: -6px;
        top: -12px;
    }


    button.btn-close img {
        width: 12px;
    }

    .navbar-collapse {
        top: 97px;
    }

    .modal .modal-header {
        margin: 35px 35px 0;
        padding-bottom: 25px;
    }


    .modal-title {
        font-size: 25px;
    }

    .dt-obj-title {
        font-size: 22px;
        margin-block: auto;
    }

    .radio_inner {
        /*flex-direction: column;*/
        justify-content: flex-start;
        align-items: flex-start;
        gap: 12px;
    }

    .modal-content {
        max-height: 700px;
    }


    .tb-title {
        /*text-align: center;*/
        display: block;
    }


    .modal-fullscreen-lg-down .modal-content {
        height: auto !important;
    }


    .modal-list.imglist-block {
        gap: 30px;
    }

    .modal-list.imglist-block li {
        width: calc(50% - 18px);
    }

    .modal-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .modal .modal-header {
        margin: 25px 25px 0;
        padding-bottom: 15px;
    }

    .modal-body {
        margin: 0 25px;
        padding: 25px 0;
    }

    .data-table-item {
        padding: 25px;
    }

    .data-table-header h4 {
        font-size: 16px;
        text-transform: capitalize;
    }

    .data-btn {
        padding: 12px 20px;
    }

    .tb-right {
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: center;
    }

    .tab-item-btn {
        column-gap: 20px;
    }

    .tb-btn {
        padding: 15px 25px;
        margin: 0 auto;
    }

    .img-title {
        font-size: 16px;
        margin-bottom: 0;
    }

    .tab-item-btn {

        padding-right: 15px;
    }

    .tb-img-blk {
        padding-left: 15px;
    }

    .data-table-item {
        margin-bottom: 25px;
    }

    thead th,
    tbody td {
        padding: 15px 10px !important;
    }

    .info-dt {
        display: none;
    }

    .dropdown-menu {
        right: -20%;
    }

    .table,
    .value-mt-list.cs-value-mt-list {
        min-width: 550px;
    }

    .navbar-collapse {
        top: 95px;
    }

    .tb-title {
        font-size: 20px;
    }

    .nav-link.dropdown-toggle:before {
        top: 45%;
    }

    .btn-wrapper {
        width: 100%;
        text-align: center;
    }

    .tb-right {
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: space-between;
    }


    .tp-header .tb-left {
        flex-direction: column;
        gap: 20px;
    }

    .tp-header .radio_inner {
        flex-direction: row;
    }


    .pr-itm-row li,
    .tpi-item-row li {
        width: 100%;
    }


    .pr-heading {
        font-size: 40px;
    }

    .tp-header .btn.data-btn {
        margin-left: 0;
    }


    .tpi-img {
        height: 100%;
    }

    body canvas {
        height: 100% !important;
        width: 100% !important;
        max-height: 100% !important;
    }


    .cht-btm-info .cht-info-title {
        margin-bottom: 20px;
    }

    .btm-btn-area.chck-unck-btn {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }


    .btm-btn-area.chck-unck-btn .btn {
        min-width: 128px;
    }


    .campaign-metric.checklist-item li {

        column-gap: 10px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }


    .navbar .card:nth-last-of-type(1) li {
        flex-direction: row;
    }

    .cht-btm-info .cht-info-title {
        font-size: 16px;
    }


    .tb-left,
    .tb-rite {
        column-gap: 10px;
    }


    .modal-list.imglist-block {
        gap: 15px;
    }

    .modal-list.imglist-block li {
        width: 100%;
    }


    .data-creative-block {

        gap: 25px;
        /* align-items: center;*/
        flex-direction: column-reverse;
    }

    .data-creative-block .ct_area_lt,
    .data-creative-block .ct_area_rt {
        width: 100%;
    }


    .data-creative-block .ct_area_rt img {
        height: 100%;
        /*object-fit: cover;*/
    }

    .pr-itm-box {
        padding: 75px 25px;
    }


    .imglist-popup .modal-content {
        padding-bottom: 25px !important;
    }

    .imglist-popup1 .modal-content {
        padding-bottom: 25px !important;
    }

}

/****landscape-view*******/

@media screen and (max-device-width: 992px) and (orientation: landscape) {
    .modal-content {
        max-height: 300px;
    }

    .btm-btn-area,
    .btn-group {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-vertical-content {
        overflow: auto;
        height: calc(100vh - 13rem);
    }
}


@media (min-width: 576px) {
    .modal-dialog {
        max-width: 90%;

    }

    .checklist-item {
        flex-wrap: wrap;
        row-gap: 10px;
    }
}


@media (min-width: 1600px) {
    .modal-dialog {
        max-width: 65%;
        margin: 1.75rem auto;

    }

    .modal-content {
        max-height: 750px;
    }

    .navbar>.container-fluid {
/*        justify-content: flex-start; */
    }


    .tpi-img {
        height: 100%;
        max-height: 400px;

    }


}

@media (min-width: 1400px) {
    .navbar-collapse {
        /* margin-left: 175px !important; */
        flex-grow: 0;
    }

    /* li.nav-item.dropdown {
        margin-left: auto
    } */
}


@media (max-width: 1316px) and (min-width: 993px) {
    .modal-dialog {
        max-width: 80%;

    }

    .modal-content {
        max-height: 500px;
    }
}

@media (max-width: 640px) {
    .modal-content {
        max-height: 550px;
    }


    .modal-body.txt-body {
        padding: 25px;
    }


    /* button.btn-close {
        top:-22px;
    }*/


    .modal-content {
        height: auto !important;
    }
}


@media (max-width: 420px) {
    .img-outer {
        height: 45px;
        width: 45px;
    }

    .img-outer img {
        width: 25px;
    }
}


@media (max-width: 330px) {
    .tab-item-btn {
        padding-right: 0;
    }
}


@media (max-width: 315px) {
    .tab-item-btn {
        padding-right: 0;
        width: 100%;
        justify-content: center;
    }

    .tb-img-blk {
        padding-left: 0;
        border: 1px solid #f4f5f8;
        padding: 10px;
        width: 100%;
        justify-content: center
    }

    .data-table-header {
        flex-direction: column-reverse;
        row-gap: 10px;
    }


    .tb-rite {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
    }
}


@media (max-height: 850px) {
    .navbar-vertical-content {
        height: calc(100vh - 15rem);
    }
}

@media (max-height: 650px) {
    .modal-content {
        max-height: 500px;
    }
}

.show-hide-text {
    color: var(--first-color);
    font-size: small;
    opacity: .8;
}

.view-graph-button {
    background: none; /* No background */
    border: none; /* No border */
    color: var(--first-color); /* Initial text color */
    padding: 0; /* No padding */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Cursor pointer */
    display: block; /* Block display */
    text-align: center; /* Center text */
    margin: 10px auto; /* Center the button */
    text-decoration: none; /* No underline */
}

.view-graph-button .arrow {
    width: 50px; 
    height: auto; 
    transition: transform 0.3s;
    align-items: center;
    margin-top: 0px;
    display: block;
    margin: 0 auto;
}

.view-graph-button li {
    list-style-type: none; 
    display: flex; 
    align-items: center;
}

.show-hide-chart-text {
    display: inline-block;
    margin: 0px;
    margin-bottom: 0px;
}

.show-hide-accordion {
    display: inline-block;
    margin: 0px;
    margin-bottom: 0px;
}

.blue-graph-icon {
    display: inline-block;
}

.view-graph-button:hover {
    /* opacity: 0.6;  */
}

a.inline-anchor-attribute {
    /* text-align: center; */
    font-family: Open Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    /* line-height: 20px; */
    color: var(--first-color);
    /* z-index: 31; */
    /* position: relative; */
    /* border-bottom: 1px solid var(--first-color); */
    /* width: fit-content; */
    /*bottom: 32px;*/
    /* margin-top:15px;
    left: auto;
    right: auto;
    display: block; */

    padding-left: 2px;
    padding-right: 2px;
}

a.inline-anchor-attribute:hover {
    border-bottom: 1px solid var(--first-color);
}

a.inline-anchor {
    /* text-align: center; */
    font-family: Open Sans;
    font-style: normal;
    font-weight: 700;
    /* line-height: 20px; */
    color: var(--first-color);

    padding-left: 4px;
    padding-right: 2px;
}

a.inline-anchor:hover {
    border-bottom: 1px solid var(--first-color);
}

.insufficient-data-text {
    color: var(--first-color);
    text-align: center !important; 
}

.ui-slider-handle {
    border-radius: 50%; 
    background: #FFFFFF; 
    border: 2px solid var(--first-color); 
}

.ui-slider {
    margin: 20px;
    margin-top: 5px;
    margin-right: 40px;
}

.ui-slider-range {
    background: var(--first-color); 
}

.ui-slider .ui-slider-range {
    background: var(--first-color); /* Blue background for the range */
}

.improvement-range-text {
    font-size: 15px;
    color: black;
    padding-left: 20px;
}

.filter-actions-text {
    font-size: 20px;
    margin: 20px;
    color: var(--first-color);
}

.custom-tooltip + .tooltip {
    z-index: 1050 !important; /* Ensure it's above Bootstrap modal overlays */
}

.custom-tooltip + .tooltip > .tooltip-inner {
    background-color: #555; 
    color: #fff; 
    border: 1px solid #000; 
    padding: 5px 10px; 
    font-size: 14px; 
    position: absolute !important; 
}

.custom-tooltip + .tooltip > .tooltip-arrow {
    border-top-color: #555;
}

.down-arrow-collapse {
    border: solid #27386d;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.up-arrow-triangle {
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #27386d;
    position: absolute;
}

.down-arrow-triangle {
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #27386d;
    position: absolute;
}

.down-arrow-triangleblk {
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #555;
    position: absolute;
}

.up-arrow-trianglegrn {
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #28a745;
    position: absolute;
}

.add-attr-value-btn {
    background-color: transparent;
    border: 2px solid var(--first-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 0;
    cursor: pointer;
    color: var(--first-color);
    /* margin-bottom: 22px; */
    margin-left: 10px;
    margin-top: 10px;
}

.new-attr-value-input {
    /* margin-bottom: 22px; */
    margin-left: 22px;
}

.adskate-button {
    background: var(--first-color);
    border-color: var(--first-color);
    margin-left: 1rem;
}

.adskate-button:hover {
    background-color: #ffffff;
    color: var(--first-color);
}

.attribute-edit-remove {
    
    border: none;
    border-radius: 20px;
    background-color: var(--first-color-light); 
    border-color: var(--first-color);
    margin: 5px;
    padding: 2px;
    cursor: pointer;
    display: inline-flex;
}

.attribute-remove-text {
    border: none;
    background-color: transparent;
    color: var(--first-color);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    padding-left: 1rem;
}

.attribute-remove-btn {
    border: none;
    background-color: transparent; 
    color: var(--first-color);
    cursor: pointer;
    display: inline-flex;
}

.marked-for-removal {
    background-color: rgba(255, 0, 0, 0.5); 
}

.attr-val-marked-for-add {
    background-color: rgba(33, 125, 33, 0.5);
}

.popover-custom {
    z-index: 999999 !important; 
    max-width: 300px;
}

.image-popover {
    position: absolute;
    z-index: 1000;
    display: none; /* Initially hidden */
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.scrollable-content {
    max-height: 300px; 
    overflow-y: auto; 
    padding: 15px; 
}

.apply-button-container {
    padding: 10px 15px; 
    border-top: 1px solid #eee; 
}

.apply-multiple-checkbox {
    border-color: var(--first-color);
    height: 16px;
    width: 16px;
    border-width: 1px;
}

.btn-primary {
    background-color: var(--adskate-light-blue);
    border-width: 0px;
}

.btn-primary:active {
    background-color: darken(var(--first-color), 10%); 
    border-color: var(--first-color); 
}

.btn-primary:focus {
    box-shadow: none;
}


/* start help section */
.accordion-body {
    overflow: visible !important;
    display: block; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    /* min-height: 50vh; */
}

.accordion-body iframe {
    width: 45vw; 
    height: 25.3125vw; 
}

.content-center {
    justify-content: center;
    align-items: center;
    height: 100vh; 
}

.pr-itm-box.clickable-box {
    cursor: pointer;
    margin: 0 10px; 
    width: 20rem;
}

.help-accordion-container {
    display: flex;
    justify-content: center;
}

.faq-page-content {
    margin-top: 13rem;
    display: none;
    margin-inline: 25vw
}

.select-back-btn, .feedback-link {
    background: none;
    border: none;
    color: var(--first-color); /* Example color: blue */
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
}

.select-back-btn {
    margin-bottom: 1rem;
    font-size: 20px;
}

.faq-accordion-content {
    min-width: 50vw;
    max-width: 50vw;
}

.feedback-container {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa; /* Light grey background */
    color: black; /* Text color */
    text-align: center;
    padding: 10px 0; /* Adjust the padding as needed */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Optional: adds a slight shadow for depth */
}
/* end help section */

.actions-list-container {
    margin-top: 200px;
    /* max-width: 1000px; */
}

.actions-list-container1 {
    margin-top: 10px;
    /* max-width: 1000px; */
}

.ah-actions {
    min-height: 6rem;
}

.ah-text {
    background-color: var(--first-color-light);
    color: white;
}

.actions-accordion-item {
    border-radius: 20px !important;
    border-width: 0px !important;
    /* border-top: 2px !important;
    border-left: 2px !important;
    border-right: 2px !important;
    border-bottom: 2px !important; */
    border-color: var(--first-color);
    margin: 1rem;
    visibility: hidden;
}

.spend-actions-accordion-item {
    border-radius: 20px !important;
    border-width: 0px !important;
    border-color: var(--first-color);
    margin: 1rem;
    visibility: visible;
}

.actions-accordion-button {
    border-radius: 20px !important;
    min-height: 6rem;
    background-color: #e7eaff;
    padding: 0px;
}

.actions-accordion-disabled {
    border-radius: 20px !important;
    min-height: 6rem;
    background-color: #e7eaff;
    padding: 0px;
}

.actions-accordion-button:hover {
    background-color: #f0f2fc;
}

.actions-list-container .accordion-button::after {
    background-image: initial;
    width: 0;
  }
  
.actions-list-container .accordion-button:not(.collapsed)::after {
background-image: initial;
width: 0;
}

.actions-list-container .metric-text {
    height: 6rem;
    background-color: var(--first-color);
    border-radius: 20px;
    font-size: large;
}

.actions-list-container1 .accordion-button::after {
    background-image: initial;
    width: 0;
  }
  
.actions-list-container1 .accordion-button:not(.collapsed)::after {
background-image: initial;
width: 0;
}

.actions-list-container1 .metric-text {
    height: 6rem;
    background-color: var(--first-color);
    border-radius: 20px;
    font-size: large;
}

.improve-btn {
    height: 6rem;
}

.progress-bar {
    position: relative;
  }
  
  .progress-value {
    top: -15px; /* Adjust based on your preference */
    transform: translateX(-50%);
    color: #000;
  }

  .position-relative {
    overflow: visible; /* Ensure overflow content is visible */
  }

  .progress-end-text {
    font-size: 16;
    color: black;
  }

  .action-detail {
    font-size: 14px;
  }

  .progress-wrapper {
    position: relative;
    width: 100%;
}

.progress {
    width: 100%;
}

.percentage-label {
    position: absolute;
    top: -50px;
    white-space: nowrap;
    transform: translateX(-50%);
    text-align: center;
}

.percentage-label span {
    font-size: 16px;
}

.end-label {
    position: absolute;
    bottom: 50px;
    white-space: nowrap;
    transform: translateX(-50%);
    text-align: center;
}

.end-label span {
    font-size: 16px;
}

.action-row td {
    font-size: 16px;
    line-height: 1rem;
    font-family: "Open Sans", sans-serif;
}

.action-row a.inline-anchor-attribute {
    font-size: 16px;
}

.legend {
    display: flex;
    align-items: center;
}

.color-item {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Space between color items */
}

.color-swatch {
    width: 20px; /* Size of the color square */
    height: 20px; /* Size of the color square */
    margin-right: 8px; /* Space between the color square and the label */
}

.color-label {
    font-size: 16px;
}

.progress-arrow {
    position: absolute;
    top: 50%; /* Center vertically in the progress bar */
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;  /* Adjust size of the arrow */
    border-bottom: 5px solid transparent;  /* Adjust size of the arrow */
    border-left: 10px solid white;  /* Arrow color, pointing to the right */
}

/* Optional: Styling to extend the tail of the arrow */
.progress-arrow:after {
    content: '';
    position: absolute;
    top: -1px;  /* Align with the middle of the arrow */
    left: -20px;  /* Adjust length of the tail */
    width: 20px;  /* Length of the tail */
    height: 1px;  /* Thickness of the tail */
    background-color: white;  /* Color of the tail */
}

.progress-arrow-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid white; /* Arrow points left */
}

.progress-arrow-left:after {
    content: '';
    position: absolute;
    top: -1px;  
    left: 0px;  
    width: 20px;  
    height: 1px;  
    background-color: white; 
}

#actionInfoCreativesList {
    max-height: 400px; /* Adjust based on the modal size or desired viewport */
    overflow-y: auto; /* Enables vertical scrolling */
}

.btn-filter {
    /* padding: 8px 16px; */
    border: none;
    border-radius: 20px;
    background-color: #f0f0f0; /* Default background color */
    margin-right: 5px; /* Adjust margin as needed */
    cursor: pointer;
    transition: background-color 0.3s; /* Transition effect for hover */
    transform: scale(0.8);
    display: inline-flex;
}

/* Change background color on hover */
.btn-filter:hover:not(.active) {
    background-color: var(--first-color); /* Lighter shade on hover */
    color: #f0f0f0;
}

.btn-filter.active {
    background-color: var(--first-color);
    color: #f0f0f0;
}

.filter-by-text {
    display: inline-flex;
    color: gray;
    font-size: small;
    align-items: center;
}

.vertical-bar {
    position: absolute;
    width: 3px; /* Width of the vertical bar */
    background-color: black; /* Color of the bar */
    height: 26px; /* Slightly higher than the progress bar */
}

.filter-buttons-container {
    display: flex; /* Flex container */
    flex-wrap: wrap; /* Allow children to wrap */
    align-items: center; /* Align items vertically */
}

#actionCreativesFilterButtons {
    display: flex; /* Make the list behave like a flexbox container */
    flex-wrap: wrap; /* Allow items in the list to wrap */
    list-style: none; /* Remove list markers */
    margin: 0; /* Remove default margin */
    padding-left: 10px; /* Space from label, adjust as needed */
    flex-grow: 1; /* Allow this list to take up remaining space */
}

#actionCreativesFilterButtons li {
    margin-right: 10px; /* Space between buttons */
}

.btn-filter {
    white-space: nowrap; /* Prevent text inside button from wrapping */
}

.download-text {
    color: black;
    margin-left: 20px;
}

.creative-id-top-low {
    word-wrap: break-word;  
    white-space: normal;
	max-width: 18vw;
}

.embed-square iframe, .embed-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: transparent;
    z-index: 1;
}

.section-container {
    border: 2px solid;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 50px;
    position: relative;
    border-color: lightgray;
}

.section-title {
    position: absolute;
    top: -12px;
    left: 16px;
    background-color: var(--sec-color);
    padding: 0 8px;
}

.action-text {
    margin: 20px;
    padding-inline: 20px;
}

.hamburger-menu-actions {
    cursor: pointer;
    font-size: 30px; 
    border-radius: 5px; 
    display: inline-block; 
    transition: background-color 0.3s ease; 
}

.hamburger-menu-actions:hover {
    color: gray; 
}

/* .spend-item {
    visibility: hidden;
} */

.center-content {
    text-align: center;
    vertical-align: middle;
}

.curved-div {
    background-color: var(--first-color-light);
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 10px;
}

.compliance-title {
    color:var(--first-color);
    font-size: 18px;
}

.compliance-message {
    text-align: center;
    font-weight: bold;
    padding: 20px;
}

.lp-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    list-style-type: none;
    padding: 0;
}

.lp-list li {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    max-width: 18vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.item-header {
    font-weight: bold;
    margin-bottom: 10px;
}

.creative-content {
    margin-bottom: 10px;
}

.creative-id {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

.overspend-content {
    font-weight: bold;
    text-align: center;
}

.overspend-title {
    font-weight: bold;
    font-size: 0.9em;
    color: #333;
}

.accordion-body {
    background-color: #f8f9fa;
    padding: 1rem;
}

.overspend-wordwrap {
    display: inline-block;
    max-width: 100%; /* or a specific value */
    overflow-wrap: break-word;
    word-break: break-word;
}

.highlighted-spend-text {
    /* background-color: var(--adskate-transparent-blue); */
    padding: 10px;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 2rem;
    width: auto;
    max-width: 60%;
    border-radius: 5px;
}

.custom-carousel {
    width: 800px; /* Limit carousel width */
    margin: 20px auto; /* Add space for the shadow */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); /* Larger blur for more visible shadow */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden;
}

.carousel-item img {
    width: 100px; 
    height: auto;
    margin: 0 10px; 
    display: inline-block;
}

.carousel-inner {
    margin-left: 70px;
    margin-right: 0px;
    margin-top: 30px;
    margin-bottom: 0px;
    max-width: 660px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 4rem; 
    height: 4rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 100%; 
    height: 100%; 
    background-size: 100% 100%; 
    background-repeat: no-repeat;
}

.carousel-control-prev-icon {
    background-image: url('{% static "v2_0/img/caret-down.svg" %}');
    transform: rotate(90deg); 
}

.carousel-control-next-icon {
    background-image: url('{% static "v2_0/img/caret-down.svg" %}');
    transform: rotate(-90deg);
}

.carousel-fraction {
    padding: 1rem; 
    font-weight: bold;
}

.action-card-text {
    height: 8rem;
}

.carousel-item {
    transition: transform 0.2s ease-in-out; /* Faster transition */
}

/* .carousel-indicators button {
    background-color: gray; 
    border: none; 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    margin: 5px; 
}
    

.carousel-indicators .active {
    background-color: black; 
} */

.carousel-indicators {
    position: static; 
    text-align: center; 
}

.trends-header-text {
    font-size: large;
    font-weight: bold;
    color: black;
    margin-bottom: 1rem;
}



.fatigue-card-element {
	max-width: 300px;
	height: 100%;
	background-color: var(--adskate-transparent-blue);
	border-radius: 8px; /* Rounded corners */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 10px;
	text-align: center; /* Center the text */
	margin-bottom: 15px;
    margin-right: 10px;
    margin-left: 10px;
}

.diversity-card-element {
    /* border: 1px solid #ccc;  */
    border-radius: 8px; 
    background-color: var(--adskate-transparent-blue); 
    padding: 10px; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: stretch;
}

.fatigue-val-text {
	font-size: medium;
	font-weight: bold;
	color: var(--first-color);
}

.fatigue-creativeid-text {
	font-size: medium;
}

.media-container {
    min-height: 240px;
}

.tooltip.bs-tooltip-bottom .tooltip-inner {
    background-color: white !important; /* Ensures a fully opaque white background */
    color: black !important;
    border: 1px solid #6c757d;
    border-radius: 4px;
    padding: 8px;
    max-width: 300px; /* Adjust as needed */
    width: auto; /* Allow the tooltip to adjust its width */
    opacity: 1 !important; /* Make the tooltip fully opaque */
}

.help-icon {
    margin-bottom: 1rem;
    -webkit-text-stroke: 1px gray;
    color: gray;
    font-size: 1.5rem;
}

.chartjs-legend .legend-item,
.chartjs-legend li span {
    text-decoration: underline;
}

.fatigue-creativeid-text {
    word-wrap: break-word;
    word-break: break-all;
}

.diversity-card-item:hover .fatigue-val-text {
    text-decoration: underline dotted;
    text-decoration-thickness: 3px;
}

/* Ensure the cursor changes to a pointer */
.diversity-card-item {
    cursor: pointer;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--first-color);
    border-color: var(--first-color);
  }

.date-range-text {
    font-weight: normal;
    margin-right: 1rem;
    font-size: large;
    margin-top: 10px;
}

.attribute-highlight {
    background-color: var(--first-color-light); 
    border-radius: 5px;
    padding: 0 0.5rem;
    display: inline;
    white-space: normal; 
}

.attribute-highlight-text {
    background-color: transparent;
    color: var(--first-color);
    padding: 0; 
    display: inline;
}

.message-content {
    display: flex;
    align-items: flex-start;
}

.message-content .avatar {
    margin-right: 10px; /* Space between avatar and text */
    width: 40px; /* Adjust avatar size if needed */
    height: 40px;
    border-radius: 50%;
}

.message-content .text {
    flex: 1; /* Allows the text div to take the remaining space */
    /* Additional styling as needed */
}

.ad-fatigue-list {
    margin-bottom: 1rem;
}

.recalculating-div {
    background-color: var(--first-color-light);
    align-items: center;
    justify-content: center;
    display: flex;
}

.recalculating-text {
    font-weight: bold;
    display: inline-block;
    padding-left: 1rem;
}

.edit-icon {
    height: 2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    margin-left: 1rem;
}

.editable-title {
    display: flex;
}

/* Show Edit Icon on Hover */
.editable-title:hover .edit-icon {
    opacity: 1;
}

/* Title in Editing Mode */
.tb-title1.editing {
    border: 1px solid lightgray; /* Minimal border during editing */
    border-radius: 4px;
    padding: 2px 4px;
    cursor: text;
}

.suggestion-list {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 500px; /* Adjust this based on content */
}

.suggestion-list.collapsed {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.toggle-button {
    background-color: white;
    color: black;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
    font-weight: normal;
    border-radius: 5px;
    font-size: small;
}

.toggle-button:hover {
    color: gray;
}

.top-perform-box {
    max-width: 300px; 
    height: 100%; 
    border: 1px solid #f5f5f5; 
    border-radius: 10px;
    background-color: var(--adskate-transparent-blue); 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start;
}

.table-icon {
    background-color: var(--adskate-light-blue);
    border-radius: 10px;
}

.takeaway-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    max-height: 50px; /* Approx height for 2 lines */
    cursor: pointer;
    line-height: 1.4;
    position: relative;
  }
  
  /* Slide down to show full text on hover */
  .takeaway-text:hover {
    -webkit-line-clamp: unset; /* Remove line limit */
    max-height: 200px; /* Expand to show full text */
    overflow: visible;
  }

  .industry-popover {
    position: absolute;
    top: 110%;
    right: 0;
    z-index: 1000;
    width: 220px;
    max-height: 250px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.industry-popover-header {
    background: #f7f7f7;
    font-weight: bold;
    padding: 8px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.industry-popover-body {
    max-height: 200px;
    overflow-y: auto;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-list li {
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.industry-list li:hover {
    background: #f0f0f0;
}

.insight-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem; 
    transform: scale(0.95);
    padding-top: 1rem;
    padding-left: 1rem;
    position: fixed;
    margin-top: 7rem
}

.insight-toggle {
    position: relative;
    display: flex;
    width: 300px;
    border-radius: 32px;
    background-color: #d3d3d3;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 8px;
}

.toggle-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    border-radius: 32px;
    background-color: #318AE2;
    z-index: 1;
    transition: transform 0.3s ease;
}

.toggle-option {
    width: 50%;
    padding: 12px 0;
    text-align: center;
    z-index: 2;
    font-weight: 700;
    color: black;
}

.toggle-option.active {
    color: white;
}

.audience-toggle-subtext {
    display: flex;
    justify-content: space-between;
    width: 480px;
    font-size: 0.9rem;
    color: #222;
}

.audience-toggle-subtext .subtext {
    text-align: center;
    width: 50%;
}

.main-below-nav {
    margin-top: 7rem;
}

.ai-insights-navbar {
    margin-top: 5rem
}

.learn-more-link {
    color: #318AE2;
    text-decoration: underline;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    font-size: small;
}

.learn-more-link:hover {
    color: #1f6fc2;
    text-decoration: none;
}