@charset "utf-8";
/* CSS Document */
body {
        margin: 0;
        font-family: "Quicksand", serif;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #f4f4f4;
	padding: 0;
    }

    .Logo-container {
        width: 100%;
        max-width: 400px; /* Limit width for larger screens */
        padding: 20px;
        text-align: center;
    }

    .Logo-container img {
        width: 500px; /* Make the image responsive */
        max-width: 500px; /* Limit max width */
        height: auto; /* Maintain aspect ratio */
    }

.onboardingpage
{
	background-image:url("Screenshot (92).png");
	background-size: cover;
	height: 100vh;
	 display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.onboardingpage2
{
	background-image:url("Screenshot (93).png");
	background-size: cover;
	height: 100vh;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	
}

.onboardingpage3
{
	background-image:url("Screenshot (94).png");
	background-size: cover;
	height: 100vh;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content {
	margin: 50px;
	padding: 20px;
    text-align: center;
    color: #f4f4f4; /* White text for better contrast */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for readability */
    border-radius: 10px; /* Rounded corners for content box */
    max-width: 90%; /* Prevent content from exceeding screen width */
  }

  h1 {
    font-size: 4rem;
    margin-bottom: 10px;
	  margin: 25px;
	  display: flex;
	  position: relative;
	  top: 500px;
  }

  p {
    font-size: 1.8rem;
	  margin: 25px;
    margin-bottom: 20px;
	  display: flex;
	  position: relative;
	  top: 500px;
  }



  .next-button {
	  margin: 25px;
	  display: flex;
	  position: relative;
	  top: 500px;
    background-color: #ffc436;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 35px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
  }

  .next-button:hover {
    transform: scale(1.1);
	color: white;
	background-color: #4280ed;
	  
  }

.next-button:active
{
	transform: scale(0.95);
	
}


.Welcome {
    background-image:url("ktm.jpg");
    height: 100vh;
    width: 100%; /* Ensure it spans the full width */
    background-size: cover; /* Cover the container entirely */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    display: flex;
    justify-content: center;
    align-items: center;
}


.Welcome-content{
	margin: 0;
	padding: 20px;
	text-align: center;
    color: #f4f4f4; /* White text for better contrast */
    
    border-radius: 10px; /* Rounded corners for content box */
    max-width: 90%; /* Prevent content from exceeding screen width */
}

.Welcome-content h1
{
	display: flex;
	position: relative;
	font-size: 90px;
	
	top: 700px;
	justify-content: center;
	
}

.LoginBtn
{
	margin: 25px;
	  display: flex;
	  position: relative;
	  top: 700px;
    background-color: #ffc436;
    color: black;
    border: none;
	margin-top: 40px;
    padding: 15px 340px;
    font-size: 50px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
  }

  .LoginBtn:hover {
    transform: scale(1.1);
	color: white;
	background-color: #4280ed;
	  
  }

.LoginBtn:active
{
	transform: scale(0.95);
	
}

.loginpage
{
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100%;
}

.headerlogin
{
	background-color: #ffc436;
	padding: 60px;
	border-radius: 0 0 50px 50px;
}

.headerlogin p
{
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	top:60px;
	font-size: 100px;
	font-weight: 700;
	bottom: 1000px;
}

.login-container 
{
	margin: 100px;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
    width: 100%;
    max-width: 400px;  /* Limit the max width to 400px */
    padding-left: 200px;
    border-radius: 8px;
	
    
}

/* Login form text styles */
.login-form h2 {
    font-size: 79px;
    margin-bottom: 50px;
    text-align: center;
	justify-content: center;
}

/* Input field styles */
.input-group {
	position: relative;
    margin-bottom: 10px;
	padding: 20px;
	width: 700px;
	height: 50px;
}

.input-group input {
    width: 100%;
    padding: 10px 40px;
    font-size: 40px;
    border: 2px solid #ffc436;
    border-radius: 20px;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #007bff;
}

/* Password toggle button */
#toggleIcon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Forgot password link */
.forgot-password {
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 20px;
    text-align:end;
	margin-bottom: 60px;
	position: relative;
	right: 40px;
}

/* Submit button */
.login-button {
    width: 850px;
    padding: 12px;
    font-size: 40px;
	font-weight: 600;
    background-color: #4280ed;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
	height: 80px;
	position: relative;
	left: 20px;
}

.login-button:hover {
    background-color: #ffc436;
	transform: scale(1.1);
	
}

.login-button:active
{
	transform: scale(0.9);
	color: black;
}


.login-form p
{
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	text-align: center;
	top: 1px;
	
}

/* Social login section */
.social-login {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.social-login button {
    width: 350px;
    padding: 15px;
    font-size: 35px;
    border: 2px solid #ffc436;
    border-radius: 20px;
    cursor: pointer;
}

.social-login .google-login {
    background-color: #ffc436;
    color: white;
}

.social-login .facebook-login {
    background-color: #ffc436;
    color: white;
}

.google-login:hover
{
	color: black;
	transform: scale(1.1);
	
}

.facebook-login:hover
{
	color: black;
	transform:scale(1.1);
	
	
}
/* Register link */
.register-link {
    font-size: 20px;
    text-align: center;
	position: relative;
	bottom: 20px;
	justify-content: center;
	top: 10px;
}

.register-link a {
    color: #007bff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}


.home-container
{
	width: 101%;
 justify-content: center;
        padding: 10px;
        text-align: center;
	align-items: center;
	background-color: #4280ed;
	height: 100vh;
	margin: 0;
	right: 1px;
	position: relative;
	
}

.homeheader
{
	padding: 0;
	margin: 0;
	display: flex;
	
	
}

.notification-icon img
{
	width:80px;
	position: relative;
	left: 850px;
	top: 30px;
}


.search-section {
  padding: 20px;
	margin: 20px;
	background-color: white;
	border-radius: 20px 20px 80px 80px;
	position: relative;
	top: 100px;
}

.search-section h2
{
	margin-bottom: 20px;
	font-size: 50px;
	position: relative;
	right: 250px;
}

.input-group {
  margin-bottom: 50px;
  position: relative;
	width: 850px;
	height: 60px;
}

.input-group label {
  font-weight: bold;
	font-size: 35px;
	text-align: left;
  display: block;
  margin-bottom: 10px;
}

.input-group input {
  width: 100%;
  padding: 20px;
  border: 2px solid #ffc436;
  border-radius: 20px;
  font-size: 25px;
}

.input-group .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  pointer-events: none;
}

.date-section {
  display: flex;
  gap: 10px;
}

.date-section .input-group {
  flex: 1;
}

.search-button {
  width: 800px;
  padding: 35px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius:  20px 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
	margin-top: 40px;
	font-size: 30px;
	margin-bottom: 50px;
}

.search-button:hover {
  transform: scale(1.05);
}

/* Announcement Section */
.announcement-section {
  background-color: #ffc436;
  padding: 20px;
	margin: 20px;
  text-align: center;
  font-weight: bold;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
	border-radius: 20px;
	position: relative;
	top: 150px;
	height: 200px;
}

.announcement-section p
{
	position: relative;
	top: 20px;
}

.home-footer
{
	display: flex;
  justify-content: space-around;
  background-color: #ffc436;
	align-items: center;
  padding: 10px ;
	position: relative;
	top:700px;
	left: 0px;
	height: 100px;
	width: 100%;
}

.footer-icon img {
  width: 70px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer-icon img:hover {
  transform: scale(1.2);
}


.TrainTicket
{
	width: 100%;
     padding: 10px;
     text-align: center;
	align-items: center;
	background-color: white;
	height: 100vh;
}

.TrainTicket header
{
	background-color: #ffc436;
	width: 100%;
	padding: 15px;
	margin: 0;
	border-radius: 0 0 50px 50px;
	margin-bottom: 20px;
	position: relative;
	right: 10px;
	height: 250px;
	
}

.header h1
{
	display: flex;
	position: relative;
	top: -70px;
	align-items: center;
	justify-content: center;
	font-size: 100px;
	
}

.back-button
{
	border: none;
	display: flex;
	position: relative;
	top: 100px;
	background: none;
	font-size: 60px;
	cursor: pointer;
	
}

.back-button:hover
{
	transform: scale(1.1);
	transition: transform 0.2s;
	
}

.back-button:active
{
	transform: scale(0.9);
}


.journey-details
{
	background-color: #4280ed;
	padding: 30px;
	margin: 30px;
	border-radius: 40px;
	
}

.journey-box
{
	font-size: 30px;
}

.journey-box p
{
	position: relative;
	top: 0;
	justify-content: center;
	margin-top: 10px;
	font-weight: 600;
	font-size: 40px;
}




.ticket-options
{
	position: relative;
	top: 10px;
	
}

.ticket-card {
  background-color: #ffc436;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
	margin: 15px;
	cursor: pointer;
}

.ticket-card:hover{
	transform: scale(1.03);
	transition: transform 0.2s;
	border: 2px solid black;
}

.ticket-card:active
{
	transform: scale(0.9);
}
.time, .details, .pricing {
  text-align: center;
}

.time p, .details p, .pricing p {
  font-size: 45px;
  font-weight: bold;
	display: flex;
	position: relative;
	top: 15px;
}

.time span, .details span, .pricing span {
  font-size: 30px;
  color: #555;
}

.pricing a {
  font-size: 20px;
  color: #1e90ff;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.pricing a:hover {
  text-decoration: underline;
}

.footer {
  background-color: #4280ed;
  padding: 25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 20px 20px 0px 0px;
	position: relative;
	top: 865px;
	margin: 10px;
	height: 120px;
	width: 1000px;
	left: -60px;
	
}

.footer-item {
  text-align: center;
	
}

.footer-item img {
  width: 70px;
  
	margin-top: 10px;
}

.footer-item p {
  font-size: 24px;
  color: #fff;
	position: relative;
	top: 5px;
}


.footer-item img:hover
{
	transform: scale(1.2);
	transition: transform 0.2s;
}


.seatcontainer 
{
  
  margin: auto;
  text-align: center;
	height: 100vh;
}
.seatcontainer header {
background-color: #4280ed;
	padding: 0px;
	margin: 0px;
	border-radius: 0 0 40px 40px;
	width: 980px;
	height: 250px;
}

.back-btn {
  background: none;
  border: none;
  font-size: 60px;
  cursor: pointer;
	position: relative;
	display: flex;
	top: 75px;
	left: 20px;
}

.back-btn:hover
{
	transform: scale(1.2);
	transition: transform 0.2s;
}

.back-btn:active
{
	transform: scale(0.9);
}

.h1
{
	position: relative;
	top: 20px;
	justify-content: center;
}
/* Legend */
.legend {
  display: flex;
  justify-content: center;
	align-items: center;
  gap: 100px;
  margin: 20px;
	position: relative;
	
	
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
	width: 100px;
	padding: 20px;
	
}

.legend-item p {
  margin: 0;
  font-size: 35px;
	width:20px;
	position: relative;
	top: 0px;
}

/* Seat Map */
.bus-seat-map {
  
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* Seat Styles */
.seat {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

.seat.open {
  background-color: #28a745; /* Green */
}

.seat.selected {
  background-color: #dc3545; /* Red */
}

.seat.you {
  background-color: #007bff; /* Blue */
}

/* Aisle */
.aisle {
  width: 20px;
  height: 30px;
  background-color: transparent;
}

/* Footer */
footer {
  position: relative;
  bottom: 0;
  left: 1px;
  right: 0;
	margin-top: 135px;
  background-color: #4280ed;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
	width: 95.5%;
	border-radius:  20px 20px 0 0 ;
}

.selected-seat-info {
  text-align: left;
}

.selected-seat-info p
{
	position: relative;
	top: 0px;
	font-size: 35px;
	margin-bottom: 10px;
	
}

.choose-btn {
  background-color: #ffc436;
  border: none;
  padding: 30px 120px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 30px;
	font-weight: 700;
	font-family: "Quicksand", serif;
}

.choose-btn:hover
{
	transform: scale(1.07);
	transition: transform 0.3s;
	color: white;
}

.choose-btn:active
{
	transform: scale(0.9);
	
}


/*reviewPage*/

.reviewpage
{
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100%;
}


.back-button
{
	font-size: 100px;
	margin-left: 20px;
	position: relative;
	top: 20px;
	
}

.back-button:hover
{
	transform: scale(1.1);
	transition: transform 0.3s;
}

.back-button:active
{
	transform: scale(0.9);
}

.train-info-card
{
	margin: 85px;
	background-color: #4280ed;
	padding: 20px;
	border-radius: 40px;
}

.train-info-card h2
{
	font-size: 50px;
}

.train-schedule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.train-schedule .time {
  font-size: 50px;
  margin: 0;
	position: relative;
	top: 0;
}

.train-schedule .station {
  font-size: 30px;
  margin: 0;
	font-weight: 500;
	position: relative;
	top: 0;
}

.train-schedule .line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 3px;
  background-color: #fff;
  margin: 0 10px;
}

.train-schedule .dot {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.information p
{
	position: relative;
	top: 0;
	align-items: center;
	font-weight: 700;
	
}


.passengerdetails
{
	background-color: white;
	margin: 90px;
	border: 2px solid #ffc436;
	border-radius: 20px;
	padding: 20px;
	
		
}

.passengerdetails p
{
	position: relative;
	top: 0;
	align-items: center;
	font-size: 40px;
	
}

.passengerdetails:hover
{
	cursor: pointer;
	transform: scale(1.1);
}

.passengerdetails:active
{
	transform: scale(0.9);
}


.Reward
{
	background-color: white;
	margin: 80px;
	border: 2px solid #ffc436;
	border-radius: 20px;
	padding: 20px;
	
}

.Reward p
{
	position: relative;
	top: 0;
	align-items: center;
	font-size: 40px;
}

.Reward:hover
{
	cursor: pointer;
	transform: scale(1.1);
}

.Reward:active
{
	transform: scale(0.9);
}

.pricedetails
{
	margin: 80px;
	padding: 20px;
	background-color: #4280ed;
	border-radius: 20px;
	border: 2px solid;
}
.pricedetails h2
{
	font-size: 45px;
}


.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin: 20px 0;
}


.price-row p
{
	position: relative;
	top: 0;
	font-size: 45px;
}
.price-row.total {
  font-weight: bold;
  border-top: 2px solid #fff;
  padding-top: 10px;
}


.continue-button {
	padding: 40px;
	font-weight: 500;
  display: block;
  margin: 80px;
	width: 825px;
  background-color: #000;
  color: #fff;
  font-size: 40px;
  text-align: center;
  border: none;
  border-radius: 20px;
  cursor: pointer;
	position: relative;
	top: 150px;
}

.continue-button:hover {
  background-color: #333;
	transform: scale(1.02);
	transition: transform 0.2s;
}


.continue-button:active
{
	transform: scale(0.9);
}

.CheckOut 
{
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100%;
}


.CheckOut h1
{
	justify-content: center;
	display: flex;
	position: relative;
	align-items: center;
	top: 0;
	font-size: 100px;
}

/* Payment Methods */
.payment-methods 
{
  margin: 80px;
	padding: 20px;
	flex-direction: column;
	display: flex;
	gap: 20px;
}

.payment-button
{
	font-size: 40px;
	border: 2px solid #ffc436;
	background-color: #ffc436;
	border-radius: 20px;
	padding: 20px;
}

.payment-button:hover
{
	transform: scale(1.1);
	
}


.add-card {
  background-color: #4280ed;
  border: 2px solid black;
  border-radius: 10px;
  padding: 20px;
  margin: 80px;
}

.add-card h3 {
  margin-top: 0;
  font-size: 50px;
}

.card-form input {
  width: 95%;
  padding: 20px;
  margin: 10px 0;
  border: 2px solid #ddd;
  border-radius: 5px;
	font-size: 30px;
}

.card-details {
  display: flex;
  gap: 20px;
	margin-bottom: 40px;
}

.card-details input {
  flex: 1;
}

.pay-button
{
	padding: 40px;
	font-weight: 500;
  display: block;
  margin: 80px;
	width: 825px;
  background-color: #000;
  color: #fff;
  font-size: 40px;
  text-align: center;
  border: none;
  border-radius: 20px;
  cursor: pointer;
	position: relative;
	top: 70px;
}


.pay-button:hover
{
	background-color: #333;
	transform: scale(1.02);
	transition: transform 0.2s;
}

.pay-button:active
{
	transform: scale(0.9);
}

.summary
{
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100%;
}

.summary h1
{
	justify-content: center;
	display: flex;
	position: relative;
	align-items: center;
	top: 0;
	font-size: 100px;
}
/* Passenger Details */
.summarypassenger-details {
  background-color: #ffd700;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
	margin: 80px;
}

.summarypassengerdetailsline
{
	height: 5px;
	background-color: #000;
	margin-top: 10px;
}

.summarypassenger-details p
{
	position: relative;
	top: 0;
	font-size: 30px;
}
.summarypassenger-details label {
  font-size: 40px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
	margin-top: 5px;
	
}


/* Ticket Details */
.summaryticket-details
{
	background-color: #007bff;
  color: #000;
  padding: 15px;
  border-radius: 10px;
  margin: 80px;
	border: 2px solid black;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.summaryticket-card h2
{
	font-size: 60px;
}
.summaryticket-card h5 {
  margin: 0;
  font-size: 50px;
	margin-top: 20px;
}

.summaryticket-card p {
  margin: 20px 0;
  font-size: 45px;
	position: relative;
	top: 0;
}

/* Price Summary */
.summaryprice-summary {
  background-color: #007bff;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin: 80px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
	border: 2px solid #000;
	top: 0;
}

.summaryprice-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin: 10px 0;
	top: 0;
}

.summaryprice-row p
{
	position: relative;
	top: 0;
	font-size: 50px;
	
}


.summaryprice-row-total {
	display: flex;
  font-weight: bold;
  border-top: 5px solid #fff;
  padding-top: 10px;
	justify-content: space-between;
	top: 0;
}

.summaryprice-row-total p
{
	position: relative;
	top: 0;
	font-size: 50px;
	
}



/* Complete Booking Button */
.complete-booking-button {
  display: block;
  width: 820px;
  background-color: #000;
  color: #fff;
  padding: 25px;
  font-size: 50px;
  text-align: center;
  border: none;
  border-radius: 20px;
  cursor: pointer;
	position: relative;
	top: 200px;
	margin: 80px;
}

.complete-booking-button:hover {
  background-color: #333;
	transform: scale(1.02);
	transition: transform 0.2s;
}

.complete-booking-button:active
{
	transform: scale(0.9);
}



.trainticketreview {
  
  margin: 20px auto;
  padding: 25px;
  height: 100vh;
  border-radius: 15px;
  text-align: center;
  font-family: "Quicksand", sans-serif;
	position: relative;
	justify-content: center;
	align-items: center;
	display: block;
	
	
	
}

.trainticketreview h1
{
  font-size: 100px;
  margin-bottom: 60px;
	position: relative;
	top: 20px;
	justify-content: center;
	align-items: center;
}

.details 
{
	border-radius: 50px;
	padding: 20px;
	border: 2px solid #ffc436;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.location {
  text-align: center;
	margin: 30px;
	align-items: center;
	display: block;
	
}

.location p
{
	text-align: center;
	justify-content: center;
	font-size: 60px;
}


.line {
  width: 5px;
  height: 90px; /* Adjust height to match spacing */
  background-color: black;
  margin: 6px auto;
}

.info {
	padding-left: 20px;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.info strong {
  font-weight: bold;
}

.info p
{
	font-weight: 500;
	font-size: 40px;
}

.trainreviewline
{
	width: 800px;
	background-color: #000;
	height: 5px;
	margin-bottom: 15px;
}

.qr-code img {
  width: 60%;
  padding: 20px;
  margin: 0 auto;
}


.choose-bank
{
	 width: 100%;
	height: 100vh;
  text-align: center;
	justify-content: center;
  padding-bottom: 50px;
}


.choosebankback-button 
{
	display: flex;
	position: relative;
  border: none;
  background: none;
  font-size: 60px;
  font-weight: bold;
  margin-right: 10px;
  cursor: pointer;
	right: 40px;
	top:80px;
	
}

.choosebankheader
{
	border-radius: 0 0 40px 40px;
	padding: 90px;
	background-color: #ffc436;
}


.choosebankheader h1 {
  font-size: 80px;
	font-weight: 700;
  margin: 0;
  flex-grow: 1;
	position: relative;
	top: 55px;
	display: grid;
	padding-top: 20px;
}

.search-dropdown {
  margin-top: 30px;
	padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-bar {
  flex: 1;
  padding: 30px;
  font-size: 40px;
  border: 2px solid #ffc436;
  border-radius: 5px 0 0 5px;
}

.dropdown-button {
  background-color: #ffc436;
  border: 3px solid #ffc436;
  border-left: none;
  padding: 43.5px 25px;
  font-size: 15px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}

.dropdown-menu {
  list-style: none;
  padding: 10px;
  margin: 50px 0 0;
  display: none;
  border: 2px solid #ffc436;
  border-radius: 5px;
  background-color: white;
  max-height: 300px;
  overflow-y: auto;
}

.dropdown-menu li {
  padding: 30px;
  cursor: pointer;
  border-bottom: 1px solid #ffc436;
	font-size: 40px;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li:hover {
  background-color: #ffc436;
  color: white;
}
