a:hover {
  cursor: pointer;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

.form-table select{
  min-width: 168px;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 500px;
  background-color: #555;
  color: #fff;
  text-align: left;
  padding: 5px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}



/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

#addForm, #editForm{
 margin-right: 25px;
 margin-left: 25px;
}

.setting-line{
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.setting-line-image{
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.setting-line-submit{
  margin-bottom: 5px;
  display: flex;
  justify-content: flex-end;
}

.setting-line-image .image-preview-wrapper{
  text-align: center;
}

.setting-line-image #image-preview{
  width: 150px;
  height: 150px;
}


.setting-line-image .btn-upload{
  height: 40px;
  width: 300px;
}

.setting-line label{
  width: 200px;
  display: inline-block;
}

.setting-line button{
  align-self: flex-end;
}

.setting-line input, .setting-line textarea{
  flex-grow: 1;
}

.stripe-connect{
  height: 33px;
  width: 190px;
  background-image: url('img/stripe-connect.png');
  display: block;
}

.stripe-connect:hover, .stripe-disconnect:hover{
  cursor: pointer;
}

.stripe-disconnect{
  display: block;
}

#specifications-list{
  position: relative;
}

.li-spec{
  display: flex;
  margin-left: 200px;
  align-items: center;
  position:relative;
}

.setting-line-specifications{
  margin-top: 10px;
}

.add-spec{
  margin-left: 200px; 
}

.li-spec input{
  margin-left: 10px;
  margin-right: 10px;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  width: 100%;
  top: 30px;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.ship-all, .ship-country{
  display:flex;
  align-items: center;
  height: 40px;
  margin-bottom: 5px;
}

.ship-countries{
  display: flex;
  flex-direction: column;
}

.ship-all input, .ship-all label, .ship-country input, .ship-country label{
  margin: 5px;
  
}


.add-shipping-country{
  display: flex;
  height: 40px;
  align-items: stretch;
  margin-bottom: 5px;
  justify-content: flex-end;
}

.lbl-ship-bold{
  font-weight: bold;
  flex-grow: 1;
}

.wrap-shipping{
  width: 800px;
}

#loading-msg{
  display: none;
}

.order-table-head{
  text-align: left;
}

.order-table-row{
  min-width: 200px;
}

.product-status-collected{
  background-image: url('img/icon_check.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  background-size: 25px 25px;
  border: 0;
}

.order-status{
  color: green;
  display: inline-block;
}

.order-status-awaiting{
  color: orange;
}

.order-status-failed{
  color: red;
}

.order-change-status{
  margin-left: 25px;
  display: inline-block;
}

