@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*======================================================================================
Common CSS Style
=======================================================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    letter-spacing: 0.6px;
    font-family: "Roboto", sans-serif;

}

ul,
li {
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.open {
    right: 0 !important;
    transition: 0.5s;
}

.heading-title {
    margin-top: 8px;
    background-color: black;
    padding: 5px 0;
    border-radius: 3px;
    border-bottom: 5px solid #07ac07;
}

.heading-title h6 {
    text-align: center;
    color: #fff;
    font-size: 16px;
}

/*=====================================================================================
// Approval Buttons Approve or Reject Button, text color theme with bg color & hover -shadow Start - #wholeomarfaruk - component04
===================================================================================== */
.approve-btn {
    padding: 4px 10px;
    background-color: #138e4a;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    margin-right: 3px;
    letter-spacing: 0.8px;
    font-weight: 500;
    transition: all 0.4s;
    text-transform: uppercase;
}

.approve-btn:hover {
    box-shadow: 0px 1px 6px rgb(0 0 0 / 40%);
    transition: all 0.4s;
}

.reject-btn {
    padding: 4px 10px;
    background-color: #D11A2A;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    letter-spacing: 0.8px;
    font-weight: 500;
    transition: all 0.4s;
    text-transform: uppercase;
}

.reject-btn:hover {
    box-shadow: 0px 1px 6px rgb(0 0 0 / 40%);
    transition: all 0.4s;

}
.info-btn {
    padding: 4px 10px;
    background-color: #464646;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    letter-spacing: 0.8px;
    font-weight: 500;
    transition: all 0.4s;
    text-transform: uppercase;
}

.info-btn:hover {
    box-shadow: 0px 1px 6px rgb(0 0 0 / 40%);
    transition: all 0.4s;

}

/*=====================================================================================
// STATUS active/inactiv/unknown text color theme with bg color START - #wholeomarfaruk - component03
===================================================================================== */

.active-text {
    color: #138e4a !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
}

.inactive-text {
    color: #D11A2A !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
}

.unkown-text {
    /*not calculated */
    color: #000000 !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
}

/*=====================================================================================
// STATUS active/inactiv/unknown  text color theme with bg color END - #wholeomarfaruk - component03
===================================================================================== */

/*======================================================================================
Header CSS Style - START
=======================================================================================*/
.header-section {
    width: 100%;
    background-color: #07ac07;
}

.header-section .wrapper {}

/* navbar  */
.header-section .navbar {
    width: 100%;
    padding: 5px 15px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* logo  style*/
.header-section .navbar .logo {
    padding: 0 20px;
    margin: auto 0;
    border: 4px solid #fff;
    border-radius: 50px;
    text-align: center;
}

.header-section .navbar .logo a {}

.header-section .navbar .logo a span {
    font-size: 23.1px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.7px;
    line-height: 40px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}

.multi-box {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.login-box {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #fff;
    transition: 0.5s;
}

.two-step-box {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    background-color: #fff;
    transition: 0.5s;
}

.login-box.slidetoleft {
    right: 100%;
    transition: 0.5s;
}

.two-step-box.open {
    right: 0;
    transition: 0.5s;
}

span.short-info {
    font-size: 12px;
}

/* menubar-placeholder  style*/
.header-section .navbar .menubar-placeholder {}

/*======================================================================================
Sidebar or menu btn of Template CSS Style - START

=======================================================================================*/

.navbar-btn {
    display: none;
    text-align: center;
    line-height: 21px;
    outline: 1px solid #ddd;
}

.navbar-btn>a>i {
    font-size: 25px;
    color: #fff;
    display: block;
    padding: 5px 10px;
}

/* close sidebar  */
.close-sidebar-btn {
    display: none;
    width: fit-content;
    line-height: 21px;
    outline: 1px solid #ddd;
    margin-left: auto;
}

.close-sidebar-btn i {
    font-size: 25px;
    color: #fff;
    display: block;
    padding: 5px 10px;
    cursor: pointer;
}

/* Side navbar  */
nav.sidenavbar {
    padding: 10px;
}

.sidenavbar>span {
    width: 100%;
    text-align: center;
    display: block;
    background-color: rgb(142 163 163 / 30%);
    color: white;
}

ul.sidemenu {
    overflow: hidden;
    display: block;
    margin-top: 0.4rem;
}

ul.sidemenu>li {
    display: block;
    min-width: 250px;
}

.sidemenu>li>a {
    margin-left: 0.75rem;
    margin-top: 0.2rem;
    background-color: aliceblue;
    width: 94%;
    display: inline-block;
    text-decoration: none;
    padding-left: 8px;
    color: currentColor;
}

ul.sidemenu>li>a>i {
    margin-left: auto;
    margin-right: 4px;
    padding: 4px;
    /* background-color: aliceblue; */
    float: right;
}

ul.sidesubmenu {
    display: none;
}

ul.sidesubmenu>li>a {
    margin-left: 1.25rem;
    margin-top: 0.2rem;
    background-color: aliceblue;
    width: 90.5%;
    display: inline-block;
    text-decoration: none;
    padding-left: 8px;
    color: currentColor;
}

ul.sidemenu>li>a:focus {
    background-color: rgb(183, 202, 219);

}

ul.sidemenu ul>li>a:hover {
    background-color: rgb(183, 202, 219);
}

/*======================================================================================
Sidebar or menu btn of Template CSS Style - END
=======================================================================================*/


/*======================================================================================
Side panel or menu btn of Template CSS Style - START

=======================================================================================*/
.sidepanel {
    background-color: forestgreen;
    padding: 10px;
    position: fixed;
    top: 0;
    right: -110%;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 430px;
    transition: right 0.5s;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 60%);
}

/* close sidebar  */

.navbar-btn {
    display: none;
    text-align: center;
    line-height: 21px;
    outline: 1px solid #ddd;
}

.navbar-btn>a>i {
    font-size: 25px;
    color: #fff;
    display: block;
    padding: 5px 10px;
}

/* close sidebar  */
.close-sidepanel-btn {
   
    width: fit-content;
    line-height: 21px;
    outline: 1px solid #ddd;
    margin-left: auto;
}

.close-sidepanel-btn i {
    font-size: 25px;
    color: #fff;
    display: block;
    padding: 5px 10px;
    cursor: pointer;
}

/* Side navbar  */
nav.sidenavbar {
    padding: 10px;
}

.sidenavbar>span {
    width: 100%;
    text-align: center;
    display: block;
    background-color: rgb(142 163 163 / 30%);
    color: white;
}

ul.sidemenu {
    overflow: hidden;
    display: block;
    margin-top: 0.4rem;
}

ul.sidemenu>li {
    display: block;
    min-width: 250px;
}

.sidemenu>li>a {
    margin-left: 0.75rem;
    margin-top: 0.2rem;
    background-color: aliceblue;
    width: 94%;
    display: inline-block;
    text-decoration: none;
    padding-left: 8px;
    color: currentColor;
}

ul.sidemenu>li>a>i {
    margin-left: auto;
    margin-right: 4px;
    padding: 4px;
    /* background-color: aliceblue; */
    float: right;
}

ul.sidesubmenu {
    display: none;
}

ul.sidesubmenu>li>a {
    margin-left: 1.25rem;
    margin-top: 0.2rem;
    background-color: aliceblue;
    width: 90.5%;
    display: inline-block;
    text-decoration: none;
    padding-left: 8px;
    color: currentColor;
}

ul.sidemenu>li>a:focus {
    background-color: rgb(183, 202, 219);

}

ul.sidemenu ul>li>a:hover {
    background-color: rgb(183, 202, 219);
}

/*======================================================================================
Sidebar or menu btn of Template CSS Style - END
=======================================================================================*/


/*======================================================================================
Header CSS Style - END
=======================================================================================*/

/*======================================================================================
Main section of Template CSS Style - START
=======================================================================================*/
.main-section {}

.main-section .main-box {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
    gap: 5px;
}

/* Content Area CSS Style */
.main-section .main-box .content-area {
    width: 77%;
    padding: 10px 10px 0;
}

.main-section .main-box .content-area .pages {}

/* Sidebar Area CSS Style */
.main-section .main-box .sidebar-area {
    background-color: forestgreen;
    height: fit-content;
    min-height: 100vh;
    width: 23%;
}

/*======================================================================================
Main section of Template CSS Style - END
=======================================================================================*/
/*======================================================================================
Template CSS Style - END
=======================================================================================*/
/*======================================================================================
pages -> control-page CSS Style - START
=======================================================================================*/
/* Card CSS start */

.card {
    max-width: 700px;
    height: auto;
    margin: 25px auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 15px black;
}

.topincard {
    display: flex;
    width: 100%;
    background-color: #F9EFEF;
    height: 45px;
    border-radius: 20px;
    border: 1px solid skyblue;
    overflow: hidden;
}

.topincard a {
    display: block;
    width: auto;
    flex: 1 1 auto;
}

.red {
    color: red;
}

.bolder {
    font-weight: 900;
}

.middleincard {
    height: 35%;
    overflow: hidden;
}

.middleincard h3 {
    color: gray;
}

.numberincard {
    width: 60%;
    font-size: 30px;
    text-align: center;
    border-right: 2px solid gray;
    line-height: 45px;
    font-weight: 700;
}

.amountincard {
    width: 25%;
    border-right: 2px solid gray;
    text-align: center;
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
}

.sendbtnincard {

    text-align: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.statusincard {
    padding: 1px 5px;
    height: auto;
    width: 100%;
    background-color: #FBFFE2;
    display: flex;
    /* justify-content: space-between; */
}

.statusincard p {
    text-align: left;
    width: 50%;
}

.detailsincard {
    padding: 1px 5px;
    margin: 5px 0;
    width: 100%;
    background-color: #FBFFE2;
    display: flex;
    height: auto;
}

.detailsincard p {
    text-align: left;
    width: 50%;

}

.bottomincard {
    width: 100%;
    background-color: #869909;
    display: flex;
    justify-content: space-around;
    height: 33px;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
}

.editbtn img {
    width: 100%;
    height: 100%;
}

.midlebtn img {
    width: 100%;
    height: 100%;
}

.donebtn img {
    width: 100%;
    height: 100%;
}

.midlebtn {
    width: 56%;
}

.Pending {
    border: 1px solid rgb(253, 3, 3);
}

footer {
    color: #4f4f4f;
    text-align: center;
    background-color: #ddd;
    font-family: 'poppins';
    font-size: 12px;
}

.middlebody {
    min-height: 20rem;
    display: flex;
}

.rightsection {
    width: 20%;
    border-right: 5px solid #a59a9a;
    background: #c5ffde;
    overflow: auto;
}

.middlesection {
    width: 80%;
}

.ccp {
    padding: 1vh 0;
    font-family: sans-serif;
    background-color: black;
    color: white;
    width: 100%;
}

/* trxn short history  */
table,
th,
td {
    
    border-collapse: collapse;
}

#short-trxn-placeholder {
    display: flex;
    justify-content: center;
}

#short-trxn-placeholder img {
    height: 40px;
    width: auto;
}



/* counter featured card */
.counter-featured-section {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 10px;
}
.counter-featured-section .counter-item {
    text-align: center;
    background-color: #fff;
    width: 110px;
    height: auto;
    padding: 15px 5px;
    border-radius: 4px;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
}
.counter-featured-section .item-count_number {
    font-size: 20px;
    font-weight: 600;
}
.counter-featured-section .item-text {
    margin: 0;
    padding-top: 7px;
}

/*======================================================================================
pages -> control-page CSS Style - END
=======================================================================================*/



/*======================================================================================
pages -> Login-page CSS Style - START
=======================================================================================*/


/* Login-page  */
.login-page {}

.login-page .wrapper {
    max-width: 100%;
}

.login-main-box {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-main-box>.inner-box {
    max-width: 382px;
    height: fit-content;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 35%);
    width: 97%;
}

.login-main-box .brand-area {
    padding: 10px 0 30px 0;
    text-align: center;
}

.login-main-box .brand-area h2 {
    text-align: center;
    color: #035956;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid #035956;
    border-radius: 2px;
}

.login-main-box .form-area {}

.form-area .login-form {}

.form-area .login-form>.input-group-area {
    width: 100%;
    margin-top: 15px;
}

.form-area .login-form>.input-group-area>input {
    width: 98%;
    padding: 5px;
    border-radius: 3px;
    font-size: 13px;
    border: 1px solid #ddd;
}

.form-area .login-form>.input-group-area>input:focus-visible {
    border: 1px solid #d6aeae;
    outline: none;
}
.form-area .login-form>.input-group-area>select {
    width: 98%;
    padding: 5px;
    border-radius: 3px;
    font-size: 13px;
    border: 1px solid #ddd;
}

.form-area .login-form>.input-group-area>select:focus-visible {
    border: 1px solid #d6aeae;
    outline: none;
}

.form-area .login-form>.input-group-area>i {
    margin-left: -30px;
}

.form-area .login-form>.input-group-area>a {
    margin-bottom: 8px;
    display: inline-block;
    color: #464646;
    transition: 0.4s;
}

.form-area .login-form>.input-group-area>a:hover {
    text-shadow: 0px 5px 3px rgb(0 0 0 / 30%);
    transition: 0.4s;
    color: rgb(6, 6, 83);
}

.form-area .login-form>.input-group-area>input[type=submit] {
    background-color: #035956;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.8px;
    line-height: 25px;
    border-radius: 3px;
    font-weight: 400;
    transition: 0.5s;
    border-color: #035956;
}

.form-area .login-form>.input-group-area>input[type=submit]:hover {
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
    transition: 0.5s;
    border-color: #035956;
}

.form-area .login-form>.input-group-area>input[type=submit]:focus-visible {
    transition: 0.5s;
    border-color: #035956;
}



/*======================================================================================
pages -> Login-page CSS Style - END
=======================================================================================*/
/*======================================================================================
pages -> mservicedevice-page CSS Style - START
=======================================================================================*/
.mservicedevice-page {}

.device-list {
    max-width: 600px;
}

/* active device card  */
.active-device {
    border: 1px solid #ddd;
    padding: 5px;
    margin-top: 10px;
    border-radius: 3px;
    transition: all 0.5s;
}

.active-device:hover {
    box-shadow: 0px 0px 3px #00000065;
    transition: all 0.5s;
}

.active-device .box {}

.active-device .box .sl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-device .box .details {}

.active-device .box .details table {
    border: none;
}

.active-device .box .details table tbody {
    border: none;
}

.active-device .box .details table tbody tr {
    border: none;
}

.active-device .box .details table tbody tr td {
    border: none;
    color: #404040;
    text-align: left;
    vertical-align: middle;
}

.active-device .box .details table tbody tr td:nth-of-type(1) {
    padding-right: 20px;
}

.active-device .box .action-btn-group {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    padding-right: 20px;
}

/* carousel  */
.active-device .serviceaddedlist-slider {
    width: 90%;
    position: relative;
    margin-left: auto;
    padding-right: 20px;
}

.active-device .service-owlcarousel-img {
    width: 50px;
    height: 50px;
}

.active-device .service-owlcarousel-img img {
    width: 100%;
    height: 100%;
}

.active-device .owl-nav {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    display: flex;
    justify-content: space-between;
    left: 0;
}

.active-device button.owl-prev,
button.owl-next {
    width: 20px;
}

.active-device button.owl-prev:hover,
button.owl-next:hover {
    background-color: #ddd !important;
}

.active-device button.owl-prev>span,
button.owl-next>span {
    font-size: 35px;
}

/* Request device card  */
.request-device {
    border: 1px solid #ddd;
    padding: 5px;
    margin-top: 10px;
    border-radius: 3px;
    transition: all 0.5s;
}

.request-device:hover {
    box-shadow: 0px 0px 3px #00000065;
    transition: all 0.5s;
}

.request-device .box {}

.request-device .box .sl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-device .box .details {}

.request-device .box .details table {
    border: none;
}

.request-device .box .details table tbody {
    border: none;
}

.request-device .box .details table tbody tr {
    border: none;
}

.request-device .box .details table tbody tr td {
    border: none;
    color: #404040;
    text-align: left;
    vertical-align: middle;
}

.request-device .box .details table tbody tr td:nth-of-type(1) {
    padding-right: 20px;
}

.request-device .box .action-btn-group {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    padding-right: 20px;
}


/* link sim with service  */
.title-d1 h3 {
    font-size: 17px;
    font-weight: 700;
}


#linkservices-modal>.modal-box {
    height: auto;
    margin-top: 20px;
}

