/* landing page */

.landing-page {
    min-height: calc(100vh - 213px);
}

/* Für Viewports, die breiter als 1024px sind */
@media screen and (min-width: 992px) {
  .landing-page {
    min-height: calc(100vh - 125px);
  }
}

.eyecandy {
    position: relative;
}

.eyecandy-bg-tl::before {
    content: "";
    position: absolute;
    display: block;
    background-image: url('/static/img/product_t_03.png');
    background-size: cover; /* or contain, or a specific value */
    width: 190px;
    height: 120px;
    top: 1rem;
    left: 1.5rem;
    z-index: -10;
}

.eyecandy-bg-br::after {
    content: "";
    position: absolute;
    display: block;
    /* background-image: url('/static/img/custom_03.png'); */
    background-image: url('/static/img/product_t_03.png');
    background-size: cover; /* or contain, or a specific value */
    width: 190px;
    height: 120px;
    bottom: 1.5rem;
    right: 1rem;
    z-index: -10;
    transform: rotate(90deg);
}

.eyecandy-bg-bl::before {
    content: "";
    position: absolute;
    display: block;
    /* background-image: url('/static/img/custom_03.png'); */
    background-image: url('/static/img/product_t_03.png');
    background-size: cover; /* or contain, or a specific value */
    width: 190px;
    height: 120px;
    bottom: 1.5rem;
    left: 1rem;
    z-index: -10;
    transform: rotate(45deg);
}

.eyecandy-bg-tr::after {
    content: "";
    position: absolute;
    display: block;
    /* background-image: url('/static/img/custom_03.png'); */
    background-image: url('/static/img/product_t_03.png');
    background-size: cover; /* or contain, or a specific value */
    width: 190px;
    height: 120px;
    top: 1rem;
    right: 1.5rem;
    z-index: -10;
    transform: rotate(135deg);
}

/* other companies section */

.other-companies-section img.grey-filter {
    filter: grayscale(100%);
}

.other-companies-section a img {
    object-fit: contain;
    max-height: 120px;
    display: block;
    max-width: 100%;
}


/* banner */

.banner {
    /* background-color: rgb(255, 123, 0); */
    background-color: var(--bs-secondary);
    width: 100%;
    margin: auto;
    min-height: 50px;
    padding: 1rem;
    line-height: 1;
    font-size: 1.1rem;
    color: white;
}

.banner-icon {
    width: 2rem;
    height: 2rem;
    background: url("/static/svg/info-circle.svg") no-repeat center;
    background-size: contain;
}

/* main */

.main hr {
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
}

.vh-75 {
    height: 75vh !important;
}

.t-100 {
    top: 100%;
}

.top-right {
    top: 1rem; 
    right: 1rem;
}

/* forms */

div.form-container p, div.form-container > div.input-group-container {
    display: grid;
    grid-template-columns: auto;
    width: 80%;
    margin: 1rem auto;
}

div.input-group-container ~ div.input-group-container {
    margin: 1rem auto;
}

div.form-container h4 {
    width: 80%;
    margin: 20px auto;
}

div.form-container p input[type="text"] {
    width: 100% !important;
}

/* dropzone */

.dz-ui {
    margin-top: 0.75rem;
}

/* messages */

.flash {
    position: relative;
    display: flex;
    padding: 1rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-align: center;
}

.flash ~ .flash {
    margin-top: 0.5rem;
}

div.flash.succ {
    color: #0d442a;
    background-color: #97d39c;
    border-color: #b2d3b5;
}

div.flash.info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

