@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-brands-400.eot");
    src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fal,
.far {
    font-family: "Font Awesome 5 Pro";
}

.fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}


/* ::-webkit-scrollbar {
    width: 5px;
}

 ::-webkit-scrollbar-track {
    background: var(--blue);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

 ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: var(--green);
} */

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    background: var(--black);
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
    text-decoration: none;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

img {
    max-width: 100%;
}

p {
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

:root {
    --black: #231F20;
    --darkgrey: #6C757D;
    --grey: #F5F5F5;
    --white: #ffffff;
    --Purple: #7E5BA6;
    --lime: #80BC00;
    --orange: #E4B039;
    --red: #EF3946;
    --blue: #26A9E1;
    --font40: 40px;
    --font22: 22px;
    --font20: 20px;
    --font18: 18px;
    --font16: 16px;
}

.comnpadding {
    padding: 120px 0;
}

.comntitle {
    font-size: var(--font22);
    margin-bottom: 25px;
    color: var(--black);
    position: relative;
    padding-left: 15px;
}

.comntitle span {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
}

.comnbtn {
    font-size: var(--font20);
    position: relative;
    transition: .3s;
    background-color: var(--blue);
    color: var(--white);
    border: none;
    z-index: 1;
    padding: 10px 30px;
    border-radius: 10px;
    overflow: hidden;
}

.comnbtn::before,
.comnbtn::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: var(--black);
    z-index: -1;
    -webkit-transition: linear .2s;
    -o-transition: linear .2s;
    transition: linear .2s;
}

.comnbtn::after {
    left: auto;
    right: 0;
}

.comnbtn:hover::before,
.comnbtn:hover::after {
    width: 55%;
}

.view_btn {
    font-size: var(--font20);
    transition: unset;
}

.view_btn i {
    padding-left: 10px;
    transition: unset;
}

.view_btn:hover {
    color: var(--black);
}


/* ================= colour class start here ================= */

.Purple_bg {
    background: var(--Purple);
}

.orang_bg {
    background: var(--orange);
}

.red_bg {
    background: var(--red);
}

.blue_bg {
    background: var(--blue);
}

.lime_bg {
    background: var(--lime);
}

.Purple_opacity {
    background: rgb(126 91 166 / 10%);
}

.orang_opacity {
    background: rgb(228 176 57 / 10%);
}

.red_opacity {
    background: rgb(239 57 70 / 10%);
}

.blue_opacity {
    background: rgb(38 169 225 / 10%);
}

.lime_opacity {
    background: rgb(128 188 0 / 10%);
}

.Purple_clr {
    color: var(--Purple);
}

.orang_clr {
    color: var(--orange);
}

.red_clr {
    color: var(--red);
}

.blue_clr {
    color: var(--blue);
}

.lime_clr {
    color: var(--lime);
}


/* ================= colour class end here ================= */


/* ============================================================================================================= */

.main_box {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

.sidebar {
    width: calc(250px - 0px);
    height: 100vh;
    overflow: auto;
    z-index: 4;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.sidebar.menuclose {
    width: calc(70px - 0px);
}

.mange_div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 25px 0;
    padding-bottom: 15px;
}

.mange_div::after {
    content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, #7e5ba6 20%, #ffffff 20%, #ffffff 40%, #26a9e1 40%, #26a9e1 60%, #7db9e8 60%, #ef3946 60%, #ef3946 80%, #8ec640 80%, #8ec640 100%);
    padding: 1px;
}

.sidelogo {
    width: 180px;
    height: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 300ms ease-in-out;
}

.mlogo {
    position: absolute;
    inset: 0;
    margin: auto;
}

.sidebar.menuclose .mlogo {
    display: none;
}

.slogo {
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0;
}

.sidebar.menuclose .slogo {
    opacity: 1;
}

.sidebar li a {
    font-size: var(--font16);
    color: var(--white);
    padding: 13px 20px;
    display: flex;
    overflow: hidden;
}

.sidebar li a img {
    margin-right: 10px;
    font-size: 20px;
}

.sidebar li .active {
    color: var(--lime);
}

.sidebar li a.active img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(37%) saturate(3707%) hue-rotate(37deg) brightness(95%) contrast(101%);
}

.sidebar li a span {
    text-wrap: nowrap;
}

.sidebar.menuclose li a span {
    display: none;
    position: absolute;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}

.sidebar.menuclose li a {
    padding: 13px 20px;
    text-align: center;
}

.main_wrap_div {
    width: calc(100% - 260px);
    height: calc(100vh - 20px);
    background: var(--grey);
    border-radius: 30px;
    margin: 10px 10px 0 0;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    /* float: right; */
}

.main_wrap_div {
    padding: 30px;
}

.main_wrap_div.mrauto {
    width: calc(100% - 80px);
}

header {
    position: sticky;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
    justify-content: space-between;
    top: 0;
    margin-bottom: 1%;
    /*background-color: #fff;*/
}

