@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');


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

.font-family-thomna {
    font-family: "thomna";
}

img {
    max-width: 100%;
}

:root {
    --theme-primary-color: #ff296d;
}

a {
    color: var(--theme-primary-color) !important;
    text-decoration: none;
}


.ms-3 {
    margin-left: 0.3rem !important;
}


#modelsModal {
    z-index: 99999;
}

.select2-container--bootstrap-5 .select2-dropdown {
    z-index: 99999 !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    box-shadow: none !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    box-shadow: none !important;
}


.text-color-theme {
    color: var(--theme-primary-color) !important;
}

.text-bg-theme {
    background-color: var(--theme-primary-color) !important;
}

.text-gradient {
    background: linear-gradient(to right, #ff5700, #ff1028, #ff0d94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #240e0e00;
    font-weight: 600;
}

.form-control {
    border-radius: 10px;
    height: 40px;
    font-size: 16px !important;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--bs-border-color);
}

.input-group-text.transparent {
    background: transparent;
    border-right: none;
    border-radius: 10px;
    /* padding-right: 2px; */
}

.input-group-text.transparent+.form-control:not(.is-invalid) {
    border-left: none;
}


.btn-theme {
    background: linear-gradient(18deg, rgba(254, 100, 0, 1) 0%, rgba(255, 17, 113, 1) 100%);
    width: 100%;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    box-shadow: none;
    border: none;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    border-radius: 60px;
}

.btn-theme-gradient {
    background: linear-gradient(to right, #ff5700, #ff1028, #ff0d94);
    color: #fff !important;
    font-weight: 600;
}

.input-group .btn-theme {
    width: unset;
    height: unset;
    font-size: unset;
    border-radius: 10px;
}


.auth-layout .form-section {
    width: 450px;
    margin: auto;
    max-width: 90%;
}

.auth-layout .testimonial-section {
    background-image: url('../images/login-testimonial.jpg');
    background-size: cover;
    background-position: center;
}

.auth-layout .form-section .page-title {
    font-weight: bold;
}

.auth-layout .testimonial-section .testimonial {
    width: 540px;
    margin: auto;
    max-width: 90%;
}

.auth-layout .testimonial-section .testimonial .user-message p {
    font-size: 31px;
    line-height: 1.7;
}

.auth-layout .testimonial-section .testimonial .user-image img {
    border: 5px solid #f3f3f35c;
    padding: 5px;
}


#table-targeting td {
    min-width: 150px;
}

#pills-tabContent .table-responsive {
    min-height: 100vh;
}

/* [id^="jsx-iframe-"] {
    background: #931e1e !important;
    padding: 10px;
} */

/* loader css */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000009e;
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
}



.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #fff;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {

    80%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

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

/* loader css ended */


.search-section .search-input {
    background: #f0f0f0;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-section .search-input input {
    border: none;
    background: transparent;
    font-size: 23px;
    width: 100%;
    outline: none !important;
}

.min-vh-75 {
    min-height: 70vh;
}

.user-top-right-menu {
    padding: 0;
    display: flex;
    font-size: 14px;
    gap: 15px;
    list-style: none;
    align-items: center;
    margin: 0;
}

.user-top-right-menu a {
    color: #000;
    font-weight: bold;
}

.centered-content {
    min-height: calc(100vh - 150px);
    display: flex;
}

.add-insta-account {
    margin: auto;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 20px;
    width: 800px;
    max-width: 90%;
    height: 500px;
    display: flex;
}

.add-insta-account .title {
    font-weight: bold;
}

.add-insta-account .sub-title {
    font-size: 12px;
    color: var(--bs-gray-500);
}

.insta-account-info {
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    padding: 10px;
    gap: 12px;
    /* width: max-content; */
    margin: auto;
    align-items: center;
    max-width: 100%;
}

.insta-account-info .profile-pic {
    min-width: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.insta-account-info .user-info .verified {
    width: 18px;
    display: inline-block;
}

.insta-account-info .user-info h5 {
    font-size: 18px;
    font-weight: 600;
    word-break: break-all;
}

.insta-account-info .user-info p {
    color: var(--bs-gray-500);
    font-size: 14px;
}

.insta-account-info .action {
    padding: 8px;
    font-size: 25px;
    border: 2px solid;
    color: var(--theme-primary-color);
    border-radius: 8px;
    line-height: 25px;
}


/* payment page css */
#insta-payment-page .main-content {
    display: flex;
    width: 800px;
    max-width: 90%;
    margin: 50px auto;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
}

