body, html, p, div, input, label { 
    		font-family: "Outfit", sans-serif;
			  font-optical-sizing: auto;
			  font-weight: 400;
			  font-style: normal;
			 }

html {
  scroll-behavior: smooth;
}

#plny-popis {
  scroll-margin-top: 100px; /* např. výška fixního headeru */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  mask-size: 60% 60%;
  -webkit-mask-size: 60% 60%;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 1;
}


.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: ''; /* odstraníme případný defaultní text */
}


.btn-zobacek {
  position: relative;
  border-radius: 10px;
  background-color: #777;
  color: white;
  display: inline-block;
}

.btn-zobacek::before {
  content: '';
  position: absolute;
  top: 1px;      /* zarovná se do výšky tlačítka */
  left: -12px;    /* vystoupí doleva */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 17px 17px 0;
  border-color: transparent #777 transparent transparent;
}





/* teplotní recenze */
.thermometer-bg {
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #f3f3f3, #ffffff);
  border-radius: 10px;
  overflow: hidden;
}
.thermometer-fill {
  height: 100%;
  background-color: #b5dd88;
  transition: width 0.3s ease-in-out;
}
.modal-backdrop.show {
  opacity: 0.7;
  backdrop-filter: blur(3px);
}



/* HP karty news */
.article-img-top {
    height: 200px;
    background-size: cover;
    background-position: center;
    width: 100%;
}


.card h5,
.card h5 a {
    color: #000 !important;
}

.card a h5:hover {
    text-decoration: underline;
}

.card-hover-effect {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover-effect:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



/* modální okno přihlášení */

#loginModal:hover {
  background-color: #c2e4ff;
}
#loginModal:hover label,
#loginModal:hover h5 {
  color: #004080;
}


/* naseptavani */

/* Základní kontejner */
.autocomplete-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  z-index: 9999;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: none;
  max-height: 550px;
  overflow-y: auto;
  border-radius: 6px;
  font-family: "Segoe UI", sans-serif;
}

/* Seznam */
.autocomplete-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nadpis sekce (např. Zboží, Kategorie) */
.autocomplete-section-title {
  font-weight: bold;
  padding: 10px 12px;
  font-size: 0.95rem;
  background: #f5f5f5;
  border-top: 1px solid #eee;
  color: #444;
}

/* Jeden řádek produktu */
.autocomplete-box li.product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s ease;
}

.autocomplete-box li.product-item:hover {
  background-color: #f0f0f0;
}

/* Obrázek */
.autocomplete-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Info o produktu */
.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info strong {
  font-size: 1rem;
  color: #222;
  margin-bottom: 4px;
}

.product-info small {
  font-size: 0.85rem;
  color: #000; font-weight: 500;
}

/* Zápatí (tlačítko zobrazit vše) */
.autocomplete-footer {
  padding: 12px;
  border-top: 1px solid #ddd;
  text-align: center;
  background: #fff;
}

.autocomplete-footer button {
  background: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.autocomplete-footer button:hover {
  background: #0056b3;
}

.product-title {
  font-size: 0.9rem; line-height: 1.3rem;
  color: #222;
}

.pricesearch {
  margin-top: 4px;
  color: #666;
}


/* Responzivita pro mobily */
@media (max-width: 768px) {
  .autocomplete-box {
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: none;
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .autocomplete-box li.product-item {
    padding: 12px 16px;
  }

  .autocomplete-box img {
    width: 40px;
    height: 40px;
  }

  .product-info strong {
    font-size: 1.05rem;
  }

  .product-info small {
    font-size: 0.9rem;
  }

  .autocomplete-footer button {
    font-size: 1.05rem;
  }

  #searchForm.search-expanded {
    position: fixed !important;
    left: 18px;
    width: 85vw;
    z-index: 9999;
    background: white;
  }

  #searchForm.search-expanded .input-group {
    width: 80%;
  }

  #searchForm.search-expanded input {
    font-size: 1.1rem;
  }

  .autocomplete-box {
    left: 0 !important;
    transform: none !important;
    width: 85vw !important;
    max-width: none;
    border-radius: 0 0 8px 8px;
  }
}

