.pcoded[theme-layout="vertical"][vertical-placement="left"][vertical-nav-type="expanded"][vertical-effect="shrink"] .pcoded-content {
    margin-left: 0px;
}

.pcoded .pcoded-header[header-theme="themelight1"] {
    background: #263544 !important;
    height: 60px !important;
}

.navbar-container {
    background-color: #263544;
    color: white;
}

.popupcontainer {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: fit-content;
    z-index: 1000;
    left: 20%;
    top: 20%;
    transition: opacity 0.3s ease-in-out;
    padding: 15px;
    box-shadow: 10px 10px 20px 5px rgba(139, 138, 138, 0.3);
}

.popup-content {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    height:auto;
    position: relative;
}

/* Header */
.p-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.p-title {
    line-height: 1;
    vertical-align: top;
    font-weight: 600;
    color: #353535;
    font-size: 27px;
    letter-spacing: -1px;
}

.p-subtitle {
    margin-top: 16px;
    font-size: 18px;
    color: #3599e7;
    font-weight: 600;
}

.close-icon {
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-icon:hover {
    color: #ff4d4d;
}

/* Platform Buttons */
.platform-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.platform-ico {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-ico.android {
    width: 10vw;
    height: 20vh;
}

.platform-ico.ios {
    width: 10vw;
    height: 20vh;
}

.platform-ico:hover {
    transform: scale(1.1);
    box-shadow: 10px 10px 20px 5px rgba(172, 169, 169, 0.3);
}

/* Multi-Step Form Sections */
.step {
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.step.active {
    display: block;
}

/* Form Sections */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.add-app_wrapper {
    background: #ffffff;
    border-radius: 10px;
    width: 80%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333333;
}

#form-table {
    border-collapse: separate;
    border-spacing: 0 15px;
    width: 100%;
    margin: 20px auto;
}

#form-table td:nth-child(1) {
    width: 25%;
}

#form-table td:nth-child(2) {
    width: 75%;
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
}

.col1 {
    font-size: 0.9rem;
    color: #555555;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.btn-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-next,.btn-cancel,
.btn-next-2,
.btn-back {
    background: #007bff;
    color: white;
    font-size: 1rem;
    border: none;
    padding: 6px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    float: right;
    /* display: none; */
    /* Hide by default */
}

.android img,
.ios img {
    width: 80px;
    height: 80px;
}

/* Next and Submit button hover effects */
.btn-next:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-next:active {
    transform: translateY(0);
}

.btn-next:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Footer */
.footer-text {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
}

.footer-text a {
    color: #007bff;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* step2 */
#step2 textarea {
    height: 280px;
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    resize: none;
    margin-top: 20px;
    padding: 18px 14px;
    color: #8c8c8c;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.note-text {
    font-size: 14px;
    color: #000;
    line-height: 1.2;
    width: 70%;
    float: left;
}

.example-img {
    border-left: 1px solid #dcdcdc;
    height: 112px;
    float: right;
    padding-left: 20px;
    cursor: pointer;
}

.progress_bar_wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    width: 10%;
    font-size: 12px;
}

.p_progress_bar-circle {
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #ccc;
    font-weight: 600;
    transition: 0.3s;
}

.p_progress_bar-circle.active {
    background-color: gray;
    color: white;
}