#insta-payment-page .main-content .left-section {
    min-width: 310px;
}

#insta-payment-page .insta-account-info {
    box-shadow: 0 0 8px -2px #999;
    margin: 0 !important;
    width: 100%;
}

/*#insta-payment-page .insta-account-info .action {*/
/*    margin-left: auto;*/
/*}*/

#insta-payment-page .plans-section {
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 8px -2px #999;
}

#insta-payment-page .plans-section .card-subtitle {
    font-size: 12px;
    color: var(--bs-gray-500);
}

#insta-payment-page .plans-section .plans-list .plan-block {
    box-shadow: 0 0 8px -2px #ccc;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#insta-payment-page .plans-section .plans-list .plan-block .plan-subtitle {
    color: var(--bs-gray-500);
    margin: 0;
}

#insta-payment-page .plans-section .plans-list .plan-block .plan-action input {
    width: 25px;
    height: 25px;
    accent-color: var(--theme-primary-color);
}

#insta-payment-page .selected-plan-complate-details {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    overflow: auto;
    box-shadow: 0 0 8px -2px #999;
    display: none;
}

#insta-payment-page .selected-plan-complate-details.active {
    display: block;
}

#insta-payment-page .selected-plan-complate-details p {
    font-size: 12px;
    color: var(--bs-gray-500);
}

#insta-payment-page .selected-plan-complate-details p.plan-price {
    color: var(--bs-black) !important;
    font-size: 40px !important;
    font-weight: bold;
}

#insta-payment-page .selected-plan-complate-details p.plan-price>span {
    font-size: 12px;
    color: var(--bs-gray-500);
    font-weight: normal;
}

#insta-payment-page .selected-plan-complate-details .plan-benifits {
    padding: 0;
    list-style: none;
    line-height: 35px;
    font-size: 14px;
}


