/* webfonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* webfonts end */

:root {
    --primary: #1B1B1B;
    --secondary: #0FB952;
    --blue: #383EFB;
    --border-color: #DEE0E3;
    --text-color: #191C1D;
    --orange: #f26a34;
    --border-color: #D0D0D0;
    --commonFont: 'Inter', sans-serif;
    --purplebg: #F4F3F9;
}

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

body {
    overflow-x: hidden;
    color: var(--text-color);
    font-family: var(--commonFont);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    white-space: normal;
    word-break: break-word;
    color: var(--text-color);
    font-weight: 700;
    line-height: normal;
    /* text-transform: capitalize;   */
}

h2 {
    font-size: 36px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

hr {
    background: #E1E0F3;
    opacity: 1;
    margin: 20px 0;
}

a,
p,
button,
span {
    white-space: normal;
    word-break: break-word;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}


/* Firefox */

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

body a {
    text-decoration: none;
}

a:focus-visible {
    outline: transparent;
}

.page-link:focus {
    box-shadow: none;
}

p {
    font-size: 16px;
    margin: 0;
}

.large-font {
    font-size: 18px;
    line-height: 25px;
}

.small-font {
    font-size: 14px;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

button,
.forgot-password-sec a,
.have-account a {
    transition: 0.3s ease all;
}

button:focus {
    box-shadow: none !important;
    outline: transparent;
}

.form-control:focus,
input {
    outline: 0;
    box-shadow: none !important;
    color: inherit;
    border-color: var(--secondary);
}

.form-control:focus+.icon svg *,
input:focus+.icon svg * {
    fill: var(--secondary);
    opacity: 1;
}

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

.form-check-input:focus {
    border-color: #012C3D;
}

main.main {
    padding-top: 0px;
}

select.form-select,
.form-control {
    min-height: 60px;
    border-radius: 8px;
    border: 1px solid #C5C5E3;
    background-color: #fff;
    padding: 12px 24px !important;
    font-size: 14px;
}

select.form-select {
    line-height: 33px;
    color: rgb(25 28 29 / 50%);
    background-position-x: 95%;
}

.form-control {
    padding-right: 40px !important;
}

span.icon {
    position: absolute;
    right: 15px;
    top: 18px;
}

label {
    color: var(--text-color);
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 170%;
    font-weight: 500;
}

input [type="checkbox"]:focus {
    box-shadow: none;
}

.form-control::placeholder {
    font-size: 14px;
    color: rgb(25 28 29 / 50%);
}

.form-control::-ms-input-placeholder {
    /* Edge 12-18 */
    color: rgb(25 28 29 / 50%);
}

img {
    max-width: 100%;
}

/*
.is-invalid {
    display: none;
} */

button.primary-btn {
    background: var(--primary);
    width: 100%;
    min-height: 55px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    border: 2px solid var(--text-color);
}

button.primary-btn.orange-btn {
    background: var(--orange)
}

button.primary-btn span {
    color: #FDBA12
}

.btn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    top: 0;
    left: 0;
    background: var(--orange);
    z-index: -1;
    transition: 0.3s ease all;
}

.btn:hover:before {
    transform: scaleY(1);
}

.btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 59px;
    display: inline-grid;
    place-content: center;
    border-radius: 8px;
}

.btn.btn-common {
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(180deg, #D9D9D9 0%, #FC650E 0.01%, #FC7D35 100%);
    box-shadow: 0px 5.56522px 22.26087px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 171px;
    border: none;
}

.bx-contact .btn::before {
    background: var(--secondary);
}

.table-responsive {
    max-height: 700px;
}

.table-responsive thead {
    position: sticky;
    top: 0;
    background: #fff;
}


/*Custom checkbox global*/

.checkbox_cstm {
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    line-height: 18px;
    padding-left: 0;
}

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.styled-checkbox:checked+label:before {
    background: var(--secondary);
    border-color: var(--secondary);
}

.styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid var(--text-color);
    border-radius: 3px;
}

.styled-checkbox:checked+label::after {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    font-size: 10px;
    display: grid;
    place-content: center;
    width: 16px;
    height: 16px;
    line-height: normal;
}


/*End custom checkbox*/


/*Form login*/

.form-img img {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.qr-form-wrapper .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 38px;
}

.qr-form-wrapper {
    display: grid;
    align-items: center;
    background: #F7F5FE url(../images/bg-account.png) no-repeat;
    background-size: cover;
    height: 100vh;
}

