.helpSearch{
    padding: 40px 0px;
    background: #ebf3f9 url(../img/helpbg.png) top center no-repeat;
    background-size: auto 100%;
}
.helpSearch form{
    padding:0px 20px;
    font-size: 24px;
}
.searchTitle{
    text-align: center;
    padding-top: 20px;
    font-weight: 600;
    font-size: 30px;
}
.searchText{
    text-align: center;
    padding: 0px 0 20px 0;
    font-weight: 100;
    color: #818181;
}
.textView{
    display: inline-flex;
    align-items: center;
    align-items: center;
    width: 500px;
    background: #fff;
    -webkit-box-shadow: 0 3px 10px 1px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 10px 1px rgb(0 0 0 / 5%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;   
    max-width: 100%; 
}
.textView:focus, .textView:hover {
    -webkit-box-shadow: 0 0px 10px 2px #2b65f8;
    -moz-box-shadow: 0 0px 10px 2px #2b65f8;
    box-shadow: 0 0px 10px 2px #2b65f8;
}
.textView span:nth-child(1) {
    width: 50px;
    text-align: right;
    padding-right: 5px;
    color: #666;
}
.textView span:nth-child(2) {
    width: calc(100% - 50px);
}
.textView input {
    background: transparent;
    padding: 15px 10px;
    font-weight: 500;
    width: 100%;
    border: 0 !important;
    outline: none;
}
.helpCatItem{
    border: 1px solid #e2e2e2;
    height: 100%;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.helpCatItemDes{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding:20px 10px 0px 10px;
    height: 100%;
}
.iconSpan i{
    font-size: 60px;
    color: #125800;
}
.helpCatItem .helpCatTitle{
    font-weight: 600;
    font-size: 20px;
}
.helpCatItemLink{
    padding:10px;
    border-top: 1px solid #e2e2e2;
}
.helpLink{
    text-align: left;
}
.helpLink a{
    text-decoration: none;
}

/* ============ ticket page style ================================ */
.userSent{
    text-align: left;
}
.adminSent{
    text-align: right;
}
.TicketInfo{
    position: absolute !important;
    width: 200px;
    right: -20px;
    top: 0px
}
.ticketMsgMain{
    max-height: 550px;
    overflow-y: auto;
    border: 1px solid rgb(197, 197, 197);
    border-radius: 10px;
    padding: 20px;
}
.userSent .ticketHead{
    background: #e0f9e0;
    color: green;
}
.adminSent .ticketHead{
    background: rgb(204, 204, 204);
    color: black;
}
.userSent .ticketItem{
    border: 1px solid green;
}
.adminSent .ticketItem{
    border: 1px solid gray;
}
.ticketItem{
    display: inline-block;
    width: 80%;
    border-radius: 5px;
    text-align: left;
}
.ticketHead{
    padding:3px 10px;
    border-radius: 5px 5px 0px 0px;
    font-size: 15px;
    font-weight: 600;
}
.ticketMsg{
    padding: 4px 10px 2px 10px;
}
.ticketItem pre{
    margin-bottom: 1px;
    white-space: break-spaces;
}
#ticketMsg{
    display: inline-block;
    width:60%;
}
@media (max-width: 1000px){
    .TicketInfo{
        display: none;
    }
}
@media (max-width: 540px){
    .helpSearch{
        background-size: cover !important;
        padding-top: 20px;
    }
    .helpSearch form{
        font-size: 20px;
    }
    .ticketItem{
        width: 100%;
    }
    #ticketMsg{
        width:100%;
    }
}
