* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --custom-yellow: #FFBB38;
    --custom-orange-yellow: #FFF5D9;
    --custom-blue: #4154F1;
    --custom-light-green: #DCFAF8;
    --custom-light-blue: #16DBCC;
    --custom-light-pink: #FFE0EB;
    --custom-light-red: #FE5C73;
    --custom-titan-white: #E7EDFF;
    --custom-heading-color: #343C6A;
    --custom-sub-heading-color: #718EBF;
    --custom-text-color: #636FAE;
    --light: #fff;
}

body {
    margin: 0;
    padding: 0;
    background-color: #F2F5FD;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    object-fit: cover;
}

textarea {
    resize: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input[type=color]::-webkit-color-swatch {
    padding: 0;
    border-radius: 5px;
}

.logo-img {
    max-width: 250px;
}

.custom-btn {
    background-color: var(--custom-blue);
    color: var(--light);
    outline: none;
    border: unset;
    padding: 8px;
    font-size: 20px;
    border-radius: 10px;
}

.custom-btn-danger {
    background-color: var(--custom-light-red);
}

.custom-btn-light-blue {
    background-color: #EDEFFF;
    border: 1px solid var(--custom-blue);
    color: var(--custom-blue);
}

.custom-btn-remove-status {
    border: 1px solid var(--custom-light-red);
    color: var(--custom-light-red);
}

.status-btn {
    padding: 5px;
    color: var(--custom-blue);
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid var(--custom-blue);
    width: 130px;
}

.fs-14 {
    font-size: 14px !important;
}

.custom-heading-color {
    color: var(--custom-heading-color);
}

.custom-sub-heading-color {
    color: var(--custom-sub-heading-color);
}

.custom-blue {
    color: var(--custom-blue);
}

.list-style-none {
    list-style-type: none !important;
}

.profile-menu {
    width: 250px;
    box-shadow: 0 0 10px 0 #0000004d;
    border: unset;
    margin-top: 15px !important;
}

.heading {
    font-size: 45px;
    color: var(--custom-heading-color);
    text-transform: capitalize;
}

.subheading {
    color: var(--custom-sub-heading-color);
    font-size: 16px;
}

.icon-heading-rounded-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #D8E5FF;
    background-color: var(--light);
    line-height: 50px;
    text-align: center;
    font-size: 22px;
}

.custom-box {
    background-color: var(--light);
    padding: 40px;
    box-shadow: 0px 0px 4px rgba(65, 84, 241, 0.2);
    border-radius: 30px;
    width: 100%;

}

.custom-input {
    border: 1px solid #C9D5DE;
    border-radius: 10px;
    background-color: var(--light);
    padding: 8px;
    color: var(--custom-heading-color);
}

.custom-input:focus {
    box-shadow: unset;
    border-color: var(--custom-blue);
}

.custom-input:focus-visible {
    outline: unset;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
}

.form-label {
    font-size: 16px;
    color: var(--custom-text-color);
    font-weight: 500;
}

/* Loader */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #000000;
    border-radius: 50%;
    border-right-color: #febc35;
    animation: l15 1s infinite linear;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
}

.loader::after {
    margin: 8px;
    animation-duration: 3s;
}

@keyframes l15 {
    100% {
        transform: rotate(1turn)
    }
}

/* Login Design */
.login-img-box {
    background-image: url('../images/login-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
}

.custom-input#password {
    padding-right: 50px;
}

.password-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
}

.otp-digit-group .input-otp-field {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px solid #C9D5DE;
    text-align: center;
}

/* Header */

.header {
    height: 80px;
}

/* Sidebar */
.sidebar {
    /* padding-top: 80px !important; */
    z-index: 1;
    max-width: 280px;
    width: 280px;
    position: relative;
    height: 100vh;
    transition: all 0.3s;
    padding: 10px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
    position: fixed;
}

.sidebar-nav .sidebar-item {
    display: block;
    padding: 17px 0;
    padding-left: 25px;
    position: relative;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--custom-sub-heading-color);
}

.sidebar-nav #platform-menu li {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 500;
    color: var(--custom-sub-heading-color);
    padding-left: 25px;
}

.sidebar-nav #platform-menu li a {
    padding: 17px 0;
    display: block;
    padding-left: 25px;
    font-weight: 500;
    font-size: 18px;
}

