body,html{
	height: 100vh;
	margin: 0;
    color: #f8f9fa;
    background: #08132b;
}

.ticket-history {
  background: #0b2b56;
  border-radius: 20px;
  padding: 20px;
  width: 30%;
  color: white;
}

.ticket-history h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.ticket-item {
  display: flex;
  align-items: center;
  background: #204a87;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

.ticket-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin-right: 10px;
}

.ticket-item .details {
  flex: 1;
}

.ticket-item .details h2 {
  margin: 0;
  font-size: 16px;
}

.ticket-item .buy-button {
  background: #ffdc00;
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  cursor: pointer;
  font-size: 14px;
}
.bottom-bar {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom: none !important;
    border: white solid 4px;
}

.explore-more-btn {
    padding: 1.25rem;
    height: 86px;
    width: 100%;
    border: none;
    background: transparent;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    /* border-radius: 25px; */
    color: white;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}


.explore-more-btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
  /* You can add other hover effects if you like */
}

.circle {
  width: 20px; /* Adjust the size as needed */
  height: 20px;
  box-shadow: 1px -1px 5px 5px rgb(242 254 79 / 55%);
  border-radius: 50%;
  position: absolute;
  left: 20px; /* Adjust based on padding and desired position */
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  animation: flickerAnimation 1.5s infinite;
  border: #f2fe4e solid 1.5px;
}

@keyframes flickerAnimation {
  0%   { opacity: 0.5; }
  50%  { opacity: 1; }
  100% { opacity: 0.5; }
}

