/* horizon */
@font-face {
    font-family: "Horizon";
    src: url("./fonts/horizon.woff2");
    src: url("./fonts/horizon.woff2") format("woff2");
}

/* montserrat */
@font-face {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    src: url("./fonts/Montserrat-Regular.woff2");
    src: url("./fonts/Montserrat-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    src: url("fonts/Montserrat-Medium.woff2");
    src: url("fonts/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    src: url("fonts/Montserrat-SemiBold.woff2");
    src: url("fonts/Montserrat-SemiBold.woff2") format("woff2");
}
@font-face {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    src: url("fonts/Montserrat-Bold.woff2");
    src: url("fonts/Montserrat-Bold.woff2") format("woff2");
}
@font-face {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    src: url("fonts/Montserrat-ExtraBold.woff2");
    src: url("fonts/Montserrat-ExtraBold.woff2") format("woff2");
}

/* Helvetica Neue */
@font-face {
    font-family: "Helvetica Neue";
    font-weight: 400;
    src: url("fonts/HelveticaNeueLight.woff2");
    src: url("fonts/HelveticaNeueLight.woff2") format("woff2");
}
@font-face {
    font-family: "Helvetica Neue";
    font-weight: 500;
    src: url("fonts/HelveticaNeueMedium.woff2");
    src: url("fonts/HelveticaNeueMedium.woff2") format("woff2");
}
@font-face {
    font-family: "Helvetica Neue";
    font-weight: 600;
    src: url("fonts/HelveticaNeueBold.woff2");
    src: url("fonts/HelveticaNeueBold.woff2") format("woff2");
}
@font-face {
    font-family: "Helvetica Neue";
    font-weight: 700;
    src: url("fonts/HelveticaNeueBlack.woff2");
    src: url("fonts/HelveticaNeueBlack.woff2") format("woff2");
}

:root {
    --body-bg: #000000;
    --body-clr: #ffffff;
    --primary: #00ad9d;
    --primary-hover: #029386;
    --white: #ffffff;
    --black: #000000;
    --place-holder: #959595;
    --section-padding: 50px 0;
    --font-regular: "Helvetica Neue";
    --heading-bold: "Horizon";
    --peragraph: "Montserrat", sans-serif;
    --right-panel: #131313;
    --gray-333: #333333;
    --gray-29: #292929;
}
* {
    box-sizing: border-box;
}
body {
    font-family: var(--font-regular);
    font-size: 18px;
    color: var(--body-clr);
    font-weight: 400;
    text-decoration: none;
    background: var(--body-bg);
}
a {
    color: var(--primary);
    text-decoration: unset;
    outline: none;
}
a:hover {
    color: var(--body-clr);
    text-decoration: unset;
    outline: none;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cmn-section {
    padding: var(--section-padding);
}
.navbar-collapse {
    flex-grow: inherit;
}
/* color liberaries */
.text-primary{
    color: var(--primary) !important;
}

/* CSS start here */

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1660px;
}

/* Header CSS For Login Page Start */
#header {
    padding: 3rem 0 1rem;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1;
    display: inline-block;
    width: fit-content;
    margin: auto;
}
#header .brand-logo {
    max-width: 300px;
}
/* Header CSS for Login Page End */

/* Login Form CSS Start */
.login-container {
    max-width: 470px;
    width: 100%;
    margin: 6rem 0 0;
    padding: 1rem 0.5rem 1rem 0;
    height: calc(100dvh - 10rem);
    overflow-y: auto;
    overflow-x: hidden;
}
.signup-form {
    padding: 1rem 0.5rem 1rem 0;
    margin: 9rem 0 0;
    height: calc(100dvh - 13rem);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}
.login-container::-webkit-scrollbar-track,
.signup-form::-webkit-scrollbar-track {
    -webkit-box-shadow: unset;
    border-radius: 0;
    background-color: transparent;
}

.login-container::-webkit-scrollbar,
.signup-form::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
}

.login-container::-webkit-scrollbar-thumb,
.signup-form::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: unset;
    background-color: transparent;
}
.login-info {
    margin-bottom: 3rem;
}
.login-info h1 {
    font-size: 34px;
    line-height: normal;
    font-family: var(--heading-bold);
    color: var(--primary);
    text-transform: uppercase;
}
.login-info p {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--peragraph);
}
.login-container .btn-primary {
    font-size: 14px;
    font-family: var(--heading-bold);
    width: 100%;
}
.btn-primary {
    padding: 14px 25px;
    border-radius: 5px;
    background: var(--primary);
    border: 1px solid var(--primary);
    text-align: center;
    font-family: var(--heading-bold);
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--primary-hover);
    border-color: var(--primary);
    box-shadow: none !important;
    outline: none;
    text-decoration: unset;
    color: var(--white);
}

.btn-primary-small {
    padding: 9px 20px;
    border-radius: 5px;
    background: var(--primary);
    border: 1px solid var(--primary);
    text-align: center;
    font-family: var(--font-medium);
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--white);
    min-width: 131px;
}
.btn-primary-small:hover,
.btn-primary-small:focus,
.btn-primary-small:focus-visible,
.btn-check:active + .btn-primary-small,
.btn-check:checked + .btn-primary-small,
.btn-primary-small.active,
.btn-primary-small:active,
.show > .btn-primary-small.dropdown-toggle {
    background-color: var(--primary-hover);
    border-color: var(--primary);
    box-shadow: none;
    outline: none;
}

.btn-secondary {
    padding: 14px 25px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid var(--primary);
    text-align: center;
    font-family: var(--heading-bold);
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--white);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
    outline: none;
}

.btn-secondary-small {
    padding: 9px 20px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid var(--primary);
    text-align: center;
    font-family: var(--heading-bold);
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--white);
    min-width: 131px;
}
.btn-secondary-small:hover,
.btn-secondary-small:focus,
.btn-secondary-small:focus-visible,
.btn-check:active + .btn-secondary-small,
.btn-check:checked + .btn-secondary-small,
.btn-secondary-small.active,
.btn-secondary-small:active,
.show > .btn-secondary-small.dropdown-toggle {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
    outline: none;
}

