@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 10px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: white;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid white;
  outline: none;
  transition: 0.2s;
}

body {
  width: 100%;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
  /*for removing navbar close symbol*/
}


#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 5px 10px 10px rgb(0, 0, 0, 0.3);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgb(70, 62, 221, 0.1);
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #d7f6c2;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #f6adf4;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #beeef1;
}

#feature .fe-box:nth-child(5) h6 {
  background-color: #fac0d2;
}

#feature .fe-box:nth-child(6) h6 {
  background-color: #bde4f7;
}

/* From line 155 to 171 this code is written to chan
ge the bg color of every box present in the feature 
images */
#product1 {
  text-align: center;
}
#product1 a {
  text-decoration: none;
  color: inherit; /* Optional: keep text color consistent */
}
#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 30px;
}

#product1 .pro {
  width: 300px;
  min-width: 250px;
  padding: 10px 12px;
  height: 400px;
  /*padding format is first top&bottom then left&right*/
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgb(0, 0, 0, 0.3);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
  background-color: white;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgb(0, 0, 0, 0.3);
}

#product1 .pro img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606060;
  font-size: 12px;
}

#product1 .pro .des h5 {
  text-decoration: none;
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  text-decoration: none;
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  text-decoration: none;
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #088178;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  font-weight: 50;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

/* Banner part */
#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("banner/b2.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: #fff;
  font-size: 16px;
}

#banner h2 {
  color: #fff;
  font-size: 30px;
  padding: 20px 0;
}

#banner h2 span {
  color: #ef3636;
}

#banner button:hover {
  background-color: #088178;
  color: #fff;
}

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("banner/b17.jpg");
  min-width: 660px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner .banner-box2 {
  background-image: url("banner/b10.jpg");
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: black;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background-color: #088178;
  border: 1px solid #088178;
}

#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("banner/b7.jpg");
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}

#banner3 .banner-box2 {
  background-image: url("banner/b4.jpg");
}

#banner3 .banner-box3 {
  background-image: url("banner/b18.jpg");
}

#banner3 h2 {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3 {
  color: #c7180f;
  font-weight: 800;
  font-size: 15px;
}

.divider {
  border: 0; /* Remove default border */
  height: 2px; /* Line thickness */
  background-color: #100a0a; /* Line color */
  margin: 20px 0; /* Space above and below the divider */
  width: 100%; /* Full width of the container */
}
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  margin-bottom: 30px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
  color: white;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
  color: white;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color:white;
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow {
  color: #f4faf8;
  padding-right: 4px;
  cursor: pointer;
}

footer .install .row img {
  border: 1px solid #f9fcfc;
  border-radius: 6px;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
  color: rgb(246, 242, 243);
}

footer .copyright {
  width: 100%;
  text-align: center;
}
/* Contact Page */
#page-header {
  width: 100%;
  height: 40vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;

}

#page-header h2,
#page-header p {
  color: white;
}

#contact-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
#contact-details .details{
  width: 50%;
  height: 40%;
  border-radius: 10px;
  
}
#contact-details .details span,
#form-details form span{
  font-size: 12px;
  color: white;
}
#contact-details .details h2,
#form-details form h2{
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0;
  color: white;
  
}
#contact-details .details h3{
  font-size: 16px;
  padding-bottom: 15px;
  color:white;
}
#contact-details .details li{
  list-style: none;
  display: flex;
  padding: 10px 0;
  color: white;;
}
#contact-details .details li i{
  font-size: 14px;
  padding-right: 22px;
  color:white;
}
#contact-details .details li p {
  margin: 0;
  font-size: 14px;
  color: white;
}
#contact-details .map{
  width: 55%;
  height: 350px;
}
#contact-details .map iframe{
  width: 100%;
  height: 100%;
}
#form-details{
  display: flex;
  justify-content: space-between;
  margin: 30px;
  padding: 80px;
  border: 1px solid #e1e1e1;
}
#form-details form{
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#form-details form input,
#form-details form textarea
{
  width: 100%;
  padding: 12px 15px;
  outline: none;
  margin-bottom: 20px;
  border: 1px  solid #e1e1e1;
}
#form-details form button{
  background-color: #088178;
  color: #fff;
}
#form-details .people div{
  padding-bottom: 25px;
  display: flex;
  align-items: flex-start;
}
#form-details .people div img{
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 15px;
}
#form-details .people div p{
  margin: 0;
  font-size: 13px;
  line-height: 25px;
}
#form-details .people div p span{
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: black;
}

/* CART PAGE  */
#cart{
  overflow-x: auto;
}
#cart table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}

