

.dropdown > a {
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.dropdown.open {

}

.dropdown-menu.animated {
    /* Speed up animations */
    -webkit-animation-duration: 0.55s;
    animation-duration: 0.55s;

    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;

    /*
     * @see:
     * Animation duration: http://www.w3schools.com/cssref/css3_pr_animation-duration.asp
     * Animation timing: http://www.w3schools.com/cssref/css3_pr_animation-timing-function.asp
     */
}

.dropdown-menu.animated.fadeIn {
    /*
     * Example of further customisation for the "fadeIn" effect
     * Can be used for all effects ie. .dropdown-menu.animated.EFFECTNAME
     */
    -webkit-animation-duration: 0.45s;
    animation-duration: 0.45s;

    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}



.navbar-bootbites{
    background-color: #6f5499;
    margin-bottom: 0;
}
.navbar-bootbites .navbar-brand,
.navbar-bootbites .navbar-nav > li > a {
    color: #e3e3e3;
}

.jumbotron-bootbites {
    background-color: #EBE1F9;
}

.content {

}

.footer {
    border-top: 5px solid #eee;
    padding: 3em 0;
    margin-top: 3em;
    text-align: center;
}

/* ==================================================
  Styling
  ================================================== */
.btn-bootbites {
    background: #6f5499;
    border: none;
    border-radius: 0;
}
.btn-bootbites:hover,
.btn-bootbites:focus,
.btn-bootbites:active,
.btn-bootbites.active {
    background: #523e71;
}

/* ==================================================
  Common
  ================================================== */
.intro {
    margin-bottom: 3em;
    padding-bottom: 3em;
    border-bottom: 5px solid #eee;
}
.demos .demo {
    margin-bottom: 3em;
    padding-bottom: 3em;
    border-bottom: 1px solid #eee;
}
.demos .demo:last-child {
    border-bottom: none;
    padding-bottom: 0;
}



/* Icon 1 */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 46px;
    height: 46px;
    position: relative;
    margin: 0px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
    display: block;
    position: absolute;
    height: 9.7%;
    width: 90%;
    background:#e6e6fa;
    border-radius: 7px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 10px;
}

#nav-icon1 span:nth-child(2) {
    top: 22px;
}

#nav-icon1 span:nth-child(3) {
    top: 34px;
}

#nav-icon1.open span:nth-child(1) {
    top: 22px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}