.btn-light {
    padding: 14px 25px;
    border-radius: 5px;
    background: var(--white);
    border: 1px solid var(--primary);
    text-align: center;
    font-family: var(--heading-bold);
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--primary);
}
.btn-light:hover,
.btn-light:focus,
.btn-light:focus-visible {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--place-holder);
}
::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--place-holder);
}
:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--place-holder);
}
:-moz-placeholder {
    /* Firefox 18- */
    color: var(--place-holder);
}
.login-img {
    width: 54.666667%;
    position: fixed;
    bottom: -20px;
}
.login-img video,
.login-img img {
    width: 90%;
}

.video-lading-page-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3); /* Light gray */
    border-radius: 50%;
    border-top: 5px solid #ffffff; /* White spinner */
    animation: vlspin 1.5s ease-in-out infinite;
    z-index: -8; /* Just above your video z-index */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Make spinner visible when needed */
.login-img.loading .video-lading-page-spinner {
    opacity: 1;
}

/* Spinner Animation */
@keyframes vlspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.mute-toggle {
    position: absolute;
    top: -6px;
    right: -24px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mute-toggle:hover {
    background: rgba(0, 0, 0, 0.7);
}

.mute-toggle img {
    width: 20px;
    height: 20px;
}

.form-floating > label {
    color: var(--place-holder);
    font-size: 16px;
    font-weight: 500;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-family: var(--font-regular);
    color: var(--white);
}

.form-control.is-invalid {
    background-image: none !important;
}

.form-control:focus,
.form-control:focus-visible {
    color: var(--white);
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
    outline: none;
    border-bottom: 1px solid var(--primary);
    outline: none;
}

.form-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
    font-size: 18px;
    line-height: 22px;
    font-family: var(--font-regular);
    color: var(--place-holder);
}

.form-select:focus,
.form-select:focus-visible {
    color: var(--white);
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
    outline: none;
    border-bottom: 1px solid var(--primary);
    outline: none;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: none;
}

/* Login Form CSS End */

/* Select2 CSS Start */
.select2-container--default .select2-selection--single {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--primary);
    border-radius: 0px;
}
.select2-container .select2-selection--single {
    height: 42px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 53px;
    padding-left: 0.75rem;
    color: var(--place-holder);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b,
.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border: solid var(--place-holder);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    left: 0;
    margin: 0;
}
.select2-dropdown {
    background: var(--gray-333);
    border-radius: 0;
}
.select2-container--default .select2-results__option--selected {
    background-color: transparent;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: var(--black);
    color: var(--white);
}
.select2-container--default.select2-container--disabled
    .select2-selection--single {
    background: transparent;
}
.select2-container--default.select2-container--disabled
    .select2-selection--single
    .select2-selection__rendered {
    color: #fff;
}
.select2-selection.select2-selection--single.select2-selection--clearable
    .select2-selection__rendered {
    color: #fff;
}
.select2-results__option {
    font-size: 1rem;
    padding: 6px 15px;
}
.select2-container--default .select2-selection--multiple {
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 0;
}
.select2-container .select2-selection--multiple {
    min-height: 58px;
}
.select2-container--default.select2-container--focus
    .select2-selection--multiple {
    border: none;
    border-bottom: 1px solid var(--primary);
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    margin-left: 0;
    margin-left: 5px;
    padding-left: 30px;
    position: relative;
    top: -10px;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove {
    color: var(--white);
    border-right: 1px solid #f1f8f8;
    padding: 0 5px;
}

.select2-container .select2-search--inline .select2-search__field {
    height: auto;
}
::-webkit-input-placeholder {
    line-height: 45px;
}
/* Select2 CSS End */

/* Custome Radio and Checkbox */
/* The container */
.custom-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.custom-radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--black);
    border: 1px solid var(--primary);
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.custom-radio:hover input ~ .checkmark {
    background-color: var(--gray-333);
}

/* When the radio button is checked, add a blue background */
.custom-radio input:checked ~ .checkmark {
    background-color: transparent;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.custom-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmark:after {
    top: 7px;
    left: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
}
.start_creat_main .custom-radio .checkmark:after,
.form_canva_main .custom-radio .checkmark:after {
    top: 0;
    left: 0;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--primary);
}
.start_creat_main .custom-radio input:checked ~ .checkmark:before,
.form_canva_main .custom-radio input:checked ~ .checkmark:before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 8px;
    width: 7px;
    height: 14px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 1;
}

/* Custom Checkbox */
/* The container */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: var(--black);
    border: 1px solid var(--primary);
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 8px;
    top: 3px;
    width: 7px;
    height: 14px;
    border: solid var(--primary);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

select {
    background-color: var(--black);
    appearance: none;
}

/* Verify Email CSS Start */
.verify-email {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}
.verify-email .form-btn {
    max-width: 300px;
    width: 100%;
}
.verify-email .verify-email-img {
    margin-bottom: 20px;
}
.verify-email h6 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--heading-bold);
    white-space: nowrap;
}
.verify-email p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}
/* Verify Email CSS End */

/* Left Panel CSS Start */
.left-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    transition: 0.5s;
    z-index: 100;
}
.left-panel.show ~ .middle-panel {
    padding-left: 90px;
    transition: all 0.5s ease-in-out;
}

.nav {
    height: 100%;
    display: block;
}
.nav-list {
    height: calc(100vh - 6.6rem);
    max-height: 767px;
    overflow-y: auto;
}
.nav-list:hover {
    overflow: hidden auto;
}
/* .nav-icon {
    display: none;
} */
.nav-logo {
    display: block;
    text-align: center;
    padding: 40px 30px;
}

