
.help-widget .help-button{
    position: fixed;
    right: 0;
    bottom: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2E3958;
    height: 100px;
    width: 30px;
    min-width: 30px;
    z-index: 9999;
    border-radius: 8px 0 0 8px;
    transition: right 0.3s ease, min-width 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.help-widget .help-button:hover {
    min-width: 40px;
}

.help-widget .open-box {
    position: fixed;
    top: 120px;
    right: -2px;
    width: 450px;
    background: white;
    border-radius: 0px;
    border: solid 2px #2E3958;
    border-top: none;
    border-radius: 0 0 0 4px;
    transition: right 0.3s ease;
    padding: 15px 20px;
    z-index: 9999;
}

.help-widget .open-box h3 {
    margin: 0;
    margin-bottom: 30px;
}

.help-widget .open-box textarea {
    resize: none;
    min-height: 150px;
    margin-bottom: 30px;
}

.close-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.close-help-widget {
    cursor: pointer;
    font-size: 22px;
    transition: transform 0.3s ease;
    color: #2E3958;
}

.close-help-widget:hover {
    transform: scale(1.2);
}

.help-widget.collapsed .open-box {
    right: -450px;
}

.help-widget .help-button > a {
    color: white;
    transform: rotate(-90deg);
    white-space: nowrap;
}

.help-widget.open .help-button {
    right: -30px;
}

.help-widget .contact-details {
    display: flex;
}

.help-widget form > * {
    margin-bottom: 10px !important;
}

#send-message {
    height: 49px !important;
}

.help-widget .help-email {
    margin-bottom: 0px !important;
    margin-right: 5px !important;
}

@media(max-width: 1000px) {
    .help-widget .open-box {
        top: 80px;
    }
}

@media(max-width: 770px) {
    .help-widget .open-box {
        right: 0px;
        width: 100%;
        top: 80px;
        border-right: none;
        border-left: none;
        border-radius: 0px;
    }

    .help-widget.collapsed .open-box {
        right: -100%;
    }

    .contact-details {
        flex-direction: column;
    }

    .help-widget .help-email {
        margin-right: 0px !important;
        margin-bottom: 10px !important;
    }
}

@media(max-width: 480) {
    .help-widget .open-box {
        top: 85.5px;
    }
}