.sidebar-nav .sidebar-item.active,
.sidebar-nav #platform-menu li a.active {
    background: linear-gradient(90deg, #F1F5FF 0%, #C4CAFF 121.62%);
    border-radius: 0px 5px 5px 0px;
    box-shadow: inset 0px 0px 4px rgba(65, 84, 241, 0.25);
    color: var(--custom-blue);
}

.sidebar-nav #platform-menu li a.active {
    border-radius: 5px;
}

.sidebar-nav .sidebar-item.active::after {
    content: '';
    width: 17px;
    height: 100%;
    background-color: var(--custom-blue);
    top: 0;
    left: -10px;
    position: absolute;
    border-radius: 6px;
}

.sidebar-nav .sidebar-item svg {
    margin-right: 5px;
}

.sidebar-nav .sidebar-item.active svg path {
    stroke: var(--custom-blue);
}

.sidebar-nav .sidebar-heading {
    padding-left: 25px;
    text-transform: uppercase;
    font-size: 15px;
    color: #8D8A8A;
    font-weight: 500;
}

.pagetitle h1 {
    color: var(--custom-heading-color);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 5px;
}

.breadcrumb .breadcrumb-item {
    color: var(--custom-text-color);
    font-size: 15px;
}

.breadcrumb .breadcrumb-item.active::before {
    color: var(--custom-text-color);
}

/* Main */

.main {
    padding: 30px 40px;
    padding-top: 110px;
    margin-left: 280px;
    transition: all 0.3s;
}

.app-count-main .app-count {
    background-color: var(--light);
    padding: 32px 30px;
    box-shadow: 5px 5px 14px -13px #0044ff;
    border-radius: 25px;
}

.app-count p {
    font-size: 16px;
    font-weight: 600;
    line-height: 38px !important;
}

.app-count h3 {
    font-size: 45px;
}

.custom-box-design {
    border-radius: 25px;
    padding: 20px;
    box-shadow: 4px 4px 15px -2px rgba(0, 68, 255, 0.2);
    background-color: var(--light);
}

.custom-table img {
    width: 50px;
    height: 50px;
}

.custom-table tbody tr {
    padding: 5px !important;
}

.platform {
    padding-top: 40px;
}

#showPublishPlatform {
    padding-bottom: 40px;
    padding-top: 20px;
}

.platform-box {
    background-color: var(--light);
    box-shadow: 4px 4px 15px -2px rgba(65, 84, 241, 0.20);
    padding: 40px;
    border-radius: 25px;
}

.platform-box h3 {
    color: var(--custom-heading-color);
    font-size: 25px;
}

.platform-img-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
}

.platform-text {
    color: var(--custom-sub-heading-color);
    font-size: 18px;
    font-weight: 500;
}

.upload-btn {
    border: 1px solid var(--custom-blue);
    background-color: #EDEFFF;
    border-radius: 10px;
    padding: 8px 25px;
    font-size: 18px;
    color: var(--custom-blue);
    font-weight: 500;
}

.account-box {
    padding: 15px;
    border: 1px solid #A5C1F0;
    border-radius: 15px;
}

.account-img {
    width: 71px;
    height: 71px;
    border-radius: 10px;
    background-color: #EDEFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--custom-blue);
    font-weight: 500;
    font-size: 22px;
}

.account-deatils p {
    color: var(--custom-sub-heading-color);
    font-size: 14px;
    font-weight: 500;
}

.account-app-details p {
    color: var(--custom-heading-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.account-round-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--custom-blue);
    font-size: 40px;
    font-weight: 500;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20%;
    left: 5%;
}

.appList-count {
    padding: 5px 30px;
    border-right: 2px solid #CAD9F2;
}

.appList-count:last-child {
    border: 0;
}

.appList-count p {
    font-size: 18px;
    color: var(--custom-heading-color);
    font-weight: 500
}

.appList-count h6 {
    font-size: 30px;
    color: var(--custom-blue);
    font-weight: 500;
}

.custom-ads-checkbox {
    border: 1px solid #C9D5DE;
    border-radius: 10px;
    padding: 10px;
}

.custom-ads-checkbox input {
    position: absolute;
    opacity: 0;
}

.custom-ads-checkbox input+label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 0;
    color: var(--custom-heading-color);
    font-size: 16px;
    font-weight: 500;
    margin-left: 5px;
}

.custom-ads-checkbox input+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 40px;
    height: 40px;
    border: 1px solid #C9D5DE;
    border-radius: 5px;
}