.linktoservice-box {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.linked-services {}

.linked-services .linked-list {}

.linked-services .unlinked-list {}

.linked-services,
.unlinked-services {
    border: 2px solid rgb(0 0 0 / 30%);
    padding: 8px;
    min-width: 300px;
}

.linked-services .linked-list,
.unlinked-services .unlinked-list {
    /* border: 1px solid #ddd;
    padding: 8px; */
}

.linking-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgb(221 221 221 / 60%);
    padding: 3px 5px;
    width: 100%;
    margin-top: 10px;
}

.linking-service-item:hover {
    box-shadow: 0px 0px 3px rgb(0 0 0 / 30%);

}

.linking-service-item .img-box {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
}

.linking-service-item .img-box img {
    width: 100%;
    height: 100%;
}

.linking-service-item .title-box {
    flex: 0 0 auto;
    width: auto;
}

.linking-service-item .title-box h3 {
    font-size: 15px;
}

.linking-service-item .btn-group {
    margin-left: auto;
}

.linking-service-item .btn-group a {}




/*======================================================================================
pages -> mservicedevice-page CSS Style - END
=======================================================================================*/

/*======================================================================================
pages -> servicesetings-page CSS Style - START
=======================================================================================*/

.servicesettings-page {}

.servicesettings-page .service-list {
    max-width: 700px;
}