#cart table img {
  width: 70px;
}
#cart table td:nth-child(1){
  width: 100px;
  text-align: center;
}
#cart table td:nth-child(2){
  width: 150px;
  text-align: center;
}
#cart table td:nth-child(3){
  width: 250px;
  text-align: center;
}
#cart table td:nth-child(4){
  width: 250px;
  text-align: center;
}
#cart table td:nth-child(5),
#cart table td:nth-child(6),
#cart table td:nth-child(7){
  width: 150px;
  text-align: center;
}
#cart table td:nth-child(5) input{
  width: 70px;
  padding: 10px 5px 10px 15px ;
}
#cart table thead{
  border: 1px solid #e2e9e1;
  border-left: none;
  border-right: none;
}
#cart table thead td{
  font-weight: 700;
  text-transform: none;
  font-size: 13px;
  padding: 18px 0;
}
#cart table tbody tr td {
  padding-top: 15px;
}
#cart table tbody td{
  font-size: 13px;
}
#cart-add{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  }
#coupon{
  width: 50%;
  margin-bottom: 30px;
}
#coupon h3,
#subtotal h3{
  padding-bottom: 15px;
}
#coupon input{
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #e2e9e1;
}
#coupon button,
#subtotal button {
  background-color: #088178;
  color: white;
  padding: 12px 20px;
}
#subtotal{
  width: 50%;
  margin-bottom: 30px;
  border: 1px solid #e2e9e1;
  padding: 30px;
}
#subtotal table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
#subtotal table td{
  width: 50%;
  border: 1px solid #e2e9e1;
  padding: 10px;
  font-size: 13px;
}
/* About Page  */


#about-head{
  display: flex;
  align-items: center;
}
#about-head img {
  width: 50%;
  height: auto;
}
#about-head div{
  padding-left: 40px;
  padding-top: 20px;
}
/* #about-desc h2{ */
/*   
} */
#about-desc p {
  color: black;
}
#about-desc abbr{
  color: black;
  
}
#about-app{
  text-align: center;
}
#about-app .video{
  width:70%;
  height: 100%;
  margin:30px auto 0 auto;
}
#about-app .video video{
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
/* Start media query */




@media (max-width:799px) {
  .section-p1 {
    padding: 40px 40px;
  }

  #navbar {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #e3e6f3;
    box-shadow: 0 40px 60px rgb(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: black;
    font-size: 24px;
    padding-left: 20px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }

  #hero {

    height: 70vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }

  #feature {
    justify-content: center;
    /* flex-wrap: wrap; */
  }

  #feature .fe-box {
    margin: 15px 15px;
  }

  #product1 .pro-container {
    justify-content: center;
  }

  #product1 .pro {
    margin: 20px;
  }

  #banner {
    height: 20vh;
  }

  #sm-banner .banner-box {
    min-width: 100%;
    height: 30vh;
  }

  #banner3 {
    padding: 0 40px;
  }

  #banner3 .banner-box {
    width: 28%;
  }

  #newsletter .form {
    width: 60%;
  }
  /* Contact Page */
  #form-details {
    padding: 40px;
  }
  #form-details form {
    width: 50%;
}

}


@media (max-width: 477px) {
  .section-p1{
    padding: 20px;
  }
  #header {
    padding: 20px 30px;
  }
  h2 {
    font-size: 32px;
    }
    h1 {
      font-size: 38px;
      }
  #hero {
     padding: 0 20px;
    background-position: 55%;
}
#feature {
  justify-content: space-between;
}
#feature .fe-box {
  width: 155px;
  margin:0 0 15px 0;
}
#product1 .pro {
  width: 100%;
  
}
#banner{
  height: 40vh;
}
#sm-banner .banner-box {
  height: 40vh;
}
#sm-banner .banner-box2 {
  margin-top: 20px;
}
#banner3 {
  padding: 0 20px;
}
#banner3 .banner-box{
  width: 100%;
}
#newsletter {
  padding: 40px 20px;
}
#newsletter .form{
  width: 100%;
}
footer .copyright{
  text-align: start;
}
/* single prodeuct */

#prodetails {
  display: flex;
  flex-direction: column;
}
#prodetails .single-pro-image {
  width: 100%;
  margin-right: 0px;
}
#prodetails .single-pro-details {
  width: 100%;
  }

/* About page  */

#about-head {
  flex-direction: column;
}
#about-head img {
  width: 100%;
  }
  #about-head div{
    padding-left: 0px;
  }
  #about-app .video{
    width: 100%;
   }
   /* Contact Page  */

   #contact-details {
   flex-direction: column;
}
#contact-details .details {
  width: 100%;
  margin-bottom: 30px;
}
#contact-details .map{
  width: 100%;
}
#form-details{
  margin: 10px;
  padding: 30px 10px;
  flex-wrap: wrap;
}
#form-details form{
  width: 100%;
  margin-bottom: 30px;
}

