.gu-mirror {
    position: fixed !important;
    opacity: 0 !important;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    filter: alpha(opacity=0);
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
html:focus-within {
    scroll-behavior: smooth;
}

body {
    background-color: #eeeeee;
    overflow: scroll;
}

body::-webkit-scrollbar {
    width: 7px;
    height: 2rem;
}
body::-webkit-scrollbar-track {
    background: none;
}
body::-webkit-scrollbar-thumb {
    background: #c4c3c3;
    border-radius: 500px;
    border: 1px solid #c4c3c3;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* @font-face {
    font-family: 'inter';
    src: url('../fonts/inter.woff') format('woff');
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter.woff') format('woff');
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter.woff') format('woff');
} */

.tool-shadow {
    -webkit-box-shadow: 0 4.5px 20px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4.5px 20px 0 rgba(0, 0, 0, 0.2);
}

.settings-input-header {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #9096a9;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.settings-select-input {
    height: 42px;
    width: 100%;
    border: 1px solid #e6e8eb;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 15px;
    color: #3d455f;
    margin-bottom: 16px;
    outline: none;
    -webkit-appearance: none;
}

.settings-select-input option {
    /* wrap text in compatible browsers */
    -moz-white-space: pre-wrap;
    -o-white-space: pre-wrap;
    white-space: pre-wrap;
    /* hide text that can't wrap with an ellipsis */
    overflow: hidden;
    text-overflow: ellipsis;
    /* add border after every option */
}
.settings-select-input::-webkit-input-placeholder {
    color: #9096a9;
    font-size: 16px;
}
.settings-select-input::-moz-placeholder {
    color: #9096a9;
    font-size: 16px;
}
.settings-select-input::-ms-input-placeholder {
    color: #9096a9;
    font-size: 16px;
}
.settings-select-input::placeholder {
    color: #9096a9;
    font-size: 16px;
}

input:focus,
select:focus {
    border: 1px solid #725bc9 !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-input {
    height: 53px;
    width: 100%;
    border: 1px solid #d7dae4;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    padding: 14px;
    font-size: 16px;
    color: #3d455f;
    margin-bottom: 15px;
    outline: none;
    display: inline-block;
}
.form-input::-webkit-input-placeholder {
    color: #9ea4b4;
    font-size: 16px;
}
.form-input::-moz-placeholder {
    color: #9ea4b4;
    font-size: 16px;
}
.form-input::-ms-input-placeholder {
    color: #9ea4b4;
    font-size: 16px;
}
.form-input::placeholder {
    color: #9ea4b4;
    font-size: 16px;
}

.vast-button {
    background: #5e52a9;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    padding: 0 34px;
    border: 1px solid #5e52a9;
    box-shadow: 0px 1px 2px 0px #1018280d;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 14px;
    font-size: 14px;
    line-height: 20px;
    transition: 0.3 ease;
}
.vast-button:hover {
    background: #534996;
    border: 1px solid #534996;
}

.vast-button:focus {
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px #f4ebff;
}
.vast-button:disabled {
    background: #aca5da;
    border: 1px solid #aca5da;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.vast-button.btn-sm {
    padding: 8px 14px 8px 14px;
    font-size: 14px;
    line-height: 20px;
}
.vast-button.btn-md {
    padding: 10px 16px 10px 16px;
    font-size: 14px;
    line-height: 20px;
}
.vast-button.btn-lrg {
    padding: 10px 18px 10px 18px;
    font-size: 16px;
    line-height: 24px;
}
.vast-button.btn-xl {
    padding: 12px 20px 12px 20px;
    font-size: 16px;
    line-height: 24px;
}
.vast-button.btn-xxl {
    padding: 16px 28px 16px 28px;
    font-size: 18px;
    line-height: 28px;
}

.vast-button-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-decoration: none;
    height: 47px;
    text-decoration: none !important;
}
.vast-button-link:hover {
    color: #fff;
}

.vast-secondary-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #344054;
    cursor: pointer;
    transition: 0.3 ease;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    padding: 8px 14px;
    line-height: 20px;
}
.vast-secondary-button:hover {
    background: #f9fafb;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}
.vast-secondary-button:focus {
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px #f2f4f7;
    outline: none;
}
.vast-secondary-button:disabled {
    background: #ffffff;
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}
.vast-secondary-button.btn-sm {
    padding: 8px 14px;
    line-height: 20px;
}
.vast-secondary-button.btn-md {
    padding: 10px 16px;
    line-height: 20px;
}
.vast-secondary-button.btn-lrg {
    padding: 10px 18px;
    line-height: 24px;
}
.vast-secondary-button.btn-xl {
    padding: 12px 20px;
    line-height: 24px;
}
.vast-secondary-button.btn-xxl {
    padding: 16px 28px;
    line-height: 28px;
}
.vast-destructive-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 14px;
    gap: 8px;
    background: #d92d20;
    border: 1px solid #d92d20;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    transition: ease 0.3s;
    cursor: pointer;
}
.vast-destructive-button:hover {
    background: #b42318;
    border: 1px solid #b42318;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}
.vast-destructive-button:focus {
    background: #d92d20;
    border: 1px solid #d92d20;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px #fee4e2;
}
.vast-destructive-button:disabled {
    background: #fecdca;
    border: 1px solid #fecdca;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.vast-destructive-button.btn-sm {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 20px;
}
.vast-destructive-button.btn-md {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
}
.vast-destructive-button.btn-lrg {
    padding: 10px 18px;
    font-size: 16px;
    line-height: 24px;
}
.vast-destructive-button.btn-xl {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
}
.vast-destructive-button.btn-xxl {
    padding: 16px 28px;
    font-size: 18px;
    line-height: 28px;
}

.form-button {
    background: #725bc9;
    width: 100%;
    height: 53px;
    border-radius: 4px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #fff;
    border: 0;
    outline: none;
    -webkit-box-shadow: 0 1px 4px 0 rgba(45, 35, 107, 0.3);
    box-shadow: 0 1px 4px 0 rgba(45, 35, 107, 0.3);
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.form-button:hover {
    background: #6248c3;
}

.focus-input:focus {
    border: 2px solid #9a89d8;
}

.audio-video-settings {
    display: none;
    position: absolute;
    top: -310px;
    right: -220px;
    width: 380px;
    /* height: 300px; */
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    padding-top: 20px;
    border: 1px solid #e6e8eb;
}
.audio-video-settings.active {
    display: block;
}
.audio-video-settings .header {
    font-size: 17px;
    font-family: 'inter', sans-serif;
    color: #3d455f;
    letter-spacing: 0.3px;
    margin-bottom: 17px;
}

.audio-video-test {
    display: none;
    position: absolute;
    top: -295px;
    right: -220px;
    width: 289px;
    height: 284px;
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    padding-top: 20px;
    border: 1px solid #e6e8eb;
}
.audio-video-test.active {
    display: block;
}
.audio-video-test .header {
    font-size: 15px;
    font-family: 'inter', sans-serif;
    color: #3d455f;
    letter-spacing: 0.3px;
    margin-bottom: 17px;
}

.control-button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border: 0;
    outline: none;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 21px;
    background: #fff;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 30px 1px rgba(20, 47, 55, 0.1);
    box-shadow: 0 2px 30px 1px rgba(20, 47, 55, 0.1);
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: -webkit-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.control-button svg {
    display: block;
    pointer-events: none;
}
.control-button svg path {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.control-button:hover {
    -webkit-box-shadow: 0 0 30px 0 rgba(96, 104, 116, 0.3);
    box-shadow: 0 0 30px 0 rgba(96, 104, 116, 0.3);
}
.control-button.active {
    background: #725bc9;
    -webkit-box-shadow: 0 1px 4px 0 rgba(45, 35, 107, 0.3);
    box-shadow: 0 1px 4px 0 rgba(45, 35, 107, 0.3);
}

.control-button.active svg.on {
    display: block;
}
.control-button.active svg.off {
    display: none;
}
.control-button svg.on {
    display: none;
}
.control-button svg.off {
    display: block;
}

.control-button:hover::before,
.control-button:hover::after {
    display: block;
}

.control-button.video.active:hover::before,
.control-button.video.active:hover::after,
.control-button.audio.active:hover::before,
.control-button.audio.active:hover::after {
    display: block !important;
}
.control-button.video:hover::before,
.control-button.video:hover::after,
.control-button.audio:hover::before,
.control-button.audio:hover::after {
    display: none !important;
}
/* .control-button.active svg path {
    fill: #fff;
} */
.control-button.active:hover {
    background: #6248c3;
}

.profile-image {
    width: 50px;
    margin: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
    /* Hide the browser's default checkbox */
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d6d6d6;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.switch .slider:before {
    position: absolute;
    content: '';
    height: 14px;
    width: 14px;
    left: 3px;
    top: 3px;
    background-color: #fff;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    -webkit-box-shadow: -3.5px 0 4.5px 0 rgba(0, 0, 0, 0.03);
    box-shadow: -3.5px 0 4.5px 0 rgba(0, 0, 0, 0.03);
}
.switch input:checked + .slider {
    background-color: #4bbf83;
}
.switch input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
}
.switch .slider.round {
    border-radius: 34px;
}
.switch .slider.round:before {
    border-radius: 50%;
}
.switch .checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.switch .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.modal.limited-modal {
    background-color: #151832;
}
.modal.modal-bg-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.modal__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fefefe;
    padding: 40px;
    opacity: 0;
    border-radius: 10px;
    width: 535px;
    -webkit-box-shadow: 0px 2px 40px -15px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 2px 40px -15px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
    overflow-wrap: anywhere;
    display: none;
}
.modal-close-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    padding: 0;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 500px;
    background: none;
    outline: 0;
    border: none;
    cursor: pointer;
}
.modal-close-btn:hover {
    background-color: #f4f4f4;
}
.modal-close-btn svg {
    pointer-events: none;
}
.modal-close-btn:focus,
.modal-close-btn:focus-visible {
    outline: 0;
}

.add-media-clip-modal {
    width: 630px;
    top: 1rem;
    padding: 40px;
}

.add-media-clip-modal-back-button {
    height: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.8rem;
    cursor: pointer;
}
.add-media-clip-modal .add-media-clip-modal-heading {
    margin-bottom: 16px;
    align-self: flex-start;
    font-size: 21px;
}
.add-media-clip-drop-zone {
    width: 100%;
    border: dashed 1px black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 275px;
    position: relative;
    align-self: flex-start;
}
.add-media-clip-drop-zone .close-button {
    display: none;
}
.add-media-clip-drop-zone .cloud_upload_icon {
    width: 35%;
}

.add-media-clip-modal .add-media-clip-drop-zone p {
    margin: 0;
    padding: 0;
}

.add-media-clip-modal .add-media-clip-drop-zone .button-browse {
    padding: 0 25px;
    margin: 1rem 0;
    height: 35px;
    width: auto;
}

.input-add-link {
    width: 100%;
    background: #fff;
    color: #a3a3a3;
    font: inherit;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    padding: 22px 18px;
}

.button-add-link {
    display: inline-block;
    background: transparent;
    color: inherit;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 0;
    transition: all 200ms ease-in;
    cursor: pointer;
    background: #725bc9;
    color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 12px 20px;
    margin: 0.5rem;
}
.button-add-link:hover {
    background: #8047c5;
}
.button-add-link:active {
    background: #8b57ca;
    box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.add-link-container {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.add-media-clip-modal-drop-zone__input {
    display: none;
}

.add-media-clip-drop-zone_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.drop-zone--over {
    border-style: solid 1px black;
}

.add-media-clip-modal-drop-zone__input {
    display: none;
}

.drop-zone__preview {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.drop-zone__preview * {
    box-sizing: border-box;
    transition: all 0.45s ease;
}

.remove-btn {
    position: absolute;
    user-select: none;
    transition: opacity 0.35s ease;
    cursor: pointer;
    height: 2rem;
    opacity: 0;
}

.add-media-clip-modal .controls-wrapper .remove-btn {
    top: 5%;
    left: 5%;
}

.media_clip.input-well__input .remove-btn,
.screen_share.input-well__input .remove-btn {
    top: 4px;
    right: 4px;
}
.drop-zone__preview:hover .remove-btn {
    opacity: 1;
}
.media_clip .remove-btn,
.screen_share .remove-btn {
    height: 16px;
    width: 16px;
}

.media_clip:hover .remove-btn,
.screen_share:hover .remove-btn {
    opacity: 1;
    z-index: 9999;
}

.media_clip:hover .custom-input-name-label {
    opacity: 0;
}
.custom-input-name-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-family: 'inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    padding: 7px;
    font-size: 12px;
    letter-spacing: 0.2px;
    text-shadow: 2px 2px 6px rgb(0 0 0 / 60%);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: none;
    z-index: 2;
}

/* add media clip button */
#add-media-clip-btn {
    display: none;
    margin-top: 1rem;
    position: relative;
    align-self: end;
    height: 40px;
    font-size: 12px;
    padding: 0 12px;
}

.button__text {
    color: #ffffff;
    transition: all 0.2s;
}
#add-media-clip-btn.button--loading .button__text {
    visibility: hidden;
    opacity: 0;
}
#add-media-clip-btn.button--loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}
@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
/* error message box */
.error-message-wrapper {
    width: 60%;
    max-width: 500px;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    border-radius: 10px;
    padding: 1rem;
    background-color: #725bc9;
    -webkit-transition: 1s ease-in;
    -moz-transition: 1s ease-in;
    transition: 1s ease-in;
}
.error-message-wrapper .error-message-wrapper-heading {
    margin: 1rem;
    font-family: 'inter', sans-serif;
    color: white;
    font-size: 2rem;
}
.error-message-wrapper .error-message-wrapper-info {
    color: white;
}
.error_msg_ok_button {
    width: 80%;
    border-radius: 20px;
    margin: 1rem;
    background-color: white;
    color: #725bc9;
}
.error_msg_ok_button.vast-button:hover {
    background-color: rgba(255, 255, 255, 0.804);
}
/* file name input container */
.file-name-input__container {
    position: relative;
    margin-top: 3rem;
    display: none;
    width: 60%;
    align-self: flex-start;
}
.file-name-input {
    font-size: 14px;
    padding: 4px 4px;
    display: block;
    width: 100%;
    height: 30px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #757575;
}

.file-name-input:focus {
    outline: none;
    border: none;
    border-bottom: 2px solid #5264ae;
}

.file-name-input__container label {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.file-name-input__container .error-message {
    color: red;
    padding: 0;
    margin: 0;
    display: none;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    text-align: left;
}

.file-name-input:focus ~ label,
.file-name-input:not(:placeholder-shown) ~ label {
    top: -18px;
    font-size: 14px;
    color: #5264ae;
}
/* add input modal *************************************************************************************************************/
.add-input-modal-info {
    color: #757878;
}
.modal__content.add-input-modal .add-input-modal-heading {
    margin: 20px !important;
    user-select: none;
}
.modal__content.add-input-modal .add-input-modal-info {
    margin-top: 0;
    width: 75%;
    text-align: center;
    user-select: none;
}
.modal__content.add-input-modal .grid-inputs {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.modal__content.add-input-modal .grid-inputs .open-modal-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 181px;
    height: 120px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e6e8eb;
    box-shadow: 0 5px 7px 1px rgba(20, 47, 55, 0.04);
    cursor: pointer;
    transition: border 0.2s ease;
}
.modal__content.add-input-modal .grid-inputs .open-modal-box .title {
    position: absolute;
    text-align: center;
    bottom: 15px;
    width: 100%;
    font-size: 14px;
    color: #74798d;
    letter-spacing: 0.3px;
    user-select: none;
}
.modal__content.add-input-modal .grid-inputs .open-modal-box img {
    width: 33%;
    margin-bottom: 20px;
    user-select: none;
}

.modal__content.add-input-modal .grid-inputs .open-modal-box .coming-soon-label {
    color: #725bc8;
    font-size: 10px;
    position: absolute;
    bottom: 5px;
    font-weight: bold;
}

.modal__content.add-input-modal .grid-inputs .open-modal-box:hover {
    border: 2px solid #725bc9;
}

.modal__content.small {
    width: 450px;
}
.modal__content.small h2 {
    margin-bottom: 20px;
}
.modal__content.small p {
    padding-top: 7px;
    color: #74798d;
}
.modal__content.modal-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    -webkit-animation: 0.5s ease 0s 1 slideInFromTop;
    animation: 0.5s ease 0s 1 slideInFromTop;
}
.modal__content .modal-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 56px;
    height: 56px;
    background: #725bc9;
    border-radius: 500px;
    margin-bottom: 26px;
}
.modal__content .modal-icon.green {
    background: #4bbf83;
}
.modal__content .modal-icon.yellow {
    background: #ffbb44;
}
.modal__content .modal-icon.red {
    background: #ff5a60;
}
.modal__content .modal-icon img {
    width: 22px;
}
.modal__content h2 {
    font-family: 'Inter';
    color: #3d455f;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}
.modal__content h2.no-sub {
    margin-bottom: 30px;
}
.modal__content p {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #74798d;
    padding-top: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}
.modal__content h3 {
    font-size: 17px;
    color: #667482;
    margin-bottom: 34px;
    margin-top: 0;
    text-align: center;
    line-height: 24px;
}
.modal__content .modal-button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8px;
}
.modal__content .modal-button-container.buttons-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.modal__content .modal-button-container.buttons-column .vast-button-grey {
    margin-bottom: 14px;
}
.modal__content .modal-button-container.buttons-column .vast-button-link {
    background: none;
    color: #725bc9;
    font-family: 'inter', sans-serif;
    border: 0;
    margin-top: 20px;
    font-size: 17px;
    outline: none;
    cursor: pointer;
}

.confirm-delete-asset .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@-webkit-keyframes slideInFromTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-75px);
        transform: translateY(-75px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-75px);
        transform: translateY(-75px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.toast-message {
    z-index: 9999999999;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    top: 20px;
    /* right: 20px; */
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 20px;
    padding-left: 16px;
    border-radius: 6px;
    background: #fff;
    margin: 0;
    opacity: 0;
    -webkit-animation: fadeIn 0.6s ease forwards;
    animation: fadeIn 0.6s ease forwards;
    border: 1px solid #ebeef1;
    border-left: 4px solid #4bbf83;
    -webkit-box-shadow: 0 4.5px 16px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4.5px 16px 0 rgba(0, 0, 0, 0.1);
}
.toast-message .icon-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-right: 14px;
}
.toast-message .message-container {
    margin-right: 24px;
}
.toast-message .message-container h3 {
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #3d455f;
    letter-spacing: 0.2px;
    margin: 0;
    margin-top: 2px;
    margin-bottom: 3px;
}
.toast-message .message-container p {
    margin: 0;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2px;
    color: #74798d;
}
.toast-message .close-toast button {
    border: 0;
    outline: none;
    padding: 0;
    background: #fff;
    cursor: pointer;
}

.studio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100vh;
}