.nav-toggle {
    position: absolute;
    top: 1.1rem;
    right: -0.5rem;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 5px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
    padding: 3px;
}
.nav-toggle svg {
    transform: rotate(90deg);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.35rem;
    margin-bottom: 0.5rem;
    color: #ededed !important;
    transition: 0.3s;
    padding-left: 25px;
    font-family: var(--heading-medium);
    font-size: 16px;
    height: 50px;
    gap: 1rem;
}
.nav-text {
    font-size: 14px;
    font-family: var(--heading-bold);
    text-transform: uppercase;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.nav-link:hover::after,
.nav-link:focus::after {
    content: "";
    background: var(--white);
    width: 6px;
    position: absolute;
    right: 0;
    height: 47px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}
.nav-link.active::after {
    content: "";
    background: var(--white);
    width: 6px;
    position: absolute;
    right: 0;
    height: 47px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

/* collasped sidepanel start */
.left-panel.show {
    width: 90px;
}
.left-panel.show .nav-logo {
    padding: 20px;
}
.left-panel.show .nav-logo .nav-logo-smallicon {
    display: block;
    margin: auto;
}
.left-panel.show .nav-logo .nav-logo-icon {
    display: none;
}
.left-panel.show .nav-list {
    width: 90px;
}
.left-panel.show .nav-icon {
    display: flex;
}
.left-panel.show .nav-list .nav-link {
    padding-left: 0;
    justify-content: center;
}
.left-panel.show .nav-list .nav-link .nav-icon {
    margin-right: 0;
}
.left-panel.show .nav-list .nav-link span,
.left-panel.show .footer-nav-list span {
    display: none;
}

/* collasped sidepanel end */
.expander {
    padding: 0 12rem 0 0;
}
.rotate {
    transform: rotate(180deg);
    transition: 0.5s;
}

.middle-panel {
    width: 100%;
    padding-left: 300px;
    height: 100vh;
    position: relative;
    display: block;
    transition: all 0.5s ease-in-out;
}

.no-sidebar {
    padding-left: 0px;
}

.middle-panel .midd-left {
    width: calc(100% - 470px);
    padding: 20px 20px 60px;
    /* scrollbar-color: var(--primary) var(--white); */
    overflow-x: auto;
    scrollbar-color: auto;
}
.middle-panel .midd-left::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

.middle-panel .midd-left::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5;
}

.middle-panel .midd-left::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--primary);
}
.midd-left .middle-spinvid-img {
    text-align: center;
}

.middle-cmn-heading {
    padding: 40px 50px 40px;
    text-align: center;
    display: flex;
    align-items: center;
    line-height: initial;
    justify-content: space-between;
    position: relative;
}
.middle-cmn-heading img {
    max-width: 270px;
}
/* Left Panel CSS End */

/* Middle Right Panel CSS */
.middle-panel .midd-right {
    position: fixed;
    height: 100%;
    background: var(--right-panel);
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 470px;
    width: 100%;
    padding: 1rem 1.5rem;
}

.midd-right .midd-right-hd {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    /* text-transform: uppercase; */
    color: var(--white);
    padding: 1.5rem 0 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    border-bottom: 1px solid var(--primary);
}
.brd-top {
    border-top: 1px solid var(--primary);
}

.brd-bottom {
    border-bottom: 1px solid var(--primary);
}

.midd-right .cmn-padding {
    padding: 18px 0;
}

.midd-right .cmn-white-hd {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    padding: 0;
    padding-top: 5px;
}

.midd-right .vinyl-cpvc ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.midd-right .vinyl-cpvc ul li {
    list-style-type: none;
    background: var(--gray-333);
    border-radius: 5px;
    border: 1px solid var(--gray-333);
    padding: 7px;
    max-width: 48.5%;
    width: 100%;
    font-family: var(--font-regular);
    font-size: 16px;
}

.midd-right .vinyl-cpvc ul li.active {
    font-family: var(--font-bold);
    font-size: 18px;
    border: 1px solid var(--primary);
}

.color-picker {
    background-color: var(--gray-29);
    text-align: center;
}

.range-slider .cmn-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.range-slider .cmn-icons .big-icon {
    transform: scaleX(-1);
}

.opacity .small-icon {
    border: 1px solid var(--white);
    border-radius: 50px;
    width: 20px;
    height: 20px;
}

.opacity .big-icon {
    border: 1px solid var(--white);
    background: var(--white);
    border-radius: 50px;
    width: 20px;
    height: 20px;
}

/* scrollbar CSS Start */
.midd-right .fixed-scroll {
    height: calc(100dvh - 13rem);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 10px 0 0px;
}
.midd-right .fixed-scroll::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.midd-right .fixed-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.midd-right .fixed-scroll::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--primary);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.midd-right .fixed-scroll::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}
/* Scrollbar CSS End */

/* Range Slider CSS Start */
.range {
    width: 100%;
    height: 7px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--white);
    outline: none;
    border-radius: 10px;
    overflow: hidden;
}
.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: -407px 0 0 400px var(--primary);
    position: relative;
    z-index: 1;
}

/* Range Slider CSS End */

/* btn icons CSS  Start*/
.form-btn {
    display: flex;
    column-gap: 15px;
    margin: 20px 0;
}
.form-btn .btn {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 25px;
    font-family: var(--font-regular);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--white);
}
/* btn icons CSS End */

/* Middle Right Panel CSS */

/* Modal Popup Common CSS Start */
.modal.show,
.modal-backdrop.show {
    width: 100%;
}
.modal .modal-content {
    background-color: var(--right-panel);
    padding: 28px;
    border: 1px solid var(--primary);
    border-radius: 10px;
}
.modal .modal-content .modal-header {
    border-bottom: 0;
    padding: 0 0 10px 0;
}
.modal .modal-content .modal-footer {
    border-top: 0;
    gap: 30px;
    padding: 0.75rem 0;
    justify-content: space-between;
}
.modal .modal-content .modal-footer > * {
    margin: 0;
}
.modal .modal-content .modal-footer .btn-primary,
.modal .modal-content .modal-footer .btn-secondary {
    text-transform: capitalize;
    font-size: 14px;
    margin: 0;
    border: 1px solid var(--primary);
    padding: 15px 20px;
}
.modal .modal-content .modal-footer .btn-primary:active:focus,
.modal .modal-content .modal-footer .btn-secondary:active:focus {
    box-shadow: none;
}
.modal-backdrop {
    background-color: #0f0f0f;
}
.modal-header .btn-close {
    background: transparent url("../images/modal-cross-icon.svg") center / 32px
        auto no-repeat;
    opacity: 1;
}
.modal-header .btn-close:focus {
    box-shadow: none;
}
/* Modal Popup Common CSS End */

