.title {
	color: var(--primary-color);
	font-family: Aurora Regular;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
}
.sub-title {
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 2.88px;
	text-transform: capitalize;
	background: var(--gold, linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.description-text{
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1.88px;
    line-height: 25px;
}
.continue_btn {
    padding: 18px 40px;
    border-radius: 100px;
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    line-height: 70px;
    color: #291E3C;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    width: auto;
}
.continue_btn:hover {
    text-decoration: none;
    background: linear-gradient(0deg, #E9A42A 0%, #F2C875 121.79%);
    color: #291E3C;
}
.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.game-graphic-container {
    position: relative;
    width: 350px;
}

.name-form {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    z-index: 1;
}

.name-form input {
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: calc(100% - 20px);
}
.resultScreen .name-form{
    top: 115px;
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    padding: 10px 10px;
    border-radius: 10px;
}

.img-responsive {
    width: 100%;
    height: auto;
}

/* Thermmeter Start */
.thermometer {
    width: auto;
    margin: 0 auto;
    position: relative;
}

.thermometer-base,
.thermometer-body {
    background-color: #ededfa;
    border: 15px solid #d8d9e8;
    margin: 0 auto;
}

.thermometer-base,
.thermometer-base-fill {
    margin: 0 auto;
    border-radius: 50%;
    z-index: 0;
}

.thermometer-base {
    height: 80px;
    width: 80px;
}

.thermometer-base::before {
    content: "";
    background-color: #f0443e;
    height: 18px;
    width: 19px;
    position: absolute;
    left: 30px;
    z-index: 1;
}

.thermometer-base-fill {
    background-color: #f0443e;
    height: 50px;
    position: relative;
    transition: top 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.thermometer-body,
.thermometer-body-fill {
    margin: 0 auto;
    border-radius: 50px 50px 0 0;
    z-index: 1;
}

.thermometer-body {
    height: 250px;
    width: 50px;
    border-bottom: 0;
    position: relative;
    bottom: -23px;
    overflow: hidden;
}

.thermometer-body-fill {
    background-color: #f0443e;
    height: 230px;
    width: 20px;
    position: relative;
    top: 160px;
    transition: top 0.5s linear;
}

.controls {
    text-align: center;
    position: absolute;
    top: 38px;
    right: -40px;
    overflow: visible;
}
/* Thermmeter End */

.my-progress-bar {
    position: relative;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-family: verdana;
    font-weight: bold;
    color: var(--primary-color);
}
.disclaimer_section {
    margin-top: 600px;
}

.disclaimer_section h3,
.disclaimer_section p {
    letter-spacing: 2.88px;
}

.disclaimer_section h4 {
    color: #FFF;
    text-align: center;
    font-family: Aurora Regular;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    padding-bottom: 20px;
}


@media (max-width: 1366px) {
    .description-text {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .title{
        font-size: 18px;
    }
    .sub-title{
        font-size: 9px;
    }
    .description-text {
        font-size: 9px;
        line-height: 16px;
    }
    .game-graphic-container {
        width: 300px;
    }
    .resultScreen .game-graphic-container {
        width: 275px;
    }
    .thermometer-body{
        height: 200px;
    }
    .name-form{
        width: 70%;
    }
    .continue_btn{
        font-size: 16px;
    }
}