
html {
  scroll-behavior: smooth;
}

@font-face { 
    font-family: 'Poppins'; 
    src: url('fonts/Poppins-Regular.ttf') 
    format('truetype'); 
    font-weight: 500; 
    font-style: normal; 
}

body {
  background-color: white;
  max-width: 100%;
  height: 100vh;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: auto;
  font-family: "Poppins", sans-serif;
  position:relative;
}

@media (min-width: 600px) {
  body {
    max-width: 400px;
    border-left: solid 1px #a8a8a8;
    border-right: solid 1px #a8a8a8;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  padding-top: 0px;
  background-color: #0072ff;
  color: white;
  position: sticky;
  bottom: 0px;
  width: calc(100% - 20px);
  border-radius: 4% 4% 0 0;
  overflow-x: auto;
  z-index:1000000000;
}

footer > * { 
    flex: 1;
    text-align: center;
}

footer button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 10px;
  white-space: nowrap;
  width: fit-content;
  height: 70px;
}

footer button i {
  font-size: 30px !important;
  margin-bottom: 5px;
  padding-top: 2px !important;
  margin-right: 5px;
}

footer button i:hover {
  color: #00bfff;
}

footer button p {
  margin: 0;
  font-size: 12px;
}

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

.profile-picture{
    height:45px;
    width:45px;
}

.scrollable-content {
  flex: 1;
  overflow-y: auto;
  padding: 0px 10px;
  overflow-x: hidden;
}

header {
  height: 50px;
  background-color: #5271ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

header::before {
  content: "";
  background-image: radial-gradient(
    white 10%,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0)
  );
  position: absolute;
  top: -80px;
  left: -80px;
  z-index: -1;
  width: 200px;
  height: 200px;
  opacity:0.7;
}

header .logo {
  font-weight: 700;
  display: flex;
  align-items: center;
}

header .logo .logo-heading{
    display: flex;
    flex-direction: column;
}

header .logo .logo-heading p{
    margin: 0;
}

header .logo .logo-heading .logo-heading-p{
    color: #FFFE77;
    font-size: 13px;
}

header .logo img {
  margin-right: 10px;
  height: 35px;
}

header .notifications {
  position: relative;
  font-size: 35px;
}

.fa-lock{
    font-size: 20px;
}


.access-blocked{
    padding: 0px 10px;
    /*pointer-events: none;*/
    /*user-select: none;*/
    position: relative;
}

/*Riddhi css changes*/

/*.access-blocked-background{*/
/*    position: absolute;*/
/*    background-color: rgba(0, 0, 0, 0.35);*/
/*    left: 0px;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/


/* Mobile menu styles */

.mobile-menu {
    display: none; /* Hidden by default */
    border-radius: 20px;
    background-color: #f9f9f9;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    font-size:16px !important;
}



.mobile-menu.active {
    display: flex;
    max-height: 89vh;
    top: 50px;
    right: 0;
    position: absolute;
    justify-content: end;
    transform: translateX(0);
    width: fit-content;
    margin-left: auto;
    z-index:99999999999999;
}


.header-card-container {
  background: transparent;
  border-radius: 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
}

.header-card-border {
  position: absolute;
  z-index: -1;
  background: white;
  border: 2px solid black;
  border-radius: 20px;
  width: 255px;
  top: 0px;
  right: 5px;
  display: flex;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: 10px 10px 0px 0px rgba(217, 217, 217, 0.75);
}

.header-card-border-login{
  height:110px;
}
.header-card-border-theme{
  height:600px;
}
.header-card-border-dashboard{
  height:250px;
}

.header-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px black solid;
  padding: 10px 5px;
  border-radius: 20px;
  flex-grow: 1; 
  overflow-y: auto;
}

/*.header-card-body a {*/
/*  text-decoration: none;*/
/*  border-bottom: 2px solid black;*/
/*}*/
.header-card-body a {
  text-decoration: none;
  border-bottom: 2px solid rgba(0,0,0,0.5);
}

.header-card-body .header-card-item:last-child{
    border: none;
}

.header-card-item {
  display: flex;
  align-items: flex;
  justify-content: space-between;
}

.header-card-item .circle {
  width: 30px;
  height: 30px;
  background: #047230;
  border-radius: 50%;
  margin-right: 20px;
}

.header-card-item .text {
  font-size: 16px;
  font-weight: 600;
  width: -webkit-fill-available;
  text-align: end;
  color: black;
}

.header-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}

.header-card-footer .footer-text {
  font-size: 22px;
  font-weight: 600;
  color: #ff3130;
}

/*.mobile-menu ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.mobile-menu li {*/
/*    margin: 15px 0;*/
/*}*/

/*.mobile-menu a {*/
/*    text-decoration: none;*/
/*    color: #333;*/
/*    font-weight: bold;*/
/*}*/

/* Overlay to dim background when menu is open */
.overlay-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay-mobile-menu.active {
    display: block;
}


.badge {
  position: absolute;
  top: 0;
  right: -10px;
  background-color: yellow;
  color: black;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 15px;
}

header .profile {
  display: flex;
  align-items: center;
}

header .profile i {
  font-size: 35px;
  margin-left: 5px;
}

header .profile .name {
  max-width: 90px;
  text-align: end;
  font-weight: 600;
  font-size:10px;
}

header .profile .name a{
  color: #ffffff;
  text-decoration:none;
}

footer button.active {
  background-color: #ffffff;
  color: #0072ff;
  border-radius: 0px 0px 12px 12px;
  padding: 0 10px;
}


footer button.active i {
  color: #0072ff;
}

footer button.active p {
  color: #0072ff;
}

footer button i:hover {
  color: #00bfff;
}

footer button.active i:hover {
  color: #005bbb;
}

.sharedWith-d5746546 :root, .Feedback-aa95c367 :root, .exploreCards-listPage-e1d02d07 :root, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f :root, .RegistrationPage-746606b2 :root, .resetPassword-08026927 :root, .EmailOTP-2ae3d843 :root, .sharedCards-Page2-92c96ab5 :root, .homePage-51ea6cf0 :root, .Enquries-463ecf22 :root, .phoneSignup-0832247f :root, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 :root, .sharedCards-Page1-b24129ba :root {
  --penguin-face: white;
  --penguin-picorna: orange;
  --penguin-skin: gray;
  --div-background-color:#f1f1f1;
}

.RegistrationPage-746606b2 #fname_msg,
.RegistrationPage-746606b2 #lname_msg,
.RegistrationPage-746606b2 #contverft_msg,
.RegistrationPage-746606b2 #emailverfy_msg,
.RegistrationPage-746606b2 #otp_veri1,
.RegistrationPage-746606b2 #passw_msg,
.RegistrationPage-746606b2 #cpassw_msg,
.basicDetails-5d7f747e #b_address_msg,
.basicDetails-5d7f747e #ad_state_b_msg,
.basicDetails-5d7f747e #fname_msg,
.basicDetails-5d7f747e #lname_msg,
.basicDetails-5d7f747e #n_verify,
.basicDetails-5d7f747e  #fname_alt_msg,
.basicDetails-5d7f747e #lname_alt_msg,
.basicDetails-5d7f747e #cont_num_msg,
.basicDetails-5d7f747e #otp_veri_alt,
.basicDetails-5d7f747e #contverft_msg,
.basicDetails-5d7f747e #otp_veri,
.basicDetails-5d7f747e #otp_veri_alt,
.basicDetails-5d7f747e #bname_msg,
.basicDetails-5d7f747e #b_type_msg,
.basicDetails-5d7f747e #cate_msg,
.basicDetails-5d7f747e #show_subcat_msg,
.basicDetails-5d7f747e #otp_veri1,
.basicDetails-5d7f747e #b_whatsup_msg{
    text-align: left;
    color: red;
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1;
    display: block;
}

.RegistrationPage-746606b2 .otp_veri2{
  text-align: left;
    color: red;
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1;
    display: block;
}

.premiumCard-c59fb659 html, .sharedWith-d5746546 html, .products-Pages-6add77b1 .products-Pages-c09438f3 html, .Page-043a1c29 html, .sharedCards-Page2-92c96ab5 html, .homePage-51ea6cf0 html, .planPage-984c611a html, .gallery-0999fc63 html, .myCards-Page1-d5891c41 html, .sharedCards-Page1-b24129ba html, .exploreCards-listPage-e1d02d07 html, .resetPassword-08026927 html, .socialNetwork-330f6e4d html, .RegistrationPage-746606b2 html, .basicPlan-3f798e55 html, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d html, .myCards-Page3-fb462f94 html, html, .phoneSignup-0832247f html, .PaymentTab-fb53e347 html, .Enquries-463ecf22 html, .paymentPage-8a65842a html, .socialLinks-1a95806b html, .Feedback-aa95c367 html, .cardPage-fbaa7205 html, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 html, .videoPages-Pages-3fef54c1 html, .aboutUs-9f548a5a html, .Stats-and-genereal-Dashboard-00a6e9dc html, .videoPages-8c76f39f html, .products-9f521fcc html, .basicDetails-5d7f747e html, .Co-brand-f75f52a1 html, .IconPage-ae0fad5c html, .settingsPage-d3b31cc7 html, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 html, .EmailOTP-2ae3d843 html, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f html, .exploreCards-basePage-3ce41a37 html, .myCards-Page2-375179bc html {
  scroll-behavior: smooth;
}

.sharedCards-Page1-b24129ba .profile-picture, .resetPassword-08026927 .profile-picture, .exploreCards-listPage-e1d02d07 .profile-picture, .phoneSignup-0832247f .profile-picture, .sharedCards-Page2-92c96ab5 .profile-picture, .myCards-Page3-fb462f94 .profile-picture, .settingsPage-d3b31cc7 .profile-picture, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .profile-picture, .products-Pages-6add77b1 .profile-picture, .products-Pages-c09438f3 .profile-picture, .socialNetwork-330f6e4d .profile-picture, .sharedWith-d5746546 .profile-picture, .basicDetails-5d7f747e .profile-picture, .videoPages-8c76f39f .profile-picture, .planPage-984c611a .profile-picture, .premiumCard-c59fb659 .profile-picture, .EmailOTP-2ae3d843 .profile-picture, .Co-brand-f75f52a1 .profile-picture, .cardPage-fbaa7205 .profile-picture, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .profile-picture, .socialLinks-1a95806b .profile-picture, .Feedback-aa95c367 .profile-picture, .videoPages-Pages-3fef54c1 .profile-picture, .aboutUs-9f548a5a .profile-picture, .gallery-0999fc63 .profile-picture, .homePage-51ea6cf0 .profile-picture, .PaymentTab-fb53e347 .profile-picture, .IconPage-ae0fad5c .profile-picture, .myCards-Page1-d5891c41 .profile-picture, .products-9f521fcc .profile-picture, .basicPlan-3f798e55 .profile-picture, .RegistrationPage-746606b2 .profile-picture, .Enquries-463ecf22 .profile-picture, .exploreCards-basePage-3ce41a37 .profile-picture, .myCards-Page2-375179bc .profile-picture, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .profile-picture, .socialNetwork-Pages-7d6aeb30 .profile-picture, .socialNetwork-Pages-b7c9defb .profile-picture, .socialNetwork-Pages-87cc9d11 .profile-picture, .socialNetwork-Pages-ecb070c1 .profile-picture, .paymentPage-8a65842a .profile-picture {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}



.sharedWith-d5746546 .scrollable-content,.Local_Socia_Network-2ae3d844 .scrollable-content, .paymentPage-8a65842a .scrollable-content, .Enquries-463ecf22 .scrollable-content, .Feedback-aa95c367 .scrollable-content, .premiumCard-c59fb659 .scrollable-content, .homePage-51ea6cf0 .scrollable-content, .sharedCards-Page1-b24129ba .scrollable-content, .basicPlan-3f798e55 .scrollable-content, .resetPassword-08026927 .scrollable-content, .myCards-Page2-375179bc .scrollable-content, .myCards-Page1-d5891c41 .scrollable-content, .exploreCards-listPage-e1d02d07 .scrollable-content, .planPage-984c611a .scrollable-content, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .scrollable-content, .sharedCards-Page2-92c96ab5 .scrollable-content, .phoneSignup-0832247f .scrollable-content, .IconPage-ae0fad5c .scrollable-content, .myCards-Page3-fb462f94 .scrollable-content, .cardPage-fbaa7205 .scrollable-content, .exploreCards-basePage-3ce41a37 .scrollable-content, .EmailOTP-2ae3d843 .scrollable-content, .RegistrationPage-746606b2 .scrollable-content, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .scrollable-content {
  flex: 1;
  overflow-y: auto;
}

.exploreCards-listPage-e1d02d07 .badge, .basicPlan-3f798e55 .badge, .myCards-Page3-fb462f94 .badge, .videoPages-Pages-3fef54c1 .badge, .Co-brand-f75f52a1 .badge, .PaymentTab-fb53e347 .badge, .Feedback-aa95c367 .badge, .planPage-984c611a .badge, .myCards-Page2-375179bc .badge, .sharedCards-Page2-92c96ab5 .badge, .products-9f521fcc .badge, .cardPage-fbaa7205 .badge, .socialNetwork-Pages-7d6aeb30 .badge, .socialNetwork-Pages-b7c9defb .badge, .socialNetwork-Pages-87cc9d11 .badge, .socialNetwork-Pages-ecb070c1 .badge, .Enquries-463ecf22 .badge, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .badge, .aboutUs-9f548a5a .badge, .sharedWith-d5746546 .badge, .products-Pages-6add77b1 .badge, .products-Pages-c09438f3 .badge, .resetPassword-08026927 .badge, .sharedCards-Page1-b24129ba .badge, .premiumCard-c59fb659 .badge, .basicDetails-5d7f747e .badge, .socialNetwork-330f6e4d .badge, .IconPage-ae0fad5c .badge, .EmailOTP-2ae3d843 .badge, .exploreCards-basePage-3ce41a37 .badge, .socialLinks-1a95806b .badge, .gallery-0999fc63 .badge, .homePage-51ea6cf0 .badge, .phoneSignup-0832247f .badge, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .badge, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .badge, .videoPages-8c76f39f .badge, .myCards-Page1-d5891c41 .badge, .RegistrationPage-746606b2 .badge, .settingsPage-d3b31cc7 .badge, .paymentPage-8a65842a .badge {
  position: absolute;
  top: 0;
  right: -10px;
  background-color: yellow;
  color: black;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 15px;
}

.resetPassword-08026927 header .profile, .socialLinks-1a95806b header .profile, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 header .profile, .aboutUs-9f548a5a header .profile, .settingsPage-d3b31cc7 header .profile, .sharedCards-Page1-b24129ba header .profile, .products-Pages-6add77b1 .products-Pages-c09438f3 header .profile, .premiumCard-c59fb659 header .profile, .sharedWith-d5746546 header .profile, .PaymentTab-fb53e347 header .profile, .gallery-0999fc63 header .profile, .videoPages-8c76f39f header .profile, .cardPage-fbaa7205 header .profile, .Co-brand-f75f52a1 header .profile, .basicDetails-5d7f747e header .profile, .paymentPage-8a65842a header .profile, .videoPages-Pages-3fef54c1 header .profile, .Feedback-aa95c367 header .profile, .basicPlan-3f798e55 header .profile, .Enquries-463ecf22 header .profile, .exploreCards-listPage-e1d02d07 header .profile, .planPage-984c611a header .profile, .phoneSignup-0832247f header .profile, .products-9f521fcc header .profile, .socialLinks-1a95806b .allow-option, .EmailOTP-2ae3d843 header .profile, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f header .profile, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d header .profile, .socialNetwork-330f6e4d header .profile, .myCards-Page2-375179bc header .profile, .myCards-Page1-d5891c41 header .profile, .sharedCards-Page2-92c96ab5 header .profile, .IconPage-ae0fad5c header .profile, .myCards-Page3-fb462f94 header .profile, .socialLinks-1a95806b .social-link-logo, .exploreCards-basePage-3ce41a37 header .profile, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 header .profile, .homePage-51ea6cf0 header .profile, .homePage-51ea6cf0 .check-container, .RegistrationPage-746606b2 header .profile {
  display: flex;
  align-items: center;
}

 .socialLinks-1a95806b .social-link-logo{
     gap:10px
 }
 
 .socialLinks-1a95806b{
     padding:0 10px;
 }
 
.socialLinks-1a95806b .pic-placeholder img{
  height: 100px; 
  width: 100px;
}

.socialNetwork-330f6e4d header .profile i, .basicPlan-3f798e55 header .profile i, .myCards-Page3-fb462f94 header .profile i, .Enquries-463ecf22 header .profile i, .gallery-0999fc63 header .profile i, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 header .profile i, .sharedCards-Page1-b24129ba header .profile i, .paymentPage-8a65842a header .profile i, .phoneSignup-0832247f header .profile i, .EmailOTP-2ae3d843 header .profile i, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 header .profile i, .PaymentTab-fb53e347 header .profile i, .products-9f521fcc header .profile i, .myCards-Page1-d5891c41 header .profile i, .videoPages-Pages-3fef54c1 header .profile i, .IconPage-ae0fad5c header .profile i, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f header .profile i, .Feedback-aa95c367 header .profile i, .homePage-51ea6cf0 header .profile i, .products-Pages-6add77b1 .products-Pages-c09438f3 header .profile i, .exploreCards-listPage-e1d02d07 header .profile i, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d header .profile i, .basicDetails-5d7f747e header .profile i, .planPage-984c611a header .profile i, .myCards-Page2-375179bc header .profile i, .socialLinks-1a95806b header .profile i, .sharedCards-Page2-92c96ab5 header .profile i, .sharedWith-d5746546 header .profile i, .videoPages-8c76f39f header .profile i, .resetPassword-08026927 header .profile i, .exploreCards-basePage-3ce41a37 header .profile i, .cardPage-fbaa7205 header .profile i, .RegistrationPage-746606b2 header .profile i, .settingsPage-d3b31cc7 header .profile i, .aboutUs-9f548a5a header .profile i, .Co-brand-f75f52a1 header .profile i, .premiumCard-c59fb659 header .profile i {
  font-size: 35px;
  margin-left: 5px;
}

.phoneSignup-0832247f header .profile .name, .Feedback-aa95c367 header .profile .name, .cardPage-fbaa7205 header .profile .name, .settingsPage-d3b31cc7 header .profile .name, .socialNetwork-330f6e4d header .profile .name, .exploreCards-basePage-3ce41a37 header .profile .name, .gallery-0999fc63 header .profile .name, .products-9f521fcc header .profile .name, .socialLinks-1a95806b header .profile .name, .videoPages-8c76f39f header .profile .name, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 header .profile .name, .basicDetails-5d7f747e header .profile .name, .EmailOTP-2ae3d843 header .profile .name, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f header .profile .name, .homePage-51ea6cf0 header .profile .name, .basicPlan-3f798e55 header .profile .name, .premiumCard-c59fb659 header .profile .name, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d header .profile .name, .IconPage-ae0fad5c header .profile .name, .myCards-Page2-375179bc header .profile .name, .planPage-984c611a header .profile .name, .Co-brand-f75f52a1 header .profile .name, .myCards-Page3-fb462f94 header .profile .name, .PaymentTab-fb53e347 header .profile .name, .RegistrationPage-746606b2 header .profile .name, .resetPassword-08026927 header .profile .name, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 header .profile .name, .sharedWith-d5746546 header .profile .name, .videoPages-Pages-3fef54c1 header .profile .name, .aboutUs-9f548a5a header .profile .name, .Enquries-463ecf22 header .profile .name, .exploreCards-listPage-e1d02d07 header .profile .name, .myCards-Page1-d5891c41 header .profile .name, .products-Pages-6add77b1 .products-Pages-c09438f3 header .profile .name, .sharedCards-Page1-b24129ba header .profile .name, .paymentPage-8a65842a header .profile .name, .sharedCards-Page2-92c96ab5 header .profile .name {
  max-width: 65px;
  text-align: end;
}

.Feedback-aa95c367 .tabs, .sharedWith-d5746546 .tabs, .Enquries-463ecf22 .tabs {
  display: flex;
  justify-content: space-around;
  margin: 10px auto;
  padding-bottom: 10px;
  border-bottom: #ccc 2px solid;
}

.Enquries-463ecf22 .tab, .sharedWith-d5746546 .tab, .Feedback-aa95c367 .tab {
  cursor: pointer;
  padding: 10px;
  border: 1.3px solid black;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  background-color: white;
}

.Feedback-aa95c367 .active, .Enquries-463ecf22 .active, .sharedWith-d5746546 .active {
  background-color: #0072ff;
  color: white;
}

.sharedWith-d5746546 .tab:hover, .Feedback-aa95c367 .tab:hover, .Enquries-463ecf22 .tab:hover {
  background-color: #00bfff;
  color: white;
}

.Enquries-463ecf22 .filters, .sharedWith-d5746546 .filters, .Feedback-aa95c367 .filters {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0 10px;
}

.basicDetails-5d7f747e .relative-container, .sharedWith-d5746546 .dropdown-container, .Enquries-463ecf22 .dropdown-container, .Feedback-aa95c367 .dropdown-container, .Page-043a1c29 .dropdown-container {
  position: relative;
}

.Enquries-463ecf22 .dropdown, .sharedWith-d5746546 .dropdown, .Feedback-aa95c367 .dropdown {
  width: 100%;
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
  border: 1.3px solid black;
  border-radius: 10px;
  margin-bottom: 10px;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.Enquries-463ecf22 .dropdown-container .select_arrow, .Page-043a1c29 .select_arrow, .Feedback-aa95c367 .select_arrow, .sharedWith-d5746546 .select_arrow {
  position: absolute;
  top: 18px;
  right: 10px;
  pointer-events: none;
  border-style: solid;
  border-width: 10px 12px 0px 12px;
  border-color: #7b7b7b transparent transparent transparent;
}

.Feedback-aa95c367 .dropdown-group, .Enquries-463ecf22 .dropdown-group, .sharedWith-d5746546 .dropdown-group {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-between;
}

.Feedback-aa95c367 .select-event, .sharedWith-d5746546 .select-event, .Enquries-463ecf22 .select-event {
    width: 100%;
  font-size: 20px;
}

.Feedback-aa95c367 .date-range-btn, .sharedWith-d5746546 .date-range-btn, .Enquries-463ecf22 .date-range-btn {
  text-align: center;
  width: 180px;
  height: 45px;
  background-color: white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0px 2px 5px 0px #0000004d;
  border: 1.3px solid black;
}

.Feedback-aa95c367 .date-range-btn:hover, .Enquries-463ecf22 .date-range-btn:hover, .sharedWith-d5746546 .date-range-btn:hover {
  background-color: #7b7b7b;
  color: white;
}

.Feedback-aa95c367 .cards-container, .sharedWith-d5746546 .cards-container, .Enquries-463ecf22 .cards-container {
  padding: 10px;
}

.Enquries-463ecf22 .card-heading, .sharedWith-d5746546 .card-heading, .Page-043a1c29 .card-heading, .Feedback-aa95c367 .card-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}

.sharedWith-d5746546 .download-btn, .Feedback-aa95c367 .download-btn, .Enquries-463ecf22 .download-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 10px;
  cursor: pointer;
  height: 40px;
  background-color: white;
}

.sharedWith-d5746546 .download-btn:hover, .Enquries-463ecf22 .download-btn:hover, .Feedback-aa95c367 .download-btn:hover, .Page-043a1c29 .download-btn:hover {
  background-color: #dbdbdb;
}

.Page-043a1c29 .download-btn > img, .sharedWith-d5746546 .download-btn > img, .Enquries-463ecf22 .download-btn > img, .Feedback-aa95c367 .download-btn > img {
  width: 30px;
  height: 30px;
  margin: 0px;
}

.sharedWith-d5746546 .download-btn > i, .Feedback-aa95c367 .download-btn > i, .Enquries-463ecf22 .download-btn > i, .Page-043a1c29 .download-btn > i {
  font-size: 20px;
  margin-top: 5px;
  margin-left: 8px;
}

.Enquries-463ecf22 .card, .Feedback-aa95c367 .card, .sharedWith-d5746546 .card {
  border: 1.3px solid black;
  border-radius: 10px;
  padding: 0 10px;
  margin-top: 10px;
  box-shadow: 0px 2px 5px 0px #0000004d;
}

.Feedback-aa95c367 .card > div, .sharedWith-d5746546 .card > div, .Enquries-463ecf22 .card > div {
  font-size: 18px;
  color: #7b7b7b;
  margin: 6px;
}

.Page-043a1c29 .contact-info, .sharedWith-d5746546 .card-info, .Feedback-aa95c367 .card-info, .Enquries-463ecf22 .card-info {
  margin-left: 30px;
}

.Feedback-aa95c367 .card-info > span, .Enquries-463ecf22 .card-info > span, .sharedWith-d5746546 .card-info > span {
  color: #0072ff;
  font-size: 20px;
  font-weight: 500;
}

.Enquries-463ecf22 .card > div:first-child, .Feedback-aa95c367 .card > div:first-child, .sharedWith-d5746546 .card > div:first-child {
  border: 1.3px solid black;
  border-radius: 10px;
  padding: 5px;
  margin-top: 10px;
}

.videoPages-8c76f39f #play:hover, .sharedWith-d5746546 .black-text, .Feedback-aa95c367 .black-text, .videoPages-Pages-3fef54c1 #play:hover, .Enquries-463ecf22 .black-text, .videoPages-Pages-3fef54c1 .icons-container i:hover, .videoPages-8c76f39f .icons-container i:hover {
  color: black !important;
}

.sharedWith-d5746546 .black-text-weight, .Enquries-463ecf22 .black-text-weight, .Feedback-aa95c367 .black-text-weight, .Page-043a1c29 .black-text-weight {
  font-weight: 600 !important;
}

.sharedWith-d5746546 .card > div:last-child, .Feedback-aa95c367 .card > div:last-child, .Enquries-463ecf22 .card > div:last-child {
  margin-bottom: 5px;
}

.Enquries-463ecf22 .grey > span, .Feedback-aa95c367 .grey > span {
  color: #7b7b7b !important;
}

.homePage-51ea6cf0 .flex-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; 
    gap: 10px;
}

.homePage-51ea6cf0 .flex-row .input-field-date{
    box-sizing: border-box;
    width: calc(50% - 5px);
}

.homePage-51ea6cf0 .box-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 5px;
  margin: 10px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.homePage-51ea6cf0 .box-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 70px;
  height: 65px;
  margin: auto;
}

.homePage-51ea6cf0 div.box-element > p, .myCards-Page2-375179bc div.box-element > p, .myCards-Page1-d5891c41 div.box-element > p, .myCards-Page3-fb462f94 div.box-element > p {
  margin: 0px;
  font-weight: 500;
  color: white;
  font-size: 12px;
}

.homePage-51ea6cf0 #head-p-box-element {
  font-size: 21px;
}

 .myCards-Page1-d5891c41 .red, .myCards-Page2-375179bc .red, .myCards-Page3-fb462f94 .red {
  background-color: #c72828;
}

.homePage-51ea6cf0 .blue, .myCards-Page2-375179bc .blue, .myCards-Page1-d5891c41 .blue, .myCards-Page3-fb462f94 .blue {
  background-color: #0073ff;
}

.myCards-Page2-375179bc .megaphone, .homePage-51ea6cf0 .megaphone, .myCards-Page3-fb462f94 .megaphone, .myCards-Page1-d5891c41 .megaphone {
  width: 35px;
  height: 35px;
  color: yellow;
}

.homePage-51ea6cf0 .dividing-line {
  border: 1.6px #7a7878 solid;
  border-top: transparent;
  width: 90%;
  margin: 5px auto;
}

.homePage-51ea6cf0 .green {
  color: green;
  border-color: green;
}

.homePage-51ea6cf0 .icon-p-container, .homePage-51ea6cf0 .container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.homePage-51ea6cf0 .img-container {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto 5px;
  margin-top: 10px;
}

.homePage-51ea6cf0 .img-container > img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: solid 2px var(--div-background-color);
}

.homePage-51ea6cf0 .img-container-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: fit-content;
}

.homePage-51ea6cf0 .img-container-content > p {
  font-size: 20px;
  color: gray;
  margin: 5px 0;
}

.homePage-51ea6cf0 .eye {
  font-size: 33px;
  color: var(--div-background-color);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

.homePage-51ea6cf0 .container-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*gap: 10px;*/
  width: 100% !important;
}

.homePage-51ea6cf0 .select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.homePage-51ea6cf0 .select select {
  font-family: "Arial";
  display: inline-block;
  width: 95%;
  cursor: pointer;
  padding: 5px 10px;
  outline: 0;
  border: 1px solid #000000;
  border-radius: 5px;
  background: white;
  color: black;
  font-weight: 1000;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right:32px;
}

.homePage-51ea6cf0 .select select:hover,
.homePage-51ea6cf0 .select select:focus {
  color: #000000;
  background: #cccccc;
}

.homePage-51ea6cf0 .select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.homePage-51ea6cf0 .select_arrow {
  position: absolute;
  top: 13px;
  right: 20px;
  pointer-events: none;
  border-style: solid;
  border-width: 9px 11px 0px 11px;
  border-color: #7b7b7b transparent transparent transparent;
}

.homePage-51ea6cf0 .select select:hover ~ .select_arrow,
.homePage-51ea6cf0 .select select:focus ~ .select_arrow {
  border-top-color: #000000;
}

.homePage-51ea6cf0 .select select:disabled ~ .select_arrow {
  border-top-color: #cccccc;
}

.homePage-51ea6cf0 .p-container, .basicDetails-5d7f747e .container-2 {
  width: 80%;
  margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.homePage-51ea6cf0 .p-container > p {
  margin: 3px 0px;
  font-size: 13px;
}

.homePage-51ea6cf0 .p-container > p:first-child {
  font-weight: bold;
  font-size: 18px;
}

.homePage-51ea6cf0 .valid-btn {
  font-size: 15px;
  font-family: Arial;
  width: fit-content;
  height: 30px;
  margin-top: 5px;
  margin-left: 7px;
  border-width: 1px;
  color: #ffffff;
  border-color: #057fd0;
  font-weight: bold;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 0px 1px 0px 0px #f0f7fa;
  text-shadow: 0px -1px 0px #5b6178;
  background: linear-gradient(#33bdef, #019ad2);
  white-space: nowrap;
}

.homePage-51ea6cf0 .valid-btn:hover {
  background: linear-gradient(#019ad2, #33bdef);
}

.homePage-51ea6cf0 .container-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 10px;
}

.homePage-51ea6cf0 .container-icon > i {
  font-size: 40px;
  color: #0072ff;
}

.homePage-51ea6cf0 .event-heading > i:hover, .homePage-51ea6cf0 .container-icon > i:hover {
  color: black;
  cursor: pointer;
}

.homePage-51ea6cf0 .event-container {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.homePage-51ea6cf0 .input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.homePage-51ea6cf0 .only-input-container {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.homePage-51ea6cf0 .whatsapp-icon-container {
  width: 80px;
  height: 80px;
  margin-left: 30px;
  background-color: #25D366;
  margin-top: -10px;
  border-radius: 5px;
}

.homePage-51ea6cf0 .whatsapp-icon-container:hover {
  background-color: #00ff5e;
}

/*.homePage-51ea6cf0 .input-container input[type="text"] {*/
/*  width: 100%;*/
/*  padding: 10px 40px 10px 10px;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 5px;*/
/*  font-size: 16px;*/
/*}*/

.homePage-51ea6cf0 .whatsapp-icon {
  padding: 4px 10px;
  font-size: 70px;
  color: white;
}

/*.homePage-51ea6cf0 .event-container input[type="text"] {*/
/*  width: 92.5%;*/
/*  padding: 10px;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 5px;*/
/*  font-size: 16px;*/
/*  margin-top: 10px;*/
/*}*/

.homePage-51ea6cf0 .event-container input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.homePage-51ea6cf0 #buisness-input {
  margin-top: 0;
}

.homePage-51ea6cf0 .event-dropdown p {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 5px;
  margin-top: 0px;
  margin-left: 5px;
}

.homePage-51ea6cf0 .event-dropdown select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  color: #0072ff;
}

.homePage-51ea6cf0 .event-heading > p, .homePage-51ea6cf0 .banner-container p {
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 5px 5px;
  white-space:nowrap;
}

.homePage-51ea6cf0 .banner-grid {
  display: flex;
  gap: 10px;
  margin-left: 5px;
  margin-bottom: 10px;
  overflow-x: auto;
  overflow-y: hidden;
}

.homePage-51ea6cf0 .banner-placeholder,
.homePage-51ea6cf0 .banner {
  width: 120px;
  height: 80px;
  background-color: #e9e9e9;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  position: relative;
}

.homePage-51ea6cf0 .banner-placeholder {
  font-size: 40px;
  color: #aaa;
  cursor: pointer;
  border: 1.3px solid black;
}

.homePage-51ea6cf0 .banner img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 5px;
}

.homePage-51ea6cf0  .placeholder-div{
    height: 80px;
    width: 120px;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Riddhi css changes*/

/*.homePage-51ea6cf0 .check-icon {*/
/*  background: white;*/
/*  border-radius: 100%;*/
/*  position: absolute;*/
/*  top: 25px;*/
/*  right: -9px;*/
/*  font-size: 25px;*/
/*  color: #07e507;*/
/*}*/
.homePage-51ea6cf0 .check-icon {
  background: white;
  border-radius: 100%;
  position: absolute;
  /*top: 15px;*/
  /*right: -5px;*/
  top: 30px;
  right: -10px;
  font-size: 25px;
  color: #07e507;
}


.fa.fa-check-circle.check-icon.checked {
    color: rgb(7, 229, 7);
    background-color: transparent;
}

.homePage-51ea6cf0 .check-icon-co-branding-cards {
    position: absolute;
    right: 15px;
    font-size: 20px;
    color: #07e507;
}

.homePage-51ea6cf0 .stats-container {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  border-radius: 8px;
  border: 1.3px solid black;
}

.homePage-51ea6cf0 .stat {
  padding-right: 10px;
  border-right: #000000 1.3px solid;
}

.homePage-51ea6cf0 .stat:last-child {
  border: none;
  padding-right: 0px;
}

.homePage-51ea6cf0 .stat p:first-child {
  font-size: 20px;
  font-weight: bold;
  color: #0072ff;
  margin: 0;
  text-align: center;
}

.homePage-51ea6cf0 .stat p:last-child {
  font-size: 14px;
  margin: 0;
  text-align: center;
  color: gray;
}

.homePage-51ea6cf0 .event-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  justify-content: space-between;
}

.homePage-51ea6cf0 .display-none{
  display: none !important;
}

.homePage-51ea6cf0 .event-heading > i {
  font-size: 40px;
  color: #0072ff;
}

.homePage-51ea6cf0 .business-card {
  margin: 10px auto;
  width: 92%;
  padding: 10px;
  border: 1.3px solid #000000;
  border-radius: 12px;
  background-color: white;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 16px;
}

.homePage-51ea6cf0 .buisness-card-line {
  border-color: #ccc;
}

.homePage-51ea6cf0 .middle-section, .homePage-51ea6cf0 .bottom-section, .homePage-51ea6cf0 .top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.homePage-51ea6cf0 .company-name {
  font-weight: 500;
  font-size: 24px;
}

.homePage-51ea6cf0 .top-section > i {
  font-size: 30px;
  color: #0072ff;
  cursor: pointer;
}

.homePage-51ea6cf0 .name {
  font-weight: 600;
  font-size: 24px;
}

.homePage-51ea6cf0 .views {
  display: flex;
  align-items: center;
  color: #a5a5a5;
  font-size: 20px;
}

.homePage-51ea6cf0 .views > i {
  font-size: 30px;
  margin-right: 5px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

.homePage-51ea6cf0 .bottom-section {
  margin-bottom: 0px;
}

.homePage-51ea6cf0 .position {
  font-weight: 400;
  font-size: 22px;
  min-height: 32.500px;
}

.homePage-51ea6cf0 #check {
  width: 30px;
  height: 30px;
  background-color: var(--div-background-color);
  border: 3px solid #0073ff;
  appearance: none;
  cursor: pointer;
  position: relative;
}


.homePage-51ea6cf0 #check:checked {
  background-color: yellow;
  border-color: green;
}

