.TicketWrapper *{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
.TicketWrapper{
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: absolute;
    top: 0px;
    left: 0px;
    transition: .4s ease;
    visibility: hidden;
    overflow: hidden;
    color: white;
    font-family: "Montserrat", serif;
}
.TicketWrapperActive{
    visibility: visible;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999999999999999;
}
.TicketWrapper .TicketBlock{
    min-width: 558px;
    width: 558px;
    height: calc(100vh - 59px);
    backdrop-filter: blur(5.499428749084473px);
    background: rgba(0, 9, 26, 0.5);
    border: 0.79px solid #2e3750;
    border-radius: 24px 0 0 24px;
    padding: 24px 33px;
    transition: .4s ease;
    transform: translateX(100%);
}
.TicketWrapper .TicketBlockActive{
    transform: translateX(0%);
}
.TicketWrapper .TicketBlock .headline{
    width: 100%;
    height: 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.TicketWrapper .TicketBlock .headline .hideTicketBlockback{
    width: 57px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.TicketWrapper .TicketBlock .headline .hideTicketBlockback p{
    font-size: 13px;
    font-weight: 400;
}
.TicketWrapper .TicketBlock .headline .hideTicketBlockback svg{
    transition: .4s;
}
.TicketWrapper .TicketBlock .headline .hideTicketBlockback:hover svg{
    margin-left: -5px;
}
.TicketWrapper .TicketBlock .headline .hideTicketBlockclose{
    cursor: pointer;
    transition: .4s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.TicketWrapper .TicketBlock .headline .hideTicketBlockclose:hover{
    transform: scale(1.2);
}
.TicketWrapper .TicketBlock > h2{
    font-weight: 800;
    font-size: 31px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.TicketWrapper .TicketBlock .inputs{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: calc(100% - 107px);
}
.form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.TicketWrapper .ineedthattoworkplease, .TicketWrapper .list,  .TicketWrapper .tchat {
    width: 100%;
    min-height: 54px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticketitem {
    display: flex;
    flex-direction: row!important;
}

.ticketitem p, .ticketitem span {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 14pt;
    color: white;
}
.ticketitem span {
    border-radius: 8px;
    border-width: 1px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-style: solid;
    margin-left: auto;
    margin-right: 12px;
}

.ticketitem span.open {
    border-color: rgba(254, 233, 6, 1);
    color: rgba(254, 233, 6, 1);
    background-color: rgba(254, 233, 6, 0.25);
}
.ticketitem span.done {
    border-color: rgba(105, 250, 2, 1);
    color: rgba(105, 250, 2);
    background-color: rgba(105, 250, 2, 0.25);
}
.ticketitem span.closed {
    border-color: rgb(255, 0, 0);
    color: rgba(255, 0, 0);
    background-color: rgba(250, 2, 2, 0.25);
}
.TicketWrapper .TicketBlock .inputs .form > *,
.TicketWrapper .list .ineedthattoworkplease{
    width: 100%;
    height: 39px;
    background: #00091a;
    padding: 9px 14px;
    border: 0.79px solid #2e3750;
    outline: 0px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.TicketWrapper .TicketBlock .inputs .form > *::placeholder{
    color: rgba(255, 255, 255, 0.5);
    
}
.TicketWrapper .TicketBlock .inputs .form > textarea{
    min-height: 102px;
    max-height: 900px;
    height: 102px;
    resize: vertical;
    /* overflow: hidden; */
}
.TicketWrapper .TicketBlock .inputs .form > textarea::-webkit-scrollbar{
    background: #00000000;
}
#Tiket-file{
    display: none;
}
.TicketWrapper #Tiket-file-input{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.TicketWrapper #Tiket-file-input label{
    width: 100%;
    height: 39px;
    display: flex;
    align-items: center;
}
.TicketWrapper .inputs button, .TicketWrapper .success button{
    width: 172px;
    height: 39px;
    background: #9bccdb;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    color: #161616;
    border: 0px;
    margin-bottom: 10px;
    outline: 0px;
    transition: .4s ease;
    cursor: pointer;
}
.TicketWrapper .inputs button:hover, .TicketWrapper .success button:hover{
    transform: scale(1.08);
}
.TicketWrapper .success{
    width: 100%;
    height: calc(100% - 19px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.TicketWrapper .success .data{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.TicketWrapper .success h2{
    font-weight: 800;
    font-size: 36px;
    text-align: center;
    margin-top: 49px;
}
@media screen and (max-width: 768px) {
    .TicketWrapper{
        width: 100%;
        height: calc(100vh - 66px);
    }
    .TicketWrapper .TicketBlock{
        min-width: 100%;
        width: 100%;
        height: 74%;
        min-height: 500px;
        border-radius: 24px;
    }
    .TicketWrapper .success svg{
        height: 100px;
    }
    .TicketWrapper .success h2{
        font-weight: 800;
        font-size: 24px;
        text-align: center;
        margin-top: 49px;
    }
}

.ChatWrapperActive {
    visibility: visible;
    background: rgba(0, 0, 0, 0.55);
}

.TicketWrapper .TChatBlock {
    min-width: 508px;
    width: 508px;
    height: 100vh;
    border-radius: 30px;
}

.TicketWrapper .TChatBlockActive {
    transform: translateX(0%);
}

.TicketWrapper .TChatBlock .headline {
    width: 100%;
    height: 76px;
    border-radius: 8px 8px 0 0;
    padding: 0px 32px;
    background: #9bccdb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.TicketWrapper .TChatBlock .headline h2 {
    font-weight: 800;
    font-size: 18px;
    color: #161616;
}

.TicketWrapper .TChatBlock .headline svg {
    transition: 0.2s;
    cursor: pointer;
}

.TicketWrapper .TChatBlock .headline svg:hover {
    transform: scale(1.1);
}

.TicketWrapper .tchatLiveSupport {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.TicketWrapper .tchatLiveSupport .ainput {
    height: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 26px;
}

.TicketWrapper .tchatLiveSupport .ainput .tinputBlock {
    width: 100%;
    height: 56px;
    display: flex;
    background: #00091a;
    border: 1px solid #2e3750;
    border-radius: 20px;
    padding: 16px;
}

.TicketWrapper .tchatLiveSupport .ainput .tinputBlock input {
    width: 100%;
    background: rgba(0, 0, 0, 0);
    border: 0px;
    outline: 0px;
    color: white;
    display: none;
}

.TicketWrapper .tchatLiveSupport .ainput .tinputBlock .inputActive {
    display: block;
}

.TicketWrapper .tchatLiveSupport .ainput .tinputBlock svg {
    width: 24px;
    height: 24px;
    margin-left: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.TicketWrapper .tchatLiveSupport .ainput .tinputBlock .deActive {
    display: none;
}

.TicketWrapper .tchatLiveSupport .ainput .tinputBlock svg:hover {
    transform: scale(1.1);
}

emoji-picker {
    display: none;
    position: absolute;
    bottom: 100px;
    left: calc(50% - 342px / 2);
    --border-radius: 15px;
    /* backdrop-filter: blur(5.499428749084473px); */
    --background: rgba(0, 9, 26, 0.774);
    --border-color: #424c68;
}

.emoji-pickerActive {
    display: flex;
}

.TicketWrapper .tchatLiveSupport .tmessages {
    width: 100%;
    height: calc(100% - 100px);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    overflow: auto;
}

.TicketWrapper .tchatLiveSupport .tmessages::-webkit-scrollbar {
    width: 3px;
    background: rgba(0, 9, 26, 0.5);
}

.TicketWrapper .tchatLiveSupport .tmessages::-webkit-scrollbar-thumb {
    background: #2e3750;
}

.TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .date {
    width: 100%;
    font-size: 16;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageInfo {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: white;
    margin-bottom: 22px;
    margin-top: 4px;
}

.TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageFrom {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-bottom: 18px;
    padding: 11px 61px 16px 16px;
    border: 1px solid #2e3750;
    border-radius: 0 10px 10px 10px;
    background: #9bccdb;
    position: relative;
}

.TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageTo {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-bottom: 18px;
    padding: 11px 61px 16px 16px;
    border: 1px solid #2e3750;
    border-radius: 10px 0 10px 10px;
    color: #fff;
    background: #00091a;
    align-self: flex-end;
    position: relative;
}

.TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageTo .time,
.TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageFrom .time {
    position: absolute;
    right: 16px;
    bottom: 9px;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageFrom .time {
    color: rgba(255, 255, 255, 0.35);
    color: rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 768px) {
    .TicketWrapper {
        height: calc(100% - 66px);
    }

    .TicketWrapper .tchatLiveSupport .tmessages {
        height: calc(100% - 58px);
    }

    .TicketWrapper .tchatLiveSupport {
        height: calc(100% - 58px);
    }

    .TicketWrapper .TChatBlock {
        min-width: 100%;
        width: 100%;
        height: 90%;
        margin: 0px;
        border-radius: 30px 30px 0px 0px;
    }

    .TicketWrapper .TChatBlock .headline {
        height: 58px;
    }

    .TicketWrapper .TChatBlock .headline h2 {
        font-weight: 800;
        font-size: 14px;
        color: #161616;
    }

    .TicketWrapper .TChatBlock .headline svg {
        width: 14px;
        height: 14px;
    }

    .TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .date {
        font-size: 12px;
    }

    .TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageInfo {
        font-size: 13px;
    }

    .TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageTo,
    .TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageFrom {
        font-size: 12px;
    }

    .TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageTo .time,
    .TicketWrapper .TChatBlock .tchatLiveSupport .tmessages .messageFrom .time {
        font-size: 9px;
    }

    .TicketWrapper .tchatLiveSupport .ainput {
        height: 74px;
        /* padding: 16px 16px; */
    }

    .TicketWrapper .tchatLiveSupport .ainput .tinputBlock {
        height: 42px;
        display: flex;
        background: #00091a;
        border: 1px solid #2e3750;
        border-radius: 15px;
        padding: 0px 16px;
        display: flex;
        align-items: center;
    }

    /* .TicketWrapper .tchatLiveSupport .ainput .tinputBlock input {
     height: 42px;
  } */
    .TicketWrapper .tchatLiveSupport .ainput .tinputBlock .inputActive {
        display: block;
    }

    .TicketWrapper .tchatLiveSupport .ainput .tinputBlock svg {
        min-width: 18px;
        min-height: 18px;
        max-width: 18px;
        max-height: 18px;
        margin-left: 14px;
    }

    .TicketWrapper .tchatLiveSupport .ainput .tinputBlock label {
        height: 18px;
    }
}