.vinyl {
    position: absolute;
    width: 100px;
    height: 100px;
    background: url("../../public/images/static/logo.png") no-repeat center;
    background-size: cover;
    border-radius: 50%;
    animation: spin 5s infinite linear;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* color picker styles */
#color-picker-container {
    display: flex;
    flex-direction: column;
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#color-picker-preview {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    background-color: #000;
}
#color-picker-1,
#color-picker-2,
#color-picker-3 {
    margin-bottom: 10px;
}
#shades-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
#eye-dropper-btn {
    padding: 5px;
    cursor: pointer;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
}
#eye-dropper-btn:hover {
    background-color: #45a049;
}
.shade {
    width: 30px;
    height: 30px;
    margin: 5px;
    cursor: pointer;
    display: inline-block;
}

/* canvas new design  */
/* .canvas-editor-panel-section .accordion-item {
    border-radius: 8px;
    margin-bottom: 0px;
} */
.canvas-editor-panel-section .accordion-button {
    background-color: var(--right-panel);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    font-size: 22px;
    outline: unset !important;
    box-shadow: unset !important;
    border-radius: 0 !important;
    padding: 1rem 0;
    text-transform: capitalize;
}

.canvas-editor-panel-section .toggle-text-icon {
    margin-bottom: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.canvas-editor-panel-section .toggle-text-delete-icon {
    margin-bottom: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* .accordion-button.collapsed {
    border-bottom: 1px solid #09b6a0;
} */
/* .accordion-collapse.collapse.show {
    border-bottom: 1px solid #09b6a0;
} */
/* .canvas-editor-panel-section .accordion-button:not(.collapsed) {
    background-color: var(--right-panel);
    font-size: 20px;
} */
.canvas-editor-panel-section .accordion-item {
    background-color: var(--right-panel);
    border-radius: 0;
}
.canvas-editor-panel-section .accordion-body {
    background-color: var(--right-panel);
    padding: 0 0 30px;
    border-radius: 0;
}
.canvas-editor-panel-section .accordion-button::after {
    content: none;
}
.canvas-editor-panel-section .icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    background: #09b6a0;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
}
.canvas-editor-panel-section input[type="color"] {
    width: 100%;
}
.canvas-editor-panel-section .btn-outline-primary,
.canvas-editor-panel-section .btn-outline-danger {
    border-color: #00ad9e;
    color: white;
}
.canvas-editor-panel-section .btn-outline-primary:hover,
.canvas-editor-panel-section .btn-outline-danger:hover {
    background-color: #00ad9e;
    color: white;
}
#bg-color-picker {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
    border-radius: 4px;
}

/* audio file control styles */
#audio-file-name {
    background: #292929;
    border: 1px dashed #09b6a0;
    font-size: 1rem;
    font-weight: 500;
    padding: 1.3rem 1rem;
    border-radius: 5px;
    width: fit-content;
    display: inline-block;
}
#remove-audio-btn {
    background: transparent;
    border: none;
    margin-left: 30px;
}
#remove-audio-btn svg {
    width: 22px;
    height: 22px;
}
#va-play-btn {
    background-color: #333;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.3s;
}
#va-audio-player-container {
    display: none;
}
.trim-main-control {
    background: #131313;
    padding: 1px 10px;
    border: transparent;
    margin: 10px 0;
}
#va-waveform {
    margin: 0 !important;
}

.trim-handle:hover {
    /* background: #00ceb8; */
    background: #ffffff;
}
.start-handle {
    left: 0;
}
.end-handle {
    right: 0;
}
.va-time-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 12px;
    font-family: Arial, sans-serif;
    padding: 15px 0px 15px 0px;
}
.va-control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
#va-play-btn {
    color: #fff;
    border: 2px solid #00ad9e;
    border-radius: 4px;
    font-weight: 700;
}
#va-play-btn:hover {
    background-color: #00ad9e;
    color: #000;
}
#va-current-time {
    color: #fff;
    font-size: 14px;
}
.va-error {
    display: none;
    padding: 10px;
    background: rgba(255, 0, 0, 0.7);
    color: #fff;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
}
.va-icon {
    margin-right: 5px;
}

