
.btn-danger {
  background-color: #ffffff00;
  color: #6C1B0F;
  border: 2px solid #E14027;
  border-radius: 8px;
  padding: 0px 8px 0px 8px;
  transition: ease-in-out 200ms;
}
.btn-danger:hover {
  background-color: #E14027;
  border: 2px solid #E14027;
  font-weight: 500;
  transition: ease-in-out 200ms;
}

.btn-success {
  background-color: #ffffff00;
  color: #224F17;
  border: 2px solid #4EAE34;
  border-radius: 8px;
  padding: 0px 8px 0px 8px;
  transition: ease-in-out 200ms;
}
.btn-success:hover {
  background-color: #4EAE34;
  border: 2px solid #4EAE34;
  font-weight: 500;
  transition: ease-in-out 200ms;
}

.btn-warning {
  background-color: #ffffff00;
  color: #8F6400;
  border: 2px solid #FFC225;
  border-radius: 8px;
  padding: 0px 8px 0px 8px;
  transition: ease-in-out 200ms;
}
.btn-warning:hover {
  background-color: #FFC225;
  border: 2px solid #FFC225;
  color: #ffffff;
  font-weight: 500;
  transition: ease-in-out 200ms;
}



#navbarNav .nav-link {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333333;
}

#navbarNav .nav-item button {
  color: #2DABCE;
  border: 1px solid #2DABCE;
  border-radius: 10px;
  padding: 12px 28px;
  background: transparent;
}

.mybond-logo {
  height: 75px;
  margin-bottom: 3vh;
}


.navbar {
  padding-left: 10vw;
  padding-right: 10vw;
	background-color: white;
  display: flex;
  align-items: center;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .mybond-logo {
    height: 40px;
    margin-bottom: 0px;
  }
  .navbar {
    padding-left: 72px;
    padding-right: 75px;
		background-color: white;
    display: flex;
    align-items: flex-end
  }

}

@media only screen and (min-device-width: 375px) and (max-device-width: 480px) {
  .mybond-logo {
    height: 31px;
    margin-bottom: 0px;
  }
  .navbar {
    padding-left: 0;
    padding-right: 0;
		background-color: white;
    display: flex;
    align-items: flex-end
  }

  

}

#animated-menu{
  height: 40px;
  width: 40px;
  cursor: pointer;
  padding: 0px;
  margin-right: 15px;
}

.menu-children {
  height: 15px;
  transition: ease-in-out 200ms;
  display: flex;
  align-items: center;
}

.menu-line {
  height: 5px;
  border-radius: 5px;
  width: 100%;
  background-color: #024B78;
}



.opened-menu #menu-child-1 {
  transform: rotate(45deg) translate(10px, 11px);
}

.opened-menu  #menu-child-2 {
  opacity: 0;
  transition: ease-in-out 100ms;
}

.opened-menu  #menu-child-3 {
  transform: rotate(-45deg) translate(10px,-11px);
}

.closed-menu  #menu-child-2 {
  opacity: 1;
  transition: ease-in-out 300ms;
}
.account-icon:hover path {
  fill: #024B78;
  stroke: #024B78;
  transition: ease-in-out 200ms;
}

.shopping-cart, .account-icon {
  transition: ease-in-out 200ms;
  height: 25px;
}

.shopping-cart path {
  stroke: #333333;
}

#checkout_shopping_cart {
  position: relative;
  padding: 0px;
}

#checkout_shopping_cart:hover path{
  stroke: #024B78;
  transition: ease-in-out 200ms;
}

#checkout_shopping_cart:hover .cart-counter{
  transform: translate(0px, -15px);
  scale: 1;
  transition: ease-in-out 200ms;
  color: #2DABCE;
}

.cart-counter {
  position: absolute;
  margin-top: -26.5px;
  margin-left: 2.5px;
  font-size: larger;
  scale: .5;
  font-weight: 800;
  color: #024B78;
  transition: ease-in-out 200ms;
  text-align: center;
  width: 100%;
}

.login-hide {
  display: none;
}



@media only screen and (max-width: 1000px) {
  .nav-apply-btn {
    display: none;
  }

  .nav-item{
    display: flex;
    align-self: flex-end;
  }

  .login-hide {
    display: flex;
  }
  .checkout-sm-show {
    position: fixed;
    top: 12px;
    right: 69px;
  }

  .checkout-sm-hide {
    display: none;
  }
  
  .cart-counter {
    margin-top: -29px;
    margin-left: -14px;
    font-size: larger;
  }

  #checkout_shopping_cart2:hover .cart-counter{
    transform: translate(0px, -20px);
    scale: .75;
    color: #2DABCE;
  }


}






