.linkWorkPan .fr {
    width: 400px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    margin: 20px;
}

.linkWorkPan::before {
    content: "";
    position: absolute;
    width: calc(100% - 100px);
    height: calc(100%);
    top: 0;
    border-radius: 30px;
    background-color: #ebebeb;

}

.linkWorkPan {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 100px;
    padding: 50px;
}

textarea,
.select,
.input,
.field input {
    outline: none;
    border: 1px solid var(--onPrimCont);
    padding: 10px 10px;
    border-radius: 5px;
    background-color: #fff;
    width: 100%;
    line-height: .9em;
    margin: 2px;
}

.field label span {
    font-weight: 600;
    color: var(--prim);
}

.info {
    font-size: 0.9em;
    min-height: 1em;
    margin-bottom: 20px;
    text-align: center;
}

.formSubmitBtn {
    background: linear-gradient(90deg, #ff6600, #d50265);
    color: var(--onPrim);
    border: none;
    padding: 16px 34px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    width: max-content;
    z-index: 1;
}

.formSubmitBtn::before {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background: linear-gradient(90deg, #ff6600, #d50265);
    z-index: -1;
    opacity: 0.5;
    filter: blur(7px);
}

#shortenedLink {
    background: #8484842e;
    padding: 1.5em 10px 1.5em 30px;
    border-radius: 50px;
    height: 4em;
    width: 300px;
    display: none;
    border: 1px solid #0003;
}

#shortenedLink.active{
    display: flex;
}

#shortenedLink p {
    flex: 1;
    color: var(--primCont);
    font-weight: 600;
    font-size: .9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#shortenedLink button {
    width: calc(4em - 6px);
    aspect-ratio: 1/1;
    border: none;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.1s ease;
    border: 1px solid #0003;
}

#shortenedLink button:active {
    border: 1px solid #00000054;
    background: #00000029;
}

.scrollerBox {
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin: 20px 0;
    z-index: 1;
}

.scrollerBox::before,
.scrollerBox::after {
    content: '';
    position: absolute;
    left: 0px;
    height: 100%;
    width: 40px;
    background: linear-gradient(90deg, #f9f9f9, transparent);
    z-index: 1;
}

.scrollerBox::after {
    left: 320px;
    background: linear-gradient(-90deg, #f9f9f9, transparent);
}

.scrollerBox img {
    width: 100px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid #0004;
    position: absolute;
    animation: transit 10s linear calc(var(--i)*-10/5*1s) infinite;
}

.subdomainDemoPan{
    padding: 20px;
}
#subDomPan{
    width: 100%;
    max-width: 600px;
}
#subDomPan form{
    width: 100%;
}
@keyframes transit {
    0% {
        right: -100px;
    }

    100% {
        right: calc(500px);
    }
}

@media screen and (max-width: 1000px) {
    .linkWorkPan::before {
        width: 100%;
        height: 100%;
    }

    .linkWorkPan {
        flex-flow: column;
        margin-top: 0px;
        align-items: center;
    }

    .head {
        font-size: .8em;
    }
}

@media screen and (max-width: 500px) {
    .linkWorkPan {
        transform: scale(.9);
        flex-flow: column;
        align-items: center;
    }

    .linkWorkPan .fr {
        width: 320px;
    }

    .scrollerBox::after {
        left: 245px;
    }
}