.trim-handle {
    position: absolute;
    top: -6px;
    bottom: 0;
    width: 2px;
    height: 60px;
    /* background: #00b79d; */
    background: #e6e6e6;
    cursor: ew-resize;
    z-index: 10;
    touch-action: none;
    pointer-events: auto;
    cursor: ew-resize;
}

.trim-handle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff; /* Or any color for the dot */
    border-radius: 50%;
    z-index: 11;
    /* transition: left 0.1s ease-out, width 0.1s ease-out; */
}

.start-handle {
    left: 0;
}
.end-handle {
    right: 0;
}
.trim-area {
    position: absolute;
    top: 0;
    height: 100%;
    /* border-top: 1px solid #09b6a0; */
    /* border-bottom: 1px solid #09b6a0; */
    pointer-events: none;
}
.va-trim-controls {
    position: relative;
    height: 30px;
    margin: 10px 0;
    cursor: pointer;
}

/* backgorund image upload css */
#cropModal .modal-dialog {
    max-height: 90vh;
    margin: 1rem auto;
}
#cropModal .modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
#cropModal .modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
}
#cropModal .img-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
    margin: 0 auto;
}
#cropModal .img-container img {
    max-width: 100%;
    max-height: calc(100vh - 200px);
    object-fit: contain;
}
@media (max-width: 768px) {
    #cropModal .modal-dialog {
        max-width: 95%;
    }
    #cropModal .img-container img {
        max-height: calc(100vh - 160px);
    }
}

/* overlay and outer overlay image css */
#outerLayerCropModal .cropper-view-box,
#vinylLabelCropModal .cropper-view-box {
    border-radius: 50%;
    outline: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
}
.cropper-face {
    background-color: transparent !important;
}
#vinylLabelCropModal .modal-body .img-container,
#outerLayerCropModal .modal-body .img-container {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    position: relative;
}
#vinylLabelCropModal .modal-body .img-container img,
#outerLayerCropModal .modal-body .img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
#vinylLabelCropModal .cropper-container,
.cropper-canvas,
.cropper-box,
#outerLayerCropModal.cropper-container,
.cropper-canvas,
.cropper-box {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
}
#vinylLabelCropModal .cropper-wrap-box,
#outerLayerCropModal .cropper-wrap-box {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}
#vinylLabelCropModal .modal-body .img-container,
#outerLayerCropModal .modal-body .img-container {
    position: relative;
    width: 100%;
    /* height: unset !important; */
    margin: 0 auto;
    background: #f8f9fa;
}

/* Upload File Design */
.upld-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}
.upld-btn input[type="file"] {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    width: 100% !important;
    height: 100%;
    padding: 20px;
    text-indent: -5000px;
    cursor: pointer;
}
.upld-btn .btn {
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    font-size: 16px;
}
.upld-btn .btn:active:focus {
    box-shadow: none;
}
.upld-btn .btn-secondary {
    font-family: var(--font-regular);
    padding: 17px 20px;
    max-width: 290px;
    width: 100%;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

#toast-container > .toast {
    opacity: 1 !important; /* Override forced fade */
    box-shadow: none !important; /* Remove shadow */
    border: 1px solid white !important;
}
#toast-container > .toast:hover {
    opacity: 1 !important; /* Ensure no hover effect changes it */
}

#toast-container > .toast-success {
    background-color: #00ad9d !important;
    color: white !important;
    border: 1px solid white !important; /* thin white border */
    box-shadow: none !important; /* optional: remove default shadow */
}

/* Error Toastr */
/* #toast-container > .toast-error { */
/* background-color: #e74c3c !important; */
/* } */

#toast-container > .toast-info {
    background-color: #3498db !important;
}

#toast-container > .toast-warning {
    background-color: #f39c12 !important;
}

/* Custom Radio Button Style inside #canvasForm */
#canvasForm .form-check-input {
    height: 25px;
    width: 25px;
    background-color: var(--black);
    border: 1px solid var(--primary);
    border-radius: 50%;
}