.qr-form-wrapper .container>.row {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.qr-form-wrapper .container>.row>[class*="col-md"],
.form-img,
.form-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-setup {
    padding: 40px 95px;
}

.formfield {
    position: relative;
}

.is-invalid {
    font-size: 14px;
    /* color: #f00; */
    /* background: #ff000021; */
    /* padding: 5px 10px; */
    border-radius: 5px;
    border-color: #C5C5E3 !important;
    background-image: unset !important;
}

.logo-container {
    margin-bottom: 20px;
}

.forgot-password-sec a {
    color: var(--text-color);
    font-size: 14px;
}

.forgot-password-sec {
    padding: 10px 0;
    line-height: normal;
}

.have-account {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.have-account a {
    text-decoration: underline;
    color: var(--secondary);
    transition: 0.3s ease all;
}

.have-account a:hover {
    text-decoration: none;
}

.form-img-content p {
    color: #fff;
}

.form-img-content {
    position: absolute;
    bottom: 0;
    padding: 38px;
}

.form-img:before {
    content: "";
    background: linear-gradient(0deg, #000 1.53%, rgba(0, 0, 0, 0.00) 78.13%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.form-img-content h3 span {
    background: linear-gradient(90deg, #2E34F1 57.94%, #F5D24E 64.97%, #FB6C3C 69.48%, #3CCEFC 72.73%, #0EB751 78.58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 38px;
}

.form-img-content h3 {
    font-size: 30px;
    font-style: normal;
    line-height: 38px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 400;
}


/*End of login up*/


/*Sign up form*/

.signup-form h3 {
    font-size: 30px;
    line-height: 112.523%;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 400
}

form.form-inline button {
    margin: 5px 0;
}


/*End of sign up*/



/*Header*/

.qr-header {
    position: fixed;
    top: 0px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 99;
    width: 100%;
}

.qr-header.sticky {
    position: fixed;
}

.qr-header .header-wrapper {
    width: 100%;
}

.qr-header li.nav-item.dropdown {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dropdown-toggle img.rounded-circle {
    width: 50px;
    object-fit: cover;
}

.qr-header .dropdown-item-wrapper {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.dropdown .dropdown-toggle {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--text-color);
    padding-right: 30px;
}

.qr-header .dropdown-item {
    padding: 17px 20px;
    display: flex;
    gap: 8px;
    border-radius: 5px;
    align-items: center;
}

.qr-header .dropdown-content p {
    margin: 0;
    font-size: 14px;
    color: #656669;
    line-height: normal;
}

.qr-header .dropdown-icon-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.09);
    height: 48px;
    width: 48px;
    display: grid;
    place-content: center;
}

.qr-header form.d-flex.align-items-center {
    flex-wrap: wrap;
}

.qr-header .dropdown-menu {
    box-shadow: 0 4px 20px -8px rgba(31, 56, 112, .15);
    background-color: #fff;
    border-radius: 15px;
    padding: 0px;
    min-width: 220px;
    display: block;
    transition: 0.3s ease all;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    border: 1px solid #9F9F9F;
    overflow: hidden;
}

ul.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #9F9F9F;
}

.multi-child ul.dropdown-menu li {
    max-width: calc(100%/2);
    flex: 1;
    width: 100%;
}

.qr-header li.nav-item.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.qr-header li.nav-item.dropdown.multi-child .dropdown-menu {
    min-width: 520px;
    display: flex;
    flex-wrap: wrap;
}

.qr-header li.nav-item.dropdown ul.dropdown-menu li a {
    color: #292929;
    transition: 0.3s ease all;
}

.qr-header .dropdown-item-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qr-header .dropdown-item:hover {
    background-color: #f5f6fc;
}

.qr-header .top-header {
    padding: 7px 0px;
    border-bottom: 1px solid #d8d8d8;
}

.qr-header .main-header {
    padding-top: 20px;
    padding-bottom: 20px;
}

.qr-header .btn {
    font-size: 18px;
    min-width: 150px;
    font-weight: 500;
    padding: 10px 20px;
}

.qr-header .banner-section {
    background: #2253e5;
    padding-top: 100px;
    padding-bottom: 131px;
}

.qr-header .banner-Heading {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.6px;
    color: #fff;
    margin-bottom: 30px;
}

.qr-header .banner-text {
    font-size: 18px;
    color: #fff;
}

.qr-header .banner-list {
    display: grid;
    grid-template-columns: auto auto;
    padding: 0;
}

.qr-header .banner-list li p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.qr-header .domain-wrapper .formfield {
    max-width: 700px;
    margin: 0 auto;
}

.qr-header .dropdown-toggle::after,
.dropdown-item.drop-sub:after {
    content: "\f078";
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-size: 10px;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.drop-sub {
    position: relative;
}

.qr-header .domain-heading {
    font-size: 42px;
}

.qr-header .navbar-expand-lg .navbar-nav .dropdown-menu {
    top: calc(100% + 10px);
    right: 0;
}

.qr-header ul.sub-menu-options {
    padding-left: 0;
    border-left: 2px solid #ea9f9c;
    margin-left: 30px;
}

.qr-header ul.sub-menu-options {
    list-style: none;
}

.qr-header ul.sub-menu-options li a {
    font-weight: 500;
}

.qr-header li.nav-item.dropdown ul.dropdown-menu ul.sub-menu-options li:hover {
    padding-left: 30px;
}

.qr-header li.nav-item.dropdown ul.dropdown-menu ul.sub-menu-options li:hover:before {
    width: 20px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.qr-header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s ease all;
    position: relative;
}

.qr-header .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--orange);
}

.qr-header .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--orange);


}

.qr-header .navbar-expand-lg .navbar-nav .nav-link.btn-nav:hover {
    background: var(--secondary);
}

.qr-header .navbar-expand-lg .navbar-nav .nav-link.btn-nav {
    padding: 10px 20px;
    color: #fff;
    box-shadow: none;
    margin-left: 20px;
}

.qr-header .navbar-expand-lg .navbar-nav .nav-link.dropdown {
    padding: 25px 30px 25px 25px;
}

.btn-nav.btn-primary {
    background: var(--orange);
    border-radius: 8px;
}

.qr-header ul.sub-menu-options li {
    padding: 2px 10px 2px 20px;
    position: relative;
    transition: 0.3s ease all;
}

.navbar-brand {
    max-width: 210px;
}


/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}


/*structure page design*/

.btn.btn-nobg {
    background: #fff;
    border: 1px solid #B5B7BA;
    color: #7D7D7D;
    font-size: 18px;
    font-weight: 500;
    max-width: 171px;
    width: 100%;
    min-height: 59px;
    overflow: hidden;
    position: relative;
}

