.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 888888;
    opacity: 0;
    background: linear-gradient(135deg, #002774, #5d2600 90%);
    overflow: hidden;
    transition: all .4s ease;
    pointer-events: none;
}
.overlay video{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: .3;
    width: auto;
    max-width: none;
    height: 140vh;
    mix-blend-mode: normal;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    overflow: scroll;
    z-index: 999999;
}
.popup-inner{
    transform: rotateX(90deg) translateY(50px);
    transform-origin: bottom;
    max-width: 640px;
    width: calc(100% - 100px);
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: -4px -4px 4px rgb(255 255 255 / 28%),4px 4px 4px rgb(0 0 0 / 100%);
    color: #fff;
    margin: 0 auto;
    padding: 50px;
    transition: all 1s ease;
    pointer-events: none;
    opacity: 0;
}



@media (max-width: 768px) {
    .popup-inner {
        width: calc( 100% - 30px );
        min-height: calc( 100% - 100px );
        padding: 30px 20px;
        line-height: 1.2;
    }
}



/* .wrapper {
    display: flex;
    align-items: center;
    height: inherit;
    overflow-y: auto;
    flex-direction: row;
    margin: 40px;
    height: fit-content;
    max-height: inherit;
    max-height: 80vh;
} */

@media (max-width: 768px) {
    /* .wrapper {
        display: block;
    } */
}
.popup-show{
    overflow: hidden;
}
.popup-show .overlay{
    opacity: .9;
    pointer-events: all;
}
.popup-show .popup{
    opacity: 1;
    pointer-events: all;
}
.popup-show .popup-inner {
    transform: rotateX(0deg) translateY(0px);
    pointer-events: all;
    opacity: 1;
}


.popup-close {
    height: fit-content;
    width: fit-content;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fa6d09;
    display: flex;
    justify-content: center;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    padding: 12px 10px;
    font-weight: 200;
    z-index: 10000000;
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 768px) {
    .popup-close{
        width: 40px;
        height: 40px;
        top: 20px;
        right: 5px;
    }
}
.popup-show .popup-close{
    opacity: 1;
    pointer-events: all;
}
.popup-balloon{
    position: relative;
    width: fit-content;
    margin: 0 auto 20px;
    padding: 4px 10px;
    border-radius: 5px;
    background: #fa6d09;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.popup-balloon:after{
    content: "";
    position: absolute;
    left: calc( 50% - 8px );
    bottom: -15px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top: 8px solid #fa6d09;
}
.popup-title{
    width: fit-content;
    margin: 0 auto 30px;
    padding-bottom: 2px;
    border-bottom: 3px solid #fff;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
}

.popup-small{
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}
.popup-list{
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #9e9e9e;
    border-radius: 10px;
    background: #4d4d4d;
    font-size: 13px;
}
.popup-list h3{
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    font-weight: bold;
    font-size: 15px;
}
.popup-list ul{
    padding-left: 25px;
    list-style: disc;
}
.popup-areatitle{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .popup-areatitle{
        flex-direction: column;
        gap: 10px;
    }
}
#sampleInsert{
    display: block;
    width: fit-content;
    margin-left: 30px;
    padding: 2px 20px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: normal;
}
@media (max-width: 768px) {
    #sampleInsert{
        margin-left: 0;
    }
}

.textarea {
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.3;
    padding: 12px 15px;
    width: 100%;
    outline: none;
    border-radius: 10px;
    color: #000;
}

.button-container {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}


.popup-center{
    text-align: center;
    margin-bottom: 20px;
}
.submit-button {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg,#05f,#eb6100 90%);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.step1 {
    border: 2px solid skyblue;
}
.animate-spin {
    margin-bottom: 18px;
}
.animate-spin img {
    animation: spin 2s linear infinite;
    margin-left: auto;
    margin-right: auto;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.arrow-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

#step2Content,
#generatedJobSummary {
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid #9e9e9e;
    border-radius: 10px;
    background: #4d4d4d;
    font-size: 13px;
}

#generatedJobSummary p {
    font-size: 14px;
}

.btn-container {
    display: flex;
    gap: 16px;
}

.btn-container .cancel {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 50px;
    border: 1px solid gray;
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 0;
}

/* .btn-container .copy {
    flex: 1;
    background: linear-gradient(to right, #0956FF, #5389FF);
    border-radius: 4px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 0;
} */


.circle[data-astro-cid-impxazkx] {
    color: #fff;
    font-size: 10px
}

@media screen and (min-width: 768px) {
    .circle[data-astro-cid-impxazkx] {
        font-size: 13px
    }
}

.circle[data-astro-cid-impxazkx]:before {
    width: 10px;
    height: 10px;
    background: #fff
}