/* Optional: Add hover effect for better user experience */
#canvasForm .form-check-input:hover {
    cursor: pointer;
    transform: scale(1.1); /* Slightly increase the size on hover */
}

#canvasForm .form-check-input .checkmark {
    background-color: var(--black);
    border: 1px solid var(--primary);
    border-radius: 50%;
}

/* Loader Styles */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.loader-content {
    text-align: center;
}

.loader-vinyl-image {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#outerLayerCropModal .modal-dialog {
    max-height: 90vh;
    /* margin: 1rem auto; */
}
#vinylLabelCropModal .modal-dialog {
    max-height: 90vh;
    /* margin: 1rem auto; */
}
#outerLayerCropModal .modal-content {
    padding: 0px;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 14px;
}
#vinylLabelCropModal .modal-content {
    padding: 0px;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 14px;
}

.canvas-editor-font-style .select2-container {
    width: 100% !important;
}

/* for demo only css */
.middle-cmn-heading1 {
    padding: 20px 0 60px 0;
    text-align: center;
    font-family: var(--heading-medium);
    font-size: 28px;
    text-transform: uppercase;
    color: var(--white);
}

.drag-over .btn {
    border: 1px dashed var(--primary);
    background: #00ad9d1f;
}

/* Slider css start */
/* Hide the tooltip (number above pointer) */
.noUi-tooltip {
    display: none !important;
}

/* Style the handle as a perfect circle */
.noUi-handle {
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

/* Optional: Custom handle colors */
.noUi-handle {
    background: #3fb8af !important; /* Handle color */
    border: 1px solid #fff !important; /* White border */
}
.noUi-connects {
    border-radius: 10px;
}
/* Optional: Active state styling */
.noUi-handle:focus,
.noUi-handle:hover,
.noUi-handle:active {
    background: var(--primary-hover) !important;
    cursor: pointer;
}

/* Optional: Connect bar styling */
.noUi-connect {
    background: var(--primary) !important;
}

/* Optional: Base slider styling */
.noUi-target {
    background: var(--white) !important;
    border-radius: 10px !important;
    height: 7px !important;
    border: none !important;
    margin: 10px 3px;
}

/* Remove the default inner decorations */
.noUi-handle::before,
.noUi-handle::after {
    display: none;
}
#vinyl-opacity-container .noUi-handle.noUi-handle-lower {
    margin-right: 14px;
}
/* Slider css end */

/* Audio jinesh sir CSS Start */
.va-trim-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    z-index: 5;
}
.trim-before,
.trim-after {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 6;
}
.trim-before {
    left: 0;
}
.trim-after {
    right: 0;
}
.va-btn {
    background-color: #222;
    border: none;
    padding: 8px 14px;
    margin: 4px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}
.va-btn-primary {
    background-color: #3490dc;
}
.va-btn-success {
    background-color: #38c172;
}
#va-waveform canvas {
    display: block !important;
    height: 120px !important;
    width: 100% !important;
}
/* #va-waveform {
    width: 100%;
    height: 120px;
    position: relative;
} */
.va-btn-danger {
    background-color: #e74c3c;
    color: #fff;
}
/* Audio jinesh sir CSS End */

.select2-container--disabled .select2-selection__arrow {
    display: none;
}

.lazy-load {
    transition: opacity 0.5s ease-in-out;
    opacity: 0.6;
}
.lazy-load[src]:not([src*="placeholder"]) {
    opacity: 1;
}

/* Style the container for image previews */
.previe-image-upload {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    transition: 0.3s;
    margin-bottom: 1rem;
}

/* Style each preview image */
.previe-image-upload img {
    margin-top: 0;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    margin-top: 0;
}

/* Modal Image Thumbnail Styling */
#cropperModal .modal-dialog {
    max-width: 40vw;
    width: 100%;
    margin: auto;
}

#cropperModal .modal-content {
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#cropperModal .modal-header,
#cropperModal .modal-footer {
    flex-shrink: 0;
}

