
:root {
	--bg: #e3e4e8;
	--fg: #17181c;
	--bs1: #ffffff;
	--bs2: #c1c2c5;
	--tick: #454954;
	--transDur: 0.1s;
}
input {
	/* color: var(--fg); */
	/* font: 1em/1.5 Muli, sans-serif; */
}
.range__ticks {
	display: flex;
}

label {
	display: block;
	font-weight: bold;
}
input[type=range], label {
	-webkit-tap-highlight-color: transparent;
}
input[type=range], .range {
	/* border-radius: 0.75em; */
	/* overflow: hidden; */
	/* margin-bottom: 1.5em; */
}
input[type=range] {
	background-color: #c5c6cc;
	/* box-shadow:
		0.3em 0.3em 0.4em var(--bs2) inset,
		-0.3em -0.3em 0.4em var(--bs1) inset; */
	display: block;
	padding: 0px;
	width: 99%;
	height: 10px;
	border-radius: 100px;
	/* -webkit-appearance: none; */
	-moz-appearance: none;
	appearance: none;
}
input[type=range]:focus {
	outline: transparent;
}
input[type=range]::-webkit-slider-thumb {
	background-color: #2d85e2;
	border: 0;
	border-radius: 100px;
	cursor: pointer;
	position: relative;
	width: 30px;
	height: 30px;
	transition: all var(--transDur) linear;
	z-index: 1;
	-webkit-appearance: none;
	appearance: none;
}
input[type=range]:focus::-webkit-slider-thumb {
	background-color: #5583f6;

}
input[type=range]::-moz-range-thumb {
	background-color: #2d85e2;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	transform: translateZ(1px);
	transition: all var(--transDur) linear;
	z-index: 1;
	-moz-appearance: none;
	appearance: none;
}
input[type=range]:focus::-moz-range-thumb {
	background-color: #2d85e2;
}
input[type=range]::-moz-focus-outer {
	border: 0;
}
.range {
	position: relative;
	height: 1.5em;
}
.range__ticks {
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	position: absolute;
	top: 14px;
	left: 0.75em;
	width: calc(100% - 1.5em);
	height: 100%;
	font-size: 32px;
	padding-top: 10px;
}
.range__tick, .range__tick-text {
	display: inline-block;
}
.range__tick {
	color: var(--tick);
	font-size: 0.5em;
	text-align: center;
	width: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.range__tick-text {
	transform: translateX(-50%);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: #2e3138;
		--fg: #e3e4e8;
		--bs1: #3c4049;
		--bs2: #202227;
		--tick: #c7cad1;
	}
}
/* For Chrome, Safari */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* For Firefox */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Internet Explorer */
input[type='number']::-ms-clear,
input[type='number']::-ms-reveal {
  display: none;
}



.loader {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    margin-top: 70px;
  }
  
  .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #2d85e2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
  }
  
  .radar {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #2d85e2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radarAnimation 7s infinite;
    background-color: #2d85e2;
    transition: all .3s ease;
  }
  
  @keyframes radarAnimation {
    0% {
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      width: 100%;
      height: 100%;
      opacity: 0;
    }
  }
  
  .radar1 {
    animation-delay: 0s;
  }
  
  .radar2 {
    animation-delay: 0.7s;
  }
  
  .radar3 {
    animation-delay: 1.4s;
  }
  
  .world-diamond-animation img {
    width: 50px;
}

.world-diamond-animation {
    position: absolute;
    top: 36%;
    left: 27%;
    z-index: 2;
    opacity:0;
    animation: diamondLoadingAnimation 4s infinite;
    transition: all .3s ease;
}
.world-diamond-animation1 {
    top: 36%;
    left: 27%;
    animation-delay: 2s;
    }
.world-diamond-animation2 {
    top: 32%;
    right: 27%;
    animation-delay: 2.7s;
    }
.world-diamond-animation3 {
    bottom: 0%;
    right: -5%;
    animation-delay: 4.7s;
    }
.world-diamond-animation4 {
    bottom: -5%;
    right: -25%;
    animation-delay: 6.7s;
    }
.world-diamond-animation5 {
    bottom: -10%;
    left: 18%;
    animation-delay: 8.7s;
    }


 @keyframes diamondLoadingAnimation {
    0% {
      margin-top:0px;
        opacity:0;
    }
     50% {
        opacity:1;
    }
    100% {
      margin-top:-140px;
        opacity:0;
    }
  }
  .yes-circle img{
    /* opacity: 0; */
    /* display: none; */
    position: absolute;
    opacity: 1;
    width: 50%;
    /* padding-top: 50%; */
    top: 0px;
    /* position: relative; */
    z-index: 1;
    transform: translate(-50%);
    transition: all .3s ease;
    transform-origin: bottom;
  }
  .yes-circle {
    position: relative;
}


.world-circle {
    transition: all .3s ease;
}
.loading-animation-phase1 {
    transition: all .3s ease;
    opacity: 1;
}


.diamond-shape-strip-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.diamond-shape-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.diamond-shape-image {
    width: 91px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-shape-image img {
    max-width: 100%;
    height: auto;
    transition: all .3s ease;
    transform: scale(1);
    transform-origin: top;
}

.diamond-shape-title {
    font-size: 17px;
    color: #254264;
    text-align: center;
    font-weight: 600;
}
.diamond-shape-item:hover .diamond-shape-image img {
  transform: scale(1.05);
}

span.bold-span-mid {
  font-weight: 600;
}
/* ====================================
   Related Resources Component
   ==================================== */
.tdp-related-resources {
    margin: 50px 0 40px;
}

.tdp-rr-title {
    font-size: 24px;
    color: #254264;
    margin: 0 0 20px;
    font-family: 'EB Garamond', serif;
}

.tdp-rr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tdp-rr-link {
    display: block;
    padding: 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tdp-rr-link:hover {
    border-color: #254264;
    box-shadow: 0 4px 12px rgba(37, 66, 100, 0.1);
    transform: translateY(-2px);
}

.tdp-rr-link-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #254264;
    margin: 0 0 8px;
}

.tdp-rr-link-desc {
    display: block;
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .tdp-rr-grid {
        grid-template-columns: 1fr;
    }
}