/* step3 */
.p_main {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.ico img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.p_app-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.p_placement-id {
    border: 1px solid #dddada;
    padding: 15px;
    width: 90%;
    margin: 15px auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.placementid {
    margin: 10px 0;
}

.theplid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid 1px #ddd;
    padding: 5px;
    background-color: #fff;
    border-radius: 5px;
}

.theplid span {
    font-size: 13px;
    font-weight: bold;
    color: #5e5e5e;
}

.theplid input {
    width: 65%;
    border: none;
    font-size: 13px;
    color: #333;
    padding: 0 5px;
}

.thebtn a {
    font-size: 13px;
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

.thebtn a:hover {
    background-color: #0056b3;
}

.p_finish-text {
    margin-bottom: 0px;
    margin-top: 24px;
    font-size: 27px;
    color: #353535;
    font-weight: 900;
    letter-spacing: -1px;
    text-align: center;
}

.p-subtitle {
    margin-top: 16px;
    font-size: 18px;
    color: #3599e7;
    font-weight: 600;
}

.p_sh {
    margin-top: 40px;
    font-weight: 600;
    font-size: 18px;
    color: #5e5e5e;
}

.p_sh span {
    margin: 0px 40px;
    color: #5e5e5e;
    font-size: 12px;
    text-transform: uppercase;
}

.setup-complete-buttons {
    display: flex;
    justify-content: center;
}

.platform-ico.monet-platform {
    font-size: 14px;
    color: #2996e9;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
}


.platform-ico.gol-platform {
    font-size: 14px;
    color: #f35538;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
}

.platform-ico.monet-platform img,
.platform-ico.gol-platform img {
    width: 70px;
    height: 70px;
}

/* manage app */
.tbl_logo_icon {
    width: 55px;
    height: 55px;
}

.app-detail {
    display: flex;
    justify-content: flex-start;
}

.app-details .app-name {
    font-weight: 700;
}

.app-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-left: 30px;
    color: #5f5f5f;
}

.table-card td,
.table-card th {
    border: 1px solid #ddd;
}

.table-card th {
    border-top: 1px solid #ddd;
    text-align: center;
    color: #46aaf6;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
}

.table-card .icon-wrapper .tbl-android-icon {
    width: 40px;
}


.table-card td:nth-child(1) {
    width: 15%;
}

.step-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.line {
    height: 5px;
    flex: 1;
    background: #d3dee8;
    position: relative;
}

.line.completed {
    background: linear-gradient(90deg, #2dafa8, #53d1b6);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step.completed .checkmark {
    background: #2dafa8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.step .circle {
    width: 24px;
    height: 24px;
    background: #d2dde8;
    color: #7889a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.step.active .circle {
    background: #3599e7;
    color: #fff;
    animation: pulse 1.5s infinite;
}

.tooltip {
    display: none;
    background: #fff;
    color: #333;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: -45px;
    white-space: nowrap;
    z-index: 10;
}

.step:hover .tooltip {
    display: block;
}

.btn-small {
    margin-top: 5px;
    background: #3599e7;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-small:hover {
    background: #267bcc;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.form-block.general {
    width: 100%;
    border: 1px solid #DADADA;
    border-radius: 8px;
    padding: 15px;
    margin: 0 0 15px 0;
    font-family: Arial;
}

.form-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-block.general .form-block-label h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    padding: 0 0 10px 0;
    color: #666666;
}


.form-block-cell {
    font-size: 13px;
    color: #6B6B6B;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10%;
    display: flex;
    align-items: center;
}

.hidden {
    display: none;
}

.select_drop {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.select_drop.active {
    display: block;
}

.select_in {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
}

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

.select li {
    padding: 8px 10px;
    cursor: pointer;
}

.select li:hover {
    background-color: #f1f1f1;
}

.new-app-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    padding: 5px 10px;
    background: #46aaf6;
    position: relative;
    width: 15%;
}

.new-app-btn:hover {
    background-color: #0056b3;
}

.pkgURL-error {
    display: block;
    margin-top: 10px;
    color: #e74c3c;
    font-size: 14px;
}

.error-label-campaign-name {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

.checked {
    background-image: url(Images/campaign_type_check_rectangle.png);
    background-position: top right;
    background-repeat: no-repeat;
    border-radius: 8px 6px 8px 8px;
    border: 2px solid #46AAF6;
}

.form-block.general .campaign-type-frame-container {
    display: flex;
    justify-content: space-between;
}

.form-block.general .campaign-type-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 23px;
    position: relative;
    height: 120px;
    left: 0px;
    right: 0px;
    top: 0px;
    background: #FFFFFF;
    border: 2px solid #DADADA;
    box-sizing: border-box;
    border-radius: 8px;
    width: 49%;
    float: left;
    cursor: pointer;
}

.form-block.general .campaign-type-frame h6 {
    color: #666666;
}

.form-block.general .campaign-type-frame p {

    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #6B6B6B;
    align-self: stretch;
    flex-grow: 0;
}

.form-block.general .campaign-type-frame.checked {
    background-image: url(files/assets/images/rectangle.png);
    background-position: top right;
    background-repeat: no-repeat;
    border-radius: 8px 6px 8px 8px;
    border: 2px solid #46AAF6;
}

.form_block.general .campaign_type_frame.checked h3 {
    padding: 0 0 10px 0;
    color: #46AAF6;
}

.form-block.general .campaign-type-frame.checked h6 {
    padding: 0 0 10px 0;
    color: #46AAF6;
}

.form-block.general .campaign-type-frame img.beta-ribbon {
    position: absolute;
    top: 0;
    left: 0;
}

.form-block.general .campaign-type-frame.checked img.stroke {
    display: block;
    right: 3px;
    top: 2px;
    width: 10px;
    height: 8px;
    position: absolute;
}

#uploadApk {
    width: 100%;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    position: relative;
}