.active-service {
    margin-top: 15px;
}

.active-service table {
    border: none;
    width: 100%;
}

.active-service table tbody {}

.active-service table tbody tr {
    border: none;
}

.active-service table tbody tr td {
    border: none;
}

.active-service table tbody tr td:nth-of-type(1) {
    padding: 0 15px;
    width: 50px;
}

.active-service .service-card {
    border: 1px solid #ddd;
    border-radius: 3px;
}

.active-service .service-card .box {
    display: flex;
}

.active-service .service-card .box .img-status {}

.active-service .service-card .box .img-status .img-box {
    width: 90px;
    height: 90px;
}

.active-service .service-card .box .img-status .img-box img {
    width: 100%;
    height: 100%;
}

.active-service .service-card .box .img-status .status-box {
    padding: 5px 5px 10px 10px;
}

.active-service .service-card .box .img-status .status-box .status {}

.active-service .service-card .box .img-status .status-box .status .toggle-btn {}

.active-service .service-card .box .img-status .status-box .status .toggle-btn label {}

.active-service .service-card .box .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 20px 15px;
    width: 100%;
}

.active-service .service-card .box .details .info {}

.service-card .details .btn-group {
    margin-left: auto;
}

.active-service .service-card .box .details .info h3 {
    font-size: 18px;
    font-weight: 700;
}