.studio__main {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.studio.template-builder .studio-template__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.studio.template-builder .studio-header,
.studio.template-builder .studio-stage__templates-well {
    display: none;
}

.studio.template-builder .studio-template {
    display: block;
}

.studio.template-builder .studio-template__video-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.studio.template-builder .studio-sidebar,
.studio.template-builder .tab-panels,
.studio.template-builder .sidebar-tab.layouts,
.studio.template-builder .sidebar-tab.graphics,
.studio.template-builder .studio-stage__sidebar-container {
    z-index: 999;
}

.studio.template-builder .sidebar-tab.chat {
    display: none;
}

.studio.template-builder .studio-stage__canvas-container {
    z-index: 9999;
    position: fixed;
    left: 10px;
    bottom: 10px;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.studio__header-container {
    z-index: 999;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 70px;
}

.studio-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 16px;
    height: 100%;
}
.studio-header .studio-header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.studio-header .studio-header-left .studio-bit-logo {
    position: relative;
    display: flex;
    cursor: pointer;
}
.studio-header .studio-header-left .studio-bit-logo img {
    height: 41px;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #000000ba;
    color: #fff;
    text-align: center;
    font-size: 10px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 112%;
    left: 50%;
    margin-left: -20px;
}

.tooltip .tooltiptext::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 15%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #000000ba transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.studio-header .studio-header-left .studio-header__back svg {
    margin-right: 8px;
}
.studio-header .studio-header-left .header-profile-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: 10px;
    width: 41px;
    height: 41px;
    border-radius: 500px;
    overflow: hidden;
    position: relative;
}
.studio-header .studio-header-left .header-profile-image .initials {
    font-size: 15px;
    font-weight: bold;
    color: white;
    font-family: 'inter';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.studio-header .studio-header-left .header-profile-image img {
    width: 100%;
}
.studio-header .studio-header-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.studio-stage__footer .studio-header__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    border-radius: 500px;
    margin-right: 10px;
    align-self: flex-start;
}
.studio-header .studio-header-center .studio-header__info .studio-header__title {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #3d455f;
    cursor: pointer;
    pointer-events: none;
    letter-spacing: 0.2px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.studio-header .studio-header-center .counter-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.studio-header .studio-header-center .counter-container .participant-counter,
.studio-header .studio-header-center .counter-container .audience-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 28px;
    border-radius: 500px;
    background: #fff;
    padding-left: 8px;
    padding-right: 8px;
    -webkit-box-shadow: 0 2px 160px 1px rgba(20, 47, 55, 0.15);
    box-shadow: 0 2px 160px 1px rgba(20, 47, 55, 0.15);
    cursor: pointer;
}
.studio-header .studio-header-center .counter-container .participant-counter:hover .count,
.studio-header .studio-header-center .counter-container .participant-counter:hover svg,
.studio-header .studio-header-center .counter-container .audience-counter:hover .count,
.studio-header .studio-header-center .counter-container .audience-counter:hover svg {
    opacity: 0.7;
}
.studio-header .studio-header-center .counter-container .participant-counter .count,
.studio-header .studio-header-center .counter-container .audience-counter .count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #3d455f;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.studio-header .studio-header-center .counter-container .participant-counter svg,
.studio-header .studio-header-center .counter-container .audience-counter svg {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.studio-header .studio-header-center .counter-container .participant-counter {
    width: 75px;
    margin-right: 6px;
}
.studio-header .studio-header-center .counter-container .audience-counter {
    width: 85px;
}
.studio-header .studio-header-center .counter-container #participant-count-dropdown,
.studio-header .studio-header-center .counter-container #audience-count-dropdown {
    z-index: 99999;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 6px;
    padding: 20px 30px;
    border: 1px solid #e6e8eb;
}
.studio-header .studio-header-center .counter-container #participant-count-dropdown.active,
.studio-header .studio-header-center .counter-container #audience-count-dropdown.active {
    display: block;
}
.studio-header .studio-header-center .counter-container #participant-count-dropdown .info-menu-item,
.studio-header .studio-header-center .counter-container #audience-count-dropdown .info-menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    font-size: 15px;
}
.studio-header .studio-header-center .counter-container #participant-count-dropdown .info-menu-item img,
.studio-header .studio-header-center .counter-container #audience-count-dropdown .info-menu-item img {
    display: inline-block;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    margin-right: 7px;
}
.studio-header .studio-header-center .counter-container #participant-count-dropdown .invite .text-container .text,
.studio-header .studio-header-center .counter-container #audience-count-dropdown .invite .text-container .text {
    font-family: 'inter', sans-serif;
    color: #3d455f;
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: auto;
}
.studio-header
    .studio-header-center
    .counter-container
    #participant-count-dropdown
    .invite
    .text-container
    .invite-subtext,
.studio-header
    .studio-header-center
    .counter-container
    #audience-count-dropdown
    .invite
    .text-container
    .invite-subtext {
    color: #a2b1c0;
    font-size: 13px;
    letter-spacing: auto;
    margin-bottom: 10px;
    text-align: center;
}
.studio-header .studio-header-center .counter-container #participant-count-dropdown .invite .button-container,
.studio-header .studio-header-center .counter-container #audience-count-dropdown .invite .button-container {
    position: relative;
}
.studio-header
    .studio-header-center
    .counter-container
    #participant-count-dropdown
    .invite
    .button-container
    .copy-input,
.studio-header .studio-header-center .counter-container #audience-count-dropdown .invite .button-container .copy-input {
    position: absolute;
    top: -50px;
    opacity: 0;
    pointer-events: none;
}
.studio-header .studio-header-center .counter-container #participant-count-dropdown .invite .button-container button,
.studio-header .studio-header-center .counter-container #audience-count-dropdown .invite .button-container button {
    font-family: 'inter', sans-serif;
    letter-spacing: 0.3px;
    outline: none;
    border: 0;
    width: 150px;
    height: 34px;
    border-radius: 6px;
    background-color: #725bc8;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.studio-header
    .studio-header-center
    .counter-container
    #participant-count-dropdown
    .invite
    .button-container
    button:hover,
.studio-header
    .studio-header-center
    .counter-container
    #audience-count-dropdown
    .invite
    .button-container
    button:hover {
    background-color: #6248c2;
}
.studio-header .studio-header-center .control-buttons {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 170px;
    margin-left: 30px;
}

.studio-header .studio-header__live-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}
.studio-header .studio-header__live-controls .studio__time-tracker {
    width: 166px;
    height: 63px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 30px 1px rgba(20, 47, 55, 0.1);
    box-shadow: 0 2px 30px 1px rgba(20, 47, 55, 0.1);
}
.studio-header .studio-header__live-controls .studio__time-tracker .local-container,
.studio-header .studio-header__live-controls .studio__time-tracker .countdown-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 0 0 12px;
}
.studio-header .studio-header__live-controls .studio__time-tracker .local-container .label,
.studio-header .studio-header__live-controls .studio__time-tracker .countdown-container .label {
    font-size: 11px;
    color: #4b5c6d;
}
.studio-header .studio-header__live-controls .studio__time-tracker .local-container .time,
.studio-header .studio-header__live-controls .studio__time-tracker .countdown-container .time {
    width: 90px;
    color: #3d455f;
    font-size: 15px;
    padding-right: 10px;
}
.studio-header .studio-header__live-controls .studio__time-tracker .local-container {
    height: 50%;
    border-bottom: 1px solid #e6e8eb;
}
.studio-header .studio-header__live-controls .studio__time-tracker .local-container .time {
    padding-left: 7px;
}
.studio-header .studio-header__live-controls .studio__time-tracker .countdown-container {
    height: 50%;
}
.studio-header .studio-header__live-controls .studio__time-tracker .countdown-container.active {
    background: #e34e53;
}
.studio-header .studio-header__live-controls .studio__time-tracker .countdown-container.active .label,
.studio-header .studio-header__live-controls .studio__time-tracker .countdown-container.active .time {
    color: #fff;
}

.studio-header .studio-header__live-controls .live-controls-btn {
    height: 47px;
    width: 135px;
}
.studio-header .studio-header__live-controls .studio-header__live-button {
    height: 47px;
    width: 135px;
    margin-left: 10px;
}
.studio-header .studio-header__live-controls .studio-header__live-button.streaming {
    background: #e34e53;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.studio-header .studio-header__live-controls .studio-header__live-button.streaming:hover {
    background: #e34e53;
}
.studio-header .studio-header__live-controls .studio-header__live-button.ended {
    background: #fff;
    border-radius: 4px;
    font-family: 'inter', sans-serif;
    letter-spacing: 0.3px;
    color: #667482;
    border: 1px solid #e6e8eb;
    outline: none;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    box-shadow: none;
}
.studio-header .studio-header__live-controls .studio-header__live-button.ended:hover {
    background: white;
}

.studio-header .studio-header__live-controls .studio-header__recording-button {
    height: 47px;
    width: 135px;
    margin-left: 10px;
}
.studio-header .studio-header__live-controls .studio-header__recording-button.recording {
    background: #e34e53;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.studio-header .studio-header__live-controls .studio-header__recording-button.recording:hover {
    background: #e34e53;
}
.studio-header .studio-header__live-controls .studio-header__recording-button.ended {
    background: #fff;
    border-radius: 4px;
    font-family: 'inter', sans-serif;
    letter-spacing: 0.3px;
    color: #667482;
    border: 1px solid #e6e8eb;
    outline: none;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    box-shadow: none;
}
.studio-header .studio-header__live-controls .studio-header__recording-button.ended:hover {
    background: white;
}
.studio-header__stream-menu {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    z-index: 9999;
    position: absolute;
    top: 34px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 270px;
    padding: 20px 16px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e6e8eb;
    overflow: hidden;
    display: none;
}
.studio-header__stream-menu.active {
    display: block;
}
.studio-header__stream-menu .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 20px;
}
.studio-header__stream-menu .header .title {
    font-family: 'inter', sans-serif;
    color: #3d455f;
}
.studio-header__stream-menu .header .add-channel {
    font-family: 'inter', sans-serif;
    font-size: 13px;
    color: #9096a9;
}
.studio-header__stream-menu .stream-destination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 18px 0;
    border-bottom: 1px solid #e6e8eb;
}
.studio-header__stream-menu .stream-destination:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.studio-header__stream-menu .stream-destination .destination-logo {
    width: 24px;
    margin-right: 10px;
}
.studio-header__stream-menu .stream-destination h4 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: 'inter', sans-serif;
    font-size: 15px;
    color: #3d455f;
    margin: 0;
}

.studio-template__header {
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 16px;
    height: 100%;
    background: #30366e;
    display: none;
}
.studio-template__header .studio-template__header-title-container {
    font-family: 'inter', sans-serif;
    font-size: 14px;
}
.studio-template__header .studio-template__header-title-container .base {
    color: rgba(255, 255, 255, 0.5);
}
.studio-template__header .studio-template__header-title-container .title {
    color: #fff;
}
.studio-template__header .studio-template__header-title-container [contenteditable]:focus {
    outline: 0px solid transparent;
    background: #725bc9;
    color: #fff;
    padding: 4px 0px;
}
.studio-template__header .studio-template__header-title-container ::-moz-selection {
    background-color: #725bc9;
    color: #fff;
}
.studio-template__header .studio-template__header-title-container ::selection {
    background-color: #725bc9;
    color: #fff;
}
.studio-template__header .studio-template__header-buttons-container .studio-template__header-cancel-button {
    width: 90px;
    height: 47px;
    background: none;
    border: 0;
    font-family: 'inter', sans-serif;
    letter-spacing: 0.3px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.studio-template__header .studio-template__header-buttons-container .studio-template__header-cancel-button:hover {
    color: rgba(255, 255, 255, 0.6);
}
.studio-template__header .studio-template__header-buttons-container .studio-template__header-save-button {
    height: 47px;
    width: 145px;
}

.studio-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 0 16px;
    padding-top: 8px;
    overflow: hidden;
}

.studio-stage::-webkit-scrollbar-thumb {
    margin-left: 3px;
}

.studio-stage__main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    margin-right: 16px;
    position: relative;
}

.studio-stage__sidebar-container {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.studio-stage__sidebar-tabs-container {
    margin: 0 16px;
    margin-right: 0;
    display: grid;
    grid-template-columns: 50px;
    grid-row-gap: 13px;
}

.studio-stage__webcam-container {
    position: relative;
    width: 100%;
    max-width: 140vh;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
}
.studio-stage__webcam-container .add-template-button {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    bottom: 35px;
    right: 15px;
    width: 93px;
    height: 52px;
    background: #f7f7f7;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='4' ry='4' stroke='%23BABFC7FF' stroke-width='2' stroke-dasharray='5%2c 4' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 4px;
    cursor: pointer;
}
.studio-stage__webcam-container .add-template-button .add-template-icon .add {
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
.studio-stage__webcam-container .add-template-button:hover .add-template-icon .add {
    fill: #747c88;
}

.studio-stage__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    /* position:absolute; */
    width: 100%;
    max-width: 140vh;
}

.studio-stage__canvas-container {
    z-index: 1;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
}
.studio-stage__canvas-container #livecanvas {
    width: 100%;
    height: 100%;
}
.studio-header__live-controls .studio-stage-event-timer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    align-self: center;
    margin-left: 10px;
}
.studio-header__live-controls .studio-stage-event-timer-container .time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: 'inter', sans-serif;
    height: 24px;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.7px;
    padding: 0 13px;
    border-radius: 4px;
    background: #725bc9;
}

.studio-header__live-controls .studio-stage-event-timer-container .time.streaming {
    color: #e34e53;
}

.studio-header__live-controls .studio-stage-event-timer-container .time {
    display: flex;
    color: #725bc9;
    font-family: 'inter', sans-serif;
    background: rgba(0, 0, 0, 0);
    font-size: 15px;
    color: #725bc9;
    letter-spacing: 0.6px;
    width: 80px;
    padding: 0;
}

.studio-stage__templates-well {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: #fff;
    width: 100%;
    min-height: 102px;
    border-radius: 10px;
    padding: 15px;
}
.studio-stage__templates-well .empty-templates-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    width: 100%;
    height: 72px;
    color: #9096a9;
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 20px;
}
.studio-stage__templates-well .template {
    margin-right: 15px;
    cursor: pointer;
}
.studio-stage__templates-well .template .template__template-image {
    width: 93px;
    height: 52px;
    border-radius: 4px;
    background-color: #b9bfc8;
    margin-bottom: 7px;
    pointer-events: none;
}
.studio-stage__templates-well .template .template__name {
    position: relative;
    font-family: 'inter', sans-serif;
    font-size: 12px;
    width: 93px;
    overflow: hidden;
    color: #858c9d;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.2px;
}
.studio-stage__templates-well .template.active svg .bgcolor {
    fill: #725bc9;
}
.studio-stage__templates-well .template.active svg .bgstripe {
    fill: #564daa;
}
.studio-stage__templates-well .template.active svg .screen {
    fill: #d8d4ed;
}
.studio-stage__templates-well .template.active svg .profile {
    fill: #725bc9;
}
.studio-stage__templates-well .template.active svg .logo {
    fill: #5348a8;
}
.studio-stage__templates-well .template.active svg .banner {
    fill: #5348a8;
}
.studio-stage__templates-well .template.active .template__name {
    font-family: 'inter', sans-serif;
    color: #656a78;
}

.studio-template {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: blue;
    background: #30366e;
    display: none;
}