/*saveshare-popup screen start*/
.loginregister-modal .modal-content {
    padding: 28px 28px 55px 28px;
}
.loginregister-modal .modal-content .modal-body {
    padding: 0;
    row-gap: 20px;
}
.loginregister-modal .modal-content .modal-body img {
    width: 219px;
}
.loginregister-modal .modal-content .modal-footer {
    padding: 18px 0 0 0;
    row-gap: 14px;
}
.loginregister-modal .modal-content .modal-footer .btn-primary,
.loginregister-modal .modal-content .modal-footer .btn-secondary {
    text-transform: uppercase;
    min-width: 254px;
}
.loginregister-modal .modal-content .modal-footer .btn-secondary {
    border-color: var(--white);
    color: var(--primary-hover);
}
.loginregister-modal .modal-content .modal-footer .btn-secondary:hover {
    border-color: var(--primary-hover);
    color: var(--white);
}
/*saveshare-popup screen end*/

/*savevideoimage-popup screen start*/
.savevideo-modal .modal-content {
    padding: 28px 28px 48px 28px;
}
.savevideo-modal .modal-content .modal-body {
    padding: 0;
    row-gap: 30px;
}
.savevideo-modal .modal-content .modal-footer .btn-primary {
    min-width: 254px;
}
.savevideo-modal .modal-content .modal-body .selectorvalue {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.savevideo-modal .modal-content .modal-body .selectorvalue .lft-selct label,
.savevideo-modal .modal-content .modal-body .selectorvalue .rght-selct label {
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
    margin: 0 0 5px 0;
}
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    .lft-selct
    span.ui-spinner,
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    .rght-selct
    span.ui-spinner {
    border: 1.54px solid var(--primary);
    border-radius: 0;
    width: 100px;
    min-height: 62px;
}
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    span.ui-spinner
    .ui-spinner-button {
    width: 14px;
    height: 7px;
    right: 14px;
}
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    span.ui-spinner
    .ui-spinner-button.ui-spinner-up {
    top: 14px;
}
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    span.ui-spinner
    .ui-spinner-button.ui-spinner-down {
    bottom: 14px;
}
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    span.ui-spinner
    .ui-spinner-button.ui-spinner-up::before {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #171a1f;
    position: absolute;
    content: "";
    left: 0;
}
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    span.ui-spinner
    .ui-spinner-button.ui-spinner-down::before {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #171a1f;
    position: absolute;
    content: "";
    left: 0;
}
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    .lft-selct
    input[type="number"],
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    .rght-selct
    input[type="number"] {
    outline: none;
    /* -moz-appearance: textfield; */
    font-family: var(--font-regular);
    font-size: 24px;
    line-height: 40px;
    color: #171a1f;
    padding: 10px 18px;
    position: relative;
    margin: 0;
}
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    .lft-selct
    input[type="number"]::-webkit-inner-spin-button,
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    .lft-selct
    input[type="number"]::-webkit-outer-spin-button,
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    .rght-selct
    input[type="number"]::-webkit-inner-spin-button,
.savevideo-modal
    .modal-content
    .modal-body
    .selectorvalue
    .rght-selct
    input[type="number"]::-webkit-outer-spin-button {
    /* -webkit-appearance: none;
    appearance: none; */
}
.savevideo-modal .modal-content .modal-footer {
    padding: 30px 0 0 0;
}
/*savevideoimage-popup screen end*/

/*saveaudio screen start*/
/* .saveaudio-modal .modal-content {
    padding: 28px 28px 64px 28px;
} */
.saveaudio-modal .modal-content .modal-body .modal-inner-title,
.confirm-modal-common .modal-inner-title {
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 0.9rem;
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: 0;
    display: block;
    text-align: center;
}
.saveaudio-modal .modal-content .modal-body {
    padding: 0;
    row-gap: 1rem;
}
.saveaudio-modal .modal-content .modal-footer {
    padding: 20px 0 0;
}
.saveaudio-modal .modal-content .modal-footer .btn-primary {
    min-width: 85px;
}
/*saveaudio screen end*/

/*termsandconditions screen start*/
/* .termsandconditions-modal .modal-content {
    padding: 28px 28px 64px 28px;
} */
.termsandconditions-modal .modal-content .modal-body .modal-inner-title {
    font-family: var(--heading-bold);
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
}
.termsandconditions-modal .modal-content .modal-body {
    padding: 0;
    row-gap: 30px;
}
.termsandconditions-modal .modal-content .modal-footer {
    padding: 30px 0 0 0;
}
/*termsandconditions screen end*/

/*about screen start*/
.cmmn-bg {
    background: url("../images/cmmn-bg.jpg") no-repeat;
    height: 100vh;
    background-size: cover;
}
.inner-left {
    position: relative;
}
.inner-left p {
    line-height: 27px;
}
.inner-left .middle-cmn-heading {
    padding-bottom: 30px;
}
.cmmn-lft-padd {
    padding: 0 0 0 58px;
}
.middle-inner-heading {
    font-family: var(--heading-medium);
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0px;
    color: var(--primary);
    margin: 0 0 10px 0;
    text-transform: uppercase;
}
/*about screen end*/

/*========== 10-03-2025 start ==========*/

/*features screen start*/
.features-table .table-responsive {
    overflow-y: hidden;
}
.features-table .table thead tr th {
    text-transform: uppercase;
    color: var(--primary);
    font-family: var(--heading-bold);
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0px;
    background-color: transparent;
    border: none;
}
.features-table .table thead tr th:nth-of-type(2) {
    width: 275px;
    text-align: center;
}
.features-table .table > :not(caption) > * > * {
    background: #44484b;
}
.features-table .table thead tr th:last-child {
    width: 150px;
    text-align: center;
}
.features-table .table tbody tr td {
    font-weight: 500;
    font-size: 1rem;
    border: none;
}
.features-table .table tbody tr td:first-child {
    padding: 11px 11px 11px 21px;
}
.features-table .table tbody tr td .correct {
    position: relative;
}
.features-table .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: var(--black);
    --bs-table-accent-bg: var(--black);
}
.features-table .table-dark {
    --bs-table-bg: #151414;
}
.features-table .features-btn .btn-primary {
    font-family: var(--font-regular);
    padding: 17px 20px;
}
/*features screen end*/