/*======================================================================================
pages -> servicesetings-page CSS Style - END
=======================================================================================*/
/*======================================================================================
pages -> change-email-page CSS Style - start
=======================================================================================*/
.change-email-page .login-main-box {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: inherit; 
    margin-top: 40px;
}
.change-email-page .multi-box {
    height: 270px;
}
/*======================================================================================
pages -> change-email-page CSS Style - END
=======================================================================================*/
/*======================================================================================
pages -> change-password-page-page CSS Style - start
=======================================================================================*/
.change-password-page .login-main-box {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: inherit; 
    margin-top: 40px;
}
.change-password-page .multi-box {
    height: 320px;
}
/*======================================================================================
pages -> change-password-page CSS Style - END
=======================================================================================*/
/*======================================================================================
pages -> change-verifypin-page-page CSS Style - start
=======================================================================================*/
.change-verifypin-page .login-main-box {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: inherit; 
    margin-top: 40px;
}
.change-verifypin-page .multi-box {
    height: 320px;
}
/*======================================================================================
pages -> change-verifypin-page CSS Style - END
=======================================================================================*/





/*======================================================================================
EXTRA CSS Style - START
=======================================================================================*/
/* linking-service card  */



/*//=====================================================================================
// Jquery Dynamic & reusable Modal Start - #wholeomarfaruk - component05
//=====================================================================================*/


