#logo-svg:hover {
    cursor: pointer;
}


@keyframes loader-animation {
    0% {
        left: 0%;
        width: 0%;
    }
    25% {
        left: 0%;
        width: 100%;
    }
    49% {
        left: 100%;
        width: 0%;
    }
    50% {
        left: 100%;
        width: 0%;
    }
    75% {
        left: 0%;
        width: 100%;
    }
    100% {
        left: 0%;
        width: 0%;
    }
}


.wait-search-popup {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    color: #FFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0E0E0E;
    height: 32px;
    font-size: 14px;
    padding: 7px 10px 0px 10px;
    text-align: center;
    z-index: -1;
    transition: opacity 2s ease-in-out;
    opacity: 0;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: lowercase;
    border: 2px solid #FFF;
}


.wait-search-popup.show-popup {
    opacity: 1;
    z-index: 6;
}


.wait-search-popup-mask {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: -1;
}

.wait-search-popup-mask.show-popup {
    opacity: 1;
    z-index: 6;
}


.wait-search-popup .loader {
    width: 100%;
    height: 4px;
}


.wait-search-popup .loader .bar {
    width: 30%;
    position: absolute;
    height: 4px;
    background-color: #8E8E8E;
    animation-name: loader-animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: opacity 0.5s ease-in-out;
    border-radius: 4px;
}


.page-mask {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 3;
}

.registration-popup {
    font-family: 'Nexa Rust Sans', sans-serif;
    display: none;
    flex-direction: column;
    position: fixed;
    color: #929292;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0E0E0E;
    /* height: 150px; */
    width: 340px;
    padding: 7px 10px 30px 10px;
    align-items: center;
    text-align: center;
    z-index: 7;
    border: 2px solid #FFF;
}

.registration-popup .registration-popup-span-container {
    display: none;
    font-size: 12px;
}


.registration-popup .registration-popup-close-contaiter {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    color: #262626;
    margin-bottom: 15px;
}

.registration-popup .registration-popup-close-contaiter i {
    color: #FFF;
}

.registration-popup .registration-popup-close-contaiter i:hover {
    cursor: pointer;
}


.registration-popup .registration-popup-google-button:hover {
    cursor: pointer;
}


.registration-popup .registration-popup-google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0E0E0E;
    height: 48px;
    color: #E2B10A;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    width: 80%;
    padding: 0 8px;
    margin-top: 24px;
    border: 1px solid #E2B10A;
}


.registration-popup .registration-popup-google-button svg {
    margin-right: 8px;
}


.registration-popup input {
    background: #0E0E0E;
    height: 48px;
    width: 80%;
    border: 1px solid #E2B10A;
    margin: 5px 0;
    padding: 0 0 0 16px;
    font-family: 'Nexa Rust Sans', sans-serif;
    color: #FFF;
}


.registration-popup input:focus {
    outline: none;
}

.registration-popup input:-webkit-autofill {
    background: #0E0E0E !important;
    color: #FFF !important;
    -webkit-box-shadow: 0 0 0px 1000px #0E0E0E inset !important;
}

.registration-popup input:-webkit-autofill:focus {
    background: #0E0E0E !important;
    color: #FFF !important;
    -webkit-box-shadow: 0 0 0px 1000px #0E0E0E inset !important;
}

.registration-popup input:-webkit-autofill::first-line {
    color: #FFF !important;
}


.registration-popup input:-moz-autofill {
    background: #0E0E0E !important;
    color: #FFF !important;
}

.registration-popup input:-moz-autofill:focus {
    background: #0E0E0E !important;
    color: #FFF !important;
}

.registration-popup input:-moz-autofill::first-line {
    color: #FFF !important;
}




.registration-popup #signin-button {
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E2B10A;
    height: 48px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    width: 80%;
    padding: 0 8px;
    margin-top: 10px;
    border: 1px solid #E2B10A;

}

.registration-popup #signin-button:hover {
    cursor: pointer;
}


.sign-in-error {
    animation: horizontal-shaking 0.4s;
}


.invite-error {
    animation: horizontal-shaking 0.4s;
}


@keyframes horizontal-shaking {
    0% { transform: translateX(0) }
    25% { transform: translateX(5px) }
    50% { transform: translateX(-5px) }
    75% { transform: translateX(5px) }
    100% { transform: translateX(0) }
}