#cropperModal .modal-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 80vh;
}

#cropper-container-for-slideshow {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: calc(100vh - 100px);
    /* overflow-y: auto; */
    overflow: hidden; /* prevents content overflow */
}

#cropper-container-for-slideshow .cropper-container {
    height: 100% !important;
    width: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
}

#cropper-container-for-slideshow.cropper-container,
.cropper-canvas,
.cropper-box {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
}

#modalImage {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

#cropper-container-for-slideshow img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

#cropper-container-for-slideshow .cropper-wrap-box {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

#image-thumbnails {
    white-space: nowrap;
    padding: 0 0 1rem;
    border-bottom: 1px solid #ccc;
}

.thumbnail {
    width: 90px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid #ddd;
    transition: transform 0.3s ease, border 0.3s ease;
    /* border-color: #00ad9d; */
}

.thumbnail-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.thumbnail.selected {
    border-color: #00ad9d;
    opacity: 1;
    pointer-events: auto;
}

.thumbnail.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.thumbnail.disabled-thumbnail {
    opacity: 0.5;
    pointer-events: none; /* Disable click events */
    border: 2px solid #ccc; /* Optional: Add a border for disabled state */
}

.thumbnail.selected-thumbnail {
    border: 2px solid #00ad9d; /* Highlight color */
}

.delete-thumbnail {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000000;
    color: #fff;
    width: 21px;
    height: 21px;
    text-align: center;
    line-height: 15px;
    font-weight: 400;
    font-size: 18px;
    border-radius: 50%;
    border: 2px solid #00ad9d;
    cursor: pointer;
    z-index: 10;
    align-content: center;
}

/* .thumbnail:hover {
    border-color: #00ad9d;
} */

.cropped-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 8px;
    border: 2px solid #ddd;
    transition: transform 0.3s ease, border 0.3s ease;
}

/* Preview Image Upload Section Styling */
.preview-image-upload {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.preview-item {
    border: 1px solid #fff;
    border-radius: 10px;
    background: #fff;
}

.delete-preview-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0, 0, 0, 1);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    cursor: pointer;
    line-height: 18px;
    font-size: 20px;
    font-weight: 400;
    border: 2px solid #00ad9e;
    align-content: center;
    padding-bottom: 10px;
}

/* Profile Image Cropper Styles */
#profileImageCropModal .cropper-view-box {
    /* border-radius: 50%; */
    outline: outset;
    overflow: hidden;
}

#profileImageCropModal .cropper-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto;
}

#profileImageCropModal .cropper-wrap-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

#profileImageCropModal .cropper-canvas,
#profileImageCropModal .cropper-crop-box,
#profileImageCropModal .cropper-drag-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#profileImageCropModal .modal-body .img-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 70vh;
    margin: 0 auto;
    background: #f8f9fa;
    overflow: hidden;
}

#profileImageCropModal .modal-body .img-container img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;
}

.profile-rotating-button {
    width: 45px;
    height: 45px;
}

.pcr-app[data-theme="nano"] .pcr-selection .pcr-color-chooser .pcr-picker,
.pcr-app[data-theme="nano"] .pcr-selection .pcr-color-opacity .pcr-picker {
    border-color: #000000; /* Your highlight color */
}

.subscription-plan-card {
    cursor: pointer;
    flex: 1 1 220px;
    transition: transform 0.2s ease;
    height: auto;
}

.subscription-plan-card:hover .subscription-plan-body,
.subscription-plan-card input:checked + .subscription-plan-body,
.subscription-plan-card .selected-subscription-plan {
    background: #09b6a0 !important;
    color: white;
}

.subscription-plan-card .subscription-plan-body {
    background: #131313;
    transition: background-color 0.3s ease;
    padding: 1.5rem;
    height: 100%;
}

.subscription-plan-card:hover .subscription-plan-body {
    background-color: #09b6a0;
}

.selected-subscription-plan {
    background-color: #09b6a0 !important;
}