/*upgrade-premium start*/
.chooseplan-filter-btn {
    margin: 60px 0;
}
.chooseplan-filter-btn .btn {
    border-radius: 0;
    height: 136px;
    padding: 60px 50px;
    font-size: 24px;
    line-height: 36px;
    font-family: var(--font-regular);
}
.chooseplan-filter-btn .btn-secondary:active:focus,
.chooseplan-filter-btn .btn-secondary {
    box-shadow: none;
}
.update-btn .btn-primary {
    font-family: var(--font-regular);
    padding: 17px 32px;
    height: 42px;
}
.update-btn .btn-primary:active:focus {
    box-shadow: none;
}
/*upgrade-premium end*/

/*profile page start*/
.profile-upld .prf-img {
    margin: 0 0 30px 0;
    max-width: 300px;
    max-height: 300px;
    object-fit: cover;
}
.profile-upld .upld-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}
.profile-upld .upld-btn input[type="file"] {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-indent: -5000px;
    cursor: pointer;
}
.profile-upld .upld-btn .btn {
    column-gap: 10px;
    height: 42px;
    position: relative;
    overflow: hidden;
}
.profile-upld .upld-btn .btn:active:focus {
    box-shadow: none;
}
.profile-form .form-control {
    font-family: var(--font-bold);
    width: 100%;
    padding-bottom: 13px;
}
.producer-txt {
    color: #959595;
    font-family: var(--heading-bold);
    font-size: 22px;
    line-height: normal;
    letter-spacing: 0px;
    text-transform: uppercase;
    padding: 20px 0;
    display: block;
    text-align: center;
}
.profile-form label {
    color: #959595;
    font-size: 16px;
    font-weight: 500;
    display: block;
}
.profile-form .toggle-txt {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--primary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 23px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 4px;
    right: 0;
    bottom: 0;
    background-color: var(--gray-29);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 5px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.switch input:checked + .slider {
    background-color: var(--primary);
}
.switch input:focus + .slider {
    box-shadow: 0 0 1px var(--primary);
}
.switch input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}

/*profile page end*/

/* profile edit start */
/* profile edit end */

/* change password start */
.change-password-form {
    padding: 2rem 0;
    max-width: 470px;
    margin: auto;
    height: calc(100vh - 7rem);
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.change-password-form .btn {
    font-size: 0.875rem;
    font-family: var(--heading-bold);
}
.change-password-form label {
    font-family: var(--font-bold);
    padding: 0 0 12px 0;
}
.change-password-form .form-control {
    padding-bottom: 13px;
}
.change-password-form .eye-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
}
/* change password end */

/*========== 10-03-2025 end ==========*/

/* ========= saloni-hb ========= */

/* auth flow */
.error,
.invalid-feedback {
    top: unset !important;
    bottom: -43px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: red !important;
    padding-left: 0 !important;
}
.form-floating > .form-control:focus ~ .error,
.form-floating > .form-control:not(:placeholder-shown) ~ .error,
.form-floating > .form-select ~ .error {
    transform: unset !important;
    opacity: 1 !important;
}
/* start creating */
.middle-content {
    padding: 0 40px;
    height: calc(100vh - 15.5rem);
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.canvas-blog h6 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--heading-bold);
    height: 36px;
    text-align: center;
}
.canvas-blog {
    position: relative;
    text-align: left;
    padding: 4rem 0;
}
.canvas-blog.middle-blog:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: inline-block;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        130deg,
        #000000 0%,
        #00ad9d 20%,
        #00ad9d 54%,
        #00ad9d 82%,
        #000000 100%
    );
}
.canvas-blog.middle-blog:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: inline-block;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        130deg,
        #000000 0%,
        #00ad9d 20%,
        #00ad9d 54%,
        #00ad9d 82%,
        #000000 100%
    );
}
.canvas-blog .custom-radio {
    display: inline-block;
    text-align: center;
    padding-left: 0;
    margin-bottom: 2rem;
}
.canvas-blog .custom-radio p {
    font-size: 16px;
    font-weight: 500;
}
.canvas-blog .custom-radio .checkmark {
    top: unset;
    bottom: -18px;
    margin: 0 auto;
    right: 0;
}
.canvas-blog input:checked ~ div > .canva-img {
    border-color: #00ad9d;
    box-shadow: 0 0 10px #00ad9d59;
}
.canvas-blog .canva-img {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    border: 1px solid transparent;
    margin-bottom: 1rem;
    object-fit: cover;
}
.footer-sec {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

/* authentication flow */
.custom-container {
    padding: 0 4.375rem;
}
.login-form h6 {
    font-size: 16px;
    font-family: var(--heading-bold);
    color: var(--primary);
    margin-bottom: 10px;
}
#forgot-password-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0 20px;
    line-height: normal;
    display: block;
    text-align: right;
    width: fit-content;
    margin-left: auto;
}
.signup-text {
    font-size: 18px;
    font-weight: 500;
}
.signup-text a {
    font-weight: 500;
}
.form-label {
    font-size: 16px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    font-weight: 500;
}
.signup.login-img {
    right: 9rem;
}
.signup-form .col-md-6 {
    margin-top: 0;
}
.main-title {
    font-size: 26px;
    font-family: var(--heading-bold);
    color: var(--primary);
    margin-bottom: 0;
    width: 100%;
}
.nav-logo-smallicon {
    display: none;
}
.left-panel-ftr {
    display: flex;
    white-space: nowrap;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin-right: 30px;
}
.left-panel-ftr .user-img {
    border-radius: 100px;
    width: 40px;
    height: 40px;
}
.left-panel-ftr span {
    font-size: 14px;
    font-family: var(--heading-bold);
    color: #fff;
}
.grp-editor-btn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 1rem 1.3rem;
    border-top: 1px solid var(--primary);
    background: #131313;
    width: 100%;
    z-index: 111;
}