.registration-popup .or .or-line {
    width: 40%;
}

.registration-popup .or .or-text {
    font-size: 10px;
    width: 20%;
}

.registration-popup .or .or-line hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}


.registration-popup .or {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    padding: 0 4px;
    margin-top: 10px;
    /* font-family: Helvetica Neue; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}


.registration-popup .forgot-password {
    /* font-family: Helvetica Neue; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-top: 15px;
    text-decoration: underline;
}

.registration-popup .forgot-password:hover {
    cursor: pointer;
}

.registration-popup .agree-with-pp-tac {
    padding: 0 34px;
    margin-top: 32px;
    /* font-family: Helvetica Neue; */
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
}

.registration-popup .agree-with-pp-tac a {
    text-decoration: underline;
    color: #929292;
}

.registration-popup .signup-container-top {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.registration-popup .ask-login {
    display: none;
    margin-bottom: 24px;
}   

.registration-popup .signup-container-top .already-have-account {
    width: 80%;
    padding: 32px 0 0 0;
    margin: 24px 0 16px 0;
    border-top: 1px solid #ccc;
}


.registration-popup .signup-container-bottom {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0 20px 0;
    width: 100%;
}

.registration-popup .signup-container-bottom .dont-have-account {
    width: 80%;
    padding: 32px 0 0 0;
    border-top: 1px solid #ccc;
}

.registration-popup .registration-popup-google-button:nth-child(2) {
    margin-top: 16px;
    color: #000000;
    background: #E2B10A;
    border: 1px solid #E2B10A;
}


.forgot-password-popup {
    font-family: 'Nexa Rust Sans', sans-serif;
    display: none;
    flex-direction: column;
    position: fixed;
    color: #929292;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    width: 300px;
    padding: 7px 10px 40px 10px;
    align-items: center;
    text-align: center;
    z-index: 7;
    border: 2px solid #FFF;
}

.forgot-password-popup i {
    color: #FFF;
}

.forgot-password-popup input {
    height: 20px;
    width: 80%;
    background: #0C0C0C;
    border: 1px solid #E2B10A;
    color: #FFF;
    font-family: 'Nexa Rust Sans', sans-serif;
    margin: 10px 0;
    padding: 10px 0 10px 16px;
}

.forgot-password-popup input:focus {
    outline: none;
}


.forgot-password-popup .forgot-password-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E2B10A;
    height: 42px;
    color: #0C0C0C;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    width: 80%;
    padding: 0 8px;
}

.forgot-password-popup #forgot-password-button-text i{
    color: #0C0C0C;
}


.forgot-password-popup #forgot-password-button-text {
    margin-left: 6px;
    transition: opacity 0.2s ease-in-out;
}

.forgot-password-popup #forgot-password-button-text.sent {
    opacity: 0;
}


.forgot-password-popup .forgot-password-button:hover {
    cursor: pointer;
}

.forgot-password-popup .forgot-password-popup-close-contaiter {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    color: #262626;
    margin-bottom: 15px;
}

.forgot-password-popup .forgot-password-popup-close-contaiter i:hover {
    cursor: pointer;
}

.get-free-queries-popup {
    font-family: 'Nexa Rust Sans', sans-serif;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 80%;
    max-width: 432px;
    padding: 24px 24px 24px 25px;
    align-items: center;
    z-index: 7;

    color: #818181;
    text-align: center;
    /* font-family: Helvetica Neue; */
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}


.get-free-queries-popup h2 {
    color: #FFF;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}


.get-free-queries-popup #get-free-queries-popup-close {
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -22px;
    width: 100%;
    height: 16px;
}


.get-free-queries-popup svg {
    cursor: pointer;
} 


.get-free-queries-popup .invite-link {
    width: 100%;
    height: 48px;
    border-radius: 2px;
    background: #0E0E0E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    border: 1px solid #303030;
    font-family: Roboto;
    font-size: 14px;
} 


.get-free-queries-popup .copy-invite-link {
    width: 100%;
    height: 48px;
    border-radius: 2px;
    background: #E2B10A;
    color: #0E0E0E;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Dirty Headline', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: none;
    cursor: pointer;
}


.get-free-queries-popup .copy-message {
    color: #7f7f7f; /* Green color for success message */
    font-size: 10px;
    margin: 8px 0 12px 0;
    height: 15px;
    opacity: 0;
}