.modal-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.inner-modal {
    background-color: #fff;
    width: fit-content;
    height: fit-content;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 180px 11px #000;
}

.inner-modal button.close-btn {
    margin-left: auto;
    padding: 2px 7px;
    border: 1px solid #ddd;
    color: #000;
}

.modal-body label,
.modal-body input {
    width: 100%;
}

.modal-body input {
    width: 98%;
    padding: 5px;
    border-radius: 3px;
    font-size: 13px;
    border: 1px solid #ddd;
}

.modal-body input:focus-visible {
    border: 1px solid #d6aeae;
    outline: none;
}

.modal-footer button.save-btn {
    margin-left: auto;
    padding: 2px 7px;
    border: 1px solid #ddd;
    color: #000;
}

/*//=====================================================================================
// Jquery Dynamic & reusable Modal END - #wholeomarfaruk - component05
//=====================================================================================*/

/* CSS for spinner */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #7983ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    /* Half of the height */
    margin-left: -20px;
    /* Half of the width */
    z-index: 9999;
    /* Ensure it's above other content */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*======================================================================================
EXTRA CSS Style - END
=======================================================================================*/

/* notifification  */
/* Notification Modal  */
.notify-success {
    /* width: 150px; */
    background-color: #30534a;
    color: white;
    position: fixed;
    border-radius: 1px;
    top: 20%;
    object-fit: contain;
    margin-right: 4px;
    right: 0;
    box-shadow: -4px 4px 9px 0px black;
    display: none;
    -webkit-animation: all 1s linear;
    animation: all 1s linear;
}