.studio-template__video-container {
    z-index: 999;
    position: absolute;
    width: 1000px;
    height: 563px;
    background: #1d215b;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 40px 1px rgba(20, 47, 55, 0.2);
    box-shadow: 0 2px 40px 1px rgba(20, 47, 55, 0.2);
    display: none;
}
.studio-template__video-container .template-logo {
    z-index: 9993;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 73px;
    height: 73px;
}
.studio-template__video-container .template-logo img {
    width: 100%;
}
.studio-template__video-container .template-banner {
    z-index: 9995;
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 445px;
    height: 100px;
    border-radius: 6px;
    background: #4c95ec;
    padding: 20px;
}
.studio-template__video-container .template-banner p {
    color: #fff;
    font-size: 22px;
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 32px;
}
.studio-template__video-container .template-bg {
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.studio-template__video-container .template-overlay {
    z-index: 9994;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.studio-template__video-container .template-overlay img {
    width: 100%;
}
.studio-template__video-container .layout-1a {
    z-index: 9992;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.studio-template__video-container .layout-1a video {
    width: 100%;
}
.studio-template__video-container .layout-2a {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-2a div {
    position: absolute;
    top: 145px;
    width: 500px;
    height: 281px;
    overflow: hidden;
}
.studio-template__video-container .layout-2a div video {
    height: 100%;
}
.studio-template__video-container .layout-2a div:nth-child(1) {
    left: 0;
}
.studio-template__video-container .layout-2a div:nth-child(2) {
    left: 500px;
}
.studio-template__video-container .layout-2b {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-2b div {
    position: absolute;
    top: 0;
    width: 500px;
    height: 100%;
    overflow: hidden;
}
.studio-template__video-container .layout-2b div video {
    height: 100%;
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
}
.studio-template__video-container .layout-2b div:nth-child(1) {
    left: 0;
}
.studio-template__video-container .layout-2b div:nth-child(2) {
    left: 500px;
}
.studio-template__video-container .layout-2c {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-2c div {
    position: absolute;
    top: 0;
    overflow: hidden;
}
.studio-template__video-container .layout-2c div:nth-child(1) {
    left: 0;
    width: 500px;
    height: 100%;
}
.studio-template__video-container .layout-2c div:nth-child(1) video {
    height: 100%;
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
}
.studio-template__video-container .layout-2c div:nth-child(2) {
    top: 145px;
    left: 500px;
    width: 500px;
    height: 281px;
}
.studio-template__video-container .layout-2c div:nth-child(2) video {
    height: 100%;
}
.studio-template__video-container .layout-2d {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-2d div {
    position: absolute;
    overflow: hidden;
}
.studio-template__video-container .layout-2d div video {
    height: 100%;
}
.studio-template__video-container .layout-2d div:nth-child(1) {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-2d div:nth-child(2) {
    bottom: 0;
    left: 0;
    width: 204px;
    height: 115px;
}
.studio-template__video-container .layout-2e {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-2e div {
    position: absolute;
    overflow: hidden;
}
.studio-template__video-container .layout-2e div video {
    height: 100%;
}
.studio-template__video-container .layout-2e div:nth-child(1) {
    top: 17px;
    left: 147px;
    width: 705.45px;
    height: 397px;
}
.studio-template__video-container .layout-2e div:nth-child(2) {
    top: 431px;
    left: 398px;
    width: 204px;
    height: 115px;
}
.studio-template__video-container .layout-ci-2a {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-ci-2a div {
    position: absolute;
    overflow: hidden;
    top: 224px;
    left: 17px;
    width: 204px;
    height: 115px;
}
.studio-template__video-container .layout-ci-2a div video {
    height: 100%;
}
.studio-template__video-container .layout-ci-2a .custom-input-screen {
    top: 72px;
    left: 238px;
    width: 745px;
    height: 418px;
}
.studio-template__video-container .layout-3a {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-3a div {
    position: absolute;
    top: 0px;
    width: 500px;
    height: 281px;
    overflow: hidden;
}
.studio-template__video-container .layout-3a div video {
    height: 100%;
}
.studio-template__video-container .layout-3a div:nth-child(1) {
    left: 0;
}
.studio-template__video-container .layout-3a div:nth-child(2) {
    left: 500px;
}
.studio-template__video-container .layout-3a div:nth-child(3) {
    top: 281px;
    left: 250px;
}
.studio-template__video-container .layout-3b {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-3b div {
    position: absolute;
    top: 0px;
    overflow: hidden;
}
.studio-template__video-container .layout-3b div video {
    height: 100%;
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%);
}
.studio-template__video-container .layout-3b div:nth-child(1) {
    width: 333.33px;
    height: 100%;
    left: 0;
}
.studio-template__video-container .layout-3b div:nth-child(2) {
    width: 333.33px;
    height: 100%;
    left: 333.33px;
}
.studio-template__video-container .layout-3b div:nth-child(3) {
    width: 333.33px;
    height: 100%;
    left: 666.66px;
}
.studio-template__video-container .layout-3c {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-3c div {
    position: absolute;
    overflow: hidden;
}
.studio-template__video-container .layout-3c div video {
    height: 100%;
}
.studio-template__video-container .layout-3c div:nth-child(1) {
    width: 705.45px;
    height: 397px;
    top: 17px;
    left: 147px;
}
.studio-template__video-container .layout-3c div:nth-child(2) {
    width: 204px;
    height: 115px;
    top: 431px;
    left: 290px;
}
.studio-template__video-container .layout-3c div:nth-child(3) {
    width: 204px;
    height: 115px;
    top: 431px;
    left: 506px;
}
.studio-template__video-container .layout-3d {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-3d div {
    position: absolute;
    overflow: hidden;
}
.studio-template__video-container .layout-3d div video {
    height: 100%;
}
.studio-template__video-container .layout-3d div:nth-child(1) {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-3d div:nth-child(2) {
    width: 204px;
    height: 115px;
    left: 0;
    bottom: 0;
}
.studio-template__video-container .layout-3d div:nth-child(3) {
    width: 204px;
    height: 115px;
    left: 204px;
    bottom: 0;
}
.studio-template__video-container .layout-3e {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-3e div {
    position: absolute;
    overflow: hidden;
}
.studio-template__video-container .layout-3e div video {
    height: 100%;
}
.studio-template__video-container .layout-3e div:nth-child(1) {
    top: 0;
    left: 0;
    width: 640px;
    height: 100%;
}
.studio-template__video-container .layout-3e div:nth-child(1) video {
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
}
.studio-template__video-container .layout-3e div:nth-child(2) {
    width: 500px;
    height: 281px;
    left: 500px;
    top: 0;
}
.studio-template__video-container .layout-3e div:nth-child(3) {
    width: 500px;
    height: 281px;
    left: 500px;
    top: 281px;
}
.studio-template__video-container .layout-ci-3a {
    z-index: 9992;
    position: relative;
    width: 100%;
    height: 100%;
}
.studio-template__video-container .layout-ci-3a div {
    position: absolute;
    overflow: hidden;
    width: 204px;
    height: 115px;
}
.studio-template__video-container .layout-ci-3a div video {
    height: 100%;
}
.studio-template__video-container .layout-ci-3a .participant-screen {
    top: 287px;
    left: 17px;
}
.studio-template__video-container .layout-ci-3a .participant-screen.first {
    top: 160px;
    left: 17px;
}
.studio-template__video-container .layout-ci-3a .custom-input-screen {
    top: 72px;
    left: 238px;
    width: 745px;
    height: 418px;
}

.studio-stage__sidebar-container {
    position: relative;
    width: 365px;
    overflow: visible;
    height: 100%;
    transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
}

.studio-stage__sidebar-container.studio-stage__sidebar-container_closed {
    transform: translateX(130%);
    transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out;
}

.studio-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 365px;
    background: #fff;
    -webkit-box-shadow: 0 2px 30px 1px rgba(20, 47, 55, 0.1);
    box-shadow: 0 2px 30px 1px rgba(20, 47, 55, 0.1);
    overflow: hidden;
    padding: 0 14px;
    height: calc(100vh - 102px);
    overflow-y: auto;
}

.studio-sidebar__graphics,
.studio-sidebar__chat,
.studio-sidebar__eventSettings {
    visibility: hidden;
    border-radius: 10px;
}

.studio-sidebar__graphics::-webkit-scrollbar,
.studio-sidebar__layouts-container::-webkit-scrollbar,
.layout-button-container::-webkit-scrollbar {
    width: 7px !important;
}

.studio-sidebar__graphics::-webkit-scrollbar-track,
.studio-sidebar__layouts-container::-webkit-scrollbar-track {
    background: none;
    padding-top: 10px;
}

.studio-sidebar__graphics::-webkit-scrollbar-thumb,
.studio-sidebar__layouts-container::-webkit-scrollbar-thumb {
    background: #e2e2e2;
    border: 1px solid #ffffff;
    border-radius: 500px;
}

.studio-sidebar__layouts-container {
    overflow-y: scroll;
    scroll-behavior: smooth;
}
.studio-sidebar__layouts-container::-webkit-scrollbar-thumb {
    border: 1px solid #eeeeee;
}

.unread-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    top: -6px;
    right: -4px;
    font-family: 'inter', sans-serif;
    font-size: 12px;
    width: 25px;
    height: 19px;
    color: #fff;
    border-radius: 500px;
    background: #e24f53;
}
.unread-badge.hide {
    display: none;
}
.unread-badge:empty {
    display: none;
}

.studio-stage__sidebar-tabs-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding-bottom: 20px;
}

.tab-panels .sidebar-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
    border-radius: 21px;
    background: #fff;
    border: 0;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 30px 1px rgba(20, 47, 55, 0.1);
    box-shadow: 0 2px 30px 1px rgba(20, 47, 55, 0.1);
    position: relative;
}
.tab-panels .sidebar-tab svg {
    pointer-events: none;
}
.tab-panels .sidebar-tab.active {
    background: #725bc9;
}
#event-settings-btn__white-svg {
    display: none;
}
.tab-panels .sidebar-tab.active #event-settings-btn__white-svg {
    display: block;
}
.tab-panels .sidebar-tab.active #event-settings-btn__white-svg path {
    fill: transparent;
}
.tab-panels .sidebar-tab.active #event-settings-btn__grey-svg {
    display: none;
}
.tab-panels .sidebar-tab.active svg path {
    fill: rgba(255, 255, 255, 0.9);
}
.tab-panels .sidebar-tab.chat {
    position: relative;
}

.accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: 'inter', sans-serif;
    background-color: #fff;
    color: #3d455f;
    padding: 17px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    border-top: 1px solid #e6e8eb;
}
.accordion:first-child {
    border-top: 0;
}
.accordion .title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    cursor: pointer;
}
.accordion .title-container img {
    margin-right: 8px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.accordion .title-container h4 {
    margin: 0;
    font-size: 16px;
}
.accordion .title-container.layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}
.accordion .title-container.layout .wrap-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.accordion.active .title-container img {
    -webkit-transform: translateY(1px) rotate(-90deg);
    transform: translateY(1px) rotate(-90deg);
}

.layout-accordion .layout-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.layout-accordion .layout-buttons button {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    outline: none;
    border: 0;
    padding: 5px;
    background: transparent;
    background: #f4f4f4;
    border-radius: 5px;
    cursor: pointer;
}
.layout-accordion .layout-buttons button svg {
    pointer-events: none;
    width: 22px;
}
.layout-accordion .layout-buttons button.active {
    background: #f4f0fe;
}
.layout-accordion .layout-buttons button.active svg path {
    fill: #725bc9;
}

input[type='file'] {
    display: none;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

#studio-banner-theme,
#studio-padding-container {
    margin-bottom: 20px;
}

#studio-padding-container > div {
    background: #c7cdd6;
    border-radius: 5px;
    height: 59px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
#studio-padding-container > div.active {
    background-color: #725bc9;
}
#studio-padding-container > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbfbfb;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    color: #6d6d6d;
}
#studio-padding-container .none-padding {
    padding: 2px;
}
#studio-padding-container .some-padding {
    padding: 6px;
}
#studio-padding-container .most-padding {
    padding: 12px;
}
/* #studio-name-size {
    margin-right: 5px;
} */
#studio-video-padding {
    margin-right: 5px;
}
.panel {
    padding: 0;
    /* max-height: 800px; */
    -webkit-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
}
.panel .panel-content {
    margin-bottom: 20px;
}
.panel .panel-content .settings-input-header {
    font-family: 'inter', sans-serif;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    user-select: none;
}
.panel-grid .graphic-item {
    position: relative;
    background: #c7cdd6;
    border-radius: 5px;
    height: 59px;
    cursor: pointer;
}
.panel-grid .graphic-item .image-container {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.panel-grid .graphic-item .close-button {
    z-index: 9999;
    position: absolute;
    top: -9px;
    right: -8px;
    width: 23px;
    height: 23px;
    border-radius: 500px;
    border: 2px solid #826ecf;
    background: #fff;
    display: none;
}
.panel-grid .graphic-item .show-hide-label {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    letter-spacing: 0.6px;
    opacity: 0;
    -webkit-transform: opacity 0.3s ease;
    transform: opacity 0.3s ease;
    pointer-events: none;
}
.panel-grid .graphic-item .show-hide-label img {
    margin-bottom: 4px;
}
.panel-grid .graphic-item .show-hide-label h4 {
    font-family: 'inter', sans-serif;
    color: #fff;
    font-size: 14px;
    margin: 0;
}
.panel-grid .graphic-item .show-hide-label .hide-icon,
.panel-grid .graphic-item .show-hide-label .hide-text {
    display: none;
}
.panel-grid .graphic-item:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #725bc9;
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.panel-grid .graphic-item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
    border: 3px solid #725bc9;
    border-radius: 5px;
    opacity: 0;
}
.panel-grid .graphic-item:hover .show-hide-label {
    opacity: 1;
}
.panel-grid .graphic-item:hover .close-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.panel-grid .graphic-item:hover:after {
    opacity: 0.95;
}
.panel-grid .graphic-item.active:before {
    opacity: 1;
}
.panel-grid .graphic-item.active .hide-icon,
.panel-grid .graphic-item.active .hide-text {
    display: block;
}
.panel-grid .graphic-item.active .show-icon,
.panel-grid .graphic-item.active .show-text {
    display: none;
}
.panel-grid .add-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: #f7f9fa;
    height: 59px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
}
.panel-grid .add-box:hover {
    background-color: #725bc9;
}
.panel-grid .add-box:hover svg rect {
    fill: #fff;
}
.panel-grid .add-box.add-box-logo {
    height: 76.75px;
}

.studio-sidebar__layouts {
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-radius: 10px;
}

.studio-sidebar__layouts-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #eeeeee;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input {
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border-left: 1px solid #dee0e4;
}
/* .studio-sidebar__layouts-container .studio-sidebar__layouts-input {
    margin-bottom: 10px; } */