#account-settings {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 80%;
    max-width: 356px;
    padding: 24px 24px 24px 25px;
    align-items: center;
    z-index: 7;
    color: #818181;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}

.settings-user-card {
    margin: 0 32px 24px 32px;
    display: flex;
    width: 90%;
    flex-direction: column;
    background: #131417;
    padding: 16px 16px 4px 16px;
    border-radius: 2px;
    text-align: center;
}

.settings-user-card span {
    color: #818181;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; 
    margin: 0 0 4px 0;
}

.settings-user-card #settings-product-name {
    color: #E2B10A;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    margin: 0 0 8px 0;
}

.settings-user-card .user-card-sep {
    height: 1px;
    background: #292B2F;
    margin: 0 16px 8px 0;
}

.settings-user-card .user-card-cancel-subscription-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.settings-user-card #cancel-subscription {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    text-decoration-line: underline;
    cursor: pointer;
}


.settings-user-card .canceled-hint {
    color: #7f7f7f;
    font-size: 12px;
    opacity: 0;
    margin-top: 4px;
}


#account-settings h2 {
    color: #FFF;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}


#account-settings #account-settings-email {
    font-size: 14px;
    color: #FFF;
    margin: 8px 0 16px 0;
}


#account-settings-close {
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -20px;
    width: 100%;
    height: 16px;
}


#account-settings svg {
    cursor: pointer;
} 


#account-settings #get-receipt-button {
    margin-top: 22px;
    font-size: 12px;
    color: #FFF;
    text-decoration: underline;
    cursor: pointer;
}


#team-members {
    display: none;
    width: 100%;
    margin: 24px 0 0 0;
    flex-direction: column;
    align-items: center;
}


#team-members .team-members-title {
    color: #E2B10A;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    margin: 0 0 8px 0;
}

#team-members-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
    max-height: 188px;
    overflow-y: scroll;
}


#team-members-list::-webkit-scrollbar {
    width: 4px;
    background-color: #0E0E0E;
}


#team-members-list::-webkit-scrollbar-thumb {
    background-color: #FFF;
}


#team-members-list .team-member {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px 4px 8px;
    border-radius: 16px;
    height: 22px;
    color: #FFF;
    font-size: 10px;
    font-weight: 400;
    background: #0C0C0C;
    border: 1px solid #FFF;
}


#team-members-list .team-member svg {
    margin: 4px 0 0 4px;
    height: 12px;
}


#team-member-add {
    text-transform: unset;
    margin: 8px 0 0 0;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 3px 8px;
    border-radius: 16px;
    height: 22px;
    color: #E2B10A;
    font-size: 14px;
    font-weight: 400;
    background: #0C0C0C;
    border: 1px solid #E2B10A;
    width: fit-content;
    cursor: pointer;
}


#team-member-add-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 80%;
    max-width: 432px;
    padding: 24px 24px 24px 25px;
    align-items: center;
    z-index: 7;
    color: #818181;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}

#team-member-add-popup h2 {
    color: #FFF;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}


#team-member-add-popup-close {
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -20px;
    width: 100%;
    height: 16px;
}


#team-member-add-popup svg {
    cursor: pointer;
} 


#team-member-add-popup span {
    font-size: 10px;
    display: flex;
    width: 100%;
    margin-bottom: 16px;
    justify-content: center;
}

#team-member-add-popup #team-member-invite-url {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818181;
    background-color: #0C0C0C;
    height: 48px;
    border: 1px solid #303030;
    font-size: 10px;
}


#team-member-add-popup input {
    font-family: 'Nexa Rust Sans', sans-serif;
    width: calc(100% - 5px);
    text-align: center;
    font-size: 14px;
    color: #929292;
    background-color: #0E0E0E;
    height: 48px;
    border: none;
    margin-bottom: 16px;
    border: 1px solid #E2B10A;
}

#team-member-add-popup input:focus {
    outline: none;
}


#team-member-add-popup #send-team-member-invite {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E0E0E;
    background-color: #E2B10A;
    height: 48px;
    cursor: pointer;

}


#team-member-remove-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 80%;
    max-width: 356px;
    padding: 24px 24px 24px 25px;
    align-items: center;
    z-index: 7;
    color: #818181;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}


