 
#country-list{position: absolute;z-index: 99; width: 90%;
              max-height: 500px;
              overflow-y: scroll;
              box-shadow: 2px 2px 2px #ccc;
              overflow-x: hidden;}
#country-list li{
   font-size: 14px;
   color: black;
   padding: 10px;
   background: white;
   width: 100%;
}
/* width */
#country-list::-webkit-scrollbar {
   width: 5px;
}

/* Track */
#country-list::-webkit-scrollbar-track {
   background: #f1f1f1; 
}

/* Handle */
#country-list::-webkit-scrollbar-thumb {
   background: black; 
   border-radius: 10px;

} 

/* Handle on hover */
#country-list::-webkit-scrollbar-thumb:hover {
   background: #555; 
}
#country-list li:hover{background:#ece3d2;cursor: pointer;}
.notifications {
   width: 300px;
   height: 0px;
   opacity: 0;
   position: absolute;
   top: 63px;
   right: 62px;
   border-radius: 5px 0px 5px 5px;
   background-color: #fff;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

.notifications h2 {
   font-size: 14px;
   padding: 10px;
   border-bottom: 1px solid #eee;
   color: #999
}

.notifications h2 span {
   color: #f00
}

.notifications-item {
   display: flex;
   border-bottom: 1px solid #eee;
   padding: 6px 9px;
   margin-bottom: 0px;
   cursor: pointer
}

.notifications-item:hover {
   background-color: #eee
}

.notifications-item img {
   display: block;
   width: 50px;
   height: 50px;
   margin-right: 9px;
   border-radius: 50%;
   margin-top: 2px
}

.notifications-item .text h4 {
   color: #777;
   font-size: 16px;
   margin-top: 3px
}

.notifications-item .text p {
   color: #aaa;
   font-size: 12px
}
@media only screen and (max-width: 1000px) {
   .li_nav {
      
      padding-bottom:10px !important;
      font-size:11px;
   }
}
.main{
   margin:1rem;
   max-width:350px;
   width:50%;  
   height:250px;
}
@media(max-width:34em){
   .main{
      min-width:150px;
      width:auto;
   }
}
.dropdown-select {
   background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
   background-repeat: repeat-x;
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
   background-color: #fff;
   /*border-radius: 6px;
   border: solid 1px #eee;
   box-shadow: 0px 2px 5px 0px rgba(155, 155, 155, 0.5);*/
   box-sizing: border-box;
   cursor: pointer;
   display: block;
   float: left;
   font-size: 14px;
   font-weight: normal;
   height: 42px;
   line-height: 40px;
   outline: none;
   padding-left: 18px;
   padding-right: 30px;
   position: relative;
   text-align: left !important;
   transition: all 0.2s ease-in-out;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   white-space: nowrap;
   width: auto;






   width: 170px;
   height: 42px;
   line-height: 42px;
   margin: 0;
   border: 0;
   padding: 0 25px;
   color: #1d1d1d;
   font-size: 14px;
   -webkit-user-select: none;
   user-select: none;
   -webkit-appearance: none;
   appearance: none;
   position: absolute;
   left: 2px;
   top: 2px;
   background: #F3F3F3;
   cursor: pointer;

}



.dropdown-select:after {
   height: 0;
   width: 0;
   border-left: 4px solid transparent;
   border-right: 4px solid transparent;
   border-top: 4px solid #777;
   -webkit-transform: origin(50% 20%);
   transform: origin(50% 20%);
   transition: all 0.125s ease-in-out;
   content: '';
   display: block;
   margin-top: -2px;
   pointer-events: none;
   position: absolute;
   right: 10px;
   top: 50%;
}

.dropdown-select.open:after {
   -webkit-transform: rotate(-180deg);
   transform: rotate(-180deg);
}

.dropdown-select.open .list {
   -webkit-transform: scale(1);
   transform: scale(1);
   opacity: 1;
   pointer-events: auto;
}

.dropdown-select.open .option {
   cursor: pointer;
}

.dropdown-select.wide {
   width: 100%;
   height: 40px;
}

.dropdown-select.wide .list {
   left: 0 !important;
}

.dropdown-select .list {
   box-sizing: border-box;
   transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
   -webkit-transform: scale(0.75);
   transform: scale(0.75);
   -webkit-transform-origin: 50% 0;
   transform-origin: 50% 0;
   box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
   background-color: #fff;
   border-radius: 6px;
   margin-top: 4px;
   padding: 3px 0;
   opacity: 0;
   overflow: hidden;
   pointer-events: none;
   position: absolute;
   top: 100%;
   left: 0;
   z-index: 999;
   max-height: 250px;
   overflow: auto;
   border: 1px solid #ddd;
}

.dropdown-select .list:hover .option:not(:hover) {
   background-color: transparent !important;
}
.dropdown-select .dd-search{
   overflow:hidden;
   display:flex;
   align-items:center;
   justify-content:center;
   margin:0.5rem;
}

.dropdown-select .dd-searchbox{
   width:90%;
   padding:0.5rem;
   border:1px solid #999;
   border-color:#999;
   border-radius:4px;
   outline:none;
}
.dropdown-select .dd-searchbox:focus{
   border-color:#12CBC4;
}

.dropdown-select .list ul {
   padding: 0;
}

.dropdown-select .option {
   cursor: default;
   font-weight: 400;
   line-height: 40px;
   outline: none;
   padding-left: 18px;
   padding-right: 29px;
   text-align: left;
   transition: all 0.2s;
   list-style: none;
}

.dropdown-select .option:hover,
.dropdown-select .option:focus {
   background-color: #f6f6f6 !important;
}

.dropdown-select .option.selected {
   font-weight: 600;
   color: #12cbc4;
}

.dropdown-select .option.selected:focus {
   background: #f6f6f6;
}

.dropdown-select a {
   color: #aaa;
   text-decoration: none;
   transition: all 0.2s ease-in-out;
}

.dropdown-select a:hover {
   color: #666;
}
#suggesstion-box2{
   margin-top: 40px !important;  
}
@media only screen and (max-width: 1999px) {
   #txtSearchValue {
      height:30px;
   }
}

.progress_shipping{
   height: 15px;border-radius: 15px; margin-top: 10px; margin-bottom: 10px;background-color: #e1dfd6;-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);box-shadow: inset 0 1px 2px rgba(0,0,0,.1); 
}
.progress-meter{
   position: relative;
   display: block;
   height: 100%;
   background-color: #007aff;
   text-align: center; 
   line-height: 15px;
   color: #ffffff;
   -webkit-animation: 2s linear 0s normal none infinite running progress-bar-stripes;animation: 2s linear 0s normal none infinite running progress-bar-stripes;background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0)); background-size: 40px 40px; transition: 0.9s linear; transition-property: width, background-color;border-radius: 15px;  
}
.free_shipping_massage1 {
   margin-top: -4px;
   margin-bottom: 20px;
   color: black;
   font-size: 14px;
   text-align: left;
}
.media{
   display: block;
   padding: 8px 15px;
   margin: 0;
   line-height: 21px;text-decoration: none;
   border-bottom: 1px solid #dddddd;
}
.media-object{
   width: 38px;
   height: 38px;
}
.media-body{
   display: table-cell;
}
.media-text{
   display: block;
   color: #777;
   margin: 0;
   font-size: 13px;
   min-width: 210px;
}
.media-meta{
   font-size: 11px !important;
   margin: 0;
   color: #8f8f8f;
}