.notify-success .notifybody {
    display: flex;
    justify-content: space-around;
    padding: 10px 20px 10px 10px;
    align-items: center;
}

.notify-success .notifybody .statuscircle {
    padding: 10px;
    border-radius: 50%;
    background-color: greenyellow;
    object-fit: cover;
    margin-right: 0.5em;
}

.notify-failed {
    /* width: 150px; */
    background-color: red;
    color: white;
    position: fixed;
    border-radius: 1px;
    top: 20%;
    object-fit: contain;
    margin-right: 4px;
    right: 0;
    box-shadow: -4px 4px 9px 0px black;
    display: none;
    -webkit-animation: all 1s linear;
    animation: all 1s linear;
}

.notify-failed .notifybody {
    display: flex;
    justify-content: space-around;
    padding: 10px 20px 10px 10px;
    align-items: center;
}

.notify-failed .notifybody .statuscircle {
    padding: 10px;
    border-radius: 50%;
    background-color: rgb(255, 123, 47);
    object-fit: cover;
    margin-right: 0.5em;
}


/* Toggle btn  */

.status-box input[type="checkbox"] {
    display: none;
}

.status-box a {
    color: rgba(43, 43, 43, 1);
    text-decoration: none;
    padding: 10px;
    border-bottom: 2px solid rgba(43, 43, 43, 1);
}

.status-box a:hover {
    background: rgba(43, 43, 43, 1);
    color: rgba(255, 255, 255, 1);
}


/*Button is :CHECKED*/

.status-box input[type="checkbox"]:checked~div {
    background: rgba(73, 168, 68, 1);
    box-shadow: 0 0 2px rgba(73, 168, 68, 1);
}

.status-box input[type="checkbox"]:checked~div label {
    left: 52%;
    transform: rotate(360deg);
}


/*shared*/

.status-box div,
label {
    border-radius: 50px;
}


/*'un':checked state*/

.status-box div {
    height: 40px;
    width: 80px;
    background: rgba(43, 43, 43, 1);
    position: relative;
    /* top: calc(50vh - 50px); */
    /* left: calc(50vw - 100px); */
    box-shadow: 0 0 2px rgba(43, 43, 43, 1);
}

.status-box label {
    height: 30px;
    width: 30px;
    background: rgba(255, 255, 255, 1);
    position: absolute;
    top: 5px;
    left: 5px;
    cursor: pointer;
}

/* .status-box label::before {
    content: '';
    height: 60px;
    width: 5px;
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 2.5px);
    transform: rotate(45deg);
    transition: transform 0.5s;
} */