.grp-editor-btn .btn {
    gap: 0.5rem;
    font-size: 13px;
    font-family: var(--heading-bold);
    padding: 10px 10px;
}

.grp-editor-btn .btn i img {
    width: 16px;
    height: 16px;
}
.vinyl-cpvc .custom-radio {
    padding-left: 28px;
    font-size: 16px;
    line-height: 26px;
}
.vinyl-cpvc .custom-radio .checkmark {
    background: transparent;
    width: 17px;
    height: 17px;
    top: 5px;
}
.vinyl-cpvc .custom-radio .checkmark:after {
    top: 3px;
    left: 3px;
}
.modal-dialog {
    max-width: 608px;
    margin: 1.75rem auto;
}
.accordion-item:first-of-type .accordion-button {
    border-top: 0;
    padding-top: 0;
}
.input-group .btn-minus span {
    width: 36px;
    height: 36px;
    border: none;
    color: #fff;
    border-radius: 100px !important;
    background: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;
}
.input-group .btn-plus span {
    width: 36px;
    height: 36px;
    border: none;
    color: #fff;
    border-radius: 100px !important;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-group .btn-plus span svg {
    width: 12px;
    height: 12px;
}

.counter-grp .form-control {
    background: #292929;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px !important;
    width: fit-content !important;
    border: 1px solid var(--primary);
    max-width: 50px;
    height: 40px;
    padding: 0 !important;
    text-align: center;
}
.signup-form .form-label {
    padding-top: 0.8rem;
    padding-left: 0.75rem;
    margin-bottom: 0;
    font-weight: 600;
}
.auth-noscroll {
    overflow: hidden;
}
.flex-canvablog {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.form_canva_main p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}
.footer-nav-list {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.canva-video-blog .custom-radio {
    position: absolute;
    bottom: 27px;
}
#forgotPasswordModal .modal-dialog {
    max-width: 488px;
}
#confirmModal .modal-dialog,
.confirm-modal-common .modal-dialog {
    max-width: 650px;
}
.modal-body p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.signup-form .signup-text {
    font-weight: 500;
}
.start_creat_main .custom-checkbox {
    margin-bottom: 0;
}
.canvas-blog.middle-blog {
    display: flex;
    flex-flow: column;
    align-items: center;
}
input[type="number"].form-control::-webkit-inner-spin-button,
input[type="number"].form-control::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
input[type="number"].form-control {
    -moz-appearance: textfield;
}
.texteditor-grp {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 30px 0;
}
.texteditor-grp .vinyl-size.canvas-editor-font-style {
    width: 55%;
}
.pickr input:focus,
.pickr input.pcr-active,
.pickr button:focus,
.pickr button.pcr-active,
.pcr-app input:focus,
.pcr-app input.pcr-active,
.pcr-app button:focus,
.pcr-app button.pcr-active {
    box-shadow: unset !important;
}
.accordion-body .select2-container .select2-selection--single {
    height: auto !important;
    border: 1px solid var(--primary);
    border-radius: 5px !important;
    background: #292929 !important;
}
.accordion-body
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b,
.accordion-body
    .select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    padding: 4px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
}
.accordion-body
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: unset;
    padding: 9px 15px;
    color: var(--white);
}
.format-text {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    padding-top: 10px;
}
#buyPremiumUpgradeModal .modal-dialog {
    max-width: 608px;
}
.accordion-body .form-control {
    background: #292929;
    border: 1px solid #09b6a0;
    border-radius: 5px;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: 400;
}
.post-img,
.reel-img {
    width: 90%;
}
.video-img {
    width: 100%;
}
/* static pages css */
.static-spaces {
    padding: 0 40px;
}
.static-spaces p,
.static-spaces td {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}
.static-head {
    font-family: var(--heading-bold);
    font-size: 24px;
    color: var(--white);
    display: block;
    margin-bottom: 30px;
}
.subheading {
    font-size: 16px;
    font-family: var(--heading-bold);
    color: var(--primary);
    margin-bottom: 13px;
    display: block;
}
.changepass-main .back-btn {
    position: absolute;
    right: 0;
    margin-right: 40px;
}
.signup-form .btn {
    font-family: var(--heading-bold);
}
.js-example-basic-single ~ .error {
    padding: 0;
}
/* rendering canvas ratio */
.rendering-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    color: white;
    font-size: 20px;
    flex-direction: column;
}
.rendering-loader .spinner-border {
    width: 4rem;
    height: 4rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.progress-message {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    display: block;
    text-align: center;
}
.thank-you-message {
    display: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    margin: 1rem 0 0;
}
#render-progress-bar {
    position: relative;
    background: var(--primary);
}

#progress-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: var(--primary);
}
#progress-percent-below {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin: 0 auto 20px;
    display: inline-block;
    text-align: center;
    width: 100%;
}
.progress {
    height: 7px;
    background: var(white);
    border-radius: 10px;
}
#thank-you-block i {
    color: var(--primary);
    font-size: 90px;
}
#thank-you-block h6,
#loading-block h6 {
    font-size: 20px;
    font-weight: 400;
}
#thank-you-block h6 b {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}
#loginregisterModal .modal-dialog {
    max-width: 488px;
}
.scrollblog .middle-cmn-heading {
    width: calc(100% - 470px);
}
/* save-sharing */
.social-sharing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--primary);
    padding: 30px 0;
}
.social-sharing .shape-cmn {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* video share-save screen */
/* Video & Container */
#preview-video {
    max-width: 562px;
    height: calc(100vh - 16rem);
    width: 100%;
    border-radius: 0;
    display: block;
    margin: 0 auto;
}