.products-Pages-6add77b1 .products-Pages-c09438f3 #check:checked + .check-icon, .socialLinks-1a95806b #check:checked + .check-icon, .basicDetails-5d7f747e #check:checked + .check-icon, .settingsPage-d3b31cc7 #check:checked + .check-icon, .homePage-51ea6cf0 #check:checked + .check-icon, .cardPage-fbaa7205 #check:checked + .check-icon {
  color: green;
}

.Page-043a1c29 .scrollable-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 10px;
}

.Page-043a1c29 .dropdown {
  width: 100%;
  font-size: 24px;
  cursor: pointer;
  font-weight: 600;
  padding: 10px;
  border: 1.3px solid black;
  border-radius: 10px;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.Page-043a1c29 .note {
  font-size: 16px;
  color: black;
  font-weight: 600;
}

.Page-043a1c29 .select-container {
  width: 50%;
  margin: 10px 0;
  border-radius: 5px;
  position: relative;
}

.Page-043a1c29 select {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  border: 1.3px black solid;
  border-radius: 5px;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.Page-043a1c29 .contact-container {
  margin: 20px 0;
}

.Page-043a1c29 .contact-container > div {
  border: 1.3px solid black;
  border-radius: 10px;
  padding: 5px;
  margin-top: 10px;
  font-size: 18px;
  color: #7b7b7b;
  margin: 6px;
}

.Page-043a1c29 .black-text {
  color: black !important;
  font-size: 20px;
}

.Page-043a1c29 .download-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 10px;
  cursor: pointer;
  height: 40px;
  background-color: white;
  box-shadow: 0px 5px 10px 0px #0000004d;
}

.Page-043a1c29 .grid-container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 10px 0;
}

.products-9f521fcc #delete,.products-Pages-1e343335 #delete, .Page-043a1c29 .grid-item h3, .products-Pages-6add77b1 .products-Pages-c09438f3 #delete {
  font-size: 20px;
  color: red;
  margin-bottom: 10px;
}

.Page-043a1c29 .grid-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.Page-043a1c29 .grid-item ul li {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
}

.socialNetwork-330f6e4d :root, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 :root, .settingsPage-d3b31cc7 :root, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d :root, .PaymentTab-fb53e347 :root, .products-9f521fcc :root, .basicDetails-5d7f747e :root, .exploreCards-basePage-3ce41a37 :root, .products-Pages-6add77b1 .products-Pages-c09438f3 :root, .aboutUs-9f548a5a :root, .videoPages-Pages-3fef54c1 :root, .videoPages-8c76f39f :root, .socialLinks-1a95806b :root, .gallery-0999fc63 :root, .Co-brand-f75f52a1 :root {
  --div-background-color:#f1f1f1;
}

.exploreCards-basePage-3ce41a37 .search-bar-container, .sharedCards-Page1-b24129ba .search-bar-container,.ExploreSavedcard-2dr3d561 .search-bar-container, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .search-bar-container, .exploreCards-listPage-e1d02d07 .search-bar-container, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .search-bar-container, .sharedCards-Page2-92c96ab5 .search-bar-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 10px 7px 5px 7px;
}

.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .child-container, .exploreCards-basePage-3ce41a37 .child-container, .exploreCards-listPage-e1d02d07 .child-container, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .child-container, .sharedCards-Page1-b24129ba .child-container, .sharedCards-Page2-92c96ab5 .child-container, .ExploreSavedcard-2dr3d561 .child-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}

.exploreCards-listPage-e1d02d07 .catogary, .sharedCards-Page1-b24129ba .catogary, .ExploreSavedcard-2dr3d561 .catogary, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary, .sharedCards-Page2-92c96ab5 .catogary, .exploreCards-basePage-3ce41a37 .catogary {
  width: 110px;
  height: 40px;
  padding: 2px 5px;
  border-radius: 15px;
  background-color: var(--div-background-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 2.3px #b7b5b5 solid;
}

.exploreCards-listPage-e1d02d07 .catogary:hover, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary:hover, .sharedCards-Page1-b24129ba .catogary:hover, .sharedCards-Page2-92c96ab5 .catogary:hover, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary:hover, .exploreCards-basePage-3ce41a37 .catogary:hover {
  background-color: #e6e6e6;
}

.exploreCards-basePage-3ce41a37 .catogary img, .sharedCards-Page1-b24129ba .catogary img,.ExploreSavedcard-2dr3d561 .catogary img, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary img, .sharedCards-Page2-92c96ab5 .catogary img, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary img, .exploreCards-listPage-e1d02d07 .catogary img {
  height: 40px;
  width: 40px;
}

.exploreCards-basePage-3ce41a37 .catogary p, .exploreCards-listPage-e1d02d07 .catogary p, .ExploreSavedcard-2dr3d561 .catogary p, .sharedCards-Page1-b24129ba .catogary p, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary p, .sharedCards-Page2-92c96ab5 .catogary p, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary p {
  font-size: 16px;
  width: 40px;
  margin-left: 5px;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .search-bar, .sharedCards-Page1-b24129ba .search-bar,.ExploreSavedcard-2dr3d561 .search-bar, .exploreCards-listPage-e1d02d07 .search-bar, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .search-bar, .exploreCards-basePage-3ce41a37 .search-bar, .sharedCards-Page2-92c96ab5 .search-bar {
  width: fit-content;
  padding: 5px;
  border-radius: 15px;
  background-color: var(--div-background-color);
  display: flex;
  align-items: center;
  border: 2.3px #b7b5b5 solid;
}

.sharedCards-Page1-b24129ba #catogary-btn, .ExploreSavedcard-2dr3d561 #catogary-btn ,.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f #catogary-btn, .exploreCards-basePage-3ce41a37 #catogary-btn, .sharedCards-Page2-92c96ab5 #catogary-btn, .exploreCards-listPage-e1d02d07 #catogary-btn, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 #catogary-btn {
  padding: 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .search-bar input, .sharedCards-Page2-92c96ab5 .search-bar input, .ExploreSavedcard-2dr3d561 .search-bar input , .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .search-bar input, .sharedCards-Page1-b24129ba .search-bar input, .exploreCards-listPage-e1d02d07 .search-bar input, .exploreCards-basePage-3ce41a37 .search-bar input {
  flex: 1;
  padding-left: 10px;
  border: none;
  background-color: transparent;
  width: 100px;
  font-size: 20px;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .search-bar input:focus, .ExploreSavedcard-2dr3d561 .search-bar input:focus , .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .search-bar input:focus, .exploreCards-listPage-e1d02d07 .search-bar input:focus, .exploreCards-basePage-3ce41a37 .search-bar input:focus, .sharedCards-Page2-92c96ab5 .search-bar input:focus, .sharedCards-Page1-b24129ba .search-bar input:focus {
  outline: none;
}

.exploreCards-listPage-e1d02d07 .search-bar i, .sharedCards-Page2-92c96ab5 .search-bar i, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .search-bar i, .ExploreSavedcard-2dr3d561 .search-bar i , .exploreCards-basePage-3ce41a37 .search-bar i, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .search-bar i, .sharedCards-Page1-b24129ba .search-bar i, .basicDetails-5d7f747e #location-marker {
  font-size: 25px;
  color: #0072ff;
}

.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .search-container-icons, .sharedCards-Page1-b24129ba .search-container-icons,.ExploreSavedcard-2dr3d561 .search-container-icons, .exploreCards-basePage-3ce41a37 .search-container-icons, .exploreCards-listPage-e1d02d07 .search-container-icons, .sharedCards-Page2-92c96ab5 .search-container-icons, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .search-container-icons {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
}

.exploreCards-basePage-3ce41a37 .search-container-icons i, .ExploreSavedcard-2dr3d561 .heading-container .grid ,.exploreCards-listPage-e1d02d07 .search-container-icons i,.exploreCards-listPage-e1d02d07 .search-container-icons img,.exploreCards-basePage-3ce41a37 .search-container-icons img ,.ExploreSavedcard-2dr3d561 .search-container-icons img , .sharedCards-Page1-b24129ba .search-container-icons i,.ExploreSavedcard-2dr3d561 .search-container-icons i, .exploreCards-listPage-e1d02d07 .search-container-icons i, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .search-container-icons i, .sharedCards-Page2-92c96ab5 .search-container-icons i, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .search-container-icons i {
  font-size: 30px;
  cursor: pointer;
  padding: 3px;
  position: relative;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .list-icon, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .img-container i:hover, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 #heart:hover, .exploreCards-basePage-3ce41a37 .list-icon, .exploreCards-basePage-3ce41a37 #heart:hover {
  color: black;
}

.sharedCards-Page1-b24129ba .ads, .Savedcard-2dr3d560 .ads,.Savedcard-2dr3d561 .ads,.ExploreSavedcard-2dr3d561 .ads , .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .ads, .exploreCards-basePage-3ce41a37 .ads, .exploreCards-listPage-e1d02d07 .ads, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .ads, .cards-display-yh8n78ft .ads{
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding: 2px 5px;
  overflow-x: auto;
}

.home-56785 .ads img, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .ads img,.Local_Socia_Network-2ae3d844 .ads img,.Savedcard-2dr3d560 .ads img,.ExploreSavedcard-2dr3d561 .ads img ,.Savedcard-2dr3d561 .ads img, .sharedCards-Page1-b24129ba .ads img, .phoneSignup-0832247f .ads img, .EmailOTP-2ae3d843 .ads img, .sample .ads img, .resetPassword-08026927 .ads img, .exploreCards-basePage-3ce41a37 .ads img, .exploreCards-listPage-e1d02d07 .ads img, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .ads img, .cards-display-yh8n78ft .ads img{
  /*height: 150px;*/
  /*width: 300px;*/
  /*cursor: pointer;*/
  width: 300px;
  height: 150px;
  object-fit: fill;
  flex-shrink: 0;
  flex-basis: 300px;
}

.sharedCards-Page1-b24129ba .shared-cards-heading, .exploreCards-basePage-3ce41a37 .shared-cards-heading, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shared-cards-heading {
  width: 93%;
  margin: 5px auto;
  padding-left: 10px;
  border-radius: 15px;
  background-color: var(--div-background-color);
  border: 1.3px black solid;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shared-cards-heading h2, .exploreCards-basePage-3ce41a37 .shared-cards-heading h2, .sharedCards-Page1-b24129ba .shared-cards-heading h2 {
  margin: 3px;
  font-weight: 600;
  font-size: 20px;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .grid-icon, .exploreCards-basePage-3ce41a37 .grid-icon ,.exploreCards-listPage-e1d02d07 .grid-icon, .ExploreSavedcard-2dr3d561 .grid-icon {
  padding: 0px;
  fill: #0072ff !important;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.exploreCards-basePage-3ce41a37 .shopping-title, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title, .exploreCards-listPage-e1d02d07 .shopping-title {
  font-weight: 560;
  font-size: 17px;
  color: black;
  margin: 3px 0;
  padding: 0 15px;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title > span, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title > span, .exploreCards-basePage-3ce41a37 .shopping-title > span, .exploreCards-listPage-e1d02d07 .shopping-title > span {
  color: red;
  font-weight: 700;
}

.exploreCards-basePage-3ce41a37 .card-container, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .card-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 5px;
  overflow-x: auto !important;
}

.exploreCards-basePage-3ce41a37 .card, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .card {
  width: 175px;
  height: auto;
  background-color: #f9f9f9;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: white;
  background: linear-gradient(180deg, white 0%, #fef7ff 26%, #554378 26%, #544277 99%, white 99%);
  flex-shrink: 0;
  padding: 10px 0px;
}

.card .card-content{
    width: 100%;
}

.exploreCards-basePage-3ce41a37 .card:hover, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .card:hover {
  box-shadow: 10px 15px 20px rgba(0, 0, 0, 0.1);
}

.Co-brand-f75f52a1 .heart, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .heart, .exploreCards-basePage-3ce41a37 .heart, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .heart, .sharedCards-Page1-b24129ba .heart, .exploreCards-listPage-e1d02d07 .heart {
  color: red;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

.exploreCards-basePage-3ce41a37 #heart, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 #heart {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 25px;
  color: #a29d9d;
  cursor: pointer;
}

.exploreCards-listPage-e1d02d07 .heart-clicked, .exploreCards-listPage-e1d02d07 .dropdown-item > span, .exploreCards-basePage-3ce41a37 .heart-clicked, .sharedCards-Page2-92c96ab5 .dropdown-item > span, .ExploreSavedcard-2dr3d561 .dropdown-item > span ,.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .heart-clicked, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-item > span, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-item > span, .sharedCards-Page1-b24129ba .heart-clicked, .sharedCards-Page1-b24129ba .dropdown-item > span, .Co-brand-f75f52a1 .heart-clicked, .exploreCards-basePage-3ce41a37 .dropdown-item > span, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .heart-clicked {
  color: red !important;
  font-size: 16px;
}

.exploreCards-basePage-3ce41a37 .card img, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100%;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .card-title, .exploreCards-basePage-3ce41a37 .card-title{
  margin: 7px auto 5px auto;
  font-weight: 500;
  font-size: 15px;
  width: 70%;
  text-align: center;
  color: white;
  word-break: break-word;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .card-subtitle, .exploreCards-basePage-3ce41a37 .card-subtitle {
  margin: 0;
  font-weight: 250;
  font-size: 13px;
  text-align: center;
  color: white;
}

.exploreCards-basePage-3ce41a37 .rating, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .rating {
  font-size: 13px;
  display: flex;
  flex-direction: row;
  gap: 2px;
  margin: 10px auto 5px auto;
  width: fit-content;
}

.exploreCards-basePage-3ce41a37 .rating i, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .rating i {
  color: gold;
}

.exploreCards-listPage-e1d02d07 .grid3x1-icon,.ExploreSavedcard-2dr3d561 .grid3x1-icon, .sharedCards-Page1-b24129ba .grid3x1-icon, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .grid3x1-icon, .exploreCards-basePage-3ce41a37 .grid3x1-icon, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .grid3x1-icon, .sharedCards-Page2-92c96ab5 .grid3x1-icon, ..ExploreSavedcard-2dr3d561 .grid3x1-icon {
  position: relative;
  cursor: pointer;
}


.myCards-Page1-d5891c41 .show, .sharedCards-Page1-b24129ba .grid3x1-icon:hover .dropdown-container-1-reverse, .sharedCards-Page2-92c96ab5 .grid3x1-icon:hover .dropdown-menu-reverse, .sharedCards-Page1-b24129ba .grid3x1-icon:hover .dropdown-menu-reverse, .sharedCards-Page2-92c96ab5 .grid3x1-icon:hover .dropdown-container-1-reverse, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .grid3x1-icon:hover .dropdown-container-1-reverse, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .grid3x1-icon:hover .dropdown-container-1-reverse, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .grid3x1-icon:hover .dropdown-menu-reverse, .myCards-Page3-fb462f94 .show, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .grid3x1-icon:hover .dropdown-menu-reverse, .myCards-Page2-375179bc .show, .exploreCards-listPage-e1d02d07 .grid3x1-icon:hover .dropdown-container-1-reverse, .ExploreSavedcard-2dr3d561 .grid3x1-icon:hover {
  display: block;
}
/*.myCards-Page1-d5891c41 .show, .sharedCards-Page1-b24129ba .grid3x1-icon:hover .dropdown-container-1-reverse, .sharedCards-Page2-92c96ab5 .grid3x1-icon:hover .dropdown-menu-reverse, .exploreCards-basePage-3ce41a37 .grid3x1-icon:hover .dropdown-menu-reverse, .sharedCards-Page1-b24129ba .grid3x1-icon:hover .dropdown-menu-reverse, .sharedCards-Page2-92c96ab5 .grid3x1-icon:hover .dropdown-container-1-reverse, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .grid3x1-icon:hover .dropdown-container-1-reverse, .exploreCards-basePage-3ce41a37 .grid3x1-icon:hover .dropdown-container-1-reverse, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .grid3x1-icon:hover .dropdown-container-1-reverse, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .grid3x1-icon:hover .dropdown-menu-reverse, .myCards-Page3-fb462f94 .show, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .grid3x1-icon:hover .dropdown-menu-reverse, .exploreCards-listPage-e1d02d07 .grid3x1-icon:hover .dropdown-menu-reverse, .myCards-Page2-375179bc .show, .exploreCards-listPage-e1d02d07 .grid3x1-icon:hover .dropdown-container-1-reverse, .ExploreSavedcard-2dr3d561 .grid3x1-icon:hover {*/
/*  display: block;*/
/*}*/

/*Riddhi new css*/

/*.exploreCards-listPage-e1d02d07 .dropdown-container-1-reverse, .ExploreSavedcard-2dr3d561 .dropdown-container-1-reverse, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-container-1-reverse, .sharedCards-Page1-b24129ba .dropdown-container-1-reverse, .sharedCards-Page2-92c96ab5 .dropdown-container-1-reverse, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-container-1-reverse {*/
  /*background-color: #b2aeae;*/
/*  display: none;*/
/*  position: absolute;*/
/*  top: 60px;*/
/*  right: 0;*/
  /*padding: 10px;*/
/*  z-index: 3;*/
  /*border-radius: 10px;*/
  /*width: 190px;*/
  /*height: 433px;*/
/*}*/
 .ExploreSavedcard-2dr3d561 .dropdown-container-1-reverse, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-container-1-reverse, .sharedCards-Page1-b24129ba .dropdown-container-1-reverse, .sharedCards-Page2-92c96ab5 .dropdown-container-1-reverse, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-container-1-reverse {
  /*background-color: #b2aeae;*/
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  /*padding: 10px;*/
  z-index: 3;
  /*border-radius: 10px;*/
  /*width: 190px;*/
  /*height: 433px;*/
}

.exploreCards-basePage-3ce41a37 .dropdown-container-1-reverse{
    top:45px;
    /*background-color: #b2aeae;*/
  display: none;
  position: absolute;
  right: 0;
  /*padding: 10px;*/
  z-index: 3;
  /*border-radius: 10px;*/
  /*width: 190px;*/
  /*height: 433px;*/
}

.exploreCards-listPage-e1d02d07 .dropdown-menu-reverse, .ExploreSavedcard-2dr3d561 .dropdown-menu-reverse ,.exploreCards-basePage-3ce41a37 .dropdown-menu-reverse, .sharedCards-Page2-92c96ab5 .dropdown-menu-reverse, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-menu-reverse, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-menu-reverse, .sharedCards-Page1-b24129ba .dropdown-menu-reverse {
  display: none;
  position: absolute;
  top: -4px;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 10;
  padding: 5px;
  box-shadow: -3px 3px 0px 2px rgba(178, 174, 174, 1);
  border-radius: 10px;
  white-space: nowrap;
  border: 2px solid black;
}

/*Riddhi css changes*/

.exploreCards-listPage-e1d02d07 .dropdown-menu-reverse{
    top:40px;
}

.sharedCards-Page1-b24129ba .grid-border, .exploreCards-listPage-e1d02d07 .grid-border, .ExploreSavedcard-2dr3d561 .grid-border ,.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .grid-border, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .grid-border, .sharedCards-Page2-92c96ab5 .grid-border, .exploreCards-basePage-3ce41a37 .grid-border {
  border: 1.5px #7a7878 solid;
  border-top: transparent;
  width: 80%;
  margin: 10px auto;
}

.sharedCards-Page1-b24129ba .dropdown-arrow-reverse, .sharedCards-Page2-92c96ab5 .dropdown-arrow-reverse, .ExploreSavedcard-2dr3d561 .dropdown-arrow-reverse , .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-arrow-reverse, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-arrow-reverse, .exploreCards-basePage-3ce41a37 .dropdown-arrow-reverse, .exploreCards-listPage-e1d02d07 .dropdown-arrow-reverse {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 32px 25px;
  border-color: transparent transparent transparent #B1B1B1;
  transform: rotate(180deg);
  top: -30px;
  right: 0px;
  z-index: -4;
}

.sharedCards-Page2-92c96ab5 .shopping-title, .sharedCards-Page1-b24129ba .shopping-title, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title, .exploreCards-basePage-3ce41a37 .shopping-title, .exploreCards-listPage-e1d02d07 .shopping-title {
  position: relative;
  cursor: pointer;
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

.sharedCards-Page1-b24129ba .dropdown-menu, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-menu, .exploreCards-basePage-3ce41a37 .dropdown-menu, .exploreCards-listPage-e1d02d07 .dropdown-menu, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-menu, .sharedCards-Page2-92c96ab5 .dropdown-menu, .ExploreSavedcard-2dr3d561 .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 10;
  box-shadow: 3px 3px 0px 2px rgba(178, 174, 174, 1);
  border-radius: 10px;
  white-space: nowrap;
  border: 2px solid black;
}

/*Riddhi new css*/

/*.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title > span:hover .dropdown-container-1, .exploreCards-listPage-e1d02d07 .shopping-title > span:hover .dropdown-container-1, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title > span:hover .dropdown-container-1, .exploreCards-basePage-3ce41a37 .shopping-title > span:hover .dropdown-container-1 {*/
/*  display: block;*/
/*  position: absolute;*/
/*  left: 30px;*/
/*}*/
.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title > span:hover .dropdown-container-1, .exploreCards-listPage-e1d02d07 .shopping-title > span:hover .dropdown-container-1, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title > span:hover .dropdown-container-1{
  display: block;
  position: absolute;
  left: 30px;
}

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title > label:hover .dropdown-container-2,  .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title > label:hover .dropdown-container-2 {
  display: block;
  position: absolute;
  left: 200px;
}
/*Riddhi new css*/
 .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title > span:hover .dropdown-menu,
.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title > label:hover .dropdown-menu, .exploreCards-listPage-e1d02d07 .shopping-title > span:hover .dropdown-menu,
 .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title > span:hover .dropdown-menu,
.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title > label:hover .dropdown-menu {
  display: block;
  position: absolute;
  top: -5px;
  left: -2px;
}
/*.exploreCards-basePage-3ce41a37 .shopping-title > span:hover .dropdown-menu,*/
/*.exploreCards-basePage-3ce41a37 .shopping-title > label:hover .dropdown-menu, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title > span:hover .dropdown-menu,*/
/*.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .shopping-title > label:hover .dropdown-menu, .exploreCards-listPage-e1d02d07 .shopping-title > span:hover .dropdown-menu,*/
/*.exploreCards-listPage-e1d02d07 .shopping-title > label:hover .dropdown-menu, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title > span:hover .dropdown-menu,*/
/*.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .shopping-title > label:hover .dropdown-menu {*/
/*  display: block;*/
/*  position: absolute;*/
/*  top: -5px;*/
/*  left: -2px;*/
/*}*/

/*Riddhi css changes*/

/*.ExploreSavedcard-2dr3d561 .dropdown-container-1 ,.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary:hover .dropdown-container-1, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary:hover .dropdown-container-1, .sharedCards-Page2-92c96ab5 .catogary:hover .dropdown-container-1, .sharedCards-Page1-b24129ba .catogary:hover .dropdown-container-1, .exploreCards-basePage-3ce41a37 .catogary:hover .dropdown-container-1, .exploreCards-listPage-e1d02d07 .catogary:hover .dropdown-container-1 {*/
/*  display: block;*/
/*  position: absolute;*/
/*  left: 30px;*/
/*  top: 80px;*/
/*  height: 203px;*/
/*  width: 205px;*/
/*}*/
.ExploreSavedcard-2dr3d561 .dropdown-container-1 ,.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary:hover .dropdown-container-1, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary:hover .dropdown-container-1, .sharedCards-Page2-92c96ab5 .catogary:hover .dropdown-container-1, .sharedCards-Page1-b24129ba .catogary:hover .dropdown-container-1,{
  display: block;
  position: absolute;
  left: 30px;
  top: 80px;
  height: 203px;
  width: 205px;
}

/*Riddhi css changes*/

/*.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary:hover .dropdown-menu, .sharedCards-Page2-92c96ab5 .catogary:hover .dropdown-menu, .sharedCards-Page1-b24129ba .catogary:hover .dropdown-menu, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary:hover .dropdown-menu, .exploreCards-listPage-e1d02d07 .catogary:hover .dropdown-menu, .exploreCards-basePage-3ce41a37 .catogary:hover .dropdown-menu {*/
/*  display: block;*/
/*  position: absolute;*/
/*  top: -5px;*/
/*  left: -2px;*/
/*  width: 200px;*/
/*  height: 200px;*/
/*}*/
.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary:hover .dropdown-menu, .sharedCards-Page2-92c96ab5 .catogary:hover .dropdown-menu, .sharedCards-Page1-b24129ba .catogary:hover .dropdown-menu, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary:hover .dropdown-menu{
  display: block;
  position: absolute;
  top: -5px;
  left: -2px;
  width: 200px;
  height: 200px;
}

.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-category, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-category, .sharedCards-Page1-b24129ba .dropdown-category, .sharedCards-Page2-92c96ab5 .dropdown-category, .exploreCards-basePage-3ce41a37 .dropdown-category, .exploreCards-listPage-e1d02d07 .dropdown-category, .ExploreSavedcard-2dr3d561 .dropdown-category {
  margin-bottom: 10px;
}

.exploreCards-listPage-e1d02d07 .dropdown-item, .exploreCards-basePage-3ce41a37 .dropdown-item,.ExploreSavedcard-2dr3d561 .dropdown-item, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-item, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-item, .sharedCards-Page2-92c96ab5 .dropdown-item, .sharedCards-Page1-b24129ba .dropdown-item {
  padding: 5px;
  cursor: pointer;
  color: #000;
  border-bottom: 1px solid #ccc;
}

.exploreCards-listPage-e1d02d07 .dropdown-item:hover, .sharedCards-Page1-b24129ba .dropdown-item:hover,.ExploreSavedcard-2dr3d561 .dropdown-item:hover, .sharedCards-Page2-92c96ab5 .dropdown-item:hover, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-item:hover, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-item:hover, .exploreCards-basePage-3ce41a37 .dropdown-item:hover {
  background-color: #E0E0E0;
  color: #000;
}

/*Riddhi css changes*/

/*.exploreCards-basePage-3ce41a37 .dropdown-container-1,.ExploreSavedcard-2dr3d561 .dropdown-container-1 , .sharedCards-Page1-b24129ba .dropdown-container-1, .exploreCards-listPage-e1d02d07 .dropdown-container-1, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-container-1, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-container-1, .sharedCards-Page2-92c96ab5 .dropdown-container-1 {*/
  /*background-color: #b2aeae;*/
/*  display: none;*/
/*  position: absolute;*/
/*  top: 50px;*/
/*  left: 0;*/
  /*padding: 10px;*/
/*  z-index: 3;*/
  /*border-radius: 10px;*/
  /*width: 200px;*/
  /*height: 375px;*/
/*}*/
.exploreCards-basePage-3ce41a37 .dropdown-container-1,.ExploreSavedcard-2dr3d561 .dropdown-container-1 , .sharedCards-Page1-b24129ba .dropdown-container-1, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-container-1, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-container-1, .sharedCards-Page2-92c96ab5 .dropdown-container-1 {
  /*background-color: #b2aeae;*/
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  /*padding: 10px;*/
  z-index: 3;
  /*border-radius: 10px;*/
  /*width: 200px;*/
  /*height: 375px;*/
}

.exploreCards-basePage-3ce41a37 .category-dropdown{
    top: 50px;
}

.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-container-2, .exploreCards-listPage-e1d02d07 .dropdown-container-2, .sharedCards-Page1-b24129ba .dropdown-container-2, .sharedCards-Page2-92c96ab5 .dropdown-container-2, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-container-2 {
  background-color: #b2aeae;
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  padding: 10px;
  z-index: 3;
  border-radius: 10px;
}

 .exploreCards-basePage-3ce41a37 .dropdown-container-2 , .exploreCards-listPage-e1d02d07 .dropdown-container-2{
  /*background-color: #b2aeae;*/
  display: none;
  position: absolute;
  top: 20px;
  left: 155px;
  padding: 10px;
  z-index: 3;
  border-radius: 10px;
 }

.basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .dropdown-arrow, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .dropdown-arrow,.ExploreSavedcard-2dr3d561 .dropdown-arrow, .sharedCards-Page1-b24129ba .dropdown-arrow, .exploreCards-basePage-3ce41a37 .dropdown-arrow, .exploreCards-listPage-e1d02d07 .dropdown-arrow, .sharedCards-Page2-92c96ab5 .dropdown-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 0 20px 25px;
  border-color: transparent transparent transparent #B1B1B1;
  transform: rotate(0deg);
  top: -30px;
  left: -2px;
  z-index: -4;
}

.exploreCards-listPage-e1d02d07 .grid-item, .ExploreSavedcard-2dr3d561 .grid-item , .sharedCards-Page1-b24129ba .grid-item, .sharedCards-Page2-92c96ab5 .grid-item, .exploreCards-basePage-3ce41a37 .grid-item, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .grid-item, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .grid-item {
  border: none !important;
  font-weight: bold;
}

.exploreCards-listPage-e1d02d07 .catogary-item, .exploreCards-basePage-3ce41a37 .catogary-item,.ExploreSavedcard-2dr3d561 .catogary-item, .sharedCards-Page2-92c96ab5 .catogary-item, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary-item, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary-item, .sharedCards-Page1-b24129ba .catogary-item {
  border: none !important;
  font-weight: bold;
  text-align: left;
  font-size: 19px;
}

.sharedCards-Page1-b24129ba .card-link:hover, .Co-brand-f75f52a1 .card-link:hover, .myCards-Page1-d5891c41 .renew-link:hover, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .catogary-item > span, .myCards-Page3-fb462f94 .renew-link:hover, .basePage-Pages-60eb9bb0 .basePage-Pages-7d8cd721 .basePage-Pages-bae7e543 .basePage-Pages-d196cd0d .basePage-Pages-0d2f78cc .basePage-Pages-031ea0ed .basePage-Pages-661ea583 .catogary-item > span, .myCards-Page2-375179bc .renew-link:hover, .exploreCards-basePage-3ce41a37 .catogary-item > span, .sharedCards-Page1-b24129ba .catogary-item > span, .exploreCards-listPage-e1d02d07 .catogary-item > span, .sharedCards-Page2-92c96ab5 .catogary-item > span, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-link:hover, .exploreCards-listPage-e1d02d07 .card-link:hover {
  text-decoration: underline;
}

.sharedCards-Page2-92c96ab5 .grid-icon, .sharedCards-Page1-b24129ba .grid-icon, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .grid-icon{
  position: absolute;
  top: 9px;
  right: -2px;
  padding: 0px;
  fill: #0072ff !important;
  cursor: pointer;
}

.exploreCards-listPage-e1d02d07 .card-container, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.ExploreSavedcard-2dr3d561 .card, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card, .exploreCards-listPage-e1d02d07 .card {
  display: flex;
  flex-direction: row;
  border: 1.3px solid black;
  border-radius: 10px;
  padding: 10px;
  width: 90%;
  font-family: Arial, sans-serif;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 5px auto;
}

.exploreCards-listPage-e1d02d07 .card:hover,.ExploreSavedcard-2dr3d561 .card:hover, .sharedCards-Page1-b24129ba .card:hover, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card:hover, .Co-brand-f75f52a1 .card:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.Co-brand-f75f52a1 .card-image,.ExploreSavedcard-2dr3d561 .card-image, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-image, .sharedCards-Page1-b24129ba .card-image, .exploreCards-listPage-e1d02d07 .card-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  margin-right: 10px;
  margin-top: 7px;
  overflow: hidden;
}

.Co-brand-f75f52a1 .card-image img,.ExploreSavedcard-2dr3d561 .card-image img, .sharedCards-Page1-b24129ba .card-image img, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-image img, .exploreCards-listPage-e1d02d07 .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exploreCards-listPage-e1d02d07 .card-content,.ExploreSavedcard-2dr3d561 .card-content, .Co-brand-f75f52a1 .card-content, .sharedCards-Page1-b24129ba .card-content, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-content {
  /*flex-grow: 1;*/
  width: 70%;
  display: flex; 
  flex-direction: column;
  flex-wrap: wrap; 
  word-break: break-word; 
  white-space: normal; 
  height: auto;
}

.exploreCards-listPage-e1d02d07 .card-title,.ExploreSavedcard-2dr3d561 .card-title, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-title, .sharedCards-Page1-b24129ba .card-title, .Co-brand-f75f52a1 .card-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: #000;
}

.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-subtitle,.ExploreSavedcard-2dr3d561 .card-subtitle , .sharedCards-Page1-b24129ba .card-subtitle, .exploreCards-listPage-e1d02d07 .card-subtitle, .Co-brand-f75f52a1 .card-subtitle {
  font-weight: bold;
  color: black;
  font-size: 14px;
  margin: 1px 0;
}

.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-text,.ExploreSavedcard-2dr3d561 .card-text, .Co-brand-f75f52a1 .card-text, .sharedCards-Page1-b24129ba .card-text, .exploreCards-listPage-e1d02d07 .card-text {
  font-weight: 560;
  font-size: 13px;
  color: black;
  margin: 2px 0;
}

.exploreCards-listPage-e1d02d07 .second-line, .Co-brand-f75f52a1 .second-line, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .second-line, .sharedCards-Page1-b24129ba .second-line {
  margin: 3px 0 0 0;
}

.sharedCards-Page1-b24129ba .card-text > span, .Co-brand-f75f52a1 .card-text > span, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-text > span, .exploreCards-listPage-e1d02d07 .card-text > span {
  color: red;
  font-weight: 900;
}

.exploreCards-listPage-e1d02d07 .card-link, .sharedCards-Page1-b24129ba .card-link, .Co-brand-f75f52a1 .card-link, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-link {
  font-size: 14px;
  color: #1E90FF;
  text-decoration: none;
}

.exploreCards-listPage-e1d02d07 .card-footer, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-footer, .sharedCards-Page1-b24129ba .card-footer, .Co-brand-f75f52a1 .card-footer {
  font-size: 14px;
  color: #555;
  margin-top: 3px;
}

.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .rating, .Co-brand-f75f52a1 .rating, .sharedCards-Page1-b24129ba .rating, .exploreCards-listPage-e1d02d07 .rating {
  display: flex;
  margin-top: 3px;
}

.exploreCards-listPage-e1d02d07 .rating i, .ExploreSavedcard-2dr3d561 .rating i, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .rating i {
  font-size: 14px !important;
  color: #fa0e0e;
  margin-right: 2px;
  margin-top: 5px;
}

.sharedCards-Page1-b24129ba .card-btns, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-btns, .Co-brand-f75f52a1 .card-btns {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.exploreCards-listPage-e1d02d07 .card-btns, .ExploreSavedcard-2dr3d561 .card-btns{

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

}

.sharedCards-Page1-b24129ba .card-icons,.ExploreSavedcard-2dr3d561 .card-icons, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-icons, .exploreCards-listPage-e1d02d07 .card-icons, .Co-brand-f75f52a1 .card-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-btns i, .exploreCards-listPage-e1d02d07 .card-btns i,.ExploreSavedcard-2dr3d561 .card-btns i, .Co-brand-f75f52a1 .card-btns i, .sharedCards-Page1-b24129ba .card-btns i {
  color: #888;
  cursor: pointer;
}

.products-9f521fcc #heading-btn-row i,.gallary-3sd452221 #heading-btn-row i ,.products-Pages-6add77b1 .products-Pages-c09438f3 #heading-btn-row i, .exploreCards-listPage-e1d02d07 .share, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .share, .exploreCards-listPage-e1d02d07 #heart, .gallery-0999fc63 #heading-btn-row i, .sharedCards-Page1-b24129ba .share, .sharedCards-Page1-b24129ba #heart, .Co-brand-f75f52a1 #heart, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f #heart {
  font-size: 30px;
}

.Co-brand-f75f52a1 .card-btns i:hover,.ExploreSavedcard-2dr3d561 .card-btns:hover, .sharedCards-Page1-b24129ba .card-btns i:hover, .exploreCards-listPage-e1d02d07 .card-btns i:hover, .listPage-Pages-ad732f20 .listPage-Pages-c3232ce4 .listPage-Pages-f2c2e26d .listPage-Pages-091c98fb .listPage-Pages-30fb9430 .listPage-Pages-5cc82e66 .listPage-Pages-c7abbd4f .card-btns i:hover {
  color: #000 !important;
}

.myCards-Page2-375179bc footer, .myCards-Page1-d5891c41 footer, .myCards-Page3-fb462f94 footer, .IconPage-ae0fad5c footer {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: #0072ff;
  color: white;
  position: static;
  bottom: 0;
  width: calc(100% - 20px);
  border-radius: 4% 4% 0 0;
}

.IconPage-ae0fad5c footer button, .planPage-984c611a footer button, .myCards-Page2-375179bc footer button, .myCards-Page3-fb462f94 footer button, .myCards-Page1-d5891c41 footer button, .paymentPage-8a65842a footer button, .premiumCard-c59fb659 footer button, .cardPage-fbaa7205 footer button, .basicPlan-3f798e55 footer button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 10px;
  white-space: nowrap;
}

.planPage-984c611a footer button i, .myCards-Page1-d5891c41 footer button i, .basicPlan-3f798e55 footer button i, .premiumCard-c59fb659 footer button i, .cardPage-fbaa7205 footer button i, .paymentPage-8a65842a footer button i, .myCards-Page3-fb462f94 footer button i, .IconPage-ae0fad5c footer button i, .myCards-Page2-375179bc footer button i {
  font-size: 40px !important;
  margin-bottom: 5px;
}

.IconPage-ae0fad5c footer button p, .basicPlan-3f798e55 footer button p, .myCards-Page1-d5891c41 footer button p, .premiumCard-c59fb659 footer button p, .planPage-984c611a footer button p, .Stats-and-genereal-Dashboard-00a6e9dc footer button p, .paymentPage-8a65842a footer button p, .myCards-Page2-375179bc footer button p, .cardPage-fbaa7205 footer button p, .myCards-Page3-fb462f94 footer button p {
  margin: 0;
}

.myCards-Page2-375179bc .page-navigator, .myCards-Page3-fb462f94 .page-navigator, .myCards-Page1-d5891c41 .page-navigator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}

.myCards-Page3-fb462f94 .triangle-button, .myCards-Page2-375179bc .triangle-button, .myCards-Page1-d5891c41 .triangle-button {
  background-color: white;
  margin: 0;
  padding: 0;
  border: none !important;
}

.myCards-Page3-fb462f94 .page-navigator .nav-arrows, .myCards-Page2-375179bc .page-navigator .nav-arrows, .myCards-Page1-d5891c41 .page-navigator .nav-arrows {
  font-size: 70px !important;
  color: #2aa4e7;
  margin-right: 10px;
  cursor: pointer;
}

.myCards-Page3-fb462f94 .page-navigator .page-no, .myCards-Page2-375179bc .page-navigator .page-no, .myCards-Page1-d5891c41 .page-navigator .page-no {
  width: 50px;
  white-space: nowrap;
  padding: 8px;
  font-size: 20px;
  text-align: center;
  border: solid 1px black;
}

.myCards-Page3-fb462f94 .page-navigator .page-no, .myCards-Page2-375179bc .page-navigator .page-no, .myCards-Page1-d5891c41 .page-navigator .page-no p{
  margin:0;
}


.myCards-Page1-d5891c41 .dropdown, .myCards-Page3-fb462f94 .dropdown, .myCards-Page2-375179bc .dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: auto;
  width: 55%;
  border: blue 1px solid;
}