div.flash.err {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* uploaded files */

h4.file-class {
    margin: 1rem 0;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
}

h4.success {
    color: #0d442a;
    background-color: #97d39c;
    border-color: #b2d3b5;
}

h4.failed {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

div.file-uploaded {
    display: grid;
    grid-template-columns: 1fr 80px;
    overflow: hidden;
    margin: 0.5rem 0;
    padding-left: 1rem;
    border: 1px solid black;
    border-radius: 0.375rem;
    align-items: center;
}

div.files-wrapper>.input-group:hover .form-control {
    color: #fa0f71 !important;
}

span.order-id {
    font-size: smaller;
    font-weight: lighter;
}

/* footer */

.footer-wrapper {
    margin-top: 1rem;
}

.footer {
    min-height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fs-sm {
    font-size: small !important;
}

.fs-xs {
    font-size: x-small !important;
}

.fs-xxs {
    font-size: xx-small !important;
}

/* dashboard */

.nav-link:hover:not(.btn) {
    color: #fa0f71 !important;
    /*
        #fa0f71
        #eb9cbd;
        #da1768;
    */
}

/* gear wheel */

.gear-wheel {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url(/static/svg/gear_wheel.svg);
    background-size: cover;
    fill: black;
    width: 3rem;
    height: 3rem;
    animation: barrelRoll 5s infinite linear;
    -webkit-animation: barrelRoll 5s infinite linear;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

.gear-wheel:last-of-type {
    top: -20px;
    left: 36px;
    animation-name: invertBarrelRoll;
    -webkit-animation-name: invertBarrelRoll;
}

.gear-wheel-container {
    width: 5.5rem;
    height: 5rem;
}

@keyframes barrelRoll {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes invertBarrelRoll {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes barrelRoll {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes invertBarrelRoll {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

/* tokens */
/* 
.active {
    color: var(--bs-primary);
} */

.entry-holder .entry:hover {
    background: rgba(226, 226, 226, 0.55);
}

.entry-holder .token:hover {
    color: #fa0f71;
    transition: color ease-out 0.1s;
}

.token p {
    margin: 0.5rem;
}

.token {
    display: flex;
    margin: 0.25rem 0rem;
    padding-left: 1rem;
    align-items: center;
}

.scrollable {
    overflow-y: auto;
}

.max-h-600 {
    max-height: 600px !important;
}

.light-bg {
    background: rgb(219, 219, 219) !important;
    background: linear-gradient(150deg, rgba(220, 220, 220, 1) 0%, rgba(212, 212, 212, 0.75) 100%) !important;
}

/* dropzone */

div[class=dz-template]~div[class=dz-template] {
    padding-top: 0.75rem;
    border-top: lightgrey 3px solid;
}

/* explore */

.wf-icon {
    object-fit: cover;
    height: 100%;
}

.wf-props-img {
    height: 2rem;
    width: 2rem;
}

button.nav-link.active:hover {
    color: #212529 !important;
}

div[class~=wf-holder]~div[class~=wf-holder] {
    margin-top: 1rem !important;
}

.wf-holder {
    transition: ease-in-out 0.15s;
}

.wf-holder:hover {
    transform: translateX(-1rem);
    transition: ease-in-out 0.15s;
}

.bg-white {
    background-color: #fff;
}

img.rated {
    fill: rgb(250, 15, 113);
}

.banner-gradient {
    background: linear-gradient(to bottom, rgb(239, 239, 239), rgb(225, 225, 225)) !important;
}

.bg-inherit {
    background: inherit !important;
}

.pups img {
    width: 160px !important;
    height: 160px !important;
}


/* DROPZONE */

@-webkit-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px)
    }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px)
    }
}

@-moz-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px)
    }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px)
    }
}

@keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px)
    }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px)
    }
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px)
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px)
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px)
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1)
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1)
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1)
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
}

.dropzone, .dropzone * {
    box-sizing: border-box
}

.dropzone {
    min-height: 150px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: white;
    display: flex;
    flex-direction: column;
}

.dropzone .dz-clickable {
    cursor: pointer
}

.dropzone .dz-clickable * {
    cursor: default
}

.dropzone .dz-clickable .dz-message, .dropzone .dz-clickable .dz-message * {
    cursor: pointer
}

.dropzone.dz-started .dz-message {
    display: none
}

.dropzone.dz-drag-hover {
    border-style: solid
}

.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5
}

.dropzone .dz-message {
    display: block;
    text-align: center;
    margin: 2em 0
}

.dropzone .dz-message:not(:only-child) {
    display: none;
}

.dropzone .dz-message .dz-button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit
}

.dropzone .dz-preview {
    position: relative;
    margin: 1rem;
    min-height: 50px;
    border: 1px solid grey;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
}

