* {
  box-sizing: border-box;
}

body {font-family: Lato; background-color: #f6f6f6}
.desktop {display: block;}
.mobile {display: none;}

.container {
    width: 1400px;
    min-width: 365px;
    margin: auto;
  }

.columns {
  float: left;
  width: 33.3%;
  padding: 1.5%;
  border: none;
}
h4 {
    font-family: Lato;
    font-size: 16px;
}
h2 {margin-bottom: 7px;}
.header {
    text-align: center;
    font-weight: 500;
}
.mt-0 {margin-top: 0px;}
p { margin: 0px; line-height: 1.5em;}

p.promote {
    background: #c4cfff;
    padding: 20px 10px 20px 30px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.8em;
    width: -webkit-fill-available;
}

img { 
    display: inline-block;
    margin-right: 11px;
    margin-top: 0.3rem;
}

.price {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 20px;
  box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2);
  background: white;
}

.price:hover {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.30), 0px 4px 8px 3px rgba(0, 0, 0, 0.15)
}

.price .header {
  color: black;
  font-size: 32px;
  border-radius: 20px 20px 0px 0px;
  display: block;
  padding-top: 2.7rem;
  padding-bottom: 0px;
}

.price li {
    display: flex;
    padding: 6px 20px;
}

.price .amount {
  font-size: 25px;
  font-weight: bold;
  text-align: center !important;
  display: block;
}
.price .amount.free {
    margin-bottom: 5.3rem;
}
.price .amount span {
  font-size: 16px;
  font-weight: normal;
}
.price .amount img {
    display: inline-block;
    margin-right: 4px;
    height: 1.2rem;
    margin-top: 0.3rem;
}


.price li.description {
    text-align: center;
    color: #838383;
    display: block;
    margin: 0 4%;
}

.button {
    padding: 18px 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 25px;
    display: block;
    text-align: center;
    margin: 20px 0% 15px 0%;
}
.price li.gray, .price li.yellow, .price li.black {
    display: block;
}
.gray .button {
    color: black;
    background-color: #d5d5d5;
    margin-top: 6.3rem;
}
.yellow .button {
    color: white;
    background: linear-gradient(90deg, rgba(255,7,7,1) 0%, rgba(254,36,91,1) 47%, rgba(252,78,40,1) 100%);
    margin-top: 0.5rem;
}
.black .button {
    color: white;
    background-color: black;
}
.unable { opacity: 0.4;}

/*Radio Buttons*/
.OptionsSelector {
    column-gap: 1rem;
    display: flex;
    justify-content: center;
    border: 1px solid #c8c8c8;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    margin: 25px 5%;
}
.Radio {
    align-items: center;
    cursor: pointer;
    display: flex;
    letter-spacing: -.008em;
    overflow: hidden;
    white-space: nowrap;
}
.Radio-input--checked {
    border: 1px solid #33b1ff; 
}

.Radio-input {
    appearance: none;
    border: 2px solid black;
    border-radius: 50%;
    color: #33b1ff;
    cursor: pointer;
    display: grid;
    height: 22px;
    margin-right: 0.5rem;
    place-content: center;
    width: 22px;
}
.Radio-input:before {
    background-color: black;
    border-radius: 50%;
    content: "";
    height: 12px;
    transform: scale(0);
    transition: transform .12s ease-in-out;
    width: 12px;
}
.Radio-input--checked:before {
    transform: scale(1);
}
.center {
  text-align: center;
}


/*Tabs*/
.tab {display: none;}
.tab-links {
    text-align: center;
    margin: 2rem 0rem 1rem;
    border-bottom: 1px solid;
}
.tab-links button {
    background: transparent;
    border: none;
    font-size: 16px;
    padding: 10px 8px;
}
button.tab-link.active {
    border-bottom: 4px solid #FC4E28;
}
button.tab-link.border {
    /*border-bottom: 4px solid #feb600;*/
}
button.tab-link.brands.active {
    border-bottom: 4px solid black;
}

/*Disclaimer*/
.payment-form {
  padding: 1REM 5%;
  text-align: center;
}  
.payment-form p{
  font-size: 15px;
  color: #484848;
  line-height: 1.8em;
}


@media only screen and (max-width: 1500px) {
  .container {
    margin: auto;
  }
  .columns {width: 100%;}
  .price .header {padding-top: 1.7rem;}
  .price li { padding: 6px 40px;}
  .price .amount.free {margin-bottom: 0rem;}
  .gray .button {margin-top: 0px;}
  .yellow .button {margin-top: 0px;}
}

@media only screen and (min-width: 1400px) {
    .container.desktop {
    max-width: 1400px !important
    }
}

@media only screen and (max-width: 1024px) {
.desktop {display: none}
.mobile {display: block}
.container {
    width: 100%;
    margin: auto;
  }
  .columns { width: 100%;}
  .price .header {padding-top: 1.7rem;}
  .price li { padding: 5px 40px;}
  .price .amount.free {margin-bottom: 0rem;}
  .gray .button {margin-top: 35px;}
  .yellow .button {margin-top: 35px;}
}


@media only screen and (max-width: 768px) {

  .price li { padding: 4px 15px;}
  .price li.description { margin: 0 0%;}


}