.custom-ads-checkbox input:focus+label:before {
    box-shadow: unset;
}

.custom-ads-checkbox input:checked+label:before {
    background: var(--custom-blue);
    border-color: var(--custom-blue);
}

.custom-ads-checkbox:has(input:checked) {
    border-color: var(--custom-blue);
    background-color: #EDEFFF;
}

.custom-ads-checkbox input:checked+label {
    color: var(--custom-blue);
}

.custom-ads-checkbox input:checked+label:after {
    content: "\F272";
    font-family: bootstrap-icons !important;
    font-size: 28px;
    position: absolute;
    left: 5px;
    top: 0%;
    color: var(--light);
}

.filter-input {
    padding: 12px 10px 12px 40px;
    box-shadow: 4px 4px 15px -5px rgba(0, 68, 255, 0.20);
    border: unset;
    border-radius: 10px;
    background-color: var(--light);
    color: #6080B5;
}

.filter-input:focus {
    box-shadow: 4px 4px 15px -5px rgba(0, 68, 255, 0.20);
    color: #6080B5;
}

.apps-filter .custom-select {
    box-shadow: 4px 4px 15px -5px rgba(0, 68, 255, 0.20);
}

.search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.custom-select {
    padding: 10px 40px 10px 10px;
    border: unset;
    border-radius: 10px;
    background-color: var(--light);
    color: #6080B5;
    appearance: none;
    -webkit-appearance: none;
}

.custom-select:focus-visible {
    outline: unset;
}

.custom-select option {
    border: unset;
}

.app-img-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    background-color: #EDEFFF;
}

#addApplicationModal .custom-select,
#Application-Details .custom-select,
#main-application-Details .custom-select,
#referral-application-Details .custom-select,
#Parameter .custom-select,
#main-parameter .custom-select,
#referral-parameter .custom-select,
#Ads-Settings .custom-select,
#main-ads-Settings .custom-select,
#referral-ads-Settings .custom-select {
    border: 1px solid #C9D5DE;
    color: var(--custom-heading-color);
}

.profile-img img {
    width: 250px;
    height: 250px;
    border: 1px solid var(--custom-blue);
    border-radius: 25px;
}

.profile-upload-img-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--custom-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5%;
    right: -5%;
}

.profile-details h3,
#Ads-Settings h5,
#extraPages h5,
#thirdPartySdksSetting h5 {
    font-size: 20px;
    color: var(--custom-heading-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.profile-details p {
    font-size: 15px;
    color: var(--custom-sub-heading-color);
    font-weight: 500;
}

.img-wrapper img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}

.main-nav.nav-tabs .nav-item {
    padding: 0 5px;
}

.main-nav.nav-tabs .nav-item .nav-link {
    background-color: var(--light);
    box-shadow: 4px 4px 15px -2px rgba(65, 84, 241, 0.20);
    border-radius: 10px;
    padding: 10px 25px;
    width: 100%;
    text-align: start;
    color: var(--custom-sub-heading-color);
    font-weight: 500;
}

.main-nav.nav-tabs .nav-item .nav-link.active {
    border-color: var(--custom-blue);
    color: var(--custom-blue);
}

.form-switch .form-check-input {
    width: 50px;
    height: 25px;
    border-color: #8F99EE;
    background-color: #EDEFFF;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23757dbf'/%3e%3c/svg%3e");
    margin-top: 0;
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%234154F1'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
    box-shadow: unset;
}

.versionUpdate .platform-box,
.redirectApp .platform-box,
#Ads-Settings .platform-box,
#extraPages .platform-box {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.custom-radio {
    position: relative;
    margin-left: 10px;
}

.custom-radio .radio-custom {
    opacity: 0;
    margin: 0px;
}

.custom-radio label {
    padding-left: 10px;
    cursor: pointer;
}

.custom-radio label::before {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 1px solid var(--custom-sub-heading-color);
    background: #fff;
}

.custom-radio .radio-custom:checked+label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    display: inline-block;
    font-size: 11px;
    width: 12px;
    height: 12px;
    background-color: var(--custom-blue);
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.custom-radio .radio-custom:checked+label:before {
    border-color: var(--custom-blue);
}

.custom-radio .radio-custom:checked+label {
    color: var(--custom-blue);
}

.radio-custom-label {
    color: var(--custom-sub-heading-color);
}