.myCards-Page2-375179bc .dropdown-btn:hover,
.myCards-Page2-375179bc .dropdown-btn:focus, .myCards-Page3-fb462f94 .dropdown-btn:hover,
.myCards-Page3-fb462f94 .dropdown-btn:focus, .myCards-Page1-d5891c41 .dropdown-btn:hover,
.myCards-Page1-d5891c41 .dropdown-btn:focus {
  background-color: #bcbdbe;
}

.myCards-Page2-375179bc .dropdown-content, .myCards-Page1-d5891c41 .dropdown-content, .myCards-Page3-fb462f94 .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 100%;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.myCards-Page1-d5891c41 .dropdown-content a, .myCards-Page2-375179bc .dropdown-content a, .myCards-Page3-fb462f94 .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.myCards-Page2-375179bc .dropdown .down-arrow, .myCards-Page1-d5891c41 .dropdown .down-arrow, .myCards-Page3-fb462f94 .dropdown .down-arrow {
  padding: 0;
  font-size: 40px;
  color: #b2bdc0;
  margin-left: auto;
  margin-bottom: 5px;
}

.myCards-Page1-d5891c41 .dropdown a:hover, .myCards-Page2-375179bc .dropdown a:hover, .myCards-Page3-fb462f94 .dropdown a:hover {
  background-color: #ddd;
}

.myCards-Page3-fb462f94 .dropdown-btn, .myCards-Page2-375179bc .dropdown-btn, .myCards-Page1-d5891c41 .dropdown-btn {
  color: blue;
  padding: 0px 10px;
  height: 40px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  background-color: #f1f1f1;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.myCards-Page1-d5891c41 .container, .myCards-Page3-fb462f94 .container, .myCards-Page2-375179bc .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 10px;
  overflow-x: hidden;
  max-width: 100%;
  justify-content: space-between;  
  gap: 20px;
}

.myCards-Page1-d5891c41 .box-container, .myCards-Page2-375179bc .box-container, .myCards-Page3-fb462f94 .box-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 30px;
  width: 30%;
}

.myCards-Page3-fb462f94 .box-element, .myCards-Page2-375179bc .box-element, .myCards-Page1-d5891c41 .box-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 65%;
  height: 65px;
  margin: auto;
}

.basicDetails-5d7f747e .container-title, .myCards-Page3-fb462f94 #head-p-box-element, .myCards-Page2-375179bc #head-p-box-element, .myCards-Page1-d5891c41 #head-p-box-element, .settingsPage-d3b31cc7 .container-title {
  font-size: 23px;
}

.myCards-Page1-d5891c41 .container-phone-img, .myCards-Page2-375179bc .container-phone-img, .myCards-Page3-fb462f94 .container-phone-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-top: 10px;
}

.myCards-Page3-fb462f94 .container-phone-img img, .myCards-Page1-d5891c41 .container-phone-img img, .myCards-Page2-375179bc .container-phone-img img {
  width: 90%;
  height: auto;
  object-fit: cover;
  max-width: 400px;
}

.myCards-Page1-d5891c41 .icon-card, .myCards-Page2-375179bc .icon-card, .myCards-Page3-fb462f94 .icon-card {
  display: flex;
  align-items: flex-start;
  width: 240px;
  gap: 10px;
  margin-bottom: 35px;
}

.myCards-Page3-fb462f94 .icons-container, .myCards-Page2-375179bc .icons-container, .myCards-Page1-d5891c41 .icons-container {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 40px;
  height: 50px;
  margin-right: 5px;
  margin-top: 0;
}

.myCards-Page2-375179bc .icon-box, .myCards-Page3-fb462f94 .icon-box, .myCards-Page1-d5891c41 .icon-box {
  cursor: pointer;
  background-color: #0072ff;
  color: white;
  border-radius: 10px;
  box-shadow: 0px 20px 18px rgba(0, 0, 0, 0.1);
  border: solid 1.3px black;
  width: 43px;
  height: auto;
  text-align: center;
}

.myCards-Page1-d5891c41 .upgrade-button:hover, .myCards-Page2-375179bc .icon-box:hover, .myCards-Page3-fb462f94 .upgrade-button:hover, .myCards-Page2-375179bc .upgrade-button:hover, .myCards-Page1-d5891c41 .icon-box:hover, .myCards-Page3-fb462f94 .icon-box:hover {
  background-color: #3352ff;
}

.myCards-Page1-d5891c41 .icon-box i, .myCards-Page2-375179bc .icon-box i, .myCards-Page3-fb462f94 .icon-box i {
  font-size: 28px;
  padding: 7px 0px;
  cursor: pointer;
  color: white;
}

.myCards-Page3-fb462f94 .icons-container p, .myCards-Page1-d5891c41 .icons-container p, .myCards-Page2-375179bc .icons-container p {
  margin: auto;
  font-size: 12px;
}

.myCards-Page2-375179bc .premium-container, .myCards-Page3-fb462f94 .premium-container, .myCards-Page1-d5891c41 .premium-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
  padding: 5px;
  background-color: #ffffff;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}

.myCards-Page2-375179bc .premium-status,
.myCards-Page2-375179bc .status-details, .myCards-Page1-d5891c41 .premium-status,
.myCards-Page1-d5891c41 .status-details, .myCards-Page3-fb462f94 .premium-status,
.myCards-Page3-fb462f94 .status-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  border: solid 1.5px #0072ff;
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}

.myCards-Page3-fb462f94 .premium-label, .myCards-Page1-d5891c41 .premium-label, .myCards-Page2-375179bc .premium-label {
  font-weight: bold;
  font-size: 16px;
}

.myCards-Page3-fb462f94 .status-active, .myCards-Page2-375179bc .status-active, .myCards-Page1-d5891c41 .status-active {
  color: lightgreen;
  font-weight: bold;
  font-size: 16px;
}

.myCards-Page1-d5891c41 .status-inactive, .myCards-Page2-375179bc .status-inactive, .myCards-Page3-fb462f94 .status-inactive {
  color: red;
  font-weight: bold;
  font-size: 20px;
}

.myCards-Page3-fb462f94 .premium-label, .myCards-Page1-d5891c41 .premium-label, .myCards-Page2-375179bc .premium-label {
  color: #000000;
  margin-right: 10px;
}

.myCards-Page2-375179bc .upgrade-button, .myCards-Page3-fb462f94 .upgrade-button, .myCards-Page1-d5891c41 .upgrade-button {
  background-color: #0072ff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  margin-left: auto;
}

.myCards-Page1-d5891c41 .expiry-date, .myCards-Page2-375179bc .expiry-date, .myCards-Page3-fb462f94 .expiry-date {
  font-size: 14px !important;
  color: #333;
  margin-left: auto;
}

.myCards-Page3-fb462f94 .renew-link, .myCards-Page1-d5891c41 .renew-link, .myCards-Page2-375179bc .renew-link {
  color: #0072ff;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  margin-top: 5px;
  align-self: flex-end;
}

.myCards-Page2-375179bc .input-field, .myCards-Page3-fb462f94 .input-field, .myCards-Page1-d5891c41 .input-field {
  width: 100%;
  padding: 10px;
  margin: 10px 10px;
  margin-right: 5px;
  border-radius: 4px;
  border: 1.3px solid black;
  background-color: #ededed;
  font-size: 20px;
}

.basicDetails-5d7f747e #title option, .socialLinks-1a95806b .edit-btn i, .myCards-Page3-fb462f94 #title option, .paymentPage-8a65842a .container i:hover, .myCards-Page1-d5891c41 #title option, .settingsPage-d3b31cc7 .container-3 #text-area::placeholder, .myCards-Page2-375179bc #title option, .settingsPage-d3b31cc7 .title option {
  color: blue;
}

.myCards-Page2-375179bc .placeHolder, .basicDetails-5d7f747e #title, .myCards-Page1-d5891c41 #title, .settingsPage-d3b31cc7 .placeHolder, .socialNetwork-330f6e4d .placeHolder, .myCards-Page1-d5891c41 .placeHolder, .PaymentTab-fb53e347 #title, .myCards-Page3-fb462f94 #title, .myCards-Page3-fb462f94 .placeHolder, .Co-brand-f75f52a1 .placeHolder, .settingsPage-d3b31cc7 #title, .PaymentTab-fb53e347 .placeHolder, .myCards-Page2-375179bc #title, .socialNetwork-330f6e4d #title, .Co-brand-f75f52a1 #title, .basicDetails-5d7f747e .placeHolder {
  font-size: 17px;
  color: gray;
}

.sharedCards-Page1-b24129ba .card, .Co-brand-f75f52a1 .card {
  display: flex;
  flex-direction: row;
  border: 1.3px solid black;
  border-radius: 10px;
  padding: 10px;
  width: 90%;
  font-family: Arial, sans-serif;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 10px auto;
}

.sharedCards-Page1-b24129ba .rating i, .Co-brand-f75f52a1 .rating i {
  font-size: 15px;
  color: #fa0e0e;
  margin-right: 2px;
}

.Co-brand-f75f52a1 .cross, .sharedCards-Page1-b24129ba .cross {
  color: red !important;
  font-size: 35px;
}

.sharedCards-Page1-b24129ba .save {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  color: white !important;
  font-size: 30px;
}

.Stats-and-genereal-Dashboard-00a6e9dc, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1, .products-Pages-6add77b1 .products-Pages-c09438f3, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d {
  
}

.Stats-and-genereal-Dashboard-00a6e9dc body {
  background-color: white;
    width: 100%;
    
    height: 100vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: auto;
    font-family: "Poppins", sans-serif;
}

.Stats-and-genereal-Dashboard-00a6e9dc footer {
  display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #0072ff;
    color: white;
    position: static;
    bottom: 0;
    width: calc(100% - 20px);
}

.Stats-and-genereal-Dashboard-00a6e9dc footer button {
  background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 10px;
    white-space: nowrap;
}

.products-Pages-6add77b1 .row .fs-30, .products-Pages-c09438f3 .row .fs-30, .Stats-and-genereal-Dashboard-00a6e9dc footer button i {
  font-size: 30px !important;
}

.Stats-and-genereal-Dashboard-00a6e9dc .scrollable-content {
  flex: 1;
    overflow-y: auto;
}

.Stats-and-genereal-Dashboard-00a6e9dc header {
  height: 50px;
    background-color: #5271ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 1;
    padding: 0 5px;
    overflow: hidden;
}