#team-member-remove-popup h2 {
    color: #FFF;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}


#team-member-remove-popup .team-member-remove-msg {
    display: flex;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 3px;
}


#team-member-remove-popup svg {
    cursor: pointer;
}


#team-member-remove-popup-close {
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -20px;
    width: 100%;
    height: 16px;
}


#team-member-remove-popup #team-member-remove-approve {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0C0C0C;
    background-color: #E2B10A;
    height: 48px;
    cursor: pointer;
}


#default-filters-popup {
    font-family: 'Nexa Rust Sans', sans-serif;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 85%;
    max-width: 356px;
    padding: 16px 16px 24px 16px;
    align-items: center;
    z-index: 7;

    color: #818181;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}


#default-filters-popup-close {
    display: flex;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    height: 16px;
}


#default-filters-popup-close svg {
    cursor: pointer;
}


.default-filters-popup-title {
    display: flex;
    width: 100%;
    justify-content: center;
    color: #FFF;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 24px;
}


.default-filters-popup-desc {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
    line-height: 117%;
}


.default-filters-popup-one-time-desc {
    display: none;
    width: 100%;
    justify-content: center;
    line-height: 117%;
}


#default-filters-popup .filter-row {
    padding: 0;
    align-items: center;
    width: 100%;
}

#default-filters-popup .filter-name {
    justify-content: center;
    width: 90%;
    margin-top: 12px;
}

#default-filters-popup .filter-row .filters-container {
    justify-content: center;
    margin: 12px 0px 2px 0px;
}


#default-filters-save {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E2B10A;
    color: #000;
    height: 48px;
    width: calc(100% - 8px);
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Dirty Headline', sans-serif;
    margin-top: 30px;
    cursor: pointer;
}


#default-filters-popup .all-chosen {
    font-size: 8px;
    height: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
    color: #E2B10A;
}


#max-devices-popup {
    font-family: 'Nexa Rust Sans', sans-serif;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 85%;
    max-width: 356px;
    padding: 16px 16px 32px 16px;
    align-items: center;
    z-index: 7;

    color: #818181;
    text-align: center;
    /* font-family: Helvetica Neue; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}


#max-devices-popup span {
    width: calc(100% - 50px);
}


#max-devices-popup-close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    height: 4px;
}


#max-devices-popup-close svg {
    cursor: pointer;
}


#image-to-video-popup {
    font-family: 'Nexa Rust Sans', sans-serif;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 85%;
    max-width: 356px;
    padding: 16px 16px 32px 16px;
    align-items: center;
    z-index: 7;
    color: #818181;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}


#image-to-video-popup span {
    width: calc(100% - 50px);
}


#image-to-video-popup-close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    height: 4px;
}


#image-to-video-popup-input {
    height: 20px;
    width: 80%;
    background: #0C0C0C;
    border: 1px solid #E2B10A;
    color: #FFF;
    font-family: 'Nexa Rust Sans', sans-serif;
    margin: 10px 0;
    padding: 10px 0 10px 16px;
}


#image-to-video-popup-input:focus {
    outline: none;
}

#image-to-video-generate-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E2B10A;
    height: 42px;
    color: #0C0C0C;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    width: 80%;
    padding: 0 8px;
}


#image-to-video-popup-close svg {
    cursor: pointer;
}


#ai-search-hint-popup {
    font-family: 'Nexa Rust Sans', sans-serif;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 85%;
    max-width: 496px;
    padding: 16px 16px 32px 16px;
    align-items: center;
    z-index: 7;

    color: #818181;
    text-align: left;
    /* font-family: Helvetica Neue; */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}


#ai-search-hint-popup span {
    width: calc(100% - 50px);
    margin-bottom: 8px;
    line-height: 127%;
}


#ai-search-hint-popup-close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    height: 4px;
}


#ai-search-hint-popup-close svg {
    cursor: pointer;
}


#ai-search-hint-popup .ai-search-hint-popup-title {
    font-family: 'Dirty Headline', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #FFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

#ai-search-hint-popup .ai-search-hint-popup-step {
    margin-left: 16px;
}

#ai-search-hint-popup .ai-search-hint-popup-step-detail {
    margin-left: 32px;
    margin-bottom: 12px;
}

#ai-search-hint-popup .ai-search-hint-popup-text {
    text-align: left;
    margin-bottom: 18px;
}