.play-button {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgb(242 254 79);
  box-shadow: 0 0 15px 5px rgb(242 254 79 / 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.icon-play {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 30px solid #fff;
  transition: transform 0.5s ease;
}

.equalizer {
  position: absolute;
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding-bottom: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bar {
  width: 10%;
  height: 20%;
  background: rgb(242 254 79 / 70%);
  border-radius: 5px;
}

/* Define different keyframes for varying heights and timings */
@keyframes bounce1 {
  0% { height: 20%; }
  100% { height: 60%; }
}

@keyframes bounce2 {
  0% { height: 30%; }
  100% { height: 70%; }
}

@keyframes bounce3 {
  0% { height: 40%; }
  100% { height: 80%; }
}

@keyframes bounce4 {
  0% { height: 20%; }
  100% { height: 75%; }
}

@keyframes bounce5 {
  0% { height: 30%; }
  100% { height: 65%; }
}

/* Apply the different animations to each bar */
.equalizer .bar:nth-child(1) { animation: bounce1 0.5s infinite alternate; }
.equalizer .bar:nth-child(2) { animation: bounce2 0.6s infinite alternate; }
.equalizer .bar:nth-child(3) { animation: bounce3 0.4s infinite alternate; }
.equalizer .bar:nth-child(4) { animation: bounce4 0.7s infinite alternate; }
.equalizer .bar:nth-child(5) { animation: bounce5 0.5s infinite alternate; }

.playing .icon-play {
  transform: scale(0);
}

.playing .equalizer {
  opacity: 1;
}

.historical-sessions{
    display: grid;
    max-height: 350px;
}

.dropdown-btn{
    background-color: transparent;
    color: inherit;
    text-align: left;
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    width: 80%;
    margin-right: 10%;
    margin-left: 15%;
}

.dropdown-btn:hover, .sidebar-btn:focus .sidebar-btn.active{
    background-color: rgba(255, 255, 255, 0.1); /* Slight background on hover/focus for feedback */
    color: #fff; /* Change text color on hover/focus if needed */
    text-decoration: none; /* Remove text underline on hover/focus */
    outline: none; /* Remove focus outline */
}

.sidebar-btn {
    background-color: transparent; /* Remove background */
    color: inherit; /* Use the text color of the parent element */
    text-align: left; /* Align text to the left */
    padding: 10px; /* Add some padding */
    border-radius: 10px; /* Remove border-radius */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    width: 90%;
    margin-right: 5%;
    margin-left: 5%;
}

.grid-container {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom: none !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: end;
    padding: 1.25rem;
    grid-column-gap: 5px;
    grid-row-gap: 10px;
}

.next-stop-btn {
    background-color: transparent;
    color: inherit;
    text-align: center;
    font-size: 14px;
    border: white;
    border-style: solid;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    margin-right: 1%;
    margin-left: 1%;
    text-wrap: balance;
}

.next-stop-btn:hover, .next-stop-btn:focus .next-stop-btn.active{
    background-color: rgb(243 255 79); /* Slight background on hover/focus for feedback */
    color: black; /* Change text color on hover/focus if needed */
    text-decoration: none; /* Remove text underline on hover/focus */
    outline: none; /* Remove focus outline */
}

.sidebar-btn:hover, .sidebar-btn:focus .sidebar-btn.active{
    background-color: rgb(243 255 79); /* Slight background on hover/focus for feedback */
    color: black; /* Change text color on hover/focus if needed */
    text-decoration: none; /* Remove text underline on hover/focus */
    outline: none; /* Remove focus outline */
}

.dropdown-btn:hover, .dropdown-btn:focus .dropdown-btn.active{
    background-color: rgba(255, 255, 255, 0.1); /* Slight background on hover/focus for feedback */
    color: #fff; /* Change text color on hover/focus if needed */
    text-decoration: none; /* Remove text underline on hover/focus */
    outline: none; /* Remove focus outline */
}
.sidebar-footer {
    padding: 20px;
    height: 90px;
    background-color: #2C3E50; /* Replace with the actual color code from your design */
    color: #FFFFFF;
    border-radius: 10px; /* Adjust as needed */
    position: absolute;
    bottom: 0;
    width: 25%;
    box-sizing: border-box; /* So that padding does not affect the width */
}
.error-message{
    color: red;
    text-align: center;
}
.profile-picture {
    width: 50px; /* Adjust as needed */
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-info {
    display: inline-block;
    vertical-align: top;
}

.user-name {
    font-weight: bold;
}

.user-email {
    color: #AAB2BD; /* Lighter text color for email */
}

.user-status {
    background-color: #34495E; /* Different background color for the status badge */
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    margin: 10px 0;
    font-size: 0.8em;
}

.upgrade-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #3498DB; /* Replace with the actual button color from your design */
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px #2874A6; /* Gives a button a pressed effect */
    cursor: pointer;
}

.upgrade-btn:hover {
    background-color: #2980B9; /* Slightly darker color on hover */
}

.body {
    color: #f8f9fa;
}

.sidebar {
    display: flex;
    flex-direction: column;
    height: 100%; /* Adjust based on your design */
    width: 30%;
}

.carousel {
    position: relative;
}

.carousel-slides {
    display: flex; /* To align slides in a row */
    overflow: auto; /* Hide the non-visible slides */
    min-height: 395px;
    margin-top: 3px;
}

.carousel-slide {
    position: relative;
    flex: 0 0 100%; /* Each slide takes up 100% of the container width */
    transition: transform 0.5s ease; /* Smooth transition for the movement */
    /* Other styles here */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    /* Add more styling for the control buttons */
}

.guide-card {
    position: absolute;
    backdrop-filter: blur(14px);
    bottom: 20px; /* Distance from the bottom of the slide */
    left: 50%;
    transform: translateX(-50%); /* Center the card horizontally */
    width: 90%; /* Width of the card */
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 15px; /* Rounded corners */
    color: white; /* Text color */
    text-align: center; /* Center text */
    /* ... other styles such as box-shadow, etc. ... */
}

.guide-category {
    /* Styling for the category, possibly a badge or label */
}

.choose-guide-btn {
    background-color: #f3ff4f; /* Remove background */
    color: black; /* Use the text color of the parent element */
    text-align: center; /* Align text to the left */
    padding: 10px; /* Add some padding */
    border-radius: 25px; /* Remove border-radius */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    width: 90%;
    margin-right: 15px;
    margin-left: 15px;
    cursor: pointer;
}

.choose-guide-btn:hover, .choose-guide-btn:focus {
    background-color: rgba(255, 255, 255, 0.1); /* Slight background on hover/focus for feedback */
    color: #fff; /* Change text color on hover/focus if needed */
    text-decoration: none; /* Remove text underline on hover/focus */
    outline: none; /* Remove focus outline */
}


.left {
    left: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
}

.right {
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    min-width: 160px; /* Minimum width */
    z-index: 1; /* Ensure it's above other items */
    max-height: 400px;
    overflow: scroll;
}

.dropdown-content .btn.sidebar-btn {
    background-color: transparent; /* Make sure dropdown items match the button style */
    color: black; /* Text color */
    padding: 12px 16px;
    text-decoration: none;
    display: block; /* Dropdown items should stack vertically */
}

.dropdown-content .btn.sidebar-btn:hover {
    background-color: #ddd; /* Hover effect */
}

/* Add styles for input and button inside the modal */

#user-profile {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd; /* Example border */
}
.btn.sidebar-btn {
    display: flex; /* Enable Flexbox */
    justify-content: space-between; /* Align children to each side */
    align-items: center; /* Center items vertically */
    padding: .75rem 1.25rem;
}

.button-text {
    margin-right: auto; /* Ensures text stays left and icon goes right */
}

.chat{
    display: flex !important;
    margin-top: auto;
    margin-bottom: auto;
}
.card{
	height: 100vh;
	width: 40%;
	background-color: rgba(0,0,0,0.4) !important;
}
.msg_reactions{
    justify-content: flex-end;
    align-self: center;
    padding-left: 1vh;
    display: list-item;
}

.thumb_up, .thumb_down {
    font-size: large;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 50% 50% 50% 25%;
    border-radius: 50px;
}

.thumb_up .fas, .thumb_down .fas {
    color: gray;
}

/* Styles when a thumb is active/upvoted or downvoted */
.thumb_up.active .fas, .thumb_down.active .fas {
    color: green; /* or any color you prefer */
}

.thumb_down.active .fas {
    color: red; /* or any color you prefer */
}
.contacts_body{
	padding:  0.75rem 0 !important;
	overflow-y: auto;
	white-space: nowrap;
}
.msg_card_body{
	overflow-y: auto;
}
.card-header{
	border-radius: 15px 15px 0 0 !important;
	border-bottom: 0 !important;
}
.card-footer{
border-radius: 0 0 15px 15px !important;
	border-top: 0 !important;
}
.container{
	align-content: center;
}
.search{
	border-radius: 15px 0 0 15px !important;
	background-color: rgba(0,0,0,0.3) !important;
	border:0 !important;
	color:white !important;
}
.search:focus{
	 box-shadow:none !important;
   outline:0px !important;
}
.type_msg{
	background-color: rgba(0,0,0,0.3) !important;
	border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
	border:0 !important;
	color:white !important;
	height: 60px !important;
	overflow-y: auto;
	padding-left: 60px;
}
	.type_msg:focus{
	 box-shadow:none !important;
   outline:0px !important;
}
.attach_btn{
	border-radius: 15px 0 0 15px !important;
	background-color: rgba(0,0,0,0.3) !important;
	border:0 !important;
	color: white !important;
	cursor: pointer;
}
.send_btn{
	border-radius: 0 30px 30px 0 !important;
	background-color: rgba(0,0,0,0.3) !important;
	border:0 !important;
	color: white !important;
	cursor: pointer;
	padding: 0px;
    padding-right: 20px;
}
.search_btn{
	border-radius: 0 15px 15px 0 !important;
	background-color: rgba(0,0,0,0.3) !important;
	border:0 !important;
	color: white !important;
	cursor: pointer;
}
.contacts{
	list-style: none;
	padding: 0;
}
.contacts li{
	width: 100% !important;
	padding: 5px 10px;
	margin-bottom: 15px !important;
}
.thumb_up.active, .thumb_down.active {
    background-color: transparent;
}
.active{
	background-color: rgb(243 255 79);
	color: black;
}
.user_img{
	height: 70px;
	width: 70px;
	border:1.5px solid #f5f6fa;
}
.logo_top_right{
	width: 100%;
}

.guide_icons{
    max-height: 300px; /* Maximum height for the icons */
    width: 100%;
    object-fit: contain; /* This will make sure the content is scaled properly */
    object-position: center;
}



.user_img_msg{
	height: 40px;
	width: 40px;
	border:1.5px solid #f5f6fa;

}
.img_cont{
	position: relative;
	height: 70px;
	width: 70px;
}
.img_cont_msg{
	height: 40px;
	width: 40px;
}
.online_icon{
	position: absolute;
	height: 15px;
	width:15px;
	background-color: #4cd137;
	border-radius: 50%;
	bottom: 0.2em;
	right: 0.4em;
	border:1.5px solid white;
}
.offline{
	background-color: #c23616 !important;
}
.user_info{
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 15px;
}
.user_info span{
	font-size: 20px;
	color: white;
}
.user_info p{
	font-size: 10px;
	color: rgba(255,255,255,0.6);
}
audio::-webkit-media-controls-panel {
  background-color: #243877;
}
audio::-webkit-media-controls-play-button {
  color: #f8f9fa;
}
audio::-webkit-media-controls-mute-button {
  color: #f8f9fa;
}
audio::-webkit-media-controls-current-time-display {
  color: #f8f9fa;
}

audio::-webkit-media-controls-time-remaining-display {
  color: #f8f9fa;
}
.custom-button {
    display: inline-block;
	background-color: #F4FE70;
    color: #212529;
    padding: 8px 20px;
	margin-left: 50px;
    border: none;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

.ticket-image {
    height: 25px;
    margin-right: 15px
}

.custom-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}
.video_cam{
	margin-left: 50px;
	margin-top: 5px;
}
.video_cam span{
	color: white;
	font-size: 20px;
	cursor: pointer;
	margin-right: 20px;
}

.text_wrapper {
    max-height: 160px;
    line-height: 25px;
    overflow: hidden;
    margin-bottom: auto;
    margin-left: 10px;
    border-radius: 25px;
    padding: 5px;
    background-color: #0b1d4a;
}

.msg_cotainer {
    margin-top: auto;
    max-height: 220px; /* Adjusted to allow space for the button */
    line-height: 25px;
    max-width: 88%;
    overflow: hidden;
    margin-bottom: auto;
    margin-left: 10px;
    border-radius: 25px;
    background-color: #0b1d4a;
    padding: 5px;
    position: relative;
    transition: max-height 0.3s ease;
}

.see-more-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #0d1d4b;
    color: #f3ff50;
    border: none;
    cursor: pointer;
}

.msg_cotainer.expanded {
    max-height: none; /* This will expand the container to show all content */
    padding-bottom: 30px; /* Reset padding when expanded */
}

.text_wrapper.expanded {
  max-height: none; /* This will expand the container to show all content */
  line-height: 25px;
}


.msg_cotainer_send{
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 10px;
	margin-left: 5%;
	border-radius: 25px;
    background-color: #f3ff4f;
	padding: 10px;
	position: relative;
	color: #222222;
}
.msg_time{
	position: absolute;
	left: 0;
	bottom: -15px;
	color: rgba(255,255,255,0.5);
	font-size: 10px;
}
.msg_time_send{
	position: absolute;
	right:0;
	bottom: -15px;
	color: rgba(255,255,255,0.5);
	font-size: 10px;
}
.msg_head{
	position: relative;
}
#action_menu_btn{
	position: absolute;
	right: 10px;
	top: 10px;
	color: white;
	cursor: pointer;
	font-size: 20px;
}
.action_menu{
	z-index: 1;
	position: absolute;
	padding: 15px 0;
	background-color: rgba(0,0,0,0.5);
	color: white;
	border-radius: 15px;
	top: 30px;
	right: 15px;
	display: none;
}
.action_menu ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.action_menu ul li{
	width: 100%;
	padding: 10px 15px;
	margin-bottom: 5px;
}
.action_menu ul li i{
	padding-right: 10px;
}
.action_menu ul li:hover{
	cursor: pointer;
	background-color: rgba(0,0,0,0.2);
}
@media(max-width: 576px){
	.contacts_card{
	margin-bottom: 15px !important;
}
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    /*
    background-color: #030a1a;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%; Could be more or less, depending on screen size */
    font-family:sans-serif;
    color:whitesmoke;
    height: 100vh;
    display: grid;
    width: 100%;
    place-items: center;
    /*background-color: #8EC5FC;*/
    background: -webkit-linear-gradient(left,#003366,#004080,#0059b3);
}
::selection{
  background: #1a75ff;
  color: #fff;
}
.wrapper{
  overflow: hidden;
  max-width: 390px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.wrapper .title-text{
  display: flex;
  width: 200%;
}
.wrapper .title{
    width: 50%;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    background-image: linear-gradient(45deg,#003366,#0059b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wrapper .slide-controls{
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0 10px 0;
  justify-content: space-between;
  border: 1px solid lightgrey;
  border-radius: 15px;
}
.slide-controls .slide{
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.signup{
  color: #000;
}
.slide-controls .slider-tab{
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 15px;
  background: -webkit-linear-gradient(left,#003366,#004080,#0059b3
, #0073e6);
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
input[type="radio"]{
  display: none;
}
#signup:checked ~ .slider-tab{
  left: 50%;
}
#signup:checked ~ label.signup{
  color: #fff;
  cursor: default;
  user-select: none;
}
#signup:checked ~ label.login{
  color: #000;
}
#login:checked ~ label.signup{
  color: #000;
}
#login:checked ~ label.login{
  cursor: default;
  user-select: none;
}
.wrapper .form-container{
  width: 100%;
  overflow: hidden;
}
.form-container .form-inner{
  display: flex;
  width: 200%;
}
.form-container .form-inner form{
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.form-inner form .field{
  height: 50px;
  width: 100%;
  margin-top: 20px;
}
.form-inner form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 15px;
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 17px;
  transition: all 0.3s ease;
}
.form-inner form .field input:focus{
  border-color: #1a75ff;
  /* box-shadow: inset 0 0 3px #fb6aae; */
}
.form-inner form .field input::placeholder{
  color: #999;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder{
  color: #1a75ff;
}
.form-inner form .pass-link{
  margin-top: 5px;
}
.form-inner form .signup-link{
  text-align: center;
  margin-top: 30px;
}
.form-inner form .pass-link a,
.form-inner form .signup-link a{
  color: #1a75ff;
  text-decoration: none;
}
.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover{
  text-decoration: underline;
}
.signup-link{
    color: #000000c4;
}
form .btn{
  height: 50px;
  width: 100%;
  padding: 0;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
form .btn .btn-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(right,#003366,#004080,#0059b3
, #0073e6);
  border-radius: 15px;
  transition: all 0.4s ease;;
}
form .btn:hover .btn-layer{
  left: 0;
}
form .btn input[type="submit"]{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
