/* Roboter mit Sprechblase */
#robot-animation img {
    width: 100%;
    height: auto;
}
#robot-animation img.robot-img-start {
    max-width: 120px;
}
#robot-animation .robot {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px !important
}
#SideBar #robot-animation.sections,
#SideBar #robot-animation .robot {
    margin-top: 0px !important
}
#robot-animation .robot-bubble {
    margin-top: 6em;
    position: relative;
}
#robot-animation .robot-bubble .bubble-text {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    color: var(--dark-gray);
    font-weight: 500;
}
#robot-animation .robot-bottom {
    width: 100%;
    height: 40px;
    border-radius: 70%;
    background: var(--light-gray-2);
    max-width: 310px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 0px;
}
#SideBar .SideBarItem.website-scanner {
    padding: 30px 0;
    border-top: 1px solid var(--light-gray-border);
}
#SideBar .SideBarItem.website-scanner input {
    padding: 20px 10px !important;
    height: 60px !important;
}
#SideBar .SideBarItem.website-scanner #easyscan-search .progress-bar-wrapper {
    height: 60px !important;
}
#SideBar .SideBarItem.website-scanner .easyscan-btn {
    margin-top: 20px;
}
#SideBar .SideBarItem #robot-animation img.robot-img {
    max-width: 90px;
    height: auto;
}

/** progress-bar */
#easyscan-search .itrk-form {
    background: white;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--itrk-border-radius);
}
#easyscan-search .progress-bar-wrapper {
    height: 45px;
    width: 0;
    transition: all 1s ease;
}
#easyscan-search input.itrk-input {
    transition: all 0.5s ease;
    background-color: transparent !important;
    color: var(--dark-gray-2) !important;
    padding: 10px 15px !important;
    height: 45px !important;
    margin-bottom: 0 !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
}
#easyscan-search.loading input.itrk-input,
#easyscan-search.loading input.itrk-input:focus {
    color: white !important;
}
#easyscan-search .progress-bar {
    position: relative;
    flex: 1;
    border-radius: var(--itrk-border-radius);
    height: 100%;
    overflow: hidden;
    border-radius: 7px 0 0 7px;
}
#easyscan-search .progress-bar .loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient( -45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent );
    z-index: 1;
    background-size: 50px 50px;
    animation: move 3s linear infinite;
    overflow: hidden;
}

#easyscan-search .error-msg {
    font-size: 12px;
    color: var(--red-color);
    padding: 5px 10px;
    display: none;
}
#easyscan-search input  {
    margin-bottom: 0 !important;
    flex: 1;
}
#easyscan-search .mb-1 .progress-bar {
    margin-bottom: 1em !important;
}

#robot-animation.sections { margin-top: 60px; }
#robot-animation img.robot-preload {
    max-width: 200px;
    height: auto;
}


@media screen and (max-width: 767px) {
    #robot-animation .robot-img {
        max-width: 110px;
    }

    #robot-animation img.robot-preload {
        max-width: 140px;
        height: auto;
    }
}

@keyframes move {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 50px 50px;
    }
  }