.sticky-contact {
	position: fixed;
	bottom: 120px;
	right: 20px;
	z-index: 1002;
}

.sticky-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.sticky-contact__svg {
  display: flex;
  align-items: center;
  justify-content: center;
	width: 30px;
  height: 30px;
	animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

.sticky-contact__svg svg {
  width: 30px;
  height: 30px;
}

@keyframes phone-vr-circle-fill {
	0% {
		transform: rotate(0) scale(1) skew(1deg);
	}

	10% {
		transform: rotate(-25deg) scale(1) skew(1deg);
	}

	20% {
		transform: rotate(25deg) scale(1) skew(1deg);
	}

	30% {
		transform: rotate(-25deg) scale(1) skew(1deg);
	}

	40% {
		transform: rotate(25deg) scale(1) skew(1deg);
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
	}
}

.sticky-contact__button {
	position: relative;
	display: flex;
  width: 50px;
  height: 50px;
  position: relative;
  background: var(--fs-color-primary);
  margin-bottom: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.sticky-contact__button::after,
.sticky-contact__button::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.sticky-contact__button::after {
	width: 120%;
  height: 120%;
  animation: circle-fade-after 1s infinite;
  background-color: var(--fs-color-primary);
  opacity: 0.4;
}

.sticky-contact__button::before {
  width: 100%;
  height: 100%;
  animation: circle-fade-before 1s infinite;
  border: 2px solid var(--fs-color-primary);
}

@keyframes circle-fade-before {
	0% {
		width: 100%;
		height: 100%;
		opacity: 1;
	}

	100% {
		width: 140%;
		height: 140%;
		opacity: 0;
	}
}

@keyframes circle-fade-after {
	0% {
		width: 130%;
		height: 130%;
	}

	50% {
		width: 150%;
		height: 150%;
	}

	100% {
		width: 130%;
		height: 130%;
	}
}


.cyno_tabs > .nav .tab {
  display:flex;
  margin: 0;
}
.cyno_tabs .nav{
  margin-bottom:15px;
}
.cyno_tabs > .nav .tab a {
  text-align:center;
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 12px 10px;
}

.cyno_tabs .nav-vertical > li + li {
  border-top: 0;
}
.cyno_tabs > .nav .tab a > img {
  width:60px;
  height:60px;
  margin: 0 auto;
}
.cyno_tabs > .nav .tab a > img:nth-child(2) {
  display: none;
}
.cyno_tabs > .nav .tab.active a > img:nth-child(1) {
  display: none;
}
.cyno_tabs > .nav .tab.active a > img:nth-child(2) {
  display: block;
}
.cyno_tabs > .tab-panels {
  width: 100%;
  padding: 20px;
}
.cyno_tabs .tab-panels .row {
  margin: 0;
}
.cyno_tabs .tab-panels .panel .row .col {
  padding: 0 5px 5px;
}
.cyno_tabs .nav.nav-vertical a {
  border-top: 1px solid #d2d2d2;
  text-align: center;
}
.cyno_tabs .nav-vertical{
  margin-bottom:0;
}

.cyno-title-cat__nav {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: auto;
}

.cyno-title-cat__center .cyno-title-cat__nav-item:first-child {
  margin-left: 0;
}

.cyno-title-cat__nav-item i {
  margin-left: 0.5em !important;
  margin-top: 6px !important;
  line-height: 1 !important;
}

.cyno-title-cat__nav-item a {
  display: flex;
  align-content: center;
}

.cyno-title-cat {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.cyno-title-cat.cyno-title-cat__center {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.cyno-title-cat > * {
  width: auto;
}
.cyno-title-cat.cyno-title-cat__center > * {
  width: 100%;
  text-align: center
}

.cyno-title-cat.cyno-title-cat__center > .cyno-title-cat__nav {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

@media (max-width: 549px) {
  .cyno-title-cat {
    flex-direction: column;
  }

  .cyno-title-cat__nav-item:first-child {
    margin-left: 0;
  }

  .cyno-title-cat > * {
    width: 100%;
  }

  .cyno-title-cat__nav {
    margin-left: 0;
  }
}
