/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
  /*color: #777;*/
  text-transform: uppercase;
}


/* change colours to suit your needs */

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}


/* change colours to suit your needs */

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* change border colour to suit your needs */


/* default styling start */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto', sans-serif;
  outline: none;

  // -webkit-transition:all 0.1s ease-in-out;
  // -moz-transition:all 0.1s ease-in-out;
  // -o-transition:all 0.1s ease-in-out;
  // transition:all 0.1s ease-in-out;
}

body {
  background: #fafafa;
  color: #4a4a4a;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
  font-family: 'Roboto', sans-serif;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: normal;
  color: #cccccc;
}

h1.heading {
  font-size: 16px;
  font-weight: 700;
  color: #4a4a4a;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  margin-bottom: 16px;
}

.default_btn {
  font-size: 14px;
  background: #065492;
  padding: 8px 16px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  outline: none;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.default_btn:disabled{
  cursor: not-allowed;
  background: #9b9b9b;
  pointer-events: none;
}
.default_btn_disable {
  background: #9b9b9b;
  padding: 8px 16px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  outline: none;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.default_btn:hover,
.default_btn:focus,
.default_btn:active {
  background: #054375;
  color: #fff;
  outline: none;
}

.secondary_btn {
  color: #065492;
  background-color: #ffffff;
  box-shadow: 0 0 0 2px #065492 inset;
  border-radius: 4px;
  padding: 8px 16px;
  border: none;
}

.default_btn_disable:hover {
  background: #9b9b9b;
}

.default_btn_cancel {
  background: #ccc;
  padding: 8px 16px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  outline: none;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.default_btn_cancel:hover,
.default_btn_cancel:focus,
.default_btn_cancel:active {
  background: rgba(200, 200, 200, 0.6);
  outline: none;
}

input[type="text"],
input[type="email"],
textarea,
select,
input[type="search"],
input[type="number"],
input[type="password"],
select {
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  font-size: 14px;
  border-radius: 3px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding-left: 10px;
  color: #4a4a4a;
}
.form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.quantity-input-area {
  margin: 10px -5px;
}

.quantity-input-area div {
  padding: 2%;
}

.quantity-input-area div label {
  margin-bottom: 4px; 
  color: #46afec;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.has-error .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #fafafa;
  opacity: 0.8;
}

label {
  margin-bottom: 8px;
  color: #445870;
  font-size: 12px;
  font-weight: 500;
}

label.large-size-label {
  font-size: 14px;
}

.red_bold {
  color: red;
  font-weight: bold;
}

textarea {
  height: 82px!important;
  resize: none;
  line-height: 20px;
}

select {
  -webkit-appearance: none;
  background: #fff;
  height: 38px!important;
}


/* default styling end */

#main-view {
  padding-bottom: 10px;
  width: 100%;
}

#listCorrection {
  font-size: large;
  margin-top: 9%;
}

.error-text {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.67;
  color: #d0021b;
}

.success-text {
  color: #16AB05;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.67;
}

.blue-text {
  color: #4a90e2;
}


/* STATUS BAR */

.statusBarBorderBar {
  position: absolute;
  width: 100%;
  border: solid;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 6px;
  height: 14px;
  margin-top: 2%;
  left: 0;
}

.statusBarFilledPart {
  position: absolute;
  border-radius: 6px;
  background: #065492;
  margin-top: 2%;
  left: 0;
  height: 14px;
  transition: 0.1s ease-in-out;
}

.statusBarButton {
  margin-top: 14px;
  position: absolute;
  transition: 0.1s ease-in-out;
  width: 30px;
  height: 30px;
  background: #fafafa;
  border-radius: 50%;
  box-shadow: 0 0 6px #999999;
}

.nodeThirteen {
  width: 20% !important;
  font-weight: 600;
  font-size: larger;
  text-align: center !important;
}

li.nodeThirteen_mod {
  width: 16%;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  list-style-type: none;
  display: inline-block;
  cursor: pointer;
}

li.nodeThirteen_mod_international{
  width: 11%;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  list-style-type: none;
  display: inline-block;
  cursor: pointer;
}

.top_status_container {
  padding: 30px;
  position: relative;
}

.sub_states {
  background: #fff;
  border-radius: 3px;
  margin-top: 30px;
  padding: 20px;
  box-shadow: 0px 1px 3px 1px #ccc;
  overflow-y: auto;
  height: calc(100% - 80px);
}

/* sub_statusbar for mobile */

.sub_statusbar {
  margin: 20px 0;
}

.sub_statusbar li {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  margin-right: 10px;
}

.sub_statusbar li a.current_status {
  padding: 10px;
  background: #12aaeb;
  border-radius: 3px;
  color: #fff;
  font-weight: 700;
}

.sub_statusbar li a img {
  width: 18px;
  vertical-align: middle;
}

.fade-in-out {
  /*transition: 0.25s linear all;*/
  opacity: 1;
}

.fade-in-out.ng-hide {
  opacity: 0;
}

.active_div {
  border: 1px solid #065492 !important;
}

@media only screen and (min-width: 768px) {
  .phone_multi_step {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .web-view {
    display: none;
  }
  .phone_multi_step {
    display: block;
    margin-bottom: -20px;
  }
  .phone_multi_step li {
    display: inline-block;
  }
  .phone_multi_step li a {
    display: inline-block;
    padding: 4px;
    font-size: 12px;
    margin: 10px 3px;
    cursor: pointer;
    color: #065492;
    font-weight: 400;
  }
  .phone_multi_step li a:hover {
    text-decoration: none;
  }
  .top_status_container {
    padding: 10px;
  }
}

span.circle_questionmark {
  color: #000;
  font-size: 9px;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  text-align: center;
  line-height: 12px;
  display: inline-block;
  background: #fff;
  opacity: 0.5%;
  font-weight: bold;
}

.mrgn_btm {
  margin-bottom: 16px;
}

.mrgn_top {
  margin-top: 16px;
}

.cursor_pointer {
  cursor: pointer;
}

.pagination {
  height: 40px;
  margin: 20px 0;
}

.pagination ul {
  display: inline-block;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  list-style-type: disc;
}

.pagination ul>li {
  display: inline;
}

.pagination ul>.active>a,
.pagination ul>.active>span {
  color: #999999;
  cursor: default;
}

.pagination ul>li>a,
.pagination ul>li>span {
  float: left;
  padding: 0 14px;
  line-height: 38px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left-width: 1;
}

.paginationList li {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  color: #bcbcbc;
  position: relative;
}

.paginationList li a{
  float: left;
  padding: 0 14px;
  line-height: 38px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}

.paginationList li.click-icon a{
  float: left;
  padding: 0 14px;
  line-height: 38px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}

.paginationList li.no-click-icon a{
  float: left;
  padding: 0 14px;
  line-height: 38px;
  text-decoration: none;
  background-color: #cccccc;
  border: 1px solid #dddddd;
  cursor: default;
}

.paginationList>li>input[type="text"] {
  width: 48px;
  margin: 0 !important;
  border: 1px solid #dddddd;
}

.pudoHistoryTable thead tr th, .pudoHistoryTable tbody tr td{
  vertical-align: middle !important;
}

.starText p{
  font-size: 12px;
}

.starText span{
  font-weight: bold;
}

.selectedServiceMark{
  position: absolute;
  top: 10px;
  right: 26px;
}
 .selectedItemMetric{
  position: absolute;
  top: 20px;
  right: 26px;
 }

 .cursor_pointer{
  cursor: pointer;
 }

 .red_border {
   border: 1px solid red !important;
 }

 span.circle_questionmark {
   color: #444;
   font-size: 9px;
   width: 12px;
   height: 12px;
   border: 1px solid #444;
   border-radius: 50%;
   text-align: center;
   line-height: 12px;
   display: inline-block;
   background: #fff;
   opacity: 0.5%;
   font-weight: bold;
 }

 .pos_abs {
   position: absolute;
   right: 24px;
   top: 39px;
 }

 .historyDownload a:hover, .historyDownload a{
  text-decoration: none;
  color: #fff;
 }

 .contentListParent {
     width: 100% !important;
     max-height: 150px;
     background: #fff;
     position: absolute;
     overflow-y: scroll;
     overflow-x: hidden;
     z-index: 999;
     box-shadow: 1px 1px 5px #ccc;
     top: 64px;
 }

 .contentList {
     /*border: 1px solid #ccc;*/
     color: #000;
     padding: 5px;
     text-align: left;
     cursor: pointer
 }

 .contentList:hover{
  background: #12aaeb;
  color: #fff;
 }
 .pickUpContentList{
  top: 364px !important;
  min-width: 13% !important;
  width: 13% !important;
 }
 .newBookingExpressContentList{
  top: 364px !important;
  min-width: 19% !important;
  width: 19% !important;
 }
 .consignmentDetailsGrid{
  padding-bottom: 30px;
 }
 .requestContentList{
  top: 364px !important;
  min-width: 19% !important;
  width: 19% !important;
 }
.mb10{
  margin-bottom: 10px;
}
.mb20{
  margin-bottom: 20px;
}
.bradius{
  border-radius: 3px !important;
}
.saveButton:disabled{
  background-color: #9b9b9b;
  border-color: #9b9b9b;
  cursor: not-allowed;
}
.modal-backdrop{
  position: initial !important;
}

.inp-field-container {
  margin-bottom: 16px;
}

.color-primary {
  color: #065492;
}

.border-light {
  border: 1px solid #e7e7e7;
}

.body-card-bordered {
  margin-top: 16px;
  background: white;
  border: 1px solid #e7e7e7;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  background-color: #fafbfc;
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
  border: 1px solid #f0f0f0;
}

.table-action-btn {
  min-height: 36px;
}

.table-action-right-items-container :not(:last-child) {
  margin-right: 8px;
}

.flex-end-center {
  display: flex;
  justify-content: flex-end;
  align-items: center
}

.input-group-header {
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  padding-bottom: 16px;
}

.fontsize12 {
  font-size: 12px;
}

/* Modal CSS Starts */

.modal-header-dark {
  background-color: #065492;
  color: #ffffff;
  padding: 16px;
  height: 50px;
}

.modal-header-dark .modal-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 16px;
}

.modal-header-dark .close {
  color: #ffffff;
  opacity: 1;
  margin-top: -8px;
  font-size: 35px;
}

.modal.modal-fullscreen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.modal-fullscreen .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border: 0;
}