.Stats-and-genereal-Dashboard-00a6e9dc header::before {
  content: "";
    background-image: radial-gradient(white 10%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    position: absolute;
    top: -80px;
    left: -80px;
    z-index: -1;
    width: 200px;
    height: 200px;
}

.Stats-and-genereal-Dashboard-00a6e9dc header .logo {
  font-weight: 700;
    display: flex;
    align-items: center;
}

.Stats-and-genereal-Dashboard-00a6e9dc header .logo img {
  margin-right: 10px;
    height: 35px;
}

.Stats-and-genereal-Dashboard-00a6e9dc header .notifications {
  font-size: 35px;
}

.Stats-and-genereal-Dashboard-00a6e9dc header .profile {
  display: flex;
    align-items: center;
}

.Stats-and-genereal-Dashboard-00a6e9dc header .profile i {
  font-size: 35px;
    margin-left: 5px;
}

.Stats-and-genereal-Dashboard-00a6e9dc header .profile .name {
  max-width: 65px;
    text-align: end;
}

.Stats-and-genereal-Dashboard-00a6e9dc .banner {
  height: 120px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 5px;
    overflow-x: auto;
    width: 100%;
}

.Stats-and-genereal-Dashboard-00a6e9dc .banner img {
  height: calc(100% - 6px);
    padding: 3px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .dashboard {
  display: flex;
    padding: 5px;
    height: 80px;
    gap: 5px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .dashboard > div:first-child {
  flex: 2;
    background-color: #b20202;
}

.Stats-and-genereal-Dashboard-00a6e9dc .dashboard > div:nth-child(2),
  .Stats-and-genereal-Dashboard-00a6e9dc .dashboard > div:nth-child(3) {
  flex: 1;
    background-color: #5271ff;
}

.Stats-and-genereal-Dashboard-00a6e9dc .dashboard .dashboard-card-parent {
  display: flex;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.Stats-and-genereal-Dashboard-00a6e9dc .dashboard .dashboard-card-parent .dashboard-card {
  display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 5px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .dashboard .dashboard-card-parent .dashboard-card .value {
  font-size: 20px;
    color: #ffffcc;
    font-weight: 600;
}

.Stats-and-genereal-Dashboard-00a6e9dc .dashboard .dashboard-card-parent .dashboard-card .title {
  color: white;
    text-align: center;
    font-size: 15px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent, .Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent {
  margin: 0 3px;
    padding: 0 3px;
    border-radius: 3px;
    border: 1px solid black;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-header {
  display: flex;
    height: 50px;
    align-items: center;
    font-size: 20px;
    padding: 5px;
    justify-content: space-between;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-header .title {
  margin: 0 3px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-header .title:first-child,
  .Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card .row2 > .row2-child:first-child {
  width: calc(100% - 200px);
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-header .title:nth-child(2),
  .Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-header .title:nth-child(3),
  .Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card .row2 > .row2-child:nth-child(2),
  .Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card .row2 > .row2-child:nth-child(3), .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .jc-sa button {
  width: 100px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card {
  border: 1px solid black;
    border-radius: 3px;
    padding: 5px;
    margin-right: 3px;
    margin-bottom: 15px;
    box-shadow: 3px 3px 0px 0px #b7b7b7;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card > div:first-child {
  display: flex;
    font-size: 20px;
    justify-content: space-between;
    align-items: center;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card > div:first-child i {
  font-size: 25px;
    color: #5271ff;
}

.Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card hr, .Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card hr {
  width: 90%;
    min-width: 200px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card .row2 {
  font-size: 20px;
    display: flex;
    align-items: center;
    height: 25px;
    justify-content: space-between;
}

.Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card .row2 .row2-child:first-child {
  font-size: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-9f521fcc .card-dropdown, .Stats-and-genereal-Dashboard-00a6e9dc .mycards-parent .mycards-card .row2 .row2-child, .premiumCard-c59fb659 .text-align-center, .products-Pages-6add77b1 .card-dropdown, .products-Pages-c09438f3 .card-dropdown {
  text-align: center;
}

.Stats-and-genereal-Dashboard-00a6e9dc .section-header {
  border: 1px solid black;
    padding: 3px 10px;
    margin: 3px;
    margin-top: 10px;
    border-radius: 3px;
    font-weight: 500;
    background-color: #f1f8ff;
}

.Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card-header {
  display: flex;
    align-items: center;
    font-size: 17px;
    height: 36px;
    padding: 5px;
    justify-content: space-between;
}

.Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card-header .title {
  margin: 0 3px;
    width: 30%;
    text-align: center;
}

.Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card {
  border: 1px solid black;
    border-radius: 3px;
    padding: 5px;
    margin-right: 3px;
    margin-bottom: 8px;
    box-shadow: 3px 3px 0px 0px #b7b7b7;
}

.Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card .row1 {
  font-size: 18px;
    font-weight: 600;
}

.Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card .row2 {
  font-size: 20px;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: space-between;
}

.Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card .row2 .row2-child {
  width: 30%;
    text-align: center;
}

.Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card .row2 .row2-child .value {
  color: #5271ff;
    font-weight: 500;
    font-size: 30px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #left-inc-1 label, .Stats-and-genereal-Dashboard-00a6e9dc .my-coupon-code-parent .main .body, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #left-inc-2 label, .Stats-and-genereal-Dashboard-00a6e9dc .statistics-card-parent .statistics-card .row2 .row2-child .title, .Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card .info .date {
  font-size: 13px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .my-coupon-code-parent {
  border: 1px solid black;
    margin: 3px;
    border-radius: 3px;
    padding: 5px;
    display: flex;
    flex-direction: row-reverse;
    background-color: #fcfdf6;
}

.Stats-and-genereal-Dashboard-00a6e9dc .my-coupon-code-parent .info {
  font-size: x-large;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #5271ff;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card-parent {
  margin: 5px 10px;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card-filter {
  display: flex;
    justify-content: space-between;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card-filter select {
  padding: 5px;
    font-size: 15px;
    border: 1px solid black;
    border-radius: 3px;
    text-align: right;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card {
  border: 1px solid black;
    border-radius: 3px;
    padding: 5px;
    margin: 5px 0;
    box-shadow: 3px 3px 0px 0px #b7b7b7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card .details {
  width: -webkit-fill-available;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card .details .title {
  font-size: 20px;
    font-weight: 600;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card .info {
  display: flex;
    justify-content: space-between;
    align-items: center;
    color: #070707;
    align-items: flex-end;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card .info .name {
  font-size: 18px;
    font-weight: 500;
}

.Stats-and-genereal-Dashboard-00a6e9dc .used-coupon-code-card > i {
  font-size: xx-large;
    margin-left: 20px;
}

.aboutUs-9f548a5a footer, .Co-brand-f75f52a1 footer, .PaymentTab-fb53e347 footer, .phoneSignup-0832247f footer, .RegistrationPage-746606b2 footer, .gallery-0999fc63 footer, .socialLinks-1a95806b footer, .videoPages-Pages-3fef54c1 footer, .videoPages-8c76f39f footer, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d footer, .resetPassword-08026927 footer, .settingsPage-d3b31cc7 footer, .basicDetails-5d7f747e footer, .products-9f521fcc footer, .EmailOTP-2ae3d843 footer, .socialNetwork-330f6e4d footer, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 footer, .products-Pages-6add77b1 .products-Pages-c09438f3 footer {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  padding-top: 0px;
  background-color: #0072ff;
  color: white;
  position: static;
  bottom: 0;
  width: calc(100% - 20px);
  border-radius: 4% 4% 0 0;
  overflow-x: auto;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d footer button i, .gallery-0999fc63 footer button i, .Co-brand-f75f52a1 footer button i, .PaymentTab-fb53e347 footer button i, .socialNetwork-330f6e4d footer button i, .aboutUs-9f548a5a footer button i, .products-9f521fcc footer button i, .products-Pages-6add77b1 .products-Pages-c09438f3 footer button i, .videoPages-8c76f39f footer button i, .socialLinks-1a95806b footer button i, .videoPages-Pages-3fef54c1 footer button i, .settingsPage-d3b31cc7 footer button i, .basicDetails-5d7f747e footer button i, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 footer button i {
  font-size: 40px !important;
  margin-bottom: 5px;
  padding-top: 7px !important;
  margin-right: 5px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .scrollable-content, .products-9f521fcc .scrollable-content, .videoPages-8c76f39f .scrollable-content, .basicDetails-5d7f747e .scrollable-content, .products-Pages-6add77b1 .scrollable-content, .products-Pages-c09438f3 .scrollable-content, .Co-brand-f75f52a1 .scrollable-content, .settingsPage-d3b31cc7 .scrollable-content, .socialNetwork-Pages-7d6aeb30 .scrollable-content, .socialNetwork-Pages-b7c9defb .scrollable-content, .socialNetwork-Pages-87cc9d11 .scrollable-content, .socialNetwork-Pages-ecb070c1 .scrollable-content, .videoPages-Pages-3fef54c1 .scrollable-content, .socialNetwork-330f6e4d .scrollable-content, .gallery-0999fc63 .scrollable-content, .aboutUs-9f548a5a .scrollable-content, .socialLinks-1a95806b .scrollable-content, .PaymentTab-fb53e347 .scrollable-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.gallery-0999fc63 footer button.active, .PaymentTab-fb53e347 footer button.active, .products-9f521fcc footer button.active, .Co-brand-f75f52a1 footer button.active, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 footer button.active, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d footer button.active, .basicDetails-5d7f747e footer button.active, .videoPages-Pages-3fef54c1 footer button.active, .aboutUs-9f548a5a footer button.active, .settingsPage-d3b31cc7 footer button.active, .socialNetwork-330f6e4d footer button.active, .products-Pages-6add77b1 .products-Pages-c09438f3 footer button.active, .videoPages-8c76f39f footer button.active, .socialLinks-1a95806b footer button.active {
  background-color: #ffffff;
  color: #0072ff;
  border-radius: 0px 0px 30% 30%;
}

.socialLinks-1a95806b .heading, .aboutUs-9f548a5a .heading, .ThemePage-9f0c104d .heading {
  font-size: 20px;
  font-weight: 600;
  width: 95%;
  margin: 10px auto;
  border: 1.3px solid #000;
  border-radius: 10px;
  background-color: #e6f9ff;
  text-align: center;
  color: blue;
}

.gallery-Pages-e8165973 .catalouge-name div label, .aboutUs-9f548a5a label {
  font-size: 17px;
  font-weight: 500;
}

.aboutUs-9f548a5a .lock-icon{
    font-size: 21px;
}

.aboutUs-9f548a5a .row, .ThemePage-9f0c104d .row, .premiumCard-c59fb659 .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.aboutUs-9f548a5a .row {
    flex-direction: row;
    align-items: flex-end;
}

.ThemePage-9f0c104d .col, .aboutUs-9f548a5a .col, .premiumCard-c59fb659 .col, .products-Pages-6add77b1 .col, .products-Pages-c09438f3 .col, .RegistrationPage-746606b2 .form-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.col .semibold{
  font-weight: 550;
  color: black;
}


.socialLinks-1a95806b .delete-btn i, .products-Pages-6add77b1 .red,.products-Pages-1e343335 .red, .ExploreSavedcard-2dr3d561 .red,.PaymentTab-fb53e347 .red,.Savedcard-2dr3d560 .required , .Savedcard-2dr3d561 .required,  .products-Pages-c09438f3 .red,.videoPages-Pages-3fef54c1 .red, .premiumCard-c59fb659 .red, .aboutUs-9f548a5a .red, .planPage-984c611a .limit, .basicDetails-5d7f747e .red, .resetPassword-08026927 .required,.PaymentTab-fb53e347 .required, .socialLinks-1a95806b .red, .EmailOTP-2ae3d843 .required, .settingsPage-d3b31cc7 .red, .phoneSignup-0832247f .required, .basicPlan-3f798e55 .limit, .paymentPage-8a65842a .red, .RegistrationPage-746606b2 .required {
  color: red !important;
}

.req-error-msg{
    margin: -5px 0px 5px 0px;
}

.Co-brand-f75f52a1 .container,.products-Pages-1e343335 .container, .gallery-Pages-1378e22d .container , .PaymentTab-fb53e347 .container, .videoPages-Pages-3fef54c1 .container, .products-Pages-6add77b1 .container, .products-Pages-c09438f3 .container, .settingsPage-d3b31cc7 .container, .socialNetwork-330f6e4d .container, .aboutUs-9f548a5a .container, .socialNetwork-Pages-7d6aeb30 .container, .socialNetwork-Pages-b7c9defb .container, .socialNetwork-Pages-87cc9d11 .container, .socialNetwork-Pages-ecb070c1 .container, .basicDetails-5d7f747e .container, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .container {
  background-color: #fbfbfb;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1.3px solid black;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

/*Riddhi css changes*/

 .basicDetails-5d7f747e .container{
     padding:5px;
 }

.PaymentTab-fb53e347 .container{
  margin-bottom: 10px; 
}

.settingsPage-d3b31cc7 .container{
    margin: 10px 0px;
}

/*Riddhi css changes*/

.Co-brand-f75f52a1 .input-field,.products-Pages-1e343335 .input-field,.payment_new_1sb334710 .input-field,.add-franchisee-gd6663hs .input-field,.franchisee-gd6663hs .input-field, .Savedcard-2dr3d560 .input-field,  .Savedcard-2dr3d561 .input-field, .homePage-51ea6cf0 .input-field , .gallery-Pages-1378e22d .input-field,.popup input[type="text"], .popup textarea[type="text"],.popup select, .gallery-0999fc63 .input-field, .settingsPage-d3b31cc7 .input-field, .videoPages-Pages-3fef54c1 .input-field, .PaymentTab-fb53e347 .input-field, .aboutUs-9f548a5a .input-field, .socialNetwork-Pages-7d6aeb30 .input-field, .socialNetwork-Pages-b7c9defb .input-field, .socialNetwork-Pages-87cc9d11 .input-field, .socialNetwork-Pages-ecb070c1 .input-field, .socialNetwork-330f6e4d .input-field, .products-Pages-6add77b1 .input-field, .products-Pages-c09438f3 .input-field, .basicDetails-5d7f747e .input-field, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .input-field, .socialLinks-1a95806b .input-field {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1.3px solid black;
  color:black;
}

.basicDetails-5d7f747e .input-field{
    color:blue;
}

/*.Co-brand-f75f52a1 .input-field,.products-Pages-1e343335 .input-field, .Savedcard-2dr3d560 .input-field,  .Savedcard-2dr3d561 .input-field, .homePage-51ea6cf0 .input-field , .gallery-Pages-1378e22d .input-field,.popup input[type="text"], .popup textarea[type="text"],.popup select, .gallery-0999fc63 .input-field, .settingsPage-d3b31cc7 .input-field, .videoPages-Pages-3fef54c1 .input-field, .PaymentTab-fb53e347 .input-field, .aboutUs-9f548a5a .input-field, .socialNetwork-Pages-7d6aeb30 .input-field, .socialNetwork-Pages-b7c9defb .input-field, .socialNetwork-Pages-87cc9d11 .input-field, .socialNetwork-Pages-ecb070c1 .input-field, .socialNetwork-330f6e4d .input-field, .products-Pages-6add77b1 .input-field, .products-Pages-c09438f3 .input-field, .basicDetails-5d7f747e .input-field, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .input-field, .socialLinks-1a95806b .input-field {*/
/*  width: 100%;*/
/*  padding: 10px;*/
/*  margin: 10px 0;*/
/*  border-radius: 4px;*/
/*  border: 1.3px solid black;*/
/*  color:blue;*/
/*}*/

.socialNetwork-Pages-7d6aeb30 .placeHolder,.products-Pages-1e343335 .placeHolder ,.payment_new_1sb334710 .placeHolder,.Savedcard-2dr3d560 .placeHolder , .Savedcard-2dr3d561 .placeHolder , .homePage-51ea6cf0 .placeHolder , .gallery-0999fc63 .placeHolder, .socialNetwork-Pages-b7c9defb .placeHolder, .socialNetwork-Pages-87cc9d11 .placeHolder, .socialNetwork-Pages-ecb070c1 .placeHolder, .products-Pages-6add77b1 .placeHolder, .products-Pages-c09438f3 .placeHolder, .aboutUs-9f548a5a #title, .aboutUs-9f548a5a .input-field, .aboutUs-9f548a5a .placeHolder, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #title, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .placeHolder, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #title, .products-Pages-6add77b1 .products-Pages-c09438f3 #title {
  font-size: 18px;
  color: gray;
}

.aboutUs-9f548a5a .input-field-text, .gallery-Pages-1378e22d .input-field-text,.add-franchisee-gd6663hs .input-field-text,.franchisee-gd6663hs .input-field-text,.payment_new_1sb334710 .input-field-text, .settingsPage-d3b31cc7 .input-field-text ,.Savedcard-2dr3d560 .input-field-text, .Savedcard-2dr3d561 .input-field-text, .homePage-51ea6cf0 .input-field-text , .gallery-0999fc63 .input-field-text , .popup input[type="text"], .popup textarea[type="text"] , .products-Pages-1e343335 .input-field-text,.PaymentTab-fb53e347 .input-field-text, .products-Pages-c09438f3 .input-field-text, .videoPages-Pages-3fef54c1 .input-field-text,.basicDetails-5d7f747e .input-field-text {
    width: 94.5%;
}

.basicDetails-5d7f747e .margin-y-0 ,.homePage-51ea6cf0 .margin-y-0{
    margin: 5px 0px;
}

.basicDetails-5d7f747e .basic-details-grid{
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: repeat(2, 1fr);
    /*grid-template-rows: repeat(auto-fill, 80px);*/
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.aboutUs-9f548a5a .about-me-plus-icon {   
    font-size: 24px;
    color: #5271ff;
    display: flex;
    justify-content: end;
}

.aboutUs-9f548a5a #lock {
  font-size: 18px;
  color: #ffa4a4;
}

.aboutUs-9f548a5a #text-area, .Co-brand-f75f52a1 #text-area, .PaymentTab-fb53e347 #text-area, .settingsPage-d3b31cc7 #text-area, .products-Pages-6add77b1 .products-Pages-c09438f3 #text-area, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #text-area, .basicDetails-5d7f747e #text-area, .videoPages-Pages-3fef54c1 #text-area, .socialNetwork-330f6e4d #text-area, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #text-area {
  width: 94%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1.3px solid black;
}

.products-Pages-6add77b1 .toolbar, .products-Pages-c09438f3 .toolbar, .aboutUs-9f548a5a .toolbar {
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 10px 0px;
}

.products-Pages-6add77b1 .toolbar button, .products-Pages-c09438f3 .toolbar button, .aboutUs-9f548a5a .toolbar button {
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
}

.products-Pages-6add77b1 .toolbar button.active, .products-Pages-c09438f3 .toolbar button.active, .aboutUs-9f548a5a .toolbar button.active {
  background-color: #007BFF !important;
  color: white;
  border: 2px solid #0056b3;
}

.products-Pages-6add77b1 .toolbar button:hover, .products-Pages-c09438f3 .toolbar button:hover, .aboutUs-9f548a5a .toolbar button:hover {
  background-color: #f0f0f0;
}

.products-Pages-6add77b1 .editor, .products-Pages-c09438f3 .editor, .aboutUs-9f548a5a .editor {
  background-color: #fff;
  border: none;
  outline: none;
  min-height: 300px;
  width: 95%;
  padding: 10px;
  resize: none;
  font-size: 16px;
}

.socialNetwork-330f6e4d .buttons,.gallary-3sd452221 .buttons ,.ThemePage-9f0c104d .buttons, .gallery-Pages-1378e22d .buttons,.gallery-Pages-e8165973 .buttons , .products-Pages-c09438f3 .buttons,.products-Pages-1e343335 .buttons, .basicDetails-5d7f747e .buttons, .aboutUs-9f548a5a .buttons, .gallery-0999fc63 .buttons, .videoPages-8c76f39f .buttons, .Co-brand-f75f52a1 .buttons, .settingsPage-d3b31cc7 .buttons, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .buttons, .socialNetwork-Pages-7d6aeb30 .buttons, .socialNetwork-Pages-b7c9defb .buttons, .socialNetwork-Pages-87cc9d11 .buttons, .socialNetwork-Pages-ecb070c1 .buttons, .products-9f521fcc .buttons, .PaymentTab-fb53e347 .buttons, .videoPages-Pages-3fef54c1 .buttons, .socialLinks-1a95806b .buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  margin-top: 10px;
}



.videoPages-Pages-3fef54c1 .btn,.ThemePage-9f0c104d .btn, .gallary-3sd452221 .btn ,.Savedcard-2dr3d560 .btn, .Savedcard-2dr3d561 .btn,.gallery-Pages-e8165973 .btn,.gallery-Pages-1378e22d .btn, .products-Pages-1e343335 .btn, .gallery-0999fc63 .btn, .products-Pages-6add77b1 .btn, .products-Pages-c09438f3 .btn, .socialLinks-1a95806b .btn, .aboutUs-9f548a5a .btn, .products-9f521fcc .btn, .videoPages-8c76f39f .btn {
  background-color: white;
  color: #1a73e8;
  border: 1.3px solid black;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

.products-9f521fcc .p-7{
    align-items: center;
    padding: 7px;
}

.products-9f521fcc .products-first-btn-height{
    height: 71px;
}

.products-9f521fcc .p-7 p{
    font-size: 13px !important;
}

.products-9f521fcc .p-7 p:first-child{
    font-size: 25px !important;
}

.videoPages-Pages-3fef54c1 .btn.youtube-verify{
    padding:8px;
    height:36px;
    width:36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
}
.videoPages-Pages-3fef54c1 .jc-sa{
    justify-content: center;
}
.videoPages-Pages-3fef54c1 .jc-sa .btn{
    width: 140px;
}

.resetPassword-08026927 .btn:hover,.gallary-3sd452221 .btn:hover, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .btn:hover, .socialLinks-1a95806b .btn:hover, .videoPages-8c76f39f .btn:hover, .phoneSignup-0832247f .next-btn:hover, .basicDetails-5d7f747e .btn:hover, .aboutUs-9f548a5a .btn:hover, .products-9f521fcc .btn:hover, .products-Pages-6add77b1 .btn:hover, .products-Pages-c09438f3 .btn:hover, .products-Pages-6add77b1 .products-Pages-c09438f3 #enquiry-btn:hover, .planPage-984c611a .btn:hover, .socialNetwork-Pages-7d6aeb30 .btn:hover, .socialNetwork-Pages-b7c9defb .btn:hover, .socialNetwork-Pages-87cc9d11 .btn:hover, .socialNetwork-Pages-ecb070c1 .btn:hover, .gallery-0999fc63 .btn:hover, .videoPages-Pages-3fef54c1 .btn:hover, .EmailOTP-2ae3d843 .next-btn:hover,.Savedcard-2dr3d560 .next-btn:hover,.Savedcard-2dr3d561 .next-btn:hover, .Co-brand-f75f52a1 .btn:hover, .PaymentTab-fb53e347 .btn:hover, .premiumCard-c59fb659 .pay-btn:hover,.Savedcard-2dr3d560 .pay-btn:hover,.Savedcard-2dr3d561 .pay-btn:hover, .socialNetwork-330f6e4d .btn:hover, .settingsPage-d3b31cc7 .btn:hover, .basicPlan-3f798e55 .btn:hover, .ThemePage-9f0c104d .btn:hover {
  background-color: white;
  color: #1a73e8;
  box-shadow: none;
}
/*.resetPassword-08026927 .btn:hover,.gallary-3sd452221 .btn:hover, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .btn:hover, .socialLinks-1a95806b .btn:hover, .videoPages-8c76f39f .btn:hover, .phoneSignup-0832247f .next-btn:hover, .RegistrationPage-746606b2 .btn:hover, .basicDetails-5d7f747e .btn:hover, .aboutUs-9f548a5a .btn:hover, .products-9f521fcc .btn:hover, .products-Pages-6add77b1 .btn:hover, .products-Pages-c09438f3 .btn:hover, .products-Pages-6add77b1 .products-Pages-c09438f3 #enquiry-btn:hover, .planPage-984c611a .btn:hover, .socialNetwork-Pages-7d6aeb30 .btn:hover, .socialNetwork-Pages-b7c9defb .btn:hover, .socialNetwork-Pages-87cc9d11 .btn:hover, .socialNetwork-Pages-ecb070c1 .btn:hover, .gallery-0999fc63 .btn:hover, .videoPages-Pages-3fef54c1 .btn:hover, .EmailOTP-2ae3d843 .next-btn:hover,.Savedcard-2dr3d560 .next-btn:hover,.Savedcard-2dr3d561 .next-btn:hover, .Co-brand-f75f52a1 .btn:hover, .PaymentTab-fb53e347 .btn:hover, .premiumCard-c59fb659 .pay-btn:hover,.Savedcard-2dr3d560 .pay-btn:hover,.Savedcard-2dr3d561 .pay-btn:hover, .socialNetwork-330f6e4d .btn:hover, .settingsPage-d3b31cc7 .btn:hover, .basicPlan-3f798e55 .btn:hover, .ThemePage-9f0c104d .btn:hover {*/
/*  background-color: white;*/
/*  color: #1a73e8;*/
/*  box-shadow: none;*/
/*}*/

.Co-brand-f75f52a1 .ta-left, .videoPages-Pages-3fef54c1 .ta-left,.PaymentTab-fb53e347 .ta-left, .socialNetwork-330f6e4d .ta-left, .settingsPage-d3b31cc7 .ta-left, .basicDetails-5d7f747e .ta-left {
  text-align: left !important;
}

.PaymentTab-fb53e347 .label-radio-checkbox{
    font-weight: normal;
    font-size: 15px;
}

.settingsPage-d3b31cc7 .jc-sa, .products-Pages-6add77b1 .add-catalouge-header-btn, .products-Pages-c09438f3 .add-catalouge-header-btn, .PaymentTab-fb53e347 .jc-sa, .basicDetails-5d7f747e .jc-sa, .socialNetwork-330f6e4d .jc-sa, .Co-brand-f75f52a1 .jc-sa{
  justify-content: space-around !important;
}

.PaymentTab-fb53e347 .mt-0, .Co-brand-f75f52a1 .mt-0, .socialNetwork-330f6e4d .mt-0, .videoPages-Pages-3fef54c1 .mt-0, .settingsPage-d3b31cc7 .mt-0, .basicDetails-5d7f747e .mt-0 {
  margin-top: 0px !important;
  padding: 0px !important;
}

.settingsPage-d3b31cc7 .blue, .Co-brand-f75f52a1 .blue, .PaymentTab-fb53e347 .blue, .basicDetails-5d7f747e .blue, .socialNetwork-330f6e4d .blue, .socialNetwork-Pages-7d6aeb30 .blue, .socialNetwork-Pages-b7c9defb .blue, .socialNetwork-Pages-87cc9d11 .blue, .socialNetwork-Pages-ecb070c1 .blue {
  color: #0072ff;
  font-weight: 600;
  margin: 0px;
}

.socialNetwork-Pages-7d6aeb30 .heading,.gallary-3sd452221 .heading, .gallery-Pages-1378e22d .heading, .products-Pages-1e343335 .heading , .socialNetwork-Pages-b7c9defb .heading, .socialNetwork-Pages-87cc9d11 .heading, .socialNetwork-Pages-ecb070c1 .heading, .videoPages-Pages-3fef54c1 .heading, .PaymentTab-fb53e347 .heading, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .heading, .settingsPage-d3b31cc7 .heading, .videoPages-8c76f39f .heading, .products-9f521fcc .heading, .products-Pages-6add77b1 .heading, .products-Pages-c09438f3 .heading, .socialNetwork-330f6e4d .heading, .gallery-0999fc63 .heading, .basicDetails-5d7f747e .heading, .Co-brand-f75f52a1 .heading {
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  margin: 10px auto;
  border: 1.3px solid #000;
  border-radius: 10px;
  background-color: #EEE;
  text-align: center;
  color: blue;
}

.settingsPage-d3b31cc7 .heading{
    margin-top:0px;
}

.basicDetails-5d7f747e .heading-title {
  border-radius: 10px;
  background-color: #0072ff;
  text-align: left;
  margin: 15px auto;
  padding: 10px;
  margin-top: 0;
}

.basicDetails-5d7f747e .heading-title label {
  color: white;
  font-weight: 400;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d label,.gallary-3sd452221 .heading label, .videoPages-Pages-3fef54c1 label, .socialLinks-1a95806b label, .products-Pages-6add77b1 .products-Pages-c09438f3 label, .PaymentTab-fb53e347 label, .gallery-0999fc63 label, .Co-brand-f75f52a1 label, .settingsPage-d3b31cc7 label, .socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 label, .videoPages-8c76f39f label, .products-9f521fcc label, .basicDetails-5d7f747e label, .socialNetwork-330f6e4d label, .ThemePage-9f0c104d label {
  font-size: 18px;
  font-weight: 600;
}

.settingsPage-d3b31cc7 .row,.gallary-3sd452221 .row,.products-Pages-1e343335 .row,.EmailOTP-2ae3d843 .row, .gallery-Pages-e8165973 .row, .videoPages-Pages-3fef54c1 .row, .socialNetwork-330f6e4d .row, .basicDetails-5d7f747e .row, .videoPages-8c76f39f .row, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .row, .products-Pages-6add77b1 .row, .products-Pages-c09438f3 .row, .PaymentTab-fb53e347 .row, .socialNetwork-Pages-7d6aeb30 .row, .socialNetwork-Pages-b7c9defb .row, .socialNetwork-Pages-87cc9d11 .row, .socialNetwork-Pages-ecb070c1 .row, .products-9f521fcc .row, .gallery-0999fc63 .row, .Co-brand-f75f52a1 .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.Co-brand-f75f52a1 .col,.gallary-3sd452221 .col,.products-Pages-1e343335 .col,.EmailOTP-2ae3d843 .col, .socialNetwork-330f6e4d .col,.gallery-Pages-e8165973 .col, .videoPages-Pages-3fef54c1 .col, .settingsPage-d3b31cc7 .col, .videoPages-8c76f39f .col, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .col, .PaymentTab-fb53e347 .col, .basicDetails-5d7f747e .col, .socialNetwork-Pages-7d6aeb30 .col, .socialNetwork-Pages-b7c9defb .col, .socialNetwork-Pages-87cc9d11 .col, .socialNetwork-Pages-ecb070c1 .col, .gallery-0999fc63 .col, .products-9f521fcc .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.basicDetails-5d7f747e .container .col .row {
  justify-content: space-around;
  margin-right: 10px;
}

.basicDetails-5d7f747e .icon-relative-container {
  width: 45%;
  position: relative;
}

.basicDetails-5d7f747e .icon-relative-container-grid{
  width: 85%;
  position: relative;
  padding: 0px 10px;
  /*justify-content: flex-start;*/
  justify-content: flex-end;
  /*align-items: stretch;*/
  /*justify-content: space-between;*/
}

.basicDetails-5d7f747e .icon-relative-container-grid i{
    position: absolute;
    top: 7%;
    right: -1%;
    color:Red;
}

.basicDetails-5d7f747e .icon-relative-container i {
  position: absolute;
  top: 10%;
  right: -5%;
}

/*Riddhi css changes*/

.basicDetails-5d7f747e .relative-container i {
  position: absolute;
  /*top: 10%;*/
  right: 2%;
}

.basicDetails-5d7f747e .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 5px auto;
  width: 80px;
  height: 80px;
  border: 1.3px solid black;
  border-radius: 5px;
}

.basicDetails-5d7f747e .icon-container i {
  font-size: 50px;
  color: gray;
}

.basicDetails-5d7f747e .shapes-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin: 5px auto;
  border: 1.3px solid black;
  border-radius: 5px;
}

.basicDetails-5d7f747e .shapes-container .rectangle {
  width: 70px;
  height: 50px;
}

.basicDetails-5d7f747e .shapes-container .square {
  width: 50px;
  height: 50px;
  border: 1.3px solid black;
  border-radius: 5px;
}
.basicDetails-5d7f747e .shapes-container .rectangular {
  width: 100px;
  height: 50px;
  border: 1.3px solid black;
  border-radius: 5px;
  object-fit: cover
}

.basicDetails-5d7f747e .shapes-container .circle {
  width: 50px;
  height: 50px;
  border: 1.3px solid black;
  border-radius: 50%;
}

.basicDetails-5d7f747e .icon-container label, .basicDetails-5d7f747e .shapes-container label {
  font-size: 16px;
  color: gray;
  margin-bottom: 5px;
}

.basicDetails-5d7f747e .lock-div {
  margin-left: auto;
  margin-right: 8px;
  margin-top: 5px;
}

.basicDetails-5d7f747e .desc-title, .settingsPage-d3b31cc7 .desc-title, .gallery-Pages-1378e22d .desc-title  {
  color: gray;
  text-align: left;
  margin: 5px 0;
  font-size: 20px;
}

.settingsPage-d3b31cc7 .desc-title{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
}
.settingsPage-d3b31cc7 .desc-title{
    margin: 0px;
}

.gallery-Pages-1378e22d .desc-title-2{
    margin: 0px;
}


.basicDetails-5d7f747e .desc-title-text {
  font-size: 30px;
  margin-right: 15px;
}

.basicDetails-5d7f747e .hidden {
  display: none;
}

.basicDetails-5d7f747e .dividing-line {
  border-bottom: 1.3px solid black;
  width: 100%;
  margin: 5px 0;
}

.basicDetails-5d7f747e .container-name{
  margin: 5px;
  padding: 0 10px;
}

.settingsPage-d3b31cc7 .container-name {
  margin: 5px auto;
}

.settingsPage-d3b31cc7 .container-name i, .basicDetails-5d7f747e .container-name i {
  font-size: 50px;
  color: #0072ff;
}

.settingsPage-d3b31cc7 .container-name .input-wrapper, .basicDetails-5d7f747e .container-name div {
  border: 1.3px solid black;
  border-radius: 5px;
  text-align: center;
  width: 80%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0px;
}

.settingsPage-d3b31cc7 .cr-wrapper input[type="checkbox"] ~ .settings-checkbox {
    background: #EDEBEB;
}

.settingsPage-d3b31cc7 .cr-wrapper input[type="checkbox"]:checked ~ .settings-checkbox {
    background: #FFFF00;
    border-color: #000000;
}

.settingsPage-d3b31cc7 .cr-wrapper input[type="checkbox"] ~ .settings-checkbox::after{
    background-color: #5371FF;
}

.settingsPage-d3b31cc7 .container-name .input-wrapper div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
}

.settingsPage-d3b31cc7 .container-name .input-wrapper div label{
    font-size:20px;
    color: #737373;
}

.settingsPage-d3b31cc7 .container-name .input-wrapper div input[type=text] {
    border: 1px solid black;
    font-size: 21px;
    color: #12229D;
    background: transparent;
    text-align: center;
    margin: 0 10px;
    padding: 5px;
}

.gallery-Pages-b4b698a4 .catalouge-name i,.gallary-3sd452221 .catalouge-name i , .gallery-Pages-e8165973 .catalouge-name i, .gallery-Pages-1378e22d .catalouge-name i, .basicDetails-5d7f747e .container-name label, .settingsPage-d3b31cc7 .container-name label {
  font-size: 30px;
  color: #3d3d3d;
}

.gallery-Pages-e8165973 .catalouge-name i,.gallary-3sd452221 .catalouge-name i {
    font-size: 20px;
    border-radius: 50%;
    background-color: #737373;
    padding: 8px;
    color:white;
}

.basicDetails-5d7f747e .link {
  color: #0072ff;
  font-size: 13px;
  margin: 0;
  padding: 0;
  text-align: left;
}

/*Riddhi new css*/

.basicDetails-5d7f747e .link{
    font-size:12px;
}

.settingsPage-d3b31cc7 .link:hover, .basicDetails-5d7f747e .link:hover {
  text-decoration: underline;
  color: blue;
}

.settingsPage-d3b31cc7 .checkbox-icon-container, .basicDetails-5d7f747e .checkbox-icon-container {
  display: flex;
  justify-content: space-around;
  margin: 10px 0;
}

.products-9f521fcc #lock, .basicDetails-5d7f747e #lock, .products-Pages-6add77b1 .products-Pages-c09438f3 #lock {
  font-size: 20px;
  color: #ffa4a4;
  margin-bottom: 10px;
}

.settingsPage-d3b31cc7 #edit,.gallary-3sd452221 #edit, .videoPages-8c76f39f #edit, .basicDetails-5d7f747e #edit,.gallery-Pages-e8165973 #edit, .gallery-0999fc63 #edit, .socialNetwork-330f6e4d #edit, .videoPages-Pages-3fef54c1 #edit, .PaymentTab-fb53e347 #edit {
  font-size: 25px;
  color: #0072ff;
  margin-bottom: 10px;
}

.gallery-Pages-e8165973 #edit{
    color: #424141;
}

.settingsPage-d3b31cc7 #delete,.gallary-3sd452221 #delete, .videoPages-Pages-3fef54c1 #delete, .gallery-0999fc63 #delete,.gallery-Pages-e8165973 #delete, .socialNetwork-330f6e4d #delete, .PaymentTab-fb53e347 #delete, .basicDetails-5d7f747e #delete, .videoPages-8c76f39f #delete, .Co-brand-f75f52a1 #delete {
  font-size: 25px;
  color: red;
  margin-bottom: 10px;
}

.settingsPage-d3b31cc7 #eye, .basicDetails-5d7f747e #eye {
  font-size: 30px;
  color: var(--div-background-color);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: blue;
}

.basicDetails-5d7f747e #eye:hover, .products-9f521fcc #delete:hover, .products-9f521fcc #lock:hover, .basicDetails-5d7f747e #delete:hover, .products-Pages-6add77b1 .products-Pages-c09438f3 #img-upload, .products-Pages-6add77b1 .products-Pages-c09438f3 #lock:hover, .products-Pages-6add77b1 .products-Pages-c09438f3 #delete:hover, .settingsPage-d3b31cc7 #edit:hover, .settingsPage-d3b31cc7 #delete:hover, .basicDetails-5d7f747e #edit:hover, .products-Pages-6add77b1 .products-Pages-c09438f3 #edit:hover, .products-9f521fcc #edit:hover, .settingsPage-d3b31cc7 #eye:hover {
  color: gray;
}

.settingsPage-d3b31cc7 .checkbox-title-label, .basicDetails-5d7f747e .checkbox-title-label {
  width: 90%;
  padding: 5px 0px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  margin: 5px auto;
}

.basicDetails-5d7f747e .input-title-label {
  width: 114%;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  /*margin-top: 5px;*/
  margin-bottom: 0px;
}

.socialNetwork-Pages-7d6aeb30 .btn, .socialNetwork-Pages-b7c9defb .btn, .socialNetwork-Pages-87cc9d11 .btn, .socialNetwork-Pages-ecb070c1 .btn, .basicDetails-5d7f747e .btn, .PaymentTab-fb53e347 .btn, .settingsPage-d3b31cc7 .btn, .socialNetwork-330f6e4d .btn, .Co-brand-f75f52a1 .btn, .ThemePage-9f0c104d.btn{
  background-color: white;
  color: #1a73e8;
  border: 1.3px solid black;
  margin: 0px 10px;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

.basicDetails-5d7f747e .btn-container, .socialNetwork-330f6e4d .btn-container, .socialNetwork-Pages-7d6aeb30 .btn-container, .socialNetwork-Pages-b7c9defb .btn-container, .socialNetwork-Pages-87cc9d11 .btn-container, .socialNetwork-Pages-ecb070c1 .btn-container, .PaymentTab-fb53e347 .btn-container, .Co-brand-f75f52a1 .btn-container, .settingsPage-d3b31cc7 .btn-container, .ThemePage-9f0c104d.btn-container {
  width: fit-content;
  margin: 10px auto;
}

.products-Pages-6add77b1 .check-container, .products-Pages-c09438f3 .check-container, .socialLinks-1a95806b .check-container, .settingsPage-d3b31cc7 .check-container, .cardPage-fbaa7205 .check-container, .socialNetwork-Pages-7d6aeb30 .check-container, .socialNetwork-Pages-b7c9defb .check-container, .socialNetwork-Pages-87cc9d11 .check-container, .socialNetwork-Pages-ecb070c1 .check-container, .basicDetails-5d7f747e .check-container {
  display: flex;
  align-items: center;
  position: relative;
}

.settingsPage-d3b31cc7 #check, .basicDetails-5d7f747e #check {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 2px solid black;
  appearance: none;
  cursor: pointer;
  position: relative;
  background-color: #fff2f2;
  margin-bottom: 5px;
}

.settingsPage-d3b31cc7 .check-icon, .cardPage-fbaa7205 .check-icon, .basicDetails-5d7f747e .check-icon, .socialNetwork-Pages-7d6aeb30 .check-icon, .socialNetwork-Pages-b7c9defb .check-icon, .socialNetwork-Pages-87cc9d11 .check-icon, .socialNetwork-Pages-ecb070c1 .check-icon {
  font-size: 25px;
  color: transparent;
  position: absolute;
  right: 7px;
  top: 0px;
  pointer-events: none;
}

.basicDetails-5d7f747e #check:checked, .ThemePage-9f0c104d .yellow, .settingsPage-d3b31cc7 #check:checked {
  background-color: yellow;
}

.premiumCard-c59fb659 footer, .planPage-984c611a footer, .cardPage-fbaa7205 footer, .basicPlan-3f798e55 footer, .paymentPage-8a65842a footer {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: #0072ff;
  color: white;
  position: static;
  bottom: 0;
  width: calc(100% - 20px);
  border-radius: 4% 4% 0 0;
  overflow-x: auto;
}

.basicPlan-3f798e55 .container {
  width: 350px;
  margin: 10px auto;
}

.basicPlan-3f798e55 .basic-card {
  width: 300px;
  border: 2px solid blue;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
  margin: 10px auto;
}

.premiumCard-c59fb659 .header, .basicPlan-3f798e55 .header {
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 50px;
  background-color: #0072ff;
}

.premiumCard-c59fb659 .header h2, .basicPlan-3f798e55 .header h2 {
  margin: 0 auto;
}

.basicPlan-3f798e55 .dropdown, .premiumCard-c59fb659 .dropdown {
  font-size: 18px;
}

.basicPlan-3f798e55 .pricing-section {
  border: solid  1.3px black;
  background-color: #ffefad;
  text-align: center;
  padding: 5px;
  margin: 7px 0;
  border-radius: 5px;
}

.basicPlan-3f798e55 .features-list li:nth-child(odd),
.basicPlan-3f798e55 .bonus-section li:nth-child(odd) {
  background-color: #fef2f2;
}

.basicPlan-3f798e55 .pricing-section del, .basicPlan-3f798e55 .pricing-section span {
  color: #999;
  font-size: 22px;
}

.basicPlan-3f798e55 .pricing-section label {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  margin-right: 10px;
}

.basicPlan-3f798e55 .pricing-section strong {
  color: red;
  font-size: 24px;
  margin-right: 10px;
}

.basicPlan-3f798e55 .create-btn {
  /*background-color: #d91e18;*/
  background-color: #ffefad;
  color: red;
  font-weight: 600;
  width: 100%;
  padding: 10px;
  border: none;
  border: solid 1.3px black;
  border-radius: 5px;
  font-size: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-box-shadow: 2.5px 2px 0 0.3px #dddddd;
  -moz-box-shadow: 2.5px 2px 0 0.3px #dddddd;
  box-shadow: 2.5px 2px 0 0.3px #dddddd;
}

.socialNetwork-Pages-7d6aeb30 .chip-remove:hover, .socialNetwork-Pages-b7c9defb .chip-remove:hover, .socialNetwork-Pages-87cc9d11 .chip-remove:hover, .socialNetwork-Pages-ecb070c1 .chip-remove:hover, .ThemePage-9f0c104d .red {
  background-color: red;
}

.basicPlan-3f798e55 .features-list,
.basicPlan-3f798e55 .bonus-section ul {
  width: 85%;
  list-style: none;
  padding: 0;
  margin: 10px auto;
}

.basicPlan-3f798e55 .features-list li,
.basicPlan-3f798e55 .bonus-section ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.basicPlan-3f798e55 .bold {
  font-weight: bold;
}
/*Riddhi new css*/
.basicPlan-3f798e55 .checkmark {
  color: white;
  margin-right: 10px;
  border-radius: 50%;
  /*padding: 2px 4px;*/
  background-color: #2df12d;
  display: flex;
justify-content: center;
align-items: center;
height: 22px;
min-width:22px;
min-height:22px;
width: 22px;
}
/*.basicPlan-3f798e55 .checkmark {*/
/*  color: white;*/
/*  margin-right: 10px;*/
/*  border-radius: 50%;*/
/*  padding: 2px 4px;*/
/*  background-color: #2df12d;*/
/*}*/

.basicPlan-3f798e55 .cross {
  color: white;
  margin-right: 10px;
  border-radius: 50%;
  padding: 2px 5px;
  background-color: red;
}

.basicPlan-3f798e55 .warning {
  color: white;
  margin-right: 10px;
  border-radius: 50%;
  padding: 0.5px 2.5px;
  background-color: #ff9800;
}

.basicPlan-3f798e55 .bonus-section h4 {
  margin: 10px 0;
  color: #4b27c6;
}

.paymentPage-8a65842a .buttons, .basicPlan-3f798e55 .buttons, .planPage-984c611a .buttons {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.premiumCard-c59fb659 .pay-btn,  .Savedcard-2dr3d560 .pay-btn,.Savedcard-2dr3d561 .pay-btn, .planPage-984c611a .btn, .RegistrationPage-746606b2 .btn, .EmailOTP-2ae3d843 .next-btn, .phoneSignup-0832247f .next-btn, .basicPlan-3f798e55 .btn {
  background-color: #1a73e8;
  color: white;
  border: 1.3px solid #1a73e8;
  padding: 7px 10px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

.cardPage-fbaa7205 .heading {
  font-size: 20px;
  font-weight: 600;
  width: 95%;
  margin: 10px auto;
  border: 1.3px solid #000;
  border-radius: 10px;
  background-color: #e6f9ff;
  text-align: center;
}

.cardPage-fbaa7205 .card {
  position: relative;
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 5px;
  /*padding: 0 10px;*/
  border: 2px solid #000;
  border-radius: 20px;
  margin: 0px auto 8px auto;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
  gap: 3px;
}

.IconPage-ae0fad5c .container:hover, .cardPage-fbaa7205 .card:hover {
  background-color: #ccc;
}

.cardPage-fbaa7205 .card-middle {
  margin: 0 5px;
}

.cardPage-fbaa7205 h3 {
  margin: 0px 0px 0px 0px;
  font-size: 18px;
  /*font-size: 25px;*/
  font-weight: 600;
}

.cardPage-fbaa7205 .price {
  /*font-size: 16px;*/
  font-size: 14px;
  font-family: sans-serif;
  border: black solid 1.3px;
  border-radius: 13px;
  width: fit-content;
  padding: 5px 10px;
  margin: 0px;
  background-color: #e6f9ff;
}

.cardPage-fbaa7205 .current-price {
  font-size: 16px;
  /*font-size: 20px;*/
  font-weight: bold;
  color: red;
  margin-right: 7px;
}

.cardPage-fbaa7205 .card-left > i {
  font-size: 50px;
  /*margin-right: 10px;*/
}

.cardPage-fbaa7205 p {
  font-weight: 500;
  font-size: 12px;
  /*font-size: 15px;*/
  color: #333;
  margin: 1px 0 5px;
  /*margin: 5px 0;*/
  line-height: 1.3;
}

.cardPage-fbaa7205 #playBtn {
  font-size: 15px;
position: absolute;
top: 11px;
right: 5px;
  color: #333;
}

.cardPage-fbaa7205 .container{
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1.3px solid black;
  background-color: #e6f9ff;
  border-radius: 20px;
  margin: 5px auto;
  /*margin: 10px auto;*/
  padding:5px;
}

.cardPage-fbaa7205 .container .container-heading {
  font-weight: 600;
  font-size: 18px;
}

.cardPage-fbaa7205 .container .container-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 0px 10px;
  /*margin: 5px 10px;*/
}

.cardPage-fbaa7205 .container-row > i {
  font-size: 50px;
  margin: 0 20px;
}

.cardPage-fbaa7205 .container-content .box-card {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.cardPage-fbaa7205 .box-card .box {
  height: 40px;
  width: 40px;
  margin-bottom: 5px;
  border: solid 1.3px black;
  background-color: #ffff8e;
  border-radius: 5px;
}

.cardPage-fbaa7205 .box-card > label {
  font-size: 12px;
  font-weight: 700;
}

.products-Pages-6add77b1 .products-Pages-c09438f3 #check, .socialLinks-1a95806b #check, .cardPage-fbaa7205 #check {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 1.3px solid black;
  appearance: none;
  cursor: pointer;
  position: relative;
  background-color: #fff2f2;
  margin-bottom: 5px;
}

.socialLinks-1a95806b #check:checked, .cardPage-fbaa7205 #check:checked, .products-Pages-6add77b1 .products-Pages-c09438f3 #check:checked {
  background-color: lightyellow;
  border-color: black;
}

.PaymentTab-fb53e347 .desc-title, .socialNetwork-330f6e4d .desc-title, .Co-brand-f75f52a1 .desc-title {
  color: gray;
  text-align: left;
  margin-bottom: 8px;
}

.Co-brand-f75f52a1 .header-container {
    width: 100%;
    margin: 10px 5px;
    gap: 0px;
}

.Co-brand-f75f52a1 .header-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  margin-bottom: 10px !important;
  margin-right: 5px !important;
  padding: 5px !important;
  width: 51px;
  height: 45px;
}

.Co-brand-f75f52a1 .header-item i {
  font-size: 20px !important;
  color: #0072ff;
  cursor: pointer;
  margin-bottom: 5px;
}

.Co-brand-f75f52a1 .header-item label {
  color: #0072ff;
  font-size: 8px;
}

.ThemePage-9f0c104d p, .Co-brand-f75f52a1 .header-item-desc {
  font-size: 12px;
}

.Co-brand-f75f52a1 #all-label, .IconPage-ae0fad5c .container .content p {
  font-size: 18px;
}

.Co-brand-f75f52a1 #search-item {
  margin-bottom: auto;
}

.Co-brand-f75f52a1 #search-item button {
  background-color: #ffffdf;
}

.Co-brand-f75f52a1 .dividing-line {
  border-bottom: 2px solid gray;
}

.socialNetwork-330f6e4d .icons-container, .Co-brand-f75f52a1 .icons-container, .gallery-0999fc63 .catalogue-icons,.gallary-3sd452221 .catalogue-icons, .settingsPage-d3b31cc7 .icons-container, .socialLinks-1a95806b .social-link-actions, .PaymentTab-fb53e347 .icons-container {
  display: flex;
  gap: 10px;
}

.Co-brand-f75f52a1 .icons-container img, .PaymentTab-fb53e347 .icons-container img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border: 1.3px solid black;
  margin: 0 5px;
}

.Co-brand-f75f52a1 .save {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #009e3a;
  color: white !important;
  font-size: 30px;
}

.Co-brand-f75f52a1 .share {
  font-size: 30px;
  color: #0072ff !important;
}

.Co-brand-f75f52a1 #network {
  font-size: 23px;
  color: #0072ff;
}

.Co-brand-f75f52a1 .card .img-btn-container {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  margin-right: 15px;
}

.Co-brand-f75f52a1 .card .btn-container i {
  cursor: pointer;
  border: 1px solid black;
  padding: 5px;
}

.Co-brand-f75f52a1 #phone-icon {
  border-radius: 50%;
  font-size: 18px;
}

.Co-brand-f75f52a1 #whatsapp-icon {
  background-color: #25d366;
  border-radius: 2px;
  border-color: #25d366;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.Co-brand-f75f52a1 #phone-icon:hover {
  color: gray;
  border-color: var(--div-background-color);
}

.Co-brand-f75f52a1 #whatsapp-icon:hover {
  color: gray;
  background-color: var(--div-background-color);
  border-color: var(--div-background-color);
}

.Co-brand-f75f52a1 .sparkle-icon {
  position: absolute;
  color: gray;
  right: 12%;
  top: 3%;
  font-size: 35px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  cursor: pointer;
}

.Co-brand-f75f52a1 .sparkle-icon.red {
  color: red;
}

.Co-brand-f75f52a1 .sparkle-icon.green {
  color: green;
}

.home-56785 .ads, .phoneSignup-0832247f .ads, .resetPassword-08026927 .ads,.Local_Socia_Network-2ae3d844 .ads, .EmailOTP-2ae3d843 .ads,.sample .ads, .exploreCards-basePage-3ce41a37, .exploreCards-basePage-3ce41a37 .ads ,.exploreCards-listPage-e1d02d07 .ads , .Stats-and-genereal-Dashboard-00a6e9dc .ads , .Savedcard-2dr3d561 .ads, .cards-display-yh8n78ft .ads{
    padding: 5px 5px 0px 5px;
    overflow: hidden;
    white-space: nowrap;
}

    
.ads .slider{
    display: inline-block;
    animation: slide-to-left 10s linear infinite;
}


@keyframes slide-to-left {
    from{ 
        transform: translateX(0%)
    }
    to{ 
        transform: translateX(-100%) 
    }
}

.ads:hover .slider {
    animation-play-state: paused;
}

.ads .slider img{
    /*pointer-events: auto; */
    width: 220px;
    height: 100px;
    margin: 0px;
    cursor: pointer;
}


.EmailOTP-2ae3d843 .form-container, .phoneSignup-0832247f .form-container {
  width: 80%;
  max-width: 400px;
  padding: 20px;
  border: 1.3px solid black;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px auto;
}

.phoneSignup-0832247f h2, .resetPassword-08026927 h1, .EmailOTP-2ae3d843 h2, .resetPassword-08026927 h2 {
  font-size: 16px;
  margin-bottom: 5px;
  margin-top: 5px;
  color: #333;
  text-align: left;
}

.form-container .form-container-label, .form-container .form-container-error{
    margin: 0px;
}

.form-container .form-container-error{
    margin-bottom: 7px;
}

.resetPassword-08026927 input[type="text"],
.resetPassword-08026927 input[type="password"], .EmailOTP-2ae3d843 input[type="text"],
.EmailOTP-2ae3d843 input[type="password"], .phoneSignup-0832247f input[type="text"],
.phoneSignup-0832247f input[type="password"] {
  width: 90%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1.3px solid black;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.resetPassword-08026927 input[type="text"]::placeholder,
.resetPassword-08026927 input[type="password"]::placeholder, .EmailOTP-2ae3d843 input[type="text"]::placeholder,
.EmailOTP-2ae3d843 input[type="password"]::placeholder, .phoneSignup-0832247f input[type="text"]::placeholder,
.phoneSignup-0832247f input[type="password"]::placeholder {
  font-size: 17px;
  color: #999;
}

.phoneSignup-0832247f .otp-resend, .EmailOTP-2ae3d843 .otp-resend {
  text-align: left;
  margin-bottom: 20px;
  gap: 5px;
}

.EmailOTP-2ae3d843 .otp-resend a, .phoneSignup-0832247f .otp-resend a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.EmailOTP-2ae3d843 .signup-btn:hover, .EmailOTP-2ae3d843 .otp-resend a:hover, .premiumCard-c59fb659 .signup-btn:hover, .phoneSignup-0832247f .signup-btn:hover, .premiumCard-c59fb659 .links a:hover, .phoneSignup-0832247f .otp-resend a:hover {
  color: #066ef5;
  text-decoration: underline;
}

.phoneSignup-0832247f .buttons, .resetPassword-08026927 .buttons, .premiumCard-c59fb659 .buttons, .EmailOTP-2ae3d843 .buttons,.Savedcard-2dr3d560 .buttons,.Savedcard-2dr3d561 .buttons, .RegistrationPage-746606b2 .buttons {
  display: flex;
  justify-content: space-between;
}

.EmailOTP-2ae3d843 .signup-btn,.Savedcard-2dr3d560 .signup-btn ,.Savedcard-2dr3d561 .signup-btn , .premiumCard-c59fb659 .signup-btn, .phoneSignup-0832247f .signup-btn {
  background: none;
  border: none;
  color: #1a73e8;
  font-size: 16px;
  cursor: pointer;
}

.EmailOTP-2ae3d843 .signup-btn a,.Savedcard-2dr3d560 .signup-btn a, .Savedcard-2dr3d561 .signup-btn a{
    color: #1a73e8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.gallery-0999fc63 .catalogue-card,.gallary-3sd452221 .catalogue-card {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  margin: 15px auto;
}

.gallery-0999fc63 .catalogue-card:hover {
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

.gallery-0999fc63 .catalogue-header , .gallary-3sd452221 .catalogue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  padding: 0 10px;
  border-radius: 10px;
  margin: 5px;
}

.gallary-3sd452221 .catalogue-header h2{
    margin: 10px 0px;
}

.gallery-0999fc63 .catalogue-title {
  font-size: 20px;
  color: #333;
  font-weight: bold;
}

.gallery-0999fc63 .catalogue-images {
  display: flex;
  padding: 10px;
  position: relative;
  overflow-x: auto;
}

.gallery-0999fc63 .catalogue-images img {
  width: 50%;
  height: 100px;
  border-radius: 5px;
  object-fit: cover;
  margin-left: -120px;
  border: white 1.3px solid;
  z-index: 1;
}

.gallery-0999fc63 .catalogue-images img:first-child {
  margin-left: 0;
  z-index: 6;
}

.gallery-0999fc63 .catalogue-images img:nth-child(2) {
  z-index: 5;
}

.gallery-0999fc63 .catalogue-images img:nth-child(3) {
  z-index: 4;
}

.gallery-0999fc63 .catalogue-images img:nth-child(4) {
  z-index: 3;
}

.gallery-0999fc63 .catalogue-images img:nth-child(5) {
  z-index: 2;
}

.gallery-0999fc63 .catalogue-images img:last-child {
  z-index: 1;
}

.gallery-0999fc63 #lock, .videoPages-Pages-3fef54c1 #lock, .PaymentTab-fb53e347 #lock, .socialNetwork-330f6e4d #lock, .videoPages-8c76f39f #lock {
  font-size: 25px;
  color: #ffa4a4;
  margin-bottom: 10px;
}

.gallery-0999fc63 #eye , .gallary-3sd452221 #eye {
  font-size: 25px;
  color: #5271ff;
  margin-bottom: 10px;
  color: black;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

.gallery-0999fc63 .catalogue-icons > i:hover {
  color: gray !important;
  cursor: pointer;
}

.gallery-0999fc63 .header-btn-clicked,.gallary-3sd452221 .header-btn-clicked, .videoPages-Pages-3fef54c1 .header-btn-clicked, .products-Pages-6add77b1 .header-btn-clicked, .products-Pages-c09438f3 .header-btn-clicked, .products-9f521fcc .header-btn-clicked, .videoPages-8c76f39f .header-btn-clicked {
  background-color: #ffffaa !important;
}

.products-9f521fcc .p-pointing-class, .products-9f521fcc .p-pointing-class p{
    margin: 0px;
}

.videoPages-Pages-3fef54c1 #heading-btn-row, .products-9f521fcc #heading-btn-row, .gallery-0999fc63 #heading-btn-row,.gallary-3sd452221 #heading-btn-row,.gallary-3sd452221 #heading-btn-col , .videoPages-8c76f39f #heading-btn-col, .videoPages-8c76f39f #heading-btn-row, .gallery-0999fc63 #heading-btn-col, .products-Pages-6add77b1 .products-Pages-c09438f3 #heading-btn-col, .products-Pages-6add77b1 .products-Pages-c09438f3 #heading-btn-row, .videoPages-Pages-3fef54c1 #heading-btn-col, .products-9f521fcc #heading-btn-col {
  margin: 0;
  padding: 3px 10px;
}

.videoPages-8c76f39f #heading-btn-col p:first-child, .gallery-0999fc63 #heading-btn-col p:first-child,.gallary-3sd452221 #heading-btn-col p:first-child,.products-9f521fcc #heading-btn-col p:first-child, .videoPages-Pages-3fef54c1 #heading-btn-col p:first-child, .products-Pages-6add77b1 .products-Pages-c09438f3 #heading-btn-col p:first-child {
  font-size: 22px;
}

