.order-img{
	width: 80px;
	height: 80px;
	border-radius: 5px;
}

.order-price{
	padding-right: 4rem;
}
.order-price-nav_basket{
    padding-right: 1rem;
}

.order-price span{
	font-weight: 600;
	font-size: 16px;
}

.order-title{
	word-wrap: break-word;
}

.basket-image{
	width: 250px;
	height: 250px;

}

/*==================*/

/* Dropup Button *!*/
.dropbtn {
  background-color: rgb(255, 255, 255);
  color: #81c408 !important;
  padding: 16px;
  font-size: 16px;
  border: none;

}

/* The container <div> - needed to position the dropup content */
.dropup {
  position: relative;
  display: inline-block;


}

/* Dropup content (Hidden by Default) */
.dropup-content {
  display: none;
  position: absolute;
    left: 10%;
  top: 50px;
  background-color: #ffffff;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
     border-radius: 20px;
}
    @media (max-width: 768px) {
        /* Hide the dropdown content while keeping the button visible */
        .dropup-content {
            display: none !important;
        }

        /* If you want to add any specific styles to the button on mobile */
        .dropup .dropbtn  {
            display: inline-block;
        }
    }
.dropup-content i{
    margin: 0.5rem;
}

.dropup-content span {
    color: #d2cfcf;
}

/* Links inside the dropup */
.dropup-content a {
  color: rgba(0, 0, 0, .55);
  padding: 5px 12px;
  text-decoration: none;
  display: block;
    margin: 5px 5px;

}

/* Change color of dropup links on hover */
.dropup-content a:hover {background-color: #ece8e8
}

/* Show the dropup menu on hover */
.dropup:hover .dropup-content {
  display: block;
}
/*=============================================*/

/* Dropup Button *!*/
.dropbtn {
  background-color: rgb(255, 255, 255);
  color: #81c408 !important;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropup content */
.dropup-basket {
  position: relative;
  display: inline-block;
}

/* Dropup content (Hidden by Default) */
.dropup-basket-content {
  display: none;
  position: absolute;
    left: 10%;
  top: 50px;
  background-color: #ffffff;
  min-width: 400px;
    max-height: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
     border-radius: 15px;
    overflow-y: scroll;
    padding: 1rem;
}
.dropup-basket-content i{
    margin: 0.5rem;
}

.dropup-basket-content span {
    color: #d2cfcf;
}

/* Links inside the dropup */
.dropup-basket-content a {
  color: rgba(0, 0, 0, .55);
  padding: 5px 12px;
  text-decoration: none;
  display: block;

}


/* Change color of dropup links on hover */
.dropup-basket-content a:hover {background-color: #ece8e8
}

/* Show the dropup menu on hover */
.dropup-basket:hover .dropup-basket-content {
  display: block;
}

.basket-header-nav {
    position: fixed;
    z-index: 5;
    background-color: rgb(255, 255, 255);
    padding: 1rem;
    margin-top: -3rem;
    right: 9%;
    left: 9%;
    /*top: 20%;*/
    width: 24.8%;


}

.basket-header-nav span{
    color: #9b9797;
}
.basket-header-nav a {
    color: #0d6efd;
    /*border-radius: 10%;*/
}

/*=========================================*/
.tippy-box[data-theme~='custom-theme'] {
    font-size: 14px; /* Set your desired font size here */
  color: yellow;
}


/*=====================================*/
.star{
    /*color: #f12e2e;*/
    /*font-size: 18px;*/
    position: relative;
    bottom: 10%;
}
/*======================*/
#Register {
    width: 100%;
    height: 70%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: none;
}

.form-class {
    position: relative;
}

header {
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.form-content {
    /* Scrollable content area with reduced height */
    max-height: 200px; /* Reduced height */
    overflow-y: auto;
    padding: 20px 0;
    width: 50%;
}

footer {
    padding: 10px 0;
    border-top: 1px solid #ddd;
    text-align: right;
}

/* Button styling */
#button-x1 {
    position: absolute;
    top: 9px;
    left: 10px;
    padding: 0.3rem 0.5rem 0.3rem 0.5rem ;
    border: 1px solid rgba(98, 112, 204, 0.98);
    font-size: 16px;
    margin-left: -20px;
    /*margin-top: 1rem;*/
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff; /* Sets the text/icon color */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

#button-x1:hover {
    background-color: rgb(255, 255, 255); /* Changes background color on hover */
    color: #ffffff; /* Changes text/icon color on hover */
    border-color: #e58d0a; /* Changes border color on hover */
    cursor: pointer; /* Changes cursor to pointer on hover */
}


#x-icon i {
    color: rgb(196, 8, 8);
    font-size: 20px;
    cursor: pointer;
}

.buttons {
    text-align: center;
    margin-top: 20px;
}

#reg-button {
    background-color: rgb(144, 179, 225); /* White background */
    border: 2px solid rgb(255, 255, 255); /* White border */
    color: #ffffff; /* Blue text color */
    padding: 2px 6px; /* Padding inside the button */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline from text */
    display: inline-block; /* Inline-block display */
    font-size: 16px; /* Font size */
    margin: 4px 2px; /* Margin around the button */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

#reg-button:hover {
    background-color: #73acf8; /* Blue background on hover */
    color: #fff; /* White text color on hover */
    border: 2px solid #73acf8; /* Blue border on hover */
}


/* Show the Register form when triggered */
#dark.active, #Register.active {
    display: block;
}

.swal2-popup-custom {
    font-size: 18px; /* Adjust this value for the popup content */
}

.address-form-errors{
    color: red;
    margin-bottom: 1rem;

}