.topleft {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 40%;
}

.compare {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 15px;
    /*padding-right: 30px;*/
    /*margin-right: 30px;*/
    /*border-right: 1px solid rgb(0 0 0 / 10%);*/
}

.compare li input {
    background: url("../img/calendar.png") no-repeat;
    background-size: 20px;
    background-position: 10px 14px;
    padding-left: 40px;
    padding-right: 15px;
    font-size: 12px !important;
    /*max-width: 170px;*/
    max-width: 247px;
    font-family: "Inter", sans-serif ;
}

select,
input {
    height: 50px;
    border: 1px solid #878787;
    border-radius: 10px;
}
textarea{
    height: 100px;
}

input::placeholder {
    color: var(--black);
}

.topleft h1 {
    margin-bottom: 0;
    padding-left: 0;
}

.topright {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
}

.userprofile {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.userprofile img {
    max-width: 50px;
    margin-right: 15px;
}

.userprofile span {
    color: var(--black);
    font-size: 16px;
    position: relative;
    padding-right: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.userprofile span::before {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.userprofile span i {
    background: #ffffff;
    color: #4acee8;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    display: inline-block;
    margin-right: 5px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.userprofile .dropdown {
    position: absolute;
    -webkit-box-shadow: 0px 6px 6px #00000029;
    box-shadow: 0px 6px 6px #00000029;
    border-radius: 10px;
    background: var(--white);
    min-width: 160px;
    height: 0px;
    opacity: 0;
    visibility: hidden;
    right: 0;
    top: 60px;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}

.userprofile .show {
    height: auto;
    visibility: visible;
    opacity: 1;
    display: block;
}

.userprofile .dropdown a {
    color: #262626;
    font-size: 15px;
    display: block;
    padding: 8px 15px;
    border-bottom: 1px solid #dedede;
}

.userprofile .dropdown a i {
    color: var(--blue);
    margin-right: 5px;
}

.userprofile .dropdown a:hover i,
.userprofile .dropdown a:hover {
    color: #ffffff;
    background: #00bff3;
}


/* ============================================================================================================= */


/* =========================================== main content css start  ================================================================== */

.main_contant {
    margin-top: 5px;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 120px);
}

.comnbox {
    background: var(--white);
    border-radius: 25px;
    padding: 25px;
    margin-top: 25px;
    overflow: hidden;
}

.advertisement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.advertisement .comntitle {
    margin-bottom: 0;
}

.add_box {
    border-radius: 30px;
    padding: 20px;
}

.count_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.count {
    font-size: var(--font40);
    font-weight: 600;
    color: var(--black);
}

.add_box p {
    font-size: var(--font18);
}

.percentage {
    font-size: 22px;
    font-weight: 600;
    display: none;
}

.percentage i {
    margin-left: 5px;
}

.callrailbox {
    display: flex;
    flex-wrap: wrap;
}

.chart_img {
    width: 50%;
    display: flex;
    justify-content: center;
}

.chart_img img {
    width: 100%;
}

.list_style_callrail {
    width: 50%;
}

.list_style_callrail li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.list_style_callrail li:last-child {
    margin-bottom: 0;
}

.list_style_callrail span {
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50px;
}

.list_style_callrail li>p {
    font-size: var(--font18);
    padding-left: 20px;
    margin-bottom: 0;
}

.durationbox {
    background: var(--darkgrey);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    color: var(--white);
    margin-top: 50px;
}

.avreage {
    font-size: var(--font18);
}

.dur_time {
    font-size: var(--font22);
    font-weight: 600;
}

.diffTotalCalls{
    color: #000 !important;
    margin-bottom: 0;
}

.list_style_google li {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(112 112 112 / 19%);
    color: var(--black);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.list_style_google li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.list_style_google li span {
    width: 22%;
    font-size: var(--font18);
    display: inline-block;
    text-align: center;
}

.list_style_google li span img {
    max-width: 40px;
}

.list_style_google li span:first-child {
    text-align: left;
}

.list_style_google li span:last-child {
    text-align: right;
}


/* ============================================ main content css end ================================================================= */


/* ============================================ main content css end ================================================================= */

.calendar_btn,
.mobilemenubar,
.profile_right_side {
    display: none;
}

.btn-close:hover {
    opacity: 1;
}

.fa-bars {
    font-size: 18px;
    color: #80bc00;
}
.d-none {
    display: none !important;
}

/*Page loader css starts*/
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    text-align: center;
}

.spinner {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: relative;
}

.spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff; /* White border */
    border-radius: 50%;
    animation: spinner 1.2s linear infinite;
    border-color: #007bff transparent transparent transparent; /* Blue and transparent */
}

.spinner div:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner div:nth-child(2) {
    animation-delay: -0.3s;
}

.spinner div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*Page loader css ends*/




/*======================= 18-12-24 css start here ==============================*/

.form-group{
    margin-bottom: 25px;
}
label{
    font-size: var(--font16);
    margin-bottom: 10px;
}
.card-title{
    margin: 15px 0 15px 0;
}
.mobile_dropdown{
    display: none;
}
.fix_div {
    position: sticky;
    top: 0;
    background: var(--grey);
    z-index: 1;
    background: var(--white);
    border-radius: 25px;
    padding: 25px;
}
.tab_bar{
    border: none;
}
.tab_bar .nav-link{
    border-radius: 0;
    border: none;
}

.tab_bar li:nth-child(1) {
    background: rgb(126 91 166 / 10%);
}
.tab_bar li:nth-child(2) {

    background: rgb(128 188 0 / 10%);
}
.tab_bar li:nth-child(3) {
    background: rgb(38 169 225 / 10%);
}
.tab_bar li:nth-child(4) {
    background: rgb(239 57 70 / 10%);
}


.tab_bar li:nth-child(1) a.active {
    background: rgb(126 91 166 / 100%);
}
.tab_bar li:nth-child(2) a.active {

    background: rgb(128 188 0 / 100%);
}
.tab_bar li:nth-child(3) a.active {
    background: rgb(38 169 225 / 100%);
}
.tab_bar li:nth-child(4) a.active {
    background: rgb(239 57 70 / 100%);
}
/*======================= 18-12-24 css end here ==============================*/
#downloadpdfbtn {
    padding: 11px;
    width: 100%;
    text-align: center;
    display: inline-block;
}




/*======================= Login page css start here ==============================*/

.login_page {
    height: 100vh;
    position: relative;
}
.login_page:after {
    content: " ";
    background-image:url("../img/login_line.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.admin_login{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo_img {
    width: 50%;
    text-align: center;
}

.logo_img img {
    max-width: 350px;
    width: 100%;
}

.form_part {
    width: 50%;
    height: 100%;
    background-image:url("../img/patterns_1.png") ;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_form {
    width: 50%;
    padding: 30px;
    background: white;
    border-radius: 30px;
}

.login_form h4 {
    font-size: 26px;
    font-weight: 600;
    color: #80BC00;
}

.input_form input {
    font-size: 16px;
    background-color: #E8E8E8;
    border-radius: 10px;
    width: 100%;
    border: none;
    height: 60px;
    padding: 0 50px;
    position: relative;
    margin: 30px 0;
}

.input_form {
    position: relative;
}

.input_form i {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 15px;
    color: #918F90;
    transform: translateY(-50%);
}

.input_form .profile_icon,
.input_form .lock_icon {
    background-repeat: no-repeat;
    background-size: 20px;
}

.input_form .profile_icon {
    background-image: url("../img/email_icon.png");
    background-position: 18px 23px;

}

.input_form .lock_icon {
    background-image: url("../img/lock__icon.png");
    background-position: 18px 14px;
}

.rember_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}
.rember_div .form-check{
    display: flex;
    align-items: center;
    gap: 8px;
}

.rember_div .form-check-input[type=checkbox] {
    border-radius: 0;
    width: 15px;
    height: 15px;
}

.rember_div .form-check-input:checked {
    background-color: #80BC00;
    border-color: #80BC00;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: #80BC00;
}

.login_form .comnbtn {
    background: #80BC00;
    margin-top: 30px;
    width: 100%;

}

.forget_pwd {
    font-size: 18px;
    color: #231F2080;
    text-decoration: none;
}

.forget_pwd:hover {
    color: #80BC00;
}

/*======================= Login page css end here ==============================*/
/* Adjust the height of the input box */
.select2-container .select2-selection--single {
    height: 40px; /* Match your desired height */
    line-height: 40px; /* Align text vertically */
    border: 1px solid #ddd; /* Border styling */
    border-radius: 5px; /* Rounded corners */
}

/* Adjust font size */
.select2-container .select2-selection__rendered {
    font-size: 14px; /* Adjust font size */
    color: #333; /* Text color */
}

/* Dropdown arrow customization */
.select2-container .select2-selection__arrow {
    height: 40px; /* Align arrow vertically */
}

/* Dropdown menu customization */
.select2-container .select2-dropdown {
    border: 1px solid #ddd; /* Border styling */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for a modern look */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    margin-top: 9px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 8px;
    right: 1px;
    width: 20px;
}
.select2-container .select2-selection--single {
    height: 45px;
    line-height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    height: 33px;
    border-radius: 0;
}

.call_rail_chart {
    height: 184px !important;
    width: 184px !important;
}
#keywordstable tbody tr td:last-child,
#keywordstable thead tr th:last-child{
    text-align: right;
}

.pagination .page-item .page-link{
    z-index: unset;
}

.sourcesImage{
    max-width: 40px;
    height: auto;
    width: 100%;
}
[name="daterange"], [name="second_daterange"] {
    border-radius: 10px;
}
