/* URL SHOW AND COPY MACHINE */
.the-url-shower {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    line-height: 1;
    font-size: .8em;
    position: relative;
    width: auto;
    padding: 15px;
    border-radius: 5px;
    line-height: 1;
    font-weight: 400;
    margin-top: 10px;
    background: var(--background);
}
.the-url-shower .icon {
    width: 20px;
    height: 20px;
    position: relative;
    transform: translateY(0px);
    overflow: hidden;
    display: block;
}
.the-url-shower .icon img {
    width: 20px;
    height: 20px;
}
.the-url-shower .icon .copy {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
}
.the-url-shower:hover .icon .copy {
    opacity: 1;
}
.the-url-shower .icon .copy,
.the-url-shower .icon .steady {
    transition: all 300ms ease-out;
}
.the-url-shower:hover .icon .steady {
    transform: translateY(-100%);
    opacity: 0;
}
.the-url-shower .icon .copy {
    transform: translateY(100%);
}
.the-url-shower:hover .icon .copy {
    transform: translateY(0%);
}
.the-url-shower a.copyurl {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.the-url-shower .tag span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px;
    display: block;
    padding-bottom: 2px;
    transform: translateY(2px);
}


.the-url-shower--extra {
    font-size: .7em;
    margin-top: 10px;
}
.the-url-shower--extra span {
    color: var(--supportcolor1);
    cursor: pointer;
}





@media screen and (max-width: 1100px) {

    /* THE URL SHOWER COPY MACHINE */
    .the-url-shower .tag {
        display: none;
    }
    .the-url-shower:after {
        content: "Klik om URL te kopiëren";
        transform: translateY(1px);
    }

}