/* Cart Page*/

#cart-add {
  flex-direction: column;
}
#coupon {
  width: 100%;
}
#subtotal{
  width: 100%;
  padding: 20px;
}

}




/* General size button style */
#size-button .round-button {
  width: 60px;
  height: 60px;
  text-decoration: none;
  display: inline-block;
  outline: none;
  cursor: pointer;
  border-style: ridge;
  color: white;
  background-color: #d26b30;
  border-radius: 100%;
  border-color: whitesmoke;
  text-align: center;
}

/* Style when button is clicked (active) */
#size-button .round-button:active {
  background-color: #ca6262a4;
}

/* Style for out-of-stock buttons */
#size-button .round-button.out-of-stock {
  background-color: grey;
  cursor: not-allowed;
  opacity: 0.6;
  border-color: lightgrey;
}

/* Style for highlighting selected size */
.highlight {
  border: 4px solid #08b3f1;
}




/* Main Header */
#header .navbar-container {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
}

/* Navbar Container */
.navbar {
  background-color: #af1f1f;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-family: 'Spartan', sans-serif;
}

/* Navbar Brand */
.navbar-brand {
  margin-right: 40px;
  margin-left: 30px;
}

.navbar-brand img {
  width: 50px;
  height: 50px;
}

/* Main Menu */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu Items */
.nav-item {
  margin-right: 20px;
  position: relative;
}

.nav-item:last-child {
  margin-right: 0;
}

/* Links */
.nav-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hover Effects */
.nav-link:hover {
  color: #ddd;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #9e3030;
  padding: 10px 0;
  list-style: none;
  z-index: 200;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
  width: 200px;
  visibility: hidden;
}

.nav-item:hover .dropdown-menu {
  display: block;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Dropdown Menu Items */
.dropdown-menu li {
  padding: 8px 15px;
}

.dropdown-menu li:hover {
  background-color: #b04040;
}

.dropdown-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* Cart Icon and Counter */
.cart-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.cart-icon .fa-cart-shopping {
  font-size: 24px;
  color: #fff;
  transition: transform 0.2s ease, color 0.3s ease;
}

.cart-count {
  background-color: #fff;
  color: #333;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 10px;
  position: absolute;
  top: -14px;
  right: -10px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.cart-icon:hover .fa-cart-shopping {
  transform: scale(1.1);
}

.cart-icon:hover .cart-count {
  background-color: #ff6f61;
  color: #fff;
  transform: scale(1.1);
}

/* User Icon */
.user-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.user-icon .fa-user {
  font-size: 24px;
  color: #fff;
  transition: transform 0.2s ease, color 0.3s ease;
}

.user-icon:hover .fa-user {
  transform: scale(1.1);
}

/* Dropdown Position for User Icon */
.user-icon .dropdown-menu {
  left: auto;
  right: 0; /* Align dropdown to the right */
  width: 150px; /* Control width to prevent layout shifting */
}

.user-icon:hover .dropdown-menu {
  display: block;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Hamburger Menu (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 25px;
  background-color: white;
  margin-bottom: 5px;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #af1f1f;
    flex-direction: column;
    padding: 10px;
    z-index: 999;
  }

  .nav-item {
    margin-right: 0;
    width: 100%;
  }

  .nav-item .nav-link {
    padding: 10px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
  }
}




/* Hero section styling */
#hero {
  height: 60vh;
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Carousel container */
.carousel-container {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  overflow: hidden;
}

/* Carousel wrapper for sliding effect */
.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

/* Carousel card styling */
.hero-carousel-card {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex: 0 0 100%;
}

/* Image styling */
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation button styling */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 100;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Button hover effect */
.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  #hero {
      height: 50vh; /* Reduce height for smaller screens */
  }

  .carousel-btn {
      padding: 8px 16px; /* Smaller button size */
  }
}

@media (max-width: 480px) {
  #hero {
      height: 40vh; /* Further reduce height for mobile */
  }

  .carousel-btn {
      padding: 6px 12px; /* Smaller button size */
  }
  
  .carousel-img {
      object-fit: cover; /* Ensure images cover the entire card */
  }
}

/* Signup Form Styles */
.signup-form {
    max-width: 400px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
}

.signup-form h5 {
    text-align: center;
    margin-bottom: 20px;
}

.signup-form .form-group {
    margin-bottom: 1.5rem;
}

.signup-form .form-label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease;
}

.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus,
.signup-form input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
}

.signup-form button {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #0056b3;
}

/* Error message styling */
.alert.alert-danger {
    color: #d9534f;
    background-color: #f8d7da;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

#notification-area {
  position: fixed;
  top: 70px; /* Adjust this based on your navbar's height */
  width: 100%;
  text-align: center;
  z-index: 9999;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}