.autocomplete-empty {
  padding: 14px;
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  background: #fff8f8;
  border-bottom: 1px solid #eee;
}

.product-item.active {
  background-color: #eef3ff;
}

.pricesearch {
	display:block;
}

.pricesearch small {
	display:block;
	font-size: 0.9rem;
}

.product-info mark {
  background-color: #fff3b0;
  color: inherit;
  font-weight: 600;
  padding: 0;
  margin: 0;
  border-radius: 2px;
  display: inline;
}


/* konec septani */





			 
			 .bckimg {
			 	background: #fff url("/uploads/imgs/bck.jpg") no-repeat right bottom;
  			background-size: auto 100%;
  			margin:0;
  			padding:0 0 40px 0;
			 }
			 
			 .hptx {
			 	font-size:3em;
			 	line-height:1.2em;
			 	font-weight:400;
			 }
			 
			 .hptx strong {
									 	font-weight:900;
									 }
			 
			 .txt-orange { color: #fff; background: #ff6700; border-radius: 6px; border-top-right-radius: 10px;
							border-bottom-right-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); }
			 
			 .txt-orange:hover { color: #fff; background: #333; }
			 
			 .filtrtext {
										 	font-size: 1.2rem !important;
										 }
			 
			 @media (max-width: 768px) {
            .filtrtext {
										 	font-size: 1.1rem !important;
										 	line-height: 2rem;
										 }
						.filtrtext a { white-space: nowrap; }
				}						 
			 
			 .bg-white { background: linear-gradient(to right, #e6f5e6, #dcf2dc, #d1eed1, #c7eac7);
					    color: black;
					    border-top-right-radius: 10px;
							border-bottom-right-radius: 10px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 1em;
					    font-weight: 500; 
					    text-decoration: none;
					    padding-right:3px;
					    }
			 
			 .bg-white:hover { color: #fff; background: #333; }
			 
			 
			 @media (max-width: 768px) {
            .bckimg {
										 	background: #fff url("/uploads/imgs/bck.jpg") no-repeat center bottom;
							  			background-size: 120% auto;
							  			margin:0;
							  			padding:0 0 40px 0;
										 }
						.paddingmob {
										 	padding:20px 10px 80px 10px !important;
										 }		
										 
						.hptx {
									 	font-size:1.8em;
									 	line-height:1.1em;
			 							font-weight:400;
									 }
							 
        }
    	
        .product-detail { display: flex; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .product-offers { margin-top: 40px; }
        .offer { border: 1px solid #ccc; padding: 10px; margin-bottom: 10px; }
				.card-img-top { max-height: 150px; max-width: 90%;
		  			height: auto;
		  			width: auto;
		  			object-fit: contain;
		  			display: block; margin: 10px auto; }
		  
		  	.swiper-slide {
		    		width: auto !important;
		    		max-width: 240px; padding: 10px;
				}
		
				.swiper-slide .card {
		    		border: 1px solid #ff9000; padding: 10px;
		    		box-shadow: 0px 0px 10px 0px #eee;
				}
		
				.orange { border: 1px solid #ff9000;  }
		
				.card-title {
		    		overflow: hidden;
		    		white-space: nowrap;
		    		text-overflow: ellipsis;
				}
		
				.card-body p {
		    		max-height: 2.8em;
		    		overflow: hidden;
				}
				
				.badge-category {
		        background-color: #e0f0ff;
		        color: #0056b3;
		        text-decoration: none;
		        border-radius: 0.5rem;
		        padding: 0.4em 0.6em;
		        font-size: 0.85rem;
		        display: inline-block;
		        margin-right: 0.3rem;
		        transition: background-color 0.2s ease, color 0.2s ease;
		        margin-bottom: 5px;
		    }
		    .badge-category:hover {
		        background-color: #c0e0ff;
		        color: #003d80;
		        text-decoration: none;
		    }
		    
		    .badge-transport {
		        background-color: #e0f0ff;
		        color: #0056b3;
		        text-decoration: none;
		        border-radius: 0.5rem;
		        padding: 0.4em 0.6em;
		        font-size: 0.85rem;
		        display: inline-block;
		        margin-right: 0.3rem;
		        transition: background-color 0.2s ease, color 0.2s ease;
		        box-shadow: 0px 3px 11px -10px rgba(0,0,0,0.9);
		        margin-bottom: 5px;
		    }
		    .badge-transport:hover {
		        background-color: #c0e0ff;
		        color: #003d80;
		        text-decoration: none;
		    }
		    
		    .badge-transport-active {
		        background-color: #e0f0ff;
		        color: #0056b3;
		        text-decoration: none;
		        border-radius: 0.5rem;
		        padding: 0.4em 0.6em;
		        font-size: 0.85rem;
		        display: inline-block;
		        margin-right: 0.3rem;
		        transition: background-color 0.2s ease, color 0.2s ease;
		        box-shadow: 0px 3px 11px -10px rgba(0,0,0,0.9);
		        margin-bottom: 5px;
		    }
		    .badge-transport-active:hover {
		        background-color: #c0e0ff;
		        color: #003d80;
		        text-decoration: none;
		    }
		    
		    .bg-d1 {
					    background: linear-gradient(to right, #e6f5e6, #dcf2dc, #d1eed1, #c7eac7);
					    color: black;
					    border-radius: 6px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 0.9em;
					    font-weight: 400;
					}
					
		    .bg-d2 {
					    background: linear-gradient(to right, #e6f7fb, #d6f0fa, #c7e8f8, #b8e1f7);
					    color: black;
					    border-radius: 6px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 0.9em;
					    font-weight: 400;
					}
					
					.bg-d3 {
					    background: linear-gradient(to right, #fffde0, #fffcc7, #fffbb0, #fff999);
					    color: black;
					    border-radius: 6px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 0.9em;
					    font-weight: 400;
					}
					
					.bg-d4 {
					    background: linear-gradient(to right, #fde1e1, #fcd2d2, #fac3c3, #f8b4b4);
					    color: black;
					    border-radius: 6px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 0.9em;
					    font-weight: 400;
					}
					
		    .btn-gradient-orange {
					    background: linear-gradient(to right, #ff6700, #ff6700 );
					    color: white;
					    border: 1px solid #ff6700; /* jemný rámeček */
					    border-radius: 6px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 1.5em;
					    font-weight: 700;
					}
					
					.btn-gradient-orange:hover {
					    background: linear-gradient(to right, #ff6700, #fca311);
					    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* výraznější stín při hoveru */
					    text-decoration: none;
					    color: white;
					}
					
					.btn-gradient-orange-small {
					    background: linear-gradient(to right, #ff6700, #ff6700 );
					    color: white;
					    border: 1px solid #ff6700; /* jemný rámeček */
					    border-radius: 6px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 0.95em;
					    font-weight: 400;
					}
					
					.btn-gradient-orange-small:hover {
					    background: linear-gradient(to right, #ff6700, #fca311);
					    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* výraznější stín při hoveru */
					    text-decoration: none;
					    color: white;
					}
					
					.btn-gradient-orange-small-smaller {
					    background: linear-gradient(to right, #ff6700, #ff6700 );
					    color: white;
					    border: 1px solid #ff6700; /* jemný rámeček */
					    border-radius: 6px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 0.8em;
					    font-weight: 400;
					    padding: 2px 8px;
					}
					
					.btn-gradient-orange-small-smaller:hover {
					    background: linear-gradient(to right, #ff6700, #fca311);
					    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* výraznější stín při hoveru */
					    text-decoration: none;
					    color: white;
					}

          .btn-gradient-blue-small-smaller {
					    background: linear-gradient(to right, #4583cc, #3369a9 );
					    color: white;
					    border: 1px solid #4583cc; /* jemný rámeček */
					    border-radius: 10px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 0.85em;
              font-weight:400;
					    padding: 2px 8px;
					}
					
					.btn-gradient-blue-small-smaller:hover {
					    background: linear-gradient(to right, #3369a9, #3369a9);
					    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* výraznější stín při hoveru */
					    text-decoration: none;
					    color: white;
					}
					
					.btn-gradient-orange-search {
					    background: linear-gradient(to right, #ff6700, #fca311);
					    border: 1px solid #ff6700;
					    color: white;
					    font-weight: bold;
					    transition: background 0.3s, box-shadow 0.3s;
					    border-radius: 0 6px 6px 0; /* aby navazovalo na input */
					}
					
					.btn-gradient-orange-search:hover {
					    background: linear-gradient(to right, #ff6700, #ff6700);
					    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
					    color: white;
					}

					.btn-gradient-shadow-small {
					    background: linear-gradient(to right, #666, #999 );
					    color: white;
					    border: 1px solid #bbb; /* jemný rámeček */
					    border-radius: 6px;
					    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* jemný stín */
					    transition: all 0.3s ease;
					    font-size: 0.9em;
					    font-weight: 400;
					}
					
					.btn-gradient-shadow-small:hover {
					    background: linear-gradient(to right, #666, #666);
					    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* výraznější stín při hoveru */
					    text-decoration: none;
					    color: white;
					}
					
					.btn-dark-gray {
					  background: linear-gradient(to right, #777, #444);
					  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* výraznější stín při hoveru */
					  color: #fff;
					  border: none;
					}
					
					.btn-dark-gray:hover {
					  background-color: #444;
					  color: #fff;
					}

					
					.orangebck {
						background: linear-gradient(to right, #ff6700, #fca311);
						padding: 30px 20px 20px 20px; margin-bottom: 20px;
					}
					
					footer p {
						color: #555;
					}
					
					footer img.sm {
						height: 25px;
						align-items: center;
					}
					
					footer img.sl {
						height: 35px;
						margin-left: 30px;
						align-items: center;
					}
					
					footer.bg-pfuu {
						background: linear-gradient(to bottom, #eee, #f5f5f5);
						padding-top: 30px !important;
						padding-bottom: 50px !important;
					}
					
					footer a {
						color: #444;
					}
					
					footer a:hover {
						color: #000;
					}
					
					
					.pagination .page-item .page-link {
					    width: 40px;
					    height: 40px;
					    border-radius: 50%;
					    padding: 0px;
					    line-height: 40px;
					    text-align: center;
					    background-color: #eee;
					    color: #777;
					    border: none;
					    margin: 0 2px;
					    transition: background-color 0.3s;
					}
					
					.pagination .page-item .page-link:hover {
					    background-color: #ff6700;
					    color: #fff;
					}
					
					.pagination .page-item.active .page-link {
					    background-color: #ff6700;
					    color: #fff;
					    font-weight: bold;
					    pointer-events: none;
					}
					
					header {
					    position: sticky;
					    top: 0;
					    background: #fff;
					    z-index: 1030;
					    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
					}
					
					@media (max-width: 576px) {
					    header {
					        padding-top: 3px;
					    }
					    header img {
					        height: 30px !important;
					        margin-top: 5px;
					    }
					    
					}
					
					
					/* 
	*************** MENU MOBILE ***************
*/

.menu-container {
            position: relative; z-index: 2000; 
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            position: absolute;
            top: 0px;
            right: 0px;
            z-index: 3001;
            background: #d1efff;
            padding: 8px;
            border-radius: 6px;
        }

        .hamburger div {
            width: 22px;
            height: 2px;
            background-color: #333;
            margin: 3px 0px 2px 0px;
            transition: transform 0.4s, opacity 0.4s;
        }

        .hamburger.active div:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        
        .hamburger.active div:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active div:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .navs-links {
            position: fixed;
            top: 0;
            left: -200%;
            width: 100%;
            height: 80vh;
            background-color: #d1efff;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            padding-top: 60px;
            transition: left 0.3s ease;
            text-align: left;
            box-shadow: 0px 5px 10px 0px #555;
        }

        .navs-links a, .menu-item.has-submenu {
            padding: 5px 15px;
            text-decoration: none;
            color: #000 !important;
            display: block;
            text-align: left;
            font-size: 1.3em;
        }

        .navs-links a:hover, .menu-item.has-submenu:hover {
            font-weight:600;
            text-decoration:underline;
        }

        .submenus {
            display: none;
            flex-direction: column;
            padding-left: 15px;
        }

        .submenus a {
            font-size: 14px;
            padding: 10px 15px;
            border-bottom: none;
        }

        .menu-item.has-submenu {
            cursor: pointer;
            font-weight: bold;
        }

        .menu-item.has-submenu::after {
            content: " â–Ľ";
            font-size: 12px;
        }

        .navs-links .footer {
            margin-top: auto;
            padding: 20px 15px 20px 15px;
            text-align: left;
            font-size: 1em !important;
            color: #fff;
            background-color: #def2fc;
            margin-top: 20px;
        }

        .navs-links .footer a {
            display: block;
            color: #333;
            padding: 5px 0;
            text-decoration: none;
            font-size: 1em !important;
        }

        .navs-links .footer a:hover {
            color: #007bff;
        }
        


        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .navs-links {
                display: flex;
            }
            .nomobile { display:none; }
        }

        @media (min-width: 769px) {
            .navs-links {
                display: none;
            }
        }
        
        .modal-content {
				    border-radius: 1rem;
				}
				
				#manufacturer-list button {
				    transition: background 0.2s;
				}
				#manufacturer-list button:hover {
				    background: #f0f0f0;
				}
				
				.border-light { border-color: #eee !important; }
				
				
				.menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 50px; /* Výška hlavičky na mobilu */
}


/* Hamburger */
.hamburger {
    margin-left: auto;
    position: relative;
}

    form.d-md-flex.mx-3 {
    margin-bottom: 0 !important; /* zruší mezery pod formulářem */
  }

  form.d-md-flex.mx-3 .input-group {
    align-items: center; /* zarovná input a button na střed */
  }

  form.d-md-flex.mx-3 input.form-control {
    height: 40px; /* aby seděl na výšku s logem (které má 40px) */
    padding-top: 6px; 
    padding-bottom: 6px;
  }

  form.d-md-flex.mx-3 button.btn {
    height: 40px; /* stejné zarovnání jako input */
    padding-top: 6px;
    padding-bottom: 6px;
  }
  
  
  .special-card {
    background: linear-gradient(to right, #ff6700, #fca311);
    color: #fff;
    border: none !important;
    box-shadow: none; /* volitelné – pokud chceš úplně čistý vzhled */
}

.special-card:hover {
    transform: scale(1.2);
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.85) !important;
    background: #555;
    color: #fff;
    z-index:1000;
}

.text-orange {
    color: #ff6700 !important;
}

.article-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center; /* Obrázek bude zarovnán na střed */
    border-radius: 5px;
    border: 1px solid #eee;
}

a.orangelink { color: #ff6700; }
a.orangelink:hover { color: #fca311; }

.product-image {
  max-width: 100%;
  padding: 15px;
  background-color: #fff;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .product-image {
    max-width: 100%;
    padding: 10px;
    margin: 0 auto 20px auto;
    display: block;
  }
}

table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  display: block;
  margin: 20px 0 20px 0;
}


/* new mega menu */

.dropdown-menu {
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(224, 240, 255, 0.97), rgba(255, 255, 255));
}

.navbar-nav .nav-link {
  font-weight: 400;
  padding: 0.5rem 1rem;
}

.dropdown-menu .dropdown-item {
  padding-left: 0;
}

.dropdown-menu .dropdown-item:hover {
  background: none;
  font-weight: 600;
}

.navbar {
  background: #e0f0ff;
  border-bottom: 1px solid #bed8f5;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-item:hover,
.navbar-nav .nav-item:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.nav-link.dropdown-toggle::after {
  display: none !important;
}