#ai-search-hint-popup-got-it {
    color: #FFF;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
}


#verify-email-popup {
    font-family: 'Nexa Rust Sans', sans-serif;
    opacity: 0;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 85%;
    max-width: 356px;
    padding: 16px 16px 24px 16px;
    align-items: center;
    z-index: 7;
    color: #818181;
    text-align: center;
    /* font-family: Helvetica Neue; */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    transition: opacity 2s ease;
    border: 2px solid #FFF;
}

#verify-email-popup.fade-in {
    opacity: 1;
}

#verify-email-popup-close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    height: 4px
}


#verify-email-popup-close svg {
    cursor: pointer;
}


#verify-email-popup span {
    line-height: normal;
    margin-bottom: 10px;
}


#verify-email-popup #send-verification-email {
    background: #E2B10A;
    height: 48px;
    width: 100% ;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 14px;
}


#verify-email-popup #change-email {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
}


#onboarding-video-popup {
    opacity: 0;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 85%;
    max-width: 1080px;
    padding: 14px 16px 16px 16px;
    align-items: center;
    z-index: 7;
    color: #818181;
    text-align: center;
    /* font-family: Helvetica Neue; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    transition: opacity 2s ease;
    border: 2px solid #FFF;

}

#onboarding-video-popup.fade-in {
    opacity: 1;
}

.onboarding-video-popup-title-desktop {
    width: calc(100% - 60px);
    font-size: 20px;
    color: #FFF;
    font-family: 'Dirty Headline', sans-serif;
    text-transform: uppercase;
    padding-bottom: 16px;
    line-height: 117%;
}

.onboarding-video-popup-title-mobile {
    width: calc(100% - 60px);
    display: none;
    color: #FFF;
    padding-bottom: 16px;
}

#skip-onboarding-video {
    color: #FFF;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 12px;
}

#onboarding-video-popup-close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    height: 5px;
}

#onboarding-video-popup-close svg {
    cursor: pointer;
}


#no-sketch-searches-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 90%;
    max-width: 356px;
    padding: 16px 16px 32px 16px;
    align-items: center;
    z-index: 7;
    border-radius: 8px;

    color: #818181;
    text-align: center;
    /* font-family: Helvetica Neue; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
}


#no-sketch-searches-popup-close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 16px;
}


#no-sketch-searches-popup-close svg {
    cursor: pointer;
}


#no-sketch-searches-popup span a {
    color: #818181;
}

#no-sketch-searches-popup span a:visited {
    color: #818181;
}


#reason-unsubscribe-popup {
    /* display: flex; */
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 85%;
    max-width: 380px;
    padding: 16px 16px 32px 16px;
    align-items: center;
    z-index: 10;
    color: #818181;
    text-align: center;
    /* font-family: Helvetica Neue; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}


#reason-unsubscribe-popup-close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    height: 1px;
}


#reason-unsubscribe-popup span {
    line-height: 117%;
    margin-bottom: 16px;
    font-size: 10px;
}

#reason-unsubscribe-popup .reason-unsubscribe-popup-title {
    color: #FFF;
    font-size: 24px;
    font-family: 'Dirty Headline', sans-serif;
}

#reason-unsubscribe-popup .chips-container {
    background: #0C0C0C;
    justify-content: center;
    height: 40px;
    border-radius: 40px;
    width: calc(100% - 20px);
    margin-right: 0;
}

#reason-unsubscribe-popup .textarea {
    display: block;
    overflow: hidden;
    resize: vertical;
    text-align: center;
    min-height: 16px;
    width: 100%;
    min-width: 185px;
    padding: 16px 0;
    font-size: 14px;
    margin: 8px 0 16px 0;
    border: 1px solid #E2B10A;
    color: #FFF;
    font-family: 'Nexa Rust Sans', sans-serif;
}


#reason-unsubscribe-popup .textarea:focus { 
    outline: none !important;
    opacity: 1;
    border: 2px solid rgb(226, 177, 10);
    color: rgb(226, 177, 10);
}

#reason-unsubscribe-popup .textarea:not(:empty) { 
    outline: none !important;
    opacity: 1;
    border: 2px solid rgb(226, 177, 10);
    color: rgb(226, 177, 10);
}

#reason-unsubscribe-popup .textarea[contenteditable]:empty::before {
    content: "Your reason / Feedback ❤️";
    color: #818181;
    font-family: 'Nexa Rust Sans', sans-serif;
}

#reason-unsubscribe-popup ::-webkit-resizer {
    display: none;
}

#reason-unsubscribe-popup-close svg {
    cursor: pointer;
}


#reason-unsubscribe-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #E2B10A;
    color: #000;
    height: 50px;
    cursor: pointer;
}


#submit-title-popup {
    /* display: flex; */
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #0C0C0C;
    height: auto;
    width: 85%;
    max-width: 376px;
    padding: 16px 16px 10px 16px;
    align-items: center;
    z-index: 8;
    color: #818181;
    text-align: center;
    /* font-family: Helvetica Neue; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
    border: 2px solid #FFF;
}

#submit-title-popup-close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    height: 5px;
}

#submit-title-popup .submit-title-popup-title {
    color: #FFF;
    font-family: 'Dirty Headline', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;

}
#submit-title-popup span {
    font-size: 10px;
    line-height: 117%;
    margin-bottom: 14px;
}

#submit-title-popup ul {
    font-size: 12px;
    margin: 10px;
    line-height: 117%;
    text-align: left;
    padding-inline-start: 16px;
}

#submit-title-popup li {
    margin-bottom: 10px;
}

#submit-title-popup .textarea {
    display: block;
    overflow: hidden;
    resize: vertical;
    text-align: center;
    min-height: 20px;
    width: calc(100% - 32px);
    padding: 14px;
    font-size: 14px;
    margin-bottom: 16px;
    border: 1px solid #E2B10A;
    font-family: 'Nexa Rust Sans', sans-serif;
    color: #FFF;
}


#submit-title-popup .textarea:focus { 
    outline: none !important;
    opacity: 1;
    border: 2px solid rgb(226, 177, 10);
    color: rgb(226, 177, 10);
}

#submit-title-popup .textarea:not(:empty) { 
    outline: none !important;
    opacity: 1;
    border: 2px solid rgb(226, 177, 10);
    color: rgb(226, 177, 10);
}

#submit-title-popup .textarea[contenteditable]:empty::before {
    content: "Your submission";
    color: #818181;
    font-family: 'Nexa Rust Sans', sans-serif;
}

#submit-title-popup ::-webkit-resizer {
    display: none;
}

#submit-title-popup-close svg {
    cursor: pointer;
}

#submit-title-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #E2B10A;
    color: #fff;
    height: 48px;
    cursor: pointer;
    font-family: 'Dirty Headline', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 16px;
}

.video-explanation-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #000000;
    height: auto;
    padding: 7px;
    align-items: center;
    text-align: center;
    z-index: 7;
    border-radius: 3px;
    line-height: 24px;
}


.video-explanation-popup video {
    width: 90%;
    max-width: 1500px;
}


.video-explanation-popup .video-explanation-popup-close-contaiter {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    color: #262626;
    margin-bottom: 7px;
}


.video-explanation-popup #video-explanation-popup-close {
    cursor: pointer;
}


@keyframes fadeInFadeOut {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


#safari-warning {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(226, 177, 10, 0.9);
    color: #000;
    text-align: center;
    padding: auto;
    z-index: 100;
}


#safari-warning span {
    width: 100%;
    padding: 2px 16px;
}


#safari-warning-close {
    position: relative;
    cursor: pointer;
    right: 10px;
}


.destop-features-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: #131417;
    color: #ffffff;
    width: 100%;
    margin-bottom: 8px;
    height: 40px;
    text-align: center;
    font-size: 8px;
    font-style: normal;
    animation-name: fadeInFadeOut;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: opacity 0.5s ease-in-out;
} 


@media (max-width: 500px) {
    .registration-popup {
        width: 85%;
    }

    .forgot-password-popup {
        width: 85%;
    }

    .onboarding-video-popup-title-mobile {
        display: inline-block;
    }

    .onboarding-video-popup-title-desktop {
        display: none;
    }

    #skip-onboarding-video {
        display: none;
    }
}



@media (max-height: 570px) {
    .registration-popup {
        padding: 4px 10px 10px 10px;
    }

    .registration-popup .signup-container-top .already-have-account {
        padding: 16px 0 0 0;
    }
}