.dropzone .dz-preview:hover {
    z-index: 1000
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

/* how to display remove sign */ 
/* .dropzone .dz-preview:hover:not(.dz-complete) .dz-remove {
    display: unset;
    opacity: 1;
    z-index: 1001;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -2rem;
    margin-top: -2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(233, 85, 85, 0.8);
    overflow: hidden;
    transition: 0.2s
} */

.dropzone .dz-preview .dz-remove {
    /* display: none; */
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    text-align: center;
    font-weight: 800;
}

.dropzone .dz-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    font-size: 13px;
    padding: 0.5rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%;
    flex-grow: 1;
    max-width: 70%;
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8)
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px
}

.dropzone .dz-status {
    min-width: 15%;
    display: flex;
    justify-content: center;
}

.dropzone .dz-control {
    min-width: 10%;
    display: flex;
    justify-content: center;
}

.dropzone .dz-preview.dz-success .dz-success-mark,
.dropzone .dz-preview.dz-error .dz-error-mark {
    display: block;
    opacity: 1;
    transition: opacity 3s cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)
}

.dropzone .dz-preview .dz-idle-mark {
    display: block;
    opacity: 1;
    transition: opacity 3s cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite
}

.dropzone .dz-preview.dz-processing .dz-processing-mark {
    display: block;
    opacity: 1;
    transition: opacity 3s cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-animation: barrelRoll 6s infinite linear;
    -moz-animation: barrelRoll 6s infinite linear;
    -ms-animation: barrelRoll 6s infinite linear;
    -o-animation: barrelRoll 6s infinite linear;
    animation: barrelRoll 6s infinite linear;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    color: green;
    text-align: center;
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    color: rgb(218, 13, 13);
    text-align: center;
}

.dropzone .dz-preview.dz-processing .dz-processing-mark {
    color: var(--bs-primary);
    text-align: center;
}

.dropzone .dz-preview .dz-idle-mark {
    color: black;
    text-align: center;
}

.dropzone .dz-preview.dz-processing .dz-idle-mark,
.dropzone .dz-preview.dz-success .dz-idle-mark,
.dropzone .dz-preview.dz-error .dz-idle-mark,

.dropzone .dz-preview.dz-success .dz-processing-mark,
.dropzone .dz-preview.dz-error .dz-processing-mark,

.dropzone .dz-preview .dz-processing-mark, 
.dropzone .dz-preview .dz-success-mark, 
.dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    display: none;
}

.dropzone .dz-preview .dz-idle-mark i, 
.dropzone .dz-preview .dz-processing-mark i, 
.dropzone .dz-preview .dz-success-mark i, 
.dropzone .dz-preview .dz-error-mark i {
    display: block;
    width: 32px;
    height: 32px
}
.dropzone .dz-preview .dz-processing-mark i::before, 
.dropzone .dz-preview .dz-success-mark i::before, 
.dropzone .dz-preview .dz-error-mark i::before {
    font-size: 2rem;
}

.dropzone .dz-preview .dz-idle-mark i::before {
    font-size: 1.5rem;
    line-height: 32px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    height: 0;
    -webkit-transition: opacity height 0.3s ease-in;
    -moz-transition: opacity height 0.3s ease-in;
    -ms-transition: opacity height 0.3s ease-in;
    -o-transition: opacity height 0.3s ease-in;
    transition: opacity height 0.3s ease-in
}

/* .dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite
} */

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: relative;
    height: 16px;
    width: 100%;
    background-color: white;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    /* background: repeating-linear-gradient(60deg, var(--bs-primary), var(--bs-primary) 15px, transparent 15px, transparent 30px); */
    background: var(--bs-primary);
    border: transparent;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 200ms ease-in-out;
    -moz-transition: width 200ms ease-in-out;
    -ms-transition: width 200ms ease-in-out;
    -o-transition: width 200ms ease-in-out;
    transition: width 200ms ease-in-out
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 50px;
    left: -40px;
    width: 140px;
    background: #df2f2f;
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: white
}

.dropzone .dz-preview .dz-error-message:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626
}

.upload-speed-container {
    display: flex;
    align-items: center;
}
