@font-face {
  font-family:"Roboto Slab SemiBold" ;
  src: url("../fonts/RobotoSlab-SemiBold.ttf");
}

@font-face {
  font-family:"Roboto Slab" ;
  src: url("../fonts/RobotoSlab-Regular.ttf");
}

h1,h2,h3,h4,h5,h6 {
  font-family:"Roboto Slab SemiBold" ;
}

p {
    font-family:"Roboto Slab";
}

ul li {
    font-family:"Roboto Slab";
}

:root {
  --theme-main-blue-color : rgb(21,55,150);
}

/* Scrollbar */

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px var(--theme-main-blue-color);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: var(--theme-main-blue-color);
}
/* Scrollbar */

.bg-blue {
  background: rgb(21,55,150);
  background: -moz-radial-gradient(circle, rgba(21,55,150,1) 0%, rgba(14,17,79,1) 80%);
  background: -webkit-radial-gradient(circle, rgba(21,55,150,1) 0%, rgba(14,17,79,1) 80%);
  background: radial-gradient(circle, rgba(21,55,150,1) 0%, rgba(14,17,79,1) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#153796",endColorstr="#0e114f",GradientType=1);
/*  color: #F5F5F5;*/
}

.theme-text-blue {
  color: var(--theme-main-blue-color);
}

.theme-white-btn {
  background-color: #F5F5F5;
  color: var(--theme-main-blue-color);
  border: 1px solid var(--theme-main-blue-color);
  transition: 0.3s ease-in all;
}

.theme-white-btn:hover {
  color: #F5F5F5;
  background-color: var(--theme-main-blue-color);
  border: 1px solid #F5F5F5;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  position: relative;
}

/* Basic Styles */
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family:"Roboto Slab SemiBold", sans-serif;
}

.banner-img {
  background-image: url('../img/banner.jpg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 100%;
  height: 200px;
  /* height: 100%; */
}
.list-group-item {
  border: 1px solid #fbb040!important;
  border-radius: 50px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  padding-left: 0.5rem;
}

.list-group-item:first-child,
.list-group-item:last-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: 30px;
}

.list-group-item .icon {
  font-size: 24px;
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fbb040;
}

.list-group-item .form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.list-group-item.selected,
.list-group-item.selected .icon {
    /* background-color: rgb(15 25 94); */
    background: linear-gradient(to right, #b28500, #ffd84a);
    color: #fff;
    border-width: 2px;
}
.list-group-item,
.list-group-item .icon {
    color: rgb(15 25 94);
    background-color: #fff;
    border: 1px solid #fbb040;
    transition: 0.2s ease all;
}
.list-group-item:hover,
.list-group-item:hover .icon {
  /* background-color: rgba(15, 25, 94, 0.7); */
  background: linear-gradient(to right, rgba(178, 133, 0, 0.7), rgba(255, 216, 74, 0.7));

  color: #F5F5F5;
}
@media (max-width: 1199px) {
  .banner-img {
    height: 14.5vh;
  }
}

.btn-login {
  background-color: #bb8c3a;
  color: white;
  font-size: 1.2rem;
  border: 2px solid #bb8c3a;
  transition: all 0.3s ease-in;
}

.btn-login:hover {
  color: #bb8c3a;
  background-color: white;
  border: 2px solid #bb8c3a;
}

.text-black{
  color: #212529;
}

.question-area h4, h5{
  color: white;
}

input[type='radio']:disabled {
    pointer-events: none;
}

/* Add this CSS to your stylesheets */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.popup h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.popup p {
    margin-bottom: 20px;
}

.popup .continue-btn,
.popup .change-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.popup .continue-btn:hover,
.popup .change-btn:hover {
    background-color: #0056b3;
}

textarea.form-control{
  border : 1px solid #fbb040;
}

.title-heading{
  color: var(--theme-main-blue-color);
}