.studio-sidebar__layouts-container .studio-sidebar__layouts-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    background: #fff;
    padding-bottom: 28px;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__button {
    width: 100%;
    background: none;
    border: 0;
    height: 47px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #725bc9;
    cursor: pointer;
    border-bottom: 1px solid #e6e8eb;
    border-radius: 10px 0 0 0;
    overflow: hidden;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__button:hover {
    background: #f7f9fa;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__button-options-menu {
    z-index: 99;
    position: absolute;
    top: 40px;
    left: 6px;
    background: #fff;
    width: 198px;
    border-radius: 6px;
    border: 1px solid #e6e8eb;
    padding: 10px 0;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.15);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.15);
    display: none;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__button-options-menu button {
    position: relative;
    width: 100%;
    height: 38px;
    outline: 0;
    border: 0;
    text-align: left;
    padding-left: 55px;
    background-color: #fff;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #424d6b;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__button-options-menu button svg {
    position: absolute;
    top: 50%;
    left: 18.5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__button-options-menu
    button
    svg.custom-icon {
    left: 20.5px;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__button-options-menu button:hover {
    background-color: #f1f4f6;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__button-options-menu.active {
    display: block;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__source {
    width: 182.5px;
    height: 100%;
    border-right: 1px solid #e6e8eb;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__source .backstage-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: 'inter', sans-serif;
    border-radius: 9px 0 0 0;
    background: #3d455f;
    font-size: 14px;
    padding: 7px;
    letter-spacing: 0.3px;
    color: #fff;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__source .layouts-input__input-well {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 7.5px 0;
    overflow-y: auto;
    height: calc(100% - 47px);
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__source
    .layouts-input__input-well
    .input-well__input {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #b9bfc8;
    height: 86px;
    width: 152px;
    border-radius: 6px;
    margin: 4px 0;
    overflow: hidden;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__source
    .layouts-input__input-well
    .input-well__input
    .statsoverlay {
    white-space: pre;
    height: 60px;
    width: 80px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    color: white;
    background-color: black;
    text-align: right;
    display: none;
    font-size: 12px;
    font-family: Courier;
}

.destination__dropzone .input-well__input .spotlight_btn {
    position: absolute;
    top: 4px;
    left: 4px;
    cursor: pointer;
    z-index: 1001;
}

.destination__dropzone .input-well__input .spotlight_btn.active .spotlightOnIcon {
    display: block;
}
.destination__dropzone .input-well__input .spotlight_btn.active .spotlightOffIcon {
    display: none;
}
.destination__dropzone .input-well__input .spotlight_btn .spotlightOnIcon {
    display: none;
}
.destination__dropzone .input-well__input .spotlight_btn .spotlightOffIcon {
    display: block;
}

/* hide spotlight button when on backstage */
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__source
    .layouts-input__input-well
    .input-well__input
    .spotlight_btn {
    display: none;
}

.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .input-well__input
    .off-stage__micBtn {
    display: none;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__source
    .layouts-input__input-well
    .input-well__input
    .off-stage__micBtn {
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 100001;
    cursor: pointer;
}
.off-stage__micBtn.active .unmutedHotMicIcon {
    display: block;
}
.off-stage__micBtn.active .mutedHotMicIcon {
    display: none;
}
.off-stage__micBtn .unmutedHotMicIcon {
    display: none;
}
.off-stage__micBtn .mutedHotMicIcon {
    display: block;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__source
    .layouts-input__input-well
    .input-well__input
    video {
    width: 152px;
    height: 86px;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__source
    .layouts-input__input-well
    .input-well__input
    .name-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-family: 'inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    padding: 7px;
    font-size: 12px;
    letter-spacing: 0.2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    user-select: none;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__destination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 192px;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__destination .stage-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    font-family: 'inter', sans-serif;
    border-radius: 0 9px 0 0;
    background: #6248c3;
    font-size: 14px;
    padding: 7px;
    letter-spacing: 0.3px;
    color: #fff;
}
.studio-sidebar__layouts-container .studio-sidebar__layouts-input .layouts-input__destination .destination__dropzone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    width: 152px;
    height: 86px;
    background: #f7f9fa;
    margin: 4px 0;
    background-image: url("data:image/svg+xml,%3Csvg width='152' height='86' viewBox='0 0 152 86' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='151' height='85' rx='5.5' fill='%23F7F9FA' stroke='%23BBC8CE' stroke-dasharray='6 4'/%3E%3Cpath d='M75.902 31.2944C82.4737 31.2944 87.8235 36.6442 87.8235 43.2159C87.8235 49.7877 82.4737 55.1375 75.902 55.1375C69.3302 55.1375 63.9804 49.7877 63.9804 43.2159C63.9804 36.6442 69.3302 31.2944 75.902 31.2944ZM75.902 28.314C67.6761 28.314 61 34.99 61 43.2159C61 51.4418 67.6761 58.1179 75.902 58.1179C84.1278 58.1179 90.8039 51.4418 90.8039 43.2159C90.8039 34.99 84.1278 28.314 75.902 28.314ZM77.3922 43.2159V37.2551H74.4118V43.2159H69.9412L75.902 49.1767L81.8627 43.2159H77.3922Z' fill='%23D3DCDF'/%3E%3C/svg%3E");
    border-radius: 6px;
    border-color: #bbc8ce;
    overflow: hidden;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .input-well__input,
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .input-well__input
    video {
    width: 152px;
    height: 86px;
    background-color: black;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .statsoverlay {
    white-space: pre;
    height: 60px;
    width: 80px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    color: white;
    background-color: black;
    text-align: right;
    display: none;
    font-size: 12px;
    font-family: Courier;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .name-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-family: 'inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    padding: 7px;
    font-size: 12px;
    letter-spacing: 0.2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .dropzone-label {
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    top: 0;
    right: 0;
    background: #bbc8ce;
    width: 26px;
    height: 20px;
    border-radius: 0 6px 0 6px;
    z-index: 1;
    opacity: 1;
    transition: opacity ease-in-out 1s;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .dropzone-label
    .number {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #f7f9fa;
    line-height: 20px;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .dropzone-label
    .input-icon {
    display: none;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .dropzone-label.active {
    background: #725bc9;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .dropzone-label.custom-input
    .number {
    display: none;
}
.studio-sidebar__layouts-container
    .studio-sidebar__layouts-input
    .layouts-input__destination
    .destination__dropzone
    .dropzone-label.custom-input
    .input-icon {
    display: block;
}
.studio-stage__footer .layout-select-wrapper {
    display: flex;
    align-items: center;
    border: soild 1px black;
    width: 60%;
}
.studio-stage__footer .studio-sidebar__layouts-select {
    background: #fff;
    padding: 12px 25px;
    width: 60%;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border: 1px solid #dee0e4;
    display: flex;
    align-items: center;
}

.studio-stage__footer .studio-sidebar__layouts-select .layout-button-container {
    display: flex;
    gap: 7px;
    margin-right: 0;
    width: 100%;
    overflow: scroll;
    scroll-behavior: smooth;
    padding: 5px 0;
}
.studio-stage__footer .studio-sidebar__layouts-select .layout-button-container::-webkit-scrollbar {
    height: 7px;
}
.studio-stage__footer .studio-sidebar__layouts-select .layout-button-container::-webkit-scrollbar-thumb {
    background: #e2e2e2;
    border: 1px solid #ffffff;
}

.studio-stage__footer .studio-sidebar__layouts-select .layout-button-container .layout-button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.studio-stage__footer .studio-sidebar__layouts-select .layout-button-container .layout-button svg {
    pointer-events: none;
}
.studio-stage__footer .studio-sidebar__layouts-select .layout-button-container .layout-button.active svg .bgcolor,
.studio-stage__footer .studio-sidebar__layouts-select .layout-button-container .layout-button.active svg .number {
    fill: #725bc9;
}
.studio-stage__footer .studio-sidebar__layouts-select .layout-button-container .layout-button.active svg .screen {
    fill: #d8d4ed;
}
.studio-stage__footer .studio-sidebar__layouts-select .empty-layouts-message {
    font-family: 'inter', sans-serif;
    font-size: 14px;
    width: 152px;
    color: #9096a9;
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 20px;
    display: none;
}
.studio-stage__footer .studio-sidebar__layouts-select .layout-test-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 76.25px;
    height: 50px;
    border-radius: 4px;
    background: #b9bfc8;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: #fff;
}
.studio-stage__footer .studio-sidebar__layouts-select.empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.studio-stage__footer .studio-sidebar__layouts-select.empty .layout-button-container {
    display: none;
}
.studio-stage__footer .studio-sidebar__layouts-select.empty .empty-layouts-message {
    display: block;
}

.modal__content.add-input-video-modal {
    padding: 30px;
}
.modal__content.add-input-video-modal .add-video-upload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: #f7f9fa;
    width: 100%;
    height: 163px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23BBC8CEFF' stroke-width='2' stroke-dasharray='4%2c6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 10px;
    border-color: #bbc8ce;
}
.modal__content.add-input-video-modal .add-video-upload .upload-video-label {
    text-align: center;
}
.modal__content.add-input-video-modal .add-video-upload .upload-video-label h2 {
    font-family: 'inter', sans-serif;
    font-size: 20px;
    color: #4a5472;
    margin: 0;
    margin-bottom: 8px;
}
.modal__content.add-input-video-modal .add-video-upload .upload-video-label p {
    margin: 0;
    color: #9096a9;
}
.modal__content.add-input-video-modal .or-divider {
    font-family: 'inter', sans-serif;
    font-size: 18px;
    color: #725bc9;
}
.modal__content.add-input-video-modal .settings-input-header {
    width: 100%;
    user-select: none;
}
.modal__content.add-input-video-modal .form-input {
    height: 48px;
    font-size: 15px;
    font-family: 'inter', sans-serif;
}
.modal__content.add-input-video-modal .upload-button-container {
    width: 100%;
}

.ingest-stream-modal {
    padding: 24px;
}
.ingest-stream-modal .close_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    padding: 0;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 500px;
    background: none;
    outline: 0;
    border: none;
    cursor: pointer;
}

.modal__content.new-collection-modal,
.modal__content.confirm-save-collection-modal {
    width: 400px;
    padding: 24px;
    flex-direction: column;
    gap: 15px;
    font-family: 'Inter';
}

.modal__content.new-collection-modal .error-message,
.modal__content.confirm-save-collection-modal .error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
.modal__content.new-collection-modal .close_button,
.modal__content.confirm-save-collection-modal .close_button {
    position: absolute;
    right: 5%;
    top: 5%;
    cursor: pointer;
}
.modal__content.new-collection-modal .info-icon,
.modal__content.confirm-save-collection-modal .info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 10px;
}
.modal__content.new-collection-modal .info-icon,
.modal__content.confirm-save-collection-modal .info-icon {
    margin-right: auto;
}

.modal__content.new-collection-modal .heading,
.modal__content.confirm-save-collection-modal .heading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #101828;
}
.modal__content.new-collection-modal .heading,
.modal__content.confirm-save-collection-modal .heading {
    margin-right: auto;
}

.modal__content.new-collection-modal .sub-heading,
.modal__content.confirm-save-collection-modal .sub-heading {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #475467;
    margin: -15px 0 0 0;
    padding: 0;
}
.modal__content.new-collection-modal .sub-heading,
.modal__content.confirm-save-collection-modal .sub-heading {
    margin-right: auto;
    text-align: left;
}

.modal__content.new-collection-modal .name-input {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
}

.modal__content.new-collection-modal .edit-asset-name-input-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.modal__content.new-collection-modal .edit-asset-name-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
}
.modal__content.new-collection-modal .buttons,
.modal__content.confirm-save-collection-modal .buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
}

.modal__content.new-collection-modal .buttons button,
.modal__content.confirm-save-collection-modal .buttons button {
    flex-grow: 1;
}

.modal__content.new-collection-modal .buttons button:focus,
.modal__content.confirm-save-collection-modal .buttons button:focus {
    outline: none;
}

.theme-accordion__panel .theme-color-container {
    position: relative;
    margin-bottom: 20px;
}
.theme-accordion__panel .theme-color-container .theme-color-input,
.theme-accordion__panel .theme-color-container .bg-color-input {
    height: 48px;
    margin-bottom: 0;
}
.theme-accordion__panel .theme-color-container .theme-color-swatch,
.theme-accordion__panel .theme-color-container .bg-color-swatch {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    background: #4c95ec;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    pointer-events: none;
    /* border: solid 1px white; */
    box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075), 0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075),
        0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
}
.theme-accordion__panel .theme-color-container .bg-color-swatch {
    background: #1d215b;
}

.theme-accordion__panel .theme-container .graphic-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.layout-accordion__panel-content .font-slider-container,
.layout-accordion__panel-content .padding-slider-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 20px;
    /* Input Thumb */
    /* Input Track */
}
.layout-accordion__panel-content .font-slider-container input,
.layout-accordion__panel-content .font-slider-container output,
.layout-accordion__panel-content .font-slider-container .px,
.layout-accordion__panel-content .padding-slider-container input,
.layout-accordion__panel-content .padding-slider-container output,
.layout-accordion__panel-content .padding-slider-container .px {
    font-family: 'inter', sans-serif;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #9096a9;
}
.layout-accordion__panel-content .font-slider-container .px,
.layout-accordion__panel-content .padding-slider-container .px {
    margin-left: 2px;
}
.layout-accordion__panel-content .font-slider-container output,
.layout-accordion__panel-content .padding-slider-container output {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border-radius: 3px;
}
.layout-accordion__panel-content .font-slider-container input[type='number'],
.layout-accordion__panel-content .padding-slider-container input[type='number'] {
    width: 40px;
    padding: 4px 5px;
    border: 1px solid #bbb;
    border-radius: 3px;
}
.layout-accordion__panel-content .font-slider-container input[type='range'],
.layout-accordion__panel-content .padding-slider-container input[type='range'] {
    -webkit-appearance: none;
    margin-right: 15px;
    width: 280px;
    height: 7px;
    background: #e2e8eb;
    outline: none !important;
    border: 0 !important;
    border-radius: 5px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#715cc9), to(#715cc9));
    background-image: linear-gradient(#715cc9, #715cc9);
    background-size: 30% 100%;
    background-repeat: no-repeat;
}
.layout-accordion__panel-content .font-slider-container input[type='range']::-webkit-slider-thumb,
.layout-accordion__panel-content .padding-slider-container input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #715cc9;
    cursor: ew-resize;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}
.layout-accordion__panel-content .font-slider-container input[type='range']::-webkit-slider-runnable-track,
.layout-accordion__panel-content .padding-slider-container input[type='range']::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

.layout-accordion__panel-content .padding-slider-container input[type='range'] {
    background-size: 0% 100%;
}

.banner-accordion__panel-content .banner-item {
    position: relative;
    width: 100%;
    background: #f7f9fa;
    margin-bottom: 10px;
    border-radius: 4px;
    padding: 18px 24px;
    overflow: hidden;
    cursor: pointer;
}
.banner-accordion__panel-content .banner-item .banner-form {
    display: none;
}
.banner-accordion__panel-content .banner-item .banner-text {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.5px;
    color: #636d88;
    margin: 0;
}
.banner-accordion__panel-content .banner-item .show-hide-label {
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    letter-spacing: 0.6px;
    opacity: 0;
    -webkit-transform: opacity 0.3s ease;
    transform: opacity 0.3s ease;
    pointer-events: none;
}
.banner-accordion__panel-content .banner-item .show-hide-label img {
    margin-right: 7px;
}
.banner-accordion__panel-content .banner-item .show-hide-label h4 {
    font-family: 'inter', sans-serif;
    color: #fff;
    font-size: 15px;
}
.banner-accordion__panel-content .banner-item .show-hide-label .hide-icon,
.banner-accordion__panel-content .banner-item .show-hide-label .hide-text {
    display: none;
}
.banner-accordion__panel-content .banner-item .edit-delete-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    z-index: 10;
    position: absolute;
    top: 6px;
    right: 6px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.banner-accordion__panel-content .banner-item .edit-delete-container button {
    width: 27px;
    height: 27px;
    border-radius: 500%;
    background-color: transparent;
    border: 0;
    outline: none;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.banner-accordion__panel-content .banner-item .edit-delete-container button img {
    pointer-events: none;
}
.banner-accordion__panel-content .banner-item .edit-delete-container button:hover {
    background-color: #6a57bb;
}
.banner-accordion__panel-content .banner-item:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 5px;
    height: 100%;
    background: #ced9df;
}
.banner-accordion__panel-content .banner-item:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #725bc9;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.banner-accordion__panel-content .banner-item.active {
    background: #725bc9;
}
.banner-accordion__panel-content .banner-item.active .banner-text {
    font-family: 'inter', sans-serif;
    color: #fff;
}
.banner-accordion__panel-content .banner-item.active:before {
    background: #5643a6;
}
.banner-accordion__panel-content .banner-item.active .hide-icon,
.banner-accordion__panel-content .banner-item.active .hide-text {
    display: block;
}
.banner-accordion__panel-content .banner-item.active .show-icon,
.banner-accordion__panel-content .banner-item.active .show-text {
    display: none;
}
.banner-accordion__panel-content .banner-item.active .edit-delete-container {
    display: none;
}
.banner-accordion__panel-content .banner-item:hover .show-hide-label,
.banner-accordion__panel-content .banner-item:hover .edit-delete-container {
    opacity: 1;
}
.banner-accordion__panel-content .banner-item:hover:after {
    opacity: 0.95;
}
.banner-accordion__panel-content .banner-item.edit {
    padding: 10px;
    pointer-events: none;
}
.banner-accordion__panel-content .banner-item.edit:before {
    background: transparent;
}
.banner-accordion__panel-content .banner-item.edit:after {
    opacity: 0;
}
.banner-accordion__panel-content .banner-item.edit input,
.banner-accordion__panel-content .banner-item.edit button {
    pointer-events: all;
}
.banner-accordion__panel-content .banner-item.edit .banner-content {
    display: none;
}
.banner-accordion__panel-content .banner-item.edit .banner-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.banner-accordion__panel-content .banner-item.edit .banner-form .form-input {
    height: 48px;
    margin-bottom: 10px;
    font-size: 15px;
}
.banner-accordion__panel-content .banner-item.edit .banner-form .button-container .cancel-button {
    font-family: 'inter', sans-serif;
    width: 74px;
    height: 43px;
    color: #767fa5;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.banner-accordion__panel-content .banner-item.edit .banner-form .button-container .cancel-button:hover {
    color: #5c658c;
}
.banner-accordion__panel-content .banner-item.edit .banner-form .button-container .save-button {
    width: 100px;
    height: 43px;
}

.banner-accordion__panel-content .banner-input-wrapper {
    position: relative;
}
.banner-accordion__panel-content .banner-input-wrapper .banner-input {
    height: 48px;
    font-size: 15px;
    letter-spacing: 0.1px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.banner-accordion__panel-content .banner-input-wrapper .banner-input::-webkit-input-placeholder {
    color: #9096a9;
    font-size: 15px;
}
.banner-accordion__panel-content .banner-input-wrapper .banner-input::-moz-placeholder {
    color: #9096a9;
    font-size: 15px;
}
.banner-accordion__panel-content .banner-input-wrapper .banner-input::-ms-input-placeholder {
    color: #9096a9;
    font-size: 15px;
}
.banner-accordion__panel-content .banner-input-wrapper .banner-input::placeholder {
    color: #9096a9;
    font-size: 15px;
}
.banner-accordion__panel-content .banner-input-wrapper .banner-character-count {
    position: absolute;
    bottom: 14px;
    right: 7px;
    font-size: 12px;
    font-family: 'inter', sans-serif;
    color: #a8abb5;
}

.banner-accordion__panel-content .banner-button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.banner-accordion__panel-content .banner-button-container .banner-button {
    width: 120px;
    height: 43px;
    font-size: 13px;
    margin-bottom: 16px;
}

.takeover-accordion .takeover-loop-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.takeover-accordion .takeover-loop-button-wrapper .switch input:checked + .slider {
    background-color: #725bc9;
}
.takeover-accordion .takeover-loop-button-wrapper .loop-icon {
    pointer-events: none;
    cursor: default;
}
.takeover-accordion .takeover-loop-button-wrapper .loop-icon svg {
    height: 25px;
    width: 25px;
}
.takeover-accordion .takeover-loop-button-wrapper .loop-icon svg g {
    fill: grey;
}
.takeover-accordion__panel-content .takeover-item {
    position: relative;
}
.takeover-accordion__panel-content .takeover-item video {
    height: 59px;
    width: 105.66px;
    -o-object-fit: cover;
    object-fit: cover;
}

.takeover-accordion__panel-content .takeover-item img {
    width: 100%;
}

.modal__content.add-video-modal {
    padding: 30px;
}
.modal__content.add-video-modal .add-video-upload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: #f7f9fa;
    width: 100%;
    height: 163px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23BBC8CEFF' stroke-width='2' stroke-dasharray='4%2c6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 10px;
    border-color: #bbc8ce;
}
.modal__content.add-video-modal .add-video-upload .upload-video-label {
    text-align: center;
}
.modal__content.add-video-modal .add-video-upload .upload-video-label h2 {
    font-family: 'inter', sans-serif;
    font-size: 20px;
    color: #4a5472;
    margin: 0;
    margin-bottom: 8px;
}
.modal__content.add-video-modal .add-video-upload .upload-video-label p {
    margin: 0;
    color: #9096a9;
}
.modal__content.add-video-modal .or-divider {
    font-family: 'inter', sans-serif;
    font-size: 18px;
    color: #725bc9;
}
.modal__content.add-video-modal .settings-input-header {
    width: 100%;
}
.modal__content.add-video-modal .form-input {
    height: 48px;
    font-size: 15px;
    font-family: 'inter', sans-serif;
}
.modal__content.add-video-modal .upload-button-container {
    width: 100%;
}

.logo-accordion__panel-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.logo-accordion__panel-content .graphic-item {
    height: 76.75px;
    padding: 10px;
}
.logo-accordion__panel-content .graphic-item .logo-image {
    width: 100%;
}

.background-accordion__panel-content .background-item video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 59px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.background-accordion__panel-content .background-item img {
    width: 100%;
}

.overlay-accordion__panel-content .overlay-item .overlay-image {
    width: 100%;
}

.studio-sidebar__eventSettings {
    display: flex;
    flex-direction: column;
    padding: 16px;
}
.studio-sidebar__eventSettings .events-settings__heading {
    color: #101828;
}
.studio-sidebar__eventSettings .event-settings__container {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    gap: 16px;
}
.studio-sidebar__eventSettings .event-settings__container .setting-wrapper {
    display: flex;
    align-items: center;
}
.studio-sidebar__eventSettings .event-settings__container .info {
    flex: 1;
    border-bottom: solid 1px #eaecf0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.studio-sidebar__eventSettings .event-settings__container .info p {
    color: #475467;
    padding: 0;
    margin: 0;
    margin-bottom: 4px;
    max-width: 95%;
}

.studio-sidebar__eventSettings .event-settings__container .switch input:checked + .slider {
    background-color: #725bc8;
}

#studio-sidebar__chat {
    padding: 0;
}
#studio-sidebar__chat.--private-theme {
    background: #1d2939;
}
#studio-sidebar__chat.--private-theme .tab-container {
    border-bottom: none;
}
#studio-sidebar__chat.--private-theme .tab-container .private-tab,
#studio-sidebar__chat.--private-theme .tab-container .public-tab {
    color: #767b9c;
}
#studio-sidebar__chat.--private-theme .tab-container .private-tab .label,
#studio-sidebar__chat.--private-theme .tab-container .public-tab .label {
    position: relative;
}
#studio-sidebar__chat.--private-theme .tab-container .private-tab .unread-badge,
#studio-sidebar__chat.--private-theme .tab-container .public-tab .unread-badge {
    right: -36px;
}
#studio-sidebar__chat.--private-theme .tab-container .private-tab.active,
#studio-sidebar__chat.--private-theme .tab-container .public-tab.active {
    color: rgba(255, 255, 255, 0.9);
}
#studio-sidebar__chat.--private-theme .tab-container .private-tab.active .label svg path,
#studio-sidebar__chat.--private-theme .tab-container .public-tab.active .label svg path {
    fill: rgba(255, 255, 255, 0.9);
}
#studio-sidebar__chat.--private-theme .chat-well .message .text-column .details,
#studio-sidebar__chat.--private-theme .chat-well .message-reply .text-column .details {
    color: #767b9c;
}
#studio-sidebar__chat.--private-theme .chat-well .message-reply .text-column .text {
    background: #282b67;
    color: rgba(255, 255, 255, 0.9);
}
#studio-sidebar__chat.--private-theme .chat-footer {
    border-top: 1px solid #373b6b;
}
#studio-sidebar__chat.--private-theme .chat-footer .textarea {
    background: #1d2939;
    color: rgba(255, 255, 255, 0.9);
}
#studio-sidebar__chat.--private-theme .chat-footer::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    /* make scrollbar transparent */
}
#studio-sidebar__chat .tab-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

#studio-sidebar__chat .tab-container .private-tab,
#studio-sidebar__chat .tab-container .public-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #3d455f;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 60px;
    color: #b1b5bf;
    cursor: pointer;
}
#studio-sidebar__chat .tab-container .private-tab .label,
#studio-sidebar__chat .tab-container .public-tab .label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
#studio-sidebar__chat .tab-container .private-tab .label .unread-badge,
#studio-sidebar__chat .tab-container .public-tab .label .unread-badge {
    right: -36px;
}
#studio-sidebar__chat .tab-container .private-tab .label svg,
#studio-sidebar__chat .tab-container .public-tab .label svg {
    margin-right: 5px;
}
#studio-sidebar__chat .tab-container .private-tab .label:after,
#studio-sidebar__chat .tab-container .public-tab .label:after {
    content: '';
    display: none;
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #725bc9;
}
#studio-sidebar__chat .tab-container .private-tab.active,
#studio-sidebar__chat .tab-container .public-tab.active {
    color: #3d455f;
}
#studio-sidebar__chat .tab-container .private-tab.active .label svg path,
#studio-sidebar__chat .tab-container .public-tab.active .label svg path {
    fill: #3d455f;
}
#studio-sidebar__chat .tab-container .private-tab.active .label:after,
#studio-sidebar__chat .tab-container .public-tab.active .label:after {
    display: block;
}
#studio-sidebar__chat .chat-content-container {
    position: relative;
    height: calc(100% - 61px);
}
#studio-sidebar__chat .chat-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#studio-sidebar__chat #chat-public {
    display: none;
}
#studio-sidebar__chat .chat-well {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 16px;
    padding-right: 9px;
    width: 100%;
    min-height: 0;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: none;
}
::-webkit-scrollbar-thumb {
    background: #485280;
    border-radius: 500px;
    border: 1px solid #1d225b;
}

#studio-sidebar__chat .chat-well.chat-public__well::-webkit-scrollbar-thumb {
    background: #e2e2e2;
    border: 1px solid #ffffff;
}

#studio-sidebar__chat .chat-public__footer .textarea::-webkit-scrollbar-thumb {
    background: #e2e2e2;
    border: 1px solid #ffffff;
}

#studio-sidebar__chat .chat-footer .textarea::-webkit-scrollbar-thumb {
    height: 10px;
}

#studio-sidebar__chat .chat-well .message-empty-private,
#studio-sidebar__chat .chat-well .message-empty-public {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.5);
    gap: 10px;
}
#studio-sidebar__chat .chat-well .message-empty-public svg {
    width: 180px;
    height: 154px;
}
#studio-sidebar__chat .chat-well .message-empty-private {
    color: rgba(255, 255, 255, 0.5);
}
#studio-sidebar__chat .chat-well .message-empty-public {
    color: #9096a9;
}
#studio-sidebar__chat .chat-well .message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 16px;
    cursor: pointer;
}
#studio-sidebar__chat .chat-well .message .text-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 10px;
}
#studio-sidebar__chat .chat-well .message .text-column .text {
    display: inline-block;
    max-width: 287px !important;
    word-wrap: break-word;
    background: #725bc9;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 19.4px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}
#studio-sidebar__chat .chat-well .message .text-column .text .progress,
#studio-sidebar__chat .chat-well .message-reply .text-column .text .progress {
    display: none;
}
#studio-sidebar__chat .chat-well .message.active .text-column .text .progress,
#studio-sidebar__chat .chat-well .message-reply.active .text-column .text .progress {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}

#studio-sidebar__chat .chat-well .message.active .text-column .text .progress:before,
#studio-sidebar__chat .chat-well .message-reply.active .text-column .text .progress:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #9094db;
}

#studio-sidebar__chat .chat-well .message.active .text-column .text .progress:before,
#studio-sidebar__chat .chat-well .message-reply.active .text-column .text .progress:before {
    animation: progress 30s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}

#studio-sidebar__chat .chat-well .message.active .text-column .text {
    outline: solid 2px #9094db;
    outline-offset: 2px;
}
#studio-sidebar__chat .chat-public__well .message.active .text-column .text {
    border: solid 2px #725bc9;
    /* color: #725bc9; */
    /* background-color: transparent; */
}

#studio-sidebar__chat .chat-well .message .text-column .text p {
    margin: 0;
}
#studio-sidebar__chat .chat-well .message .text-column .text p a {
    color: inherit;
}
#studio-sidebar__chat .chat-well .message .text-column .details {
    text-align: right;
    font-size: 13px;
    color: #9096a9;
}
#studio-sidebar__chat .chat-well .message .icon-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #fff;
    border-radius: 500px;
    background: #725bc9;
    overflow: hidden;
}
#studio-sidebar__chat .chat-well .message .icon-column img {
    display: block;
    width: 100%;
}
#studio-sidebar__chat .chat-well .joined-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 14px;
    color: #9096a9;
}
#studio-sidebar__chat .chat-well .message-reply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-bottom: 16px;
    cursor: pointer;
}
#studio-sidebar__chat .chat-well .message-reply .text-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 10px;
}
#studio-sidebar__chat .chat-well .message-reply .text-column .text {
    display: inline-block;
    max-width: 287px;
    word-wrap: break-word;
    background: #f7f7f7;
    color: #3d455f;
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 19.4px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

#studio-sidebar__chat .chat-well .message-reply.active .text-column .text {
    outline: solid 2px #9094db;
    outline-offset: 2px;
}

#studio-sidebar__chat .chat-well .message-reply .text-column .text p {
    margin: 0;
}
#studio-sidebar__chat .chat-well .message-reply .text-column .text p a {
    color: inherit;
}
#studio-sidebar__chat .chat-well .message-reply .text-column .details {
    text-align: left;
    font-size: 13px;
    color: #9096a9;
}
#studio-sidebar__chat .chat-well .message-reply .icon-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #fff;
    border-radius: 500px;
    background: #725bc9;
    overflow: hidden;
}
#studio-sidebar__chat .chat-well .message-reply .icon-column img {
    display: block;
    width: 100%;
}

#studio-sidebar__chat .chat-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    height: max-content;
    border-top: 1px solid #e6e8eb;
    width: 100%;
}

#studio-sidebar__chat .chat-footer .textarea {
    width: 100%;
    min-height: 40px;
    border: 0;
    outline: none;
    color: #3d455f;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    bottom: 0;
    overflow: auto;
}
.textarea[contenteditable]:empty::before {
    content: 'Message Private';
    color: #9096a9;
    cursor: text;
}
.chat-public__footer .textarea[contenteditable]:empty::before {
    content: 'Message Public';
    color: #9096a9;
    cursor: text;
}

#studio-sidebar__chat .chat-footer::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    /* make scrollbar transparent */
}
#studio-sidebar__chat .chat-footer textarea {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    color: #3d455f;
    padding-top: 20px;
    padding-left: 18px;
    padding-right: 54px;
    font-size: 14px;
}
#studio-sidebar__chat .chat-footer textarea::-webkit-input-placeholder {
    color: #9096a9;
    resize: none;
}
#studio-sidebar__chat .chat-footer textarea::-moz-placeholder {
    color: #9096a9;
    resize: none;
}
#studio-sidebar__chat .chat-footer textarea::-ms-input-placeholder {
    color: #9096a9;
    resize: none;
}
#studio-sidebar__chat .chat-footer textarea::placeholder {
    color: #9096a9;
    resize: none;
}