.paypal-button.paypal-button-color-gold,
.paypal-button-row.paypal-button-color-gold .menu-button {
    background: #ffc439;
    background: linear-gradient(to right, #ff5700, #ff1028, #ff0d94) !important;
    color: white;
    font-weight: bold;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: linear-gradient(to right, #ff5700, #ff1028, #ff0d94);
}

/* payment page css ended */


/* insta dashboard header css */
.insta-dahboard-header .account-block {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 -23px 34px -6px #e3e3e3 inset;
}

.insta-dahboard-header .account-block .account-switcher {
    width: 30px;
    align-self: center;
}

.insta-dahboard-header .account-block .account-switcher .dropdown-menu {
    width: max-content;
}

.insta-dahboard-header .account-block .account-switcher .dropdown-menu p {
    max-width: 200px;
    white-space: collapse;
}

.insta-dahboard-header .account-block .account-switcher .dropdown-toggle::after {
    content: unset;
}

.insta-dahboard-header .account-block .account-image {
    width: 40px;
    align-self: center;
}

.insta-dahboard-header .account-block .account-info {
    align-self: center;
}

.insta-dahboard-header .account-block .account-info h4 {
    font-size: 20px;
    font-weight: bold;
}

.insta-dahboard-header .account-block .account-info p {
    font-size: 14px;
    color: var(--bs-gray-500);
    line-height: 18px;
}

.insta-dahboard-header .account-block .auto-mode button {
    /* background: #f4f3f8; */
    font-weight: 600;
    color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    border-radius: 0;
}

.insta-dahboard-header .dashboard-links {
    display: flex;
    align-items: center;
    background: #ededed;
    border-radius: 20px;
    /* overflow: hidden; */
}

.insta-dahboard-header .dashboard-links>div {
    padding: 20px 30px;
    text-align: center;
    height: 100%;
    position: relative;
}

.insta-dahboard-header .dashboard-links>div:first-child {
    border-radius: 20px 0 0 20px;
}

.insta-dahboard-header .dashboard-links>div:last-child {
    border-radius: 0 20px 20px 0;
}

.insta-dahboard-header .dashboard-links>div .badge {
    position: absolute;
    top: -7px;
    right: -7px;
    z-index: 9;
    background: #ff4e0e;
    border: 1px solid;
    border-radius: 0;
}

.insta-dahboard-header .dashboard-links>div img {
    width: 40px;
    text-align: center;
    margin-bottom: 5px;
}

.insta-dahboard-header .dashboard-links>div h5 {
    font-size: 14px;
    margin: 0;
    color: #000;
}

.insta-dahboard-header .dashboard-links>div.active {
    background: linear-gradient(102deg, rgba(255, 85, 1, 1) 0%, rgba(255, 1, 134, 1) 100%);
}

.insta-dahboard-header .dashboard-links>div.active img {
    filter: invert(100%);
}

.insta-dahboard-header .dashboard-links>div.active h5 {
    color: #fff;
}


#modelsModal .modes-list .mode:not(.active) p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.account-followers {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    border: 1px solid #ccc;
    box-shadow: 0 -23px 34px -6px #e3e3e3 inset;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
}

.account-followers>div {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* insta dashboard header css ended*/


/* status page css */
.status-container {
    background: #f6f5fa;
    min-height: calc(100vh - 300px);
    margin: 20px 0;
    padding: 50px;
}

.status-container .connect-account {
    width: 600px;
    max-width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 3px 0px #ccc;
}

.status-container .connect-account .left-section {
    text-align: center;
    min-width: 40%;
    width: 250px;
    font-size: 12px;
    padding: 25px;
}

.status-container .connect-account .right-section {
    min-width: 60%;
    padding: 25px;
    border-left: 1px solid #ccc;
}

.status-container .connect-account .right-section .insta-login-form .input-group span {
    background: transparent;
    border-right-width: 0;
    border-radius: 10px;
}

.status-container .connect-account .right-section .insta-login-form .input-group .form-control+span {
    background: transparent;
    border-left-width: 0;
    border-radius: 10px;
    border-right-width: 1px;
}

.status-container .connect-account .right-section .insta-login-form .input-group span+.form-control {
    border-left-width: 0;
    border-right-width: 1px;
    border-radius: 10px;
}

.status-container .connect-account .right-section .insta-login-form .input-group .form-control {
    border-radius: 10px 0px 0 10px;
    border-right-width: 0;
}

.status-container .account-connecting {
    width: 370px;
    background: #fff;
    padding: 20px;
    text-align: center;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 4px 0px #ccc;
    font-size: 14px;
    max-width: 90%;
}

.status-container .account-connecting .wave-img {
    width: 50px;
}

.growth-container {
    background: #f6f5fa;
    min-height: calc(100vh - 300px);
    margin: 20px 0;
    padding: 50px 20px;
}

.growth-container #targeting-tab .nav-link,
.growth-container #welcome_dm-tab .nav-link,
.growth-container #whitelist-tab .nav-link {
    background: #f6f5fa;
    border: 1px solid #ccc;
    border-radius: 0 !important;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.growth-container #targeting-tab .nav-link.active,
.growth-container #welcome_dm-tab .nav-link.active,
.growth-container #whitelist-tab .nav-link.active {
    background: #fff;
}

.growth-container #table-targeting tbody td:not(:last-child),
.growth-container #table-whitelist tbody td:not(:last-child) {
    font-weight: 600;
}

.growth-container #welcome_dm-tabContent .message-input {
    width: 540px;
    max-width: 100%;
}

.growth-container #welcome_dm-tabContent .message-input .form-control {
    border-radius: 0;
    height: 160px;
}

/*--- /.range-slider ---*/

.range-slider-input label {
    width: 110px;
}

.range-slider-input .filter-container {
    min-width: 260px;
}

/* .slider-min-value,
.slider-max-value {
    background: #000;
    padding: 5px;
    color: #fff;
    line-height: 1;
    border-radius: 4px;
} */

.range-slider-input .filter-container .ui-slider-horizontal {
    height: 2px;
    background: #999 !important;
    border: none;
}

.range-slider-input .filter-container .ui-slider-range {
    background: var(--theme-primary-color) !important;
}

.range-slider-input .filter-container .ui-slider-handle {
    border-radius: 50%;
    top: -10px !important;
    border-color: var(--theme-primary-color) !important;
    background: #fff !important;
    height: 20px;
    width: 20px;
}

.range-slider-input .filter-container .tippy-tooltip {
    font-size: 10px;
    padding: 2px 5px;
    min-width: 40px;
}

/*--- /.range-slider ---*/


.gender-input {
    position: relative;
    background: #fff;
    padding: 10px;
    border: 1px solid #999;
    border-collapse: unset;
    min-width: 80px;
    text-align: center;
    border-color: var(--theme-primary-color);
}

.gender-input:nth-child(2) {
    border-right: 0px solid #999;
    border-left: 0px solid #999;
}

.gender-input input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 99;
}

