/*
Ticket status color - 
Open - #9ed467
Close - #75798f
On Hold - #ffc956
Waiting On Customer - #af8aed
Resolved - #52aef9

Ticket Priority color -
Low - 
Medium - 
High -
Urgent - 

*/
/********************************************************************************************* 
1. body start
*********************************************************************************************/
:root {
    --main_color : #2edfc6;
}

*,*::before,*::after{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
	font-family: 'Nunito', sans-serif;
	background-color:#f9fbfc;
	color: #89949a;
	font-size:14px;
	margin: 0;
}
a, a:hover, a:focus{
	text-decoration:none;
	color: #4948cd;
}
.xs_content_wrapper{
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 0 15px;
    padding-top: 80px;
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
h1, h2, h3, h4, h5, h6{
    color: #5e686d;
}
/* alignment start */
.text-center{ text-align: center; }
.text-left{ text-align: left; }
.text-right{ text-align: right; }
/* alignment end */
/********************************************************************************************* 
1. body end
*********************************************************************************************/

/********************************************************************************************* 
3. header start
*********************************************************************************************/
.xs_header_wrapper{
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 80px;
    z-index: 998;
    background-color: var(--main_color);
    box-shadow: 0px 0px 41px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.xs_header_wrapper::before{
	display:none;
}
.xs_header_wrapper > .xs_header_inner{
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.xs_logo > a{
    display: inline-block;
}
.xs_logo > a > img{
    max-width: 180px;
    max-height: 40px;
}

.xs_nav{
    flex: 1;
}
.xs_nav > ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.xs_nav > ul > li{
    display: inline-block;
}
.xs_nav > ul > li > a{
    display: block;
    color: #ffffff;
    font-weight: 600;
    padding: 6px 15px;
}
.xs_nav > ul > li > a.active {
    background-color: #fff;
    border-radius: 35px;
    color: #5e686d;
}
.xs_nav > ul > li > a > .xs_icon{
    display: none;
}

/********************************************************************************************* 
3. header end
*********************************************************************************************/

.xs_operator_header{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.xs_operator_header > .xs_operator_filter{
    flex: 1;
}
.xs_filter_box{
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
}
.xs_filter_box > label{
    font-weight: 400;
    color: #89949a;
    margin-right: 8px;
}
.xs_filter_box > select{
    font-weight: bold;
    color: #5e686d;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
}

/* button start */
.xs_btn{
    display:inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fafcfd;
    background-color: var(--main_color);
    border:none;
    cursor:pointer;
    text-decoration:none;
    outline:none;
    line-height:initial;
}
.xs_btn:hover, .xs_btn:focus{
	color:#ffffff;
	text-decoration:none;
	outline:none;
}
/* button end */

/* ticket start */
.xs_ticket_list > .xs_ticket{
    margin-bottom: 10px;
    border: 1px solid #e9eff2;
    background-color: #ffffff;
    padding: 10px;
    display: flex;
    align-items: center;
    border-right: 4px solid #52aef9;
    color: inherit;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_id{
    width: 146px;
    height: 98px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #52aef9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_id > .xs_tid_bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background-color: #52aef9;
    opacity: 0.25;
    z-index: -1;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_detail{
    padding: 10px 20px;
    flex: 1;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_detail > h3{
    margin: 0;
    margin-bottom: 5px;
    font-size: 16px;
    color: #5e686d;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_detail > .xs_ticket_meta{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_detail > .xs_ticket_meta > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_detail > .xs_ticket_meta > ul > li{
    display: inline-block;
    margin-right: 10px;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_detail > .xs_ticket_meta > ul > li > a{
    display: block;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_detail > p{
    margin: 0;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_action{
    display: flex;
    align-items: center;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_action > .xs_ticket_status{
    margin-right: 30px;
    padding: 2px 10px;
    border-radius: 5px;
    background-color: #50b0f7;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_action > .xs_ticket_action_dd > select{
    max-width: 175px;
    width: 100%;
    padding: 9px 10px;
    background-color: #fafcfd;
    border: 1px solid #e9eff2;
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: 10px;
    outline: none;
    border-left: 4px solid #ff7773;
}
.xs_ticket_list > .xs_ticket > .xs_ticket_action > .xs_ticket_action_dd > select:last-child{
    margin-bottom: 0px;
}
/* ticket end */

/* preloader start */
.xs_preloader_wrapper{
    position: fixed;
    top: 80px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-align: center;
    padding: 150px;
    z-index: 99;
    background-color: #f9fbfc;
}
.site_loaded .xs_preloader_wrapper{
    display: none;
}
.xs_preloader_wrapper > .xs_preloader_inner{
    padding: 2px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
    border-radius: 50px;
    display: inline-flex;
}
.xs_spinner {
    margin: 0;
    width: 28px;
    height: 28px;
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}
  
@-webkit-keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}
  
@keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}
.path {
    stroke-dasharray: 75;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}
  
@-webkit-keyframes colors {
    0% {
        stroke: #af8aed;
    }
    25% {
        stroke: #9ed467;
    }
    50% {
        stroke: #ff7773;
    }
    75% {
        stroke: #ffc956;
    }
    100% {
        stroke: #52aef9;
    }
}
  
@keyframes colors {
    0% {
        stroke: #af8aed;
    }
    25% {
        stroke: #9ed467;
    }
    50% {
        stroke: #ff7773;
    }
    75% {
        stroke: #ffc956;
    }
    100% {
        stroke: #52aef9;
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 75;
    }
    50% {
        stroke-dashoffset: 9;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 75;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}
@keyframes dash {
    0% {
        stroke-dashoffset: 75;
    }
    50% {
        stroke-dashoffset: 9;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 75;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}
/* preloader end */


.xs_no_data{
    text-align: center;
    padding: 150px 15px;
}
.xs_no_data > h1{
    margin: 15px auto;
    font-size: 30px;
    color: #89949a;
    font-weight: 200;
}

.xs_page_title{
    padding: 35px 0;
}
.xs_page_title > h3{
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* input start */
.xs_input_list_wrapper{
    display: flex;
    margin: 0 -10px;
}
.xs_input_list_wrapper > .xs_input_wrapper{
	flex: 1;
    margin-bottom: 20px;
    padding: 0 10px;
}
.xs_input_wrapper{
	margin-bottom:20px;
	position:relative;
}
.xs_input_wrapper > label{
	font-size: 14px;
    color: #5e686d;
    margin-bottom: 5px;
    cursor: inherit;
    font-weight: 600;
    display: block;
}
.xs_input_wrapper > .xs_input{
    width: 100%;
	height: 55px;
    padding: 0px 20px;
    padding: 17.5px 20px;
    box-shadow: none;
    border: 1px solid #e9eff2;
    border-radius: 5px;
    background-color: #ffffff;
    outline: none;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
}
.xs_input_wrapper > textarea.xs_input{
    width: 100%;
    height: auto;
    resize: vertical;
}
.xs_input_wrapper > .xs_input:focus{
    border-color: var(--main_color);
    outline: none;
}
.xs_input_wrapper.xs_input_icon .xs_input{
	padding-right:50px;
}
.xs_input_wrapper.xs_input_icon > .icon{
	position: absolute;
    bottom: 9px; 
    right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}
.xs_input_wrapper.xs_input_icon > .icon > i{
	line-height: inherit;
    font-size: 20px;
    color: #b5b5b5;
}
.xs_input_wrapper.xs_input_icon > .icon:hover > i{
	color:#1cabff;
}
.xs_input_wrapper .xs_btn{
    margin-right: 10px;
}
/* input end */

.xs_operator_profile{
    display: flex;
}
.xs_operator_profile > form{
    flex: 1;
}
.xs_operator_profile .xs_input_wrapper > .xs_input{
    background-color: #ffffff;   
}
.xs_profile_image{
    width: 300px;
    background-color: #ffffff;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 40px rgba(0,0,0,0.04);
    border-radius: 10px;
}
.xs_profile_image > .xs_profile_icon{
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 10px;
}
.xs_profile_image > .xs_profile_icon > input{
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    object-fit: cover;
}
.xs_profile_image > .xs_profile_icon > .xs_profile_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 80px;
}
.xs_profile_image > .xs_profile_icon > .xs_initials{
    width: 80px;
    height: 80px;
    border-radius: 80px;
    font-size: 24px;    
    text-transform: uppercase;
    font-weight: bold;
    color: #52aef9;
    background-color: #d4ebfd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.xs_profile_image > h3{
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #8a8a8a;
}

/* alert box start */
.toaster{
    width: auto !important;
    max-width: 50%;
}
.toaster .alert{
    border-radius: 5px;
    border: none;
    -webkit-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    margin-bottom: 0;
    position: relative;
    margin-bottom: 10px;
    padding: 15px;
    padding-right: 40px;
}
@-webkit-keyframes alert_anim{
    0%{-webkit-transform: translateY(-50px);}
    100%{-webkit-transform: translateY(0px);}
}
@-moz-keyframes alert_anim{
    0%{-moz-transform: translateY(-50px);}
    100%{-moz-transform: translateY(0px);}
}
@keyframes alert_anim{
    0%{transform: translateY(-50px);}
    100%{transform: translateY(0px);}
}
.alert-danger {
    color: #ffffff;
    background-color: #F44336;
}
.alert-success {
    color: #ffffff;
    background-color: #4CAF50;
}
.alert button.close{
    outline: none;
    font-weight: 100;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    color: #fff;
    padding: 0;
    line-height: 20px;
    font-size: 23px;
    cursor: pointer;
}
.alert .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

/* alert box end */

/* info tooltip start */
.xs_info_tooltip{
	display: inline-block;
    position: relative;
    vertical-align: middle;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    transform: translateY(-1px);
	line-height: initial;
    letter-spacing: inherit;
    margin-left: 5px;
}
.xs_info_tooltip > i{
	vertical-align: middle;
    line-height: inherit;
    color: #616161;
    font-size: 18px;
    cursor: help;
    background-image: url('../images/info.svg');
    width: 14px;
    height: 14px;
    display: block;
    background-color: #ffffff;
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 15px;
    box-shadow: 0px 0px 0px 1px #c4c4c4;
}
.xs_info_tooltip > p{
	position: absolute;
    bottom: calc(100% + 5px);
    background-color: #ffffff;
    padding: 10px;
    font-size: 12px;
    border: 1px solid #d4d4d4;
    text-transform: initial;
    letter-spacing: initial;
    font-weight: 400;
    margin: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}
.xs_info_tooltip > i:hover ~ p{
	opacity:1;
	visibility:visible;
}
.xs_info_tooltip > p:before{
	content: "";
    position: absolute;
    top: calc(100% - 4px);
    left: calc(50% - 4px);
    display: block;
    width: 8px;
    height: 8px;
    border-left: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* info tooltip end */

.xs_file_attached{
	margin-top: 30px;
}
.xs_file_attached > h3{
	margin:0;
	margin-bottom:10px;
	font-size:18px;
}
.xs_file_attached > ul{
	list-style:none;
	padding:0;
	margin:0;
	display:inline-block;
	vertical-align:top;
}
.xs_file_attached > ul > li{
	position:relative;
	display:inline-block;
	margin-right:10px;
	margin-bottom:10px;
}
.xs_file_attached > ul > li > a{
	display: block;
    width: 80px;
    height: 80px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    background-image: url('../images/attachment.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
}
.xs_file_attached > ul > li > a > img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.xs_file_attached > .xs_attachment_btn{
	display: inline-block;
	vertical-align:top;
    width: 80px;
    height: 80px !important;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    background-size: 30px;
	margin-right: 10px;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.xs_file_attached > .xs_attachment_btn:before,
.xs_file_attached > .xs_attachment_btn:after{
	content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #ebebeb;
    position: absolute;
}
.xs_file_attached > .xs_attachment_btn:before{
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	transform:rotate(90deg);
}

.xs_file_attached > .xs_attachment_btn > input{
    width: 80px;
    height: 80px;
    opacity: 0;
    position: absolute;
    top: -2px;
    left: -2px;
    cursor: pointer;
    border-radius: 8px;
}

.ck-editor__editable {
    min-height: 250px;
}

/* popup start */
body.show_popup{
    overflow: hidden;
}
body.show_popup .xs_main_wrapper{
    /* -webkit-filter: blur(6px);
    -moz-filter: blur(6px);
    filter: blur(6px);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s; */
}
.xs_popup_wrapper{
    position: fixed;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 9999;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.75);
    overflow: auto;
}
.xs_popup_wrapper.xs_popup_open{
    opacity: 1;
    visibility: visible;
}
.xs_popup_wrapper::before{
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.xs_popup_wrapper > .xs_popup_inner{
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 570px;
    margin: 30px auto;
    text-align: left;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 50px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-100px) rotateX(45deg);
    -moz-transform: translateY(-100px) rotateX(45deg);
    transform: translateY(-100px) rotateX(45deg);
}
.xs_popup_wrapper.xs_popup_open > .xs_popup_inner{
    opacity: 1;
    -webkit-transform: translateY(0px) rotateX(0deg);
    -moz-transform: translateY(0px) rotateX(0deg);
    transform: translateY(0px) rotateX(0deg);
}

.xs_popup_wrapper > .xs_popup_inner > .xs_popup_close_icon{
    position: absolute;
    top: 10px;
    right: 10px; 
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.xs_popup_wrapper > .xs_popup_inner > .xs_popup_close_icon > span{
    width: 15px;
    height: 1px;
    background-color: #929292;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.xs_popup_wrapper > .xs_popup_inner > .xs_popup_close_icon > span:last-child{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}   
.xs_popup_wrapper > .xs_popup_inner .xs_popup_heading{
    text-align: center;
}
.xs_popup_wrapper > .xs_popup_inner .xs_popup_heading > h3{
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-30px) rotateX(90deg) scale(0.8);
    -moz-transform: translateY(-30px) rotateX(90deg) scale(0.8);
    transform: translateY(-30px) rotateX(90deg) scale(0.8);
}
.xs_popup_wrapper.xs_popup_open > .xs_popup_inner .xs_popup_heading > h3{
    opacity: 1;
    -webkit-transform: translateY(0px) rotateX(0deg) scale(1);
    -moz-transform: translateY(0px) rotateX(0deg) scale(1);
    transform: translateY(0px) rotateX(0deg) scale(1);
}
.xs_popup_wrapper > .xs_popup_close_overlay{
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    z-index: -1;
    cursor: zoom-out;
}
/* popup end */

/* icon start */
.xs_icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    background-image: url('../images/allicons.svg');
}
.xs_icon.user{ width: 20px; height: 16px; background-position: 0px -22px; }
.xs_icon.products{ width: 20px; height: 17px; background-position: -20px -1px; }
.xs_icon.time{ width: 20px; height: 16px; background-position: -18px -22px; }
.xs_icon.search{width: 15px; height: 16px; background-position: -161px -2px;}

.xs_color_icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    background-image: url('../images/coloricon.svg');
}
.xs_color_icon.add_product{ width: 39px; height: 40px; background-position: 40px -5px; }
.xs_color_icon.smiley_high{ width: 50px; height: 50px; background-position: 250px 0px; }
.xs_color_icon.smiley_medium{ width: 50px; height: 50px; background-position: 200px 0px; }
.xs_color_icon.smiley_low{ width: 50px; height: 50px; background-position: 150px 0px; }
.xs_color_icon.no_product{ width: 50px; height: 70px; background-position: center center; background-image: url('../images/no_data.svg'); background-repeat: no-repeat; }
/* icon end */


/* ticket detail start */
.xs_ticket_detail_wrapper > .xs_ticket_detail_list{
    margin: 30px 0;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list > h3{
    margin: 0;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 400;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list > ul{
	list-style:none;
	padding:0;
	margin:0;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket{
    border: 1px solid #e9edf3;
    background-color: #f4f6f9;
    margin-bottom: 30px;
    padding: 30px;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket.adminMsg{
    border: 1px solid #d0ecfc;
    background-color: #e3f5ff;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_header{
	padding-bottom: 30px;
    border-bottom: 1px solid #e9edf3;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket.adminMsg > .xs_ticket_header{
    border-bottom-color: #d0ecfc
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_header > .xs_user_detail{
	display: flex;
    align-items: center;
    width: 100%;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_header > .xs_user_detail > .xs_user_icon{
	width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: #52aef9;
    background-color: #d4ebfd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    position: relative;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_header > .xs_user_detail > .xs_user_icon > img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    object-fit: cover;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_header > .xs_user_detail > .xs_user_name{
	flex: 1;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_header > .xs_user_detail > .xs_user_name > h3{
	font-size:16px;
	margin:0;
	margin-bottom:5px;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_header > .xs_user_detail > .xs_user_name > p{
	margin:0;
	font-size:12px;
}

.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_body{
	padding-top: 15px;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_body blockquote img,
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket > .xs_ticket_body figure.image img{
	max-width:450px;
	border-radius: 5px;
    margin-bottom: 15px;
}


.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket.xs_client > .xs_ticket_header{
	background-color: #eae9e9;
}
.xs_ticket_detail_wrapper > .xs_ticket_detail_list .xs_ticket.xs_client > .xs_ticket_body{
	background-color: #f5f5f5;
}

.xs_file_attached > ul > li > a.xs_new_file:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(255, 255, 255, 0.7);
}
.xs_file_attached > ul > li > a > .xs_progress_bar{
	position: absolute;
    bottom: 10px;
    left: 5px;
    right: 5px;
    background-color: #e0e0e0;
    height: 5px;
    border-radius: 3px;
}
.xs_file_attached > ul > li > a > .xs_progress_bar > span{
	position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px; 
	border-radius: 10px;
    background-color: var(--main_color);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.xs_file_attached > ul > li > a.completed > .xs_progress_bar > span{
	background:none;
	background-color: #8BC34A;
}
.xs_file_attached > ul > li > a.completed > .xs_progress_bar{
	display:none;
}
.xs_file_attached > ul > li > a.completed.xs_new_file:before{
	opacity:0;
}

.xs_file_attached > ul > li > span.xs_remove_file {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 15px;
    height: 15px;
    background-color: #F44336;
    border-radius: 30px;
    z-index: 1;
    cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
	opacity:0;
	visibility:hidden;
}
.xs_file_attached > ul > li > span.xs_remove_file:after, 
.xs_file_attached > ul > li > span.xs_remove_file:before {
    content: "";
    width: 8px;
    height: 2px;
    background-color: #fff;
    border-radius: 3px;
	position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.xs_file_attached > ul > li > span.xs_remove_file:after{
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.xs_file_attached > ul > li:hover > span.xs_remove_file {
	opacity:1;
	visibility:visible;
}
/* ticket detail end */

.xs_review_box_wrapper{
    margin-bottom: 15px;
}
.xs_review_box_wrapper > p{
    margin: 0;
    margin-bottom: 10px;
}
.xs_review_box_list{
    display: flex;
    margin: 0 -10px;
}
.xs_review_box_list > .xs_review_box{
    flex: 1;
    padding: 10px;
}
.xs_review_box_list > .xs_review_box > input{
    position: absolute;
    left: -99999px;
}
.xs_review_box_list > .xs_review_box > label{
    padding: 10px;
    text-align: center;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    min-height: 165px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.xs_review_box_list > .xs_review_box > input:checked ~ label{
    background-color: var(--main_color);
}
.xs_review_box_list > .xs_review_box > input:checked ~ label > h3{
    color: #ffffff;
}
.xs_review_box_list > .xs_review_box > label > h3{
    font-size: 14px;
    margin: 0;
    margin-top: 15px;
}


.xs_ticket_label{
    display: inline-flex;
    background-color: #ffffff;
    border: 1px solid #03A9F4;
    padding: 2px 5px;
    font-size: 11px;
    font-weight: 700;
    color: #03A9F4;
    border-radius: 3px;
}

/* accordion start */
.xs_accordion_wrapper{
    margin-bottom: 15px;
}
.xs_accordion_wrapper > .xs_accordion_item{
    margin-bottom: 15px;
}
.xs_accordion_wrapper > .xs_accordion_item > .xs_accordion_title > h3{
    margin: 0;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    background-color: #ffffff;
    border-radius: 5px;
    position: relative;
    border: 1px solid #f1f1f1;
}
.xs_accordion_wrapper > .xs_accordion_item.active > .xs_accordion_title > h3{
    z-index: 2;
    border-radius: 5px 5px 0px 0px;
    border-bottom: none;
    color: var(--main_color)
}
.xs_accordion_wrapper > .xs_accordion_item > .xs_accordion_content{
    padding: 15px;
    animation: accordion_anim 0.3s;
    transform-origin: top;
    animation-fill-mode: forwards;
    background-color: #ffffff;
    border-radius: 0px 0px 5px 5px;
    border: 1px solid #f1f1f1;
}
@keyframes accordion_anim{
    0%{transform: scaleY(0);}
    100%{transform: scaleY(1);}
}
.xs_accordion_wrapper > .xs_accordion_item.active > .xs_accordion_content{
    border-top: none;
    box-shadow: 0px 2px 0px #f1f1f1;
}
.xs_accordion_wrapper > .xs_accordion_item > .xs_accordion_content > p{
    margin: 0px;
    margin-bottom: 10px;
}
/* accordion end */

/* search box start */
.xs_search_input{
    max-width: 220px;
    position: relative;
    margin-bottom: 30px;
}
.xs_search_input > input{
    padding: 12px 20px;
    border-radius: 50px;
    padding-right: 50px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    outline: none;
}
.xs_search_input > input:focus{
    border-color: var(--main_color)
}
.xs_search_input > .xs_icon{
    position: absolute;
    top: 13px;
    right: -2px;
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    transform: scale(0.9);
}
/* search box end */

/* responsive start */
@media (max-width:768px){
    .xs_operator_profile{
        display: block;
    }
    .xs_profile_image{
        margin-bottom: 30px;
        padding: 30px 15px;
        width: 100%;
        max-width: 300px;
    }
    .xs_content_wrapper{
        padding-top: 111px;
    }
    .xs_header_wrapper > .xs_header_inner{
        display: block;
        text-align: center;
        padding: 15px;
    }
    .xs_logo{
        margin-bottom: 15px;
    }
    .xs_nav > ul{
        text-align: center;
    }
    .xs_ticket_list > .xs_ticket{
        display: block;
    }
    .xs_ticket_list > .xs_ticket > .xs_ticket_id{
        display: block;
        width: auto;
        height: auto;
    }
    .xs_ticket_list > .xs_ticket > .xs_ticket_id > .xs_tid_bg{
        display: none;
    }
    .xs_ticket_list > .xs_ticket > .xs_ticket_detail{
        display: block;
        padding: 15px 0px;
    }
    .xs_ticket_list > .xs_ticket > .xs_ticket_action {
        max-width: 100%;
    }
    .xs_ticket_list > .xs_ticket > .xs_ticket_action > .xs_ticket_action_dd > select{
        max-width: 155px;
    }
}
/* responsive end */

.notification_section {
    background: #ff121214;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    padding: 20px;
    margin: 30px 0 0;
    border-radius: 10px;
    border: 1px solid #ff1212;
}

.notification_section p {
    font-size: 20px;
    color: #222222;
    font-weight: 600;
    margin: 0;
    line-height: 1.7;
}

.notification_section p:last-child {
    margin-top: 15px;
}