/* cookies start */


     .cookie-consent-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* background-color:rgba(211, 211, 211, 0.8);  */
     background-color: rgba(0, 0, 0, 0.5); 
  
 
    padding: 1rem 0;
    border-top: 3px solid #6145D6;
    z-index: 1000;
}

.cookie-title {
    color: white; 
    font-size: 22px; 
    font-weight: bold; 
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-align: left; 
    font-family: "Roboto", sans-serif;
}

.cookie-description {
    color: white;
    font-size: 16px; 
    margin-bottom: 0.5rem;
    text-align: justify; 
    font-family: "Roboto", sans-serif;
}


.cookie-buttons {
    display: flex;
    justify-content: flex-end; 
    padding-top: 0.5rem; 
    gap: 0.3rem; 
    font-family: "Roboto", sans-serif;
}


.test  {
  /*   padding: 0.375rem 0.75rem;  */
    margin-right: 0.25rem; 
    border-radius: 0.25rem; 
    font-size: 0.9rem; 
    border: 1px solid transparent; 
    background-color:white;
    color: #000;
    border: 1px solid #000;
    /* margin-right: 0.5rem; */
}
.btn:hover {
    background-color: #6145D6; 
    color: #fff; 
    border: 1px solid #6145D6; 
}

.allow-selection {
    background-color: #6145D6;
    color: white; 
    border: 1px solid black; 
    border-radius: 18px;
}

.allow-all {
    
    color:black; 
    border: 1px solid black; 
    border-radius: 18px;
}
/* Add this new CSS for the 'View Cookie Policy' button */
.cookie-policy {
 
  color: #333; /* Dark text color, adjust as needed */
  border: 1px solid black; 
  padding: 0.375rem 0.75rem; 
  border-radius: 0.25rem; 
  font-size: 0.9rem; 
  border-radius: 18px;
}
.button-container {
    justify-content: flex-end; 
}

#cookieConsentContainer {
    display: none;
      
}



.modal-content {
  /* Adjust width and padding as needed */
  max-width: 800px; /* or any other size */
  padding: 20px;
}
.modal-body {
    max-height: 400px; /* Adjust the height as needed */
    overflow-y: auto;
  }
  
  /* Hover effect for h6 tags */
  .modal-body h6:hover {
    color: #6145D6; /* Adjust the hover color as needed */
    cursor: default;
  }
  .modal-title{
  	color:#6145D6;
  }
  
  /* Horizontal rule after h6 tags */
  .modal-body h6 {
    
    padding-bottom: 10px;
     font-weight: bold;
  }
	
	.modal-body p {
    border-bottom: 1px solid #ddd; /* Add underline to p tags */
    padding-bottom: 10px;
}

  /* Custom styling for the switch buttons, based on your provided image */
  .custom-switch {
    position: relative;
    display: inline-block;
    width: 60px; /* Width of the switch */
    height: 34px; /* Height of the switch */
  }

  .custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

	.cookie-section {
    display: flex;
    justify-content: space-between; /* This will push the label to the right */
    align-items: center; /* Aligns items vertically in the center */
    margin-bottom: 10px; /* Add some space below each section */
}
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc; /* Background of the slider */
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 26px; /* Height of the slider circle */
    width: 26px; /* Width of the slider circle */
    left: 4px;
    bottom: 4px;
    background-color: white; /* Background of the slider circle */
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .custom-switch .slider {
  transform: scale(0.7);
}

.custom-switch .slider:before {
  transform: scale(0.7); /* Scale down the circle inside the switch */
}

/* Adjust the position to align properly after scaling */
.custom-switch .slider.round:before {
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
}
  
    
    /* cookies end */
    
/*------------------------------------------------------------------------------------------------------  */

.services-bar {
    background-color: #f5f5f5;
    padding: 20px;
}
.card{
	background-color:#ffffff;
	padding:20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.text-center{
	margin-top:10px;
}
.form-group {
    margin-bottom: 20px;
}
.form-check-label {
    font-size: 14px;
}
.form-check-input {
    margin-top: 2px;
    margin-right: 5px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding:10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size:14px;
}
.btn-primary {
    background-color: #3B0E47;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
}