#chat-button_well {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 5px;
}

.chat-send_message_button {
    background: none;
    border: none;
    outline: none;
    height: 100%;
    cursor: pointer;
    margin-left: auto;
}
#studio-sidebar__chat .chat-footer button:hover svg path {
    fill: #6248c3;
}

.login-logo {
    position: absolute;
    top: 17px;
    left: 17px;
}

.login-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}
.login-container .login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    width: 460px;
    padding: 40px;
    padding-top: 30px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border: 1px solid #dee0e4;
}
#btnLogin {
    margin-bottom: 20px;
    height: 47px;
}
.login-container .login form {
    width: 100%;
}
.login-container .login h1 {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 7px;
    color: #3d455f;
    margin-bottom: 24px;
}
.login-container .login .success-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: #edf4f0;
    font-family: 'inter', sans-serif;
    font-size: 15px;
    color: #3ba66f;
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.login-container .login .success-message.disable {
    display: none;
}
.login-container .login input {
    height: 47px;
}
.login-container .login .input-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.login-container .login .input-wrap .form-input {
    margin: 0;
}
.login-container .login .input-wrap .error-msg {
    position: absolute;
    font-family: 'inter', sans-serif;
    top: 50px;
    left: 0;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #ff5a60;
}
.login-container .login .input-wrap .error-msg:empty {
    display: none;
}
.login-container .login .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 5px;
    text-align: center;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #9096a9;
}
.login-container .login .actions .remember {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #3d455f;
}
.login-container .login .actions .remember input {
    height: auto;
    margin-right: 7px;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}
.login-container .login .actions .forgot-password {
    color: #725bc9;
    font-family: 'inter', sans-serif;
    cursor: pointer;
    border-bottom: 1px solid #b4a8e2;
    text-decoration: none;
}
.login-container .login .vast-button {
    background: #5e52a9;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    padding: 0 34px;
    border: 1px solid #5e52a9;
    box-shadow: 0px 1px 2px 0px #1018280d;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 14px;
    font-size: 14px;
    line-height: 20px;
    transition: 0.3 ease;
    user-select: none;
}

.login-container .login .no-account {
    color: #725bc9;
    font-family: 'inter', sans-serif;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #b4a8e2;
    text-decoration: none;
}

.studio-onboarding {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    background: #eeeeee;
    /* overflow: auto; */
}

.studio-onboarding .onboarding-main .settings-input-container,
#settingsContainer .settings-input-container {
    display: grid;
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-bottom: 6px;
    align-items: center;
}
.studio-onboarding .onboarding-main .settings-input-container div:nth-child(2),
#settingsContainer .settings-input-container div:nth-child(2) {
    justify-self: right;
}
.studio-onboarding .onboarding-main .settings-input-container label,
#settingsContainer .settings-input-container label {
    width: 35px;
}
.studio-onboarding .onboarding-main .settings-input-container .settings-input-header,
#settingsContainer .settings-input-header {
    margin-bottom: 0;
}

.studio-onboarding .onboarding-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 30px;
}
.studio-onboarding .onboarding-main div.select {
    display: inline-block;
    margin: 0 0 1em 0;
}
.studio-onboarding .onboarding-main p.small {
    font-size: 0.7em;
}
.studio-onboarding .onboarding-main label {
    width: 12em;
    display: inline-block;
}
.studio-onboarding .onboarding-main .video-container {
    position: relative;
    width: 100%;
}
.studio-onboarding .onboarding-main .video-container .round-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    z-index: 97;
}

.studio-onboarding .onboarding-main .video-container .round-container .settings-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 97;
}
.studio-onboarding
    .onboarding-main
    .video-container
    .round-container
    .settings-avatar-container
    .settings-avatar-preview {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 100%;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.studio-onboarding
    .onboarding-main
    .video-container
    .round-container
    .settings-avatar-container
    .settings-avatar-preview
    .initials {
    font-size: 40px;
    font-weight: bold;
    color: white;
    font-family: 'inter';
}
.studio-onboarding
    .onboarding-main
    .video-container
    .round-container
    .settings-avatar-container
    .settings-avatar-preview
    img {
    width: 100%;
}

.studio-onboarding .onboarding-main .video-container #settings-video {
    display: block;
    width: 100%;
}

.studio-onboarding .onboarding-main .video-container .round-container .settings-avatar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-onboarding .onboarding-main .video-container .controls-container {
    z-index: 98;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 20px;
    padding: 0 20px 20px 0;
}
.studio-onboarding .onboarding-main .video-container .controls-container .control-button {
    margin-bottom: 0;
}
.studio-onboarding .onboarding-main .video-container .controls-container .audio-video-settings {
    z-index: 9999;
    top: auto;
    bottom: -4px;
    right: 0;
}
.studio-onboarding .onboarding-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 500px;
    height: 100vh;
    border-left: 1px solid #dee0e4;
    padding: 50px;
    background: #fff;
}
.studio-onboarding .onboarding-sidebar .profile-logo-container {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 15%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.studio-onboarding .onboarding-sidebar .profile-logo-container .onboarding-profile-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 500%;
    background: #eee;
    margin-bottom: 30px;
    overflow: hidden;
    cursor: pointer;
    pointer-events: none;
}
.studio-onboarding .onboarding-sidebar .profile-logo-container .onboarding-profile-image .profile-image-container {
    width: 74px;
    height: 74px;
    overflow: hidden;
    position: relative;
}

.studio-onboarding
    .onboarding-sidebar
    .profile-logo-container
    .onboarding-profile-image
    .profile-image-container
    .camera-container {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, -50%);
    height: 25%;
    width: 25%;
}
.studio-onboarding
    .onboarding-sidebar
    .profile-logo-container
    .onboarding-profile-image
    .profile-image-container
    .camera-container
    svg {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, -50%);
    height: 80%;
    width: 80%;
}

.studio-onboarding .onboarding-sidebar .profile-logo-container .onboarding-profile-image .profile-image-container img {
    width: 100%;
}
.studio-onboarding .onboarding-sidebar .profile-logo-container .onboarding-profile-image .hover-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.studio-onboarding .onboarding-sidebar .profile-logo-container .onboarding-profile-image .hover-overlay svg {
    width: 16px;
    opacity: 0.9;
    pointer-events: none;
}
.studio-onboarding .onboarding-sidebar .profile-logo-container .onboarding-profile-image:hover .hover-overlay {
    opacity: 1;
}
.studio-onboarding .onboarding-sidebar input {
    margin: 0;
}
.studio-onboarding .onboarding-sidebar input.form-error {
    background: #f9ebea;
    border: 1px solid #ff5a60;
}
.studio-onboarding .onboarding-sidebar input.form-error::-webkit-input-placeholder {
    opacity: 0;
}
.studio-onboarding .onboarding-sidebar input.form-error::-moz-placeholder {
    opacity: 0;
}
.studio-onboarding .onboarding-sidebar input.form-error::-ms-input-placeholder {
    opacity: 0;
}
.studio-onboarding .onboarding-sidebar input.form-error::placeholder {
    opacity: 0;
}
.studio-onboarding .onboarding-sidebar .error-msg {
    font-family: 'inter', sans-serif;
    width: 100%;
    height: 20px;
    margin: 0;
    padding: 7px 0;
    font-size: 13px;
    line-height: 16px;
    color: #ff5a60;
    text-align: left;
    margin-bottom: 20px;
}
.studio-onboarding .onboarding-sidebar .error-msg:empty {
    margin-bottom: 0;
}
.studio-onboarding .onboarding-sidebar button {
    width: 100%;
    height: 53px;
    font-size: 15px;
}
.studio-onboarding .onboarding-sidebar button:disabled {
    opacity: 0.5;
    pointer-events: none;
}

#onboarding-avsettings .settings-input-header.microphone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
#onboarding-avsettings .settings-input-header.microphone .volume-meter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
#onboarding-avsettings .settings-input-header.microphone .volume-meter div {
    width: 5px;
    height: 5px;
    background: #d2d5d9;
    margin: 0 1px;
    border-radius: 500%;
}

#onboarding-avsettings .settings-input-header.audio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
#onboarding-avsettings .settings-input-header.audio .test-button {
    cursor: pointer;
}
#onboarding-avsettings .settings-input-header.audio .test-button svg {
    display: inline-block;
}
#onboarding-avsettings .settings-input-header.audio .test-button .play,
#onboarding-avsettings .settings-input-header.audio .test-button .pause {
    pointer-events: none;
}
#onboarding-avsettings .settings-input-header.audio .test-button .pause {
    display: none;
}
#onboarding-avsettings .settings-input-header.audio .test-button.active .play {
    display: none;
}
#onboarding-avsettings .settings-input-header.audio .test-button.active .pause {
    display: block;
}

.room-logo {
    position: absolute;
    top: 10px;
    left: 20px;
}

.room-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}
.room-container .room-settings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    width: 400px;
    height: 300px;
    padding: 40px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border: 1px solid #dee0e4;
}
.room-container .room-settings input {
    height: 47px;
}
.room-container .room-settings .vast-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
}

.prev-session-container .prev-session-modal {
    width: 550px;
}
.prev-session-container .prev-session-modal h2 {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 0;
    color: #3d455f;
}
.prev-session-container .prev-session-modal p {
    text-align: center;
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #9096a9;
    line-height: 24px;
    margin-bottom: 30px;
}
.prev-session-container .prev-session-modal .sessions-well {
    display: grid;
    grid-row-gap: 16px;
    width: 100%;
    margin-bottom: 30px;
}
.prev-session-container .prev-session-modal .sessions-well .session {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-decoration: none;
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e6e8eb;
    -webkit-box-shadow: 0 5px 7px 1px rgba(20, 47, 55, 0.04);
    box-shadow: 0 5px 7px 1px rgba(20, 47, 55, 0.04);
    cursor: pointer;
    -webkit-transition: border 0.2s ease;
    transition: border 0.2s ease;
}
.prev-session-container .prev-session-modal .sessions-well .session:hover {
    border: 1px solid #725bc9;
}
.prev-session-container .prev-session-modal .sessions-well .session .title-container .title,
.prev-session-container .prev-session-modal .sessions-well .session .title-container .time,
.prev-session-container .prev-session-modal .sessions-well .session .time-container .title,
.prev-session-container .prev-session-modal .sessions-well .session .time-container .time {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1px;
    color: #3d455f;
}
.prev-session-container .prev-session-modal .sessions-well .session .title-container .eyebrow,
.prev-session-container .prev-session-modal .sessions-well .session .time-container .eyebrow {
    font-size: 10px;
    color: #9096a9;
    font-family: 'inter', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.prev-session-container .prev-session-modal button {
    width: 100%;
    height: 54px;
}

.getpw-logo {
    position: absolute;
    top: 17px;
    left: 17px;
}

.getpw-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}
.getpw-container .getpw {
    display: none;
    background: #fff;
    border-radius: 10px;
    width: 420px;
    padding: 40px;
    padding-top: 30px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border: 1px solid #dee0e4;
}
.getpw-container .getpw.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.getpw-container .getpw h1 {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 7px;
    color: #3d455f;
    margin-bottom: 24px;
}
.getpw-container .getpw p {
    text-align: center;
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #9096a9;
    line-height: 20px;
    margin: 0;
    margin-bottom: 20px;
}
.getpw-container .getpw .input-wrap {
    width: 100%;
}
.getpw-container .getpw .input-wrap input {
    margin-bottom: 0;
}
.getpw-container .getpw .input-wrap input.form-error {
    background: #f9ebea;
    border: 1px solid #ff5a60;
}
.getpw-container .getpw .input-wrap input.form-error::-webkit-input-placeholder {
    opacity: 0;
}
.getpw-container .getpw .input-wrap input.form-error::-moz-placeholder {
    opacity: 0;
}
.getpw-container .getpw .input-wrap input.form-error::-ms-input-placeholder {
    opacity: 0;
}
.getpw-container .getpw .input-wrap input.form-error::placeholder {
    opacity: 0;
}
.getpw-container .getpw .input-wrap .error-msg {
    font-family: 'inter', sans-serif;
    height: 20px;
    margin: 0;
    padding: 7px 0;
    font-size: 13px;
    line-height: 16px;
    color: #ff5a60;
    text-align: left;
    margin-bottom: 30px;
}
.getpw-container .getpw .input-wrap .error-msg:empty {
    margin-bottom: 0;
}
.getpw-container .getpw .vast-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
    margin-bottom: 7px;
}
.getpw-container .getpw-success {
    background: #fff;
    border-radius: 10px;
    width: 400px;
    padding: 40px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border: 1px solid #dee0e4;
    display: none;
}
.getpw-container .getpw-success.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.getpw-container .getpw-success img {
    width: 46px;
}
.getpw-container .getpw-success h1 {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 7px;
    color: #3d455f;
}
.getpw-container .getpw-success p {
    text-align: center;
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #9096a9;
    line-height: 20px;
    margin-bottom: 30px;
}
.getpw-container .getpw-success .vast-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
}

.pwrecovery-logo {
    position: absolute;
    top: 10px;
    left: 20px;
}

.pwrecovery-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}
.pwrecovery-container .pwrecovery {
    display: none;
    background: #fff;
    border-radius: 10px;
    width: 420px;
    padding: 40px;
    padding-top: 30px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border: 1px solid #dee0e4;
}
.pwrecovery-container .pwrecovery.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.pwrecovery-container .pwrecovery h1 {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 7px;
    color: #3d455f;
    margin-bottom: 24px;
}
.pwrecovery-container .pwrecovery p {
    text-align: center;
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #9096a9;
    line-height: 20px;
    margin: 0;
    margin-bottom: 20px;
}
.pwrecovery-container .pwrecovery .input-wrap {
    width: 100%;
}
.pwrecovery-container .pwrecovery .input-wrap input {
    margin-bottom: 0;
}
.pwrecovery-container .pwrecovery .input-wrap input.form-error {
    background: #f9ebea;
    border: 1px solid #ff5a60;
}
.pwrecovery-container .pwrecovery .input-wrap input.form-error::-webkit-input-placeholder {
    opacity: 0;
}
.pwrecovery-container .pwrecovery .input-wrap input.form-error::-moz-placeholder {
    opacity: 0;
}
.pwrecovery-container .pwrecovery .input-wrap input.form-error::-ms-input-placeholder {
    opacity: 0;
}
.pwrecovery-container .pwrecovery .input-wrap input.form-error::placeholder {
    opacity: 0;
}
.pwrecovery-container .pwrecovery .input-wrap .error-msg {
    font-family: 'inter', sans-serif;
    height: 20px;
    margin: 0;
    padding: 7px 0;
    font-size: 13px;
    line-height: 16px;
    color: #ff5a60;
    text-align: left;
    margin-bottom: 30px;
}
.pwrecovery-container .pwrecovery .input-wrap .error-msg:empty {
    margin-bottom: 0;
}
.pwrecovery-container .pwrecovery .vast-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
    margin-bottom: 7px;
}
.pwrecovery-container .pwrecovery-expired {
    background: #fff;
    border-radius: 10px;
    width: 400px;
    padding: 40px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border: 1px solid #dee0e4;
    display: none;
}
.pwrecovery-container .pwrecovery-expired.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.pwrecovery-container .pwrecovery-expired img {
    width: 46px;
}
.pwrecovery-container .pwrecovery-expired h1 {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 7px;
    color: #3d455f;
}
.pwrecovery-container .pwrecovery-expired p {
    text-align: center;
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #9096a9;
    line-height: 20px;
    margin-bottom: 30px;
}
.pwrecovery-container .pwrecovery-expired .vast-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
}

.asset-library {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    width: 850px;
    /* height: 650px; */
    height: 90vh;
    padding: 0;
    margin-bottom: 0;
    display: none;
    overflow: hidden;
}
.asset-library .loading-overlay {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    display: none;
    position: absolute;
    z-index: 1;
    justify-content: center;
    align-items: center;
}
.asset-library .loading-overlay .loader {
    display: block;
}
.asset-library .library__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    padding: 24px 24px;
    padding-bottom: 20px;
}
.asset-library .library__header .library__header-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.asset-library .library__header .library__header-info p {
    font-size: 18px;
    letter-spacing: 0.3px;
    line-height: 28px;
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}
.asset-library .library__header .right-controls,
.asset-library .library__header .left-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.asset-library .library__header .library__header-icon {
    display: flex;
}
.asset-library .library__header .library__header-info .library-icon {
    margin-bottom: 5px;
}
.asset-library .library__header .library__header-info h2 {
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}
/* .asset-library .library__header .filter-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
} */

.asset-library .library__header .filter-container .filter-button .filter-icon {
    margin-right: 5px;
}
.asset-library .library__header .filter-container .filter-button .filter-icon svg {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}
.asset-library .library__header .filter-container .filter-button .filter-status {
    font-family: 'inter', sans-serif;
    background: #f4f0fe;
    font-size: 13px;
    margin-left: 3px;
    color: #725bc9;
    padding: 2px 10px;
    padding-bottom: 3px;
    border-radius: 500px;
    font-weight: 700;
}
.asset-library .library__header .filter-container .filter-button .filter-status:empty {
    display: none;
}
.asset-library .library__header .upload-button {
    height: 36px;
}
.asset-library .library__header .upload-button span {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.asset-library .library__table {
    width: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
}
.asset-library .library__table .asset-checkbox {
    pointer-events: none;
}
.asset-library .library__table.selections .table-well {
    max-height: calc(565px - 129px);
}
.asset-library .library__table.selections .select-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.asset-library .library__table.selections .select-footer .select-footer-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.asset-library .library__table .sort-wrap {
    /* border-bottom: 1px solid #e6e8eb; */
}
.asset-library .library__table .table-sort {
    margin: 0 19px 0 12px;
}
.asset-library .library__table .table-sort,
.asset-library .library__table .table-row {
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 0.6fr;
    background: #ffffff;
    border-bottom: 1px solid #eaecf0;
}
.asset-library .library__table .table-sort {
    background: #f9fafb;
    border-bottom: 1px solid #eaecf0;
}
.asset-library .library__table .table-sort .sort-item.creative-asset-heading {
    justify-content: flex-start;
}
.asset-library .library__table .table-sort .sort-item {
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #475467;
}
.asset-library .library__table .table-row .sort-item {
    color: #74798d;
    font-size: 14px;
    letter-spacing: 0.2px;
    display: flex;
    justify-content: center;
    font-weight: 500;
}
/* .asset-library .library__table .table-sort .sort-item:last-child,
.asset-library .library__table .table-row .sort-item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
} */
.asset-library .library__table .table-row .row-item.creative-asset-item {
    justify-content: flex-start;
}
.asset-library .library__table .table-sort .row-item,
.asset-library .library__table .table-row .row-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    letter-spacing: 0.2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}
/* .asset-library .library__table .table-sort .row-item:last-child,
.asset-library .library__table .table-row .row-item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
} */
.asset-library .library__table .table-sort .row-item.file .added-icon,
.asset-library .library__table .table-row .row-item.file .added-icon {
    position: absolute;
    width: 23px;
    top: -6px;
    left: -7px;
    display: none;
}
.asset-library .library__table .table-sort .row-item.file .image-preview,
.asset-library .library__table .table-row .row-item.file .image-preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 90px;
    height: 51px;
    border-radius: 4px;
    background: #eeeeee;
    overflow: hidden;
}
.asset-library .library__table .table-row .row-item.file .image-preview.logo {
    width: 51px;
}
.asset-library .library__table .table-sort .row-item.file .image-preview img,
.asset-library .library__table .table-row .row-item.file .image-preview img {
    max-width: 100%;
    max-height: 100%;
}
.asset-library .library__table .table-sort .row-item.file .file-name,
.asset-library .library__table .table-row .row-item.file .file-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-left: 7px;
    height: 100%;
}
.asset-library .library__table .table-row .row-item.file .file-name .name {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}
.asset-library .library__table .table-sort .row-item.file .file-name .tag,
.asset-library .library__table .table-row .row-item.file .file-name .tag {
    font-size: 11px;
    background: #eee;
    padding: 4px 7px;
    border-radius: 500px;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    background: #f4f0fe;
    color: #725bc9;
}
.asset-library .library__table .table-sort .row-item.actions .delete-button,
.asset-library .library__table .table-sort .row-item.actions .share-button,
.asset-library .library__table .table-row .row-item.actions .delete-button,
.asset-library .library__table .table-row .row-item.actions .share-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 34px;
    height: 34px;
    outline: none !important;
    border-radius: 500px;
    background: none;
    border: 0;
    pointer-events: auto;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    cursor: pointer;
}
.asset-library .library__table .table-sort .row-item.actions .delete-button:hover,
.asset-library .library__table .table-sort .row-item.actions .share-button:hover,
.asset-library .library__table .table-row .row-item.actions .delete-button:hover,
.asset-library .library__table .table-row .row-item.actions .share-button:hover {
    background: #faefee;
}
.asset-library .library__table .table-sort .row-item.actions .delete-button svg,
.asset-library .library__table .table-sort .row-item.actions .share-button svg,
.asset-library .library__table .table-row .row-item.actions .delete-button svg,
.asset-library .library__table .table-row .row-item.actions .share-button svg {
    pointer-events: none;
}
.asset-library .library__table .table-sort .row-item.actions .share-button:hover,
.asset-library .library__table .table-row .row-item.actions .share-button:hover {
    background: none;
}
.asset-library .library__table .table-sort .row-item.actions .share-button:hover svg path,
.asset-library .library__table .table-row .row-item.actions .share-button:hover svg path {
    fill: #725bc9;
}
.asset-library .library__table .table-well {
    /* max-height: calc(650px - 129px);
    overflow-y: scroll; */
}
.asset-library .library__table.selections .table-content-wrapper {
    height: calc(100% - 129px);
}
.asset-library .library__table.selections .table-content-wrapper::-webkit-scrollbar-thumb {
    background: #b3adad;
    border-radius: 500px;
    border: 1px solid #ffffff;
}
.table-content-wrapper {
    overflow-y: scroll;
    height: 100%;
    position: relative;
}
.table-content-wrapper::-webkit-scrollbar-thumb {
    background: #c4c3c3;
    border-radius: 500px;
    border: 1px solid #c4c3c3;
}
.asset-library .library__table .table-well .empty-library-message,
.asset-library .library__table .table-well .loading-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: calc(650px - 129px);
    background: none;
    font-size: 14px;
    letter-spacing: 0.2px;
    color: #9096a9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.asset-library .library__table .table-well .loading-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.asset-library .library__table .table-well .loading-progress .loading-animation {
    display: inline-block;
    width: 47px;
    height: 47px;
    border: 4px solid #eae2ff;
    border-radius: 50%;
    border-top-color: #725bc9;
    margin-bottom: 20px;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes slideUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}
