.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 259px;
  height: 70px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: #f9f9f9;
}
.nav-left-container{
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.nav-menu{
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.2s ease-in;
}
.nav-menu img{width: 75%;}
.logo{
  display: flex;
  font-family: 'Poppins';
  font-size: 26px;
  align-items: center;
  color: #101010;
}
.logo span{
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #101010;
  transform: rotate(90deg);
  transform-origin: center center;
  margin-left: -2px;
}
.logo img{height: 30px;}
.aside-menu-close-btn{
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-left: auto;
}
.aside-menu-close-btn:hover{background-color: #e9ecef;}
.aside-menu-close-btn img{width: 18px;}
.nav-right-container{
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.nav-login-btn{display: none;}
.nav-register-btn{
  display: none;
  align-items: center;
  column-gap: 8px;
  padding: 10px 15px;
  background-color: #101010;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease-in;
  border-radius: 8px;
}
.nav-register-btn img{width: 15px;}
.nav-register-btn:hover{transform: translateY(-3px);box-shadow: 0 2px 15px rgba(0,0,0,0.2);}
.notification-btn{
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #e9ecef;
}
.notification-btn img{width: 18px;}
.notification-btn-count{
  position: absolute;
  top: -3px;
  left: -3px;
  font-size: 11px;
  background: #101010;
  color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.profile-btn{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 259px;
  height: 60px;
  display: none;
  align-items: center;
  column-gap: 5px;
  padding: 15px;
  border-top: solid #0d0d0d0d 1px;
  background-color: #f9f9f9;
  transition: all 0.1s ease-in;
}
.profile-btn:hover{background-color: #e9ecef;}
.profile-btn figure{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e9ecef;
  font-size: 0px;
  overflow: hidden;
}
.profile-btn img{width: 100%;}
.profile-btn figcaption h5{font-size: 13px;}
.profile-btn figcaption p{
  font-size: 11px;
  opacity: 0.8;
}
.profile-menu{
  position: fixed;
  bottom: 65px;
  left: 10px;
  width: 240px;
  border-radius: 15px;
  background-color: #fff;
  padding: 5px;
  box-shadow: 0px 8px 12px 0px #00000014,0px 0px 1px 0px #0000009e;
  z-index: 1001;
  display: none;
}
.profile-menu hr{
  margin:0px;
  border-color: #0d0d0d0d;
}
.profile-menu-item{
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin: 5px auto;
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 14px;
  overflow: hidden;
}
.profile-menu-item label{margin-left: auto;font-weight: 400;}
.profile-menu-item img{width: 18px;border-radius: 2px;max-height: 18px;}
.profile-menu-item:hover{
  background-color: #e9ecef;
}
.profile-menu .focused{font-weight: 400;}
.profile-menu .focused:hover{background-color: transparent;}

.aside-menu{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  height: 100%;
  background-color: #f9f9f9;
  border-right: solid #0d0d0d0d 1px;
  overflow: auto;
  z-index: 999;
}
.aside-menu::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
.aside-menu-container{padding: 70px 10px 65px 10px;}
.aside-menu-label{
  opacity: 0.4;
  padding-top: 12px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 400;
  font-size: 13px;
}
.aside-menu-item{
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 400;
  padding: 8px 5px;
  transition: all 0.2s ease-in;
  border-radius: 8px;
}
.aside-menu-item:hover{background-color: #e9ecef;}
.aside-menu-item figure{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  min-width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 20px;
  overflow: hidden;
}
.aside-menu-item  img{width: 100%;}
.aside-menu-item  figcaption h5{font-size: 14px;font-weight: 400;}
.aside-menu-item  figcaption p{
  font-size: 11px;
  opacity: 0.8;
}
.aside-menu-tools .aside-menu-item{margin-bottom: 8px;}
.aside-menu-tools .aside-menu-item figure{
  width: 20px;
  min-width: 20px;
  height: auto;
  border-radius: 0px;
}
.aside-menu-tools .aside-menu-item figcaption h5{font-size: 14px;font-weight: 400;}
.aside-menu-item-skeleton{
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 5px;
  width: 100%;
}
.aside-menu-item-skeleton .avatar{
  position: relative;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background-color: #e9ecef;
  overflow: hidden;
}
.aside-menu-item-skeleton .content{width: 100%;}
.aside-menu-item-skeleton .name{
  position: relative;
  width: 25%;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 15px;
  overflow: hidden;
}
.aside-menu-item-skeleton .quote{
  position: relative;
  display: block;
  width: 75%;
  margin-top: 8px;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 15px;
  overflow: hidden;
}
.aside-menu-item-skeleton .name::after,
.aside-menu-item-skeleton .quote::after,
.aside-menu-item-skeleton .avatar::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform:translateX(-100%);
  animation:shimmer 1.1s linear infinite;
  border-radius:inherit;
  pointer-events:none;
}
@keyframes shimmer{100%{transform:translateX(100%)}}
#app{
  margin:15px 15px 15px 275px;
  height: 100%;
}
#app .app-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}
#app .app-title p{
  padding-top: 5px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.7;
}
#app .app-title .button-group{
  display: flex;
  align-items: center;
  column-gap: 8px;
}
#app .app-title .button{
  display: block;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.2s ease-in;
}
#app .app-title .button.active:hover{transform: translateY(-3px);box-shadow: 0 2px 15px rgba(0,0,0,0.2);}
#app .app-title .button.active{
  background: #101010;
  font-size: 14px;
  color: #fff;
}
#toast-container{
  position: fixed;
  top: 20px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
  max-width: 35%;
  pointer-events: none;
  align-items: center;
}
.toast{
  width: 100%;
  pointer-events: auto;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 12px 12px;
  border-radius: 10px;
  box-shadow: 0px 8px 12px 0px #00000014, 0px 0px 1px 0px #0000009e;
  background: #101010;
  color: #fff;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
  font-size: 14px;
}
.toast.show{ opacity:1; transform: translateY(0); }
.toast .icon-wrap{
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}
.toast .icon-wrap img{width: 18px; height: 18px; display:block;}
.toast .content{ display:flex; flex-direction:column; gap:4px; }
.toast .title{ font-weight: 500; }
.toast .desc{ opacity:.9;font-weight: 400;overflow-wrap: anywhere;word-break: break-word; }
.toast .action-btn{
  margin-left: 8px;
  border: none; border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,.18);
  color: #fff; cursor: default;
  font-weight: 600;
  transition: transform .05s ease, background .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.toast .action-btn:active{ transform: translateY(1px); }