.bx-card {
    border: 1px solid var(--border-color);
    border-radius: 27px;
    padding: 58px 35px;
    /* min-height: 430px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

span.p-color {
    background: linear-gradient(180deg, #383EFB 0%, #353CF8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
}

.bx-card h3 {
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 64.5px;
    margin: 20px auto 10px;
    text-transform: unset;
}

.bx-card h3 span {
    color: #B2B5B7;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
}

.bx-card p {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 176.023%;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 15px;
}

p.dynqr {
    font-size: 18px;
    margin: 10px 0 34px;
    line-height: normal;
    font-weight: 400;
}

section.common-inner {
    background: #E9E8F4;
    padding-bottom: 60px;
}

section.common-inner .container {
    max-width: 1320px;
    margin: -110px auto 0;
    background: #fff;
    padding: 50px 73px;
    position: relative;
    border-radius: 25px;
}

/* section.structure-plan .container>.row>[class*="col-md"]:not(:nth-last-child(-n+3)) {
    margin-bottom: 30px;
} */

section.structure-plan .container>.row>[class*="col-md"] {
    padding-left: 15px;
    padding-right: 15px;
}

section.structure-plan h3 {
    margin-bottom: 35px;
}

.bx-contact h2 {
    font-size: 30px;
}

.bx-contact img {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.bx-card.bx-contact button.btn {
    margin-top: 20px;
}

.bx-contact,
.pop-lar {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pop-lar {
    border-radius: 25px;
    background: linear-gradient(218deg, #676CFF 3.83%, #353CF8 98.65%);
}

.pop-lar:after {
    background: url(../images/bg-pattern.png) no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

.pop-lar .btn.btn-nobg {
    background: #6368FF;
    color: #fff;
}

.bx-card.pop-lar span.p-color {
    background: none;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #fff;
}

.pop-lar :where(h3,
    span),
.bx-card.pop-lar p {
    color: #fff;
}

p.dynqr b {
    font-family: var(--commonFont);
    font-weight: 600;
}

.bdge {
    position: absolute;
    right: 30px;
    z-index: 2;
    top: -10px;
    filter: drop-shadow(0px 5.5652174949646px 22.2608699798584px rgba(0, 0, 0, 0.15));
}

.bdge-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 20px;
    width: 100%;
}

.bdge-content h4 {
    text-align: center;
    font-size: 25.981px;
    font-weight: 700;
    line-height: 97%;
}

.bdge-content :where(h4,
    p) {
    color: #fff;
    font-style: italic;
    text-transform: uppercase;
}

.btn.btn-nobg:hover {
    color: #fff;
    border-color: var(--orange);
}

.btn-area {
    text-align: center;
    margin-top: 40px;
}

:where(.btn-area,
    .profile-btn,
    .modal-footer) .btn.btn-nobg {
    border-color: var(--text-color);
    color: var(--text-color);
}


/*Footer */

footer {
    background: #000;
    padding: 35px 0 35px;
}

footer .container {
    max-width: 810px;
}

.footer-des {
    margin: 15px auto 28px;
}

.footer-nav li a {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    transition: 0.3s ease all;
    position: relative;
}

.footer-nav li a:hover {
    color: var(--orange);
}

.footer-nav {
    gap: 50px;
}

footer p {
    color: rgb(255 255 255 / 50%);
}

.bottom-footer {
    margin-top: 35px;
}

.footer-nav li a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    transform: scaleX(0);
    left: 0;
    transform-origin: center;
    background: var(--orange);
    height: 1px;
    width: 100%;
    transition: 0.3s ease;
}

.footer-nav li a:hover:before {
    transform: scaleX(1);
}


/* end footer*/


/*forget */

.profile h5 {
    line-height: 26px;
    /* margin-bottom: 5px; */
}

.profile-img {
    max-width: 98px;
    max-height: 98px;
    border-radius: 50%;
    overflow: hidden;
}

.profile {
    gap: 20px;
}

.profile-des p {
    color: #6B6A74;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.btn.btn-blue {
    background: #ECEDFC;
    color: var(--blue);
    font-weight: 600;
}

.btn.btn-blue:hover {
    color: #fff;
}

.btn.btn-blue:before {
    background: var(--blue);
}

.profile-btn {
    gap: 30px;
}

.icon-holder {
    width: 53px;
    height: 53px;
    background: #fff;
}

.forget-content-area p {
    font-size: 15px;
}

.forget-content-area {
    border-radius: 10px;
    background: var(--purplebg);
    padding: 37px 53px;
    margin-top: 37px;
}

.forget-content-area .row [class*="col-md"]:first-child {
    border-right: 1px solid #D9D9D9;
}

.forget-content-area .profile-des h5 {
    color: #33313F;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.email-content {
    padding-left: 40px;
}


/*  */

.modal-header .modal-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 112.523%;
}

:where(.img-prof,
    .profile-img) img {
    height: 100%;
    min-height: 100px;
    object-fit: cover;
    width: 100px;
}

#changepasswordModal .img-prof img,
#editModalToggle .img-prof img {
    max-width: 135px;
    overflow: hidden;
    height: 135px;
    border-radius: 100px;
    object-fit: cover;
    min-width: 135px;
}

.modal-header {
    border: none;
    padding: 0;
}

.edit-prof {
    background: var(--text-color);
    width: 35px;
    height: 35px;
    top: 136px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    position: absolute;
    right: 69px;
    bottom: 4px;
    border: 3px solid #fff;
    cursor: pointer;
}

.delete-prof {
    background: var(--text-color);
    width: 35px;
    height: 35px;
    top: 137px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    position: absolute;
    right: 30px;
    bottom: 4px;
    border: 3px solid #fff;
    cursor: pointer;
}

.delete-prof a i {
    font-size: 15px;
}

.delete-prof a {
    color: #fff;
}

.img-prof {
    max-width: 135px;
    overflow: hidden;
    cursor: pointer;
    /* height: 135px; */
}

.edit-profile {
    max-width: max-content;
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
}

.modal-content {
    border-radius: 25px;
    padding: 40px 34px;
}

.modal-dialog {
    max-width: 872px;
}

.modal-content .modal-body {
    padding: 0;
}

.modal-footer {
    padding: 0;
    border: none;
    justify-content: center;
    gap: 10px;
}

.modal-footer .btn:before {
    display: none
}

.btn.btn-black {
    background: var(--primary);
    color: #fff;
    max-width: 163px;
    width: 100%;
    font-weight: 600;
}

.btn.btn-black:hover {
    border-color: var(--orange);
}

.modal-footer .btn.btn-nobg {
    color: var(--primary);
    border-color: var(--primary);
}

.modal-footer .btn {
    margin: 0;
}

.edit-profile+.row {
    padding: 15px 0 0px;
}


/*Payment method cards*/

.qr-radio [type="radio"]:checked,
.qr-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.qr-radio [type="radio"]:checked+label,
.qr-radio [type="radio"]:not(:checked)+label {
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #fff;
}

.qr-radio [type="radio"]:checked+label:before,
.qr-radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 35%;
    top: 26px;
    width: 18px;
    height: 18px;
    border: 1px solid #BDBDBD;
    border-radius: 100%;
    background: #fff;
}

.qr-radio {
    text-align: center;
    padding: 23px 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    border-radius: 6px;
    overflow: hidden;
}

.qr-radio [type="radio"]:checked+label:after,
.qr-radio [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--blue);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}

.qr-radio [type="radio"]:not(:checked)+label:after {
    background: #F5F5F6;
}

.qr-radio [type="radio"]:not(:checked)+label {
    color: var(--text-color);
}

.heading-head {
    margin-bottom: 30px;
}

.qr-radio [type="radio"]:checked+label:before {
    border: 2px solid #fff;
    background: none;
}

.tab-payment {
    max-width: 804px;
    margin: 0 auto;
}

.tab-btngroup {
    margin-top: 20px;
}


/*end Payment method cards*/


/*Faq page*/

.accordion-item .accordion-button {
    background: none;
    box-shadow: none;
    padding: 15px 0px;
    color: var(--text-color);
    gap: 10px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #E1E0F3
}

.accordion-body {
    color: #4D5569;
    line-height: 163.5%;
    padding: 0 0px 10px;
}

.accordion-item:not(:first-of-type) {
    padding-bottom: 14px;
    padding-top: 14px;
}

.accordion-item:first-of-type {
    padding-bottom: 15px;
}

