/* Mixin */
.flex {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
}

html, body {
  /* overflow-x: hidden; */
  /* height: auto;
  min-height: 100vh; */
}

.right_header {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.right_header:after {
  display: none;
}

.right_header .header_rightcontent {
  float: none;
}

.menuIcon {
  position: relative;
  height: 48px;
  width: 48px;
  margin-top: 7.5px;
  cursor: pointer;
  display: none;
}

.menuIcon span {
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
  height: 2px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

.menuIcon span:before {
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  top: -8px;
  position: absolute;
  left: 0px;
}

.menuIcon span:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  bottom: -8px;
  position: absolute;
  left: 0px;
}

.features {
  border: 1px solid #e1e1e1;
  background-color: #FDFCFF;
  -webkit-box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}

.features:last-child {
  margin-bottom: 0;
}

.features .col {
  padding: 20px;
  width: calc(100% / 6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  text-align: center;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.features .col:nth-child(6n+1) {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.features .col strong {
  font-size: 22px;
}

.features .col .two_factor_tip {
  top: 3px !important;
  left: 5px;
}

.features .col a, .features .col button {
  padding: 10px 24px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #E2E2E2;
  background: #fff;
  color: #000;
}

.features .col a:hover, .features .col button:hover {
  background: transparent linear-gradient(80deg, #EF3297 0%, #F8AA43 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}

.features .col a#pro, .features .col button#pro {
  background: transparent -webkit-gradient(linear, right top, left top, from(#4E41F1), to(#8C5DE9)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #4E41F1 0%, #8C5DE9 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  border-color: transparent;
}

.features .col a#pro:hover, .features .col button#pro:hover {
  background: #4E41F1;
}

.fortune_header .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobileChecklist {
  padding: 20px;
  display: none;
}

.mobileChecklist ul {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  margin: -30px 0 20px 0;
  padding: 0px;
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.mobileChecklist ul li {
  width: 25%;
  list-style: none;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: bold;
}

.mobileChecklist ul li a {
  color: #000;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  display: block;
  padding: 15px;
  width: 100%;
  text-align: center;
}

.mobileChecklist ul li:hover a, .mobileChecklist ul li.active a {
  color: #fff;
  background: #8b5de9;
  background: -webkit-gradient(linear, left top, left bottom, from(#8b5de9), to(#654bee));
  background: linear-gradient(to bottom, #8b5de9 0%, #654bee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8b5de9', endColorstr='#654bee',GradientType=0 );
}

.mobileChecklist ul li:first-child {
  font-weight: bold;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  display: none;
}

.mobileChecklist ul li:first-child:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px;
  border-color: #343434 transparent transparent transparent;
  right: 20px;
  top: 25px;
}

@media screen and (max-width: 767px) {
  .right_header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100vw;
  }
  .menuIcon {
    display: block;
    background: transparent;
    border: none;
    margin-right: 10px;
  }
  .header_rightcontent {
    width: 100%;
    padding: 20px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
  }
  .header_rightcontent > div {
    width: 100%;
    text-align: center;
    display: block !important;
    position: relative;
  }
  .header_rightcontent > div.notify .HW_badge_cont {
    margin: 0 auto !important;
    top: 0px !important;
    left: 0 !important;
  }
  .menu-open .right_header {
    height: 450px;
  }
  .menu-open .right_header .header_rightcontent {
    opacity: 1;
    visibility: visible;
  }
  .plan_features {
    display: none !important;
  }
  .features {
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
  }
  .btnWrap {
    text-align: center;
  }
  .btnWrap button {
    border: 0px;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
  }
  .contact_support {
    padding: 60px 20px !important;
    text-align: center;
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact_support p, .contact_support h1 {
    text-align: center;
  }
  .contact_support .contat_us_content {
    margin-right: 0px !important;
  }
  .contact_support .contact_us_btn {
    padding: 0px !important;
    display: block;
    max-width: 240px;
  }
  .fortune_header .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .fortune_header .flex .col {
    width: 50%;
    padding: 20px 0;
  }
  .mobileChecklist {
    display: block;
  }
  .mobileChecklist.active {
    height: 85px;
  }
  .mobileChecklist.active ul {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 95px;
    z-index: 99;
  }
  .pricing_type_section .flex .col {
    margin: 0 auto;
    text-align: center;
  }
  .pricing_type_section .flex .col.vanish {
    display: none;
  }
  .features.Enterprise .col {
    display: none;
    width: 50%;
  }
  .features.Enterprise .col br {
    display: none;
  }
  .features.Enterprise .col:nth-child(6n+1) {
    display: block;
  }
  .features.Enterprise .col:nth-child(6n+6) {
    display: block;
  }
  .features.Enterprise .col a, .features.Enterprise .col button {
    padding: 10px 24px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #E2E2E2;
    background: transparent -webkit-gradient(linear, right top, left top, from(#4E41F1), to(#8C5DE9)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(270deg, #4E41F1 0%, #8C5DE9 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Enterprise .col a:hover, .features.Enterprise .col button:hover {
    background: transparent linear-gradient(80deg, #EF3297 0%, #F8AA43 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Pro .col {
    display: none;
    width: 50%;
  }
  .features.Pro .col br {
    display: none;
  }
  .features.Pro .col:nth-child(6n+1) {
    display: block;
  }
  .features.Pro .col:nth-child(6n+5) {
    display: block;
  }
  .features.Pro .col a, .features.Pro .col button {
    padding: 10px 24px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #E2E2E2;
    background: transparent -webkit-gradient(linear, right top, left top, from(#4E41F1), to(#8C5DE9)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(270deg, #4E41F1 0%, #8C5DE9 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Pro .col a:hover, .features.Pro .col button:hover {
    background: transparent linear-gradient(80deg, #EF3297 0%, #F8AA43 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Starter .col {
    display: none;
    width: 50%;
  }
  .features.Starter .col br {
    display: none;
  }
  .features.Starter .col:nth-child(6n+1) {
    display: block;
  }
  .features.Starter .col:nth-child(6n+4) {
    display: block;
  }
  .features.Starter .col a, .features.Starter .col button {
    padding: 10px 24px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #E2E2E2;
    background: transparent -webkit-gradient(linear, right top, left top, from(#4E41F1), to(#8C5DE9)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(270deg, #4E41F1 0%, #8C5DE9 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Starter .col a:hover, .features.Starter .col button:hover {
    background: transparent linear-gradient(80deg, #EF3297 0%, #F8AA43 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Free .col {
    display: none;
    width: 50%;
  }
  .features.Free .col br {
    display: none;
  }
  .features.Free .col:nth-child(6n+1) {
    display: block;
  }
  .features.Free .col:nth-child(6n+2) {
    display: block;
  }
  .features.Free .col a, .features.Free .col button {
    padding: 10px 24px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #E2E2E2;
    background: transparent -webkit-gradient(linear, right top, left top, from(#4E41F1), to(#8C5DE9)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(270deg, #4E41F1 0%, #8C5DE9 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Free .col a:hover, .features.Free .col button:hover {
    background: transparent linear-gradient(80deg, #EF3297 0%, #F8AA43 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Basic .col {
    display: none;
    width: 50%;
  }
  .features.Basic .col br {
    display: none;
  }
  .features.Basic .col:nth-child(6n+1) {
    display: block;
  }
  .features.Basic .col:nth-child(6n+3) {
    display: block;
  }
  .features.Basic .col a, .features.Basic .col button {
    padding: 10px 24px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #E2E2E2;
    background: transparent -webkit-gradient(linear, right top, left top, from(#4E41F1), to(#8C5DE9)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(270deg, #4E41F1 0%, #8C5DE9 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .features.Basic .col a:hover, .features.Basic .col button:hover {
    background: transparent linear-gradient(80deg, #EF3297 0%, #F8AA43 100%) 0% 0% no-repeat padding-box;
    color: #fff;
  }
  .testimonals_sliderSection .testimonalsMainslide {
    width: 100% !important;
  }
  .testimonalsMainslide.secondtype .testimonial-img .testiLogo {
    max-width: 120px;
  }
  .testimonalsMainslide.secondtype .testimonial-quote {
    text-align: center !important;
  }
  #plans_compare_section1{
    overflow-x: hidden;
    position: relative;
  }
}

@media screen and (max-width: 640px) {
  .pricing_type_section .flex .col {
    width: 100% !important;
  }
  .mobileChecklist.active ul {
    left: 0;
    right: 0;
  }
  .mobileChecklist.show {
    height: 355px;
  }
  .mobileChecklist.show ul li {
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #F4F4F4;
  }
  .mobileChecklist ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .mobileChecklist ul li {
    width: 100%;
    display: none;
  }
  .mobileChecklist ul li:first-child {
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 20px;
    cursor: pointer;
  }
}
/*# sourceMappingURL=pricing.css.map */