/* HEADER */
.submanv2-model-subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.submanv2-model-subscription-header.advanced {}

.submanv2-model-subscription-header.basic {}





/* NAME */
.submanv2-creator-name {
    font-size: 1.3rem;
    color: #fff;
}

.submanv2-creator-name.basic {
    font-size: 1.0rem;
}

.submanv2-creator-name.advanced {}

/* USERNAME */
.submanv2-creator-username {
    font-size: 0.80rem;
    color: #fff;
}

.submanv2-creator-username.basic {
    font-size: 0.75rem;
}

.submanv2-creator-username.advanced {}


.submanv2-name-wrapper {
    display: flex;
}

.submanv2-model-subscription-header.advanced .submanv2-name-wrapper {
    flex-direction: column;
    align-items: start;
}

.submanv2-model-subscription-header.basic .submanv2-name-wrapper {
    flex-direction: column;
    align-items: start;
    /* gap: 10px; */
}













/* CROPPIE */

/* Croppie interface styling */
.croppie-dialog-content {
    padding: 20px;
    font-family: var(--fw-font-family, sans-serif);
}

.file-input-container {
    margin-bottom: 20px;
    text-align: center;
    user-select: none;
}

.file-input-label {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-350);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.file-input-label:hover {
    background-color: var(--primary-100);
}

.file-input-hidden {
    display: none;
}

.croppie-instructions {
    text-align: center;
    margin-bottom: 15px;
    color: #666;
}

.croppie-image-container {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 100%;
}

.croppie-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.croppie-rotate-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.croppie-submit-btn {
    width: 100%;
    max-width: 200px;
    padding: 10px 20px;
    color: var(--fw-static-white-000);
    background-color: var(--primary-350);
    
}
.croppie-submit-btn:hover {
    color: var(--fw-static-white-000) !important;
    background-color: var(--primary-100) !important;
}

.croppie-loading-spinner {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: var(--fw-primary-350);
}

/* Improve the look of the Croppie element */
.cr-boundary {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cr-slider-wrap {
    margin: 15px auto !important;
    width: 80% !important;
}




















.croppie-avatar-cropper-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;

}


#croppie-fullscreen-overlay {
    position: fixed;
    z-index: 99999;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }
  #croppie-fullscreen-overlay .croppie-header {
    width: 100vw;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--fw-white-050);
    color: var(--fw-black-100);
    font-size: 1.2em;
    padding: 16px 20px;
    box-sizing: border-box;
  }
  #croppie-fullscreen-overlay .croppie-close-btn {
    background: none;
    border: none;
    color: var(--fw-black-000);
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
  }
  #croppie-fullscreen-overlay .croppie-dialog-content {
    /* background: #fff; */
    border-radius: 12px;
    padding: 16px;
    max-width: 98vw;
    max-height: 80vh;
    overflow: auto;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #croppie-fullscreen-overlay .croppie-image-container {
    margin: 0 auto 16px auto;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
  }
  #croppie-fullscreen-overlay .croppie-button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
  }
  #croppie-fullscreen-overlay .croppie-submit-btn {
    font-size: 1rem;
    padding: 8px 10px;
    width: 100%;
    background: var(--primary-350);
  }
  #croppie-fullscreen-overlay .file-input-label {
    font-size: 1rem;
    padding: 8px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
  }
  #croppie-fullscreen-overlay .file-input-hidden {
    display: none;
  }
  #croppie-fullscreen-overlay .croppie-loading-spinner {
    color: #222;
    font-size: 1.1em;
    margin-top: 10px;
  }
  #croppie-fullscreen-overlay .croppie-instructions {
    color: var(--fw-black-100);
    font-size: 0.8rem;
    margin: 10px 0 8px 0;
    text-align: center;
  }
  @media (max-width: 600px) {
    #croppie-fullscreen-overlay .croppie-dialog-content {
      border-radius: 0;
      padding: 8px;
      max-width: 100vw;
      max-height: 100vh;
    }
  }
