.gender-input input:checked+label {
    background-color: var(--theme-primary-color);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-container {
    background: #f6f5fa;
    min-height: calc(100vh - 300px);
    margin: 20px 0;
    padding: 50px 20px;
}

.dashboard-container .blogs-list {
    height: 417px;
    overflow: scroll;
}

.dashboard-container .graph-action-btn {
    background: #f6f5fa;
    border: 1px solid #ccc;
}

.dashboard-container .graph-action-btn {
    background: #f6f5fa;
    border: 1px solid #ccc;
    font-weight: 500;
}

.dashboard-container .graph-action-btn::after {
    content: unset;
}

.dashboard-container .blog .thumb {
    min-width: 100px;
}


#modelsModal .mode .bi {
    background: #ffe4e4;
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
}

#modelsModal .btn-secondary {
    background: #ffe4e4 !important;
    border-color: #ffe4e4 !important;
    color: #000 !important;
}

#modelsModal .btn-primary {
    background: var(--theme-primary-color) !important;
    border-color: var(--theme-primary-color) !important;
}

#modelsModal .mode.active {
    border-color: var(--theme-primary-color) !important;
}

.gradient-border {
    padding: 2px;
    background: linear-gradient(to right, #fdb428, #f034ca);
    border-radius: 12px;
    margin: 20px 0;
    width: max-content;
}

.dropdown-item:active {
    color: #626262 !important;
    text-decoration: none;
    background-color: white !important;
}

.admin-dashboard #pills-tab {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 40px;
    background: #fff;
}





.admin-dashboard #pills-tab .nav-link {
    background: transparent !important;
    color: #000 !important;
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    padding: 0;
}

.admin-dashboard #pills-tab .nav-link:not(.active) span {
    display: none;
}

.admin-dashboard #pills-tabContent .table-active {
    border-bottom: 5px solid #fff;
}

.admin-dashboard #pills-tabContent .table td {
    font-size: 14px;
}

.admin-dashboard #pills-tabContent .table thead td {
    font-weight: 600;
}

.admin-dashboard #pills-tabContent .table-active td {
    padding: 18px 10px;
    min-width: 110px;
}

/* .admin-dashboard #pills-tabContent .table-active td:last-child {} */