.gallery-0999fc63 #heading-btn-col p, .gallery-0999fc63 #heading-btn-row p,.gallary-3sd452221 #heading-btn-row p,.gallary-3sd452221 #heading-btn-col p, .products-Pages-6add77b1 .products-Pages-c09438f3 #heading-btn-row p, .products-Pages-6add77b1 .products-Pages-c09438f3 #heading-btn-col p, .products-9f521fcc #heading-btn-col p, .products-9f521fcc #heading-btn-row p {
  margin: 4px auto;
  font-size: 13px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .mt-0 {
  margin-top: 0 !important;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .mt-50 {
  margin-top: 50px !important;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .img-container {
  width: 95%;
  margin: 10px auto;
  position: relative;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .img-container img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  border: 1.3px silver solid;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .img-container i {
  font-size: 25px;
  cursor: pointer;
  color: gray;
  margin-left: 10px;
  position: absolute;
  top: 5%;
  right: 2%;
  padding: 5px 10px;
  background-color: rgba(255, 246, 246, 0.5);
  border-radius: 10px;
}

.socialNetwork-Pages-7d6aeb30 .desc-title, .socialNetwork-Pages-b7c9defb .desc-title, .socialNetwork-Pages-87cc9d11 .desc-title, .socialNetwork-Pages-ecb070c1 .desc-title, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .desc-title 
{
  text-align: left;
  margin-top: 20px;
  color: gray;
}

.videoPages-Pages-3fef54c1 .type2, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .type2 {
  min-height: 100px;
  width: 94%;
  padding: 5px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1.3px solid black;
  resize: none;
  overflow: auto;
}

.videoPages-Pages-3fef54c1 #cv_url{
    height: 40px;
    min-height: unset;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #edit 
{
  font-size: 22px;
  color: #0072ff;
  margin-bottom: 10px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #delete {
  font-size: 22px;
  color: red;
  margin-bottom: 10px;
}


.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #delete:hover, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .catalouge-name i:hover, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #edit:hover {
  color: gray;
  cursor: pointer;
}

.gallery-Pages-e8165973 .catalouge-name div ,.gallary-3sd452221 .catalouge-name div  {
    width: -webkit-fill-available;
    text-align: center;
    border: 1.4px solid black;
    border-radius: 10px;
    padding: 5px;
    margin: 10px 5px;
}

.gallery-Pages-e8165973 .catalouge-desc {
  text-align: center;
  width: 95%;
  margin: 0px auto 10px auto;
}

.gallery-Pages-e8165973 .catalouge-desc p{
    margin: 0px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .catalouge-desc p {
  font-size: 13px;
  font-weight: 600;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .catalouge-desc .delete-warning {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.gallery-Pages-e8165973 .img-container-grid
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 10px auto;
}

.gallery-Pages-e8165973 .img-container-grid .img-container-div , .gallary-3sd452221 .img-container-div {
  width: 120px;
  height: 120px;
  border: 1.3px transparent;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-Pages-e8165973 .img-container-grid .img-container-div  img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-Pages-e8165973 .img-container-grid .img-container-div .icon-container , .gallary-3sd452221 .img-container-div .icon-container {
  position: absolute;
  top: 5%;
  right: 5%;
  background-color: rgba(255, 246, 246, 0.5);
  padding: 5px 7px;
  border-radius: 10px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .btn {
  background-color: white;
  color: #1a73e8;
  border: 1.3px solid black;
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #heading-btn-row, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #heading-btn-row i, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #heading-btn-row p {
  margin: 0px;
  font-size: 13px;
  color: gray;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #heading-btn-row .new-img-p {
  width: 60px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d #heading-btn-row i {
  font-size: 20px;
}

.gallery-Pages-e8165973 .header-btn-container , .gallary-3sd452221 .header-btn-container{
  border: 1.3px solid black;
  border-radius: 5px;
  padding: 0 10px;
}

.gallary-3sd452221 .header-btn-container{
    padding: 0px 5px;
}

.gallery-Pages-e8165973 .buttons p{
    margin: 0px;
}

.gallery-Pages-e8165973 #heading-btn-row{
    padding: 3px 5px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .header-btn-container:hover {
  background-color: gray;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .header-btn-container label {
  font-size: 13px;
  color: gray;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .header-btn {
  padding: 0px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .jc-sa {
  justify-content: space-around;
  align-items: center;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .jc-sa p {
  font-size: 18px;
  color: #393939;
  margin: 0px;
}

.gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .jc-sa i {
  margin-top: 10px;
}

ul, li {
  margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.menu-icon {
  font-size: 35px;
    color: white;
    cursor: pointer;
    margin-left: auto;
}

.menu-icon:hover {
  color: rgb(171, 171, 171);
}

.sidebar {
  display: relative;
    padding: 0px 10px;
}

.circle {
  width: 30px;
    height: 30px;
    background-color: #00b894;
    border-radius: 50%;
}

.sidebar #position-1 {
  position: absolute;
    top: 65px;
}

.sidebar #position-2 {
  position: absolute;
    top: 103px;
}

.sidebar #position-3 {
  position: absolute;
    top: 145px;
}

.sidebar #position-4 {
  position: absolute;
    top: 187px;
}

.sidebar #position-5 {
  position: absolute;
    top: 230px;
}

.sidebar #position-6 {
  position: absolute;
    top: 273px;
}

.sidebar #position-7 {
  position: absolute;
    top: 315px;
}

.sidebar #position-8 {
  position: absolute;
    top: 355px;
}

.sidebar #position-9 {
  position: absolute;
    top: 395px;
}

.menu-options {
  width: 80%;
    border: 2px solid black;
    border-radius: 10px;
    -webkit-box-shadow: 4px 4px 1px 3px #dddddd;
    -moz-box-shadow: 4px 4px 1px 3px #dddddd;
    box-shadow: 4px 4px 1px 3px #dddddd;
}

.menu-options ul {
  list-style: none;
    padding: 20px;
    margin: auto;
}

.menu-options ul li {
  padding: 10px 0;
    border-bottom: 1px solid black;
    text-align:right;
    font-size: 17px !important;
    font-weight: bold;
}

.menu-options ul li:hover {
  color: rgb(23, 166, 255);
    cursor: pointer;
}

.menu-options ul li:last-child {
  border-bottom: none;
}

.save-card {
  color: red;
    font-weight: bold;
}

.IconPage-ae0fad5c .card-container {
  width: 90%;
  margin: auto;
  padding: 20px;
}

.IconPage-ae0fad5c .container {
  width: 80%;
  margin: 50px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border: black 2px solid;
  border-radius: 20px;
  -webkit-box-shadow: 3.5px 4px 0 3px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 3px #dddddd;
  box-shadow: 3.5px 4px 0 3px #dddddd;
}

.videoPages-8c76f39f #heading-btn-row i, .IconPage-ae0fad5c .container > i, .videoPages-Pages-3fef54c1 #heading-btn-row i {
  font-size: 50px;
}

.IconPage-ae0fad5c .container .content {
  width: 80%;
  text-align: left;
  margin-left: 15px;
}

.paymentPage-8a65842a .container {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  border: 3px #2453ff solid;
  border-radius: 10px;
}

.paymentPage-8a65842a .container p {
  font-size: 16px;
  font-weight: 600;
}

.paymentPage-8a65842a .container img {
  width: 200px;
  height: 200px;
}

.paymentPage-8a65842a .container i {
  font-size: 80px;
  color: gray;
  margin-bottom: 30px;
}

.paymentPage-8a65842a .btn {
  background-color: #1a73e8;
  color: white;
  border: 1.3px solid black;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

.paymentPage-8a65842a .btn:hover {
  background-color: white;
  color: #1a73e8;
  box-shadow: none;
}

.PaymentTab-fb53e347 #img-upload {
  color: gray;
  font-size: 100px;
  margin: 10px auto 10px 10px;
}

.socialNetwork-330f6e4d .network-container, .PaymentTab-fb53e347 .network-container {
  border: 1.3px solid black;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 5px;
}

.PaymentTab-fb53e347 .network-container p, .socialNetwork-330f6e4d .network-container p {
  color: gray;
  font-size: 17px;
  margin: 0;
}

.socialNetwork-330f6e4d #play, .videoPages-Pages-3fef54c1 #play, .PaymentTab-fb53e347 #play, .videoPages-8c76f39f #play {
  font-size: 40px;
  color: #5271ff;
  margin-bottom: 10px;
  color: white;
  border-radius: 50%;
  background-color: red;
  padding: 10px;
  padding-right: 15px;
}

.planPage-984c611a .icon-container {
  height: 688px;
  /*height: 570px;*/
  width: 35px;
  border: 1.3px solid black;
  border-radius: 5px;
  background-color: #fffae6;
  position: absolute;
  z-index: -1;
}

.planPage-984c611a table{
    font-size: 13px;
    border-collapse: collapse;
}

.planPage-984c611a table tr:first-child .icon-box 
{
    border: 1px solid black;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}
.planPage-984c611a table tr:nth-child(15) .icon-box 
{
    border: 1px solid black;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.planPage-984c611a table tr:last-child .icon-box
{
     border: 1px solid black;
    border-top: none;
    border-radius: 0 0 5px 5px;
}
.planPage-984c611a table tr:nth-child(13) .icon-box
{
     border: 1px solid black;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.planPage-984c611a table tr .icon-box
{
    border-left:  1px solid black;
    border-right:  1px solid black;
}

.planPage-984c611a .inset-background {
  position: relative;
}

.planPage-984c611a .position-1.box-1 {
  /*inset: 5px 10px;*/
  inset: 190px 165px;
}
.planPage-984c611a .position-1.box-2 {
  /*inset: 5px 10px;*/
  inset: 190px 224px;
}
.planPage-984c611a .position-1.box-3 {
  /*inset: 5px 10px;*/
  inset: 190px 283px;
}
.planPage-984c611a .position-1.box-4 {
  /*inset: 5px 10px;*/
  inset: 190px 341px;
}

.planPage-984c611a .position-2.box-1 {
  height: 255px;
  inset: 956px 165px;
  /*inset: 5px 10px;*/
}
.planPage-984c611a .position-2.box-2 {
  height: 255px;
  inset: 956px 224px;
  /*inset: 5px 10px;*/
}
.planPage-984c611a .position-2.box-3 {
  height: 255px;
  inset: 956px 283px;
  /*inset: 5px 10px;*/
}
.planPage-984c611a .position-2.box-4 {
  height: 255px;
  inset: 956px 341px;
  /*inset: 5px 10px;*/
}

.planPage-984c611a .pricing-table {
  width: 95%;
  max-width: 1000px;
  border-collapse: collapse;
  margin: 0px auto;
  position: relative;
}

.planPage-984c611a .pricing-table td,
.planPage-984c611a .pricing-table th {
  padding: 5px;
  text-align: center;
  /*height: 30px;*/
}

.planPage-984c611a .pricing-table th {
  color: white;
}

.planPage-984c611a .comparison-header {
  text-align: center;
  background-color: #fffae6;
  font-size: 15px;
  color: #d91e18;
  border: 1px solid black;
  border-radius: 10px;
  height: 172px;
min-height: fit-content;
display: flex;
align-items: center;
justify-content: center;
}

.planPage-984c611a .flip {
  width: 15px;
  height: 160px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  background-color: #537ce5;
  border: 1px solid #537ce5;
  border-radius: 5px;
  padding: 5px;
  font-size: 16px;
  margin: 0px;
  /*margin: 0 10px;*/
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.planPage-984c611a .flip label {
  display: inline-block;
}

.planPage-984c611a .flip span {
  margin-left: auto;
}

.planPage-984c611a tbody td:first-child,
.planPage-984c611a tfoot td:first-child {
  text-align: left;
  font-weight: bold;
}

.planPage-984c611a tfoot tr td {
  font-weight: bold;
  background-color: #f0f0f0;
  width: 30px;
}

.planPage-984c611a .checkmark {
  color: white;
  /*font-size: 15px;*/
  font-size: 19px;
  width:22px;
  height:22px;
  border-radius: 50%;
  padding: 0px;
  /*padding: 2px 4px;*/
  background-color: #2df12d;
  margin: 0px;
  /*margin: 0 10px;*/
  display:flex;
  align-items:center;
  justify-content:center;
  
}

.planPage-984c611a .cross {
  /*color: white;*/
  /*border-radius: 50%;*/
  /*font-size: 15px;*/
  padding: 0px !important;
  /*padding: 2px 4px;*/
  /*background-color: red;*/
  margin: 0px !important;
  /*margin: 0 10px;*/
  width:22px !important;
  height:22px !important;
}

.planPage-984c611a .warning {
  color: white;
  border-radius: 50%;
  font-size: 15px;
  padding: 2.5px 4px;
  background-color: #ff9800;
  margin: 0 10px;
}

.planPage-984c611a .btn-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.planPage-984c611a .btn {
  background-color: #537ce5;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.planPage-984c611a .btn:hover {
  background-color: #405d9e;
}

.planPage-984c611a .pricing-table .bonus {
  font-weight: bold;
  color: blue;
  font-size: 16px;
}



.premiumCard-c59fb659 .container {
  width: 350px;
  margin: 10px auto;
  text-align: center;
  color: gray;
  font-size: 14px !important;
}

.premiumCard-c59fb659 .bold {
  font-weight: 600;
  color: black;
}

.premiumCard-c59fb659 .semibold p {
  margin: 5px;
  font-size: 16px;
}

.premiumCard-c59fb659 .basic-card {
  width: 300px;
  border: 2.5px solid blue;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
  margin: 10px auto;
}

.premiumCard-c59fb659 .dividing-line {
  width: 100%;
  margin: 5px auto;
  border: 1px black solid;
}

.premiumCard-c59fb659 .box {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin: 0 auto;
  gap: 1px;
}

.premiumCard-c59fb659 .box button {
  height: 30px;
  width: 30px;
  font-size: 20px;
  color: white;
  background-color: #537ce5;
  border: none;
}

.premiumCard-c59fb659 .box button:hover {
  background-color: #3861d3;
}

.premiumCard-c59fb659 .box > div {
  text-align: center;
  height: 30px;
  margin: 0;
}

.premiumCard-c59fb659 .box > div p {
  margin: 0px;
}


.premiumCard-c59fb659 .corporate-card-select-menu{
  width: 70%;
  background-color: white;
  border: 1.3px black solid;
  margin: 0px auto;
  color: gray;
  font-size: 20px;
  font-weight: 900;
  padding: 10px;
  border-radius: 8px;
}

.premiumCard-c59fb659 .links {
  text-align: left;
  color: #1a73e8;
  font-size: 16px;
  cursor: pointer;
  margin: 10px 0;
}

.premiumCard-c59fb659 .links {
  text-align: left;
  color: #1a73e8;
  font-size: 16px;
  cursor: pointer;
  margin: 2px 0;
  display:flex;
  align-items: center;
  max-width:200px;
}

.premiumCard-c59fb659 .links a{
  font-weight:580;
  text-decoration: none;
}

.premiumCard-c59fb659 .links span {
  border: 1.3px red solid;
  padding: 4px 10px;
  border-radius: 50%;
  color: red;
  font-size: 16px;
  font-weight: bold;
  margin-right: 5px;
}

.premiumCard-c59fb659 .popup {
  position: fixed;
  top: 27.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 10px;
  display: none;
  z-index: 1000;
}

.premiumCard-c59fb659 .yellow {
  background-color: #ffffc2;
}

.premiumCard-c59fb659 .content {
  margin-left: 10px;
  text-align: left;
  font-size: 16px;
  color: blue;
}

.premiumCard-c59fb659 .coupon-input {
  width: 150px;
  padding: 5px;
  border-radius: 5px;
}

.premiumCard-c59fb659 .row-sb {
  justify-content: center;
}

.premiumCard-c59fb659 .row-sb p {
  font-size: 16px;
  color: blue;
  margin-right: 10px;
}

.premiumCard-c59fb659 .blue {
  font-size: 16px;
  color: blue;
}

.premiumCard-c59fb659 .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.premiumCard-c59fb659 #apply {
  margin-left: 150px;
}

.products-9f521fcc .card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 10px auto;
}

.products-9f521fcc .card-container-scroll{
 display: flex;
 flex-direction: row;
 gap: 5px;
 overflow-x: auto;
}

.products-9f521fcc .card-container-scroll .card{
    width: 45%;
}

.products-9f521fcc .card, .products-Pages-6add77b1 .card, .products-Pages-c09438f3 .card {
  width: 90%;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 7px;
  background-color: white;
  margin: 5px 0px;
  position: relative;
  flex-shrink: 0;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

.products-Pages-6add77b1 .card-header, .products-Pages-c09438f3 .card-header, .products-9f521fcc .card-header {
  margin-bottom: 2px;
}


.products-9f521fcc .card-description, .products-Pages-6add77b1 .card-description, .products-Pages-c09438f3 .card-description, .card-header > * {
  font-size: 14px;
  color: #555;
  text-overflow: ellipsis;
  margin: 3px 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.products-9f521fcc .card-image, .products-Pages-6add77b1 .card-image, .products-Pages-c09438f3 .card-image {
    width: 100%;
    height: 150px;
    text-align: center;
    object-fit: fill;
    margin-bottom: 10px;
    margin-top: 10px;
}

.products-9f521fcc .image, .products-Pages-6add77b1 .image, .products-Pages-c09438f3 .image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.products-9f521fcc .card-price, .products-Pages-6add77b1 .card-price, .products-Pages-c09438f3 .card-price {
  font-size: 18px;
  color: #d62828;
  font-weight: 500;
  text-align: left;
}


.products-9f521fcc .card-title, .products-Pages-6add77b1 .card-title, .products-Pages-c09438f3 .card-title {
  font-size: 18px;
  color: #e63946;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
}

.products-9f521fcc .card-price p, .products-Pages-6add77b1 .card-price p, .products-Pages-c09438f3 .card-price p {
  margin: 2px 0px 10px 0px !important;
}

.products-9f521fcc .card-controls, .products-Pages-6add77b1 .card-controls, .products-Pages-c09438f3 .card-controls {
  display: flex;
  justify-content: space-around;
}

.products-9f521fcc .card-controls i, .products-Pages-1e343335 i{
    font-size: 25px !important;
}

.products-Pages-6add77b1 .icon, .products-Pages-c09438f3 .icon, .products-9f521fcc .icon {
  cursor: pointer;
  font-size: 18px;
}

.products-9f521fcc #edit,.products-Pages-1e343335 #edit, .products-Pages-6add77b1 .products-Pages-c09438f3 #edit {
  font-size: 20px;
  color: #0072ff;
  margin-bottom: 10px;
}

.products-Pages-6add77b1 .dropdown, .products-Pages-c09438f3 .dropdown, .products-9f521fcc .dropdown {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #555;
}

.products-Pages-6add77b1 .products-Pages-c09438f3 #catalouge-header {
  width: 70%;
  text-align: left;
  padding-left: 20px;
  margin: 10px 0;
}

.products-Pages-6add77b1 .products-Pages-c09438f3 #catalouge-header label {
  font-size: 18px;
  font-weight: 400;
}

.products-Pages-6add77b1 .btn-check-container, .products-Pages-c09438f3 .btn-check-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.products-Pages-6add77b1 .products-Pages-c09438f3 #img-upload {
  font-size: 100px;
}

.products-Pages-6add77b1 .additional-img-box, .products-Pages-c09438f3 .additional-img-box {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  gap: 5px;
  overflow-x: auto;
}

.products-Pages-6add77b1 .eg-link, .products-Pages-c09438f3 .eg-link {
  color: gray;
  margin-left: 10px;
  font-size: 13px;
}

/*.socialLinks-1a95806b .check-icon*/
.products-Pages-6add77b1 .check-icon, .products-Pages-c09438f3 .check-icon {
  font-size: 25px !important;
  color: transparent;
  position: absolute;
  right: 7px;
  top: 0px;
  pointer-events: none;
}

.products-Pages-6add77b1 .products-Pages-c09438f3 #enquiry-btn {
  padding: 8px 10px;
  border-radius: 5px;
  background-color: white;
  color: #1a73e8;
  border: solid 1.3px black;
  cursor: pointer;
  box-shadow: none;
  margin-top: 0px;
}

.products-Pages-6add77b1 .card-container, .products-Pages-c09438f3 .card-container {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  gap: 10px;
  overflow-x: auto;
  margin: 10px auto;
}

.products-Pages-6add77b1.buttons, .products-Pages-c09438f3.buttons, .ThemePage-9f0c104d.buttons{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  padding: 0 10px;
  margin: 20px 0px;
}