.toast .action-btn:focus{ outline: 2px solid rgba(255,255,255,.6); outline-offset: 2px; }

.info-state{
  background: #fff;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.info-state .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: #e9ecef;
  border: 3px solid #fff;
}
.info-state .icon img{max-width: 80px;}
.info-state .title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #101010;
}
.info-state .message {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 28px;
}
.st-primary{ 
  border-color: #101010 !important; 
  color:#101010;
} 
.st-primary-bg{
  background-color: #101010;
  color: #fff;
}
.st-success{ 
  border-color: #28a745 !important; 
  color:#28a745;
} 
.st-success-bg{
  background-color: #28a745;
  color: #fff;
}
.st-warning{
  border-color: orange !important; 
  color:orange;
}
.st-warning-bg{
  background-color: orange;
  color: #fff;
}
.st-danger{
  border-color: #f03e3e !important; 
  color:#f03e3e;
}  
.st-danger-bg{
  background-color: #f03e3e;
  color: #fff;
}

.warning-container {
    background: #e9ecef;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.warning-container-icon {
    color: #f59e0b;
    font-size: 18px;
    margin-top: -5px;
}
.warning-container-content {flex: 1;}
.warning-container-title {
    color: #101010;
    opacity: 0.9;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.warning-container-text {
    opacity: 0.8;
    font-size: 11px;
}

.popup-modal--xs .popup-modal-container{ width: 30%; }
.popup-modal--sm .popup-modal-container{ width: 50%; }
.popup-modal--md .popup-modal-container{ width: 70%; }
.popup-modal--lg .popup-modal-container{ width: 90%; }
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1.5px);
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.popup-modal.active {
  opacity: 1;
}
.popup-modal-container{
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: white;
  border-radius: 16px;
  border: solid #0d0d0d0d 1px;
  box-shadow:0 12px 32px rgba(0, 0, 0, 0.24),0 4px 12px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
  max-height: 90%;
  width: 45%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  z-index: 99999;
}
.popup-modal-header{
  padding: 10px 5px 5px 15px;
  font-size: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  opacity: 0.8;
}
.popup-modal-close-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  margin-left: auto;
}
.popup-modal-close-btn img{width: 40%;}
.popup-modal-close-btn:hover{background-color: #e9ecef;}
.popup-modal-content {
  padding: 2px 10px 10px 10px;
  margin: 5px;
  overflow-y: auto;
}
.popup-modal-content.basic{
  padding: 0px 10px 0px 0px;
  margin: 15px 5px 15px 15px;
}
.popup-modal-content::-webkit-scrollbar {width: 8px;}
.popup-modal-content::-webkit-scrollbar-thumb {
  background: #0000001a;
  border-radius: 4px;
}

.contract-item{
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 15px;
  border: solid #e9ecef 2px;
  transition: all 0.2s ease;
}
.contract-item:hover label img{margin-right: 5px;}
.contract-item figure{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e9ecef;
  margin-right: 10px;
}
.contract-item figure img{width: 15px;}
.contract-item h4{padding-bottom: 5px;font-size: 14px;}
.contract-item div{display: flex;align-items: center;}
.contract-item div p{
  background-color: #e9ecef;
  font-size: 11px;
  border-radius: 5px;
  padding: 5px 8px;
  margin-right: 5px;
  opacity: 0.7;
}
.contract-item div span{opacity: 0.6;font-size: 12px;}
.contract-item label{
  display: block;
  margin-left: auto;
}
.contract-item label img{width: 15px;opacity: 0.7;transition: all 0.2s ease;}

.contract-content h1,.contract-content h2,.contract-content h3{line-height:1.3;} 
.contract-content h1{font-size:1.6em;text-align:center;padding-bottom:1em} 
.contract-content h2{font-size:1.4em;padding-bottom:15px} 
.contract-content h3{font-size:1.2em;font-weight:500;padding-bottom:15px} 
.contract-content p{font-size:14px;font-weight:400;margin:0;word-wrap: break-word;overflow-wrap: break-word;padding-bottom: 2em;opacity: 0.9;} 
.contract-content strong{color:#101010;font-weight:500} 
.contract-content em{color:#555;font-style:italic} 
.contract-content a{text-decoration:underline;font-size:14px;font-weight:500;} 
.contract-content ul,.contract-content ol{margin:0 0 0 1em;list-style: inherit;padding-bottom:15px;font-size:14px;font-weight:400;} 
.contract-content li{margin-bottom:.5em} 

.form{width: 100%;}
.form h1{
  display:block;
  text-align: center;
  font-weight:500;
  font-size:22px; 
}
.form h2{
  display:block; 
  text-align: center;
  font-size:14px;
  font-weight: 400;
  padding-top:6px;
  opacity: 0.8;
}
.form .form-parent-group{
  display: flex;
  column-gap: 15px;
}
.form .form-group{
  display: flex;
  flex-direction: column;
  gap:8px;
  width: 100%;
  margin-top: 24px;
}
.form .form-group label{
  display: flex;
  align-items: center;
  font-size: 14px;
  opacity: 0.9;
  gap:5px;
}
.form .form-group label img{width: 15px;}
.form .form-group p{
  display: block;
  text-align: left; 
  font-weight:400; 
  font-size:13px; 
}
.form-group-checkbox{
  display: flex;
  justify-content: space-between;
  border: solid #e9ecef 1px;
  padding: 10px;
  border-radius: 15px;
  margin-top: 24px;
}
.form-group-checkbox h3{font-size: 14px;}
.form-group-checkbox p{opacity: 0.7;font-weight: 400;font-size: 13px;}
.form-group-checkbox .right{
  display: flex;
  margin-left: 5px;
  justify-content: flex-end;
  column-gap: 15px;
  align-items: center;
}
.form .form-group input,.form .form-group textarea,.form .form-group select{
  display: block;
  padding:10px 14px;
  height: 45px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  border: solid #0d0d0d0d 2px;
  font-weight: 400;
  font-size: 14px;
  transition: all ease 0.3s;
}
.form-group textarea{
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
}
select:invalid,
select option[value=""] {color: gray;}
select,
select option:not([value=""]) {
    color: black;
}
.form .form-group input:hover,.form .form-group select:hover,.form .form-group textarea:hover{border: solid #101010 1px;}
.form .form-group input:disabled,.form .form-group select:disabled,.form .form-group textarea:disabled{background-color: #e9ecef;opacity: 0.7; }
.form .danger input,.form .danger select,.form .danger textarea,.form .danger .select{
  background-color: #fff !important;
  border: solid #f24822 1px !important;
}
.form .danger input:focus,.form .danger select:focus,.form .danger textarea:focus,.form .danger .select:focus{
  background-color: #fff;
  border: solid #f24822 1px !important;
}
.form .danger p{color: #f24822;} 
.form .form-group button,.form .form-group .button{
  display:flex;
  align-items:center;
  justify-content:center; 
  width:100%;
  height: 42px;
  border-radius:30px;
  background-color: #101010;
  color: #fff;
  font-weight:500;
  transition: all ease 0.1s;
}
.form .form-group button img,.form .form-group .button img{
  width: 25px;
  display: none;
}
.form .form-group button:hover,.form .form-group .button:hover{background-color: #000;}
.form .form-group button:disabled,.form .form-group .button:disabled{cursor: not-allowed;}

.form .form-group button.primary,.form .form-group .button.primary{background-color: #e9ecef;color: #101010;border: solid #0d0d0d0d 1px;}
.form .form-group button.primary:hover,.form .form-group .button.primary:hover{background-color: #e9ecef;color: #101010;border: solid #0d0d0d0d 1px;}

.form .extra-link{
  display: block;
  margin:15px 0 -9px 0;
  text-align: right;
}
.form .extra-link a{ 
  display: inline-block; 
  text-decoration: underline;
  padding:5px 0;
  font-size: 14px;
  font-weight: 500;
  color: #101010;
}
.form .disclaimer{
  display:block;
  text-align:center;
  opacity: 0.7;
  font-size:13px;
  font-weight: 400;
  padding:10px 0;
}
.form .disclaimer a{text-decoration: underline;}
.form .bracket{
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.form .bracket div{
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #0d0d0d0d;
}
.form .bracket label{
  padding: 0px 15px;
  font-size: 14px;
  opacity: 0.4;
  white-space: nowrap;
}

.profile-picture {text-align: center;}
.profile-picture-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: auto;
}
.profile-picture-wrapper input{display: none;}
.profile-picture-wrapper .pp-display {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
}
.profile-picture-wrapper .pp-display img {width: 100%;}
.profile-picture-wrapper .pp-btn{
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e9ecef;
  transition: all 1s ease;
}
.profile-picture-wrapper .pp-btn img {width: 50%;}
.profile-picture-wrapper .pp-upload-status{
  margin: auto;
  height: 130px;
  width: 130px;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  color: #fff;
}

.notification-item{
  border-bottom: solid #0d0d0d0d 1px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 15px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.notification-item-unread{
  border-radius: 10px;
  margin: 15px 0;
}
.notification-item-unread .notification-item-readed{color: #101010;border-color: #0d0d0d0d;}
.notification-item-readed{color: #28a745;border-color: #28a745;}
.notification-item-avatar{
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  background-color: #e9ecef;
  border:solid #0d0d0d0d 1px; 
}
.notification-item-avatar img{
  width: 50%;
  object-fit: cover;
}
.notification-item-content{
  flex: 1;
  min-width: 0;
}
.notification-item-title{
  font-size: 15px;
  opacity: 0.9;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}
.notification-item-text{
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 8px;
}
.notification-item-meta{
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.notification-item .time{opacity: 0.6;}
.notification-item .badge{
  border:solid #101010 1px;
  color: #101010;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.notification-item .status{
  margin-left: auto;
  display: inline-block;
  border:solid #0d0d0d0d 1px; 
  padding: 5px 6px;
  border-radius: 15px;
  font-size: 11px;
  opacity: 0.8;
}
.notification-item-actions{
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.notification-item-actions .btn{
  padding: 8px 15px;
  text-align: center;
  background: #e9ecef;
  color: #101010;
  border:solid #0d0d0d0d 1px;
  border-radius: 6px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.notification-see-more{
  margin: auto;
  margin-top: 10px;
  display: none;
  width:150px;
  text-align: center;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  color: #101010;
}
.notification-see-more img{width: 30px;}

.withdraw-balance-section,.balanceAdd-balance-section {
  background: #f9f9f9;
  border:solid #0d0d0d0d 2px;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.withdraw-balance-label,.balanceAdd-balance-label {
  opacity: 0.8;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.withdraw-balance-amount,.balanceAdd-balance-amount {
  color: #101010;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}
.withdraw-balance-currency,.balanceAdd-balance-currency {
  opacity: 0.8;
  font-size: 14px;
  font-weight: 500;
}
.balanceAdd-reload-title {
  opacity: 0.8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.balanceAdd-amount-input-group {
  position: relative;
  margin-bottom: 20px;
}
.balanceAdd-amount-input {
  width: 100%;
  padding: 12px 60px 12px 20px;
  background: #fff;
  border:solid #0d0d0d0d 2px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}
.balanceAdd-amount-input:focus {
  border:solid #101010 1px;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}
.balanceAdd-currency-suffix {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-weight: 600;
  font-size: 16px;
}
.balanceAdd-billing-section {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: inherit;
}
.balanceAdd-billing-section .billing-card {
  display: flex;
  align-items: center;
  background: #fcfcfc;
  border: 2px solid #0d0d0d0d;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.2s ease;
  min-height: 60px;
}
.balanceAdd-billing-section .billing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  margin-right: 12px;
  color: #444;
  flex-shrink: 0;
}
.balanceAdd-billing-section .billing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.balanceAdd-billing-section .billing-title {
  font-weight: 700;
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.balanceAdd-billing-section .billing-desc {
  color: #666;
  font-size: 12px;
}
.balanceAdd-billing-section .billing-text {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}
.balanceAdd-billing-section .billing-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.balanceAdd-billing-section .billing-action-btn.edit {
  color: #666;
  border: 1px solid transparent;
}
.balanceAdd-billing-section .billing-action-btn.edit:hover {
  background: #eee;
  color: #000;
}
.withdraw-info-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  border:solid #0d0d0d0d 2px;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
}
.withdraw-info-item {
  text-align: center;
  flex: 1;
}
.withdraw-info-label {
  opacity: 0.8;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.withdraw-info-value {
  font-size: 14px;
  font-weight: 600;
}
.withdraw-balance-btn,.balanceAdd-balance-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101010;
  border-radius: 10px;
  height: 45px;
  width: 100%;
  color:#fff;
  overflow: hidden;
}
.withdraw-balance-btn img,.balanceAdd-balance-btn img{width: 20px;display: none;}
.withdraw-balance-btn:disabled,.balanceAdd-balance-btn:disabled{
  background: rgba(74, 85, 104, 0.05);
  color: #101010;
  border:solid #0d0d0d0d 1px;
  cursor: not-allowed;
  box-shadow: none;
}
.withdraw-balance-btn::before,.balanceAdd-balance-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.withdraw-balance-btn:hover::before,.balanceAdd-balance-btn:hover::before{left: 100%;}
.withdraw-balance-btn:hover,.balanceAdd-balance-btn:hover{
  transform: translateY(-1px);
}
.withdraw-balance-btn:active,.balanceAdd-balance-btn:active {transform: translateY(0);}

.payment-card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.payment-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 16px;
  transition: box-shadow 0.3s ease;
}
.payment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}
.payment-card-no {
  font-weight: 600;
  font-size: 14px;
}
.payment-card-status {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 500;
}
.payment-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.payment-card-detail-item {
  display: flex;
  flex-direction: column;
}
.payment-card-detail-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 4px;
}
.payment-card-detail-value {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
}
.payment-card-detail-value.amount {
  font-size: 15px;
  font-weight: 500;
}
.payment-card-action-buttons {
  display: flex;
  gap: 12px;
  row-gap:12px;
  flex-wrap: wrap;
}
.payment-card-action-button {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  padding: 10px 16px;
  background-color: #e9ecef;
  border: 1px solid #0d0d0d0d;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  color: #000000;
  white-space: nowrap;
}
.payment-card-action-button img {width: 15px;}
.payment-card-action-button:hover {
  background-color: #dfe3e6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.action-button.primary {
  background-color: #101010;
  color: #ffffff;
}
.action-button.primary:hover {background-color: #000;}  
.payment-see-more{
  margin: auto;
  display: none;
  width:150px;
  text-align: center;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  color: #101010;
}
.payment-see-more img{width: 30px;}

.payment-card-skeleton {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 16px;
  pointer-events: none;
}
.payment-card-skeleton-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}
.payment-card-skeleton-no {
  width: 100px;
  height: 16px;
  background-color: #e9ecef;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.payment-card-skeleton-status {
  width: 70px;
  height: 26px;
  background-color: #e9ecef;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.payment-card-skeleton-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.payment-card-skeleton-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-card-skeleton-label {
  width: 80%;
  height: 12px;
  background-color: #e9ecef;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.payment-card-skeleton-value {
  width: 90%;
  height: 14px;
  background-color: #e9ecef;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.payment-card-skeleton-value.large {
  height: 16px;
  width: 70%;
}
.payment-card-skeleton-buttons {
  display: flex;
  gap: 12px;
  row-gap: 12px;
  flex-wrap: wrap;
}
.payment-card-skeleton-button {
  flex: 1 1 auto;
  height: 30px;
  background-color: #e9ecef;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  min-width: 100px;
}
.payment-card-skeleton-no::after,
.payment-card-skeleton-status::after,
.payment-card-skeleton-label::after,
.payment-card-skeleton-value::after,
.payment-card-skeleton-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 1.1s linear infinite;
  border-radius: inherit;
  pointer-events: none;
}
.payment-card-container-skeleton {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.file-viewer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.file-viewer-overlay.active {
  display: flex;
  opacity: 1;
}
.file-viewer-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}
.file-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #2a2a2a;
  border-bottom: 1px solid #3a3a3a;
}
.file-viewer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 100px);
}
.file-viewer-actions {
  display: flex;
  gap: 10px;
}
.file-viewer-btn {
  background: #3a3a3a;
  border: none;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.file-viewer-btn:hover {
  background: #4a4a4a;
}
.file-viewer-btn-close {
  background: #e74c3c;
}
.file-viewer-btn-close:hover {
  background: #c0392b;
}
.file-viewer-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: auto;
}
.file-viewer-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.file-viewer-video,
.file-viewer-audio {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}
.file-viewer-pdf {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}
.file-viewer-info {
  text-align: center;
  color: #fff;
  padding: 40px;
}
.file-viewer-icon {
  font-size: 64px;
  margin-bottom: 20px;
}
.file-viewer-info h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
}
.file-viewer-info p {
  margin: 5px 0;
  color: #aaa;
}
.file-viewer-download-btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 16px;
}
.file-viewer-loading {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.file-viewer-spinner {width: 60px;}


.sm_exception_file_show{
  display: flex;
  align-items: center;
  padding: 10px 14px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  border: solid #0d0d0d0d 2px;
  background-color: #fff;
  font-weight: 400;
  font-size: 14px;
  transition: all ease 0.3s;
}

select.custom-select-source[data-display] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cs-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
}
.cs-wrapper.cs-disabled {
  opacity: 0.6; 
  cursor: not-allowed;
  pointer-events: none;
}

.cs-wrapper.cs-disabled .cs-trigger,
.cs-wrapper.cs-disabled .cs-option {
  background-color: #e9ecef; 
  cursor: not-allowed;
}

.cs-wrapper.cs-limit-reached .cs-option:not(.selected) {
  opacity: 0.5;
  cursor: not-allowed;
}
.cs-wrapper.cs-limit-reached .cs-option.selected {
  opacity: 1;
  cursor: default;
}

.cs-option {
  background-color: #fff;
  border: 1px solid #e9ecef;
  color: #101010;
  padding: 8px 16px;
  border-radius: 32px;
  cursor: default;
  transition: all 0.2s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.cs-option:hover {
  background-color: #e9ecef;
  border-color: #dbe0e5;
}
.cs-option.selected {
  background-color: #101010;
  color: #fff;
  border-color: #101010;
}
.cs-check-icon {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  fill: currentColor;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}
.cs-option.selected .cs-check-icon {
  opacity: 1;
  transform: scale(1);
}
.cs-container.mode-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cs-container.mode-popup {
  position: relative;
}
.cs-trigger {
  background-color: #fff;
  border: solid #0d0d0d0d 2px;
  color: #101010;
  padding: 8px 16px;
  height: 45px;
  border-radius: 8px;
  font-size: 14px;
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}
.cs-trigger::after {
  content: '';
  border: 5px solid transparent;
  border-top-color: #101010;
  margin-left: 10px;
  transform: translateY(2px);
  transition: all 0.2s ease;
}
.cs-trigger.active::after {
  transform: translateY(-2px) rotate(180deg);
}
.cs-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08); /* Çok hafif bir sınır */
    
    box-shadow: 
        /* 1. Katman: Hafif bir dış hat (border gibi davranır ama gölgedir) */
        0 0 0 1px rgba(0,0,0,0.03),
        /* 2. Katman: Uzak gölge (Derinlik verir) */
        0 12px 32px -4px rgba(0, 0, 0, 0.15),
        /* 3. Katman: Yakın gölge (Altını doldurur) */
        0 4px 12px -2px rgba(0, 0, 0, 0.08);
  padding: 8px;
  z-index: 100000;
  display: none;
  flex-direction: column;
  gap: 5px;
  max-height: 250px;
  overflow-y: auto;
}

.cs-dropdown.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cs-dropdown.open-up {
  transform: translateY(10px); 
}

/* Yukarı açıldığında görünür olma animasyonu */
.cs-dropdown.open-up.open {
  transform: translateY(0);
}
.mode-popup .cs-option {
  width: auto;
  border: 1px solid transparent;
}
.cs-trigger.placeholder-shown {
  opacity: 0.7;
}
.cs-badge {
  background: #101010;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 36px;  
  height: 20px; 
  box-sizing: border-box; 
}

.switch *, .switch *:before, .switch *:after {
  box-sizing: border-box;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb; 
  transition: .3s; 
  border-radius: 34px; 
  -webkit-tap-highlight-color: transparent; 
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px; 
  width: 16px;  
  left: 2px;    
  bottom: 2px;  
  background-color: white;
  border: 1px solid #d1d5db; 
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #101010; 
}

input:checked + .slider:before {
  transform: translateX(16px); 
  border-color: white; 
}

.profile-bar{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  box-sizing: border-box;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  background-color: #e9ecef;
  margin-bottom: 16px;
}
.profile-bar a{
  column-gap: 8px;
  justify-content: center;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  text-align: center;
  width: 100%;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 12px;
  background-color: #e9ecef;
  opacity: 0.6;
  transition: all 0.2s ease;
  border-radius: 8px;
}
.profile-bar a img{
  width: 15px;
}
.profile-bar .selected{
  background-color: #fff;
  box-shadow: 0 4px 14px -2px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.creatorProfileSettingsAttributesDownloadSection {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.creatorProfileSettingsAttributesDownloadSection-video-wrapper {
  width: 120px;
  min-width: 120px;
  aspect-ratio: 9/16;
  background-color: #fafafa;
  border: 3px dashed #e9ecef;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  flex-shrink: 0;
  margin: 0 auto;
}
.creatorProfileSettingsAttributesDownloadSection-video-wrapper.has-video {
  border: none;
  background: #000;
}
.creatorProfileSettingsAttributesDownloadSection-video-wrapper video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.creatorProfileSettingsAttributesDownloadSection-video-wrapper-text {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}
.creatorProfileSettingsAttributesDownloadSection-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.creatorProfileSettingsAttributesDownloadSection-info-box {
  background-color: #e9ecef;
  padding: 10px;
  border-radius: 6px;
  border-left: 4px solid #101010;
  color: #101010;
  font-size: 12px;
  line-height: 1.5;
}
.creatorProfileSettingsAttributesDownloadSection-upload-btn {
  background-color: #101010;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 10px;
}
.creatorProfileSettingsAttributesDownloadSection-upload-btn:disabled{
  background: #e9ecef;
  color: #101010;
}

.price-wizard-input{
  display: grid;
  gap:15px;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  background: #e9ecef;
}
.price-wizard-header{
  display: grid;
  gap:5px;
}
.price-wizard-title{
  display: flex !important;
  align-items: center;
  column-gap: 10px;
  font-size: 17px !important;
}
.price-wizard-title img{width: 15px;}
.price-wizard-title-desc{
  display: block;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
}
.price-wizard-title-desc span{font-weight: 500;}
.price-wizard-price-input{
  display: grid;
  gap:10px;
}
.price-wizard-price-input label{
  display: block;
  padding-bottom: 8px;
}
.price-wizard-input-group-container{
  display: flex;
  column-gap: 10px;
}
.price-wizard-input-item{
  width: 100%;
}
.price-wizard-input-container{
  width: 100%;
}
.price-wizard-input-container{
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 0 15px;
  background: #fff;
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
}
.price-wizard-price-input input{
  padding: 15px 0;
  width: 100%;
}
.price-wizard-price-input input:disabled{background: #fff;color: #101010;}
.price-wizard-price-input a{
  display: inline-block;
  padding-top: 8px;
  text-decoration: underline;
  font-size: 13px;
}
.creator-services-items{display: grid;gap:15px;margin-top: 15px;}
.creator-services-item{
  border: solid #e9ecef 2px;
  padding: 10px;
  border-radius: 15px;
}
.creator-services-item.item-passive{
  opacity: 0.5;
}
.creator-services-item-wrapper{display: flex;align-items: center;}
.creator-services-item-left-container{
  display: flex;
  width: 100%;
  align-items: center;
  column-gap: 10px;
}
.creator-services-item-left-container figure{
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: #e9ecef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.creator-services-item-left-container figure img{width: 15px;}
.creator-services-item-left-container figcaption h3{
  font-size: 14px;
}
.creator-services-item-left-container figcaption h3 span{
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 9px;
  background: #e9ecef;
}
.creator-services-item-left-container figcaption p{opacity: 0.7;font-weight: 400;font-size: 13px;}
.creator-services-item-right-container{
  display: flex;
  margin-left: 5px;
  justify-content: flex-end;
  column-gap: 15px;
}
.creator-services-item-right-container .locked{display: flex;align-items: center;}
.creator-services-item-right-container .locked img{width: 15px;}
.creator-services-item-right-container .price{display: flex;align-items: center;font-size: 16px;font-weight: 500;opacity: 0.8;}
.creator-services-item-right-container .checkbox{display: flex;align-items: center;}
.creator-services-item-prices{
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #e9ecef;
}
.creator-services-item-prices label{opacity: 0.7;}

.scoreAlert h3 {
  margin: 0 0 5px 0;
  color: #222;
}
.scoreAlert .meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  display: block;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.scoreAlert ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.scoreAlert ul li {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.scoreAlert ul li strong {
  color: #000;
}
.scoreAlert table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  font-size: 13px;
}
.scoreAlert th {
  text-align: left;
  background: #f9f9f9;
  padding: 8px;
  border-bottom: 2px solid #eee;
}
.scoreAlert td {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.scoreAlert .highlight {
  color: #2e7d32;
  font-weight: bold;
}


.profile-container {
  width: 80%;
  margin: auto;
}
.profile-info {
  padding: 24px 0px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.profile-info-picture {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #101010;
}
.profile-info-wrapper {flex: 1;}
.profile-info-wrapper h2 {
  margin: 0 0 4px 0;
  font-size: 22px;
  font-weight: 700;
}
.profile-info-wrapper p {
  margin: 0 0 8px 0;
  opacity: 0.8;
  font-weight: 400;
  font-size: 14px;
}
.profile-info-wrapper a {
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  background: #e9ecef;
}
.profile-info-wrapper a img{width: 10px;}
.profile-score-card {
  width: 100%;
  background-color: #e9ecef;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.profile-score-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.profile-score-card__content {flex: 1;}
.profile-score-card__main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.profile-score-card__icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}
.profile-score-card__icon-wrapper img{width: 70%;}
.profile-score-card__value {
  font-size: 32px;
  font-weight: 700;
  color: #101010;
  line-height: 1;
}
.profile-score-card__total {
  font-size: 18px;
  opacity: 0.7;
  font-weight: 500;
}
.profile-score-card__label {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 600;
  margin-top: 4px;
}
.profile-score-card__description {
  margin: 0;
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.5;
}
.profile-buttons {
  display: flex;
  column-gap: 18px;
  margin-bottom: 16px;
}
.profile-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  background-color: #e9ecef;
  font-size: 13px;
  font-weight: 500;
}
.profile-buttons button img {width: 15px;}
.profile-add-studies-button {
  padding: 12px;
  border-radius: 12px;
  width: 100%;
  background-color: #101010;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 32px;
}
.profile-add-studies-button img {width: 15px;}
.creatorProfile-tabs-container {
  background: #fff;
  position: sticky;
  top: 0px;
  z-index: 40;
  border-bottom: 2px solid #e9ecef;
}
.creatorProfile-tabs {
  display: flex;
  position: relative;
}
.creatorProfile-tab-btn {
  flex: 1;
  padding: 15px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.3s;
}
.creatorProfile-tab-btn img{width: 15px;}
.creatorProfile-tab-btn.active {opacity: 1;}
.creatorProfile-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33.33%;
  height: 2px;
  background-color: #101010;
  margin-bottom: -1px;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.creatorProfile-content-window {
  overflow: hidden;
  width: 100%;
}
.creatorProfile-content-slider {
  display: flex;
  width: 300%;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  align-items: flex-start;
}
.creatorProfile-page {
  width: 100%;
  padding: 20px 0px;
  min-height: calc(100vh - 120px);

  min-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0; 
  transition: opacity 0.3s;
}
.creatorProfile-page.active {
  height: auto;
  overflow: visible;
  opacity: 1;
}
.profile-details-wrapper {
  display: flex;
  align-items: flex-start;
  column-gap: 32px;
}
.profile-details {
  background-color: #e9ecef;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
  width: 100%;
}
.profile-details h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Poppins';
  margin-bottom: 16px;
  color: #101010;
}
.profile-details-body-v1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-details-body-v1 div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-details-body-v1 div span {
  font-size: 14px;
  font-weight: 400;
  color: #101010;
}
.profile-details-body-v1 div img {
  width: 15px;
  opacity: 0.6;
}
.profile-details-body-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-details-body-v2 span {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: #101010;
  background-color: #fff;
}
.profile-posts h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.profile-post-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.profile-post-item {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #e9ecef;
}
.profile-post-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in;
}
.profile-post-item img:hover {
  scale: 1.05;
}
.profile-post-item p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.skel {
  position: relative;
  overflow: hidden;
  background: #e9ecef;
  border-radius: 12px;
  color: transparent;
}
.skel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 1.1s linear infinite;
  border-radius: inherit;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {.skel::after {animation: none;}}

.profile-skeleton .profile-info-picture.skel {
  width: 90px;
  min-width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
}
.profile-skeleton .line {
  height: 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: #e9ecef;
}
.profile-skeleton .line-lg {
  width: 220px;
  height: 22px;
}
.profile-skeleton .line-sm {
  width: 160px;
  height: 14px;
  margin-bottom: 0;
}
.profile-skeleton {
  width: 100%;
  border-radius: 16px;
  background-color: transparent !important;
  margin-bottom: 16px;
}
.profile-skeleton .skeleton-score-card {
  background-color: transparent;
  border: solid #e9ecef 2px;
  padding: 20px;
  border-radius: 16px;
}
.profile-skeleton .profile-score-card__icon-wrapper.skel {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e9ecef;
  border: none;
}
.profile-skeleton .value-line {
  width: 110px;
  height: 24px;
  border-radius: 8px;
  margin-bottom: 6px;
  background-color: #e9ecef;
}
.profile-skeleton .label-line {
  width: 160px;
  height: 13px;
  border-radius: 6px;
  background-color: #e9ecef;
}
.profile-skeleton .para {
  width: 100%;
  height: 12px;
  border-radius: 6px;
  margin-top: 8px;
  background-color: #e9ecef;
}
.profile-skeleton .profile-buttons {
  display: flex;
  column-gap: 18px;
  margin-bottom: 16px;
}
.profile-skeleton .profile-buttons .skel {
  width: 100%;
  height: 32px;
  border-radius: 12px;
  background-color: #e9ecef;
}
.profile-skeleton .profile-add-studies-button.skel {
  width: 100%;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 32px;
  background-color: #e9ecef;
}
.profile-posts-skeleton .h-line {
  width: 180px;
  height: 18px;
  border-radius: 6px;
  margin-bottom: 16px;
  background-color: #e9ecef;
}
.profile-posts-skeleton .post-thumb {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: #e9ecef;
}
.profile-posts-skeleton .post-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.share-grid-wrapper .share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.share-grid-wrapper .share-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  color: #101010;
}
.share-grid-wrapper .icon-box {
  width: 50px;
  height: 50px;
  background-color: #e9ecef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.share-grid-wrapper .share-action-btn:hover .icon-box {
  background-color: #101010;
  color: #fff;
  transform: translateY(-3px);
}
.share-grid-wrapper .share-action-btn span {
  font-size: 12px;
  font-weight: 500;
  color: #666;
}
.share-grid-wrapper .copy-link-area {
  background-color: #e9ecef;
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: border 0.2s;
}
.share-grid-wrapper .copy-link-area:focus-within {
  border-color: #101010;
  background-color: #fff;
}
.share-grid-wrapper .link-text {
  color: #101010;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 10px;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
}
.share-grid-wrapper .js-copy-btn {
  background-color: #fff;
  color: #101010;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.share-grid-wrapper .js-copy-btn:hover {
  background-color: #101010;
  color: #fff;
}
.share-grid-wrapper .js-copy-btn:active {transform: scale(0.95);}
.share-grid-wrapper svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.creator-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.creator-service-card {
  position: relative;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: .3s;
}
.creator-service-card .service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border-color: #6366f1;
}
.creator-service-card .badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background: #4f46e5;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.creator-service-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.creator-service-card .icon {
  background: #f1f5f9;
  padding: 10px;
  border-radius: 10px;
  font-size: 20px;
}
.creator-service-card .icon img{width: 20px;}
.creator-service-card .price {text-align: right;}
.creator-service-card .price div {
  font-size: 22px;
  font-weight: 700;
}
.creator-service-card .price small {
  font-size: 12px;
  color: #64748b;
}
.creator-service-card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
}
.creator-service-card .desc {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}
.creator-service-card label {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.creator-service-card .durations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.creator-service-card .durations button {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: .2s;
}
.creator-service-card .durations button:hover {background: #f8fafc;}
.creator-service-card .durations button.active {
  border-color: #6366f1;
  background: #eef2ff;
  color: #4338ca;
}
.creator-service-card .saving {
  font-size: 12px;
  color: #16a34a;
  margin: 8px 0 15px;
}
.creator-service-card .add-cart {
  margin-top: auto;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}
.creator-service-card .add-cart:hover {background: #4f46e5;}
.creator-service-card .trust {
  margin-top: 10px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}


.orderWizard-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1.5px);
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.orderWizard.active {
  opacity: 1;
}
.orderWizard-container{
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: white;
  border-radius: 16px;
  border: solid #0d0d0d0d 1px;
  box-shadow:0 12px 32px rgba(0, 0, 0, 0.24),0 4px 12px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
  max-height: 90%;
  width: 70%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  z-index: 99999;
}
.orderWizard-header{
  padding: 10px 15px 5px 15px;
  font-size: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid #0d0d0d0d 1px;
  font-weight: 400;
}
.orderWizard-header-logo{height: 30px;}
.orderWizard-header-button-group{
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-left: auto;
}
.orderWizard-header-totalAmount label{
  font-size: 13px;
  opacity: 0.8;
}
.orderWizard-header-totalAmount p{
  font-family: Poppins,sans-serif;
  font-size: 15px;
}
.orderWizard-header-button-btn{
  display: flex;
  column-gap: 5px;
  align-items: center;
  justify-content: center;
  border: solid #0d0d0d0d 2px;
  margin-right: 5px;
  width: 35px;
  height: 35px;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
}
.orderWizard-header-button-btn img{width: 15px;}
.orderWizard-header-button-btn:active{transform: scale(0.95);}
.orderWizard-content {
  padding: 2px 10px 10px 10px;
  margin: 5px;
  overflow-y: auto;
}




/* Phone */
@media (max-width: 768px) {
  .nav{
    width: 100%;
    background-color: #fff;
    border-bottom: solid #0d0d0d0d 1px;
  }
  .nav-menu{display: flex;}
  .nav-login-btn{display: flex;}
  .nav-register-btn{display: flex;}
  .profile-btn{
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    border-top: none;
    padding: 0px;
    background-color: #fff;
  }
  .profile-btn:hover{background-color: transparent;}
  .profile-btn figure{
    width: 35px;
    min-width: 35px;
    height: 35px;
  }
  .profile-btn figcaption{display: none;}
  .profile-menu{
    bottom: auto;
    left: auto;
    right: 15px;
    top: 65px;
  }
  .aside-menu{
    width: 100%;
    background-color: #fff;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  .aside-menu.open{transform: translateX(0);}
  .aside-menu-container{padding: 70px 10px 10px 10px;}
  .aside-menu-item figure{
    width: 35px;
    min-width: 35px;
    height: 35px;
  }
  .aside-menu-item  figcaption h5{font-size: 15px;}
  .aside-menu-item  figcaption p{font-size: 13px;padding-top: 3px;}
  .aside-menu-tools .aside-menu-item figcaption h5{font-size: 16px;font-weight: 500;}
  .aside-menu-item-skeleton .avatar{
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
  .aside-menu-item-skeleton .quote{width: 50%;}
  #app{
    margin: 85px 15px 15px 15px;
    height: 100%;
  }
  .mb-display-none{display: none !important;}

  #toast-container{
    top: 10px;
    right: none;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: none;
  }

  .popup-modal--xs .popup-modal-container,
  .popup-modal--sm .popup-modal-container,
  .popup-modal--md .popup-modal-container,
  .popup-modal--lg .popup-modal-container { width: 95%; }
  .popup-modal-container {
    width: 95%; 
    max-height: 95%;
  }
  .popup-modal-content::-webkit-scrollbar {
    width: 5px;
  }

  .payment-card-container {grid-template-columns: 1fr;}

  .file-viewer-content {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  .file-viewer-header {padding: 12px 15px;}
  .file-viewer-title {
    font-size: 14px;
    max-width: calc(100% - 80px);
  }
  .file-viewer-btn {font-size: 13px;}
  .file-viewer-body {padding: 10px;}
  .file-viewer-info {padding: 20px;}
  .file-viewer-icon {font-size: 48px;}

  .creator-services-item-right-container{column-gap: 8px;}

  .profile-container {width: 100%;}
  .profile-details-wrapper {display: block;}
  .profile-post-contents {gap: 6px;}
  .profile-post-item p {
    padding: 6px;
    font-size: 12px;
  }
  .profile-posts-skeleton .post-caption {height: 12px;}
  .creatorProfile-tabs-container {top: 70px;}

  .creator-service-grid {grid-template-columns: repeat(1, 1fr);}

  .orderWizard-container{
  border-radius: 0px;
  height: 100%;
  max-height: 100%;
  width: 100%;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) { 
  .popup-modal--xs .popup-modal-container{ width: 50%; }
  .popup-modal--sm .popup-modal-container{ width: 70%; }
  .popup-modal--md .popup-modal-container{ width: 80%; }
  .popup-modal--lg .popup-modal-container{ width: 95%; }

  .profile-container {width: 90%;}
}

/* Pc */
@media (min-width: 1025px) {

}