.remove {
    position: absolute;
    top: -35px;
    right: -10px;
    cursor: pointer;
    font-size: 20px;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.file-name img {
    display: block;
    margin: 0 auto;
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.upload-label {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.upload-label:hover {
    background-color: #0056b3;
}

.upload-input {
    display: none;
}

.hidden {
    display: none;
}

.search-results {
    display: none;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background-color: white;
    width: 100%;
    z-index: 1000;
}

.search-results .app-result {
    padding: 10px;
    cursor: pointer;
}

.search-results .app-result:hover {
    background-color: #f0f0f0;
}

.apps_results {
    display: none;
    margin-top: 20px;
}

.form-block .selected_results .app_result {
    width: 130px;
    height: 39px;
}

.pa_group_apps_container {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    float: none;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
}

.form-block .selected_results .selected_result {
    margin: 6px 4px;
    box-sizing: border-box;
    padding: 7px 14px 0;
    border: none;
    float: left;
}

.form-block .selected_results .app_result .app_result_name {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
}

#search_row .apps_results.selected_results .group_label {
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    padding: 0 0 10px 0;
}


.app_result.selected_result.form_label {
    background: #fbb32a;
    color: #fff;
}

.remove_selected_group {
    font-size: 20px;
    cursor: pointer;
    color: #ff6f61;
    transition: color 0.3s;
}

.remove_selected_group:hover {
    color: #e60000;
}

.app_result {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app_result:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app_result_name {
    font-size: 16px;
    font-weight: bold;
}

.app_result_id {
    font-size: 10px;
    font-weight: normal;
    line-height: 1.2;
}

/* Add a hover effect on the app result icons */
.app_result i {
    font-size: 16px;
    margin-left: 10px;
    color: #007bff;
    transition: color 0.3s;
}

.app_result:hover i {
    color: #0056b3;
}

input#brands-search-input,
input#dropdown_include_apps_input {
    width: 100%;
}

.form_row .form_column {
    display: flex;
    gap: 20px
}

.form_row .form_column {
    display: flex;
    gap: 20px
}

.form_block {
    display: flex;
    gap: 15px;
}

.select_p {
    position: relative;
    font-size: 14px;
}

.select-app {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select {
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 80%;
    height: 32px;
    padding: 0 7px;
    color: #6f6f6f;
    font-size: 14px;
    background: #fff;
}


.select_campaign_type {
    background: #fff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    position: relative;
    padding: 0 10px;
    height: 31px;
    border: 1px solid #ddd;
}

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

.select_drop {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.select:hover .select_drop {
    display: block;
}

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

.select_drop li {
    padding: 8px 15px;
    cursor: pointer;
}

.select_drop li:hover {
    background-color: #f1f1f1;
}

.checkbox_drop ul {
    padding: 0;
    margin: 0;
}

.checkbox_drop li {
    padding: 8px 15px;
    display: flex;
    align-items: center;
}

.checkbox_drop li input {
    margin-right: 8px;
}

/* Flexbox alignment for date and time inputs */
.dates-container .end-date .pickers,
.dates-container .start-date .pickers {
    display: flex;
    margin-top: 5px;
    align-items: center;
    /* Center vertically */
}

/* Flex container for date picker section */
.dates-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Date picker wrapper styling */
.mx-datepicker {
    position: relative;
    color: rgba(0, 0, 0, 0.5);
}

.mx-input::placeholder {
    font-style: italic;
    font-size: 11px;
    margin-left: 10px;
    color: #aaa;
}

.picker-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #767676;
}

.dates-container .arrow-seperator {
    position: relative;
    width: 8px;
    height: 16px;
    background: #767676;
    margin: 5px 10px 0;
}

/* Top arrow styling */
.dates-container .arrow-seperator .top-arrow {
    width: 8px;
    height: 16px;
    position: absolute;
    top: -8px;
    right: -1px;
    background: #f5f5f3;
    transform: rotate(135deg);
}

/* Bottom arrow styling */
.dates-container .arrow-seperator .bottom-arrow {
    width: 8px;
    position: absolute;
    bottom: -8px;
    right: -1px;
    background: #f5f5f3;
    height: 16px;
    transform: rotate(45deg);
}

/* Flex column alignment for the start and end date sections */
.dates-container .end-date,
.dates-container .start-date {
    display: flex;
    flex-direction: column;
}

/* Styling for the input field itself */
.mx-input {
    box-sizing: border-box;
    width: 100%;
    height: 34px;
    padding: 6px 30px;
    padding-left: 10px;
    /* Adjust left padding */
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    /* Position relative for icon */
    font-family: Arial, sans-serif;
}
.currency {
    margin-right: 8px;
    font-weight: bold;
}

/* Flex Container Styling */
.select-wrapper,
.bid-container,
.budget-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}


.bid-label,
.budget-label {
    width: 40%;
}

.bid-input-container,
.budget-input-container,
.select-input-container {
    width: 60%;
    display: flex;
}

.bid-input-container .bid_per,
.budget-input-container .budget_per_day {
    display: flex;
    justify-content: flex-start;
    width: 60%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}


#by_events .widget,
#by_device_id .widget {
    width: 100%;
    height: 125px;
    background-color: #fff;
    text-align: center;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    margin-right: 18px;
}

.audience-section {
    display: flex;
    justify-content: space-between;
}

.audience-section .audience {
    width: 49%;
}

#by_events .widget .title,
#by_device_id .widget .title {
    height: 16px;
    font-family: Arial;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #666666;
    margin-top: 13px;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
}