.RegistrationPage-746606b2 .form-container {
  width: 85%;
  margin: 0 auto;
  max-width: 600px;
  background-color: white;
  padding: 20px;
}

.RegistrationPage-746606b2 .dividing-line {
  border-bottom: #ccc 2px solid;
  margin: 10px 0;
}

.RegistrationPage-746606b2 .form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}

.RegistrationPage-746606b2 .form-group {
  flex: 1;
  margin-bottom: 15px;
}

.RegistrationPage-746606b2 .ref-btn-container {                      
    flex: none;
    width: fit-content;
    height: auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.RegistrationPage-746606b2 .form-group .contact-otp-popup-container
{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80%;
  margin-left: auto;
}

.RegistrationPage-746606b2 .form-group .contact-otp-popup-container .otp-popup-btn-container
{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 87px;
}

.RegistrationPage-746606b2 .profile-pic {
  flex: 0 0 80px;
  text-align: center;
  margin: 0 auto;
}

.RegistrationPage-746606b2 .pic-placeholder {
  width: 100px;
  height: 100px;
  border: 1.3px solid black;
  border-radius: 5px;
}

.RegistrationPage-746606b2 label {
  font-size: 16px;
  color: #333;
  display: block;
  margin-bottom: 0px;
}

.RegistrationPage-746606b2 input[type="text"],
.RegistrationPage-746606b2 input[type="email"],
.RegistrationPage-746606b2 input[type="password"] {
  width: 80%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  border: black 1.3px solid;
}

.RegistrationPage-746606b2 input[type="text"]::placeholder,
.RegistrationPage-746606b2 input[type="email"]::placeholder,
.RegistrationPage-746606b2 input[type="password"]::placeholder {
  color: #aaa;
}

.RegistrationPage-746606b2 #email-id {
  width: 275px;
}

.RegistrationPage-746606b2 .not-verified {
  color: red;
  font-size: 12px;
  margin-left: 150px;
}

.RegistrationPage-746606b2 .verified {
  color: green;
  font-size: 12px;
  margin-left: 100px;
}

.RegistrationPage-746606b2 .refresh-btn {
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

.RegistrationPage-746606b2 .refresh-btn:hover {
  background-color: #a5ccff;
}

.resetPassword-08026927 .form-container {
  width: 80%;
  max-width: 400px;
  padding: 0 20px 20px 20px;
  border: 1.3px solid black;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 150px auto;
}

.resetPassword-08026927 h1 {
  font-size: 27px;
}

.resetPassword-08026927 .btn {
  background-color: white;
  color: #1a73e8;
  border: 1.3px solid black;
  margin: 10px 0;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
}

.settingsPage-d3b31cc7 .container-2 #text-area {
  margin-left: 15px;
  width: 87%;
}

.settingsPage-d3b31cc7 .container-3 #text-area {
  margin: 5px 0;
}

.settingsPage-d3b31cc7 .link {
  color: #0072ff;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.settingsPage-d3b31cc7 .input-title-label {
  width: 90%;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 0px;
}

.settingsPage-d3b31cc7 .btns {
  margin: 10px auto;
}

.socialLinks-1a95806b .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.socialLinks-1a95806b .social-link-form {
  background-color: var(--div-background-color);
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1.3px solid black;
  width: 94%;
}

.socialLinks-1a95806b #social-link-url {
  width: 94%;
}

.socialLinks-1a95806b .social-link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1.3px solid black;
  border-radius: 8px;
  margin-bottom: 15px;
  width: 94%;
}

.socialLinks-1a95806b .social-link-logo i {
  font-size: 25px;
  color: #4267b2;
  margin-right: 10px;
}

.socialLinks-1a95806b .social-link-details {
  margin-bottom: 10px;
  overflow-x: auto;
}

.socialLinks-1a95806b .social-link-details:hover {
  text-decoration: underline;
  color: #0072ff;
}

.socialLinks-1a95806b .delete-btn, .socialLinks-1a95806b .edit-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.settingsPage-d3b31cc7 .icons-container .edit-btn{
    background-color: inherit;
    font-size: 25px; 
    border:none; 
}

.socialLinks-1a95806b .allow-option label {
  margin-left: 10px;
  font-size: 14px;
}

.check-container input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid rgb(104 64 97);
  padding: 10px;
  cursor: pointer;
  border-radius: 20%;
}

.check-container input[type="checkbox"]:checked {
  background-color: #ffffcf;
  /*background-color: yellow;*/
}

.check-container input[type="checkbox"]::after {
  content: '\2713';
  /*display: block;*/
  color: green;
  text-align: center;
  font-size: 20px;
  font-weight:900;
  /*margin: 0 4px 0 3px;*/
  /*font-size:20px;*/
  /*content: "";*/
  position: absolute;
  display: none;
  left: 0px;
  top: -1px;
  width: 20px;
  height: 20px;
  transition: background 250ms;
  /*background-color:white !important;*/
  /*background-color: #5371FF;*/
  /*background-color: #22FF00;*/
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.check-container input[type="checkbox"]:checked::after{
    display:block;
}

/*.cr-wrapper input[type="checkbox"] ~ .cr-input::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  display: none;*/
/*  left: 2px;*/
/*  top: 2px;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  transition: background 250ms;*/
/*  background-color: #22FF00;*/
/*  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);*/
/*}*/


.socialLinks-1a95806b .save_next_btn {
  padding: auto 0px;
}

.socialNetwork-Pages-7d6aeb30 .ta-left, .socialNetwork-Pages-b7c9defb .ta-left, .socialNetwork-Pages-87cc9d11 .ta-left, .socialNetwork-Pages-ecb070c1 .ta-left {
  text-align: left !important;
  background-color: var(--div-background-color) !important;
}

.socialNetwork-Pages-7d6aeb30 .red,.socialNetwork-330f6e4d .red, .homePage-51ea6cf0 .red, .socialNetwork-Pages-b7c9defb .red,.gallery-Pages-1378e22d .red,.ThemePage-9f0c104d .red, .socialNetwork-Pages-87cc9d11 .red, .socialNetwork-Pages-ecb070c1 .red {
  color: red !important;
}

.socialNetwork-330f6e4d .red{
    margin: 0px;
}

 .homePage-51ea6cf0  .red-box-element{
    background-color:#B20101;
}

.ThemePage-9f0c104d .container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 7px 10px; 
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 3px 0px;
}

.ThemePage-9f0c104d .numbers {
  font-size: 16px;
}

.ThemePage-9f0c104d .color-boxes {
  display: flex;
  gap: 5px;
  margin-right: 10px;
}

.ThemePage-9f0c104d .color-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.ThemePage-9f0c104d .picker-section {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.ThemePage-9f0c104d .custom-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ThemePage-9f0c104d .custom-radio input[type="radio"] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}

.ThemePage-9f0c104d .radio-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.ThemePage-9f0c104d .custom-radio input[type="radio"]:checked + .radio-circle {
  background-color: #008036;
}

.ThemePage-9f0c104d  .count {
  font-size: 16px;
  font-weight: bold;
}



.ThemePage-9f0c104d #colorpicker {
    width: 50px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    padding: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.ThemePage-9f0c104d #colorpicker::-webkit-color-swatch {
    border-radius: 50%;
    border: none;
}

.ThemePage-9f0c104d #colorpicker::-moz-color-swatch {
    border-radius: 50%;
    border: none;
}

.socialNetwork-Pages-7d6aeb30 .text-left, .socialNetwork-Pages-b7c9defb .text-left, .socialNetwork-Pages-87cc9d11 .text-left, .socialNetwork-Pages-ecb070c1 .text-left {
  height: 250px;
  position: absolute;
  text-align: center !important;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  padding-left: 10px;
  font-weight: bold;
  color: black;
  margin: 20px;
  left: -4%;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #left-inc-1 {
  top: 7%;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #left-inc-2 {
  top: 25%;
}

.socialNetwork-Pages-7d6aeb30 .desc-title, .socialNetwork-Pages-b7c9defb .desc-title, .socialNetwork-Pages-87cc9d11 .desc-title, .socialNetwork-Pages-ecb070c1 .desc-title {
  color: gray;
  font-weight: 600;
  margin-left: 10px;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #page-heading {
  background-color: white !important;
}

.socialNetwork-Pages-7d6aeb30 .network-container, .socialNetwork-Pages-b7c9defb .network-container, .socialNetwork-Pages-87cc9d11 .network-container, .socialNetwork-Pages-ecb070c1 .network-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  position: relative;
}

.socialNetwork-Pages-7d6aeb30 .network-section, .socialNetwork-Pages-b7c9defb .network-section, .socialNetwork-Pages-87cc9d11 .network-section, .socialNetwork-Pages-ecb070c1 .network-section {
  width: 100%;
  background-color: #f0f4ff;
  border: 2px solid #6d9eef;
  border-radius: 10px;
  padding: 20px;
  -webkit-box-shadow: 3.5px 4px 0 1px #dddddd;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
  position: relative;
}

.socialNetwork-Pages-7d6aeb30 .network-section h3, .socialNetwork-Pages-b7c9defb .network-section h3, .socialNetwork-Pages-87cc9d11 .network-section h3, .socialNetwork-Pages-ecb070c1 .network-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e63946;
  font-weight: bold;
}

.socialNetwork-Pages-7d6aeb30 .network-list, .socialNetwork-Pages-b7c9defb .network-list, .socialNetwork-Pages-87cc9d11 .network-list, .socialNetwork-Pages-ecb070c1 .network-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 5px;
  border-bottom: 1.3px solid black;
}

.socialNetwork-Pages-7d6aeb30 .network-list li, .socialNetwork-Pages-b7c9defb .network-list li, .socialNetwork-Pages-87cc9d11 .network-list li, .socialNetwork-Pages-ecb070c1 .network-list li {
  font-size: 16px;
  color: darkblue;
  font-weight: 700;
  padding: 5px;
}

.socialNetwork-Pages-7d6aeb30 .network-list.master-network li, .socialNetwork-Pages-b7c9defb .network-list.master-network li, .socialNetwork-Pages-87cc9d11 .network-list.master-network li, .socialNetwork-Pages-ecb070c1 .network-list.master-network li {
  color: #1d3557;
}

.socialNetwork-Pages-7d6aeb30 .network-list.custom-network li, .socialNetwork-Pages-b7c9defb .network-list.custom-network li, .socialNetwork-Pages-87cc9d11 .network-list.custom-network li, .socialNetwork-Pages-ecb070c1 .network-list.custom-network li {
  color: blue;
  font-weight: 400;
}

.socialNetwork-Pages-7d6aeb30 .network-list li a, .socialNetwork-Pages-b7c9defb .network-list li a, .socialNetwork-Pages-87cc9d11 .network-list li a, .socialNetwork-Pages-ecb070c1 .network-list li a {
  text-decoration: none;
  color: #0072ff;
}

.socialNetwork-Pages-7d6aeb30 .selected, .socialNetwork-Pages-b7c9defb .selected, .socialNetwork-Pages-87cc9d11 .selected, .socialNetwork-Pages-ecb070c1 .selected {
  border: 1px solid black;
  padding: 3px;
  border-radius: 5px;
  background-color: var(--div-background-color);
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #select-btn {
  width: 40%;
  cursor: pointer;
  display: flex;
  margin-top: 20px;
  align-items: right;
  justify-content: center;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #submit-btn {
  width: 40%;
  cursor: pointer;
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  margin: 20px auto 5px auto !important;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 h3:first-of-type {
  color: red;
  font-weight: 700;
  margin: 0;
}

.socialNetwork-Pages-7d6aeb30 .role-container, .socialNetwork-Pages-b7c9defb .role-container, .socialNetwork-Pages-87cc9d11 .role-container, .socialNetwork-Pages-ecb070c1 .role-container {
  padding-bottom: 5px;
  border-bottom: 1.3px solid black;
  margin-bottom: 5px;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #crown-icon {
  color: #ae4eae;
  font-size: 23px;
}

.socialNetwork-Pages-7d6aeb30 .role-count, .socialNetwork-Pages-b7c9defb .role-count, .socialNetwork-Pages-87cc9d11 .role-count, .socialNetwork-Pages-ecb070c1 .role-count {
  font-size: 25px;
  color: #0072ff;
  font-weight: 600;
}

.socialNetwork-Pages-7d6aeb30 .role-title, .socialNetwork-Pages-b7c9defb .role-title, .socialNetwork-Pages-87cc9d11 .role-title, .socialNetwork-Pages-ecb070c1 .role-title {
  font-size: 20px;
  color: darkblue;
  font-weight: 600;
}

.socialNetwork-Pages-7d6aeb30 .role-desc, .socialNetwork-Pages-b7c9defb .role-desc, .socialNetwork-Pages-87cc9d11 .role-desc, .socialNetwork-Pages-ecb070c1 .role-desc {
  font-size: 15px;
  color: #6d6d6d;
  text-align: left;
  margin: 0;
}

.socialNetwork-Pages-7d6aeb30 .role-list, .socialNetwork-Pages-b7c9defb .role-list, .socialNetwork-Pages-87cc9d11 .role-list, .socialNetwork-Pages-ecb070c1 .role-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.socialNetwork-Pages-7d6aeb30 .role-item, .socialNetwork-Pages-b7c9defb .role-item, .socialNetwork-Pages-87cc9d11 .role-item, .socialNetwork-Pages-ecb070c1 .role-item, .settingsPage-d3b31cc7 .role-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 5px;
}

.socialNetwork-Pages-7d6aeb30 .role-item span, .socialNetwork-Pages-b7c9defb .role-item span, .socialNetwork-Pages-87cc9d11 .role-item span, .socialNetwork-Pages-ecb070c1 .role-item span {
  color: darkblue;
  font-weight: 600;
}

.socialNetwork-Pages-7d6aeb30 .role-item.selected, .socialNetwork-Pages-b7c9defb .role-item.selected, .socialNetwork-Pages-87cc9d11 .role-item.selected, .socialNetwork-Pages-ecb070c1 .role-item.selected {
  background-color: var(--div-background-color);
  border-color: #0072ff;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #check {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 2px solid #ae4eae;
  appearance: none;
  cursor: pointer;
  position: relative;
  background-color: #fff2f2;
  margin-bottom: 5px;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #check:checked {
  border-color: #ae4eae;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #check:checked + .check-icon {
  color: #ae4eae;
}

.socialNetwork-Pages-7d6aeb30 .container .new-local-newtwork-container, .socialNetwork-Pages-b7c9defb .container .new-local-newtwork-container, .socialNetwork-Pages-87cc9d11 .container .new-local-newtwork-container, .socialNetwork-Pages-ecb070c1 .container .new-local-newtwork-container {
  border: 1.3px solid black;
  border-radius: 5px;
  padding: 5px;
  background-color: #ffffeb;
  margin-bottom: 10px;
}

.socialNetwork-Pages-7d6aeb30 .container .spread-container, .socialNetwork-Pages-b7c9defb .container .spread-container, .socialNetwork-Pages-87cc9d11 .container .spread-container, .socialNetwork-Pages-ecb070c1 .container .spread-container {
  border: 1.3px solid black;
  border-radius: 5px;
  padding: 5px;
  padding-bottom: 10px;
  margin: 10px 0;
}

.socialNetwork-Pages-7d6aeb30 .spread-heading, .socialNetwork-Pages-b7c9defb .spread-heading, .socialNetwork-Pages-87cc9d11 .spread-heading, .socialNetwork-Pages-ecb070c1 .spread-heading {
  width: fit-content;
  margin-right: auto;
  margin-bottom: 10px;
}

.socialNetwork-Pages-7d6aeb30 .gray-back, .socialNetwork-Pages-b7c9defb .gray-back, .socialNetwork-Pages-87cc9d11 .gray-back, .socialNetwork-Pages-ecb070c1 .gray-back {
  background-color: var(--div-background-color);
  text-align: left;
}

.socialNetwork-Pages-7d6aeb30 .container .spread-container .spread-input-container, .socialNetwork-Pages-b7c9defb .container .spread-container .spread-input-container, .socialNetwork-Pages-87cc9d11 .container .spread-container .spread-input-container, .socialNetwork-Pages-ecb070c1 .container .spread-container .spread-input-container {
  border-bottom: 1.3px black solid;
  margin-bottom: 10px;
}

.socialNetwork-Pages-7d6aeb30 .container .expected-roles-container, .socialNetwork-Pages-b7c9defb .container .expected-roles-container, .socialNetwork-Pages-87cc9d11 .container .expected-roles-container, .socialNetwork-Pages-ecb070c1 .container .expected-roles-container {
  border: 1.3px solid black;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 10px;
}

.socialNetwork-Pages-7d6aeb30 .container .expected-roles-container #expected-roles-title, .socialNetwork-Pages-b7c9defb .container .expected-roles-container #expected-roles-title, .socialNetwork-Pages-87cc9d11 .container .expected-roles-container #expected-roles-title, .socialNetwork-Pages-ecb070c1 .container .expected-roles-container #expected-roles-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.socialNetwork-Pages-7d6aeb30 .container .expected-roles-container .select-roles-container, .socialNetwork-Pages-b7c9defb .container .expected-roles-container .select-roles-container, .socialNetwork-Pages-87cc9d11 .container .expected-roles-container .select-roles-container, .socialNetwork-Pages-ecb070c1 .container .expected-roles-container .select-roles-container {
  width: 70%;
  margin-left: 30px;
  margin-right: auto;
}

.socialNetwork-Pages-7d6aeb30 .container .selected-spread-container, .socialNetwork-Pages-b7c9defb .container .selected-spread-container, .socialNetwork-Pages-87cc9d11 .container .selected-spread-container, .socialNetwork-Pages-ecb070c1 .container .selected-spread-container {
  width: 90%;
  margin: 10px auto;
}

.socialNetwork-Pages-7d6aeb30 .newly-added, .socialNetwork-Pages-b7c9defb .newly-added, .socialNetwork-Pages-87cc9d11 .newly-added, .socialNetwork-Pages-ecb070c1 .newly-added {
  background-color: #ffffeb !important;
}

.socialNetwork-Pages-7d6aeb30 .heading-title, .socialNetwork-Pages-b7c9defb .heading-title, .socialNetwork-Pages-87cc9d11 .heading-title, .socialNetwork-Pages-ecb070c1 .heading-title {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.socialNetwork-Pages-7d6aeb30 .add-button, .socialNetwork-Pages-b7c9defb .add-button, .socialNetwork-Pages-87cc9d11 .add-button, .socialNetwork-Pages-ecb070c1 .add-button {
  font-size: 30px;
  color: green;
  border: none;
  cursor: pointer;
}

.socialNetwork-Pages-7d6aeb30 .add-button:hover, .socialNetwork-Pages-b7c9defb .add-button:hover, .socialNetwork-Pages-87cc9d11 .add-button:hover, .socialNetwork-Pages-ecb070c1 .add-button:hover {
  color: lightgreen;
}

.socialNetwork-Pages-7d6aeb30 .desc-title, .socialNetwork-Pages-b7c9defb .desc-title, .socialNetwork-Pages-87cc9d11 .desc-title, .socialNetwork-Pages-ecb070c1 .desc-title {
  font-size: 16px;
  color: gray;
  text-align: left;
  margin-top: 5px;
}

.socialNetwork-Pages-7d6aeb30 .spread-row, .socialNetwork-Pages-b7c9defb .spread-row, .socialNetwork-Pages-87cc9d11 .spread-row, .socialNetwork-Pages-ecb070c1 .spread-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.socialNetwork-Pages-ecb070c1 .spread-row
{
    border: 1.3px solid black !important;
    padding: 10px;
    border-radius: 10px;
}

.socialNetwork-Pages-7d6aeb30 .placeHolder,.gallery-Pages-1378e22d .placeHolder, .socialNetwork-Pages-b7c9defb .placeHolder, .socialNetwork-Pages-87cc9d11 .placeHolder, .socialNetwork-Pages-ecb070c1 .placeHolder {
  font-size: 16px;
  color: gray;
}

.socialNetwork-Pages-7d6aeb30 .spread-row label, .socialNetwork-Pages-b7c9defb .spread-row label, .socialNetwork-Pages-87cc9d11 .spread-row label, .socialNetwork-Pages-ecb070c1 .spread-row label {
  border: 1.3px solid black;
  border-radius: 5px;
  padding: 5px 7px;
}

.socialNetwork-Pages-7d6aeb30 .selected-spread, .socialNetwork-Pages-b7c9defb .selected-spread, .socialNetwork-Pages-87cc9d11 .selected-spread, .socialNetwork-Pages-ecb070c1 .selected-spread {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e6f9ff;
  border-radius: 10px;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-size: 14px;
  border: 1px solid gray;
}

.socialNetwork-Pages-7d6aeb30 .chip, .socialNetwork-Pages-b7c9defb .chip, .socialNetwork-Pages-87cc9d11 .chip, .socialNetwork-Pages-ecb070c1 .chip {
  background-color: #dfefff;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 600;
}

.socialNetwork-Pages-7d6aeb30 .chip-remove, .socialNetwork-Pages-b7c9defb .chip-remove, .socialNetwork-Pages-87cc9d11 .chip-remove, .socialNetwork-Pages-ecb070c1 .chip-remove {
  background-color: #ff4d4d;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}

.socialNetwork-Pages-7d6aeb30 .submit-button, .socialNetwork-Pages-b7c9defb .submit-button, .socialNetwork-Pages-87cc9d11 .submit-button, .socialNetwork-Pages-ecb070c1 .submit-button {
  background-color: white;
  color: #1a73e8;
  padding: 10px;
  width: 30%;
  margin: 0 auto;
  border: 1px solid black;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

.socialNetwork-Pages-7d6aeb30 .submit-button:hover, .socialNetwork-Pages-b7c9defb .submit-button:hover, .socialNetwork-Pages-87cc9d11 .submit-button:hover, .socialNetwork-Pages-ecb070c1 .submit-button:hover {
  background-color: #005bbb;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: white;
  border: 2px solid #0072ff;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 input[type="radio"]:checked {
  background-color: #0072ff;
}

.socialNetwork-Pages-7d6aeb30 .socialNetwork-Pages-b7c9defb .socialNetwork-Pages-87cc9d11 .socialNetwork-Pages-ecb070c1 #select-type-container {
  margin: 20px auto;
}

.socialNetwork-Pages-7d6aeb30 .role-title-span, .socialNetwork-Pages-b7c9defb .role-title-span, .socialNetwork-Pages-87cc9d11 .role-title-span, .socialNetwork-Pages-ecb070c1 .role-title-span {
  width: 90%;
  padding: 5px 10px;
}

.socialNetwork-Pages-7d6aeb30 .new-role-item, .socialNetwork-Pages-b7c9defb .new-role-item, .socialNetwork-Pages-87cc9d11 .new-role-item, .socialNetwork-Pages-ecb070c1 .new-role-item {
  padding: 0;
  width: 80%;
  margin-left: 50px;
  border-bottom: 1.3px solid black;
}

.socialNetwork-Pages-7d6aeb30 .new-role-item span, .socialNetwork-Pages-b7c9defb .new-role-item span, .socialNetwork-Pages-87cc9d11 .new-role-item span, .socialNetwork-Pages-ecb070c1 .new-role-item span {
  text-align: left;
  color: gray;
}

.ThemePage-9f0c104d :root {
  --div-background-color: #f1f1f1;
}

.ThemePage-9f0c104d .color-container p {
  margin: 0px;
}

.ThemePage-9f0c104d .theme-container {
  padding: 5px;
}

.ThemePage-9f0c104d .selected-theme {
    border:1px solid black; 
    border-radius:7px; 
    background-color: #FFC !important;
}


.ThemePage-9f0c104d .theme-container img {
  width: 52px;
  height: 120px;
  margin: 5px 5px 0px 5px;
}

.ThemePage-9f0c104d .theme-container .theme-color {
  font-size: 10px;
  text-align: center;
  font-weight: 500;
  margin-top: 2px;
}

.ThemePage-9f0c104d .img-container img {
  width: 180px;
  height: auto;
  display: inline-block;
}

.ThemePage-9f0c104d .color-box {
  width: 20px;
  height: 20px;
  border: 1px solid black;
}

.ThemePage-9f0c104d .circle {
  color: red;
  border: 1px solid red;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  background-color: red;
  margin-right: 10px;
}

.ThemePage-9f0c104d .upload-icon {
  font-size: 30px;
  margin-right: 10px;
}

.ThemePage-9f0c104d .blue {
  background-color: #2f8cff;
}

.ThemePage-9f0c104d .green {
  background-color: #05ff05;
}

.ThemePage-9f0c104d .color-container {
  border: 1px solid black;
  margin-bottom: 5px;
  border-radius: 5px;
  padding: 10px;
}

.ThemePage-9f0c104d input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #dedede;
  border: 2px solid black;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.ThemePage-9f0c104d input[type="radio"]:checked {
  background-color: green;
}

.ThemePage-9f0c104d .color-container .content {
  margin-left: 15px;
  text-align: left;
}

.videoPages-Pages-3fef54c1 .video-container, .videoPages-8c76f39f .video-container {
  width: 90%;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.videoPages-Pages-3fef54c1 .video-container .video-card, .videoPages-8c76f39f .video-container .video-card {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}


.videoPages-8c76f39f .video-container .video-card .yt-play-button-overlay {
  position: absolute;
  top: 18%;
  right: -2%;
  transform: translate(-50%, -50%);
  background: #EF0B0A;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videoPages-8c76f39f .video-container .video-card .yt-play-button-overlay i {
  color: white;
  font-size: 35px;
}


.videoPages-8c76f39f .video-container .video-card label, .videoPages-Pages-3fef54c1 .video-container .video-card label {
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}

.videoPages-Pages-3fef54c1 .video-container .video-card .img-container, .videoPages-8c76f39f .video-container .video-card .img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f1f1f1;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
}

.videoPages-8c76f39f .video-container .video-card .img-container img, .videoPages-Pages-3fef54c1 .video-container .video-card .img-container img {
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
  background-color: #9b9b9b;
  border-radius: 5px;
}

.videoPages-8c76f39f .video-container .video-card .img-container a, .videoPages-Pages-3fef54c1 .video-container .video-card .img-container a{
    width: 95%;
    height: 95%;
    margin: auto;
}

.videoPages-Pages-3fef54c1 .video-container .video-card .img-container .icons-container, .videoPages-8c76f39f .video-container .video-card .img-container .icons-container {
  font-size: 25px;
  cursor: pointer;
  color: gray;
  margin-left: 10px;
  position: absolute;
  top: 7%;
  right: 25%;
  padding: 5px 10px;
  background-color: rgba(255, 246, 246, 0.5);
  border-radius: 10px;
}

.videoPages-Pages-3fef54c1 .video-container .video-card .img-container .play-btn, .videoPages-8c76f39f .video-container .video-card .img-container .play-btn {
  position: absolute;
  top: 7%;
  right: 4%;
}

.videoPages-8c76f39f .video-container p, .videoPages-Pages-3fef54c1 .video-container p {
  font-size: 13px;
  margin-left: 10px;
  margin-bottom: 0px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  overflow: visible;
  word-break: break-all;
}

.videoPages-Pages-3fef54c1 #heading-btn-row p, .videoPages-8c76f39f #heading-btn-col p, .videoPages-8c76f39f #heading-btn-row p, .videoPages-Pages-3fef54c1 #heading-btn-col p {
  margin: 4px auto;
  font-size: 16px;
}

.videoPages-8c76f39f .btn-container, .videoPages-Pages-3fef54c1 .btn-container {
  width: fit-content;
  margin: auto;
}

.videoPages-Pages-3fef54c1 .placeHolder, .videoPages-Pages-3fef54c1 #title {
  font-size: 15px;
  color: gray;
}

.videoPages-Pages-3fef54c1 #yt-link {
  font-size: 15px;
  min-height: 50px;
}

.videoPages-Pages-3fef54c1 .desc-title {
  text-align: left;
  margin-top: 5px;
}

/* Browser-Specific Styles */
.homePage-51ea6cf0 .select select::-ms-expand {
  display: none;
}

@media (max-width: 600px) {
  .aboutUs-9f548a5a p {
    font-size: 17px;
  }
  .aboutUs-9f548a5a #text-area {
    width: 96%;
  }
  .aboutUs-9f548a5a .btn {
    padding: 10px;
    margin-top: 20px;
    font-size: 20px;
  }
}


 #imageCanvas {
    width: 100%; /* Scales canvas to fit within the popup */
    max-width: 200px;
    height: auto;
  }
  
 .cropper-container {
     scale:0.8 !important;
     margin:auto;
     left:-40px;
     top:-40px;
 }
 /*css for popup*/
.overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index:9999; 
}

/* Show the overlay when 'visible' class is added */
.overlay.visible {
display: flex;
}

  /* Popup */
  .popup {
    background: #fafafa;
    border: 1px solid #5271FD;
    border-radius: 8px;
    max-width: 300px;
    width: calc(100% - 40px);
    padding: 20px;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
  }

  .popup-border {
    background: #ffffe0;
    border: 5px solid #5271FD;
    border-radius: 8px;
    padding: 20px;
  }

  .popup h2 {
    background: #4a90e2;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 0 0 20px 0;
  }
  
    .overlay#popupOverlay .popup-border .popup h2{
      background:transparent;
      padding:0px;
      margin:0px;
  }

  .popup label {
    display: block;
    font-weight: bold;
  }


  .popup button {
    width: 48%;
    padding: 10px;
    margin: 5px 1%;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    background-color:#0072ff !important;
  }

  .popup .cancel-btn {
    background-color: #999;
  }

  .popup .submit-btn {
    background-color: #1a73e8;
  } 
  
  
  /* save-card styles */
  
