#helpdesk-wrapper {
    position: fixed;
    bottom: 10%;
    right: 0;
    overflow:hidden;
    z-index: 1;
    height: 50vh;
    width: 40px;
    transition: width 1s;
}

#helpdesk-wrapper.open {
    width: 25%;
    overflow: visible;
}

#helpdesk-wrapper button.toggler {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
    border-right-width: 0;
    float: left;
    height: 150px;
    padding: 10px;
}

#helpdesk-form {
    position: absolute;
    background: #eee;
    z-index: 999;
    top: auto;
    max-width: 500px;
    min-width: 300px;
    overflow-Y: scroll;
    height: 100%;
    padding: 15px;
    border-radius: 5px;
    margin-left: 40px;
}

#helpdesk-form .hidden {
    top: auto;
    position: relative;
    /* visibility: hidden; */
}

#helpdesk-form label {
    width: 100%;
}

#helpdesk-form .tech-info {
    display: none;
}

#helpdesk-form input[type="submit"] {
    background-color: #fe5700;
    color: white;
    border-radius: 5px;
}

#helpdesk-wrapper .toggler .label {
    transform: rotate(-90deg);
    display: block;
    position: relative;
    text-transform: uppercase;
    transform-origin: center left;
    right: -8px;
    bottom: -60px;
}

#helpdesk-wrapper .toggler .symbol {
    position: absolute;
    top: 5px;
    left: 5px;
    border: 2px solid black;
    border-radius: 50%;
    width: 1.8rem;
    height: 1.8rem;
}

@media screen and (max-width: 989px) {
    #helpdesk-wrapper.open {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    #helpdesk-wrapper.open {
        width: 95%;
    }
}