.modal-fullscreen .modal-dialog {
  position: fixed;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.modal-fullscreen .modal-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0;
  box-shadow: none;
}

.modal-fullscreen .modal-body {
  position: absolute;
  top: 50px;
  bottom: 60px;
  width: 100%;
  overflow: auto;
  padding: 16px;
}

.modal-fullscreen.modal-no-footer .modal-body {
  bottom: 0;
}

.modal-fullscreen .modal-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  padding: 16px;
}

#add_new_address .modal-footer{
  border-top: 0px;
}

.modal-fullscreen .modal-header-dark .close {
  margin-top: -30px;
}

.drawer-modal{
  animation-play-state: running;
  animation-iteration-count: 1;
  animation-duration: 0.5s;
  animation-name: modal-open;
}
@keyframes modal-open {
  from {
    transform: translate(200%, 0);
   }
   to {
    transform: translate(0%, 0);
   }
}
/* Modal CSS Ends */

.address-box-name {
  padding-bottom: 4px;
  font-weight: 700;
}

.address-box-address {
  padding-bottom: 4px;
}

.underline-blue {
  color: #065492;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 800;
  padding: 20px;
}

.search_dropdown{
  width: 420px;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px 3px 3px 3px;
  margin-top: 0px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 1px 1px 5px #ccc;
  z-index: 9;
}