.admin-dashboard #pills-tabContent .table-active td .dropdown-toggle::after {
    content: unset;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.actions {
    border-radius: 20px;
    border-color: var(--theme-primary-color);
    border-width: 2px;
    padding: 0;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.actions li:not(:last-child) {
    border-bottom: 2px solid var(--theme-primary-color);
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags {
    width: 340px;
    padding: 20px;
    border-radius: 20px;
    border-color: var(--theme-primary-color);
    border-width: 2px;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .close-btn {
    position: absolute;
    top: 0;
    font-size: 21px;
    right: 8px;
    color: #000;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input {
    width: 50px;
    border-radius: 30px;
    height: 24px;
    padding: 0px;
    position: relative;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 9;
    left: 0;
    opacity: 0;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input span {
    background: #999;
    width: calc(100%);
    height: calc(100%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input input:checked+span {
    border: 3px solid #fff;
    outline: 2px solid #eceaea;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input span.pink {
    background: var(--theme-primary-color);
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input span.green {
    background: #15f05e;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input span.blue {
    background: #298af8;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input span.brown {
    background: #5c4727;
}

.admin-dashboard #pills-tabContent .table-active td .dropdown-menu.tags .color-input span.purple {
    background: #470168;
}

.admin-dashboard #pills-tabContent .table-active td .sms-dropdown .dropdown-menu {
    width: 357px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--theme-primary-color);
}

.admin-dashboard #pills-tabContent .table-active td .sms-dropdown .dropdown-menu .action-block:not(:last-child) {
    border-bottom: 2px solid var(--theme-primary-color);
}

.profile-container {
    background: #f6f5fa;
    min-height: calc(100vh - 300px);
    margin: 20px 0;
    padding: 10px;
}


.profile-container .search-bar {
    position: relative;
    width: 500px;
    max-width: 100%;
}

.profile-container .search-bar .search-image {
    position: absolute;
    top: 8px;
    left: 10px;
    width: 35px;
}

.profile-container .search-bar .search-input {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: inset 0 -13px 14px 1px #eee;
    width: 100%;
    padding-left: 60px;
}

.profile-container .search-bar .search-input:focus-visible {
    outline: none;
}


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

    .next-line {
        display: block;
    }

    #table-whitelist td {
        min-width: 120px;
        max-width: 215px;
        white-space: nowrap;
        overflow: hidden;
    }

    #table-targeting td {
        min-width: 120px;
        max-width: 215px;
        white-space: nowrap;
        overflow: hidden;
    }

    .mb-3.text-small {
        font-size: 13px;
    }

    .fw-bold.mb-1.required {
        font-size: 14px;
    }

    .btn-theme.button-small {
        height: 51px;
        font-size: 22px;
    }

    .page-title.title-sign {
        font-size: 22px;
    }

    .page-subtitle.mb-4 {
        font-size: 13px !important;
    }

    .insta-2fa-form a.btn {
        font-size: 13px;
    }

    .insta-account-info {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-container .blogs-list {
        height: 419px !important;
        overflow: scroll;
    }

    #personal_info_update_form [type="submit"] {
        width: 100%;
    }

    #password_update_form [type="submit"] {
        width: 100%;
    }

    .manage_account-header a.btn {
        width: 100%;
    }

    .insta-login-form img {
        left: 20px;
    }

    .user-image.my-3 img {
        width: 100px !important;
    }

    /*   .rounded-circle {*/
    /*width: 120px !important;*/
    /*   }*/


    /* .growth-container #table-targeting tbody td:not(:last-child) {*/
    /*	font-weight: 600;*/
    /*	font-size: 10px !important;*/
    /*}*/
    .fw-bold.text-light {
        font-size: 24px !important;
        line-height: 1.4 !important;
    }



    .insta-dahboard-header .account-block {
        flex-wrap: wrap;
        position: relative;
        width: 100%;
    }

    .insta-dahboard-header .account-block .account-info {
        margin: 0 !important;
        align-self: start;
        max-width: calc(100% - 100px);
    }

    .insta-dahboard-header .account-block .account-image {
        width: 40px;
    }

    .insta-dahboard-header .account-block .account-image img {
        width: 40px;
    }

    .insta-dahboard-header .account-block .account-info h4 {
        font-size: 16px;
    }

    .insta-dahboard-header .account-block .auto-mode button {
        position: absolute;
        bottom: 2px;
        right: 14px;
        font-size: 12px;
    }

    .insta-dahboard-header .dashboard-links {
        width: 100%;
    }

    .insta-dahboard-header .dashboard-links>div {
        flex-grow: 1;
        padding: 10px 20px;
    }

    .insta-dahboard-header .dashboard-links>div img {
        width: 25px;
        margin: 0;
    }

    .insta-dahboard-header .dashboard-links>div:not(.active) h5 {
        display: none;
    }

    .insta-dahboard-header .dashboard-links>div>a {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .account-followers {
        padding: 10px 20px;
        gap: 19px;
    }

    .account-followers>div.account-status>p {
        position: relative;
        right: -10px;
    }

    .range-slider-input .filter-container {
        min-width: 170px;
    }

    .nav-pills li:not(.nav-item) a img {
        width: 15px;
        height: auto;
    }

    .status-container {
        padding: 30px 0;
    }

    .status-container .connect-account {
        display: block;
    }

    .status-container .connect-account .right-section {
        border-left: none;
        border-top: 1px solid #ccc;
    }

    .status-container .connect-account .left-section {
        width: 100%;
    }

    .insta-account-block>div {
        width: 100% !important;
        text-align: center;
        justify-content: center;
        margin: 20px 0;
    }

    #insta-payment-page .main-content {
        display: block;
        width: 90%;
        max-width: 90%;
    }

    #insta-payment-page .main-content .left-section {
        margin-bottom: 25px;
    }

}













.switch {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    vertical-align: top;
}

.switch>span {
    position: absolute;
    top: 9px;
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    text-align: center;
}

.switch>span>a {
    color: #000 !important;
}

input.check-toggle-round-flat:checked~.off {
    color: #F36F25;
}

input.check-toggle-round-flat:checked~.on {
    color: #fff;
}

.switch>span.on {
    left: 0;
    padding-left: 2px;
    color: #F36F25;
}

.switch>span.off {
    right: 0;
    padding-right: 4px;
    color: #fff;
}

.check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.check-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.check-toggle-round-flat+label {
    padding: 2px;
    width: 97px;
    height: 35px;
    background-color: var(--theme-primary-color);
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

input.check-toggle-round-flat+label:before,
input.check-toggle-round-flat+label:after {
    display: block;
    position: absolute;
    content: "";
}

input.check-toggle-round-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: var(--theme-primary-color);
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

input.check-toggle-round-flat+label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 48px;
    background-color: #fff;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
}

input.check-toggle-round-flat:checked+label:after {
    margin-left: 44px;
}