.container-wrapper {
  margin: 0 auto;
}

@media (min-width: 1192px) {
  .container-wrapper {
    padding-left: 75px;
    padding-right: 75px;
  }
}

@media (max-width: 1192px) {
  .container-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sidebar-menu.vue-affix {
  top: 0 !important;
  width: 280px;
  -webkit-animation: FadeUp 1s ease forwards;
  animation: FadeUp 1s ease forwards;
}

.sidebar-menu.vue-affix.affix {
  top: 70px !important;
  z-index: 1030;
}

@media (max-width: 1300px) {
  .sidebar-menu.vue-affix {
    top: 0 !important;
    width: 250px;
    -webkit-animation: FadeUp 1s ease forwards;
    animation: FadeUp 1s ease forwards;
  }

  .sidebar-menu.vue-affix.affix {
    top: 70px !important;
    z-index: 1030;
  }
}

@media (max-width: 1200px) {
  .sidebar-menu.vue-affix {
    width: 100%;
  }

  .sidebar-menu.vue-affix,
  .sidebar-menu.vue-affix.affix {
    position: relative !important;
  }
}
.card {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.leftside-menu .card {
  position: relative;
  overflow: hidden;
  height: 540px;
}

.leftside-menu .card .shape {
  top: 0;
  right: -100px;
}

.leftside-menu .card .shape,
.leftside-menu .card .shape2 {
  width: 200px;
  height: 200px;
  background: #6dc8be;
  opacity: 0.2;
  position: absolute;
  border-radius: 40px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leftside-menu .card .shape2 {
  bottom: 0;
  left: -100px;
}
.card-header h3 {
  text-align: left;
  margin-left: 25px;
  font-size: 18px;
}

.leftside-menu ul {
  text-align: left;
}
.leftside-menu .card .nav-item .nav-link {
  position: relative;
  padding-left: 35px;
  color: #212529;
  border-bottom: 1px solid rgba(109, 200, 190, 0.3);
  border-left: 3px solid transparent;
  font-size: 14px !important;
}

.leftside-menu .card .nav-item .nav-link:before {
  /* content: "\FE59"; */
  font-family: Material Design Icons;
  position: absolute;
  left: 0;
  padding-left: 15px;
}

.leftside-menu .card .nav-item .nav-link.active,
.leftside-menu .card .nav-item .nav-link:hover {
  color: var(--primary-color) !important;
  font-weight: 600;
  border-left: 3px solid var(--primary-color);
}

.leftside-menu .card .nav-item:last-child .nav-link {
  border-bottom: 0;
}

.page-title {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#73bf43),
    to(#265d04)
  );
  background-image: linear-gradient(90deg, #73bf43, #265d04);
  padding: 5px 10px;
  color: #fff;
  border-radius: 4px;
}
.service-tab .nav-tabs .nav-link {
  color: #73bf43;
  border: 1px solid #73bf43;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.service-tab .nav-tabs .nav-link.active {
  color: #fff;
  background: #73bf43;
}

.servicePage .service-item.member .card {
  width: 100%;
  background-size: cover;
  height: 140px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: visible;
}

.servicePage .service-item.member .card h3 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.servicePage .service-item.member .card .iconbox {
  border: 3px solid rgba(0, 127, 61, 0.3);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  margin: -40px auto 15px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.servicePage .service-item.member .card .iconbox i {
  color: #007f3d;
  font-size: 40px;
  margin-top: 12px;
}

.servicePage .service-item.member .card:hover {
  border-color: #ed1c24;
}

.servicePage .service-item.member .card:hover .iconbox {
  border: 3px solid #ed1c24;
}

.servicePage .service-item.member .card:hover .iconbox i {
  color: #ed1c24;
  font-size: 40px;
}

.servicePage .service-item.nonmember .card {
  background-size: cover;
  height: 160px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  overflow: visible;
}

.servicePage .service-item.nonmember .card h3 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.servicePage .service-item.nonmember .card .iconbox {
  border: 3px solid rgba(237, 28, 36, 0.3);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  margin: -40px auto 15px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.servicePage .service-item.nonmember .card .iconbox i {
  color: #ed1c24;
  font-size: 40px;
  margin-top: 12px;
}

.servicePage .service-item.nonmember .card:hover {
  border-color: #007f3d;
}

.servicePage .service-item.nonmember .card:hover .iconbox {
  border: 3px solid #007f3d;
}

.servicePage .service-item.nonmember .card:hover .iconbox i {
  color: #007f3d;
  font-size: 40px;
}
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.fade:not(.show) {
  opacity: 0;
}
