.main.content a {
    color: #000000;
}
.search-input__button{
	    border: none;
    background-color: inherit;
}

.strip__img, .strip__wrapper {
    height: 130px;
}

.margin-top {
    margin-top: 20px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  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 */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  max-width: 30%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
@media (max-width: 768px) {
    .modal-content {
        max-width: 96%;
    }

}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-right: 5px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.feedback-input {
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    padding: 10px;
}

.feedback-btn {
    height: 30px;
    border-radius: 5px;
    border: 1px solid transparent;
    background: #124899;
    color: white;
}
.feedback-btn:hover {
    background: #3c73c5;
    color: white;
}
.feedback-btn:active {
    background: #124899;
    color: white;
}
#feedback-error: {
    color: #FFD2D2;
    padding: 5px;
}

.dropbtn {
    font-family: RobotoMedium;
    color: #124899 !important;
    border-radius: 3px;
    border: 2px solid #124899;
    height: 41px;
    margin: 0 10px;
    cursor: pointer;
    background: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown {
  position: relative;
  display: inline-block;
      -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 5px;
}
.active-btn{
    background-color: #124899;
    color: white !important;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  width: 100%;
  margin: 0 8px;
  max-height: 300px;
  overflow-y: auto;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #124899; }
.dropdown:hover .dropbtn {background-color: #124899; color: #fff !important; }

.product-link {
    font-family: RobotoMedium;
    color: #124899 !important;
    border-radius: 3px;
    border: 2px solid #124899;
    height: 41px;
    margin: 0 10px;
    cursor: pointer;
    background: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
}
.product-link:hover {
    background: #124899;
    color: white !important;
    text-decoration: none;
}
.tabs__item--active,
.dropdown:hover .dropbtn {
	background: linear-gradient(180deg, #124899 0%, #023287 100%);
	color: #fff
}

@media (max-width:1023px) {
	.dropdown {
		margin: 5px;
	}
}

.header-menu-dropdown {
	 --header-menu-dropdown-height: 40px;
	 box-sizing: border-box;
	 position: fixed;
	 top: 0;
	 left: 0;
}
 .header-menu-dropdown ul {
	 list-style: none;
	 margin: 0;
}
 .header-menu-dropdown ul li, .header-menu-dropdown ul li a {
	 cursor: pointer;
	 transition: 200ms;
	 text-decoration: none;
	 white-space: nowrap;
	 font-weight: 700;
	 color: #124899;
}
 .header-menu-dropdown ul li:hover, .header-menu-dropdown ul li a:hover {
	 opacity: 1;
}
 .header-menu-dropdown ul li a, .header-menu-dropdown ul li a a {
	 display: flex;
	 align-items: center;
	 height: 100%;
	 width: 100%;
	 color: white;
}
 .header-menu-dropdown ul li {
	 padding-right: 36px;
	 padding-top: 10px;
	 padding-bottom: 10px;
}

 .header-menu-dropdown ul .header-dropdown-link::before {
	 padding-right: 0;
	 display: none;
}
 .header-menu-dropdown > ul {
	 display: flex;
	 height: var(--header-menu-dropdown-height);
	 align-items: center;
	 background-color: #fff;
}
 .header-menu-dropdown > ul li {
	 position: relative;
	 margin: 0 5px;
}
 .header-menu-dropdown > ul li ul {
	 visibility: hidden;
	 opacity: 0;
	 padding: 0;
	 min-width: 100%;
	 background-color: #124899;
	 position: absolute;
	 top: calc(var(--header-menu-dropdown-height) + 8px);
	 left: 50%;
	 transform: translateX(-50%);
	 max-height: 300px;
	 display: flex;
     flex-direction: column;
     z-index: 9999;
    box-shadow: 3px 3px 25px 0px rgba(0,0,0,0.75);;
}

 .header-menu-dropdown > ul li ul li {
	 margin: 0;
	 padding: 8px 16px;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 height: 40px;
	 padding: 10px;
}

 .header-menu-dropdown > ul li ul li::before {
	 width: 0;
	 height: 0;
	 border-top: 5px solid transparent;
	 border-bottom: 5px solid transparent;
	 border-left: 5px solid #ffa500;
}
 .header-menu-dropdown > ul li ul li ul {
	 top: -2%;
	 left: 100%;
	 transform: translate(0);
}
 .header-menu-dropdown > ul li ul li:hover {
	 background-color: #265aa9;
}
 .header-menu-dropdown > ul li:hover > ul {
	 opacity: 1;
	 visibility: visible;
	 transition-delay: 0ms;
}
.text-black > a{
    color: black;
}
.text-red {
    background-color: red;
}
