/*
Template Name: TimerWheel - Circle Countdown Timer Javascript, HTML5
Description: TimerWheel - Circle Countdown Timer Javascript, HTML5
Author: CodexUnicTheme
Version: 1.0
 *--------------CSS INDEX------------
 * #-Default CSS
 *
 *
*/
/*
 * #-Default CSS
*/
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700&display=swap');
:root {
  --body-color: #444;
  --main-color: #1e1b39;
  --primary-color: #FF324D;
  --headding-color: #0B2B3C;
  --section-bg: #EAEFF3;
}
body{
	margin: 0;
	padding: 0;
	font-size: 15px;
	color: var(--body-color);
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	font-style: normal;
}
a,
button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
*::-moz-selection {
	background: var(--primary-color);
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: var(--primary-color);
	color: #fff;
	text-shadow: none;
}
::selection {
	background: var(--primary-color);
	color: #fff;
	text-shadow: none;
}
h1,h2,h3,h4,h5,h6,p{
	margin:0;
	padding: 0;
}
h1,h1,h2,h3,h4,h5,h6{
	color: var(--headding-color);
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
}
ul{
	margin:0;
	padding: 0;
	list-style: none;
}
a{
	text-decoration: none;
	transition: .4s;
	-webkit-transition: all .4s ease-in-out;
}
a:hover{
	text-decoration: none;
	color: var(--primary-color);
}
button:focus{
	outline: none;
}
input:focus{
	outline: none;
}
textarea:focus{
	outline: none;
}
p{
	color: var(--main-color);
	line-height: 26px;
}
.text-right{
	text-align: right;
} */