/* Custom Controls */
.custom-controls {
    margin-top: 20px;
    text-align: center;
    color: white;
}
#play-pause-btn {
    font-size: 30px;
    color: #fff;
}
.custom-controls button {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
}

.custom-controls button:hover {
    color: var(--primary-hover);
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

#progress-bar {
    flex: 1;
    accent-color: var(--primary);
}

/* modal cropping ui */
.crop-modal-size {
    max-width: 650px;
}
.custom-controls button {
    border: 3px solid #00b79d;
    border-radius: 50%;
    padding: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.custom-controls button i {
    margin: 0;
}
#va-preview-btn {
    padding-left: 5px;
}
#va-pause-btn {
    padding-left: 1px;
}
#va-stop-btn {
    padding-left: 1px;
}
.profile-user-form .form-btn .btn {
    line-height: unset;
    font-family: var(--heading-bold);
    font-size: 0.875rem;
    padding: 12px 20px;
}
/* Manage layer */
.manage-layer-blog {
    position: absolute;
    right: 0;
    top: 0;
    margin: 1.875rem 0;
}
.manage-layer-blog .btn {
    height: 40px;
    width: 32px;
    border-radius: 2px 0 0 2px;
    border: 1px solid var(--primary);
    border-right: none;
    box-shadow: unset !important;
    padding: 0;
    margin-left: auto;
    display: block;
}
.manage-layer-blog .btn-close {
    width: 340px;
    height: 40px;
    background: var(--primary);
    border-radius: 2px 0 0 2px;
    border: 1px solid var(--primary);
    border-right: none;
    display: inline-block;
    box-shadow: unset !important;
    opacity: 1;
    padding: 0;
    position: relative;
    margin-left: -38px;
}
.manage-layer-blog .btn-close svg {
    position: absolute;
    left: 14px;
    top: 12px;
    bottom: 0;
    transform: rotate(180deg);
}
.manage-layer-blog .btn-close svg path {
    fill: var(--white);
}
.manage-layer-blog .btn-close span {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    width: 100%;
}
.manage-layer-blog .offcanvas {
    opacity: 1;
    z-index: 11;
    border: 2px solid var(--primary);
    border-right: 0;
    border-radius: 5px 0 0 5px;
    background: #000;
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.25rem 1.25rem 1.25rem;
    width: 300px;
    margin-left: auto;
    position: absolute;
    top: 0px;
    right: 0;
    bottom: unset;
    max-width: fit-content;
}

#canvas-list-container > .canvas-item {
    border-bottom: 1px solid #09b6a0;
    font-size: 16px;
    padding: 10px;
    margin-top: 7px;
    line-height: normal;
    position: relative;
    cursor: pointer;
}
#canvas-list-container > .canvas-item:before {
    content: "";
    border: 1px solid var(--white);
    border-left: none;
    border-right: none;
    display: inline-block;
    width: 12px;
    height: 4px;
    margin: 4px 10px 4px 0;
}
#canvas-list-container > .canvas-item:last-child {
    background: #5e5e5e66;
}
.manage-layer-blog .modal-backdrop {
    display: none;
}
/* premium plan css */
.get-premium-blog .btn {
    /* font-family: var(--font-regular); */
    height: 54px;
    padding: 1rem;
    line-height: 21px;
    letter-spacing: 1px;
}
.get-premium-blog .form-btn {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.5rem 0 1rem;
}

.get-premium-blog .form-btn a,
.get-premium-blog .form-btn span {
    font-size: 1rem;
    font-weight: 500;
    color: #9d9f9e;
}
.get-premium-blog .form-btn a:hover {
    color: #fff;
}
.premium-subhead h4 {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}
.premium-subhead p {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
}
.subscription-plan-body .card-text {
    font-size: 24px;
    /* font-family: var(--heading-bold); */
    font-weight: 700;
}
.title-newmodal {
    font-family: var(--heading-bold);
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 0.9rem;
    white-space: nowrap;
}
.cancel-btn-outside {
    padding: 14px 25px;
    border-radius: 5px;
    text-align: center;
    font-family: var(--heading-bold);
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cross-shadow-ribbon {
    position: absolute;
    background: #ffa711;
    top: -11px;
    left: 14px;
    padding: 4px 10px;
    color: #fff;
    border-radius: 0 0 2px 2px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-regular);
}
.cross-shadow-ribbon:before {
    content: "";
    position: absolute;
    left: -10px;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 10px solid #ba7603;
    border-left: 10px solid transparent;
}
.feature-btngrp .btn {
    height: 54px;
    padding: 1rem;
    line-height: 21px;
    letter-spacing: 1px;
    font-family: var(--font-regular);
    font-size: 16px;
    font-weight: 400;
    margin: 10px auto;
}
.feature-btngrp a {
    font-size: 16px;
    font-weight: 500;
    color: #9d9f9e;
    padding-bottom: 1rem;
    display: block;
}
#savevideoModal .modal-dialog {
    max-width: 440px;
}
#savevideoModal .middle-txt {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
#savevideoModal input {
    border: 1.54px solid var(--primary);
}
#savevideoModal input[type="number"]::-webkit-inner-spin-button,
#savevideoModal input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    caret-color: transparent;
}
.subscription-plan-body .card-text svg {
    width: 18px;
    height: 18px;
}
.border-bottom-custom {
    border-bottom: 1px solid var(--primary);
}

.spinvid-footer {
    width: 100%;
    height: 80px;
    /* background: linear-gradient(
        0deg,
        rgba(0, 173, 157, 1) 10%,
        rgba(0, 0, 0, 1) 100%
    ); */
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.9) 16.7%,
        #00ad9d 108.23%
    );
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    display: flex;
    align-items: end; /* Vertically centers content */
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}

