@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito/static/Nunito-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito/static/Nunito-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito/static/Nunito-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
  }

:root {
    --bg-color-primary: #1F9FA0;
    --bs-nav-link-color: #03a9f4;
}
*{
    font-family: "Nunito", Arial, Helvetica, sans-serif;
}
html {
    /*zoom:0.75;*/
    font-family: "Nunito", Arial, Helvetica, sans-serif;
}
body{
    font-family: "Nunito", Arial, Helvetica, sans-serif;
}

html[data-topbar-color=brand] {
    --bs-topbar-bg: #1b4859;
    --bs-topbar-item-color: rgb(255 255 255);
    --bs-topbar-item-hover-color: #ffffff;
    --bs-topbar-search-bg: rgba(255, 255, 255, 0.1);
}

html[data-sidebar-size=full]:not([data-layout-mode=horizontal]) .left-side-menu .logo-box {
    width: 280px;
    position: fixed !important;
    display: block;
}

table {
    width: 100% !important;
}

.logo-box {
    .logo {
        margin-left: 5px;

        .logo-lg {
            display: flex;
            justify-content: left;
            align-items: center;

            img {
                height: 70px;
            }
        }
    }
}

.button-menu-mobile {
    display: none;

    @media (max-width: 991.98px) {
        display: block;
    }
}

.left-side-menu {
    width: 280px;

    .filters {
        .filter-item {
            display: flex;
            justify-content: space-between;
            padding: 3px 15px;
            align-items: center;

            &.nav-link-item {
                color: #6d6d6d;
                font-weight: 500;
            }

            i {
                color: var(--bg-color-primary);
            }

            &.date-filter {
                flex-direction: column;
                align-items: baseline;
                gap: 10px;
                margin: 10px 0px;
            }

            .select2-selection__arrow {
                b {
                    border-color: var(--bg-color-primary) transparent transparent transparent;
                }
            }

        }

        &.adv-filters {
            .filter-item {
                margin-bottom: 5px;
            }
        }
    }

    .logo-box {
        width: 280px;
    }

}

.content-page {
    margin-left: 265px;
    padding: 70px 0px 0px 15px;

    .content {
        .table-responsive {
            &::-webkit-scrollbar {
                background: #e4e4e4;
                border-radius: 20px;
                width: 5px;
                height: 5px;
            }

            &::-webkit-scrollbar-track {
                background: #e4e4e4;
            }

            &::-webkit-scrollbar-thumb {
                background: var(--bg-color-primary);
                border-radius: 20px;
                cursor: crosshair;

                &:hover {
                    background: yellow;
                }
            }

        }

        .dashboard-widget {
            height: 170px;

            table {
                height: 100%;


            }

            .table-sm {
                th {
                    font-size: 12px;
                }
            }

        }

        #mediaTypesShortCodes {
            a {
                font-size: 14px !important;
            }
        }

        #tabAllShortCodeList {
            .form-select {
                --bs-form-select-bg-img: none !important;
            }

            .dtfc-fixed-left {
                background: #e9e9e9;

                &::before {
                    content: '';
                }

                &::after {
                    content: '';
                }
            }

            .DTFC_Cloned {

                tr,
                th {
                    background: #e9e9e9;
                }
            }

            .DTFC_LeftHeadWrapper {
                height: 90px;
            }

            .DTFC_ScrollWrapper {
                th {
                    &.sorting_asc {
                        background-image: none !important;
                    }

                    border-bottom-color: #dee2e6 !important;

                    &:first-child {
                        &::before {
                            content: ''
                        }

                        &::after {
                            content: ''
                        }
                    }
                }

                tr {
                    border-color: #dee2e6 !important;
                }
            }

            .dataTables_scrollBody {
                border-bottom: 1px solid #dee2e6;
            }

            .DTFC_LeftBodyWrapper {
                top: 2px !important;

                table {
                    margin: 0px !important;
                }
            }


        }

        .zone-mappings {
            span {
                color: #f672a7;
                font-size: 11px;
                font-weight: bold;
                cursor: pointer;
            }
        }

        .pp-text {
            margin-left: 65px;
        }


    }
}

.cycle-passed {
    color: #a7a7a7 !important;

    text-decoration: line-through;
}

.passed {
    color: #607D8B;
}

.cycle-recent {
    color: hotpink !important;
}

.bg-email {
    margin-bottom: 10px;
    display: flex;
    font-size: 12px;

    span {
        padding: 2px 5px;
        border-radius: 5px;

        color: #fff;
    }

    .name {
        background-color: grey;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding-right: 10px;
    }

    .email {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        background-color: orange;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        margin-left: -5px;
    }
}

.navbar-custom {
    background-color: var(--bs-topbar-bg);
    -webkit-box-shadow: 10px 0px 14px rgba(54, 53, 53, .1);
    box-shadow: 10px 0px 14px rgba(54, 53, 53, .1);
    left: 280px;

    .active-link {
        border-bottom: solid 2px #1F9FA0;
    }

    .logo-box {

        @media (max-width: 991.98px) {
            display: block;
        }
    }

    .button-menu-mobile {
        display: none;

        @media (max-width: 991.98px) {
            display: block;
        }

        i {
            &::before {
                color: var(--bg-color-primary);
            }
        }
    }
}

.topnav-menu-left {
    @media (max-width: 991.98px) {
        margin-left: 200px !important;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
}

html[data-sidebar-size="condensed"] {
    .logo-box {
        width: 205px !important;
    }

    .navbar-custom {
        left: 0px;

        .topnav-menu-left {
            margin-left: 205px !important;
        }

        .logo-box {
            display: block;
        }

    }

    .left-side-menu {
        width: 0px !important;
        z-index: 5;
        left: -142px;
    }

    .content-page {
        margin-left: 0px !important;
    }
}

.ml-1 {
    margin-left: 1em;
}

.ml-2 {
    margin-left: 2em;
}

.text-right {
    text-align: right !important;
}

.text-pink {
    color: var(--bs-code-color);
}

.operator-checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px 0;
}

.operator-checkbox-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.operator-checkbox-item:hover {
    background-color: #e9ecef;
}

.operator-checkbox-item .form-check {
    margin: 0;
    width: 100%;
}

.operator-checkbox-item .form-check-input {
    margin-top: 0;
    cursor: pointer;
}

.operator-checkbox-item .form-check-label {
    cursor: pointer;
    font-size: 0.875rem;
    margin-left: 6px;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}