/* .status-box label::after {
    content: '';
    height: 5px;
    width: 60px;
    position: absolute;
    top: calc(50% - 2.5px);
    left: calc(50% - 30px);
    transform: rotate(45deg);
    transition: transform 0.5s;
} */

.status-box label::before,
.status-box label::after {
    background: rgba(43, 43, 43, 1);
    border-radius: 5px;
}

/* pesduo class on toggle */

.status-box input[type="checkbox"]:checked~div label::before {
    height: 50px;
    top: calc(55% - 25px);
    left: calc(60% - 2.5px);
    background: rgba(73, 168, 68, 1);

}

.status-box input[type="checkbox"]:checked~div label::after {
    width: 20px;
    top: calc(95% - 25px);
    left: calc(22.5% - 2.5px);
    background: rgba(73, 168, 68, 1);

}

/* check box  */
span.number-amount {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 18px;
}
.modal-submit-btn input[type="submit"] {
    color: #fff;
    background-color: green;
    width: 100%;
    display: inline-block;
    border-radius: 3px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-top: 15px;
    padding: 5px;
}
.payment-status > span {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.payment-status .lns-checkbox {
    display: inline-flex;
    color: #fffed7;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    align-items: center;
    line-height: 1;
    border-radius: 5px;
    /* background-color: #010101; */
    padding: 3px 5px 3px 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: auto;
    margin-left: 5px;
}
.payment-status .lns-checkbox input[type=radio] {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.payment-status .lns-checkbox input[type=radio]:checked + span {
    color: #000;
}

.payment-status input[type="radio"] {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.payment-status .lns-checkbox span {
    position: relative;
    display: flex;
    align-items: center;
}

.payment-status input[type="radio"]:checked+span::after {
    background-color: #19ff70;
}

.payment-status input[type="radio"]:checked+span {
    color: #19ff70;
}

.payment-status input[type="radio"]:focus+span::before {
    border-color: #19ff70;
}

.payment-status input[type="radio"]:disabled {
    opacity: .85;

}

.payment-status .lns-checkbox span {
    color: #9a9a88;
    font-size: 14px;
}


.payment-status .lns-checkbox span::before {
    content: "";
    display: inline-block;
    border-radius: 3px;
    background-color: #414051;
    margin-right: 8px;
    height: 16px;
    width: 16px;
    border: 1px solid transparent;
}

.payment-status .lns-checkbox input[type="radio"] {}

.payment-status .lns-checkbox span::after {
    content: "";
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    background-color: transparent;
    left: 3px;
    position: absolute;
}

/* Success Transection Status chenged */
/* Styles for the success message */
/* Styles for the success message */

.form-section {
    display: block;
}

.submit-success {
    display: none;
}

.submit-success i {
    color: green;
}

.submit-success p {
    margin-top: 10px;
}

.hidden {
    display: none;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/* action btn txrn-action-btn */



.txrn-action-btn.container {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.txrn-action-btn #toggle {
  -webkit-appearance: none;
}

.txrn-action-btn .button {
    position: absolute;
    z-index: 999;
    width: 43px;
    height: 43px;
    background: #8974FB;
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -12px;
}
.txrn-action-btn #toggle:checked ~ .button:before {
    transform: rotate(225deg);
}
.txrn-action-btn .button:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(90deg);
    transition: all 0.4s ease;
}
.txrn-action-btn #toggle:checked ~ .button:after {
    transform: rotate(135deg);
}
.txrn-action-btn .button:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.4s ease;
}
.txrn-action-btn #toggle:checked ~ .nav {
    opacity: 1;
    transform: translateY(10%);
}
.txrn-action-btn .nav {
    opacity: 0;
    transition: all 0.4s ease-in-out;
    background: #fff;
    width: 100%;
    border-radius: 5px;
    transform: translateY(0%);
    box-shadow: 2px 3px 10px 0 rgba(81, 81, 81, 0.1);
    border: 1px solid #e4e4e4;
    padding: 10px;
}
.txrn-action-btn #toggle:checked ~ .nav {
    opacity: 1;
    transform: translateY(10%);
  }