#by_events .widget .button,
#by_device_id .widget .button {
    width: 165px;
    height: 32px;
    border-radius: 5px;
    background-color: #46aaf6;
    padding: 0px 20px;
    cursor: pointer;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

#by_events .widget .button a,
#by_device_id .widget .button a {
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
}

.audience-note {
    font-size: 12px;
    width: 60%;
    padding: 4px;
    line-height: 13px;
}


#audience_popup_by_events {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#audience_popup_by_device {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#audience_popup_by_device .popup-body .popup-header,
#audience_popup_by_events .popup-body .popup-header {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

#audience_popup_by_device .popup-title,
#audience_popup_by_events .popup-title {
    font-size: 18px;
    font-weight: 700;
    color: #3ca7f8;
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    /* text-decoration: underline; */
    cursor: pointer;
}

#audience_popup_by_device .popup-body {
    position: relative;
    z-index: 100501;
    background: #fff;
    border: 1px solid #b2b1b1;
    width: 50%;
    padding: 25px 30px;
    font-size: 14px;
    height: 80%;
    color: #6b6b6b;
}

#audience_popup_by_events .popup-body {
    position: relative;
    z-index: 100501;
    background: #fff;
    border: 1px solid #b2b1b1;
    width: 90%;
    padding: 25px 30px;
    font-size: 14px;
    height: 100%;
    color: #6b6b6b;
}

#audience_popup_by_device .audience-radio-btn {
    display: flex;
    align-items: center;
    margin: 10px 0px;
    gap: 10px;
}

#audience_popup_by_device .audience_name_wrapper,
#audience_popup_by_events .audience_name_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 70%;
}

#audience_popup_by_device .audience-radio-btn .input-block {
    display: flex;
}

#audience_popup_by_device .popup-close-button,
#audience_popup_by_events .popup-close-button {
    text-align: right;
    cursor: pointer;
    font-size:22px;
    color: #555;
    font-weight: bold;
}


#audience_popup_by_device .popup-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Default Title Style */
#audience_popup_by_device .popup-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Hover Effect for Titles */
#audience_popup_by_device .popup-title:hover {
    color: #3ca7f8;
}

/* Active Title Style */
.popup-title.active {
    font-size: 20px;
    font-weight: 700;
    color: #3ca7f8;
    margin-bottom: 35px;
}

/* Active Title Underline */
.popup-title.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3ca7f8;
    transition: width 0.3s ease;
}


#audience_popup_by_device .popup-content label {
    display: block;
    font-size: 14px;
    text-align: left;
}

#audience_popup_by_device .popup-content input[type="text"],
#audience_popup_by_device .popup-content input[type="file"] {
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 60%;
    height: 32px;
    padding: 0 7px;
    color: #6f6f6f;
    font-weight: bold;
    font-size: 14px;
    background: #fff;
    font-family: Arial;
    margin-right: 40px;
    font-weight: normal;
}


#audience_popup_by_device .popup-content .upload-block {
    display: flex;
    align-items: center;
}

#audience_popup_by_device .upload-block .btn-upload {
    display: inline-block;
    background-color: #00abfd;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 15px;
    border: none;
    margin-left: 11px;
    margin-right: 11px;
    border-radius: 3px;
    cursor: pointer;
}

#audience_popup_by_device .popup-content input[type="radio"] {
    margin: 0 5px 0 0;
}

#audience_popup_by_device .mxm-size {
    font-size: 12px;
    margin-top: 5px;
    color: #a89e9e
}

#audience_popup_by_device .download_example_wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer container for audience actions */
#audience_popup_by_device .audience-footer,
#audience_popup_by_events .audience-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
    gap: 5px;
}