.asset-library .library__table .table-row {
    position: relative;
    padding: 16px 16px;
    margin: 0 12px;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    cursor: pointer;
    user-select: none;

    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    opacity: 1;
    position: relative;
}

@keyframes highlightRow {
    0% {
        background-color: rgba(94, 82, 169, 0.5);
    }
    25% {
        background-color: rgba(94, 82, 169, 0.4);
    }
    50% {
        background-color: rgba(94, 82, 169, 0.3);
    }
    75% {
        background-color: rgba(94, 82, 169, 0.2);
    }
    100% {
        background-color: rgba(94, 82, 169, 0);
    }
}

.row-animation {
    animation: highlightRow 0.5s ease-in;
}

/* .row-animation {
    animation: fadeIn 0.5s ease-in;
  } */

.deleted {
    animation-name: slideUp;
}

.asset-library .library__table .table-row.added .row-item.file .added-icon {
    display: block;
}
.asset-library .library__table .table-row.added:hover {
    /* background: none; */
}
.asset-library .library__table .table-row.selected:after {
    content: '';
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #7edc9f;
    border-radius: 6px;
    background: rgba(120, 212, 152, 0.22);
}
.asset-library .library__table .table-row.selected:hover {
    background: none;
}
.asset-library .library__table .table-row:hover {
    background: #f9fafb;
}
.asset-library .library__table .select-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 24px;
    height: 85px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #e6e8eb;
    display: none;
}
.asset-library .library__table .select-footer .selection-count {
    color: #74798d;
    font-size: 15px;
    letter-spacing: 0;
}
.cropper-view-box {
    outline: 2px solid #685bbc !important;
    outline-color: #685bbc !important;
}
.cropper-point {
    background-color: #ffffff !important;
    border: solid 2px #685bbc !important;
    width: 12px !important;
    height: 12px !important;
}
.cropper-point.point-s {
    bottom: -7px !important;
}
.cropper-point.point-w {
    left: -6px !important;
}
.cropper-point.point-e {
    right: -6px !important;
}
.cropper-point.point-n {
    top: -7px !important;
}
.cropper-point.point-nw {
    left: -6px !important;
    top: -6px !important;
}
.cropper-point.point-sw {
    left: -6px !important;
    bottom: -6px !important;
}
.cropper-point.point-se {
    right: -6px !important;
    bottom: -6px !important;
    width: 12px !important;
    height: 12px !important;
}
.cropper-point.point-ne {
    right: -6px !important;
    top: -6px !important;
}
.cropper-bg {
    background-size: 34px !important;
}

.asset-upload {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    width: 800px;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    display: none;
    font-family: 'Inter';
    font-style: normal;
}
.asset-upload.modal-open {
    -webkit-animation: unset;
    animation: unset;
}
.asset-upload .upload__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid #e6e8eb;
    gap: 16px;
}
.asset-upload .upload__header .upload__header-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.asset-upload .upload__header .upload__header-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    flex-direction: column;
}
.asset-upload .upload__header .upload__header-info h2 {
    font-size: 18px;
    letter-spacing: 0.3px;
    line-height: 28px;
    margin: 0;
    font-weight: 500;
    color: #101828;
}
.asset-upload .upload__header .upload__header-info p {
    font-size: 18px;
    letter-spacing: 0.3px;
    line-height: 28px;
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}
.asset-upload .upload__header .upload__header-info h3 {
    font-size: 15px;
    margin: 0;
    padding: 0;
}
.asset-upload .upload__header button {
    height: 44px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
}
.asset-upload .upload__dropzone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 350px;
    background: #000;
}
.asset-upload .upload__dropzone img {
    max-width: 100%;
    height: 100%;
}
.asset-upload .upload__dropzone .upload-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
}
.asset-upload .upload__dropzone .upload-progress.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.asset-upload .upload__dropzone .upload-progress .loading-message {
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #9096a9;
}
.asset-upload .upload__dropzone .upload-progress .loading-animation {
    display: inline-block;
    width: 47px;
    height: 47px;
    border: 4px solid #eae2ff;
    border-radius: 50%;
    border-top-color: #725bc9;
    margin-bottom: 20px;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
.asset-upload .display-name-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: none;
    padding: 12px;
    gap: 5px;
}
.asset-upload .display-name-wrapper span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}
.asset-upload .display-name-wrapper input {
    width: 60%;
    padding: 8px 12px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
}
.asset-upload .upload__footer {
    width: 100%;
    padding: 0 15px 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}
.asset-upload .upload__footer .tag-icon {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    margin-right: 3px;
}
.asset-upload .upload__footer .metadata-input {
    height: 40px;
    width: 180px;
    border: 0;
    font-family: 'inter', sans-serif;
    font-size: 15px;
    letter-spacing: 0.2px;
    color: #3d455f;
    outline: none !important;
    display: inline-block;
}
.asset-upload .upload__footer .metadata-input:focus {
    outline: 0 !important;
    border: 0 !important;
}
.asset-upload .upload__footer .metadata-input::-webkit-input-placeholder {
    color: #9096a9;
    font-size: 15px;
    letter-spacing: 0;
}
.asset-upload .upload__footer .metadata-input::-moz-placeholder {
    color: #9096a9;
    font-size: 15px;
    letter-spacing: 0;
}
.asset-upload .upload__footer .metadata-input::-ms-input-placeholder {
    color: #9096a9;
    font-size: 15px;
    letter-spacing: 0;
}
.asset-upload .upload__footer .metadata-input::placeholder {
    color: #9096a9;
    font-size: 15px;
    letter-spacing: 0;
}

.share-asset {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    width: 600px;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    display: none;
}
.share-asset .share-asset__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    padding: 24px 24px;
}
.share-asset .share-asset__header .share-asset__header-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.share-asset .share-asset__header .share-asset__header-info h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.3px;
    margin-right: 20px;
    margin-left: 10px;
}
.share-asset .share-asset__header .share-asset__header-info h3 {
    font-size: 15px;
    margin: 0;
    padding: 0;
}
.share-asset .share-asset__header button {
    height: 44px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
}
.share-asset .share-asset__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    background: #fff;
    padding: 24px;
    padding-bottom: 0;
}
.share-asset .share-asset__form .input-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}
.share-asset .share-asset__form .input-row .wrap-email {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 20px;
}
.share-asset .share-asset__form .input-row .wrap-access {
    -webkit-box-flex: 0.4;
    -ms-flex: 0.4;
    flex: 0.4;
}
.share-asset .share-asset__form .input-row .input-header {
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-family: 'inter', sans-serif;
    color: #3d455f;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
}
.share-asset .share-asset__form .recipient-email {
    font-size: 15px;
}
.share-asset .share-asset__form .recipient-email::-webkit-input-placeholder {
    font-size: 15px;
}
.share-asset .share-asset__form .recipient-email::-moz-placeholder {
    font-size: 15px;
}
.share-asset .share-asset__form .recipient-email::-ms-input-placeholder {
    font-size: 15px;
}
.share-asset .share-asset__form .recipient-email::placeholder {
    font-size: 15px;
}
.share-asset .share-asset__form .recipient-email.form-error {
    background: #f9ebea;
    border: 1px solid #ff5a60;
}
.share-asset .share-asset__form .recipient-email.form-error::-webkit-input-placeholder {
    opacity: 0;
}
.share-asset .share-asset__form .recipient-email.form-error::-moz-placeholder {
    opacity: 0;
}
.share-asset .share-asset__form .recipient-email.form-error::-ms-input-placeholder {
    opacity: 0;
}
.share-asset .share-asset__form .recipient-email.form-error::placeholder {
    opacity: 0;
}
.share-asset .share-asset__form .select-input {
    height: 53px;
    width: 100%;
    border: 1px solid #d7dae4;
    font-family: 'inter', sans-serif;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 15px;
    color: #3d455f;
    margin-bottom: 20px;
    outline: none;
    background: url('../assets/arrow-down.svg') no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    -webkit-appearance: none;
}
.share-asset .share-asset__form .select-input::-webkit-input-placeholder {
    color: #9096a9;
    font-size: 16px;
}
.share-asset .share-asset__form .select-input::-moz-placeholder {
    color: #9096a9;
    font-size: 16px;
}
.share-asset .share-asset__form .select-input::-ms-input-placeholder {
    color: #9096a9;
    font-size: 16px;
}
.share-asset .share-asset__form .select-input::placeholder {
    color: #9096a9;
    font-size: 16px;
}
.share-asset .share-asset__form .error-msg {
    position: absolute;
    font-family: 'inter', sans-serif;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #ff5a60 !important;
}
.share-asset .share-asset__form .error-msg:empty {
    display: none;
}
.share-asset .share-asset__footer {
    width: 100%;
    height: 95px;
    padding: 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.share-asset .share-asset__footer .cancel-button {
    font-family: 'inter', sans-serif;
    width: 74px;
    height: 43px;
    color: #74798d;
    outline: none;
    font-size: 15px;
    background: transparent;
    border: 0;
    margin-right: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.share-asset .share-asset__footer .cancel-button:hover {
    color: #5c658c;
}
.share-asset .share-asset__footer .share-button:disabled {
    opacity: 0.5;
}

.asset-library .filter-container .filter-dialog {
    user-select: none;
    z-index: 99999;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    top: -2px;
    left: -2px;
    width: calc(100% + 2px);
    height: calc(100% + 7px);
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e6e8eb;
    display: none;
    overflow: auto;
}
.asset-library .filter-container .filter-dialog .filter-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: 'inter', sans-serif;
    color: #3d455f;
    font-size: 16px;
    padding: 20px;
    margin-bottom: 7px;
    gap: 16px;
}
.asset-library .filter-container .filter-dialog .filter-header .filter-header-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.asset-library .filter-container .filter-dialog .filter-header .filter-header-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.asset-library .filter-container .filter-dialog .filter-header .filter-header-info .filter-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}
.asset-library .filter-container .filter-dialog .filter-header .filter-header-info .filter-subheader {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}
.asset-library .filter-container .filter-dialog .filters {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 20px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.asset-library .filter-container .filter-dialog .filters::-webkit-scrollbar-thumb {
    background: #c4c3c3;
    border-radius: 500px;
    border: 1px solid #c4c3c3;
}
.asset-library .filter-container .filter-dialog .filter {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px 16px 24px;
    width: 100%;
}

.asset-library .filter-container .filter-dialog .filter-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.me {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px 8px;
    background: #ecfdf3;
    mix-blend-mode: multiply;
    border-radius: 16px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #027a48;
    margin: 0;
}
.studiobit {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px 8px;
    background: #d9d6ee;
    mix-blend-mode: multiply;
    border-radius: 16px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #534996;
    margin: 0;
}
.asset-library .filter-container .filter-dialog .filter-content input.asset-checkbox {
    visibility: hidden;
    position: relative;
    cursor: pointer;
    bottom: 3px;
    margin-right: 10px;
}
.asset-library .filter-container .filter-dialog .filter-content input.asset-checkbox[type='checkbox']:after {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    width: 20px;
    height: 20px;
    background: #f2f4f7;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
}

.asset-library .filter-container .filter-dialog .filter-content input.asset-checkbox[type='checkbox']:checked:after {
    background: url(/assets/checkbox_tick_icon.svg), #d9d6ee;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #5e52a9;
    box-shadow: 0px 0px 0px 4px #f4ebff;
}

.asset-library .filter-container .filter-dialog .filter-content .file-type-dropdown {
    padding: 10px 38px;
    width: 40%;
    height: 44px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 16px;
    background-image: url('../assets/file_type_icon.svg'), url('../assets/chevron_down_icon.svg');
    background-repeat: no-repeat;
    background-position: 16px center, calc(100% - 16px) center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
    cursor: pointer;
}
.asset-library .filter-container .filter-dialog .filter-content .selected-date,
.asset-library .filter-container .filter-dialog .filter-content .selected-fileType {
    display: none;
}
.asset-library .filter-container .filter-dialog .filter-content .selected-date .selected-date-close-button svg,
.asset-library .filter-container .filter-dialog .filter-content .selected-fileType .selected-fileType-close-button svg {
    width: 10px;
    height: 10px;
    cursor: pointer;
}

.asset-library .filter-container .filter-dialog .filter-content .filter-select-dates-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 40px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    height: 44px;
    width: 40%;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    gap: 6px;
    background-image: url('../assets/calender_icon_studio.svg'), url('../assets/chevron_down_icon.svg');
    background-repeat: no-repeat;
    background-position: 16px center, calc(100% - 16px) center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.asset-library .filter-container .filter-dialog .filter .filter-type-heading {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    margin-bottom: 7px;
}

.asset-library .filter-container .filter-dialog .filter-dialog-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    position: relative;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    margin-top: auto;
    padding: 35px;
    gap: 16px;
}

.asset-library .filter-container .filter-dialog .filter-dialog-footer .filter-status {
    margin-right: auto;
}
.asset-library .filter-container .filter-dialog .filter-dialog-footer .filter-apply-button {
    background: #5e52a9;
    border: 1px solid #5e52a9;
    color: #ffffff;
    padding: 10px 16px;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}
.asset-library .filter-container .filter-dialog .filter-dialog-footer .filter-cancel-button {
    padding: 10px 16px;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    cursor: pointer;
}
.selected-filter {
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d9d6ee;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #534996;
    padding: 8px 14px;
    gap: 8px;
    border-radius: 8px;
}
.asset-library .filter-container .filter-dialog .filter-footer .filter-save-button {
    height: 40px;
    width: 110px;
    padding: 0;
    font-size: 13px;
}

.studio-chat,
.participant-chat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 14px 0;
}
.studio-chat .message-well,
.participant-chat .message-well {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
}
.studio-chat .message-input-container,
.participant-chat .message-input-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 70px;
    width: 100%;
}

.error-page-logo {
    position: absolute;
    top: 10px;
    left: 20px;
}

.error-page-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

.error-page-wrapper {
    flex: 1.3;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.error-page-wrapper .error-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    width: 400px;
    padding: 40px;
    -webkit-box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    box-shadow: 0 2px 20px 1px rgba(20, 47, 55, 0.05);
    border: 1px solid #dee0e4;
}
.error-page-wrapper .error-page h1 {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #3d455f;
    margin-bottom: 0;
}
.error-page-wrapper .error-page p {
    text-align: center;
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #9096a9;
    line-height: 20px;
    margin-bottom: 30px;
}
.error-page-wrapper .error-page .home-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
}

.promotion-message-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    width: 100%;
}
.promotional-message {
    margin: 0;
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #3a4363;
    line-height: 20px;
}
.learn-more-btn {
    background: #725bc9;
    margin-top: 30px;
    padding: 9px 10px;
    /* height: 1.9rem; */
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #fff;
    border: 0;
    outline: none;
    -webkit-box-shadow: 0 1px 4px 0 rgba(45, 35, 107, 0.3);
    box-shadow: 0 1px 4px 0 rgba(45, 35, 107, 0.3);
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.vast-button:hover {
    background: #6248c3;
}

/*              start profile image modal            */
.profile-image-modal {
    width: 440px;
    padding: 40px;
    display: none;
}
.profile-image-modal .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    margin-bottom: 30px;
}
.profile-image-modal .header h2 {
    margin-top: 0;
    color: #3d455f;
}
.profile-image-modal .profile-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}
.profile-image-modal .profile-form #profile-password-input {
    display: none;
}
.profile-image-modal .profile-form .form-left {
    -ms-flex-preferred-size: 480px;
    flex-basis: 480px;
    margin-right: 20px;
}
.profile-image-modal .profile-form .form-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.profile-image-modal .profile-form .form-right .user-profile-image-wrap {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 50%;
    position: relative;
}
.profile-image-modal .user-profile-image-wrap .initials {
    font-size: 30px;
    font-weight: bold;
    color: white;
    font-family: 'inter';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.profile-image-modal .profile-form .form-right .user-profile-image-wrap .profile-image {
    width: 100px;
}
.profile-image-modal .profile-form .form-right .profile-hint,
.profile-image-modal .profile-form .form-right .user-file-error {
    text-align: center;
    width: 192px;
    font-size: 14px;
    color: #747991;
    margin-bottom: 18px;
}
.profile-image-modal .profile-form .form-right .user-file-error {
    font-family: 'inter', sans-serif;
    margin: 0;
    padding: 0;
    margin-bottom: 4px;
    color: #ff5a60;
}
.profile-image-modal .profile-form .form-right .user-file-error:empty {
    display: none;
}
.profile-image-modal .profile-form .form-right #image-upload {
    display: none;
}
.profile-image-modal .button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    margin-top: 50px;
}
.profile-image-modal .button-container .change-password {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-decoration: none;
    color: #35acce;
}
.profile-image-modal .button-container .action-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}
.profile-image-modal .button-container .action-buttons .cancel-button {
    font-family: 'inter', sans-serif;
    width: 74px;
    height: 43px;
    color: #767fa5;
    outline: none;
    font-size: 15px;
    background: transparent;
    border: 0;
    margin-right: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.profile-image-modal .button-container .action-buttons .cancel-button:hover {
    color: #5c658c;
}
.profile-image-modal .button-container .action-buttons .vast-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 160px;
    outline: none;
    text-decoration: none;
}
.profile-image-modal .button-container .action-buttons .vast-button.disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* loader for previous messages */
.previous-messages__loader {
    opacity: 0;
    display: flex;
    position: absolute;
    transition: opacity 0.3s ease-in;
    left: 50%;
    transform: translateX(-50%);
}
.previous-messages__loader.show {
    opacity: 1;
}

.ball {
    background-color: white;
    border-radius: 50%;
    margin: 5px;
    height: 6px;
    width: 6px;
    animation: jump 0.5s ease-in infinite;
}
.ball.colored {
    background-color: #725bc9;
}
.ball:nth-of-type(2) {
    animation-delay: 0.1s;
}

.ball:nth-of-type(3) {
    animation-delay: 0.2s;
}

