.gaz-plans-box__box {
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding-top: 20px;

}
@media (min-width: 540px) {
  .gaz-plans-box__box {
    border-radius: 7px;
  }
}

.gaz-plans-box__btn-group{
  display: flex;
  max-width: 100%;
  margin: 0 auto;
}
.gaz-plans-box__btn-group button{
  flex-basis: 100%;
  color: #fff;
  background-color: #007bff;
  border-color: #ffffff42;
  font-weight: bold;
  padding: 0;
  height: 45px;
}
.gaz-plans-box__btn-group button:hover{
  color: white;
}
.gaz-plans-box__btn-group button span{
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gaz-plans-box__btn-group button.selected span{
  color: var(--secondary);
}
.gaz-plans-box__btn-group button.selected::before{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  content: "";
  width: 93%;
  height: 84%;
  background-color: white;
  color: black;
  z-index: 1;
  border-radius: 0.25rem;
}
.gaz-plans-box__descritpion{
  font-size: .9rem;
}
.gaz-plans-box__descritpion ul{
  padding-left: 20px;
  list-style-type: none;
}
.gaz-plans-box__current-price {
  position: relative;
}
.gaz-plans-box__current-price .price{
  font-size: 4rem;
  font-weight: bold;
  color: var(--secondary);
}
.gaz-plans-box__current-price .currency{
  position: absolute;
  font-size: 2rem;
  top: 3px;
  font-weight: bold;
  color: var(--secondary);
}
.gaz-plans-box__current-price .type{
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: bold;
}
.gaz-plans-box__current-price .cycle{
  font-size: .9rem;
  position: relative;
  top: -5px;
  color: var(--secondary);
  font-weight: bold;
}

.gaz-plans-pricing .btn-subscription-gradiant {
  text-transform: uppercase;
  font-weight: bold;
  background: var(--primary);
  background: var(--gradient);
}

.gaz-plans-pricing .input-email {
  position: relative;
}

.gaz-plans-alternatives__product {
  display: block;
  border: 1px solid var(--primary);
  border-radius: 6px;
  align-items: center;
  padding: 20px;
  opacity: 0.7;
  position: relative;
}
@media (min-width: 768px) {
  .gaz-plans-alternatives__product {
    display: flex;
  }
}
.gaz-plans-alternatives__product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
  cursor: pointer;
}
.gaz-plans-alternatives__product.selected {
  opacity: 1;
  -webkit-box-shadow: 0px 0px 11px 1px rgba(0,123,255,1);
  -moz-box-shadow: 0px 0px 11px 1px rgba(0,123,255,1);
  box-shadow: 0px 0px 11px 1px rgba(0,123,255,1);
}
.gaz-plans-alternatives__product .price{
  flex: 0  0 50%;
  text-align: center;
}

@media (min-width: 768px) {
  .gaz-plans-alternatives__product .price{
    text-align: left;
  }
}
.gaz-plans-alternatives__product .description ul{
  margin: 0;
  padding: 0;
  text-align: left;
  list-style-position: inside;
}
.gaz-plans-alternatives__product .description{
  font-size: .9rem;
}

.country-list {
  background: white;
  color: black;
  position: absolute;
  z-index: 1;
  width: 100%;
}
.country-list .country {
  cursor:pointer;

  width: 100%;
  padding: 10px;


}
.country-list .country:hover {
  background-color: #eeeeee;

}