#audience_popup_by_device .btn-cancel,
#audience_popup_by_events .btn-cancel
 {
    background-color: #6b6b6b;
}

#audience_popup_by_device .btn-next,
#audience_popup_by_events .btn-next  {
    background-color: #3ca7f8;
}

#audience_popup_by_device .button-next:hover {
    background-color: #007bff;
}


.alt_h2 {
    margin: 23px 0px 26px 25px;
    font-family: 'Coda', Arial, sans-serif;
    font-size: 27px;
    color: #46aaf6;
    text-transform: uppercase;
    font-weight:500;
}


.ad_tracking_list {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.steps_head .ad_tracking_list span {
    display: inline-block;
    padding-right: 16px;
    padding-left: 29px;
    margin-bottom: 10px;
    color: #6B6B6B;
}

.ad_tracking_list .with_arrow {
    position: relative;
}

.steps_head {
    background: 0 0;
    padding-bottom: 3px;
    border: 1px solid #999;
    border-width: 0 0 1px;
    margin-bottom: 31px;
    font-weight: bold;
    font-size: 1rem;
}


.ad_tracking_list .with_arrow::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 0;
    font-size: 18px;
}

#audience_popup_by_events .new-events-rounded-border-1,
#audience_popup_by_events .new-events-rounded-border-2 {
    margin-top: 15px;
    height: 325px;
    border-radius: 8px;
    border: 0.8px solid hsla(0, 0%, 59%, 0.57);
    overflow: hidden;
    display: inline-block;
}

#audience_popup_by_events .new-events-rounded-border-1 {
    width: 75%;
}

#audience_popup_by_events .new-events-rounded-border-2 {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#audience_popup_by_events .section-rule-editor {
    position: relative;
    width: 100%;
    display: block;
    overflow: visible;
    padding: 19px 0;
    border-radius: 8px;
    background-color: hsla(0, 0%, 85%, .3);
}

#audience_popup_by_events .single-rule {
    display: flex;
    align-items: flex-start;
    padding: 30px;
}

#audience_popup_by_events .divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
}


#audience_popup_by_events .rule-controls {
    display: flex;
    gap: 10px;
}

#audience_popup_by_events .rule-control-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

#audience_popup_by_events .rule-control-link.disabled {
    color: #ccc;
    cursor: not-allowed;
}

#audience_popup_by_events .info-message {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}

#audience_popup_by_events .info-message.hidden {
    display: none;
}

#audience_popup_by_events .rules_audience {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
}

.dropdown-wrapper {
    width: 50%;
}

#audience_popup_by_events .form-dropdown {
    width: 50%;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

#audience_popup_by_events .audience_name_wrapper input {
    width: 40%;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.time-selector {
    display: flex;
}

.event-form-block {
    width: 33%;
}

.graph {
    position: relative;
    background-image: url('../../assets/images/scala.png');
    background-size: contain;
    /* Scale image to cover entire element */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    height: 50%;
    width: 100%;
    margin-top: 20px;

}

.seprator {
    width: 90%;
    height: 1px;
    text-align: center;
    background-color: gray;
    margin-top: 20px;
}

.rules-description {
    padding: 30px;
}

.radius {
    position: absolute;
    width: 70px;
    height: 2px;
    background-color: hsla(0, 0%, 85%, .3);
    top: 93%;
    left: 51%;
    transform-origin: 0 50%;
    transition: transform 1s cubic-bezier(0.66, -0.44, 0.52, 1.69);
}

.scale-labels {
    position: relative;
    /* border: 1px solid darkred; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 97%;
    color: #333;
    font-size: 12px;
}

.specific {
    position: relative;
    left: 10%;
}

.broad {
    position: relative;
    right: 10%;
}

.events-rounded-container {
    display: flex;
    gap: 10px;
}

.events-rounded-container .new-events-rounded-border-2 p {
    font-size: 14px;
    padding: 9px 11px;
    margin-top: 20px;
    margin-bottom: -5px;
}

.mega-footer .alt_footer_menu h2 {

    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 14px;
    padding-bottom: 0;
}

.mega-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.alt_footer_menu {
    list-style: none;
    padding: 0;
    width: 16%;
}

.alt_footer_menu h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.alt_footer_menu li {
    margin-bottom: 8px;
}

.alt_footer_menu a {
    text-decoration: none;
    color: #fff;
}

.bottom_line {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
.alt_container {
    background-color: #263544;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #fff;
}
.main-body .page-wrapper {
    overflow: hidden;
}
