@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Membership Options Overlay */
#membership-table-overlay{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#membership-table-overlay-content{
  width: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
}

#membership-overlay-options{
  margin-bottom: 20px;
}

#membership-overlay-options input{
  margin-right: 10px;
}

#membership-plan-title{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px; 
  border-radius: 5px;
  color: #fff;
}

/* Membership Overlay - User Details */

#membership-overlay-user-details{
  margin-bottom: 15px;
}

.membership-overlay-required{
  color: #aa0000;
}

.membership-overlay-textbox{
  padding: 10px;
}

#membership-overlay-button{
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 5px;
  background: #f7b918;
  border-radius: 0.5em !important;
  text-align: center;
  border: 1px solid #f7b918;    
}

#membership-overlay-button:hover{
  transition: all 0.4s ease-in-out;
  background: #f4f4f4;
  border: 1px solid #000;
  color: #000;
}

/* Full Screen Plans */

.membership-table-sticky{
  position: fixed;
  top: 80px;
  width: 100%;  
}

#membership-table{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 22% repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;  
}

.membership-header-title{
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Roboto", sans-serif;
  font-size: 20px !important;
  height: 128px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  padding: 5px 21px;    
  text-align: center;
  color: #fff;
}

.membership-table-price{
  font-size: 16px;
  margin: 0;
  color: #626262;
  font-weight: normal; 
  text-align: center;
  padding: 8px 5px;
}

.membership-table-col-1.membership-table-price{
  text-align: left;
}

.membership-table-row-highlight{
  background: #f4f4f4;
}

.membership-table-highlight-cell{
  background: #d6f1ff !important;
}

.membership-table-button-container{
  padding: 10px;
}

.membership-table-button{
  font-weight: bold;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 15px 5px;
  background: #f7b918;
  border-radius: 0.5em;
  font-size: 16px;
  text-align: center;
  border: 1px solid #f7b918;  
}

.membership-table-button:hover{
  background: #f4f4f4;
  transition: 0.4s;
  border: 1px solid #000;
  color: #000;
}

.membership-table-current-plan{
  font-weight: bold;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 15px 5px;
  background: #f4f4f4;
  border-radius: 0.5em;
  font-size: 16px;
  text-align: center;
  border: 1px solid #f7b918;  
}

.membership-table-option{
  font-family: "Roboto", sans-serif;  
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #444;
  vertical-align: middle;
  padding: 0.7em;  
}

.membership-option{
  text-align: center;
}

.membership-table-tick{
  color: green;
  font-size: 24px !important;
}

.membership-option-text{
  font-family: "Roboto", sans-serif;  
  font-size: 14px;
}


@media only screen and (min-width: 790px) and (max-width: 991px) {
  .membership-header-title{
    font-size: 15px !important;
  }

  .membership-table-price{
    font-size: 15px !important;
  }

  .membership-table-button,
  .membership-table-current-plan{
    font-size: 12px !important;
  }
}

@media only screen and (min-width: 790px){
  #membership-plans-mobile{
    display: none;
  }  
}

@media only screen and (max-width: 789px) {
  #membership-table{
    display: none;
  }

  #membership-plans-mobile{
    display: block;
  }
}

/* Mobile Plans */

.membership-plans-mobile-card{
  border-radius: 12px;
  padding: 24px;
  margin: 0 0 18px 0;
  font-family: "Roboto", sans-serif;
}

.membership-plans-mobile-highlight{
  background: #d6f1ff;
}

.membership-plans-mobile-standard{
  background: #f2f4f9;
}

.membership-plans-mobile-recommended{
  width: 116px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(to right, #f12711, #f5af19);
  padding: 8px 16px;
  margin-bottom: 16px;
}

.membership-plans-mobile-card h2{
  margin: 0;
  padding-bottom: 12px;
  font-size: 22px;  
  font-weight: 700;
}

.membership-plans-mobile-price{
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.membership-plans-mobile-price-row{
  line-height: 34px;
}

.membership-plans-mobile-options{
  display: grid;
  grid-template-columns: 24px repeat(1, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;    
}

.membership-plans-mobile-options-available div:nth-child(odd) .dashicons{
  color: green;
  font-size: 24px;
  margin-left: -5px;
}

.membership-plans-mobile-options-available div:nth-child(even){
  margin-bottom: 6px;
  color: #191d23;
}

.membership-plans-mobile-options-unavailable div:nth-child(odd) .dashicons{
  color: #000;
  font-size: 24px;
  margin-left: -5px;
}

.membership-plans-mobile-options-unavailable div:nth-child(even){
  margin-bottom: 6px;
  color: #64748b;
}

.membership-plans-mobile-options .numerical-option{
  font-weight: 700;
}

.membership-table-mobile-button-container{
  margin: 22px 0;
}

.membership-table-mobile-current-plan{
  font-weight: bold;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding: 12px 6px;
  background: #fff;
  border: 1px solid #f7b918;
  border-radius: 0.5em;
  font-size: 16px;
  text-align: center;
}

.membership-table-mobile-button{
  font-weight: bold;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding: 12px 6px;
  background: #f7b918;
  border-radius: 0.5em;
  font-size: 16px;
  text-align: center;
}

.membership-table-mobile-button:hover{
  color: #000;
}