.progress-sec {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, white 79%, transparent 80% 100%),
    conic-gradient(hotpink var(--time), pink 0);
}
.progress-min {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, white 79%, transparent 80% 100%),
    conic-gradient(hotpink var(--time), pink 0);
}
.progress-day {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, white 79%, transparent 80% 100%),
    conic-gradient(hotpink var(--time), pink 0);
}
.progress-hour {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, white 79%, transparent 80% 100%),
    conic-gradient(hotpink var(--time), pink 0);
}
/*
 * Style 1
*/
.countdown-timer-section {
    /* background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; */
    /* position: relative; */
    /* z-index: 1; */
    /* padding: 180px 50px; */
    text-align: center;
}
.countdown-timer-section:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    /* background: rgb(0 12 48 / 45%); */
}
.countdown-timer-section h2.title {
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #00ffbd;
    color: transparent;
    font-size: 50px;
    margin-bottom: 30px;
}
.countdown-container {
    display: inline-flex;
}
.countdown-container .single-box {
    margin: 0px 8px;
    position: relative;
    background: radial-gradient(closest-side, white 79%, transparent 80% 100%),
    conic-gradient(#2804f2 var(--time), #0d1230 0);
    /* conic-gradient(#00d872 var(--time), #0d1230 0); */
    display: flex;
    justify-content: center;
    align-items: center;
}
.countdown-container .single-box .countdown-item {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: #090440;
    margin-bottom: 2px;
}
.single-box-full span {
    font-weight: 500;
    text-transform: uppercase;
    color: #090440;
    line-height: 1;
    padding-top: 3px;
    display: inline-block;
    font-size: 14px;
}
/*
 * Style 2
*/
.countdown-timer-style2 {
    background: linear-gradient(30deg, #2f1d86 40%, #3e0982 90%);
    padding: 50px 0px;
}
.countdown-timer-style2-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.countdown-timer-style2-full h2.title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}
.right-btn a {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 3px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}
.countdown-timer-style2-full .single-box-full{
	text-align: center;
}
/*
 * Style 3
*/
.countdown-timer-style3 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    padding: 150px 50px;
    overflow: hidden;
}
.default-layout-3-content {
    background: #fff;
    max-width: 500px;
    padding: 40px;
    box-sizing: border-box;
    float: right;
    overflow: hidden;
    text-align: left;
    width: 100%;
    border-radius: 2px;
}
.default-layout-3-content .title h2 {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 35px;
    font-weight: 700;
}
.default-layout-3-content .title h4 {
    color: #4B38BE;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}
.default-layout-3-content .single-box {
    text-align: center;
    width: 82px;
    height: 82px;
}
.default-layout-3-content .single-box-full span {
    font-size: 12px;
}
.default-layout-3-content .single-box .countdown-item {
    font-size: 24px;
}
.default-layout-3-content .single-box:first-child{
	margin-left: 0px;
}
.default-layout-3-content .single-box:last-child{
	margin-right: 0px;
}
.default-layout-3-content .single-box{
	background: radial-gradient(closest-side, white 84%, transparent 93% 100%),
    conic-gradient(#2804f2 var(--time), #0d1230 0);
}
.default-layout-3-content .right-btn{
	margin-top: 30px;
}
/*
 * Style 4
*/
.countdown-timer-style4 {
    background: linear-gradient(30deg, #8029a8 40%, #3e0982 90%);
    padding: 100px 0px;
}
.countdown-timer-style4 .single-box {
    display: inline-flex;
    margin: 0px 5px;
    width: 90px;
    height: 90px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(30deg, #3e0982a6 40%, #561374ad 90%);
    border-radius: 5px;
    color: #fff;
}
.countdown-timer-style4 .single-box .countdown-item {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
        width: 100%;
    display: inline-block;
    margin-bottom: 2px;
}
/*
 * Style 5
*/
.countdown-timer-section.style5 .single-box {
    width: 200px;
    height: 200px;
    /* background: radial-gradient(closest-side, white 87%, transparent 95% 100%),
    conic-gradient(#2d73dd var(--time), #abeeff 0); */
}
.countdown-timer-section.style5 .single-box .countdown-item {
    -webkit-text-stroke: 1px #090440;
    /* color: transparent; */
    font-size: 78px;
}
/*
 * Responsive
*/
@media (max-width:991px){
	.countdown-timer-section.style5 .single-box {
    width: 150px;
    height: 150px;
	}
	.countdown-timer-section.style5 .single-box .countdown-item {
    font-size: 55px;
	}
	.countdown-timer-section {
    padding: 100px 50px;
	}
}
@media (max-width:767px){
	.countdown-timer-section.style5 .single-box {
    width: 110px;
    height: 110px;
	}
	.countdown-timer-section.style5 .single-box .countdown-item {
    font-size: 40px;
	}
	.countdown-timer-style2-full {
    display: inherit;
    text-align: center;
	}
	.countdown-timer-style2-full .left-content {
    margin-bottom: 30px;
	}
	.countdown-timer-style2-full  .right-btn {
    margin-top: 25px;
	}
}
@media (max-width:576px){
	.countdown-timer-section {
    padding: 60px 20px;
	}
	.countdown-timer-section h2.title {
    font-size: 30px;
	}
	.countdown-container .single-box {
    margin: 0px 2px;
    width: 90px;
    height: 90px;
	}
	.default-layout-3-content .title h2 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 26px;
	}
	.default-layout-3-content {
    padding: 20px 15px;
	}
	.countdown-timer-style3 {
    padding: 100px 20px;
	}
	.countdown-timer-section.style5 .single-box {
    width: 90px;
    height: 90px;
	}
	.countdown-timer-section.style5 .single-box .countdown-item {
    font-size: 30px;
	}
	/* .countdown-container .single-box {
    background: radial-gradient(closest-side, white 87%, transparent 95% 100%),
    conic-gradient(#00d872 var(--time), #0d1230 0);
	} */
	.countdown-timer-style4 .single-box {
    background: linear-gradient(30deg, #3e0982a6 40%, #561374ad 90%);
	}
}
@media (max-width:450px){
	.countdown-container .single-box {
    width: 72px;
    height: 72px;
	}
	.countdown-container .single-box .countdown-item {
    font-size: 22px;
	}
	.single-box-full span {
    font-size: 12px;
	}
	.countdown-timer-style3 {
    padding: 0px 0px;
	}
	.default-layout-3-content {
		padding: 50px 10px;
    background: #ffffff94;
	}
	.countdown-timer-section.style5 .single-box {
    width: 90px;
    height: 90px;
	}
	.countdown-timer-section.style5 .single-box .countdown-item {
    font-size: 22px;
	}
}
