.pricing {
  background-color: #141F2B;
  flex-grow: 1;
  color: #B5B5B5;
  --pricing-plan-gap: 12px;
}

.pricing .pricing-table {
  display: grid; 
  grid-auto-flow: row;
  margin-bottom: 15px;
  column-gap: 0;
}

.pricing-table > div {
  /* border: 1px dashed #424242; */
}

.pricing .pricing-plan-header {
  font-family: 'Sequel Sans Book Body';
  padding: 24px 32px 24px 32px;
  margin-top: var(--pricing-plan-gap);
  border-top: 1px dashed #424242;
  border-left: 1px dashed #424242;
  border-right: 1px dashed #424242;
}

.pricing .pricing-plan-header h3 {
  font-size: 16px;
  color: white;
}

.pricing .pricing-plan-header p {
  font-size: 14px;
}

.pricing .pricing-plan-features {
  font-family: 'Sequel Sans Book Body';
  border: 1px dashed #424242;
  padding: 32px 12px 32px 32px;
  flex-grow: 2;
}

.pricing .pricing-plan-features > span {
  display: flex;
  margin-bottom: 12px;
  font-size: 13px;
  align-items: center;
}

.pricing .pricing-plan-features .excluded {
  height: 24px;
  width: 24px;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing .pricing-plan-features .minus {
  width: 9px;
  height: 1px;
  background: #FF8D23;
}

.pricing .pricing-plan-features img {
  margin-right: 12px;
}

.pricing .pricing-plan-cta {
  font-family: 'Sequel Sans Semi Bold Body';
  border-left: 1px dashed #424242;
  border-right: 1px dashed #424242;
  border-bottom: 1px dashed #424242;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing .pricing-plan-cta .price {
  font-size: 14px;
}

.pricing .pricing-plan-cta button,
.pricing-button {
  font-family: 'Sequel Sans Semi Bold Disp';
  background-color: #183350;
  color: white;
  font-size: 14px;
  letter-spacing: 2px;
  align-self: center;
  border: 1px solid #183350;
  border-radius: 5px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pricing .pricing-plan-cta button:active {
  border: 1px solid #183350;
  background-color: transparent;
}

#pricing-table-footer {
  flex-direction: column;
  text-align: center;
}

@media (min-width: 576px) {
  .pricing .pricing-table {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, auto);
    column-gap: var(--pricing-plan-gap);
  }

  .subpage-header-wrapper {
    justify-content: start;
  }  

  #pricing-table-footer {
    flex-direction: row;
    text-align: inherit;
  }
}

@media (min-width: 1725px) {
  .pricing .pricing-table {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto min-content;
    column-gap: 0;
  }

  .pricing .pricing-plan-header {
    margin-top: 0;
  }

  .pricing .pricing-table > div:not(:nth-last-child(1)):not(:nth-last-child(2)):not(:nth-last-child(3)) {
    border-right: none !important;
  }
}

.switch-text {
  margin-left: 12px;
  font-family: 'Sequel Sans Book Body';
  font-size: 13px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
  /* margin-bottom: 110px; */
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #19293A;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 6px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  bottom: 4px;
  background-color: #344C68;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 3px;
}

input:checked + .slider {
  background-color: red;
}

input:focus + .slider {
  box-shadow: 0 0 1px #344C68;
}

input:checked + .slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}