@keyframes jump {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.circle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background: #6248c3;
    cursor: pointer;
}
#circle-private.circle {
    background: #6248c3;
}
.down-arrow-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(199, 0, 0);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 10px;
    font-family: 'inter', sans-serif;
    letter-spacing: 0;
}
.input-badge {
    position: absolute;
    top: -4px;
    right: 0;
    background: #e24f53;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
}
.arrows {
    position: relative;
    /**/
    position: absolute;
    top: 50%;
    left: 53%;
    /**/
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
}
.arrows:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-left: 2.6666666667px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2.6666666667px solid rgba(255, 255, 255, 0.7);
    transform: translate(2.6666666667px, 10.6666666667px) rotate(-45deg);
    animation: arrows 3s linear infinite;
}
.arrows:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-left: 2.6666666667px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2.6666666667px solid rgba(255, 255, 255, 0.7);
    transform: translate(5.3333333333px, 0px) rotate(-45deg);
    animation: arrows 3s linear infinite -1.5s;
}

@keyframes arrows {
    0% {
        border-left: 2.6666666667px solid rgba(0, 0, 0, 0);
        border-bottom: 2.6666666667px solid rgba(0, 0, 0, 0);
        transform: translate(-1.3333333333px, -5.3333333333px) rotate(-45deg);
    }
    10%,
    90% {
        border-left: 2.6666666667px solid rgba(0, 0, 0, 0);
        border-bottom: 2.6666666667px solid rgba(0, 0, 0, 0);
    }
    50% {
        border-left: 2.6666666667px solid rgba(255, 255, 255, 0.7);
        border-bottom: 2.6666666667px solid rgba(255, 255, 255, 0.7);
        transform: translate(-1.3333333333px, 0px) rotate(-45deg);
    }
    100% {
        border-left: 2.6666666667px solid rgba(0, 0, 0, 0);
        border-bottom: 2.6666666667px solid rgba(0, 0, 0, 0);
        transform: translate(-1.3333333333px, 5.3333333333px) rotate(-45deg);
    }
}

/* Spinner  */
.spinner {
    display: none;
}
.spinner::after {
    content: '';
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    border-radius: 50%;
}

.spinner.smooth::after {
    border-top: 4px solid rgba(114, 91, 201, 1);
    border-left: 4px solid rgba(114, 91, 201, 1);
    border-right: 4px solid rgba(114, 91, 201, 0);

    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Video player Styling *************************************************************************8 */

.drop-zone__preview .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    z-index: 1;
    animation: animate 0.6s linear infinite;
    display: none;
}
.media_clip .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    z-index: 1;
    animation: animate 0.6s linear infinite;
    display: none;
}
@keyframes animate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.media_clip-video {
    position: relative;
    width: 100%;
    height: 100%;
    outline: none;
    object-fit: cover;
}

.drop-zone__preview .progressAreaTime {
    position: absolute;
    left: calc(var(--x) + 20px);
    transform: translateX(-50%);
    bottom: 55px;
    min-width: 40px;
    text-align: center;
    white-space: nowrap;
    padding: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    z-index: 1;
    display: none;
    background: black;
    border-radius: 5px;
}

.media_clip .progressAreaTime {
    position: absolute;
    left: calc(var(--x) + 4px);
    transform: translateX(-50%);
    bottom: 25px;
    min-width: 20px;
    text-align: center;
    white-space: nowrap;
    padding: 1px 2px;
    color: #fff;
    font-size: 8px;
    font-weight: 400;
    z-index: 1;
    display: none;
    background-color: black;
    border-radius: 2px;
}
.drop-zone__preview .on-screen-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 70%;
    display: flex;
    justify-content: space-evenly;
    opacity: 0;
}
.drop-zone__preview .on-screen-controls > * {
    cursor: pointer;
    user-select: none;
}
.drop-zone__preview .on-screen-controls.active {
    opacity: 1;
}

.media_clip .on-screen-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 25px;
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    opacity: 0;
    user-select: none;
}
.media_clip .on-screen-controls > * {
    cursor: pointer;
    user-select: none;
}
.media_clip .on-screen-controls.active {
    opacity: 1;
}
.pause_icon_video_player {
    display: none;
}

.controls-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 29%);
    opacity: 0;
}

.drop-zone__preview:hover .controls-wrapper {
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.media_clip:hover .controls-wrapper {
    opacity: 1;
    transition: ease-in-out 0.5s;
}
.media_clip:hover + .dropzone-label,
.screen_share:hover + .dropzone-label {
    display: none !important;
    opacity: 0;
}
.drop-zone__preview .controls {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 3;
    transform: translateY(180%);
    transition: 0.3s;
    padding: 0px 10px;
}
.media_clip .controls {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 28px;
    width: 100%;
    z-index: 3;
    transform: translateY(125%);
    transition: 0.3s;
    padding: 0px 4px;
}

.drop-zone__preview .controls.active,
.media_clip .controls.active {
    transform: translateY(0);
}

.drop-zone__preview .controls .progress-area {
    width: 95%;
    height: 5px;
    margin: auto;
    background: #f0f0f063;
    cursor: pointer;
    position: relative;
}
.media_clip .controls .progress-area {
    width: 95%;
    height: 3px;
    margin: auto;
    background: #f0f0f063;
    cursor: pointer;
    position: relative;
}

.controls .progress-area .progress-bar {
    position: relative;
    width: 0%;
    background: #725bc9;
    height: inherit;
    border-radius: inherit;
    cursor: pointer;
}

.controls .progress-area .progress-bar::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #725bc9;
    pointer-events: auto;
}

.media_clip .controls .progress-area .progress-bar::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    background: #725bc9;
    pointer-events: auto;
}

.controls .progress-area .bufferedBar {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 100%;
    height: inherit;
}

.controls .controls-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 95%;
    height: 34px;
    margin: 0 auto;
}

.media_clip .controls .controls-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 97%;
    height: 20px;
    margin: 0 auto;
}

.controls .controls-list .controls-left {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    height: 100%;
}

.controls .controls-list .controls-right {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    height: 100%;
}

.controls .controls-list .controls-right .volume-on-off {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.controls .controls-list .controls-right .volume-on-off > * {
    height: 1.2rem;
    user-select: none;
}

.media_clip .controls .controls-list .controls-right .volume-on-off {
    cursor: pointer;
}
.media_clip .controls .controls-list .controls-right .volume-on-off > * {
    height: 1rem;
}

.volume_off_icon_video_player {
    display: none;
}

/* timers */

.controls .controls-left .timer {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    color: #fff;
    text-align: center;
    user-select: none;
}

.media_clip .controls .controls-left .timer {
    display: inline-block;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: #fff;
    margin-left: 2px;
    text-align: center;
    user-select: none;
}

/* host upload profile modal  */

.host-upload-profile {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    width: 500px;
    height: 500px;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    display: none;
}
.croppie-container {
    height: auto !important;
}
.croppie-container .cr-slider-wrap {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cr-slider-wrap .cr-slider:focus {
    outline: none !important;
    border: none !important;
}
div.cr-slider-wrap input.cr-slider {
    height: auto !important;
    margin: 0 !important;
}
.croppie-container .cr-boundary {
    background: #623affc4 !important;
    border-radius: 10px !important;
}
div.cr-slider-wrap input.cr-slider::-webkit-slider-thumb {
    background: #725bc9 !important;
}

.host-upload-profile .upload__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    padding: 24px 24px;
}

.host-upload-profile .upload__header .upload__header-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.host-upload-profile .upload__header .upload__header-info h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.3px;
    margin-left: 10px;
}

.host-upload-profile .upload__header .upload__header-info h3 {
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.host-upload-profile .upload__header button {
    height: 44px;
    font-family: 'inter', sans-serif;
    font-size: 14px;
}

.host-upload-profile .upload__dropzone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 483px;
}

.host-upload-profile .upload__dropzone .upload-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
}

.host-upload-profile .upload__dropzone .upload-progress.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.host-upload-profile .upload__dropzone .upload-progress .loading-message {
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #9096a9;
}

.host-upload-profile .upload__dropzone .upload-progress .loading-animation {
    display: inline-block;
    width: 47px;
    height: 47px;
    border: 4px solid #eae2ff;
    border-radius: 50%;
    border-top-color: #725bc9;
    margin-bottom: 20px;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.host-upload-profile .upload__footer {
    width: 100%;
    height: 95px;
    padding: 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.host-upload-profile .upload__footer .tag-icon {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    margin-right: 3px;
}

.host-upload-profile .upload__footer .metadata-input {
    height: 40px;
    width: 180px;
    border: 0;
    font-family: 'inter', sans-serif;
    font-size: 15px;
    letter-spacing: 0.2px;
    color: #3d455f;
    outline: none !important;
    display: inline-block;
}

.host-upload-profile .upload__footer .metadata-input:focus {
    outline: 0 !important;
    border: 0 !important;
}

.host-upload-profile .upload__footer .metadata-input::-webkit-input-placeholder {
    color: #9096a9;
    font-size: 15px;
    letter-spacing: 0;
}

.host-upload-profile .upload__footer .metadata-input::-moz-placeholder {
    color: #9096a9;
    font-size: 15px;
    letter-spacing: 0;
}

.host-upload-profile .upload__footer .metadata-input::-ms-input-placeholder {
    color: #9096a9;
    font-size: 15px;
    letter-spacing: 0;
}

.host-upload-profile .upload__footer .metadata-input::placeholder {
    color: #9096a9;
    font-size: 15px;
    letter-spacing: 0;
}

.host-upload-profile .upload__footer .cancel-button {
    font-family: 'inter', sans-serif;
    width: 74px;
    height: 43px;
    color: #74798d;
    outline: none;
    font-size: 15px;
    background: transparent;
    border: 0;
    margin-right: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.host-upload-profile .upload__footer .cancel-button:hover {
    color: #5c658c;
}

.host-upload-profile .upload__footer .upload-cropped-button:disabled {
    opacity: 0.5;
}

/* host profile  */

.host-profile {
    width: 100%;
}

.host-profile .loader,
.profile-image-modal .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid #725bc9;
    border-bottom-color: transparent;
    border-radius: 50%;
    z-index: 1;
    animation: animateLoader 0.6s linear infinite;
    display: none;
}
@keyframes animateLoader {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.host-profile .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    margin-bottom: 30px;
}

.host-profile .header h2 {
    margin-top: 0;
    color: #3d455f;
}

.host-profile .profile-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}

.host-profile .profile-form #profile-password-input {
    display: none;
}

.host-profile .profile-form .form-left {
    -ms-flex-preferred-size: 480px;
    flex-basis: 480px;
    margin-right: 20px;
}
.host-profile .profile-form .form-right .buttons-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.host-profile .profile-form .form-right .buttons-wrapper #upload-profile-button {
    background-color: #e2f1f8;
    color: #35acce;
    border: none;
}

.host-profile .profile-form .form-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.host-profile .profile-form .form-right .profile-image-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 84px;
    height: 84px;
    overflow: hidden;
    margin-right: 30px;
    border-radius: 500px;
    position: relative;
}

.host-profile .profile-form .form-right .profile-image-wrap .profile-image {
    width: 100%;
}

.host-profile .profile-form .form-right .profile-hint,
.host-profile .profile-form .form-right .file-error {
    text-align: left;
    width: 192px;
    font-size: 14px;
    color: #747991;
    line-height: 1;
}

.host-profile .profile-form .form-right .profile-hint-wrapper {
    margin-bottom: 18px;
}

/*
.host-profile .profile-form .form-right #upload-profile-button {
    font-size: 13px;
    width: 70px;
    padding: 0;
    margin-right: 10px;
    user-select: none;
}
*/
/*
.host-profile .profile-form .form-right #delete-profile-button {
    background-color: #e24f53;
    color: white;
    width: 70px;
    padding: 0;
    user-select: none;
}
*/
.host-profile .profile-form .form-right #delete-profile-button.disabled {
    opacity: 0.2;
    pointer-events: none;
}
.host-profile .profile-form .form-right .file-error {
    font-family: 'inter', sans-serif;
    margin: 0;
    padding: 0;
    margin-bottom: 4px;
    color: #ff5a60;
}

.host-profile .profile-form .form-right .file-error:empty {
    display: none;
}

.host-profile .profile-form .form-right #image-upload {
    display: none;
}

.host-profile .input-wrap {
    position: relative;
    width: 100%;
    margin-top: 5px;
}

.host-profile .input-wrap .profile-input-header {
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-family: 'inter', sans-serif;
    color: #3d455f;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.host-profile .input-wrap .profile-input-header.required:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 20px;
    background: #ff5a60;
}

.host-profile .input-wrap .profile-name-input.form-error {
    background: #f9ebea;
    border: 1px solid #ff5a60;
}

.host-profile .input-wrap .profile-name-input.form-error::-webkit-input-placeholder {
    opacity: 0;
}

.host-profile .input-wrap .profile-name-input.form-error::-moz-placeholder {
    opacity: 0;
}

.host-profile .input-wrap .profile-name-input.form-error::-ms-input-placeholder {
    opacity: 0;
}

.host-profile .input-wrap .profile-name-input.form-error::placeholder {
    opacity: 0;
}

.host-profile .input-wrap .profile-error-msg {
    position: absolute;
    font-family: 'inter', sans-serif;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #ff5a60 !important;
}

.host-profile .input-wrap .profile-error-msg:empty {
    display: none;
}

.host-profile .button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 0px;
}

.host-profile .button-container .change-password {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-decoration: none;
    color: #35acce;
}

.host-profile .button-container .action-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.host-profile .button-container .action-buttons .cancel-button {
    font-family: 'inter', sans-serif;
    width: 74px;
    height: 43px;
    color: #767fa5;
    outline: none;
    font-size: 15px;
    background: transparent;
    border: 0;
    margin-right: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.host-profile .button-container .action-buttons .cancel-button:hover {
    color: #5c658c;
}

.host-profile .button-container .action-buttons .vast-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 160px;
    outline: none;
    text-decoration: none;
}

.host-profile .button-container .action-buttons .vast-button.disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* ssssssssssssssssssssssssssssssss */
.avatar-upload {
    position: relative;
    height: 74px;
    width: 74px;
    margin-bottom: 30px;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: 0;
    z-index: 1;
    bottom: 0;
}
.avatar-upload .avatar-edit label {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}
.avatar-upload .avatar-edit label:after {
    position: absolute;
    top: 1px;
    left: 5px;
    right: 0;
    background-image: url(../assets/camera.svg);
    background-size: 10px 20px;
    display: inline-block;
    width: 10px;
    height: 20px;
    content: '';
}
.avatar-upload .avatar-preview {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 100%;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 4;
}
.avatar-upload .avatar-preview .initials {
    font-size: 20px;
    font-weight: bold;
    color: white;
    font-family: 'inter';
}
.avatar-upload .avatar-preview img {
    height: 100%;
    width: 100%;
}

.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.studio-sidebar__layouts-container .avatar-placeholder {
    transform: translate(-50%, -50%) !important;
    height: 43px;
    width: 43px;
    z-index: 999;
}
.studio-sidebar__layouts-container .avatar-placeholder img {
    border-radius: 50%;
    height: 100%;
    width: 100%;
}

/* color picker */
#color_picker {
    display: none;
    position: absolute;
    top: 50px;
    z-index: 5;
}

#background_color_picker {
    display: none;
    position: absolute;
    top: 50px;
    z-index: 5;
}

/* settings modal */

.settings-container .tabs-wrapper {
    width: 100%;
    padding: 10px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
    display: flex;
    justify-content: center;
    align-content: center;
    position: relative;
}
.tab-contents {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: 2.5rem;
    padding: 0 40px;
}
.profile-tab-content {
    margin-top: 0;
}
.tab-contents:not(.active) {
    display: none;
}

.content {
    display: none;
}

#settingsContainer.active {
    display: flex;
}

.settings-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 500px;
    background: white;
    z-index: 9999;
    -webkit-box-shadow: 0px 2px 40px -15px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 2px 40px -15px rgba(0, 0, 0, 0.4);
    display: none;
    border-radius: 10px;
    padding: 0;
    justify-content: flex-start;
}

.tabs {
    display: flex;
    position: relative;
    background-color: #725bc9;
    box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    align-items: center;
    transform: scale(0.8);
}
.tabs * {
    z-index: 2;
}

input[type='radio'] {
    display: none;
}

.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 200px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
    color: white;
}

input[type='radio']:checked + label {
    color: #185ee0;
}

input[id='radio-1']:checked ~ .glider {
    transform: translateX(0);
    --startX: 0px;
}

input[id='radio-2']:checked ~ .glider {
    transform: translateX(100%);
    --startX: 200px;
}

input[id='radio-3']:checked ~ .glider {
    transform: translateX(200%);
    --startX: 400px;
}

input[id='radio-4']:checked ~ .glider {
    transform: translateX(300%);
    --startX: 600px;
}

.glider {
    position: absolute;
    display: flex;
    height: 32px;
    width: 200px;
    background-color: #e6eef9;
    z-index: 1;
    border-radius: 50px;
    transition: 0.25s ease-out;
}

@-webkit-keyframes right {
    0% {
        width: 200px;
        transform: translateX(calc(var(--startX) - (200px * (var(--diff) - 1))));
    }
    50% {
        width: calc(200px * var(--diff));
        transform: translateX(var(--right));
    }
    100% {
        width: 200px;
        transform: translateX(var(--startX));
    }
}
@-webkit-keyframes left {
    0% {
        width: 200px;
        transform: translateX(calc(var(--startX) + (200px * (var(--diff) - 1))));
    }
    50% {
        width: calc(200px * var(--diff));
        transform: translateX(var(--startX));
    }
    100% {
        width: 200px;
        transform: translateX(var(--startX));
    }
}
.tabs {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.settingsModalCloseButton {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
}

.settings-container #studio-avsettings {
    width: 75%;
}
.settings-container #studio-avsettings .settings-input-header.microphone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.settings-container #studio-avsettings .settings-input-header.microphone .volume-meter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.settings-container #studio-avsettings .settings-input-header.microphone .volume-meter div {
    width: 5px;
    height: 5px;
    background: #d2d5d9;
    margin: 0 1px;
    border-radius: 500%;
}
.settings-container #studio-avsettings .settings-input-header.audio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.settings-container #studio-avsettings .settings-input-header.audio .test-button {
    cursor: pointer;
}
.settings-container #studio-avsettings .settings-input-header.audio .test-button svg {
    display: inline-block;
}
.settings-container #studio-avsettings .settings-input-header.audio .test-button .play,
.settings-container #studio-avsettings .settings-input-header.audio .test-button .pause {
    pointer-events: none;
}
.settings-container #studio-avsettings .settings-input-header.audio .test-button .pause {
    display: none;
}
.settings-container #studio-avsettings .settings-input-header.audio .test-button.active .play {
    display: none;
}

.settings-container .profile-image {
    width: 80px;
}