.txrn-action-btn .nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.txrn-action-btn .nav a {
    text-align: center;
    margin: 20px 0;
    color: #8974FB;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}


/* floating buttons  */

.msg-fixed-btn {

    position: fixed;

    top: 20%;
    object-fit: contain;

    left: 0;
    box-shadow: -4px 4px 9px 0px black;

	-webkit-animation: all 1s linear;
    animation: all 1s linear;
}
.unsettled-fixed-btn{

    position: fixed;
    top: 30%;
    object-fit: contain;
    left: 0;
    box-shadow: -4px 4px 9px 0px black;
    -webkit-animation: all 1s linear;
    animation: all 1s linear;
}
#unsettled_slider{
	overflow: hidden;
	margin-right: 1px;
	z-index: 1;
	position: fixed;
	width: 300px;
	height: 82vh;
    top: 15%;
    object-fit: contain;
	background-color: gainsboro;
    right: 0;
    box-shadow: -4px 4px 9px 0px black;

	-webkit-animation: all 1s linear;
    animation: all 1s linear;
}
.unsettled_numb_amnt_highlight {

    padding: 5px;
    color: green;
    font-weight: 700;
    text-align: center;
}
.cahshout-settled-btn {
    text-align: center;
    width: 96%;
    display: block;
    padding: 5px;
    background-color: aquamarine;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 1px 2px 3px gray;
	cursor: pointer;
	
}
.cahshout-settled-btn:active {
    background-color: rgb(145, 182, 169);

    box-shadow: none;
}
.cahshout-settled-btn a {
	text-decoration: none;
	color: #000;
}
.msg_slider{
	overflow: hidden;
	margin-right: 1px;
	z-index: 1;
	position: fixed;
	width: 300px;
	height: 82vh;
    top: 15%;
    object-fit: contain;
	background-color: gainsboro;
    right: 0;
    box-shadow: -4px 4px 9px 0px black;

	-webkit-animation: all 1s linear;
    animation: all 1s linear;
}
.msg_sec {
    padding: 5px 10px 15px 10px;
    overflow-y: scroll;
    height: 86vh;
    background-color: #fff;
    border-radius: 3px;

}
.msg_body {
	margin-top: 5px;
	font-family: 'poppins', 'sans-serif';
    border: 1px solid rgb(35, 223, 76);
    border-radius: 5px;
    padding: 5px;
    font-size: 1em;
}
.msgFrom {
    border-bottom: 1.8px solid #52268f;
    background-color: aliceblue;
}
.msgFrom img {
    width: 25px;
    height: auto;
}
.allmessages{
	
	margin:10px 30px;

}

.controller-btm-bar {
    position: sticky;
    bottom: 0;
    background: linear-gradient(122deg, #187f3f, #6a4316, #000000, #187f3f);
    border-radius: 3px 3px 0px 0px;
    left: 0;
    right: 0;
}
.controller-btm-bar ul {
    text-align: center;
    display: grid;
    justify-content: center;
    grid-auto-flow: row;
    grid-template-columns: 80px 80px 80px 80px;
    list-style: none;
}
.controller-btm-bar ul li {
    position: relative;
    cursor: pointer;
    margin: 0 5px;
    padding: 5px 5px;
    display: inline-block;
}
.controller-btm-bar ul li:hover {
    background-color: #dddddd2f;
    backdrop-filter: blur(10px);
}
.controller-btm-bar ul li  span {
    display: block;
    text-align: center;
    color: #fff;
}
.controller-btm-bar ul li  span.icon {
    font-size: 16px;
}
.controller-btm-bar ul li  span.text {
    font-size: 12px;
}
.controller-btm-bar ul li span.tooltip-alert {
    position: absolute;
    color: #f00;
    padding: 1px 5px;
    top: 3px;
    background: #fff;
    left: 50%;
    font-size: 10px;
    border-radius: 2px;
    margin-left: 10px;
}
.controller-btm-bar ul li span.tooltip-alert::after {
    content: "";
    position: absolute;
    /* width: 15px; */
    height: 15px;
    /* background: #000; */
    top: 89%;
    left: 7px;
    border-width: 7px;
    margin-left: -7px;
    border-style: solid;
    border-color: white transparent transparent transparent;
    border-radius: 6px;
}