.Savedcard-2dr3d560 .base_container{
  border: 1px solid black;
  border-radius: 10px;
  width: 85%;
  padding: 0px;
  margin: auto;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Savedcard-2dr3d561 .base_container_2 {
   margin: 5px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Savedcard-2dr3d560 .base_container .saved-card-heading , .Savedcard-2dr3d561 .base_container_2 .saved-card-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    color: white;
    background: #5371FF;
    font-size: 20px;
    word-spacing: 1px;
    padding: 5px 10px;
    border-radius: 8px 8px 0px 0px;
}

.Savedcard-2dr3d560 .base_container .form-container , .Savedcard-2dr3d561 .base_container_2 .form-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Savedcard-2dr3d560 .base_container .form-container-2 , .Savedcard-2dr3d561 .base_container_2 .form-container-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.Savedcard-2dr3d560 .base_container .form-container-2 .form-container-blocks , .Savedcard-2dr3d561 .base_container_2 .form-container-2 .form-container-blocks {
    border-bottom: 1px solid #A6A6A6;
    width: 90%;
}

.Savedcard-2dr3d560 .base_container .form-container-2 .form-checkbox , .Savedcard-2dr3d561 .base_container_2 .form-container-2 .form-checkbox{
    flex-direction: row;
    display: flex;
    align-items: center;
    padding: 10px 0px;
    justify-content: space-between;
}

.Savedcard-2dr3d560 .base_container .form-container-2 .image-label , .Savedcard-2dr3d561 .base_container_2 .form-container-2 .image-label{
    margin: 0px;
    margin-bottom: 10px;
    color: #A6A6A6;
}

.Savedcard-2dr3d560 .base_container .form-container-2 .add-image , .Savedcard-2dr3d561 .base_container_2 .form-container-2 .add-image{
    font-size: 12px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.Savedcard-2dr3d560 .form-container-2 .placeHolder , .Savedcard-2dr3d561 .form-container-2 .placeHolder {
    font-size: 14px;
}
  
.Savedcard-2dr3d560 .base_container-child , .Savedcard-2dr3d561 .base_container_child{
    border: 1px solid black;
    border-radius: 10px;
    width: 85%;
    margin: auto;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .Savedcard-2dr3d560 .base_container .column , .Savedcard-2dr3d561 .base_container_2 .column{
    display: flex;
    flex-direction: column;
    gap:10px;
  }
  
.Savedcard-2dr3d560 .base_container .row , .Savedcard-2dr3d561 .base_container_2 .row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
 
.Savedcard-2dr3d560 .base_container .row .picture-placeholder , .Savedcard-2dr3d561 .base_container_2 .row .picture-placeholder {
    /*height: 80px;*/
    /*width: 160px;*/
    border-radius: 10px;
    position: relative;
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
} 

.Savedcard-2dr3d560 .base_container i , .Savedcard-2dr3d561 .base_container_2 i {
    font-size: 20px;
}
 
.Savedcard-2dr3d560 h2 , .Savedcard-2dr3d561 h2{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
} 

.Savedcard-2dr3d560 .base_container .form-container-2 .form-container-blocks h2 , .Savedcard-2dr3d561 .base_container_2 .form-container-2 .form-container-blocks h2{
    font-size: 14px;
}
 
.Savedcard-2dr3d560 h2 , .Savedcard-2dr3d560 p , .Savedcard-2dr3d561 h2 , .Savedcard-2dr3d561 p{
    margin: 0px;
    font-weight: 600;
    color: #504C4C;
}
  
.Savedcard-2dr3d560 textarea , .Savedcard-2dr3d561 textarea{
    min-height: 80px;
    resize: vertical;
}  
  
/* Explore Saved Card styles */

.ExploreSavedcard-2dr3d561 .column{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.ExploreSavedcard-2dr3d561 .row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.ExploreSavedcard-2dr3d561 .heading-container{
    width: 95%;
    margin: 5px auto;
}

.ExploreSavedcard-2dr3d561 .heading{
    width: 80%;
    text-align: left;
    padding: 5px;
    padding-left: 10px;
    border: 1px black solid;
    border-radius: 5px;
    font-weight: 700;
}

.ExploreSavedcard-2dr3d561 .icons-container-first{
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
 
.ExploreSavedcard-2dr3d561 .phone-icon{
    border: 1px solid black;
    border-radius: 100%;
    padding: 5px;
    font-size: 15px;
 }
  
.ExploreSavedcard-2dr3d561  .whatsapp-icon{
    color: white;
    padding: 3px 4px;
    border-radius: 3px;
    background: #00D702;
    font-size: 20px;
  }
  
 .ExploreSavedcard-2dr3d561 .card-text {
    font-weight: 600;
    color: gray;
    margin: 1px 0px;
  }

.ExploreSavedcard-2dr3d561 .notes{
    font-size: 13px;
    font-weight: 600;
}

.ExploreSavedcard-2dr3d561 .notes span{
    color: #0072FF;
}
  
 .ExploreSavedcard-2dr3d561 .dateandtime {
    font-weight: 300;
    color: gray;
    font-size: 13px; 
    margin: 1px 0px;
  }
  
  .ExploreSavedcard-2dr3d561 .filter{
    font-size: 18px !important;
    padding: 5px !important;
    margin: 1px 2px;
    color: gray;
    border: 1px black solid;
    border-radius: 4px;
    box-shadow: 2px 2px 0px 0px rgba(178, 174, 174, 1);
   }
  
  .ExploreSavedcard-2dr3d561 .heart, .ExploreSavedcard-2dr3d561 .share , .ExploreSavedcard-2dr3d561 .cross{
      font-size: 25px;
  }
  
  .ExploreSavedcard-2dr3d561 .cross{
      color: red;
  }
  
  .ExploreSavedcard-2dr3d561 .card-icons{
      align-items: center;
  }
  
  .ExploreSavedcard-2dr3d561 .P-block, .ExploreSavedcard-2dr3d561 .D-block{
     font-weight: 600;
     border: 1px solid black;
    padding: 2px 6px;
    border-radius: 4px;
  }
  
  .ExploreSavedcard-2dr3d561 .heading-container .P-block,.ExploreSavedcard-2dr3d561 .heading-container .D-block{
      background: #C1FF72;
  } 
  
  /*  Explore Saved Card Details styles */
  
  .ExploreSavedcardD-2dr3d561  .back-btn{
    padding: 2px 5px;
    border-radius: 15px;
    background-color: var(--div-background-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 2.3px #b7b5b5 solid;
    gap:10px;
  }
  
   .ExploreSavedcardD-2dr3d561  .back-btn p{
       margin: 6px 5px;
   }
  
    .ExploreSavedcardD-2dr3d561 .column{
        align-items: flex-start;
        padding: 5px 15px;
    }
    
    .ExploreSavedcardD-2dr3d561 .card-title{
        font-size: 25px;
    }
    
    .ExploreSavedcardD-2dr3d561 .card-subtitle{
        font-size: 18px;
    }
    
    .ExploreSavedcardD-2dr3d561 .city{
        font-size: 17px;
        color: gray;
    }
    
    .ExploreSavedcardD-2dr3d561 .card-text{
        font-size: 16px;
        width: 98%;
        padding: 10px 5px;
        border-radius: 8px;
        margin: 5px 0px;
        border: 1px black solid;
        flex: 1;
        word-break: break-word;
    }
    
    .ExploreSavedcardD-2dr3d561 .notes{
        font-size: 16px;
        width: 98%;
        padding: 10px 5px;
        border-radius: 8px;
        margin: 5px 0px;
        border: 1px black solid;
        flex: 1;
        word-break: break-word;
    }
    
    .ExploreSavedcardD-2dr3d561 .dateandtime{
        font-size: 18px;
    }
  
    .ExploreSavedcardD-2dr3d561 .icons-container-first{
        width:fit-content;
    }
    
    .ExploreSavedcardD-2dr3d561 .btns-container{
        width: 100%;
        margin: 10px 0px;
    }
    
    .ExploreSavedcardD-2dr3d561 .cross {
        font-size: 30px;
    }
    
    .ExploreSavedcardD-2dr3d561 .image-container{
        margin: 10px auto;
        width: 80%;
        height: auto;
        text-align: center;
        background: #E2E2E2;
        padding: 10px;
        border-radius: 10px;
    }
    
    .ExploreSavedcardD-2dr3d561 .image-container img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
  /* gallary styles */    
  
  
.gallary-3sd452221 .image-layout-1 .catalogue {
  padding: 5px;
  border: 2px solid #ccc;
  background-color: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin: 10px;
}

.image-layout-1 .catalogue-title {
  font-size: large;
  background-color: #edebeb;
  font-weight: bolder;
  padding: 10px;
  border-radius: 15px;
  color: var(--primary-color);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.image-layout-1 .catalogue-title h2 {
  margin: 0;
  width: fit-content;
}
.image-layout-1 .catalogue-title i {
  font-size: xx-large;
  cursor: pointer;
}

.gallary-3sd452221 .image-layout-1 #eye,.gallary-3sd452221 .image-layout-1 #delete,.gallary-3sd452221 .image-layout-1 #edit{
    margin: 0px;
}

.image-layout-1 .catalogue-image-container {
  position: relative;
  margin-top: 5px;
  height: 150px;
}

.image-layout-1 .catalogue-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  z-index: 1;
  position: absolute;
}
.image-layout-1 .catalogue-image-container div {
  width: 150px;
  position: absolute;
  z-index: 10;
  transition: all 0.5s;
  /* box-shadow: 20px 0px 20px 0px rgb(0, 0, 0, 1); */
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.image-layout-1 .catalogue-image-container div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 100%;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  border-radius: 10px;
}

.image-layout-1 .catalogue-image-container div:hover {
  transform: scale(0.9);
}

.image-layout-2 .disabled,
.image-layout-3 .disabled {
  color: grey;
}

.image-layout-2 .catalogue-header,
.image-layout-3 .catalogue-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: xx-large;
  color: var(--primary-color);
  margin: 0 10px;
  background-color: white;
  padding: 0px;
  border-radius: 0px;
}


.image-layout-2 .catalogue-title,
.image-layout-3 .catalogue-title {
  font-size: large;
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 15px;
  /*color: white;*/
  text-align: center;
  margin: 15px 10px;
  width: -webkit-fill-available;
}

.image-layout-2 .catalogue-description {
  text-align: center;
}

.gallary-3sd452221 .image-layout-2 .catalogue-image-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  margin-top: 20px;
  /*margin-left: 10px;*/
  margin-right: 10px;
  margin-bottom: 20px;
}

.image-layout-2 .catalogue-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* Ensures square cropping */
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.image-layout-2 .catalogue-image-container img:hover {
  transform: scale(1.05);
}

.gallary-3sd452221 .image-layout-2 .catalogue-image-container .delete-icon{
    margin: 0px;
    font-size: 20px;
    color: red;
}

 .gallary-3sd452221 .image-layout-2 .catalogue-image-container .edit-icon{
    margin: 0px;
    font-size: 20px;
    color: #424141;
 }

.image-layout-3{
    margin-bottom: 20px;
}

.image-layout-3 #current-image {
    transition: opacity 0.3s ease-in-out;
}


.image-layout-3 .catalogue-description {
    text-align: center;
    /* border: 1px solid black; */
    /* border-radius: 10px; */
    margin: 5px 10px 15px 10px;
    padding: 5px;
}

.image-layout-3 .catalogue-image-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.image-layout-3 .catalogue-image-container i {
  font-size: 40px;
  cursor: pointer;
}

.gallary-3sd452221 .image-layout-3 .catalogue-image-container img {
  width: 100%;
  max-width: 80%;
  max-height: 80vh;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Smooth image transition for soft navigation */
.gallary-3sd452221 .image-layout-3 #current-image {
    transition: opacity 0.3s ease-in-out;
}

/* Loading state for image transitions */
.gallary-3sd452221 .image-layout-3 .image-loading {
    opacity: 0.5;
}

/* Fixed container for images to keep arrows in position */
.gallary-3sd452221 .image-layout-3 .catalogue-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Set a minimum height */
    max-height: 70vh; /* Maximum height relative to viewport */
}

/* Fixed positioning for navigation arrows */
.gallary-3sd452221 .image-layout-3 .catalogue-image-container #prev-image,
.gallary-3sd452221 .image-layout-3 .catalogue-image-container #next-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.gallary-3sd452221 .image-layout-3 .catalogue-image-container #prev-image:hover,
.gallary-3sd452221 .image-layout-3 .catalogue-image-container #next-image:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
}

.gallary-3sd452221 .image-layout-3 .catalogue-image-container #prev-image {
    left: 10px;
}

.gallary-3sd452221 .image-layout-3 .catalogue-image-container #next-image {
    right: 10px;
}

/* Preload next/previous images for faster switching */
.gallary-3sd452221 .image-layout-3 .preload-image {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .gallary-3sd452221 .image-layout-3 .catalogue-image-container {
        min-height: 300px;
        max-height: 60vh;
    }

    .gallary-3sd452221 .image-layout-3 .catalogue-image-container #prev-image,
    .gallary-3sd452221 .image-layout-3 .catalogue-image-container #next-image {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .gallary-3sd452221 .image-layout-3 .catalogue-image-container #prev-image {
        left: 5px;
    }

    .gallary-3sd452221 .image-layout-3 .catalogue-image-container #next-image {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .gallary-3sd452221 .image-layout-3 .catalogue-image-container {
        min-height: 250px;
        max-height: 50vh;
    }

    .gallary-3sd452221 .image-layout-3 .catalogue-image-container #prev-image,
    .gallary-3sd452221 .image-layout-3 .catalogue-image-container #next-image {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* Add the back button styles */
 .gallary-3sd452221 .back-button {
  display: block;
  margin: 15px 10px;
  padding: 10px;
  font-size: medium;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

 .gallary-3sd452221 .back-button:hover {
  background-color: darken(var(--primary-color), 10%);
}

/* Hide elements by default */
.gallary-3sd452221 .hidden {
  display: none;
}


.gallary-3sd452221 .catalogue-image-container {
  display: flex;
  /*align-items: center;*/
  /*justify-content: center;*/
}

/* Add this to your existing CSS */
.no-images-message {
  display: flex;
  text-align: center;
  width: 100%;
  color: red;
}

.no-images-message p {
  margin-bottom: 15px;
  font-size: 16px;
}

.no-images-message a {
  color: #007bff;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #007bff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.no-images-message a:hover {
  background-color: #007bff;
  color: white;
}

.no-images-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.add-image-btn {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 15px;
}

.add-image-btn:hover {
  background-color: #0069d9;
}


.gallary-3sd452221 .catalogue-image-container img {
  max-width: 100%;
  max-height: 400px;
}


.settingsPage-d3b31cc7 .cr-wrapper{
    margin-bottom: 0px;
}
    
  
  /* reviewed button styles */
  
  .cr-wrapper *,
.cr-wrapper *::before,
.cr-wrapper *::after {
	box-sizing: content-box !important;
}

.cr-wrapper input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.cr-wrapper span {
	font-size: 16px;
}

.cr-wrapper {
	display: table;
	position: relative;
	padding-left: 32px;
	cursor: pointer;
	margin-bottom: 5px;
}

.cr-wrapper input[type="checkbox"] ~ .cr-input {
	position: absolute;
	top: 50%;
	left: 0;
	height: 20px;
	width: 20px;
	background: #FFFFFF;
	transition: background 250ms;
	border: 1px solid #000000;
	border-radius: 3px;
	transform: translate(0, -50%);
}

.cr-wrapper input[type="radio"] ~ .cr-input {
	position: absolute;
	top: 50%;
	left: 0;
	height: 20px;
	width: 20px;
	background: #FFFFFF;
	transition: background 250ms;
	border: 1px solid #000000;
	border-radius: 20px;
	transform: translate(0, -50%);
}

.cr-wrapper input[type="checkbox"] ~ .cr-input::after {
	content: "";
	position: absolute;
	display: none;
	left: 2px;
	top: 2px;
	width: 16px;
	height: 16px;
	transition: background 250ms;
	background-color: #22FF00;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.cr-wrapper input[type="radio"] ~ .cr-input::after {
	content: "";
	position: absolute;
	display: none;
	left: 4px;
	top: 4px;
	width: 12px;
	height: 12px;
	border-radius: 20px;
	background: #FFFFFF;
	transition: background 250ms;
}

.cr-wrapper input:checked ~ .cr-input::after {
	display: block;
}

.cr-wrapper:hover input[type="checkbox"]:not([disabled]) ~ .cr-input,
.cr-wrapper input[type="checkbox"]:focus ~ .cr-input {
	/*background: #00CCFF;*/
	border-color: #000000;
}


.cr-wrapper input[type="checkbox"]:checked ~ .cr-input {
	background: #FFFF00;
	border-color: #000000;
}


.cr-wrapper input[type="checkbox"]:disabled ~ .cr-input {
	opacity: 0.7;
	cursor: not-allowed;
}

.cr-wrapper input[type="checkbox"]:disabled ~ span{
	opacity: 0.7;
	cursor: not-allowed;
}

.cr-wrapper input[type="checkbox"]:disabled ~ .cr-input::after {
	background: #22FF00;
}

.cr-wrapper:hover input[type="checkbox"]:not([disabled]):checked ~ .cr-input,
.cr-wrapper input[type="checkbox"]:checked:focus ~ .cr-input {
	/*background: #00CCFF;*/
	border-color: #000000;
}

.cr-wrapper:hover input[type="radio"]:not([disabled]):checked ~ .cr-input,
.cr-wrapper input[type="radio"]:checked:focus ~ .cr-input {
	/*background: #00CCFF;*/
	border-color: #000000;
}

#address-btns{
    display:flex;
    align-items:center;

}

.spread-input-container{
    display:inline !important;
    border-bottom:1.3px solid black;
}

.socialNetwork-Pages-ecb070c1 .input-field#nat_select{
    border:0px !important;
    padding:0px !important;
    margin-right:4px;
    /*width:150px;*/
    /*padding: 10px;*/
    /*border: 1.3px solid black;*/
}

.socialNetwork-Pages-ecb070c1 .input-field#sta_select{
    border:0px !important;
    padding:0px !important;
    /*width:150px;*/
    margin-right:4px;
}

.socialNetwork-Pages-ecb070c1 .input-field#cit_select{
    border:0px !important;
    padding:0px !important;
    /*width:175px;*/
    margin-right:4px;
}

.socialNetwork-Pages-ecb070c1 .input-field#loc_select{
    border:0px !important;
    padding:0px !important;
    min-width:110px;
}

.socialNetwork-Pages-ecb070c1 .input-field#loc_select select option{
    white-space:normal;
    word-wrap: break-word;
}

.socialNetwork-Pages-ecb070c1 .input-field{
    padding:5px !important;
    background: none;
}

.socialNetwork-Pages-ecb070c1 #submit-button-display{
    border-bottom:1px solid black;
    padding-bottom:10px;
}

.socialNetwork-Pages-ecb070c1 .submit-button{
    font-size:16px !important;
    padding:5px !important;
   
}

.socialNetwork-Pages-ecb070c1 .input-field#msl_name{
    width:auto !important;
}

#address-btns .input-field select 
{
    font-size: 14px;
}

.spread-row input[type="radio"]{
    accent-color: #0072ff;
}

.bg-none{
    background-color:unset !important;
}

.bg-pink 
{
   background-color: #ffe6fb !important;
}

.p-0{
    padding:0px !important;
}

.w-100{
    width:100% !important;
}

.socialNetwork-Pages-ecb070c1 .chip
{
    padding:0px !important;
}

.m-0{
    margin:0px !important;
}

.text-red{
    color:red !important;
}

.text-start{
    text-align:left;
}

.gap-6{
    gap:6px;
}

.flex-wrap{
    flex-wrap:wrap;
}

.justify-content-start 
{
    justify-content: start !important
}

.justify-content-center 
{
    justify-content: center !important
}

.d-flex
{
    display: flex;
}

.gap-4
{
    gap: 4px
}


/*New css ends here*/

/*New css starts here*/

.socialNetwork-Pages-ecb070c1 .profile-pic{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top:1px solid black;
    border-bottom:1px solid black;
    margin:5px 0px;
    padding:5px 0px;
}

.socialNetwork-Pages-ecb070c1 .parent-net-input{
    padding:5px;
    border-radius:5px;
    border:1px solid black !important;
}

.socialNetwork-Pages-ecb070c1 .btns{
    text-align:center;
    margin-bottom:10px;
}

.socialNetwork-Pages-ecb070c1 .popup{
    display:flex;
}

.socialNetwork-Pages-ecb070c1 .role-container col{
    position:relative;
}

.socialNetwork-Pages-ecb070c1 .fa-crown.crown-icon-top{
    position: absolute;
    top: 93px;
    left: 25px;
}

.socialNetwork-Pages-ecb070c1 .role-title-span-line{
    width: 60%;
    display: block;
    border-bottom: 1px solid black;
    margin: 0px auto;
    margin-bottom: 10px;
}

.socialNetwork-Pages-ecb070c1 .submit-btn-overlay{
    width:100%;
    text-align:center;
}

.socialNetwork-Pages-ecb070c1 .checkbox-crown{
    position:relative;
}

.socialNetwork-Pages-ecb070c1 .checkbox-crown input[type=checkbox]{
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid black;
    padding: 10px;
    cursor: pointer;
    border-radius: 20%;
}

.socialNetwork-Pages-ecb070c1 .checkbox-crown-display {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}


.socialNetwork-Pages-ecb070c1 .crown-icon .crown-check-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease, color 0.3s ease;
}


.socialNetwork-Pages-ecb070c1 .crown-icon .crown-check-icon::before {
    content: "\f521"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(0, 0, 0, 0.3); 
    position: absolute;
    left: 7px;
    top: 4px;
}

.socialNetwork-Pages-ecb070c1 .crown-icon input:checked + .crown-check-icon::before {
    color: black; 
    opacity: 1;
}

.socialNetwork-Pages-ecb070c1 .check-container.crown-icon input[type="checkbox"]:checked{
    background-color:transparent;
}


.socialNetwork-Pages-ecb070c1 #new_role{
    margin:10px;
}

.socialNetwork-Pages-ecb070c1 #basicform{
    border: 1.3px solid black;
    padding: 10px;
    border-radius: 10px;
    min-height: 410px !important;
}

.socialNetwork-Pages-ecb070c1 #par_div .selected-spread-container .selected-spread{
    margin:10px;
}

.socialNetwork-Pages-ecb070c1 .check-container input[type="checkbox"]:checked + .check-icon{
    color:rgb(104,64,97);
}


.socialNetwork-Pages-ecb070c1 .check-icon{
    color:transparent;
    right: 4px;
    top: -3px;
}

.socialNetwork-Pages-ecb070c1 .network-section
{
    border: 2px solid #000000;
}

.socialNetwork-Pages-ecb070c1 .role-title, .socialNetwork-Pages-ecb070c1 .role-item span
{
    font-size:16px;
}

.socialNetwork-Pages-ecb070c1 .selected-spread{
    margin:10px;
}


.box-shadow 
{
    box-shadow: 3.5px 4px 0 1px #dddddd;
}

.border-radius5
{
    border-radius: 5px !important;
}

.mt-20 
{
    margin-top: 20px;
}

.mt-5{
    margin-top:5px;
}

.mx-0
{
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mb-2{
    margin-bottom:20px;
}

.m-auto
{
    margin: auto;
}

.w-80
{
    width: 80%;
}

.m-2{
    margin:2px;
}

.pt-5{
    padding-top:5px;
}

.px-20{
    padding-left:20px !important;
    padding-right:20px !important;
}

/*.px-10 */
/*{*/
/*    padding: 10px;*/
/*}*/

.py-5
{
    padding: 5px;
}

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

.text-xsmall{
    font-size:12px !important;
}

.text-normal{
    font-weight:normal !important;
}

.pr-20{
    padding-right:20px;
}

.mb-1{
    margin-bottom:10px;
}

.text-center{
    text-align:center;
    /*width:100%;*/
}

.text-small{
    font-size:0.8rem !important;
}

.pr-10{
    padding-right:10px;
}

@media(max-width:375px)
{
    .popup
    {
        max-width:84% !important;
        padding:10px !important;
        margin:auto;
    }
    ..socialNetwork-330f6e4d .buttons, .gallary-3sd452221 .buttons, .ThemePage-9f0c104d .buttons, .gallery-Pages-1378e22d .buttons, .gallery-Pages-e8165973 .buttons, .products-Pages-c09438f3 .buttons, .products-Pages-1e343335 .buttons, .basicDetails-5d7f747e .buttons, .aboutUs-9f548a5a .buttons, .gallery-0999fc63 .buttons, .videoPages-8c76f39f .buttons, .Co-brand-f75f52a1 .buttons, .settingsPage-d3b31cc7 .buttons, .gallery-Pages-b4b698a4 .gallery-Pages-e8165973 .gallery-Pages-1378e22d .buttons, .socialNetwork-Pages-7d6aeb30 .buttons, .socialNetwork-Pages-b7c9defb .buttons, .socialNetwork-Pages-87cc9d11 .buttons, .socialNetwork-Pages-ecb070c1 .buttons, .products-9f521fcc .buttons, .PaymentTab-fb53e347 .buttons, .videoPages-Pages-3fef54c1 .buttons, .socialLinks-1a95806b .buttons{
        margin-bottom:80px;
    }
}

/*New css added from here*/

.premiumCard-c59fb659 #plan_period{
    color: rgba(0,0,0,0.6) !important;
    font-size: 20px;
    border: 1.3px solid black;
    font-weight: 600;
    padding:10px;
    margin: 0px auto;
    background-color: transparent;
}

.premiumCard-c59fb659 .header select{
    font-size:20px;
}

.premiumCard-c59fb659 .container{
    color:rgba(0,0,0,0.8);
}

.premiumCard-c59fb659 .container p{
    margin:2px;
    padding:2px 0px;
}

.premiumCard-c59fb659 .box{
    margin:10px auto;
    display:flex;
    align-items:center;
}

.premiumCard-c59fb659 .container .box p{
    padding:0px;
}

.premiumCard-c59fb659 .container .box .w-100{
    width:100%;
}

