.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px !important;
  border-radius: 999px;
  color: var(--text-heading);
  font-size: var(--fz-16) !important;
  font-weight: 700 !important;
  line-height: 1.5;
  transition: all 0.3s ease;
  gap: 8px;
  position: relative;
	cursor: pointer;
}

.btn.btn-primary {
  background: var(--primary-secondary) !important;
  width: fit-content;
  overflow: hidden;
  position: relative;
  color: var(--text-heading);
}

.btn * {
  z-index: 2 !important;
}
.btn.btn-primary .icon {
  background-image: url("../../img/ar-1.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
	transition: all 0.3s;
}

.btn-accent::before,
.btn-accent::after,
.btn-primary::before,
.btn-primary::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    background: #FFD14E;
    z-index: -1;
}

.btn-accent::before,
.btn-accent::after {
  background: #284167;
}

.btn-accent::before,
.btn-primary::before {
    transform: translateX(-100%);
    z-index: 1;
}
.btn-accent::after,
.btn-primary::after {
    z-index: 0;
    transform: translateX(100%);
    transition: none;
    transition: transform 350ms ease;
}
.btn-accent:hover::before,
.btn-primary:hover::before {
    transform: translateX(0);
    transition: transform 350ms ease;
}
.btn-accent:hover::after,
.btn-primary:hover::after {
    opacity: 1;
    transform: translateX(0);
    transition: transform 350ms 360ms ease;
}
.btn.btn-primary:hover {
  color: var(--text-white) !important;
}

.btn.btn-primary:hover .icon {
  background-image: url("../../img/ar-2.svg");
}

.btn.btn-secondary {
  border: 1px solid #3b3b3b;
  background: #fff;
}

.btn.btn-secondary:hover {
  color: var(--text-white) !important;
  background-color: #686868;
}

.btn.btn-sw {
  background: #b5b5b5;
  color: var(--text-heading);
}

.btn.btn-sw-2 {
  background: var(--text-white);
  color: var(--primary-color);
  width: fit-content;
}

.btn.btn-sw-3 {
  background: var(--text-white);
  color: var(--primary-color);
  width: fit-content;
  border: 1px solid var(--bg-default);
}

.btn.btn-accent {
    background: #1A2E4C;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fec00f;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 22.5px 45px -10.8px rgba(0, 0, 0, 0.25);
}
.btn-play .icon {
  transition: all 0.3s ease;
}
.btn-play:hover .icon {
  transform: scale(1.2);
}

.global-style-1 {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: end;
}
.global-style-1 .btn-prev,
.global-style-1 .btn-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-white);
  border: 1px solid  #FEC00F;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.global-style-1 .btn-prev .icon,
.global-style-1 .btn-next .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}

.global-style-1 .btn-prev:hover,
.global-style-1 .btn-next:hover {
  background: var(--bg-default);
}
.global-style-1 .btn-prev:hover .icon img,
.global-style-1 .btn-next:hover .icon img {
  filter: brightness(0) invert(1);
}
body .slider-nav-light .flickity-page-dots .dot {
    background: rgba(255, 255, 255, 0.50);
}
body .flickity-page-dots .dot {
  width: 10px;
  height: 10px;
  border: none;
}


.submitting .btn-form {
  position: relative;
}

.submitting .btn-form::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  animation: loader .7s linear infinite;
  border-width: .10417rem;
  border-style: solid;
  border-color: #1A2E4C;
  border-top-color: transparent;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
}

@keyframes exitRight {
  0% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 992px) {
  .btn-primary {
    padding: 10px 24px !important;
  }
}

@keyframes loader {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}