.purchased-plan-subscription-card {
    cursor: pointer;
    border: 1px solid #09b6a0;
    margin: 0;
    flex: 1 1 220px;
    max-width: 300px;
    transition: transform 0.2s ease;
    border-radius: 0;
    height: auto;
}

.purchased-plan-subscription-card:hover .subscription-plan-body,
.purchased-plan-subscription-card input:checked + .subscription-plan-body,
.purchased-plan-subscription-card .selected-subscription-plan {
    background: #131313 !important;
    color: white;
}

.purchased-plan-subscription-card .selected-subscription-plan {
    background: #09b6a0 !important;
    color: white;
}

.purchased-plan-subscription-card .card-text {
    font-size: 24px;
    font-weight: 700;
}

.spurchased-plan-subscription-card .card-text svg {
    width: 18px;
    height: 18px;
}

.purchased-plan-subscription-card .subscription-plan-body {
    background: #131313;
    transition: background-color 0.3s ease;
    padding: 1.5rem;
    height: 100%;
}

.purchased-plan-subscription-card:hover .subscription-plan-body {
    background-color: #09b6a0;
}

.selected-subscription-plan {
    background-color: #09b6a0 !important;
}

.purchased-plan-subscription-card .badge {
    font-size: 0.75rem;
}

.subscription-plan-body.selected-subscription-plan {
    border-radius: 0px;
    background-color: rgba(0, 173, 157, 0.1);
}

.success-payment-card {
    background: #131313;
}

#upload-outer-layer:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.upload-disabled {
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}
.upload-disabled .btn {
    /* background-color: #e9ecef !important; */
    border-color: #ced4da !important;
    color: #6c757d !important;
}

img.cropper-pixelated,
.cropper-container img {
    image-rendering: optimizeQuality;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

/* Modal dialog width control */
#customLogoCropModal .modal-dialog {
    max-width: 700px;
    width: 100%;
}

/* Modal body layout */
#customLogoCropModal .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    max-height: 70vh; /* auto-resize based on screen */
    overflow: auto;
}

/* Image container to center the image */
#customLogoCropModal .img-container {
    width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

/* Make sure image fits inside modal */
#customLogoCropModal .img-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Customize cropper view box: show only 50% size */
#customLogoCropModal .cropper-view-box {
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 2px solid #00ad9d !important; /* Optional: highlight */
}

/* Optional: crop box centered */
#customLogoCropModal .cropper-crop-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-controls-wrapper {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 10px;
}

/* .text-controls-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding-top: 10px;
} */

.custom-add-you-text-button {
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    color: white !important;
    background: #09b6a0 !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px;
    cursor: pointer;
}

.btn-primary:disabled {
    color: #fff;
    background-color: var(--primary);
}

.upload-audio-file-custom-class {
    border: 1px solid #09b6a0;
    font-family: var(--font-regular);
    padding: 17px 20px;
    max-width: 290px;
    width: 100%;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: auto;
}
.upload-audio-file-custom-class img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.share-modal-link[readonly] {
    border: 1px dashed var(--primary);
}

.share-modal-link[readonly] {
    background-color: #2d3134;
    border: 1px dashed var(--primary);
}

.audio-trim-info-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

#center-vinyl-selection {
    line-height: 26px;
    font-family: var(--font-regular);
    text-transform: none;
    border-radius: 5px;
    border: 1px solid var(--gray-333);
    padding: 0px;
    max-width: 100%;
    width: 100%;
    font-family: var(--font-regular);
    font-size: 16px;
    background: var(--gray-333);
}

.center-vinyl-selection-list:hover {
    background: var(--gray-333);
    border-color: var(--primary) !important;
}

#AjaxregisterModal .modal-header {
    position: relative;
    justify-content: center;
}

/* #AjaxregisterModal .modal-header .btn-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
} */

/* .signup-form-ajax {
    padding: 1rem 0.5rem 0 0 !important;
    margin: 0 0 0 !important;
    height: calc(100vh - 13rem) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    position: relative !important;
    z-index: 1 !important;
}

.signup-form-ajax .form-btn {
    margin: 0px 0 !important;
} */
