/* PRODUCER TYPE CUSTOMIZED*/
div.selectBox {
    position: relative;
    display: inline-block;
    cursor: default;
    text-align: left;
    line-height: 30px;
    clear: both;
    color: #888;
    margin-top: 20px;
}

span.selected {
    width: 167px;
    text-indent: 20px;
    border: 1px solid #ccc;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background: #f6f6f6;
    overflow: hidden;
}

span.selectArrow {
    width: 30px;
    border: 1px solid #9FD573;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
    font-size: 20px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    background: #9FD573;
}

.catAccordionBox {
    border: 1px solid silver;
    /*max-height: 275px;*/
    height:auto;
    width: 60%;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
}

.catAccordionBoxOuter {
    border: 1px solid silver;
    height: auto;
    width: 60%;
    padding: 6px 12px;
    color: #555;
    cursor: pointer;
    font-style: italic;
}

.themeBar {
    padding: 5px 10px 5px 12px;
    border-bottom: 1px solid silver;
    cursor: pointer;
}

.conversations {
    border: 1px solid silver;
    height: auto;
    left:59%;  
    position:absolute; 
    width: 60%;
    background-color:#2DB5AB;
    color: #555;
    text-overflow: ellipsis;
    cursor: pointer;
    font-style: italic;
    display: none;
    z-index:1;
    color:white;
}

.conversationBar {
    padding: 5px 10px 5px 12px;
    border-bottom: 1px solid silver;
    cursor: pointer;
}

.themeBar:not(.selected):hover
{
	background-color: rgb(208, 231, 226);
}
.conversationBar:not(.selected):hover{
    background-color: #f0f0f0;
    color:#2DB5AB;
}
.selected {
	background-color:rgb(208, 231, 226);;
	color: gray;
}
.selectedDetails{
    background-color: #f0f0f0;
    color:  #2DB5AB;
}


.arrowWrap {
    margin-top:3px;
    color: rgb(105, 106, 105);
}

.floatLeft {
    float:left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width:93%;
}
.arrowIcon {
	-webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.arrowIcon.rotated {
	-webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.displaynone {
    display: none;
}
tspan{
    text-decoration:none;
    text-shadow:none !important;
}
/* Small devices (Laptop) */
@media screen and (max-width: 1024px) {   
   .conversations {
        left:59%; 
    }
}

/* Small devices (Tablets) */
@media screen and (max-width: 768px){
    .catAccordionBoxOuter, .catAccordionBox {
        width:50%;
    }

    .conversations {
        left:50%; 
        width:47%;
    }
}

/* Small devices (mobiles) */
@media screen and (max-width: 425px){
    .catAccordionBoxOuter, .catAccordionBox {
        width:100%;
    }
    .conversations {
        left:0px;  
        position:relative; 
        width:100%;
        top:0 !important;
        z-index:0;
    }
    .floatLeft {
        width:94%;
    }
}

@media screen and (max-width: 375px){
    .floatLeft {
        width:93%;
    }
}

@media screen and (max-width: 320px){
    .floatLeft {
        width:91%;
    }
}