label[for^="shipping_method_0_fedex_hold_at_location"] {
   position: relative;   
}
tr.fedex-locations td {
   width: 100% !important;

}

tr.fedex-locations select {
   width: 100%;
   padding: 8px;
   font-size: 14px;
   color: #333;
   background-color: #fff;
   line-height: 1.9;
   border-radius: 8px;
   border-color: #ddd;
   border-style: solid;
   border-width: 1px;
   box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
   transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
   height: 48px;
}

tr.fedex-locations select:focus {
   border-color: #66afe9;
   outline: 0;
   box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.fedex-tooltip {
   position: absolute;
   bottom: calc(100% + 10px);
   width: 205px;
   right: 0;
   /* border: 1px solid red; */
   /* height: 40px; */
}

.fedex-tooltip__glyph {
   background-color: #05626F;
   font-size: 8px;
   width: 14px;
   height: 14px;
   display: inline-block;
   padding-top: 2px;
   border-radius: 10px;
   text-align: center;
   color: #fff;
   position: absolute;
   bottom: -30px;
   right: -20px;
   font-weight: 600;
}

.fedex-tooltip__content {
   border: 2px solid #05626F;
   color: #333;
   background-color: #fdfdfd;
   border-radius: 4px;
   padding: 10px 10px 15px;
   border-radius: 2px;
   font-weight: 400;
   font-family: "Lato", sans-serif;
   display: none;
   width: 300px;
   margin-left: 70px;
}
.show-tooltip {
   display: block !important;
}

@media screen and (max-width: 600px) {
   .fedex-tooltip__content {
      margin-left: 62px;
      width: 270px;
   }
   label[for^="shipping_method_0_fedex_hold_at_location"] {
      position: absolute;
      padding-top: 2px;
   }   
 }
 