@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root{
	--blue-color: #000064;
    --skyblue-color: #00c9c9;
    --lightblue: #C9E7F2;
    --lightskyblue: #c7f3f3;
    --theme-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
    --theme-radius:8px;
}
body{
	height: 100vh;
	font-family: 'Roboto', sans-serif;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Raleway' ,sans-serif;
}
.main-wrapper{
}
.form_delete{
	display: none;
	border-right: 1px solid #e7e7e7;
}
.form_delete button{
	border:none;
	padding: 10px 20px;
    background: white;
    transition: 0.5s;
    color: var(--blue-color);
}
.form_delete.active{
	display: block;
}
.event-form{
	background: var(--blue-color);
	/*overflow-y: auto;*/
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-direction: column;
	padding: 20px;
	padding-right: 0px;
}
.total-box-anchor{
	color: black;
	text-decoration: none;
}
.total-box-anchor:hover{
	color: black;
}
table a{
	color: inherit;
	text-decoration: none;
}
.user-profile {
    background: var(--blue-color);
    color: white;
    padding: 5px 10px;
    border-radius: 60px;
    text-decoration: none;
}
.user-profile:hover {
	 background: var(--skyblue-color);
   color: white;
}
.operations{
	border-radius: 8px;
	overflow: hidden;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	box-shadow: var(--theme-shadow);
	margin-bottom: 15px;
}
.operations a,.operations button{
	padding: 10px 20px;
	display: block;
	background: white;
	transition: 0.5s;
	color: var(--blue-color);
}
.flex-heading{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;

}
.flex-heading .back-button button{
	background: var(--blue-color);
	color: white;
	border: none;
	outline: none;
	padding: 5px 15px;
	border-radius: 8px;
}
.operations a:nth-child(1){
	border-right: 1px solid #e7e7e7;	
}
.operations a:hover,.operations button:hover{
	background: var(--blue-color);	
	color: white;
}
table.dataTable thead th {
    text-align: center;
}
.details-box.expirydate i{
	font-size: inherit;
}
.total-box{
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	height: calc(100% - 20px);
}
.total-number i {
    background: var(--blue-color);
    /* padding: 10px; */
    height: 50px;
    width: 50px;
    display: block;
    text-align: center;
    color: white;
    border-radius: 8px;
    line-height: 50px;
    font-size: 25px;
    margin-bottom: 5px;
}
.total-number h1{
	font-family: inherit;
	font-weight: 900;
}
.total-number h5 {
    font-weight: 600;
}
.event-form .form-floating{
	width: 100%;
}
.white-box{
	border-radius: var(--theme-radius);
	background: white;
	min-height: 100vh;
	box-shadow: var(--theme-shadow);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-y: scroll;
	padding: 40px 20px;
	position: relative;
}
.login-form-outer{
	width: 400px;
	height: auto;
}
.login-form{
	width: 100%;
	padding: 20px;
	/*border:1px solid #ced4da;*/
	border-radius: var(--theme-radius);
	box-shadow: var(--theme-shadow);
}
.login-form h4{
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: bold;
}
.login-form .line{
	height: 4px;
	width: 40px;
	background: black;
	margin-bottom: 15px;
}
.form-control,.form-select{
	box-shadow: none;
	border-radius: 12px;
	border-width: 2px !important;
}
.form-control:focus,.form-select:focus{
	box-shadow: none;
	border:2px solid var(--blue-color);
}
.button {
 display: inline-block;
 padding: 12px 24px;
 border: 2px solid var(--blue-color);
 border-radius: 60px;
 transition: all 0.2s ease-in;
 position: relative;
 overflow: hidden;
 font-size: 15px;
 color: black;
 z-index: 1;
 background:white;
}
.button:hover{
	background: var(--blue-color);
	color: white;
}
p,a,li,label,button{
	letter-spacing: 1px;
	font-size: 15px;
}
.registration-form-outer{
	padding: 40px 30px;
	background: white;
	border-radius: 60px 0 0 60px;
}
.registration-form-outer .login-form{
	box-shadow:none;
	border-radius: 0;
}
.registration-side-content{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
	background:#DFDFDF;
	padding: 20px;
}
.registration-side-content h4{
	text-align: center;
	text-transform: uppercase;
}
.registration-side-content h4 span{
	font-weight: 900;
	font-size: 45px;
	letter-spacing: 10px;
}
.registration-outer{
	box-shadow: var(--theme-shadow);
	border-radius: var(--theme-radius);
	overflow: hidden;
	background: #DFDFDF;
}
.checkboxes{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.checkboxes div{
	margin-right: 10px;
}
/* Customize the label (the container) */
.checkbox{
 display: block;
 position: relative;
 padding-left: 35px;
 margin-bottom: 12px;
 cursor: pointer;
 font-size: 16px;
 user-select: none;
 color:black;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #efefef;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: var(--blue-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
/* width */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 0 12px 12px 0;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
  border-radius: 0 12px 12px 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/*.dataTables_scrollHeadInner,.dataTables_scrollHeadInner table, .dataTables_scrollBody table{
	width: 100% !important;
}*/
.user-heading h4{
	font-weight: bold;
}
.user-heading .line{
	height: 4px;
  width: 40px;
  background: black;
  margin-bottom: 15px;
}
.qr-section{
	height: 100%;
	background: url('../img/bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-left: 40px;
}
.logo{
	max-width: 250px;
	margin-bottom: 20px;
}
.qr-section .qr{
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--theme-shadow);
	margin-bottom: 20px;
}
.qr-section .qr img{
	max-width: 250px;
}

.qr-section h2{
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	line-height: 45px;
}
.qr-section h2 span{
	background: var(--skyblue-color);
	padding: 0 10px;
	border-radius: 8px;
	color: white;
}
.event-form h4{
	color: var(--blue-color);
	font-weight: 900;
	text-transform: uppercase;
}
.event-form .line{
	height: 4px;
	width: 60px;
	background: var(--skyblue-color);
	margin-bottom: 10px;
}
.col-p-r{
	padding-right:7px !important;
}
.col-p-l{
	padding-left:7px !important;
}
.form-btn {
    height: 50px;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: var(--blue-color);
    color: white;
    transition: 0.5s;
    border-radius: 5px;
    font-weight: 600;
}
.form-btn:hover {
    transition: 0.5s;
    background: var(--skyblue-color);
}
.form-btn i {
    opacity: 0;
    margin-left: -10px;
    transition: 0.5s;
}
.form-btn:hover i {
    opacity: 1;
    margin-left: 0px;
    transition: 0.5s;
}
.inner-form{
	width: 100%;
	background: white;
	padding: 20px;
	border-radius: 12px;
	box-shadow: var(--theme-shadow);
	width: calc(100% + 20px);
	margin-right: -20px;
	position: relative;
	z-index: 5;
}
.alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: auto;
}
.otpverify{
	min-height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#timer span:nth-child(2){
	color: var(--blue-color);
}
#timer span:nth-child(2),#timer span:nth-child(3){
	font-weight: bold;
}
#timer span:nth-child(3){
	color: var(--skyblue-color);
}
#timer{
	color: #c0c0c0;
}
.bds-logo{
	display: flex;
	justify-content: center;
	align-items: center;
}
.bds-logo img{
	max-width: 250px;
	margin-bottom: 25px;
}
.loader{
	height: 100vh;
	width: 100%;
	background: rgba(255,255,255,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	display: none;
}
.loader.active{
	display: flex;
}
.spinner {
 width: 60px;
 height: 60px;
 position: relative;
}
.spinner .dot {
 position: absolute;
 inset: 0;
 display: flex;
 justify-content: center;
}

.spinner .dot::after {
 content: "";
 width: 7px;
 height: 7px;
 border-radius: 50%;
 background-color: rgb(12, 180, 231);
}

@keyframes spin {
 to {
  transform: rotate(360deg);
 }
}

.spinner .dot {
 animation: spin 2s infinite;
}

.spinner .dot:nth-child(2) {
 animation-delay: 100ms;
}

.spinner .dot:nth-child(3) {
 animation-delay: 200ms;
}

.spinner .dot:nth-child(4) {
 animation-delay: 300ms;
}

.spinner .dot:nth-child(5) {
 animation-delay: 400ms;
}
.quotation-btn{
	background: var(--blue-color) !important;
	color: white !important;
	text-decoration: none;
}
.quotation-btn:hover{
	background: white !important;
	color: var(--blue-color) !important;
}
.files input {
    outline: 2px dashed #92b0b3;
    outline-offset: -10px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    padding: 120px 0px 85px 35%;
    text-align: center !important;
    margin: 0;
    width: 100% !important;
}
.files input:focus{     outline: 2px dashed #92b0b3;  outline-offset: -10px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear; border:1px solid #92b0b3;
 }
.files{ position:relative}
.files:after {  pointer-events: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 50px;
    right: 0;
    height: 56px;
    content: "";
    background-image: url(https://image.flaticon.com/icons/png/128/109/109612.png);
    display: block;
    margin: 0 auto;
    background-size: 100%;
    background-repeat: no-repeat;
}
.color input{ background-color:#f1f1f1;}
.files:before {
    position: absolute;
    bottom: 10px;
    left: 0;  pointer-events: none;
    width: 100%;
    right: 0;
    height: 57px;
    content: " or drag it here. ";
    display: block;
    margin: 0 auto;
    color: var(--blue-color);
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}
 .wrapper {
	 background: var(--skyblue-color);
	 padding: 2rem;
	 border-radius: 15px;
	 width: 100%;

}
.wrapper h3 {
	 font-weight: 900;
	 color: white;
}
.sessions {
	 margin-top: 2rem;
	 border-radius: 12px;
	 position: relative;
	 padding-inline-start: 0;
	 padding-left: 0 ;
}
.sessions li {
	 padding-bottom: 1.5rem;
	 border-left: 1px solid #ffffff;
	 position: relative;
	 padding-left: 20px;
	 margin-left: 10px;
	 list-style: none;
}
.sessions li:last-child {
	 border: 0px;
	 padding-bottom: 0;
}
.sessions li:before {
	content: '';
    width: 15px;
    height: 15px;
    background: #000064;
    border: 1px solid #9e9eff;
    /* box-shadow: 3px 3px 0px #bab5f8; */
    /* box-shadow: 3px 3px 0px #a5a5a5; */
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 0px;
}
.time {
	 color: #cdccd4;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
}
.quotation-box{
	padding:20px;
	background:white;
	border-radius: 10px;
	box-shadow:var(--theme-shadow);
}
@media screen and (max-width:768px){
	.inner-form{
		width: 100%;
		margin-right: 0;
	}	
	.event-form{
		padding: 20px;
	}
	.qr-section h2{
		font-size: 18px;
		line-height: 25px;
	}
	.col-p-r{
		padding-right: 0 !important;
	}
	.col-p-l {
	  padding-left: 0px !important;
	}
}

#delete{
	position: absolute;
	top: 10px;
	right: 10px;
	height: 40px;
	width: 40px;
	border:1px solid #cdcdcd;
	line-height: 40px;
	text-align: center;
	border-radius: 8px;
}
#deleteform.active{
	display: block;
}
#deleteform.inactive{
	display: none;
}
.othersource{
	color: #adadad;
	font-size: 14px;
}
.dataTables_scrollHeadInner{
	width: 100% !important;
}
table.table-striped.dataTable.no-footer{
	width: 100% !important;
}