.settings-container .user-name {
    font-weight: bold;
    font-size: 18px;
    color: #0000007d;
}
.settings-container .action-buttons {
    margin-top: 1rem;
}
/*
.settings-container #upload-profile-button {
    font-size: 13px;
    width: 70px;
    padding: 0;
    margin-right: 10px;
    user-select: none;
}
*/
.settings-container .upload__footer {
    width: 100%;
    height: 80px;
    padding: 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    align-items: center;
    justify-self: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.settings-container .upload__footer .cancel-button {
    font-family: 'inter', sans-serif;
    width: 74px;
    height: 43px;
    color: #74798d;
    outline: none;
    font-size: 15px;
    background: transparent;
    border: 0;
    margin-right: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.settings-container .upload__footer .cancel-button:hover {
    color: #5c658c;
}

.settings-container .input-wrap .profile-error-msg {
    position: absolute;
    font-family: 'inter', sans-serif;
    bottom: -10px;
    left: 0;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #ff5a60 !important;
}

.settings-container .profile-hint,
.settings-container .user-file-error {
    text-align: center;
    width: 192px;
    font-size: 14px;
    color: #747991;
    margin-top: 10px;
}
/*
.settings-container #delete-profile-button {
    background-color: #e24f53;
    color: white;
    width: 70px;
    padding: 0;
    user-select: none;
}
*/
.settings-container #delete-profile-button.disabled {
    opacity: 0.2;
    pointer-events: none;
}
/* slide menu */
.rotate {
    transform: translateY(-50%) rotate(-90deg);
}

.stage-sidebar-slide-menu {
    position: absolute;
    display: flex;
    padding: 3px 5px;
    padding-bottom: 0px;
    width: 60px;
    background: transparent;
    border: 0px;
    outline: 0;
    position: absolute;
    top: 48%;
    cursor: pointer;
    left: -36px;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.stage-sidebar-slide-menu svg.slide__menu-right-arrow {
    height: 10px;
    width: 10px;
    transform: rotate(90deg);
}
.stage-sidebar-slide-menu.private svg.slide__menu-right-arrow {
    fill: white;
}
button.stage-sidebar-slide-menu:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: white;
    transform: perspective(12px) rotateX(17deg);
    border-radius: 6px 6px 0 0;
}
button.stage-sidebar-slide-menu.private:before {
    background: #1d2939;
}

@media only screen and (max-width: 1280px) {
    .studio-stage__webcam-container,
    .studio-stage__footer {
        width: 92%;
    }
    .sidebar_closed .studio-stage__webcam-container,
    .sidebar_closed .studio-stage__footer {
        width: 63%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1500px) {
    .sidebar_closed .studio-stage__webcam-container,
    .sidebar_closed .studio-stage__footer {
        width: 77%;
    }
}

.event-style-collection {
    /* margin-top: 15px; */
    margin-bottom: 15px;
    text-align: left;
}

.event-style-collection select {
    margin-bottom: 0;
    width: calc(100% - 143px);
    text-overflow: ellipsis;
}
.event-style-collection .settings-select-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
}
.event-style-collection button {
    height: 42px;
    position: relative;
    -webkit-transition-property: none;
    -moz-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
}

.event-style-collection .loader {
    position: absolute;
    top: 41px;
    left: 310px;
    /* transform: translate(-50%, -50%); */
    width: 30px;
    height: 30px;
    border: 4px solid #725bc9;
    border-bottom-color: transparent;
    border-radius: 50%;
    z-index: 1;
    animation: animateLoader 0.6s linear infinite;
    display: none;
}

.not-sortable {
    cursor: default !important;
}

.settings-input-container .video-background {
    margin-bottom: 16px !important;
}

.carousel-container {
    display: flex;
    justify-content: center;
    margin: 10px;
    max-height: 74px;
}

.carousel {
    width: 300px;
    margin: 0 auto;
}

.carousel .slick-slide {
    width: 96px;
    height: 54px;
    background-size: cover;
    background-position: center;
    border: 1px solid transparent;
    margin: 0 5px;
    cursor: pointer;
}

.slick-prev,
.slick-next {
    background-color: white !important;
    border: none;
    padding: 5px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #a9a9a9 !important;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.carousel img {
    width: 100%;
    border: 2px solid transparent; /* Set initial border color */
    transition: border-color 0.3s ease; /* Add a transition for smooth effect */
}

.carousel img.selected {
    border-color: #007bff; /* Set the border color for the selected image */
}

#imgModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 10px;
    z-index: 5;
    display: none;
}
#imgModal > * {
    width: 100%;
    height: 100%;
}
#imgModal img {
    object-fit: contain;
}
.modal-content {
    width: 100%;
    height: 100%;
}
.modal-body {
    background-color: #c7cdd6;
    width: 100%;
    height: 100%;
}
#imgModal img,
#imgModal video {
    width: 100%;
    height: 100%;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid #725bc8;
    border-bottom-color: transparent;
    border-radius: 50%;
    z-index: 1;
    animation: animate 0.6s linear infinite;
    display: none;
}

#drawingCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.dropzone {
    min-height: 0;
    border: none;
    background: none;
    padding: 0;
}
.dz-default.dz-message {
    display: none;
}
.previews-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 60%;
    margin: 0;
}
.dropzone .dz-preview {
    width: 100%;
    margin: 0;
    display: flex;
    padding: 16px;
    gap: 10px;
    min-height: 0;
}
.dropzone .dz-preview.error {
    background-color: #fffbfa;
}
.dropzone .dz-preview .try-again-link {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #b42318;
    cursor: pointer;
}
.dropzone .dz-preview .try-again-link:hover {
    color: #b42318;
}
.dropzone .dz-preview .preview-main {
    flex: 1;
}
.dropzone .dz-preview .preview-main .upload-failed-message {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #b42318;
}

.dropzone .dz-preview .preview-status-icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.dropzone .dz-preview .preview-status {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.dropzone .dz-preview .preview-status .status {
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
}
.preview-status .progress-count {
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    color: #344054;
    margin-top: 16px;
}
/* hide image previews */
.dropzone .dz-preview.dz-image-preview {
    display: none;
    width: 100%;
}

.dropzone .dz-preview .dz-progress .progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease-in-out;
    background-color: #4caf50;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none;
}
.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 1 !important;
}
.dropzone .dz-preview .dz-progress .dz-upload {
    background: #5e52a9;
}

.dropzone .dz-preview .dz-progress {
    position: unset;
    width: 100%;
    margin: 0;
    height: 8px;
    background-color: #eaecf0;
}
.dropzone .dz-preview.dz-error .dz-error-mark {
    display: none;
}
.dropzone .dz-preview .dz-error-message {
    display: none;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 0;
}

.dropzone .dz-preview .dz-details {
    position: unset;
    padding: 0;
    text-align: left;
}
.dropzone .dz-preview .remove-file {
    cursor: pointer;
}
.dropzone .dz-preview .dz-details .dz-size,
.dropzone .dz-preview .dz-details .dz-size strong {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span,
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: none;
}

.dropzone .dz-preview .dz-details .dz-filename span {
    padding: 0;
}
.dropzone .dz-preview .dz-details .dz-filename.error {
    color: #d92d20;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}
.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 12px;
}
.dz-remove.error svg path {
    stroke: #b42318;
}
@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.modal__content.asset-upload .error-message {
    color: red;
    display: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}

input.asset-checkbox {
    visibility: hidden;
    position: relative;
    bottom: 2px;
    cursor: pointer;
    margin-right: 20px;
}
input.asset-checkbox[type='checkbox']:after {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    width: 20px;
    height: 20px;
    background: #f2f4f7;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
}

input.asset-checkbox[type='checkbox']:checked:after {
    background: url(/assets/checkbox_tick_icon.svg), #d9d6ee;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #5e52a9;
    box-shadow: 0px 0px 0px 4px #f4ebff;
}

/* dropdown on 3 dots for asset library */
.dropdown {
    position: relative;
    display: flex;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    height: 32px;
    width: 32px;
}

.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.dot {
    width: 4px;
    height: 4px;
    margin: 0 2px;
    border-radius: 50%;
    background-color: #000;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    z-index: 1;
    min-width: 240px;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border: 1px solid #eaecf0;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    border-radius: 8px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: flex;
    padding: 12px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    text-decoration: none;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    gap: 5px;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

/* thumbnail preview  */
.table-row .thumbnail-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.table-row .thumbnail-container .image-preview {
    position: relative;
}

.table-row .thumbnail-container .tooltip {
    position: absolute;
    top: -60px;
    left: calc(100% + 10px);
    z-index: 1;
    display: none;
    transition: opacity 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px;
    width: 260px;
    height: 173px;
    background: #101828;
    border-radius: 8px;
}
.table-row .thumbnail-container .tooltip.logo {
    height: 192px;
    width: 173px;
}
.table-row .thumbnail-container .tooltip::before {
    content: '';
    position: absolute;
    top: var(--pseudo-top);
    left: -8px;
    margin-top: var(--pseudo-margin-top);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 15px solid #101828;
    border-bottom: 15px solid transparent;
}
.table-row .thumbnail-container .tooltip video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.table-row .thumbnail-container .tooltip img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.table-row .thumbnail-container .tooltip .loader {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    border-bottom-color: transparent;
    border-radius: 50%;
    z-index: 1;
    animation: animate 0.6s linear infinite;
    display: none;
}
.table-row .thumbnail-container .tooltip .tooltip-asset-name {
    display: block;
    font-size: 12px;
    line-height: 18px;
    width: 100%;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.table-row .thumbnail-container .image-thumbnail {
    width: 100%;
}

.table-row .thumbnail-container .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom select styles */
.custom-select {
    position: relative;
    font-size: 16px;
    gap: 8px;
    width: 40%;
    height: 44px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
}

.custom-select .select-box {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
    background-repeat: no-repeat;
}

.custom-select .selected-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    height: 100%;
}

.custom-select .selected-option span {
    margin-right: 5px;
    pointer-events: none;
}

.custom-select .options {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
}

.custom-select .option {
    padding: 10px;
    cursor: pointer;
}
.options.visible {
    display: block;
}
.options.visible::-webkit-scrollbar-thumb {
    background: #c4c3c3;
    border-radius: 500px;
    border: 1px solid #c4c3c3;
}
.custom-select .option:hover {
    background-color: #5e52a9;
    color: #fff;
}

.custom-select .option.selected {
    position: relative;
    background-image: url('../assets/tick_icon.svg');
    background-position: calc(100% - 16px) center;
    background-repeat: no-repeat;
}

.custom-select .option.selected:hover::after {
    color: #fff;
}

/* name size range slider  */
.range-slider__container {
    padding: 25px;
    /* background-color: #1d215b; */
    background-color: transparent;
    border: solid 2px #c7cdd6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    align-items: center;
    width: 300px;
    user-select: none;
}
.range-slider__container .scales {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.range-slider__container .scales span[data-scale] {
    /* color: #e1e1e1; */
    color: #6d6d6d;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}
.range-slider__container .scales span[data-scale='3'] {
    margin-right: 0px;
}
.range-slider__container .scales span[data-scale]:hover {
    color: #9146ff;
    transition: all 0.2s ease-out;
}
.range-slider__container .scales span[data-scale]:active {
    transition: all 0.2s ease-in-out;
}
.range-slider__container .scales span[data-scale].active {
    color: #9146ff;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}
.range-slider__container .range-slider {
    position: relative;
    width: 100%;
}

.range-slider__container .range-slider_input {
    width: 100%;
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}

.range-slider__container .range-slider_input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 15px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
}

.range-slider__container .range-slider_input::-moz-range-thumb {
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
}

.range-slider__container .range-slider_thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #715cc9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #303030;
    z-index: 2;
    cursor: pointer;
    transition: left 0.1s ease;
}
.range-slider__container .range-slider_thumb:active {
    background-color: #715cc9;
}

.range-slider__container .range-slider_line {
    height: 4px;
    width: 100%;
    background-color: #e2e8eb;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    transition: width 0.1s ease;
    border-radius: 10px;
}

.range-slider_line-fill {
    border-radius: 10px;
    position: absolute;
    height: 4px;
    width: 0;
    background-color: #715cc9;
    cursor: pointer;
    transition: width 0.1s ease;
}
.live-countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 0, 36, 1) 0%, rgba(201, 77, 151, 1) 31%, rgba(0, 200, 255, 1) 78%);
    z-index: 99;
    color: white;
    font-family: Inter;
}

.live-countdown-wrapper #countdown {
    /* position: absolute;
    left: 50%;
    top: 50%;
    display: inline-block;
    transform: translate(-50%, -50%); */
    transition: 1s;
    font-size: 0vw;
    opacity: 50%;
    color: #fff;
}

/* Tooltip container */
.microphone-container .tooltip {
    position: relative;
    display: inline-block;
    margin-top: 50px;
}

/* Tooltip text */
.microphone-container .tooltip .tooltiptext {
    visibility: hidden;
    min-width: 330px; /* Adjust the minimum width */
    max-width: 330px; /* Adjust the maximum width */
    background-color: #000000ba; /* Background color */
    color: #fff;
    text-align: left; /* Align content to the left */
    border-radius: 8px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    margin-top: 5px;
    top: 100%; /* Position below the button */
    left: 50%;
    transform: translateX(-16.5%); /* Center the tooltip horizontally */
    opacity: 0;
    transition: opacity 0.3s;
    text-overflow: ellipsis;
}

/* Larger font size for specific element */
.microphone-container .tooltip .tooltiptext p:first-child {
    font-size: 16px;
}

.microphone-container .tooltip .tooltiptext p:not(:first-child) {
    font-size: 14px;
}

.microphone-container .tooltip .tooltiptext label {
    font-size: 12px;
}

/* Tooltip arrow */
/*
.microphone-container .tooltip .tooltiptext::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 49%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #000000ba transparent;
}
*/

/* Close button */
.microphone-container .tooltip .close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    color: #fff;
}

.microphone-checkbox-wrapper {
    display: flex;
    flex: 0.2;
    cursor: pointer;
}
.microphone-container input.microphone-checkbox {
    visibility: hidden;
    position: relative;
    bottom: 2px;
    cursor: pointer;
    width: 25px;
}
.microphone-container input.microphone-checkbox[type='checkbox']:after {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    width: 20px;
    height: 20px;
    background: #f2f4f7;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
}

.microphone-container input.microphone-checkbox[type='checkbox']:checked:after {
    background: url(/assets/checkbox_tick_icon.svg), #d9d6ee;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #5e52a9;
}

.allow-cam-mic-access-container,
.permissions-denied-in-browser-container,
.mic-blocked-in-browser-container {
    margin: auto;
    width: 100%;
    max-width: 500px;
    margin-top: 80px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    background-color: #fafbfc;
}

.allow-cam-mic-access-container .actions-wrapper {
    margin-top: 14px;
    text-align: center;
}

.cam-mic-blocked-container {
    height: 100vh;
    padding: 2rem;
    /* margin-bottom: 2rem; */
}

body::-webkit-scrollbar {
    width: 7px;
    height: 2rem;
}
body::-webkit-scrollbar-track {
    background: none;
}
body::-webkit-scrollbar-thumb {
    background: #c4c3c3;
    border-radius: 500px;
    border: 1px solid #c4c3c3;
}

.modal__content.record-live-modal {
    width: 400px;
    padding: 24px;
    flex-direction: column;
    gap: 15px;
    font-family: 'Inter';
}
.modal__content.record-live-modal .close_button {
    position: absolute;
    right: 5%;
    top: 5%;
    cursor: pointer;
}
.modal__content.record-live-modal .heading {
    font-family: 'Inter';
    color: #3d455f;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}
.modal__content.record-live-modal .sub-heading {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #74798d;
    padding-top: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}
.modal__content.record-live-modal .buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
}
.modal__content.record-live-modal .buttons button {
    flex-grow: 1;
}
.modal__content.record-live-modal .buttons button:focus {
    outline: none;
}

.modal__content.record-live-end-modal {
    width: 400px;
    padding: 24px;
    flex-direction: column;
    gap: 15px;
    font-family: 'Inter';
}
.modal__content.record-live-end-modal .close_button {
    position: absolute;
    right: 5%;
    top: 5%;
    cursor: pointer;
}
.modal__content.record-live-end-modal .heading {
    font-family: 'Inter';
    color: #3d455f;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}
.modal__content.record-live-end-modal .sub-heading {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #74798d;
    padding-top: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

#btnLogin .sign-in-loader {
    position: absolute;
    /* left:50%;
    top:50%;
    transform: translate(-50%,-50%); */
    color: #fff;
    width: 2px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
    transform: translateX(-38px);
    animation: l21 0.5s infinite alternate linear;
    display: none;
}

@keyframes l21 {
    50% {
        box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px;
    }
    100% {
        box-shadow: 19px 0 0 0, 38px 0 0 3px, 57px 0 0 7px;
    }
}

.record-mode-exit-modal,
.studio-exit-modal {
    width: 450px;
}

/* .recording-success-modal{
    width: 22rem;
} */

.studio-header__recording-exit-btn {
    height: 47px;
    width: 135px;
    margin-left: 10px;
    cursor: pointer;
}

.input-with-button-container {
    display: flex;
}
.input-with-button-container input {
    display: flex;
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    border-radius: 8px 0px 0px 8px;
    border-top: 1px solid var(--Gray-300, #d0d5dd);
    border-bottom: 1px solid var(--Gray-300, #d0d5dd);
    border-left: 1px solid var(--Gray-300, #d0d5dd);
    border-right: none;
    background: var(--Gray-50, #f9fafb);
    flex: 1 0 0;
    color: var(--Gray-500, #667085);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.input-with-button-container button {
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 0px 8px 8px 0px;
    border: 1px solid var(--Gray-300, #d0d5dd);
    background: var(--Base-White, #fff);
    cursor: pointer;
    color: var(--Gray-700, #344054);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

#recording-timer {
    color: #e34e53;
    width: 80px;
}

/* Styles for the custom context menu */
.removebtn-context-menu {
    display: none;
    position: fixed;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.removebtn-context-menu-item {
    padding: 2px 2px;
    cursor: pointer;
}

.removebtn-context-menu-item:hover {
    background-color: #f0f0f0;
}

/* Avatar Status Modal Styles */
.avatar-status-modal {
    display: none;
    position: fixed;
    
    width: 100%;
 
     
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.avatar-status-modal h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #3d455f;
}

.avatar-status-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.status-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.status-step.current {
    opacity: 1;
    background: rgba(114, 91, 201, 0.1);
}

.status-step.completed {
    opacity: 1;
    background: rgba(76, 175, 80, 0.1);
}

.status-step.error {
    opacity: 1;
    background: rgba(244, 67, 54, 0.1);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.step-text {
    font-size: 14px;
    color: #3d455f;
    font-weight: 500;
}

.spinnerx {
    width: 16px;
    height: 16px;
    border: 2px solid #e0e0e0;
    border-top: 2px solid #725bc9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.checkmark {
    color: #4caf50;
    font-size: 16px;
    font-weight: bold;
}

.error-icon {
    color: #f44336;
    font-size: 16px;
    font-weight: bold;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-replica-modal {
    height:100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.avatar-replica-modal__content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.avatar-replica-modal__header {
    
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.avatar-replica-modal__title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
}

.avatar-replica-modal__subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.avatar-replica-modal__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    color: #6b7280;
}

.avatar-replica-modal__close:hover {
    background: #f3f4f6;
}

.avatar-replica-modal__loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    flex-direction: column;
    gap: 16px;
}

.avatar-replica-modal__loading .spinnera {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #685BBC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.avatar-replica-modal__error {
    text-align: center;
    padding: 40px;
    color: #dc2626;
}

.avatar-replica-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 16px 0;
    min-height: 300px;
}

.avatar-replica-item {
    flex: 0 0 240px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .avatar-replica-item:hover {
        border-color: #685BBC;
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(104, 91, 188, 0.15);
    }

    .avatar-replica-item.selected {
        border-color: #685BBC;
        background: #f3f1ff;
        box-shadow: 0 4px 20px rgba(104, 91, 188, 0.2);
    }

.avatar-replica-item__video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #000;
}

.avatar-replica-item__video-placeholder {
    width: 100%;
    height: 180px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
}

    .avatar-replica-item__video-placeholder.loading {
        background: #000;
    }

    .avatar-replica-item__video-placeholder .spinner-small {
        width: 24px;
        height: 24px;
        border: 2px solid #374151;
        border-top: 2px solid #685BBC;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

.avatar-replica-item__info {
    padding: 16px;
}

.avatar-replica-item__name {
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 8px;
}

.avatar-replica-item__status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
}

    .avatar-replica-item__status.ready {
        background: #d1fae5;
        color: #065f46;
    }

    .avatar-replica-item__status.processing {
        background: #fef3c7;
        color: #92400e;
    }

    .avatar-replica-item__status.error {
        background: #fee2e2;
        color: #991b1b;
    }

.avatar-replica-item__created {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

.avatar-replica-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.avatar-replica-modal__button {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.avatar-replica-modal__button--secondary {
    background: #f3f4f6;
    color: #374151;
}

    .avatar-replica-modal__button--secondary:hover {
        background: #e5e7eb;
    }

.avatar-replica-modal__button--primary {
    background: #685BBC;
    color: white;
}

    .avatar-replica-modal__button--primary:hover {
        background: #5a4da7;
    }

    .avatar-replica-modal__button--primary:disabled {
        background: #d1d5db;
        cursor: not-allowed;
    }

.avatar-replica-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.avatar-replica-empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    opacity: 0.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .avatar-replica-modal__content {
        width: 95%;
        padding: 16px;
        margin: 10px;
    }

    .avatar-replica-carousel {
        flex-direction: column;
        align-items: center;
    }

    .avatar-replica-item {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
}