.search_dropdown li div {
    padding: 10px;
    display: block;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    background: transparent;
    font-weight: normal;
    cursor: pointer;
}

.branch-list:hover {
  background-color: #d3d3da;
}

/* hide up/down arrows ("spinners") on input fields marked type=number */
.no-spinners [type='number'] {
  -moz-appearance:textfield;
}
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.verticalRadio{
  padding: 5px 0;
}
.input-group-error {
  color: #a94442;
  position: absolute;
  width: 100%;
  top: 34px;
  line-height: 20px;
  left: 0px;
  font-size: 12px;
}
.conditional_edit_tag {
  cursor:not-allowed;
  pointer-events:none;
  color:grey
}

.fixed-header-table th{
	position: sticky;
	top: -1px;
	background: white;
	box-shadow: inset 0 -6px 6px -6px #ddd;
}

.paddingCashSettlementRow {
  padding : 30px;
}

.cashSettlementTable {
  font-size: 14px;
}

.cashSettlementTableHeader {
  text-align: center;
}

.cash-settled {
  color :#52C41A;
}

.cash-unsettled {
  color : #D00201;
}

.cash_settlement_input {
  margin-right: 8px;
  width: 94px;
  height: 30px;
  border-radius: 4px;
  border : 1px solid #28A8DF;
}

.cash-settlement-main {
  padding : 25px 20px 0px 20px;
  display: flex;
  justify-content: space-between;
}

.cash-settlement-header-text {
  min-width: 150px;
  padding-top:10px;
}

.cash-settlement-table-wrapper thead tr th {
  text-align: center;
}

.cash-settlement-table-wrapper thead tr {
  text-align: center;
  height: 48px;
  border : 0
}

.cash-settlement-table-wrapper tbody tr {
  background: #fff;
  height: 48px;
  text-align: center;
}

