.close-button{
    display: contents;
}
.feedback-body{
    width: 100%;
    position: relative;
    max-height: 100vh;
    overflow: auto;
    background: transparent;
}
.feedback-form {
    position: fixed;
    top: 90px;
    z-index: 999999;
    width:500px;
    right: -495px;
    display: flex;
    flex-direction: row;
    transition-duration: 0.4s;
}
.clickup-embed{
    width: 100%;      
    border: none;      
}
.feedback-tab{
    cursor: pointer;
    padding: 1em;
    height: 48px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    transform: rotate(-90deg);
    transform-origin: left;
    border-radius: 10px 10px 0 0px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    color:black;
    font-size: 15px;
    margin-left: -0.6em;
    margin-top: 11.5em;
    position: absolute;
    transition: 0.1s all;
    z-index: 99;
}

.feedback-tab:hover {
    margin-left: -0.9em;
}

.feedback-tab i {
    margin-right: 10px;
}

.feedback-tab.open {
    box-shadow: 0px -19px 16px rgba(0,0,0,0.1);
    width: 54px;
    height: 48px;
    left: 0px;
    top: -4.5em;
}

.feedback-tab.open i {
    margin-right: 0 !important;
}

@media only screen and (max-width: 560px) {
    .feedback-form {
        width: 450px;
        right: -445px;
    }
}

@media only screen and (max-width: 500px) {
    .feedback-form {
        width: 400px;
        right: -395px;
    }
}

@media only screen and (max-width: 450px) {
    .feedback-form {
        width: 350px;
        right: -345px;
    }
}