#profile_header .menu-btn.is_active {
  background: url(../img/menu_close.svg) no-repeat center;
  height: 50px;
}
#menuOverlay {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-out;
  position: fixed;
  top: 70px;
  width: 100%;
  left: 0;
  height: calc(100vh - 70px);
  background-color: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menuOverlay.is_active {
  opacity: 1;
  pointer-events: all;
}
#menuOverlay .menuInner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#menuOverlay .menuInner ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#menuOverlay .menuInner ul li {
  padding: 0 0;
  margin: 8px;
  list-style-type: none;
  text-align: center;
}
#menuOverlay .menuInner ul li a {
  color: #878787;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 8px 4px 8px;
  display: block;
}
#menuOverlay .menuInner ul li.is_active {
  border-bottom: 1px solid #516aa3;
}
#menuOverlay .menuInner ul li.is_active a {
  font-size: 30px;
  color: #fff;
}
#menuOverlay .menuInner ul li:hover a {
  color: #fff;
}
.membershipWrapper {
  padding: 70px 24px 55px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
.membershipWrapper > .content {
  margin: 48px auto 4px;
  max-width: 1440px;
  overflow-y: scroll;
  padding-right: 16px;
  padding-left: 16px;
  scrollbar-color: #252525 #ebebeb;
  scrollbar-width: thin;
}
.membershipWrapper > .content::-webkit-scrollbar {
  width: 4px;
}
.membershipWrapper > .content::-webkit-scrollbar-track {
  background-color: #ebebeb;
}
.membershipWrapper > .content::-webkit-scrollbar-thumb {
  background-color: #252525;
  outline: 1px solid #252525;
}
.membershipWrapper > .content h1,
.membershipWrapper > .content h2 {
  color: #0e0e0e;
  text-transform: uppercase;
}
.membershipWrapper > .content h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 48px;
}
.membershipWrapper > .content h2 {
  font-size: 21px;
  margin-bottom: 16px;
}
.membershipWrapper > .content p {
  font-size: 14px;
  margin-bottom: 40px;
}

.membershipWrapper .packages {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.membershipWrapper .packages .package {
  padding: 8px;
  flex: 33%;
}
.membershipWrapper .packages .package .inner {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.membershipWrapper .packages .package .inner h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: center;
}
.membershipWrapper .packages .package.standart .inner {
  background-color: #3b3b3b;
  /* min-width: 320px; */
}
.membershipWrapper .packages .package.premium .inner {
  background-color: #1a1a1a;
}
.membershipWrapper .packages .package.luxury .inner {
  background-color: #000000;
}
.membershipWrapper .packages .package .innerImage {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  height: 60px;
}
.membershipWrapper .packages .package .innerImage svg {
  margin: 0 auto;
}
.membershipWrapper .packages .package .inner p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}
.membershipWrapper .packages .package .innerContent .line {
  margin-right: -24px;
  margin-left: -24px;
  height: 1px;
  background-color: #5f5f5f;
}
.membershipWrapper .packages .package .subscription {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 16px;
}