.cash-settlement-filter {
  background: #fff;
  border : 1px solid #e7e7e7;
  font-size: 16px;
  height: calc(100% - 55px);
}

.date-input-error-text{
  float: left; 
  margin-top: 0px;
}

.cash-settlement-filter-header-text {
  width: 200px;
  margin-right: 8px;
  color : #065492
}

.cash-settlement-status input{
  height: 30px;
  width: 94px;
  border-radius: 4px;
  margin-right: 8px;
 border : 1px solid #28A8DF;
}

.cash-settlement-status span button {
  width: 90px;
}

#cash-settlement-submitBlock{
  float: right;
  background: #ecf5ea;
  padding: 10px;
  border-radius: 5px;
  margin-right: 5px;
}

.positionRelative{
  position: relative;
}

.cashSettlementPagination {
  position: absolute;
  right: 10px;
  top: 15px;
}

.modal-title{
  font-weight: 600;
  letter-spacing: normal;
}

.modal-main{
  padding: 24px 16px 24px 16px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  display: flex;
  margin-bottom: 10px;
}

.document-modal-select{
  margin-right: 20px;
  width: 200px;
  height: 36px;
  color: #999999;
  font-size: 14px;
}

.document-file-name-text{
  padding-top: 13px;
  margin-left: 10px;
  font-size: 11px;
  width: 110px;
}
.word-break{
  word-break: break-word;
}
.add-doc-button-wrapper{
  color:#175895;
  cursor: pointer;
  letter-spacing: normal;
  padding: 12px 0px 60px 16px;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  justify-content: space-between;
}

.add-doc-button{
  border:none;
  background: none;
}

.remove-doc-button{
    font-size: 11px;
    color: red;
    border: 1px solid red;
    border-radius: 4px;
    padding: 2px;
    margin-top: -19px;
    height: 18px;
    margin-right: -8px;
    cursor: pointer;
}

.doc-heading{
  color: #333333;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: normal;
  margin : 20px 0px 24px 20px;
}

.document-upload-loader{
  height:15px;
  width:15px;
  margin-left: 5px;
  vertical-align: text-top;
}

input[name=passportDob]:before {
  margin-top: 35px !important;
  padding-right: 25px;
}


.gstValidationButton {
  display: flex;
  justify-content: space-around;
  margin-top: 10%;
}

.gstValidationText {
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}

/* Tabs CSS Starts */
.tab-container{ 
  display: flex;
  height: 60px;
}
.tab{
  cursor: pointer;
  align-items: center;
  display: flex;
  padding: 0 16px;
}

.activetab {
  color: black;
  border-bottom: 3px solid #065492;
}

.viewSellerRow{
  display: flex;
  flex-direction: row;
  word-wrap: break-word;
  align-items: center;
  margin-bottom: 8px;
}

.viewSellerLabel{
  color: #333333;
  width: 20%;
  font-size: 12px;
  max-width: 250px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.viewSellerLabelFull{
  color: #333333;
  width: 40%;
  font-size: 12px;
  max-width: 250px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.viewSellerData{
  color: #111111;
  width: 25%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.viewSellerDataFull{
  color: #111111;
  width: 50%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.position-relative {
  position: relative;
}

.searching-indicator {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #999;
}

.hsn-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  max-height: 250px;
  overflow-y: auto;
  width: 270px;
}

.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-list li {
  padding: 8px 10px;
  cursor: pointer;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  line-height: 16px;
}

.dropdown-list li:hover {
  background-color: #f5f5f5;
}

.hsn-code {
  font-weight: 500;
}

.hsn-separator {
  margin: 0 4px;
}

.hsn-description {
  color: #666;
}

.hsn-description-disabled {
  color: #999;
}

.hsn-tags {
  margin-left: 3px;
  display: inline-block;
}

.hsn-tag {
  margin-right: 4px;
  font-size: 10px;
  background-color: #f5f2f1;
  color: #666666;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 2px 8px;
  display: inline-block;
}

.no-results {
  color: #999;
  text-align: center;
  padding: 8px;
}

.custom-tooltip {
  position: absolute;
  z-index: 1000;
  width: 290px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  background-color: #f5f9ff;
}

.tooltip-container {
  position: relative;
  padding: 0;
  margin: 0;
}

.tooltip-left-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: #3c82f5;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.tooltip-content {
  padding: 16px 16px 16px 20px;
  background-color: #f5f9ff;
  border-radius: 10px;
}

.tooltip-title {
  font-size: 16px;
  font-weight: 500;
  color: #2355da;
  margin-bottom: 8px;
}

.tooltip-paragraph {
  font-size: 11px;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.5;
}