/* Select - Option - Table styles */

.hidden {
  display: none;
}

.countries {
  padding-bottom: 100px;
}

.countryPrices {
  width: 96%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  padding: 5px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 300px) {
  .countryPrices {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .countryPrices {
    width: 96%;
  }
}

.countryes {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: 50px;
  padding: 5px 0 5px 16px;
  border: 1px solid var(--color-border);
  color: var(--color-txt);
  border-radius: 4px;
  appearance: none;
  -moz-appearance: none;
  font-size: 18px;
  line-height: 40px;
  text-transform: uppercase;
}

.countryes::-ms-expand {
  display: none;
}

.countryes:hover {
  border-color: var(--color-btnm);
}

.countryes:focus {
  border-color: var(--color-border);
  box-shadow: none;
  color: var(--color-txt);
  outline: none;
}

.tablePrices {
  transition: all 1s ease-in;
  width: 100%;
  height: auto;
  margin: 10px auto;
  background-color: var(--color-tb-bg);
  border-radius: 0;
  font-size: 16px;
}

table {
  width: 100%;
  border: 1px solid var(--cell-border);
  position: relative;
  /*background-color: #96e8ff;*/
  border-collapse: collapse;
}

.table {
  /*max-width: 100%;*/
  width: 100%;
  height: auto;
}

tr {
  vertical-align: middle;
}

.trHead {
  font-weight: 900;
}

.tdHead {
  background-color: var(--color-txt);
  color: var(--color-bg);
  font-weight: 400;
}

tr:nth-child(odd) {
  background-color: var(--color-bg);
}

tr:nth-child(even) {
  background-color: var(--color-tb-child);
}

td:nth-child(1) {
  width: 50%;
  border-bottom: 1px solid var(--cell-border);
  border-right: 1px solid var(--cell-border);
  padding: 10px;
  /*background-color: rgb(234, 250, 234);*/
}

td:nth-child(2) {
  width: 30%;
  border-bottom: 1px solid var(--cell-border);
  border-right: 1px solid var(--cell-border);
  padding: 10px;
  /*background-color: rgb(240, 240, 255);*/
}

td:nth-child(3) {
  width: 20%;
  border-bottom: 1px solid var(--cell-border);
  padding: 10px;
  /*background-color: rgb(240, 240, 255);*/
}

/* Select - Option - Table styles */