.premiumCard-c59fb659 .box button{
    font-size:30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premiumCard-c59fb659 .header.header-type-2{
    background-color: transparent;
}

.premiumCard-c59fb659 .big{
    font-size:20px;
}

/*new css after intigration*/

.overlay .popup-border{
    max-width: 300px !important;
}

.overlay .popup{
    max-width: 250px !important;
}

.overlay .popup label{
    font-size: 14px;
}


.coupon_div{
    display:flex;
}

.premiumCard-c59fb659 .links span{
    width: 20px;
    height: 20px;
    display: flex;
    padding:0px;
    align-items: center;
    justify-content: center;
    min-width:20px;
}

.preview-btn:hover{
    background-color: #669bca;
}

.preview-btn{
    padding: 5px;
    border: 1px black solid;
    text-align: center;
    width: 100%;
    background-color: #478ECC;
    font-size: 18px;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 3.5px 4px 0 1px #dddddd;
}

      /* Overlay */
      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
        padding: 20px; /* Ensures padding around popup on mobile */
      }

      /* Show the overlay when 'visible' class is added */
      .overlay.visible {
        display: flex;
      }
      
      

      /* Popup */
      .overlay#popupOverlay .popup-border {
        background: #ffffe0;
        border: 3px solid #0072ff;
        border-radius: 8px;
        padding: 20px;
        width: 100%;
        max-width: 400px; /* Limit width on larger screens */
      }

      .overlay#popupOverlay .popup-border .popup {
        color:blue !important; 
        background: #fafafa;
        border: 1px solid #5271fd;
        border-radius: 8px;
        padding: 20px;
      }

        /*Riddhi css changes*/

        .overlay#popupOverlay .popup-border .popup .header{
            color: white;
            display: flex;
            justify-content: space-between;
            padding: 6px 10px;
            border-radius: 50px;
            background-color: #0072ff;
            align-items: center;
        }


      .overlay#popupOverlay .popup-border .popup h2 {
        /*background: #4a90e2;*/
        /*color: #fff;*/
        /*padding: 10px;*/
        /*text-align: center;*/
        /*border-radius: 5px 5px 0 0;*/
        /*margin: 0 0 20px 0;*/
        font-size: 1rem;
        height: 0px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
      }

      .overlay#popupOverlay .popup-border .popup label {
        display: flex;
        font-weight: bold;
        align-items:center;
      }

      /*.overlay .popup input[type="text"],*/
      .overlay#popupOverlay .popup-border .popup select,
      .overlay#popupOverlay .popup-border .popup input[type="file"] {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 1rem;
      }
      /*Riddhi css changes*/
      .overlay#popupOverlay .popup-border .popup input[type="text"]{
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        border-radius:10px;
        width:50%;
        margin-left:5px;
      }

      .overlay#popupOverlay .popup-border .popup button {
        width: 48%;
        padding: 10px;
        margin: 5px 1%;
        border: none;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
      }

      .overlay#popupOverlay .popup-border .popup .cancel-btn {
        background-color: #999;
      }

      .overlay#popupOverlay .popup-border .popup .submit-btn {
        background-color: #4a90e2;
      }
      
       @media (max-width: 425px) {
           footer{
             margin-top:70px;  
           }
           
       }

  

      /* Responsive styles */
      @media (max-width: 480px) {
        .overlay#popupOverlay .popup-border .popup-border {
          padding: 10px;
        }

        .overlay#popupOverlay .popup-border .popup h2 {
          font-size: 1rem;
          padding: 8px;
        }

        .overlay#popupOverlay .popup-border .popup label,
        .overlay#popupOverlay .popup-border .popup input[type="text"],
        .overlay#popupOverlay .popup-border .popup select,
        .overlay#popupOverlay .popup-border .popup input[type="file"],
        .overlay#popupOverlay .popup-border .popup button {
          font-size: 0.9rem;
        }

        .overlay#popupOverlay .popup-border .popup button {
          padding: 8px;
        }
      }
      
      /*Riddhi css changes*/
      
      .access-blocked .heading{
          color:rgba(0, 0, 0, 0.35) !important;
          border: 1.3px solid rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .buttons Button{
          color:rgba(0, 0, 0, 0.35) !important;
          border: 1.3px solid rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked #show_prod_list{
          color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .row{
        color:rgba(0, 0, 0, 0.35) !important;
         
      }
      
      .access-blocked img{
          opacity:0.35;
      }
      
      .access-blocked .row .col .row{
          border: 1.3px solid rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .row .col .row input{
          opacity:0.35;
      }
      
      .access-blocked .social-link-form,.access-blocked .social-link-form select,.access-blocked .social-link-form input{
          color:rgba(0, 0, 0, 0.35) !important;
          border: 1.3px solid rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .allow-option{
         color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .allow-option .check-container input{
          border: 1.3px solid rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .catalogue-header,.access-blocked .catalogue-icons ,.access-blocked .catalogue-images {
          opacity:0.35;
      }
      
      .access-blocked{
          /*opacity:0.5;*/
          color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked form{
          opacity:0.5;
          color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .dividing-line,.access-blocked #co_branding_list{
          opacity:0.5;
          color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .row .col Button i,.access-blocked .row .col Button,.access-blocked .row .col Button i label,.access-blocked .row .col Button label{
          color:rgba(0, 0, 0, 0.35) !important;
          border: 1.3px solid rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked #co_branding_list .card{
          color:rgba(0, 0, 0, 0.35) !important;
          border: 1.3px solid rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked #co_branding_list .card .col img,.access-blocked #co_branding_list .card .card-content,.access-blocked #co_branding_list .card .card-btns i, .access-blocked #co_branding_list .card .sparkle-icon i{
          color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .blue{
          color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .icons-container i{
          color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-blocked .row p a{
          color:rgba(0, 0, 0, 0.35) !important;
      }
      
      .access-message{
          display:none;
      }
      
      .access-blocked .access-message{
          display:block !important;
          opacity:1 !important;
          font-size: 18px;
      }
      
      /*Riddhi new css*/
      
      /*.dc-form{*/
      /*    padding: 10px;*/
      /*  border: 1px solid black;*/
      /*  margin: 3px;*/
      /*  border-radius: 5px;*/
      /*  margin-top:10px;*/
      /*}*/
      
      .dc-form .row{
        justify-content: space-between;
      }
      
      .dc-form .row .num-display{
        height: 50px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight:700;
        color:#5271ff !important;
      }
      
      .text-bold{
          font-weight:600;
      }
      
      .dc-form .cards-tags{
          display:flex;
          align-items:center;
          justify-content:center;
          flex-direction:column;
          font-weight:500;
      }
      
      .dc-form .hr{
          opacity:0.5;
      }
      
      .dc-form .cards-tags .num{
          font-weight:700;
      }
      
      .dc-form .cards-tags .color-num{
          color:#5271ff !important;
      }
      
      /*riddhi css changes*/
      
        
      
      .exploreCards-basePage-3ce41a37{
          overflow-y: scroll;
          overflow-x: hidden;
      }
      
      .check-container{
          display:flex;
          align-items:center;
          gap: 10px;
      }
      
      #banner_list input[type="checkbox"]{
        /*display:none;*/
        position: absolute;
        top: 27px;
        right: -12px;
        width: 25px;
        height: 25px;
        z-index:999;
        border-radius:100%;
        background-color: white;
        color:white;
        border:0px;
      }
      
      /*.fa-check-circle::before, .fa-circle-check::before{*/
      /*    content:"" !important;*/
      /*}*/

      
      /*#banner_list input[type="checkbox"]:checked + .fa-check-circle::before, .fa-circle-check::before{*/
      /*    content:"/f058" !important;*/
      /*}*/
      
      #banner_list input[type="checkbox"]:checked{
          /*z-index:-1;*/
          background-color: transparent;
          /*color:white;*/
      }
      
      .img-check-icon{
        background: white;
        border-radius: 100%;
        position: absolute;
        top: 25px;
        right: -9px;
        font-size: 25px;
        color: #07e507;
      }
      
      .dropdown-menu-reverse.active{
          display:block !important;
          z-index:99999;
      }
      /*.dropdown-menu-reverse.active, .dropdown-menu-reverse.active + .dropdown-container-1-reverse{*/
      /*    display:block !important;*/
      /*    z-index:99999;*/
      /*}*/
      
      .overlay-menu-background {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          /*background-color: rgba(0, 0, 0, 0.5);*/
          z-index: 999;
        }
        
        .overlay-menu-background.active{
            display:block;
        }
      
       .exploreCards-basePage-3ce41a37 .dropdown-container-1-reverse{
           display:block;
       }
      .dropdown-menu.active, .dropdown-menu.active + .dropdown-container-1{
          display:block !important;
          z-index:99999;
      }
      
      .overlay-menu-reverse-category {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 999;
        }
        
        .overlay-menu-reverse-category.active{
            display:block;
        }
      
       .exploreCards-basePage-3ce41a37 .dropdown-container-1{
           display:block;
       }
      
        .dropdown-menu-span.dropdown-menu.active{
            display:block;
        }
        .dropdown-menu-label.dropdown-menu.active{
            display:block;
        }
        
        .toggle-span:checked + .dropdown-menu{
            display:block;
        }
        
        /*.basicDetails-5d7f747e .icon-relative-container-grid i{*/
        /*    top:14%;*/
        /*}*/
        
        .basicDetails-5d7f747e .input-field{
            margin:0px;
            margin-top:5px;
            margin-bottom:5px;
        }
        
        .fa-solid.fa-ellipsis-vertical:hover .dropdown-menu-reverse{
            display:block !important;
        }
        
        .d-block{
            display:block !important;
        }
        .d-none{
            display:none !important;
        }
        
        /*.basicDetails-5d7f747e .icon-relative-container-grid i.otp-lock{*/
        /*    top:35%;*/
        /*}*/
        
        .exploreCards-basePage-3ce41a37 .dropdown-menu , .exploreCards-listPage-e1d02d07 .dropdown-menu{
            top:0;
        }
        
        .w-80{
            width:80%;
        }
        
        .font-sml{
            font-size:12px !important;
        }
        
        .font-14{
            font-size:14px !important;
        }
        .width-max{
            width:max-content !important;
        }
        .font-20{
            font-size:20px !important;
        }
        .gap-20{
            gap:20px !important;
        }
        
        .p-10
        {
            padding: 10px !important
        }
      
        .pl-0{
            padding-left:0px !important;
        }
        
        .text-left{
            text-align:left !important;
        }
        
        .justify-content-between{
            justify-content:space-between;
        }
        
        .align-items-center{
            align-items:center;
        }
        
        .basicDetails-5d7f747e .relative-container i#whatsup_lock{
            position: absolute;
            top: 45%;
            right: -10%;
        }
        
        .basicDetails-5d7f747e .relative-container i#sharelink_lock{
            position: absolute;
            top: 55%;
            right: -10%;
        }
        
        .products-9f521fcc .card-container-scroll{
            /*flex-wrap:wrap;*/
            overflow-x:scroll;
            margin-bottom:5px;
        }
      
      /*Riddhi css changes*/
      
        .products-9f521fcc .card-description{
            /*height:65px;*/
            width:168px;
            overflow-wrap:break-word;
        }
        
        .products-Pages-c09438f3 .row{
            justify-content:start;
        }
        
        .check-container input[type="checkbox"]{
            position:relative;
        }
        
        #enquiry-btn{
            padding:7px;
        }
        
        .profile-pics-container{
            gap:10px;
            margin-bottom:10px;
        }
        
        .mt-10 
        {
            margin-top: 10px;
        }
        
        #email_lock{
            top:45px;
        }
        
        .text-left{
            text-align:left;
        }
        
        .font-med{
            font-size:15px;
        }
      
      .exploreCards-basePage-3ce41a37 .catogary img, .sharedCards-Page1-b24129ba .catogary img, .ExploreSavedcard-2dr3d561 .catogary img,.exploreCards-listPage-e1d02d07 .catogary img{
          width:25px;
          height:25px;
      }
      
      .px-0{
          padding-left:0px !important;
          padding-right:0px !important;
      }
      
      .cropper-container{
          top:-25px;
          left:-25px;
      }
      
      .px-25{
          padding-left: 25px;
        padding-right: 25px;
      }
      
      .crop-bg-button{
          background:#1a73e8 !important;
      }
      
      .popup-bg-button{
          background:#4a90e2 !important;
      }
      
      /*.aligned-btn{*/
      /*    height:50px;*/
      /*    width:50px;*/
      /*}*/
       .toggle-create-blue{
           display:none;
       }
       
       footer .active .toggle-create{
           display:none;
       }
      
      footer .active .toggle-create-blue{
          width:100%;
          display:block;
          display: flex;
        align-items: center;
        justify-content: center;
        object-fit:contain;
        margin-bottom:2px;
      }
      
      .toggle-create{
          width:100%;
          display: flex;
        align-items: center;
        justify-content: center;
        object-fit:contain;
        margin-bottom:2px;
      }
      
      .footer-img{
          width:100%;
          /*display:flex;*/
          /*align-items:center;*/
          /*justify-content:center;*/
          object-fit:contain;
      }
      
      .expanded {
            -webkit-line-clamp: unset !important; /* Show full text when expanded */
            height:auto !important;
        }
        
        .read-more-btn {
            color: blue;
            cursor: pointer;
            display: inline-block;
            font-size: 14px;
        }
      
      mb-photo-1{
          margin-bottom:1px;
      }
      
      /*.toggle-create-change{*/
      /*    width:100%;*/
      /*    display: flex;*/
      /*  align-items: center;*/
      /*  justify-content: center;*/
      /*  object-fit:contain;*/
      /*  margin-bottom:2px;*/
      /*}*/
      
      /*footer .active .toggle-create-blue-change{*/
      /*    width:100%;*/
      /*    display:block;*/
      /*    display: flex;*/
      /*  align-items: center;*/
      /*  justify-content: center;*/
      /*  object-fit:contain;*/
      /*  margin-bottom:2px;*/
      /*}*/
      
      .basic-img{
          /*transform:scale(1.3);*/
          margin-left:10px;
      }
      
      input::placeholder{
          color:gray;
      }
      /*Riddhi css changes*/
      .text-white, .popup button
      {
          color: white !important;
      }
      /*.text-white , .cancel-btn , .popup button*/
      /*{*/
      /*    color: white !important;*/
      /*}*/
      
      .cancel-btn:hover 
      {
          background-color: #999 !important;
      }

      .popup button
      {
          border: none !important;
      }
      
      input 
      {
          color: blue !important;
      }
      textarea 
      {
          color: blue !important;
      }
      
      textarea::placeholder{
          color:gray !important;
      }
      
      
    footer button img , footer button i
    {
        width: 35px !important;
        height: 35px !important;
        margin: auto;
    }
      
    footer footer
    {
        padding: 0 !important;
    }
    
    .c-white{
        color:white !important;
    }
    
    /*.readmore-popup{*/
    /*    display:none;*/
    /*}*/

.readmore-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cke_notifications_area{
    display:none !important;
}

.ExploreSavedcard-2dr3d561 .heading-container .PP-block, .ExploreSavedcard-2dr3d561 .heading-container .DD-block{
    padding: 2px 6px;
}

.saved-explore-icon{
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #009e3a;
    color: white !important;
    font-size: 30px;
}

.Savedcard-2dr3d561 .base_container_2 .form-container-2 .form-container-blocks{
    width:95%;
}




.Savedcard-2dr3d561 .input-field{
    width:94%;
}

      
.w-94{
    width:97%;
}

.Savedcard-2dr3d561 .btn{
    margin-right:10px;
}

.ads .slider img{
    margin:0px 2px;
}

.fa-edit, .fa-pen-to-square{
    color:blue;
}

.fa-trash-alt, .fa-trash-can{
    color:red;
}

.image-container{
    justify-content:space-between;
}


/* payment page */

.payment_new_1sb334710 .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 5px;
}

.payment_new_1sb334710 .payment-method {
  margin-bottom: 15px;
}

.payment_new_1sb334710 .payment-method input[type="radio"] {
  margin-right: 10px;
}

.payment_new_1sb334710 .fields-container {
  display: none;
  border: 1px solid #ddd;
  padding: 15px;
  margin-top: 10px;
  border-radius: 6px;
}

.payment_new_1sb334710 input[type="radio"]:checked ~ .fields-container {
  display: block;
}

.payment_new_1sb334710 .input-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.payment_new_1sb334710 .input-group .main-label {
  font-size: 16px;
  font-weight: 600;
  color:black;
}

.payment_new_1sb334710 .input-group label {
  display: block;
  color: black;
  /*color: #666;*/
  width: 200px;
  font-size: 14px;
  font-weight: 500;
}

.payment_new_1sb334710 #net-amount {
  background-color: #f5f5f5;
}

.payment_new_1sb334710 .save-btn {
  width: fit-content;
  margin-left: auto;
}

.homePage-51ea6cf0 .position{
    font-weight:500;
}

 .Enquries-463ecf22 .download-btn{
     padding:0px 8px;
     height:auto;
 }
 
 .txt-big{
     font-size:22px;
 }
 
 .no_click{
     pointer-events:none;
     background-color: #EEE !important;
     color:gray !important;
     border:none !important;
 }
 
 #error_edit_msg1{
     font-size:12px !important;
 }
 
 .w-95{
     width:95% !important;
 }
 
 .mt-5{
     margin-top:5px !important;
 }
 
 .fa-solid.fa-file-word.basic{
     transform:scale(1.5);
 }
 
 .cardPage-fbaa7205 .check-container{
     justify-content:center;
 }
 
 @media(max-width:375px){
     
 .card-res{
     flex-direction:column;
     align-items:start !important;
 }
 footer {
  margin-top: 20px;
}
 }
 
 #pay_list span.red p , .network-container span.red p
 {
     color:red !important;
     font-size:12px !important;
 }
 
 .scrollable-content.planPage-984c611a{
     padding:0px !important;
 }
 
 .planPage-984c611a .icon-box{
     background-color:#fffae6;
     display:flex;
     justify-content:center;
     align-items:center;
 }
 
 .planPage-984c611a .pricing-table td .icon-box{
     /*width:30px;*/
     height:30px;
     padding:5px;
 }
 
.planPage-984c611a .pricing-table td.row-title{
     /*height:30px;*/
 }
 
 .planPage-984c611a .pricing-table td{
     padding-top:0px;
     padding-bottom:0px;
 }
 
 .flex-col{
     flex-direction:column !important;
 }
 
 .w-91{
     width:91% !important;
 }
 
 .w-full{
     width:100%;
 }
 
 .text-black{
     color:black !important;
 }
 
 .w-150{
     width:150px !important;
 }

.payment_new_1sb334710 .input-field{
    margin-top:5px !important;
}

.text-lightgray{
    color:lightgray;
}

.bg-gray{
    background-color:#D3D3D3;
}
.bg-white{
    background-color:white;
}
.bg-lightgray{
    background-color:#cccccc;
}

.text-gray{
    color:#585858 !important;
}



.w-fit{
    width:fit-content !important;
}

.py-2{
    padding-top:2px !important;
    padding-bottom:2px !important;
}
.py-0{
    padding-top:0px !important;
    padding-bottom:0px !important;
}
.my-0{
    margin-top:0px !important;
    margin-bottom:0px !important;
}

.mx-auto{
    margin-left:auto;
    margin-right:auto;
}

#pay_mode0{
    margin-left:0px !important;
}

.payment_new_1sb334710 .input-group select:hover{
    background-color:#cccccc;
}

.text-large{
    font-size:18px !important;
}
      
.bank-details{
    overflow-x:scroll;
}      

.bank-details table tr td,.bank-details table tr th{
    white-space:nowrap;
    padding-right:10px;
    padding-left:10px;
    border:1px solid black;
}

.bank-details table tr td{
    font-size:14px;
    font-weight:500;
}

.bank-details table tr th{
    text-align:left;
    border-bottom:1px solid black;
    font-size:16px;
}

.bank-details table{
    border-collapse:collapse;
    border:1px solid black;
    border-radius:10px;
}

.bank-details-container{
    border:1px solid black;
    padding:10px;
    border-radius:5px;
    margin-top:5px;
    margin-bottom:5px;
}

.border-gray{
    border-color:gray !important;
}

.relative{
    position:relative;
}

.absolute{
    position:absolute;
}

.t-0{
    top:0;
}

.l-0{
    left:0;
}

.h-full{
    height:100%;
}

.hide{
    opacity:0;
}

.p-10{
    padding:10px !important;
}

.border-1{
    border:1px solid black;
}

.rounded-full{
    border-radius:20px;
}

.bg-purple{
    background-color:#8753fe;
}

.bg-purple-gradient{
    /*background:rgb(243,229,252);*/
    /*background: linear-gradient(100deg, rgba(255,255,255,1) 0%,rgba(187,186,246,1) 86%,rgba(152,142,239,1) 100%);*/
    background-image:url("../img/abstract-80-background-wallpaper-gradient_792836-174373.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.w-auto{
    width:auto;
}

.fw-bold{
    font-weight:bold !important;
}
.fw-600{
    font-weight:600 !important;
}
.fw-800{
    font-weight:800 !important;
}

.mt-10{
    margin-top:10px !important;
}

.mb-10{
    margin-bottom:10px !important;
}

.my-0{
    margin-top:0px !important;
    margin-bottom:0px !important;
}

.text-lg{
    font-size:26px !important;
}
.text-24{
    font-size:24px !important;
}
.text-18{
    font-size:18px !important;
}

.px-10{
    padding-right:10px !important;
    padding-left:10px !important;
}
.mx-58{
    margin-right:58px !important;
    margin-left:58px !important;
}

.lh-30{
    line-height:30px !important;
}
.lh-22{
    line-height:22px !important;
}

.w-50{
    width:50%;
}
.w-23{
    width:23%;
}
.w-100vw{
    width:100vw;
}

.mobile-img-wrapper{
    overflow-x:scroll;
    gap:5px;
}

.sticky-btn{
    position:sticky;
    bottom:5px;
    right:5px;
}

.text-right{
    text-align:right;
}

.mr-5{
    margin-right:5px;
}

.bg-blue{
    background:#5271ff;
}

.mb-10{
    margin-bottom:10px !important;
}
.mt-10{
    margin-top:10px !important;
}

.py-5{
    padding-top:5px !important;
    padding-bottom:5px !important;
}

.text-24{
    font-size:24px !important;
}

.text-center{
    text-align:center;
}

.active-selected-theme
{
    border: 1px solid black;
    border-radius: 7px;
    background-color: #FFC !important;
    color:black !important;
    opacity:1 !important;
}

/*.access-blocked .row.theme-container > .phone-img:first-child img{*/
/*    opacity:1 !important;*/
/*}*/

.static .ads{
    position: sticky;
    top: 0;
    left: 0;
    background: white;
    z-index: 100000;
}

.fw-boldest{
    font-weight:900 !important;
}

.font-italic{
    font-style:italic;
}

.h-200{
    height:200px;
}
.w-200{
    width:200px;
}

.card-bg{
    background-color:#024d74;
}

.px-25{
    padding-left:25px !important;
    padding-right:25px !important;
}

.column{
    flex-direction:column;
}

.card-container{
    overflow-x:auto;
    gap:5px;
}

.min-w-60{
    min-width:60% !important;
}

.px-5{
    padding-left:5px !important;
    padding-right:5px !important;
}

.w-33{
    width:33% !important;
}

.icon-bg{
    background:#034a80;
}

.my-2{
    margin-top:2px !important;
    margin-bottom:2px !important;
}

.text-12{
    font-size:12px !important;
}

.p-15{
    padding:15px !important;
}

.scroll-x{
    overflow-x:scroll;
}

.w-58{
    width:58% !important;
}

/*.disable-btn{*/
/*    pointer-events: none;*/
/*    color: gray;*/
/*    border-color: rgba(0,0,0,0.4);*/
/*    border-radius: 5px;*/
/*}*/

.submit-btn{
    background-color:#5271ff;
    color:white;
    border-radius: 5px;
    padding: 7px 15px !important;
}

button[disabled]
{
    background:#cccccc !important;
    color:gray !important;
}

.how-it-works .card{
    width:250px;
    height:250px;
    background-color: #024d74;
}

.s-big img{
    transform:scale(1.5);
}
.s-large img{
    transform:scale(1.2);
}

.p-10{
    padding:10px !important;
}

.text-10{
    font-size:10px !important;
}

.tooltip-content {
      position: absolute;
      display: none;
      padding: 10px;
      font-size: 12px;
      line-height: 1.3em;
      z-index: 999;
      max-width: 400px;
      /* tooltip content width */
      border: 1px solid gray;
      /* tooltip content border */
      z-index: 9999;
      background-color: white;
      /* tooltip background color */
}


/* Franchisee and Add-Franchisee */

.franchisee-gd6663hs .franchise-header,
.add-franchisee-gd6663hs .franchise-header,
.franchise_list34desft2 .franchise-header,
.card_dashboard45dfrte .franchise-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.franchisee-gd6663hs .franchise-header-left, 
.add-franchisee-gd6663hs .franchise-header-left,
.franchise_list34desft2 .franchise-header-left,
.card_dashboard45dfrte .franchise-header-left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.franchisee-gd6663hs .franchise-header-title,
.add-franchisee-gd6663hs .franchise-header-title,
.franchise_list34desft2 .franchise-header-title,
.card_dashboard45dfrte .franchise-header-title{
  font-size: 25px;
  font-weight: bold;
}

.franchisee-gd6663hs .franchise-icon,
.add-franchisee-gd6663hs .franchise-icon,
.franchise_list34desft2 .franchise-icon,
.card_dashboard45dfrte .franchise-icon{
  width: 40px;
  height: 40px;
}

.franchise_list34desft2 .edit{
    font-size: 20px;
}

.franchisee-gd6663hs .add-button,
.add-franchisee-gd6663hs .add-button,
.franchise_list34desft2 .add-button,
.card_dashboard45dfrte .add-button{
  background-color: #444;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
}

.franchisee-gd6663hs .card-header,
.add-franchisee-gd6663hs .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.franchisee-gd6663hs .card-title,
.add-franchisee-gd6663hs .card-title {
  font-size: 22px;
  font-weight: bold;
}

.franchisee-gd6663hs .card-subtitle,
.add-franchisee-gd6663hs .card-subtitle {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
}

.franchisee-gd6663hs .close-button,
.add-franchisee-gd6663hs .close-button {
  color: #ff5555;
  font-size: 36px;
  cursor: pointer;
}

.franchisee-gd6663hs .form-group,
.add-franchisee-gd6663hs .form-group {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
}

.franchisee-gd6663hs .form-divider,
.add-franchisee-gd6663hs .form-divider {
  margin: 10px 0;
  border-top: 1px solid black;
}

.franchisee-gd6663hs .form-row,
.add-franchisee-gd6663hs .form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.franchisee-gd6663hs .form-label,
.add-franchisee-gd6663hs .form-label {
  font-size: 16px;
  color: #333;
  flex: 0.4;
}

.franchisee-gd6663hs .form-value,
.add-franchisee-gd6663hs .form-value {
  flex: 0.6;
  font-size: 16px;
  color: #555;
}

.franchisee-gd6663hs .date-input,
.add-franchisee-gd6663hs .date-input {
  position: relative;
}

.franchisee-gd6663hs .calendar-icon,
.add-franchisee-gd6663hs .calendar-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.franchisee-gd6663hs .button-group,
.add-franchisee-gd6663hs .button-group {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.franchisee-gd6663hs .button,
.add-franchisee-gd6663hs .button {
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}

.franchisee-gd6663hs .button-discard,
.add-franchisee-gd6663hs .button-discard {
  background-color: #555;
  color: white;
}

.franchisee-gd6663hs .button-save,
.add-franchisee-gd6663hs .button-save {
  background-color: #555;
  color: white;
}

.franchisee-gd6663hs .status-dropdown,
.add-franchisee-gd6663hs .status-dropdown {
  background-color: #e8f5e9;
  color: #333;
}

.franchisee-gd6663hs .franchisee-card, .add-franchisee-gd6663hs .franchisee-card {
  background-color: white;
  border-radius: 10px;
  margin: 15px 0px;
  padding: 10px; 
  border: 1.3px solid black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.franchisee-gd6663hs input,
.franchisee-gd6663hs select,
.add-franchisee-gd6663hs input,
.add-franchisee-gd6663hs select
{
  margin: 3px 0 !important;
}

/* Remove the date picker icon in WebKit browsers (Chrome, Safari) */
.franchisee-gd6663hs input[type="date"]::-webkit-calendar-picker-indicator ,.add-franchisee-gd6663hs input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
} 

/* For Firefox */
.franchisee-gd6663hs input[type="date"], .add-franchisee-gd6663hs input[type="date"] {
    appearance: none;
}

/* .add-franchisee-gd6663hs */


.add-franchisee-gd6663hs input::placeholder {
  color: #aaa;
}

.add-franchisee-gd6663hs .name-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.add-franchisee-gd6663hs .name-field {
  flex: 1;
}

.add-franchisee-gd6663hs .section-box {
  border: 1px solid black;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
}


/* theme container*/
.theme-index-container{
    border: black 1px solid;
    border-radius: 7px;
    -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
    box-shadow: 3.5px 4px 0 1px #dddddd;
}

/* explore list */

.tab-container, .cards-Qxewxbw12311 .card-section{
    background-color: white;
    border: 1.3px solid black;
    border-radius: 4px;
    -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
    box-shadow: 3.5px 4px 0 1px #dddddd;
    margin: 10px;
}

/* Add this to your CSS (you can include it in your header.php or as an inline style) */

.heart-icon {
    color: #D22B2B;
    cursor: pointer;
    font-size: 24px;
}

/*.tab-container {*/
/*    position: absolute;*/
/*    background-color: #fff;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*    padding: 10px;*/
/*    z-index: 1000;*/
/*    margin-top: 10px;*/
/*    display: block;*/
     /* Adjust as needed 
/*}*/

.icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.icon-container:hover {
    transform: scale(1.1);
}

.icon-container i {
    font-size: 20px;
}

.icon-container:nth-child(1) {
    background-color: white;
    border: 2px solid black;
}

.icon-container:nth-child(2) {
    background-color: #25D366;
}

.icon-container:nth-child(3) {
    background-color: #0047AB;
}

.icon-container:nth-child(4) {
    background-color: #663399;
}

.icon-container:nth-child(5) {
    background-color: white;
}

.icon-container:nth-child(5) i {
    color: #D22B2B;
}


/* new explore list icons display */
.icons-container-first {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.icon-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.phone-wrapper {
    border: 1px solid black;
    border-radius: 10px;
}

.whatsapp-wrapper {
    background-color: #25D366;
}

.view-wrapper {
    background-color: #0044CC;
    border-radius: 50%;
}

.phone-icon {
    color: black;
    font-size: 20px;
}

.whatsapp-icon {
    color: white;
    font-size: 22px;
}

.view-icon {
    color: white;
    font-size: 20px;
}

.crown-wrapper {
    color: gold;
    font-size: 20px;
}

/* cards styles */

.cards-Qxewxbw12311 .card-section{
    padding: 10px;
}

.cards-Qxewxbw12311 .dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
}

.cards-Qxewxbw12311 .section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cards-Qxewxbw12311 .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: start;
}

.cards-Qxewxbw12311 .stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0 10px;
    background-color: #f0f0f0;
    text-align: center;
    min-height: 100px;
}

.cards-Qxewxbw12311 .stat-card.empty {
    visibility: hidden;
}

.cards-Qxewxbw12311 .card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}

.cards-Qxewxbw12311 .main-number {
    font-size: 30px;
    font-weight: 700;
    color: #1f3cad;
    line-height: 1;
    margin: 4px 0;
}

.cards-Qxewxbw12311 .breakdown {
    font-size: 13px;
    font-weight: 600;
}

.cards-Qxewxbw12311 .separator { 
    margin: 0px 2px;
}

@media (max-width: 600px) {
    .cards-Qxewxbw12311 .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* franchise_list styles */

.franchise_list34desft2 .search-filter-section {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0; 
} 

.franchise_list34desft2 .search-filter-section .search-box {
  position: relative;
  flex: 1; /* take all available width */
}

.franchise_list34desft2 .search-filter-section .search-box input {
  width: 90%;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #aaa;
  border-radius: 6px;
  outline: none;
}

.franchise_list34desft2 .search-filter-section .search-box input:focus {
  border-color: #0072FF;
  box-shadow: 0 0 3px rgba(0, 114, 255, 0.4);
}

.franchise_list34desft2 .search-filter-section .search-box .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 1.2rem;
  pointer-events: none;
}

.franchise_list34desft2 .search-filter-section .filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1.3px solid black;
  border-radius: 4px;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
  cursor: pointer;
  font-size: 1rem;
}

.franchise_list34desft2 .search-filter-section .xls_doc {
  width: 30px;
  height: auto;
  margin-right: 3px;
}

.franchise_list34desft2 .search-filter-section .filter-btn .filter-icon {
  font-size: 1.1rem;
  color: #333;
}

.franchise_list34desft2 .search-filter-section .filter-btn .filter-text {
  font-weight: 600;
  color: #000;
}

/* card_dashboard */

.card_dashboard45dfrte .row{
    display: flex;
    gap: 5px;
}

.card_dashboard45dfrte .column{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card_dashboard45dfrte .controls-section {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.card_dashboard45dfrte .dropdown-wrapper {
  position: relative;
  flex: 1;
}

.card_dashboard45dfrte .custom-select {
  width: 100%;
  padding: 8px 12px 8px 12px;
  font-size: 1rem;
  border: 1px solid #aaa;
  color: #555;
  border-radius: 6px;
  appearance: none;
  background: #fff;
  cursor: pointer;
}

.card_dashboard45dfrte .custom-select:focus {
  outline: none;
  border-color: #0072FF;
  box-shadow: 0 0 3px rgba(0,114,255,0.4);
}

.card_dashboard45dfrte .select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
  font-size: 1rem;
}

.card_dashboard45dfrte .icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 1.1rem;
  color: #333;
}

.card_dashboard45dfrte .search-btn {
}

.card_dashboard45dfrte .xls-btn {
  padding: 0;
  border: none;
  box-shadow: none;
}

.card_dashboard45dfrte .xls-btn img {
  width: 30px;
  height: auto;
}

.card_dashboard45dfrte .filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #fff;
  border: 1.3px solid black;
  border-radius: 4px;
  -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
  box-shadow: 3.5px 4px 0 1px #dddddd;
  cursor: pointer;
  font-size: 1rem;
}

.card_dashboard45dfrte .filter-btn i {
  font-size: 1.1rem;
}

.card_dashboard45dfrte .filter-btn span {
  font-weight: 600;
}



.card_dashboard45dfrte .card-container {
    border: 1.3px solid #000;
    border-radius: 15px;
    padding: 5px;
    width: 95%;
    max-width: 600px;
    background-color: white;
    margin: 5px auto;
    position: relative;
    display: flex;
    -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
    box-shadow: 3.5px 4px 0 1px #dddddd;

}

.card_dashboard45dfrte .left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0.2;
    margin-right: 0px;
}

.card_dashboard45dfrte .entry-label {
    text-align: center;
    font-weight: 500;
    color: #555;
    margin: 2px 0px;
    font-size: 12px;
}

.card_dashboard45dfrte .logo-container {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.card_dashboard45dfrte .logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card_dashboard45dfrte .contact-label {
    text-align: center;
    color: #5470FF;
    font-size: 12px;
    margin-bottom: 5px;
}

.card_dashboard45dfrte .contact-icons {
    display: flex;
    gap: 10px;
    margin-top: 5px; 
}


.card_dashboard45dfrte .phone-icon {
    width: 25px;
    height: 25px;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}


.homePage-51ea6cf0 .whatsapp {
    width: auto;            
    margin: 0;              
    padding: 0;
    display: block;         
}


.homePage-51ea6cf0 .whatsapp-share-btn {
    background-color: #25D366;   
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;        
    align-items: center;
    gap: 8px;
    min-width: 0;                
    width: auto;                 
    box-shadow: none;
    margin-left: 10px;
}
.homePage-51ea6cf0 .whatsapp-share-btn i {
    color: white;
    font-size: 24px;
}
.homePage-51ea6cf0 .whatsapp-share-btn:hover {
    background-color: #235702;
}

.card_dashboard45dfrte .whatsapp-icon {
    width: 25px;
    height: 25px;
    background-color: #25D366;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.card_dashboard45dfrte .right-section {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.card_dashboard45dfrte .company-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 0 0;
}

.card_dashboard45dfrte .person-name {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 0 0;
}

.card_dashboard45dfrte .location,
.card_dashboard45dfrte .card-dates,
.card_dashboard45dfrte .expiry-date {
    color: #555;
    margin: 2px 0;
}

.card_dashboard45dfrte .amount-paid {
    color: #5470FF;
    margin: 2px 0;
}

.card_dashboard45dfrte .status-dropdown {
    margin: 2px 0;
    position: relative;
}

.card_dashboard45dfrte .status-select {
    width: 150px;
    padding: 4px 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 13px;
    color: #555;
    background-color: white;
}


.card_dashboard45dfrte .card-link,
.card_dashboard45dfrte .created-by,
.card_dashboard45dfrte .referred-by,
.card_dashboard45dfrte .user-name {
    margin: 2px 0;
}

.card_dashboard45dfrte .card-link,
.card_dashboard45dfrte .blue-text {
    color: #5470FF;
}

.card_dashboard45dfrte .horizontal-line {
    border-top: 1px solid #ccc; 
    margin: 2px 0;
}

.card_dashboard45dfrte .icons_container{
    display: flex;
    flex-direction: column;
    flex: 0.1;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
}

.card_dashboard45dfrte .edit-icon i,
.card_dashboard45dfrte .share-icon i,
.card_dashboard45dfrte .delete-icon i {
    font-size: 25px;
    color: #555;
}

.card_dashboard45dfrte .delete-icon i{
    color: red;
}

.landing-page-ec38cn3v89 .samples-section-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-page-ec38cn3v89 .samples-section-cards p {
    margin: 0;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-page-ec38cn3v89 .desc-preview {
  margin: 0;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  color: #333;
}

.landing-page-ec38cn3v89 .read-more {
  color: blue;
  font-weight: 500;
  cursor: pointer;
}

.landing-page-ec38cn3v89 .contact-us-content {
    z-index: 10;
}

.landing-page-ec38cn3v89 .contact-us-heading{
    font-size: 40px;
}

.landing-page-ec38cn3v89 .phone-img {
    z-index: 9;
}

.landing-page-ec38cn3v89 .h-line {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

.landing-page-ec38cn3v89 .contact-us {
    overflow: hidden;
}

.landing-page-ec38cn3v89 .contact-us-content .icon {
    margin: 10px;
}

.landing-page-ec38cn3v89 .feature-container p {
    text-align: center;
}



/*card activation*/

      .Card-Activation-w74fh83
      {
        font-family: "Arial Rounded MT Bold", sans-serif;
        background: #eef7ff;
        border: 1px solid #ccc;
        border-radius: 12px;
        padding: 20px;
        max-width: 420px;
        margin: auto;
        box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
        height: 100%;
        overflow-y: scroll;
      }

      .Card-Activation-w74fh83 h2 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 20px;
      }

      .Card-Activation-w74fh83 .form-row {
        display: grid;
        grid-template-columns: 40% 60%;
        align-items: center;
        margin-bottom: 16px;
        gap: 8px;
        position: relative;
      }

      .Card-Activation-w74fh83 .form-row label {
        font-weight: bold;
        font-size: 0.95rem;
      }

      .Card-Activation-w74fh83 .form-row label span {
        color: red;
      }

      .Card-Activation-w74fh83 .form-row input,
      .Card-Activation-w74fh83 .form-row select {
        width: 100%;
        padding: 8px 12px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
      }

      .Card-Activation-w74fh83 .form-row input[type="date"] {
        width: calc(100% - 24px);
      }

      .Card-Activation-w74fh83 .dual-select {
        display: flex;
        gap: 8px;
      }

      .Card-Activation-w74fh83 .rs-field {
        display: flex;
        align-items: center;
        border: 1px solid #ccc;
        border-radius: 6px;
        overflow: hidden;
        width: 70%;
        background: #ffffff;
      }

      .Card-Activation-w74fh83 .rs-field input:first-child {
        border: none;
        background: transparent;
        width: 30px;
        padding: 8px 0 8px 8px;
        font-weight: bold;
        pointer-events: none;
      }

      .Card-Activation-w74fh83 .rs-field input:last-child {
        border: none;
        flex: 1;
        padding: 8px;
        background: transparent;
      }

      .Card-Activation-w74fh83 .checkbox-row {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .Card-Activation-w74fh83 .checkbox-row input {
        width: 18px;
        height: 18px;
      }

      .Card-Activation-w74fh83 .save-btn {
        background: #4a72ff;
        color: white;
        font-weight: bold;
        font-size: 1.1rem;
        border: none;
        border-radius: 4px;
        padding: 4px 10px;
        /* width: 100%; */
        box-shadow: 2px 2px 0px #aaa;
        cursor: pointer;
        margin-top: 10px;

        display: block;
        margin-left: auto;
      }

      .Card-Activation-w74fh83 .info-box {
        position: relative;
        margin-top: 20px;
        border: 1px solid #ccc;
        background: white;
        border-radius: 10px;
        padding: 10px;
        font-size: 0.8rem;
      }

      .Card-Activation-w74fh83 .edit-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        font-size: 1rem;
        color: #555;
        transition: color 0.2s ease;
      }

      .Card-Activation-w74fh83 .edit-icon:hover {
        color: #000;
      }

      .Card-Activation-w74fh83 .info-box a {
        color: #0066ff;
        text-decoration: none;
        font-weight: bold;
      }

      .Card-Activation-w74fh83 .info-box .username {
        display: block;
        margin-top: 6px;
        color: #2854ff;
        font-weight: bold;
      }

      @media (max-width: 480px) {
        .Card-Activation-w74fh83 {
          padding: 15px;
        }

        .Card-Activation-w74fh83 .form-row {
          grid-template-columns: 100%;
        }

        .Card-Activation-w74fh83 .form-row label {
          margin-bottom: 6px;
        }

        .Card-Activation-w74fh83 .rs-field {
          width: 100%;
          margin-left: 0;
        }
      }
      
/*user update*/
/** {*/
/*        box-sizing: border-box;*/
/*        font-family: "Arial", sans-serif;*/
/*      }*/

/*      body {*/
/*        background-color: #f2f2f2;*/
/*        padding: 20px;*/
/*      }*/

      .card {
        background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
      }

      .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
      }

      .card-header h2 {
        font-size: 20px;
        font-weight: bold;
        margin: 0;
      }

      .card-header p {
        font-size: 13px;
        font-weight: bold;
        color: #333;
        margin: 0;
        margin-left: 4px;
      }

      .field {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 6px 0;
      }

      .field label {
        flex: 1;
        font-size: 13px;
      }

      .field input,
      .field select {
        flex: 1;
        padding: 5px;
        font-size: 13px;
        border: 1px solid #999;
        border-radius: 4px;
        background: white;
      }

    .third-row .field {
          gap: 10px;
        justify-content: start;
      }

      .third-row .field label,
      .third-row .field input {
        width: 33%;
        flex: none;
      }

      .third-row button {
        background-color: #007bff;
        color: white;
        font-size: 13px;
        padding: 6px 10px;
        border: none;
        border-radius: 4px;
        box-shadow: 1px 1px 2px #888;
        cursor: pointer;
      }

      .readonly {
        background-color: #f4f4f4;
        font-weight: bold;
      }

      .subfield {
        font-size: 13px;
        margin: 6px 0;
        color: #666;
      }

      .field-status {
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .field-status label {
        flex: 1;
        font-size: 13px;
      }

      .field-status select {
        flex: 1;
        background-color: #e1f1e8;
        border: 1px solid #888;
        border-radius: 4px;
        font-weight: bold;
        font-size: 13px;
        padding: 5px;
      }

      .card-footer {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 10px;
      }

      .card-footer button {
        padding: 6px 12px;
        font-size: 13px;
        border: none;
        border-radius: 4px;
        background-color: #444;
        color: white;
        cursor: pointer;
      }

      .card-footer button:last-child {
        background-color: #007bff;
      }
     /*end user update css */