.monetize-nav .nav-link {
    border-radius: 0;
    border: 0;
    background-color: #EDEFFF;
    box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.monetize-nav .nav-item:first-child .nav-link {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.monetize-nav .nav-link:hover {
    border-radius: 0;
    border-color: unset;
    background-color: inherit;
}

.monetize-nav .nav-link.active {
    border: unset;
    border-radius: 0;
    background-color: var(--custom-blue);
    color: var(--light);
}

.app .monetize-setting{
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -10px;
    right: -10px;
}

.input-group .custom-input {
    border-radius: 10px !important;
    padding-right: 60px;
}

.input-group .closeBtn {
    position: absolute !important;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 5px !important;
    background-color: #FE5C73;
    border: unset;
    color: var(--light);
}

.input-group .closeBtn i::before{
    vertical-align: baseline;
}

.container {
    max-width: 100%;
    padding: 0 15px;
}

.change-password-div .button-container{
    margin-top: 65px;
}

/* Media Query */

@media (max-width: 1024px) {

    .heading {
        text-align: center;
        font-size: 30px;
    }

    .profile-title {
        text-align: left
    }

    .d-sm-block {
        display: block !important;
    }

    .account-round-img {
        width: 80px;
        height: 80px;
        margin-top: 7px;
    }

    .account-platform-box {
        padding-top: 50px;
    }

    .profile-title {
        text-align: left
    }
}

@media (max-width: 991px) {

    .sidebar {
        z-index: 2;
        width: 300px;
        max-width: 300px;
    }

    .main {
        margin-left: 0;
    }

    #addApplicationModal .modal-dialog {
        max-width: 700px;
    }

    .change-password-div {
        padding-top: 20px;
    }

    .profile-title {
        text-align: left
    }

    .change-password-div .button-container{
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .login-img-box {
        display: none !important;
    }

    .form-main-div {
        width: 100%;
    }

    .heading {
        text-align: center;
        font-size: 30px;
    }

    .subheading {
        text-align: center;
    }

    .forgotpassword-main-div {
        width: 100%;
    }

    .otp-verify-main-div {
        width: 100%;
    }

    .resetpassword-main-div {
        width: 100%;

    }

    .otp-digit-group .input-otp-field {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        border: 1px solid #C9D5DE;
        text-align: center;
    }

    .click-here {
        display: inline-block;
        margin-top: 5px;
    }

    .otp-digit-group {
        justify-content: space-between;
    }

    .input-otp-field {
        /* width: 50px;
        height: 45px;
        margin: 8px 10px;
        font-size: 1rem; */
        max-width: 60px;
        margin: 0 5px;
        font-size: 18px;

    }

    .custom-box {
        padding: 25px;

    }

    .my-3 {
        margin-bottom: 15px;
    }

    /* publish platform page */

    .pagetitle h1 {
        font-size: 1.2rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .custom-btn {
        font-size: 16px;
        padding: 8px;
    }

    .platform-item {
        flex: 1 1 150px;
    }

    .platform .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .platform-box h3 {
        font-size: 20px;
    }

    .platform-box {
        padding: 18px;
    }

    .modal-content {
        padding: 1rem;
    }

    .custom-input {
        width: 100%;
    }

    .custom-btn-account {
        width: 100%;
        display: block;
        margin: 10px 0 0 0;
    }

    .button-div {
        flex-wrap: wrap;
        width: 100%;
        text-align: center;
    }

    .account-round-img {
        width: 70px;
        height: 70px;
        margin-top: 10px;
    }

    .change-password-div {
        padding-top: 20px;
    }

    .profile-title {
        text-align: left
    }

    #addApplicationModal .modal-dialog {
        max-width: 550px;
    }

    .bi-plus-lg::before {
        content: "\f64d";
        margin-top: 9px;
    }
}

@media (max-width: 670px) {
    .monetizePlatformHeading div {
        width: 100%;
        text-align: end;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .otp-digit-group input {
        max-width: 50px;
        margin: 0 3px;
        font-size: 16px;
    }

    .heading {
        font-size: 20px;
    }

    .subheading {
        font-size: 14px;
    }

    .main {
        padding: 20px;
        padding-top: 110px;
    }

    .publish-noavalible-btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .main {
        margin-left: 0;
        padding: 10px;
        padding-top: 101px;
    }

    .pagetitle h1 {
        font-size: 1.2rem;
    }

    /* Publish Application Account */


    .account-round-img {
        width: 60px;
        height: 60px;
        margin-top: 29px;
    }

    .account-platform-box {
        padding-top: 50px;
    }

    .profile-save-btn {
        width: 100%;
    }

    .profile-title {
        text-align: left
    }

    .publish-platform-account-save-cancle-btn {
        width: 100%;
    }

    .UpdateApplication-main-div {
        padding: 15px;
        padding-top: 87px;
    }
}

@media (max-width: 575px){

    .upload-btn {
        width: 100%;
    }

    #addApplicationModal button,
    #addCategoryModal button,
    #showPublishPlatform button,
    #updateMonetizeModal button {
        width: 100%;
    }
}

@media (max-width:500px) {
    .ads-custom-radio-btn .form-label + div {
        flex-direction: column;
        align-items: start !important;
    }

    .platform-ads-setting .ads-custom-radio-btn .form-label + div {
        flex-direction: row;
        align-items: center !important;
    }
}

@media (max-width: 469px) {
    .addApplicationBtn {
        margin-top: 8px;
    }

    .platform-ads-setting .ads-custom-radio-btn .form-label + div {
        flex-direction: column;
        align-items: start !important;
    }

    .addCategoryBtn {
        width: 100%;
        text-align: end;
        margin-top: 8px;
    }
}


@media (max-width: 350px) {
    .chartBox .form-select {
        width: 100% !important;
        margin-top: 10px;
    }
    
    .ads-custom-radio-btn {
        flex-direction: column;
    }
}

@media (max-width: 320px) {
    .login-img-box {
        display: none !important;
    }

    .form-main-div {
        width: 100%;
    }

    .heading {
        text-align: center;
        font-size: 30px;
    }

    .subheading {
        text-align: center;
    }

    .forgotpassword-main-div {
        width: 100%;
    }

    .otp-verify-main-div {
        width: 100%;
    }

    .click-here {
        display: inline-block;
        margin-top: 5px;
    }

    .otp-digit-group {
        justify-content: space-between;
    }

    .otp-digit-group input {
        max-width: 50px;
        margin: 0 3px;
        font-size: 16px;
    }

    .heading {
        font-size: 20px;
    }

    .subheading {
        font-size: 14px;
    }

    .save-btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .cancle-btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .profile-title {
        text-align: left
    }

    .sidebar {
        width: 100%;
        max-width: 100%;
    }

    .description-section {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {

    .otp-digit-group input {
        max-width: 50px;
        margin: 0 3px;
        font-size: 16px;
    }

    .heading {
        font-size: 20px;
    }

    .subheading {
        font-size: 14px;
    }

    .login-img-box {
        display: none !important;
    }

    .form-main-div {
        width: 100%;
    }

    .forgotpassword-main-div {
        width: 100%;
    }

    .forgotpassword-page-image {
        display: none !important;
    }

    .resetpassword-main-div {
        width: 100%;
    }
}

.status-btn-custom {
    border: 1px solid #FF5733;
    color: #FF5733;
    background-color: transparent;
}

.status-btn-publish {
    border: 1px solid green;
    color: green;
    background-color: transparent;

}

.setting-btn {
    background-color: white;
    color: #718EBF;
    border: 1px solid #718EBF;
}

.app-section {
    width: 100%;
    border: 1px solid #718EBF;
    border-radius: 30px;
}

.app-image {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    border: 1px solid #C9D5DE;
}

.image-button {
    margin-top: 10px;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.appliction-side-div {
    margin-left: 30px;
}

.p-text {
    font-size: 22px;
    font-weight: 500;
}

.p-text-1 {
    margin-left: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #636FAE;
}

.svg {
    margin-top: 4px;
}

.main-app-div {
    width: 100%;
    border: 1px solid #C9D5DE;
    border-radius: 30px;
}

.spinner-border{
    width: 27px;
    height: 27px;
}

.column-heading-text{
    font-size: 15px;
}

.rdt_TableHeadRow{
    background-color: #EDEFFF !important;
    padding: 10px;
    border-radius: 12px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible{
    outline: unset;
}

.tooltip_box{
    border-radius: 5px;
    padding: 10px 25px !important;
    border: unset !important;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 30%);
}

.tooltip_box [data-reach-menu-item]{
    padding: 5px 0;
    font-weight: 500;
    font-size: 14px;
}

.tooltip_box [data-reach-menu-item]:hover{
    background-color: transparent !important;
    color: var(--custom-blue);
}

.actionBtn{
    width: 40px;
    height: 34px;
}