@media screen and (min-width: 768px) {
    .circle[data-astro-cid-impxazkx]:before {
        width: 15px;
        height: 15px
    }
}

.cta[data-astro-cid-impxazkx] {
    background: linear-gradient(135deg, #05f, #eb6100 90%)
}

.cta-button[data-astro-cid-impxazkx] {
    background: #0003;
    box-shadow: -3px -3px 6px #fff3, 4px 4px 6px #00000080;
    transition: all .3s ease
}

.cta-button[data-astro-cid-impxazkx]:hover {
    background: #0000;
    box-shadow: -4px -4px 3px #ffffff1a, 4px 4px 3px #0003
}

.css-anime-textup[data-astro-cid-impxazkx] {
    display: block;
    overflow: hidden
}

.css-anime-textup__elem[data-astro-cid-impxazkx] {
    opacity: 1;
    transform: translateY(100%);
    display: inline-block;
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(.275, 0, 0, 1)
}

.is-viewed[data-astro-cid-impxazkx] .css-anime-textup__elem[data-astro-cid-impxazkx] {
    animation-name: css_anime_textup
}

.css-anime-textup[data-astro-cid-impxazkx]:nth-of-type(2) .css-anime-textup__elem[data-astro-cid-impxazkx] {
    animation-delay: .1s
}

.css-anime-textup[data-astro-cid-impxazkx]:nth-of-type(3) .css-anime-textup__elem[data-astro-cid-impxazkx] {
    animation-delay: .2s
}

.css-anime-underline[data-astro-cid-impxazkx] {
    position: relative
}

.css-anime-underline[data-astro-cid-impxazkx]:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0%;
    height: 3px;
    background: #fff;
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(.275, 0, 0, 1);
    animation-delay: .3s
}

@media screen and (min-width: 768px) {
    .css-anime-underline[data-astro-cid-impxazkx]:after {
        bottom: -2px;
        height: 4px
    }
}

.is-viewed[data-astro-cid-impxazkx] .css-anime-underline[data-astro-cid-impxazkx]:after {
    animation-name: css_anime_underline
}

@keyframes css_anime_textup {
    0% {
        transform: translateY(110%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes css_anime_underline {
    0% {
        width: 0%
    }

    to {
        width: 100%
    }
}


dl[data-astro-cid-yo6x3uwx] {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 30px 0;
    font-size: 14px
}

@media screen and (min-width: 768px) {
    dl[data-astro-cid-yo6x3uwx] {
        display: flex;
        align-items: center;
        padding: 0;
        height: 100px
    }
}

dl[data-astro-cid-yo6x3uwx]:last-child {
    border-bottom: none
}

dt[data-astro-cid-yo6x3uwx] {
    flex: none;
    width: 120px;
    color: #b3b3b3
}

#footer-navigation__list[data-astro-cid-yo6x3uwx] {
    transition: all .3s ease;
    pointer-events: none;
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0)
}

#footer-navigation__list[data-astro-cid-yo6x3uwx].is-shown {
    pointer-events: all;
    -webkit-clip-path: inset(0% 0% 0 0);
    clip-path: inset(0% 0% 0 0)
}

#footer-cta[data-astro-cid-yo6x3uwx]:hover {
    background: #ff5701;
    color: #fff
}

#footer-cta[data-astro-cid-yo6x3uwx]:hover path[data-astro-cid-yo6x3uwx] {
    fill: #fff
}

#footer-navigation[data-astro-cid-yo6x3uwx],
#footer-toggle[data-astro-cid-yo6x3uwx] span[data-astro-cid-yo6x3uwx],
#footer-cta[data-astro-cid-yo6x3uwx] {
    transition: all .3s ease
}

.in-footer[data-astro-cid-yo6x3uwx] #footer-navigation[data-astro-cid-yo6x3uwx] {
    background: #ff5701
}

.in-footer[data-astro-cid-yo6x3uwx] #footer-toggle[data-astro-cid-yo6x3uwx] span[data-astro-cid-yo6x3uwx] {
    background: #fff
}

.in-footer[data-astro-cid-yo6x3uwx] #footer-cta[data-astro-cid-yo6x3uwx] {
    background: transparent;
    border-color: #fff
}

.in-footer[data-astro-cid-yo6x3uwx] #footer-cta[data-astro-cid-yo6x3uwx] path[data-astro-cid-yo6x3uwx] {
    fill: #fff
}

#follower[data-astro-cid-yo6x3uwx] {
    position: fixed;
    z-index: 9999;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    scale: .3;
    opacity: 0
}

#follower-circle[data-astro-cid-yo6x3uwx],
#follower-play[data-astro-cid-yo6x3uwx] {
    position: absolute
}

#follower-circle[data-astro-cid-yo6x3uwx] {
    animation: followerCircle 10s linear infinite
}

@keyframes followerCircle {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}