.subscription a.subscribe {
  border: 2px solid #ddd;
  color: #ddd;
  padding: 8px 32px;
  background-color: transparent;
  cursor: pointer;
  text-transform: uppercase;
}
.subscription a.subscribe:hover {
  color: #000;
  background-color: #ddd;
  text-decoration: none;
}
.membershipWrapper .packages .package .subscription .annual {
  color: #516aa3;
  font-size: 14px;
  margin-bottom: 0;
}
.membershipWrapper .packages .package .subscription .price {
  font-size: 48px;
  color: #fff;
}
.membershipWrapper > .content .learnMore {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.membershipWrapper > .content .learnMore .item {
  min-width: 280px;
  flex: 48%;
  flex-grow: 0;
}
.membershipWrapper > .content .learnMore .item p {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 24px;
}
.membershipWrapper > .content .learnMore .item a {
  color: #516aa3;
}
.membershipWrapper > .content .learnMore .item a:hover {
  text-decoration: none;
  color: #000;
}
.membershipWrapper > .content .learnMore .item a:hover i {
  color: #000;
}
.membershipWrapper > .content .learnMore .item a i {
  margin: 0 8px;
}

.membershipWrapper > .content.desoPlans {
  overflow: visible;
}
.membershipWrapper > .content.desoPlans p {
  font-size: 18px;
}
.membershipWrapper > .content.desoPlans p a {
  color: #516aa3;
  text-decoration: underline;
}
.membershipWrapper > .content.desoPlans h1 {
  font-size: 32px;
  margin-bottom: 32px;
}
.membershipWrapper > .content.desoPlans h3 {
  font-size: 24px;
  margin-bottom: 48px;
  color: #000;
}
.fullWidthPrice {
  margin-left: -24px;
  margin-right: -24px;
  background-color: #f5f5f5;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 21px;
}
.fullWidthPrice span {
  font-size: 48px;
  color: #000;
  padding: 0 16px;
}
.desoPlans p,
.desoPlans h1,
.desoPlans h3 {
  text-align: center;
}
.desoPlans h1 {
  font-size: 30px;
  margin-bottom: 32px;
}
.membershipWrapper > .content.planBuying {
  overflow: visible;
  text-align: center;
}
.planBuying .checkboxes {
  margin: 32px auto 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.planBuying .checkboxes > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.planBuying .paymentMethod {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.paymentMethod button {
  border: 0 solid transparent;
  background-color: transparent;
  cursor: pointer;
  margin: 0 24px;
  outline: none;
}
.paymentMethod button:hover svg path {
  fill: #516aa3;
}
.checkboxGroup {
  position: relative;
}
.checkboxGroup .label a {
  color: #516aa3;
}
.checkboxGroup label a:hover {
  color: #516aa3;
}
.checkboxGroup input[type="checkbox"] {
  /*display: none;*/
  pointer-events: none;
  opacity: 0;
  position: absolute;
}
.checkboxGroup label {
  padding-left: 24px;
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.checkboxGroup label:before {
  position: absolute;
  left: 0;
  content: "\f0c8";
  font-family: "Font Awesome\ 5 Pro";
  color: #000;
}
.checkboxGroup input[type="checkbox"]:checked + label:before {
  content: "\f14a";
  font-family: "Font Awesome\ 5 Pro";
  color: #000;
}
.membershipWrapper.plan {
  height: unset;
  overflow-y: visible;
}
.planDescription {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 56px;
}
.planDescription ul {
  width: 48%;
  margin: 0;
  padding: 0;
  max-width: 550px;
}
.planDescription ul {
  padding: 0;
  list-style-type: none;
}
.planDescription ul li {
  font-size: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaeae9;
  padding: 3px 12px 3px 0;
}
.planDescription ul li i {
  font-size: 32px;
}
.planDescription ul li .strongSpan {
  font-weight: 900;
}
.planDescription ul li span.sub {
  display: block;
  font-size: 14px;
}
.planDescription ul li span.small {
  font-size: 14px;
  color: #333;
  text-align: right;
}
.planDescription ul li span {
  color: #0e0e0e;
}
.planDescription ul li .fa-check {
  color: #516aa3;
}
.planDescription ul li .fa-times {
  color: #b8b8b8;
}
.membershipWrapper.board {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}
.membershipWrapper.board .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow-y: visible;
}
.board .about {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.board .about .item {
  padding-left: 24px;
  border-left: 1px solid #516aa3;
  padding-right: 24px;
  width: 50%;
}
.board .about .item p {
  color: #fff;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
}
.board .about .item p a {
  text-decoration: underline;
  color: #516aa3;
}
#openMembershipForm {
  display: inline-block;
  margin: 24px auto 24px;
  padding: 12px 32px;
  color: #000;
  background-color: #ddd;
  border: 2px solid #ddd;
  border-radius: 3px;
  font-size: 24px;
  text-decoration: none;
}
#openMembershipForm:hover {
  background-color: transparent;
  color: #ddd;
}
#membershipForm {
  transition: 0.3s;
  transform: translateX(-100%);
  opacity: 0;
  position: fixed;
  padding: 24px 40px;
  top: 0;
  left: 0;
  background-image: url(../img/form_background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
  height: 100vh;
  overflow-y: scroll;
  min-width: 50vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#membershipForm::-webkit-scrollbar {
  width: 0;
}
#membershipForm.is_active {
  transform: translateX(0);
  opacity: 1;
}
#membershipForm .closeForm {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
  position: absolute;
  top: 24px;
  right: 32px;
}
#membershipForm .closeForm a {
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
}
#membershipForm .closeForm a:hover {
  text-decoration: none;
  color: #516aa3;
}
#membershipForm .closeForm a i {
  font-size: 24px;
  margin: 0 4px;
}
#membershipForm .inputGroup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 16px;
}
#membershipForm .inputGroup label {
  color: #fff;
  margin-bottom: 4px;
  font-size: 18px;
}
#membershipForm .inputGroup input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #535353;
  color: #ddd;
  padding: 6px 16px;
  font-size: 18px;
}
#membershipForm button {
  font-size: 20px;
  display: block;
  padding: 6px 32px;
  background-color: transparent;
  border-radius: 3px;
  border: 1px solid #ddd;
  color: #ddd;
  margin: 32px auto 0;
  cursor: pointer;
}
#membershipForm button:hover {
  color: #000;
  background-color: #ddd;
}
.formSuccess {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 200;
  transform: translateX(-50%) translateY(-50%);
  padding: 64px 48px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-image: url(../img/popup_background.png);
  background-repeat: no-repeat;
  font-size: 32px;
}
@media (min-width: 759px) and (max-width: 1024px) {
  .board .about .item p {
    font-size: 24px;
  }
  .board .about .item {
    padding-top: 24px;
  }
}
@media (max-width: 768px) {
  #menuOverlay {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .membershipWrapper .packages {
    flex-direction: column;
  }
  #membershipForm .closeForm {
    top: 16px;
    right: 12px;
  }
  #membershipForm {
    /* min-height: 100vh; */
    /* height:auto; */
    margin-top: 60px;
    padding-top: 60px;
    padding-right: 12px;
    padding-left: 12px;
  }
  #openMembershipForm {
    margin: 24px auto 24px;
  }
  .board .about {
    flex-direction: column;
    align-items: center;
  }
  .board .about .item {
    width: 100%;
    margin-bottom: 32px;
    border-left-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .board .about .item p {
    text-align: left;
    font-size: 18px;
  }
  .planDescription {
    flex-direction: column;
    align-items: center;
  }
  .planDescription ul {
    width: 100%;
  }
  .planDescription ul li {
    font-size: 18px;
  }
  .paymentMethod button {
    margin: 0;
  }
  .membershipWrapper > .content::-webkit-scrollbar {
    width: 0;
  }
  .membershipWrapper > .content p {
    text-align: justify;
  }
  .membershipWrapper > .content .learnMore .item p {
    text-align: justify;
  }
  .membershipWrapper > .content h2 {
    text-align: center;
  }
  .membershipWrapper > .content .learnMore {
    flex-direction: column;
  }
  .membershipWrapper > .content h1 {
    font-size: 20px;
  }
  .membershipWrapper > .content .learnMore .item {
    flex: 100%;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .membershipWrapper {
    padding-left: 0;
    padding-right: 0;
    height: 100%;
    padding-bottom: 85px;
  }
  .membershipWrapper .packages .package {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .membershipWrapper > .content {
    margin: 16px auto 4px;
    scrollbar-width: 0;
  }
}