.accordion-button:not(.collapsed)::after {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.note {
    max-width: 710px;
    margin: 40px auto auto;
    text-align: center;
    opacity: 0.9;
    background: linear-gradient(180deg, #383EFB 0%, #353CF8 100%);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    font-style: italic;
}


/*End Faq page*/


/*Payment Table page*/

.formfield.searchbox span.icon-search.icon {
    right: auto;
    left: 15px;
    top: 12px
}

.formfield.searchbox input.form-control {
    padding: 8px 15px 8px 50px !important;
    min-height: 52px;
}

.formfield.searchbox {
    max-width: 285px;
    margin-right: 0;
    margin-left: auto;
}

.name-bs img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile-bs i {
    color: #3CCEFC;
}

.email-bs i {
    color: #373DFA;
}

table.table th {
    color: #6B6A74;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

table.table :where(td,
    p) {
    color: #33313F;
    font-size: 13px;
    font-weight: 500;
    line-height: 26px;
}

.table> :not(caption)>*>* {
    border: none;
    vertical-align: middle;
    text-align: center;
}

.top-header-table {
    margin: 0 7px 7px;
}

section.common-inner.payment-table .container {
    padding: 35px 30px;
}

table.table {
    border-collapse: separate;
    border-spacing: 0 13px;
}

table.table tbody tr {
    transition: 0.3s ease all;
    overflow: hidden;
    border-radius: 5px;
}

table.table tbody tr td:last-child {
    border-radius: 0 5px 5px 0;
}

table.table tbody tr td:first-child {
    border-radius: 5px 0 0 5px;
    padding: 10px 10px 10px 24px;
}

/* table.table tbody tr:not(:first-child):hover {
    transform: translateY(-3px);
} */

table.table tbody tr td {
    transition: 0.3s ease all;
    background: var(--purplebg);
}

table.table tbody tr:hover td {
    background: #FFF;
}

table.table tbody tr:hover {
    box-shadow: 0px 4px 29px 0px rgba(0, 0, 0, 0.09);
}

.table-responsive {
    padding: 0 15px;
}


/*Plan management*/

.img-plan {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.plan-wraper h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 119.5%;
    margin-bottom: 10px;
}

.plan-wraper p,
.plan-wraper ul li {
    color: #777E90;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.plan-wraper ul li:before {
    content: "\F26A";
    font-family: bootstrap-icons;
    color: var(--blue);
    position: absolute;
    top: 2px;
    left: 0;
}

.plan-wraper ul li {
    position: relative;
    padding-left: 20px;
}

.plan-content {
    margin-bottom: 20px;
    max-width: 1090px;
}

.plan-content h3 {
    margin-bottom: 15px;
}

.plan-content.g-topic {
    max-width: 100%;
    margin-bottom: 55px;
}

.plan-wraper ul li:not(:last-child) {
    margin-bottom: 10px;
}

.conc-wrap ul {
    margin-bottom: 30px;
}

.first-party {
    margin-bottom: 40px;
}

.conclusion p a {
    display: block;
    color: var(--blue);
}


/*payment management details*/

.p-bx {
    padding: 20px;
    border-radius: 10px;
    background: var(--purplebg);
    gap: 20px;
}

.plan-de i {
    color: var(--blue);
}

.p-bx h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.data-p p {
    opacity: 0.7;
}

.expire-d {
    margin-top: 22px;
}

.list-ing ul {
    display: flex;
    flex-wrap: wrap;
}

.list-ing ul li {
    max-width: calc(100%/2);
    width: 100%;
    flex: calc(100%/2);
    position: relative;
    padding-left: 30px;
    color: var(--text-color);
    opacity: 0.7;
}

.list-ing ul li:not(:nth-last-child(2)) {
    margin-bottom: 7px;
}

.list-ing ul li:before {
    content: "\F26F";
    font-family: 'bootstrap-icons';
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    color: #0FB952;
}

.pro-pls p {
    font-weight: 500;
    line-height: normal;
}

.list-ing {
    margin-top: 40px;
    margin-bottom: 45px;
}

.pro-plus {
    padding: 40px 50px;
    border-radius: 25px;
    background: var(--purplebg);
    margin-left: 20px;
}

.pro-pls h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pro-plusimg {
    max-width: 80px;
    height: 80px;
    margin-right: 0;
    margin-left: auto;
    border-radius: 50%;
}

.pro-pls h2 {
    font-size: 35px;
    line-height: 115%;
    margin: 7px auto 10px;
}

.expire-d .icon-p i {
    color: #FB6C3C;
}


/*Home-page-Css*/

.home-banner-section>img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.img-banner .mb-banner {
    position: absolute;
    right: 90%;
    top: 50%;
    left: auto;
    width: 100%;
    max-width: 160px;
    transform: translateY(-50%);
}

.content-banner {
    max-width: 700px;
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.h-banner {
    min-height: 755px;
    padding-bottom: 92px;
}

.content-banner .badge {
    background: #272EF9;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 142.5%;
    text-transform: capitalize;
    color: #fff;
    border-radius: 20px;
    padding: 8px 20px;
    word-break: break-all;
    white-space: inherit;
}

.content-banner h1 {
    color: #fff;
    margin: 10px 0 7px;
    font-size: 57.223px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.144px;
}

.content-banner h1 span {
    display: block;
    font-size: 47.686px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.954px;
}

.content-banner p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 176.023%;
    color: rgb(255 255 255 / 70%);
    margin-bottom: 20px;
}

.scan {
    width: 100%;
    height: 80px;
    border-top: 3px solid #FCD512;
    background: linear-gradient(180deg, rgb(0 0 0 / 30%) 0%, rgba(3, 3, 3, 0.13) 86.59%, rgba(3, 3, 3, 0.00) 100%);
    animation: scanning 1.5s linear alternate infinite;
    position: absolute;
    top: 0;
}

.mb-banner>div {
    transform: rotate(4.64deg);
}

.btn.btn-nobg.btn-blue {
    background: var(--blue);
    color: #fff;
}

.btn-grp .btn {
    min-height: 65px;
    max-width: 230px;
    border-radius: 5px;
}

@keyframes scanning {
    0% {
        transform: translatey(50px);
    }

    100% {
        transform: translatey(240px);
    }
}

.btn.btn-black.btn-icon:after,
.btn.btn-black.btn-icon:before,
.gallery-bx:after,
.gallery-bx:before {
    top: -7px;
}

.btn.btn-black.btn-icon span:before,
.btn.btn-black.btn-icon span:after,
.bx-img:after,
.bx-img:before {
    bottom: -7px;
}

.btn.btn-black.btn-icon:after,
.bx-img:after,
.gallery-bx:after,
.bx-img:before,
.gallery-bx:before,
.btn.btn-black.btn-icon:before,
.btn.btn-black.btn-icon span:before,
.btn.btn-black.btn-icon span:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    transition: 0.3s ease all;
}

.btn-grp {
    padding-left: 10px;
}

.btn.btn-black.btn-icon span:before,
.bx-img:before {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.btn.btn-black.btn-icon span:before,
.btn.btn-black.btn-icon:before,
.bx-img:before,
.gallery-bx:before {
    left: -7px;
    border-radius: 0 0 0 6px;
}

.btn.btn-black.btn-icon span:after,
.btn.btn-black.btn-icon:after,
.bx-img:after,
.gallery-bx:after {
    right: -7px;
}

.btn.btn-black.btn-icon {
    position: relative;
    overflow: unset;
}

.btn.btn-black.btn-icon:after,
.gallery-bx:after {
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    border-radius: 0 6px 0 0;
}

.btn.btn-black.btn-icon span:after,
.bx-img:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-radius: 0 0 6px 0;
}

.btn.btn-black.btn-icon:before,
.gallery-bx:before {
    background: none;
    transform: unset;
    top: -6px;
    border-radius: 6px 0 0 0;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
}

.btn-grp .btn.btn-blue:before {
    background: var(--orange);
}

.btn-grp {
    gap: 22px;
}

.gallery .row {
    row-gap: 1rem;
}


/*End Home-page-Css*/


/*Logo client css*/

.logo-wrapper .container {
    border-radius: 10px;
    background: #fff;
    transform: translateY(-92px);
    min-height: 200px;
    padding: 40px;
    margin-bottom: -25px;
}

.logo-wrapper h6 {
    margin-bottom: 45px;
}

.logo-wrapper .d-flex {
    justify-content: space-between;
    max-width: 830px;
    margin: 0 auto;
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: 1rem;
    align-items: center;
}

.h-banner .btn-grp {
    flex-wrap: wrap;
}


/*End Logo client css*/


/*Gallery testimonial*/

.gallery-bx img {
    border-radius: 10px;
}

.gallery-bx {
    position: relative;
}

.heading-head h6 {
    background: linear-gradient(180deg, #383EFB 0%, #353CF8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

.heading-head h2 {
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.gallery {
    background: var(--purplebg);
    padding: 0 0 70px;
}

.logo-wrapper {
    background: var(--purplebg);
}

.bx-img:before,
.bx-img:after,
.gallery-bx:before,
.gallery-bx:after {
    border-color: var(--text-color);
}

.bx-img:after,
.bx-img:before,
.gallery-bx:after,
.gallery-bx:before {
    opacity: 0;
}

.gallery-bx:hover .bx-img:after {
    right: -8px;
    bottom: -8px;
    opacity: 1;
}

.gallery-bx:hover:before {
    left: -8px;
    top: -8px;
    opacity: 1;
}

.gallery-bx:hover:after {
    right: -8px;
    top: -8px;
    opacity: 1;
}

.gallery-bx:hover .bx-img:before {
    left: -8px;
    bottom: -8px;
    opacity: 1;
}

.gallery .btn.btn-black {
    max-width: 230px;
    margin-top: 50px;
}


/*Code Campaign*/

.campaign-box {
    border-radius: 18px;
    background: #101213;
    padding: 30px 20px;
    min-height: 236px;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.campaign-left span {
    font-size: 67.971px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    text-transform: capitalize;
    text-align: center;
    text-shadow: 0px -0.6px 0 #535455, -0.5px -0.5px 0 #535455, 0.5px -0.5px 0 #535455, -0.5px 0.5px 0 #535455, 0.5px 0.5px 0 #535455;
    color: #101213;
}

.campaign-right h4 {
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.campaign-right ul li {
    color: #777E90;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 142%;
    padding-left: 20px;
    position: relative;
}

.campaign-right ul li:not(:last-child) {
    margin-bottom: 10px;
}

.campaign-left {
    max-width: 260px;
    width: 100%;
    display: flex;
}

.campaign-right {
    max-width: calc(100% - 270px);
    width: 100%;
}

.campaign-right ul li:before {
    content: "\F135";
    font-family: 'bootstrap-icons';
    font-size: 22px;
    color: var(--orange);
    position: absolute;
    top: 0;
    left: -3px;
}

.campaign .row [class*="col-lg"]:not(:nth-last-child(-n+2)) {
    margin-bottom: 23px;
}

.campaign {
    padding: 65px 0;
    background: var(--text-color);
}

.campaign h2 {
    color: #fff;
}


/*End Code Campaign*/


/*info code box*/

.info-wrapper {
    padding: 70px 0;
    background: var(--purplebg);
}

.info-box {
    border-radius: 15px;
    padding: 55px 35px;
    background: #fff;
    height: 100%;
}

.info-wrapper [class*="col-md"] {
    margin-bottom: 23px;
}

.info-box h4 {
    color: #2A2942;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 119.5%;
}

.info-box p {
    color: #777E90;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 189.5%;
}


/* End info code box*/


/* Tech Stack Css*/

.tech-stack .btn.btn-common {
    background: var(--orange);
    max-width: 230px;
    border-radius: 5px;
}

.tech_stack {
    background: var(--purplebg);
}

.tech-stack-img {
    text-align: center;
    position: relative;
    z-index: 9;
}

.tch-p {
    position: absolute;
    top: 65%;
    z-index: 1;
    left: 100px;
    -webkit-animation: mover 1s infinite linear alternate;
    animation: mover 1s infinite linear alternate;
}

.tech-stck:before,
.tech-stack-img:before,
.tech-stck:after {
    content: "";
    width: 352px;
    height: 349px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.tech-stck:after {
    width: 484px;
    height: 480px;
    opacity: 0.3;
    background: #C1C1E5;
    z-index: -2;
}

.tech-stack-img:before {
    width: 420px;
    height: 416px;
    background: #fff;
    z-index: -1;
    opacity: 0.4;
}

.tech-stck:before {
    z-index: 1;
}

.tech-stck img {
    position: relative;
    z-index: 1;
}

.tech-stack {
    max-width: 655px;
}

.tech-stck>img {
    transform: translateX(30px);
}

.tech_stack {
    background: var(--purplebg);
    padding-bottom: 90px;
}

.tech-stack p {
    color: #777E90;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 164%;
    margin-bottom: 20px;
}

.tech-stack .heading-head {
    margin-bottom: 18px;
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.tech-stack .btn.btn-common:before {
    background: var(--secondary);
}

.tech-stck:before,
.tech-stack-img:before,
.tech-stck:after {
    max-width: 0;
    max-height: 0;
    transition: 0.9s ease all;
}

.tech-stck:before {
    transition-delay: 0.8s;
}

.tech-stack-img:before {
    transition-delay: 0.4s;
}

.tech-stck:after {
    transition-delay: 0.12s;
}

[data-aos^="fade"][data-aos^="fade"].aos-animate .tech-stck:before,
[data-aos^="fade"][data-aos^="fade"].aos-animate .tech-stack-img:before,
[data-aos^="fade"][data-aos^="fade"].aos-animate .tech-stck:after {
    max-width: 100%;
    max-height: 100%;
}


/* End Tech Stack Css*/


/*Faq section home*/

.faq {
    padding: 70px 0;
}

.faq #accohomeQR .accordion-item:last-child {
    border-bottom: none;
}


/*End Faq section home*/


/*My QR Codes listing*/

.qr-bx {
    width: 190px;
    height: 169px;
    display: grid;
    place-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.list-box {
    background: var(--purplebg);
    padding: 14px;
    flex-wrap: wrap;
    border-radius: 15px;
}

.qr-cont {
    max-width: calc(100% - 190px);
    width: 100%;
    padding-left: 30px;
    display: flex;
}

.qr-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

span.yuicon {
    width: 25px;
    height: 25px;
    background: #FFDFDF;
    display: grid;
    place-content: center;
    border-radius: 50%;
    font-size: 14px;
    color: #CD201F;
}

.link-yu a {
    font-size: 14px;
    font-style: italic;
    text-decoration: underline;
    color: var(--blue);
}

.qr-data h3 {
    font-size: 22px;
    font-weight: 600;
}

.link-yu {
    margin: 15px 0 22px;
    gap: 6px;
}

.qr-data {
    width: 100%;
    max-width: calc(100% - 150px);
    flex: 100%;
}

.link-area {
    max-width: 150px;
    width: 100%;
    flex: 100%;
}

.qr-data .btn {
    font-size: 14px;
    font-weight: 500;
    max-width: 132px;
    border-radius: 5px;
    width: 100%;
    color: var(--text-color);
    min-height: 42px;
    border: none;
}

.btn.btn-grey {
    background: rgb(25 28 29 / 10%);
}

.link-area .btn {
    display: flex;
    align-items: center;
    background: #fff;
    gap: 7px;
    min-height: 41px;
    max-width: 137px;
    font-weight: 500;
    color: var(--text-color);
    margin-left: auto;
}

.btn.btn-del {
    background: #FFD1D1;
    color: var(--orange);
}

.qr-list-btns {
    gap: 10px;
}

.link-area .btn i {
    font-size: 12px;
}

.qr-cont .btn.btn-del:before {
    background: #F44336;
}

.qr-cont .btn.btn-del:hover,
.qr-cont .btn.btn-grey:hover {
    color: #fff;
}

.qr-cont .btn.btn-grey:before {
    background: var(--primary);
}

.link-area .btn:before {
    display: none;
}

.list-wrapper {
    margin-top: 33px;
}

.list-wrapper .list-box:not(:last-child) {
    margin-bottom: 36px;
}

.list-generated .container .list-wrapper {
    max-height: 1180px;
    overflow-y: auto;
    padding-right: 10px;
}


/*End Codes listing*/


/*Start Generate QR Code*/

.num-tab span {
    width: 34px;
    display: grid;
    height: 34px;
    place-content: center;
    border-radius: 50%;
    color: #fff;
    margin: 0 auto;
}

.tab-multi .nav-tabs .nav-link.active .num-tab span {
    background: var(--blue);
    border: 2px solid #9999f8;
    color: #fff;
}

.num-tab span {
    border: 1px solid #51585C;
    color: #51585C;
    background: #fff;
    position: relative;
    z-index: 1;
}

.num-tab p {
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: #969696;
    margin-top: 8px;
}

.nav-link.active .num-tab p {
    color: var(--text-color);
}

.tab-multi .nav-tabs .nav-item.show .nav-link,
.tab-multi .nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: none;
    box-shadow: none;
    outline: none;
}

.tab-multi .nav-tabs {
    justify-content: space-between;
    border: none;
    margin-bottom: 20px
}

.tab-multi .nav-tabs .nav-link {
    position: relative;
    flex: 1;
    overflow: hidden;
    border: none;
}

.tab-multi .nav-tabs .nav-link:first-child:after {
    left: calc(100% - 127px);
}

.tab-multi .nav-tabs button:after {
    content: "";
    width: 100%;
    position: absolute;
    top: 26px;
    left: -1px;
    height: 1px;
    z-index: 0;
    border-top: 2px dotted #969696;
}

.tab-multi .nav-tabs .nav-link:last-child:after {
    right: calc(100% - 130px);
    left: auto;
}

.btn-group {
    max-width: 411px;
    width: 100%;
}

.btn-group .btn:before {
    display: none;
}

.btn-group .btn-links.btn {
    background: var(--blue);
    color: #fff;
    border: 1px solid var(--blue);
}

.btn-group .btn {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #E4E4E4;
    line-height: normal;
    min-height: 42px;
    background: #fff;
    border-radius: 5px;
}

.btn-group .btn.btn-icon i {
    font-size: 14px;
}

.tab-container h3 {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
}

.tab-container {
    padding: 39px 56px;
    background: var(--purplebg);
    border-radius: 15px;
}

.pste-wrap .paste-link {
    width: 100%;
    justify-content: center;
    height: 89px;
    color: var(--text-color);
    background: var(--purplebg);
    border-radius: 8px;
}

.pste-wrap {
    border-radius: 8px;
    background: rgb(255 255 255 / 60%);
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border: 2px dashed rgb(56 62 251 / 60%);
    margin-top: 17px;
}

.btn-text.btn.btn-icon i {
    font-size: 15px;
}

.pste-wrap .paste-link i {
    color: var(--blue);
    font-size: 16px;
}

.generate-code h3 {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn-container {
    margin-top: 24px;
}


/*upload tab*/

.tab-btn-container .btn.btn-black {
    min-height: 55px;
}

.skip-wrap {
    max-width: calc(100% - 97px);
    width: 100%;
    gap: 10px;
}

.upload-proof-doc {
    border: 2px dashed rgb(56 62 251 / 60%);
    padding: 25px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    min-height: 181px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: rgb(255 255 255 / 60%);
}

.upload-proof-doc .form-control {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
}

.upload-proof-doc p {
    color: #343738;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.upload-proof-doc a {
    text-decoration: underline;
    color: var(--blue);
}

.upload-proof-doc span img {
    max-width: 60px;
}

.tab-upload .btn.btn.btn-grey {
    max-width: 97px;
    width: 100%;
    min-height: 42px;
    background: #DDDDEA;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.skip-wrap h4 {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.upload-qr {
    margin-top: 20px;
}

.tab-btn-container .btn {
    min-height: 55px;
}

.tab-btn-container .btn.btn-nobg {
    color: var(--text-color);
    border-color: var(--text-color);
    background: var(--purplebg);
    margin-right: 5px;
}

.tab-btn-container .btn.btn-nobg:hover,
.tab-upload .btn.btn.btn-grey:hover {
    color: #fff;
}

.tab-btn-container .btn.btn-nobg:before {
    background: var(--text-color);
}


/*color swatches*/

.color_wrapper {
    padding: 0px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.color_wrapper .color_varint {
    position: relative;
    padding: 0;
    display: inline-block;
}

.colorRadioinput {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}

label.colorMainbox {
    margin: 0;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: relative;
    cursor: pointer;
}


/*
 .colorRadioinput:checked + .colorMainbox{
    border-color: var(--blue);
}
*/

.colorRadioinput:checked+.colorMainbox:after {
    border: 2px solid var(--blue);
}

.colorRadioinput:checked+.colorMainbox::before {
    opacity: 1;
}

.colorMainbox::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: url(../images/select-tick.svg) no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0;
}

.colorMainbox:after {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: -4px;
    left: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: 0.3s ease all;
}

.generate-code .shape-tab h3 {
    margin-bottom: 10px;
}

.colorMainbox.shape.circle img {
    border-radius: 50%;
}

[for="square-shape"]::after {
    border-radius: 0;
}

.select-type label.colorMainbox {
    width: 138px;
    height: 138px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrdesign {
    border: coral;
    border-radius: 100%;
    overflow: hidden;
}

.pste-wrap label {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    opacity: 1;
}

.shape-tab>div {
    margin-bottom: 30px;
}

body :where(.select-shape,
    .select-type) .colorMainbox::before {
    background: url(../images/select-btick.svg) no-repeat;
    background-size: contain;
    width: 17px;
    height: 17px;
}

label.colorMainbox.shape {
    border: 0;
}

label.colorMainbox.shape-type.colorMainbox::before {
    right: 10px;
    bottom: 0px;
}

.select-type .color_wrapper {
    gap: 30px;
}

.select-shape .color_wrapper {
    gap: 40px;
}


/*Qr code generate 4rth tab*/

.qr-box p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: rgb(25 28 29 / 50%);
    max-width: 195px;
    text-align: center;
    margin-top: 10px;
}

.qr-box {
    display: grid;
    place-content: center;
    max-width: 336px;
    min-height: 310px;
    margin: 0 auto 40px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    background: var(--purplebg);
    /*    border: 1px solid #D7D8E7; */
    overflow: hidden;
    filter: drop-shadow(0px 10px 44px #E3E4F4);
}

.qr-box::before {
    content: "";
    background: url(../images/product-bg.png) no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.heading-qr h3 {
    margin-bottom: 15px;
}

.qr-box img {
    margin: 0 auto;
}

.shape-tab {
    padding-bottom: 10px;
}

.qr-wrapper :where(.qr-box-left, .qr-box-right) {
    width: 287.014px;
    height: 159.36px;
    background: #fff;
    border-radius: 15px;
    position: absolute;
    top: calc(50% + 10px);
}

.qr-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.qr-wrapper .qr-box-left {
    left: -20px;
    transform: translateY(-50%) rotate(-7.783deg);
}

.qr-wrapper .qr-box-right {
    right: -20px;
    transform: translateY(-50%) rotate(7.783deg);
}

.tab-btn-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}


/*End Generate QR Code*/


/********** QR Corporate page code ********/

.qr-corporate-plan-sec {
    background: #E9E8F4;
    padding-bottom: 60px;
}

.qr-corporate-plan-sec .container {
    max-width: 1320px;
    margin: -110px auto 0;
    background: #fff;
    padding: 50px 73px;
    position: relative;
    border-radius: 25px;
}

.corporate-column-left h3 {
    font-size: 16px;
    font-weight: 500;
    color: #383EFB;
}

.corporate-column-left h2 {
    color: #191C1D;
    font-size: 30px;
    font-weight: 700;
    margin: 18px 0;
}

.corporate-column-list {
    padding-left: 20px;
}

.corporate-column-list li {
    opacity: 0.7;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    list-style: disc;
    margin-bottom: 10px;
}

.corporate-column-right {
    text-align: right;
    position: relative;
}

.qr-party-column h3 {
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.party-qr-cards {
    border-radius: 25px;
    background: linear-gradient(105deg, #E1E6F0 3.4%, #EFEFEF 98.1%);
    padding: 40px;
    text-align: center;
    height: 100%;
}

.QR-corporate-row {
    row-gap: 25px;
}

.party-qr-cards h5 {
    color: #2A2942;
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

.party-qr-cards p {
    color: #777E90;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
}

.benefit-corporate-row {
    margin-top: 60px;
    align-items: center;
}

.corporate-column-left p {
    color: #777E90;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    padding-right: 100px;
}

.benefitCorporte-Formright {
    border-radius: 20px;
    background: linear-gradient(105deg, #e1e6f061 3.4%, #efefefa6 98.1%);
    padding: 32px;
    max-width: 460px;
    margin-left: auto;
}

.benefitCorporte-Formright label {
    color: var(--black, #191C1D);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}

.benefitCorporte-Formright input,
.benefitCorporte-Formright .form-select {
    border-radius: 8px;
    border: 1px solid #C5C5E3;
    background: #FFF;
    padding: 19px 50px 19px 17px;
    font-size: 14px;
    min-height: auto;
    line-height: normal;
}

#rc-anchor-container {
    border: 1px solid #c5c5e4 !important;
    box-shadow: none !important;
}

.benefit-send-button button {
    width: 100%;
    border-radius: 8px;
    border: 3px solid var(--black, #191C1D);
    background: var(--black, #191C1D);
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
}

.benefit-send-button button:hover {
    border: none;
    box-shadow: none;
    background: none;
}

.benefitCorporte-Formright .mb-3 {
    position: relative;
}

.benefitCorporte-Formright svg {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(3px);
}


/********** End QR Corporate page code ********/
.dropdown.filter-dd-bx .dropdown-toggle {
    border: unset;
    background: transparent;
}

.dropdown.filter-dd-bx .dropdown-toggle::after {
    display: none;
}

.dropdown.filter-dd-bx .dropdown-item.btn.btn-primary {
    background: #0d6efd;

    color: #fff;
    min-height: 30px;
}

.ls-box .append-icon {
    height: 50px;
    min-height: 50px;
    border-color: #DEE0E3;
}

.search-input-bx {
    min-width: 280px;
    width: 280px;
}

.ls-box .btn-primary {
    min-width: 50px !important;
    /* border-radius: 26px !important; */
    padding: 11px 11px;
}

.ls-box .form-control,
.ls-box .btn-primary,
#addBtn {
    height: 50px !important;
    min-height: 50px;
    font-size: 14px;
    font-weight: 400;
}

.search-input-bx .form-control {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.form-cstm .is-invalid {
    background: unset;
    border: unset;
    padding: 0;
}

.dropdown-item.has-icon i {
    margin-top: 1px;
}

.form-cstm .invalid-feedback {
    color: #f00 !important;
}

/* .form-control.is-invalid {s
    border-color: #f00 !important;
} */
.icon-font-size {
    border: unset !important;
}

.icon-font-size i {
    color: #33313F !important;
}

.icon-font-size:before {
    background: unset;
}

.input-group-prepend {
    display: flex-end;
}

.theme-white .btn-primary:focus {
    background-color: var(--primary-color) !important;
}

.alert-container {
    margin: 15px 0;
}

.alert {
    padding: 15px 25px;
    margin-bottom: 0;
    border-radius: 6px;
    display: flex;
}

.alert-success {
    color: #75B43C;
    background-color: #E3F0D8 !important;
    border-color: #C8E1B1;
}

.alert-warning {
    color: #F6AB2F;
    background-color: #FEF7EA !important;
    border-color: #FFEDCB;
}

.alert-danger {
    color: #FF3838;
    background-color: #FFE6EB !important;
    border-color: #FFD9E0;
}

.alert-icon {
    margin-right: 20px;
}

.alert-icon i {
    font-size: 22px;
}

.alert h6 {
    font-size: 20px;
    margin: 0 0 5px;
    color: unset;
}

.alert p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.alert-cross {
    display: flex;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-color: var(--white);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    margin-left: auto;
    cursor: pointer;
    background: #fff;
}

.form-group.floating-addon .input-group-prepend .input-group-text {
    display: flex;
    align-items: flex-end;
}

.rem-logo-btn .btn-grey {
    max-width: unset !important;
    width: fit-content !important;
}

.rem-logo-btn {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.rem-logo-btn .btn-grey {
    max-width: unset !important;
    width: fit-content !important;
    white-space: nowrap;
}

.rem-logo-btn .btn-black {
    background: #000 !important;
}

.nav-link.active:last-child .num-tab p {
    color: #0d6efd;
}

.main-sidebar .sidebar-menu li a span {
    white-space: nowrap;
}

.payment-cards.common-inner .alert-container {
    margin: 15px auto;
    max-width: 804px;
}

.custom-switch-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-switch-indicator {
    display: inline-block;
    height: 1.25rem;
    width: 2.25rem;
    background: #e9ecef;
    border-radius: 50px;
    position: relative;
    vertical-align: bottom;
    border: 1px solid rgba(0, 40, 100, 0.12);
    transition: 0.3s border-color, 0.3s background-color;
}

.custom-switch-input:checked~.custom-switch-indicator:before {
    left: calc(1rem + 1px);
}

.custom-switch-indicator:before {
    content: "";
    position: absolute;
    height: calc(1.25rem - 4px);
    width: calc(1.25rem - 4px);
    top: 1px;
    left: 1px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s left;
}

.custom-switch-input:checked~.custom-switch-indicator {
    background: #1372e6;
}

.errors {
    color: #dc3545;
    margin-top: .25rem;
}

.dd-btn1,
.dd-btn2 {
    /* min-height: 45px; */
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: large;
}

.dropdown.filter-dd-bx li {
    border: unset !important;
}

.filter-dd-bx .dropdown-menu {
    padding: 8px 10px;
    border-radius: 8px;
}

img#logopreview {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

.img-prof.rounded-circle input {
    display: none;
}

.qr-box-main {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.cstm-card-bx {
    margin-bottom: 20px;
}

.cstm-card-bx .input-group .input-group-btn .btn {
    border-radius: 26px !important;
}

#myTab2 .nav-link,
#myTab2 .nav-link:hover {
    border: 1px solid transparent;
    margin-bottom: 0;
}

#myTab2 .nav-item.show .nav-link,
#myTab2 .nav-link.active,
#myTab2 .nav-link:focus {
    border: 1px solid #dee2e6;
    border-bottom-color: transparent;
}

/* Loader css Start */
.sk-circle {
    width: 40px;
    height: 40px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-circle .sk-child:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #E2E2E2;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.page-loader {
    overflow: hidden;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #00000070;
    z-index: 99999;
    top: 0;
    display: flex;
    justify-content: center;
}

/* Loader css end  */




section.small-banner.privacy-banner {
    margin-top: 100px;
    padding: 100px 0px;
}

.privacy-banner .banner-title {
    text-align: center;
    margin: 20px 0px;
    color: #fff;
}

.privacy-banner .white-text {
    text-align: center;
    color: #fff;

}

.iziToast>.iziToast-body .iziToast-icon {
    display: block !important;
}

span.nameofplan {
    font-size: 30px;
    font-weight: 600;
}

.modal-header {
    border: none;
    margin-bottom: 22px;
}


.profile-des h5 {
    font-size: 16px;
}

.card-header h4 {
    /* text-transform: uppercase; */
    font-size: 18px;
}

.profile-des h5 {
    font-size: 16px;
    /* flex: 0 0 460px; */
    line-height: 1;
    padding-bottom: 10px;

}

.profile-des {
    /* display: flex; */
    /* justify-content: space-between; */
    align-items: center;
    gap: 10px;
    /* width: 50%; */
    margin-bottom: 4px;
}

.QR-details {
    width: 100%;
}

.card {
    margin-bottom: 20px;
}

/* .table tbody :where(tr:last-child, tr:nth-last-child(2)) .dropdown.filter-dd-bx ul.dropdown-menu {
    inset: -140px auto auto -10px !important;
} */

.qr-details
{
    background: #000 !important;
}
.qr-url {
    max-width: 152px;
}
/*  */
.form-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.qr-details
{
    background: #000 !important;
}
.qr-url {
    max-width: 152px;
}

.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.select2-container--default .select2-selection--single{
    min-height: 37px;
}


.inner-wrap.custm-inner-wrap .formfield{
    border-radius: 8px;
}

.inner-wrap.custm-inner-wrap .formfield .select2-container--default .select2-selection--single{
    min-height: 60px;
    border-radius: 8px;
}

.inner-wrap.custm-inner-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    line-height: 28px;
    display: flex;
    align-items: center;
    min-height: 60px;
}
.inner-wrap.custm-inner-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1px;
    width: 20px;
}
.social-media-link-bx .profile-des p {
    margin-bottom: 9px;
}
.link-txt-line {
    display: flex;
}
.nobtn:hover {
    color: var(--text-color) !important;
}
.nobtn::before{
    display:none;
}
.nobtn {
    cursor: auto !important;
}
.sendreset{
    color: white !important;
}
#googleTopics>*{
cursor: pointer;
}
.select2-results ul li {
    cursor: pointer;
}
.submit-reset-btn.btn:before {
    background: unset;
}

.table-striped .btn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    top: 0;
    left: 0;
    background: var(--orange) !important;
    z-index: -1;
    transition: 0.3s ease all;
}
.table-striped .btn:hover:before {
    transform: scaleY(1);
}
.change-plan-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.pop-lar .bx-card h3{
    color: #fff !important;
}
.payingloader{
    display: flex !important;
    gap: 5px;
    align-items: center;
}
.action-btns {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.common-inner .container .card-body .table-responsive{
    padding: 0 ;
}
.common-inner .container .card-body {
    padding: 0;
}
.skip-btn{
    min-height: 42px;
    display: flex;
    justify-content: end;
    margin-bottom: 30px;
    max-height: 42px;
}
.skip-btn button{
    max-height: 42px;
    min-height: 42px;
}


a.google-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: underline;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

a.google-btn img {
    max-width: 16px;
    max-height: 16px;
}

.bx-wht.position-relative {
    height: 100%;
}

.heading-head > a {
    box-shadow: 2px 2px 2px #ddd;
    width: 25px;
    height: 25px;
    display: inline-flex;
    min-width: 25px;
    margin-left: 15px;
}