/* Popup container */
.popup.fenix-provided-options {
  position: relative;
  display: block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  background-color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 30%;
  margin-left: -80px;
  padding: 9px 14px;
  max-width: 450px;
  min-width: 300px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
.fenix-provided-options .shipping-options-title {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    font-size: 14px;
    margin: 10px 5px 3px 0;
    letter-spacing: normal;
  	padding: 8px 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.fenix-provided-options h2.shipping-options-title div:last-child {
    width: 45%;
  text-align: right;
}
.fenix-provided-options .fenix-logo {
    font-size: 9px;
    letter-spacing: normal;
    color: #9a9a9a;
  	text-align: left;
  	margin-bottom: 10px;
}
.fenix-provided-options table {
    font-size: 12px;
    width: 100%;
    color: rgba(0,0,0,0.8);
}
.fenix-provided-options table thead {
    border-bottom: 1px solid #ccc;
}
.fenix-provided-options table tr {
    border-bottom: #d5d5d5 1px solid;
}
.fenix-provided-options table td{
	padding-top: 7px;
  	padding-bottom: 7px;
}
a#view-all-shipping::before {
    content: '|';
    margin-right: 5px;
    color: #000;
}
.shipping-options-container a#fenix-toggle-zip::before{
	content: '(';
}
.shipping-options-container a#fenix-toggle-zip::after{
	content: ')';
}