.marquee-text {
    display: block;
    text-align: center;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.separator {
    color: white;
    padding: 0 10px;
}

.spinvid-footer p {
    font-size: 14px;
    font-family: var(--heading-bold);
    margin: 0; /* Remove default margins */
    display: inline-block;
    color: white;
    vertical-align: middle; /* helps with inline-block vertical alignment */
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%); /* Start completely off-screen right */
    }
    100% {
        transform: translateX(-100%); /* Exit completely off-screen left */
    }
}
/* ad-blog ui */
.ad-blog {
    border: 1px solid var(--primary);
    border-radius: 20px;
    max-height: 300px;
    height: 100%;
    padding: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 30px 0 0;
    overflow: hidden;
    position: relative;
}

.ad-blog h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0;
}

.ad-blog h1 {
    font-size: 48px;
    font-weight: 500;
    color: var(--primary);
}

.ad-blog img,
.ad-blog video {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain; /* Ensure content fits inside the container */
    display: block;
    margin: auto;
}

.video-controls {
    position: absolute;
    top: 45px;
    right: 95px;
    z-index: 5; /* Ensure it's above the video */
    display: flex;
    gap: 10px;
}

.video-controls img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    filter: brightness(0) invert(1); /* White look if icons are dark */
}

.rendering-overlay .grp-editor-btn {
    border: none !important;
}
.modal-body .login-title {
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0;
    display: block;
    text-align: center;
    color: var(--primary);
}
#buyPurchasedPlanForFeature .modal-lg {
    max-width: 800px !important;
}
.page-expired-container {
    max-width: 470px;
    width: 100%;
    margin: auto;
    padding: 0;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

#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;
}
.va-waveform-container {
    border-radius: 5px;
    height: 70px !important;
    display: flex;
    align-items: center;
}
.static-spaces h5 {
    color: var(--primary);
    font-family: var(--heading-bold);
    font-size: 16px;
    margin-bottom: 13px;
}
.subscription-plan-body .card-title {
    color: var(--white);
}
.static-spaces ul {
    list-style: disc;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}
.custom-table-md {
    width: 60%;
    white-space: nowrap;
    margin: 2rem auto;
}

/* New Plan Table */
.new-plan-table table {
    border: 1px solid var(--primary);
    background: rgba(19, 19, 19, 1);
}
.new-plan-table table td {
    font-size: 30px;
    position: relative;
    border-bottom: none;
    text-align: left;
    padding: 0;
    color: white;
    font-weight: 700;
}
.new-plan-table table td .badge {
    background: #4dc6bb;
    border: 1px solid white;
    border-radius: 0 0 16px 16px;
    font-size: 14px;
    font-family: var(--font-regular);
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    padding: 14px 20px;
    text-transform: uppercase;
    height: fit-content;
    max-width: 199px;
    width: fit-content;
}
#buyPurchasedPlanForFeature .new-plan-table table td {
    font-size: 20px;
}
#buyPurchasedPlanForFeature .new-plan-table table th {
    font-size: 14px;
}
#buyPurchasedPlanForFeature .new-plan-table table td .badge {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 0 0 6px 6px;
}
.new-feature-table {
    margin-top: 1.5rem;
}
.new-feature-table table th,
.new-feature-table table td {
    white-space: nowrap;
}
#subscribe-form .info-icon,
.new-feature-table .info-icon {
    width: 16px;
    height: 16px;
    margin-bottom: 10px;
    cursor: pointer;
}
.subscription-plan-card .subscription-plan-body strong {
    position: relative;
}

.custom-list-content {
    list-style: none !important;
    padding-left: 1.5rem !important;
}

.custom-list-content li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.custom-list-content li img {
    width: 20px;
    height: 20px;
    position: relative;
    top: 4px;
}
.static-other-title{
    font-size: 19px !important;
}

/* General container reset */
.custom-effect-radio {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #029386;
    border-radius: 50%;
    background-color: #000000;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

/* Hover state */
.custom-effect-radio:hover {
    background-color: #333333;
}

/* Checked state - filled background and ✓ */
.custom-effect-radio:checked {
    background-color: #029386;
    border-color: #029386 !important;
}

/* Checkmark using ::after pseudo-element */
.custom-effect-radio:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #000000;
}

.custom-effect-radio + label {
    cursor: pointer;
}
.unplanned-button {
    padding: 14px 25px;
    border-radius: 5px;
    background: #44484b;
    border: 1px solid #44484b;
    text-align: center;
    font-family: var(--heading-bold);
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.effect-pera{
    font-size: 14px;
    font-weight: 500;
}
.static-accordion {
    padding-bottom: 2.5rem;
}
.static-accordion .accordion-item{
    background: transparent;
    border-bottom: 1px solid var(--primary);
    padding: 0.8rem 0;
    border-radius: unset !important;
}
.static-accordion .subheading{
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    text-align: left;
}
.static-accordion .subheading::before {
    flex-shrink: 0;
    width: 30px;
    height: 30px;    
    content: "";
    border-radius: 100px;
    background: var(--primary) url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%222%22%20viewBox%3D%220%200%2010%202%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.9%201H1%22%20stroke%3D%22white%22%20stroke-width%3D%221.8%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22square%22%2F%3E%3C%2Fsvg%3E") no-repeat;    
    background-position: center;
}
.static-accordion .subheading[aria-expanded="false"]::before{
    background: var(--primary)url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.00078%201.0498V8.9498M8.95078%204.9998H1.05078%22%20stroke%3D%22white%22%20stroke-width%3D%221.896%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22square%22%2F%3E%3C%2Fsvg%3E") no-repeat;
    background-position: center;
}
.static-accordion .accordion-body{
    padding: 1rem 0 0;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}
.static-accordion .accordion-body table th {
    border: 1px solid white !important;
    padding: .5rem .5rem !important;
}
#effect-panel .midd-right-hd p {
    display: flex;
    align-items: center;
    gap: 10px;
}
.notesmall{
    font-size: 12px;
    display: block;
    text-align: left;
    font-weight: 500;
}