@import "_variables.css";
.navbar-brand img{
	max-height: 52px;
}
.btn.btn-sm i, .btn-group-sm>.btn i{
	font-size: 1rem;
}
.btn-primary{
	background: var(--bs-primary);
}
.btn-secondary{
	background: var(--bs-secondary);
}
.bg-gradient-primary {
    background-image: linear-gradient(310deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}
.text-primary{
	color: var(--bs-primary) !important;
}
.text-gradient.text-primary{
	background-image: linear-gradient(310deg, var(--bs-primary), var(--bs-secondary));
}
@media (max-width: 767.98px) {
	.page-header.section-height-75{
		min-height: 95vh;
	}
}
.navbar-dark{
	background-image: linear-gradient(120deg, var(--bs-primary) 0%, var(--bs-primary) 100%);
}
.terms-link{
	color: var(--bs-secondary);
	text-decoration: underline;
	cursor: pointer;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
.form-control{
  background: var(--text-white) !important;
}
.select2-container .select2-selection--multiple{
  padding-bottom: 0px;
  border-color: var(--border-color);
}
.select2-container .select2-search--inline .select2-search__field{
  height: 38px;
  margin: 0px;
  padding: 0.5rem 0.75rem;
}
.dropdown-menu{
  min-width: 6rem;
}
.select2-container{
  display: block;
}
.drop-zone {
  max-width: 100%;
  height: 300px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: var(--bs-secondary);
  border: 4px dashed var(--border-color);
  border-radius: 10px;
  position: relative;
}
.drop-zone.profilepic-upload {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    padding: 0;
    overflow: hidden;
}
.drop-zone.image-zone-upload:before {
    content: "\f03e";
    font-family: "Font Awesome 5 Free";
    font-size: 2rem;
    font-weight: 900;
    position: absolute;
    top: 80px;
    color: var(--border-color);
}
.drop-zone.video-drop-zone:before {
    content: "\f03d";
    font-family: "Font Awesome 5 Free";
    font-size: 2rem;
    font-weight: 900;
    position: absolute;
    top: 80px;
    color: var(--border-color);
}
.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--border-color);
  background-size: cover;
  position: relative;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}
.drop-zone__remove-button {
    position: absolute;
    right: 2px;
    top: 2px;
    border: none;
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.drop-zone__remove-button:hover{
  transform: scale(1.2);
}
.drop-zone__remove-button:after{
  content: "\f2ed";
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 900;
}
.drop-zone.profilepic-upload .drop-zone__remove-button{
  right: 45px;
  top: 12px;
  z-index: 1;
}
.file-upload{
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-light);
    padding: 10px 19px;
    border-radius: 6px;
    background: #e9ecff;
    display: inline-block;
}
.file-upload input{
  display: none;
}
.file-upload label{
    font-size: 16px;
    margin: 0;
    color: var(--bs-primary);
    font-weight: 400;
}
label, .form-label, legend{
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bs-primary);
    margin-left: 0.25rem;
}
.input-group .input-group-prepend .input-group-text{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 100%;
}
.input-group .input-group-append .input-group-text{
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  height: 100%;
}
.ticket {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
    border: 2px dashed #f5c352;
    padding: 20px;
    background:#fff;
}
.verify-payment{
    display: flex;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgb(255 255 255 /97%);
    z-index: 9999;
    vertical-align: middle;
    left: 0;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 400;
    color: #000;
    flex-direction: column;
}