:root {
    --step-angle: 22;
    --gold: #C8A45E;
    --putty: #E7CE96;
    --mantle: #8FA398;
}

.circle-container {
    position: relative;
    width: 400px!important;
    height: 400px!important;
    border: 0.75px solid color-mix(in srgb, var(--gold) 50%, transparent);
    border-radius: 50%;
}

.circle-container li {
    position: absolute;
    display: flex;
    justify-content: center;
    offset-path: circle();
    offset-rotate: 0deg;
    width: 100px;
    height: 100px;
    padding-top: 66px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Jost', Arial, sans-serif;
    font-size: 13px;
    line-height: 15px;
    background-image: url('https://static.tildacdn.com/tild6665-3431-4439-a537-316264393862/spot.png');
    background-position: center;
    background-repeat: no-repeat;    
}

.circle-product li {
    background-size: 15%;
    animation: pulseSize 4s infinite ease-in-out;
    animation-delay: var(--delay);
    offset-distance: calc(-25% + (var(--i) - 1) * var(--step-angle) / 360 * 100%);
}

.circle-container li:nth-child(1) { --i: 1; --delay: 1.0s; }
.circle-container li:nth-child(2) { --i: 2; --delay: 4.5s; }
.circle-container li:nth-child(3) { --i: 3; --delay: 3.0s; }
.circle-container li:nth-child(4) { --i: 4; --delay: 1.5s; }
.circle-container li:nth-child(5) { --i: 5; --delay: 3.5s; }
.circle-container li:nth-child(6) { --i: 6; --delay: 2.0s; }
.circle-container li:nth-child(7) { --i: 7; --delay: 4.0s; }
.circle-container li:nth-child(8) { --i: 8; --delay: 2.5s; }
.circle-container li:nth-child(9) { --i: 9; }
.circle-container li:nth-child(10) { --i: 10; }
.circle-container li:nth-child(11) { --i: 11; }
.circle-container li:nth-child(12) { --i: 12; }

.circle-index li {
    background-size: 50%;
    animation: moveText 36s linear infinite;
    animation-delay: calc(-3s * var(--i));    
}

.circle-container .net {
    position: absolute!important;
    top: 0!important;
    left: 0!important;
    width: 100%!important;
    height: 100%!important;
    animation: rotateBg 36s linear infinite;
    z-index: 1!important;
  }
  
.circle-container .net img {
    object-fit: cover!important;
  }
  
.circle-container .man {
    top: 25px!important;
 }
 
  .title-01, .title-02, .circle-index li span {
    opacity: 0;
    animation: textFadeFastLoop 10s linear infinite;  
  }
  
  .title-02, .circle-index li span {
    animation-delay: 5s;  
  }



.uc-phytocode strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.uc-phytocode ol {
    margin-top: 10px;
}

.uc-phytocode li {
    margin-bottom: 5px;
}

@media (min-width: 1200px) {
    .uc-phytocode ol {
        columns: 2 auto;
    }
}
  
@keyframes textFadeFastLoop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

  @keyframes moveText {
    to {
      offset-distance: 100%;
    }
  }

  @keyframes rotateBg {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
@keyframes pulseSize {
  0% {
    background-size: 15%;
  }
  50% {
    background-size: 50%;
  }
  100% {
    background-size: 15%;
  }
}

  
.t-cms__card__image {
    background-size: contain!important;
}  
  
.uc-disclaimer > .tn-atom {
    width: 100%;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-character;
}


.uc-eyebrow > .tn-atom:before, .uc-faq .t-title:before {
    content: "⎯ ";
    font-size: large;
    font-weight: 100;
} 

.quiz-buttons a.active .icon .tn-atom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-color: var(--mantle);
}

.quiz-items a {
  display: none!important;
}
.quiz-items a.show-element {
  display: block!important;
}


.uc-cards .t-cms__card {
    transition: .25s ease;
    transition-delay: 0s !important;
}

.uc-cards .t-cms__card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--gold) 50%, transparent)!important;
}

.uc-cards .t-cms__card__molecule_btn {
    gap: 15px;
}

.t-menu-base {
    backdrop-filter: blur(12px);
}

.t-menu-base__maincontainer {
    max-width: 1240px;
    margin: auto;
    overflow: hidden;
}

.t-menu-base__textlogo {
	text-align: left!important;
}


@media (min-width: 961px) and (max-width: 1140px) {
	.t-menu-base__buttons {
		display: none!important;
	}
}

@media (min-width: 961px) {
    height: 64px !important;    
}

.t-menu-base__buttons .t-btn {
    height: 40px!important;
    padding-left: 20px;
    padding-right: 20px;
}

form input, form textarea, form .t-submit {
    transition: .25s ease!important;
}

form input:focus, form textarea:focus {
    border-color: var(--gold)!important;
}

form .t-submit:hover {
    border-color: var(--putty)!important;
    box-shadow: 0px 12px 30px -20px rgba(231, 206, 150, 1)!important;
    background-color: var(--putty)!important;
}