*{
    margin: 0;
    padding: 0;
    text-decoration:none;
}
.wrapper {
    width:  84%;
    margin-left:  auto;
    margin-right:  auto;
}
.header{
    margin-bottom: 20px;
}
.header img {
    float:  right;
}

.search {
    float:  right;
    /* margin-top:  auto; */
    /* margin-bottom:  auto; */
    margin-top: 8%;
}
.banner img{
    width: 100%;
}

.search form {border: solid 1px #662d91;}
i.fas.fa-search {
    color: #662d91;
}
.search form input:focus {
    outline: none;
    color: #662d91;
}

.search input[type="text"] {
    border:  none;
    padding: 3px;
}

.search button {
    padding-right: 2px;
    background-color: white;
    border:  none;
}
.search form input:focus {
    outline: none;
}

.menu{
    clear: both;
    border-bottom: solid 1px #662d91;
    border-top: solid 1px #662d91;
}

nav {
    position: relative;
    margin: 0 auto;
}

#flexmenu{
  display: flex;
  flex-flow: row wrap;
}

#main-menu{
  align-self: flex-end;
      margin-bottom: 0px;
}
/* keep the drop-downs from being hidden by content wrappers etc */
.sub-menu {
  z-index: 1234;
}

/* General Menu Styling */
#flexmenu li,
#flexmenu li a{
    border: 0;
    list-style: none;
    line-height: 1;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    transition: all ease-in-out .3s;
}

#flexmenu ul li a {
    padding: 21px 32px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #662d91;
    opacity: 0.8;
    font-weight: 600;
}

#flexmenu ul li.has-sub > a {
    padding-right: 30px;
}
/* Drop icon */
/*#flexmenu ul li.has-sub > a:after {
    position: absolute;
    top: 22px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #F14F80;
    content: '';
}*/
#flexmenu ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #FFF;
    content: '';
}
#flexmenu > ul > li.has-sub > a:before {
    position: absolute;
    top: 19px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    transition: all .25s ease;
}
#flexmenu > ul > li.has-sub:hover > a:before {
    top: 23px;
    height: 0;
}
#flexmenu ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #FFF;
    content: '';
    transition: all .3s ease;
}
#flexmenu ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0;
}
#flexmenu ul ul li.has-sub:hover,
#flexmenu ul li.has-sub ul li.has-sub ul li:hover {
    background: #662d91;
}
/* Submenu default states, removed by hover gives the animation */
#flexmenu ul ul {
    position: absolute;
    left: -9999px;
}
#flexmenu li:hover > ul {
    left: auto;
}
#flexmenu ul ul li {
    height: 0;
    background: #662d91;
    transition: all .25s ease
    padding-left: 3px;
    border-bottom: solid 1px white;
}
#flexmenu li:hover > ul > li {
    height: 35px;
}
/* tertiary menu */
#flexmenu ul ul ul {
    margin-left: 100%;
    top: 0;
}
#flexmenu ul ul li a {
    padding: 11px 15px;
    width: 276px;
    font-size: 12px;
    text-decoration: none;
    color: #FFF;
    font-weight: 400;
}
@media screen and (max-width: 768px) {
  /* Center the logo and remove the bar */
    .logo {
        /*position: absolute;*/
        top: 0;
        left: 0;
        width: 100%;
        height: 46px;
        text-align: center;
        padding: 10px 0 0 0;
    }

  /* Hamburger */
    .button {
        /*background: #662d91;*/
        width: 60px;
        height: 48px;
        /*position: absolute;*/
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 10000;
    }
    .button:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 4px;
        width: 20px;
        border-top: 2px solid #662d91;
        border-bottom: 2px solid #662d91;
        content: '';
    }
    .button:before {
        transition: all .3s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 2px;
        width: 20px;
        background: #662d91;
        content: '';
    }
  /* Turn it into an X when open */
    .button.menu-opened{
      /*background: #2e1f62;*/
    }
    .button.menu-opened:after {
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #662d91;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
    }
    .button.menu-opened:before {
        top: 23px;
        background: #662d91;
        width: 19px;
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }
  /* reset horizontal styles */
    #flexmenu ul {
        display: none;
    }
    #flexmenu ul li,
    #flexmenu ul li a,
    #flexmenu ul ul li a{
        width: 100%;
    }

    #flexmenu ul ul li,
    #flexmenu li:hover > ul > li {
        height: auto;
    }
    #flexmenu ul ul li a {
        padding-left: 25px;
    }
    #flexmenu ul ul ul li a {
        padding-left: 35px;
    }

    #flexmenu ul ul,
    #flexmenu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
    }
    #flexmenu ul ul ul li.active a {
        border-left: none;
    }
    #flexmenu > ul > li.has-sub > ul > li.focus > a,
    #flexmenu > ul ul > li.has-sub > ul > li.focus > a {
        background: #262626;
        transition: all .3s ease;
    }
  /* remove cross when menu item is toggled */
    #flexmenu > ul > li.has-sub > a:after,
    #flexmenu > ul > li.has-sub > a:before,
    #flexmenu ul ul > li.has-sub > a:after,
    #flexmenu ul ul > li.has-sub > a:before {
        display: none;
    }

  /* submenu toggles */
    #flexmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid #444;
        height: 46px;
        width: 46px;
        cursor: pointer;
    }
    #flexmenu ul ul .submenu-button {
        height: 34px;
        width: 34px;
    }
    #flexmenu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #ddd;
        content: '';
    }
    #flexmenu ul ul .submenu-button:after {
        top: 15px;
        right: 13px;
    }
    #flexmenu .submenu-button.submenu-opened:after {
        background: #fff;
    }
    #flexmenu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #ddd;
        content: ''
    }
    #flexmenu ul ul .submenu-button:before {
        top: 12px;
        right: 16px;
    }
    #flexmenu .submenu-button.submenu-opened:before {
        display: none;
    }

  .note{
    font-size: 3vw;
  }
}
.slogan {
    background-color:  #b69bca;
    text-align:  center;
    text-transform:  uppercase;
    padding: 2px 0px;
    color: white;
    margin: 10px 0px;
}
.content{
    margin: 18px 0px;
}
.colum-content {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.colum-content p {
    opacity: 0.9;
    font-size: 15px;
}
.border{
    border-right: solid 1px #e2e2e2;
}

i.far.fa-check-circle {
    color: #880e89;
    /* padding: 12px; */
    /* text-align:  center; */
    font-size: 50px;
}

.colum-content h3 {
    text-transform:  uppercase;
}

.colum-content h4 {
    text-transform:  uppercase;
}
.slide{
    margin: 50px 0px;
}

.left-slide img {
    border-radius:  50%;
}

.left-slide {
    text-align:  center;
}

.left-slide h4 {
    font-size: 19px;
    font-weight:  bold;
    text-transform:  uppercase;
}

.right-slide {
    /* margin-top:  auto; */
    /* margin-bottom:  auto; */
    /* display:  block; */
    margin-top: 15%;
    text-align: center;
}
.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #c8c8c8;
}
.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000\9;
    background-color: rgba(0,0,0,0);
    border: 1px solid #c8c8c8;
    border-radius: 10px;
}
.solial a img{
        width: 15%;
    /* padding: 4px; */
    margin: 15px;
}

.tel a {
    background-color: #662D92;
    padding: 12px 23px;
    margin: 13px 0px;
    font-size: 24px;
    color: white;
    border-radius: 34px;
    text-decoration:  none;
    border: solid 3px white;
    box-shadow: 0 0 43px rgba(30,33,33,.2);
}

.tel {
    margin: 20px 0px;
}

.tel a:hover {
    /* padding:  1px; */
    padding: 14px 25px;
}

.hotline {
    padding:  auto;
    padding-left:  auto;
    /* padding: 66px; */
    /* display: block; */
    /* margin-left: auto; */
    /* margin-right: 39px; */
    margin-top: 69px;
    margin-left: 50px;
}

.hotline a {
    border-radius: 6px;
    border: solid 1px white;
    padding: 10px;
    /* margin: 3px; */
    color: white;
    text-decoration:  none;
    font-size: 23px;
    text-transform:  uppercase;
}

.foot {
    background-color: #f1e9f4;
}

.footer {
    width:  84%;
    margin-left:  auto;
    margin-right:  auto;
    padding: 20px 0px;
}

.copyright {
    background-color:  #662d91;
    padding: 14px 0px;
    color: white;
}

.copyr {
    width:  84%;
    margin-right:  auto;
    margin-left:  auto;
    font-size:  12px;
}

span.cpr {
    font-style:  italic;
}

.hic {
    border-bottom: solid 1px #ececec;
    padding: 20px 0px;
}
h4.media-heading {
    font-weight:  bold;
    opacity:  0.7;
}
.img-post img {
    width: 100%;
}

.detail-post{
    padding-left: 0px;
}
.detail-post a{
    text-decoration: none;
}
.detail-post p{
    opacity: 0.8
}

.chi-tiet-tin{

    display:  block;
    float:  right;
    background-color: #662d91;
    color: white;
    padding: 3px 10px;
    /* margin: 11px; */
    border-radius: 15px;
    /* margin-top: 30px; */
    text-decoration: none;
}
.bai-viet h3 {
    text-align: center;
    /*padding: 20px 0px;*/
    color: #662d91;
}
.bar-right {margin: 0px;}

.video-bar h3 {
    text-transform: uppercase;
    border-left: solid 4px #662d91;
    padding-left: 10px;
}
.cate-bar h3 {
        text-transform: uppercase;
    background-color: #662d91;
    color: white;
     text-align: center;
    padding: 10px 0px;
    font-size: 18px;
    margin: 0;
    margin-bottom: 15px;

}

.cate-bar {
    /*border: solid 1px #ece9e9;*/
    border-right: solid 1px #ece9e9;
    border-left: solid 1px #ece9e9;
    margin-top: 20px;
}

.list-bar ul li a {
    color: #662d91;
    text-decoration: none;
}

.list-bar {
    /* color: red; */
}

.list-bar ul li a {
    color: #662d91;
    font-size: 18px;
}

i.fas.fa-align-justify {
    padding: 0px;
}
i.fas.fa-align-justify {
    float: left;
    /* padding: 10px; */
    padding-left: 3px;
    margin-left: 0px;
}
.list-bar ul li {
    list-style: none;
    padding-left: 20px;
}

.cart{
    margin-top: 20px;
}

.btn-cart a {color: white;font-size: 19px;text-transform:  uppercase;}

.btn-cart {
    background-color:  red;
    background-color: #662d91;
    color: white;

    font-size: 24px;
    padding: 2%;
    border-radius: 30px;
    text-align: center;
}
.accordion{
    width:auto;
    margin: 0 auto;
    margin-top: 20px;
}
.accordion-content p {
    /* color:  red; */
    padding: 10px;
    font-size: 17px;
    opacity: 0.7;
}
.accordion-toggle {
    border-bottom: 1px solid #662d91;
    cursor: pointer
    margin: 0;
    padding: 10px 0;
    position: relative;}
.accordion-toggle.active:after{
    content:"";
    position:absolute;
    right:0;top:17px;
    width:0;height:0;
    border-bottom:5px solid #662d91;
    border-left:5px solid rgba(0,0,0,0);
    border-right:5px solid rgba(0,0,0,0);
}
.accordion-toggle:before{
    content:"";
    position:absolute;
    right:0;top:17px;
    width:0;height:0;
    border-top:5px solid #000;
    border-left:5px solid rgba(0,0,0,0);
    border-right:5px solid rgba(0,0,0,0);
}
.accordion-toggle.active:before{
    display:none;
}
.accordion-content {
    display: none;
}
.accordion-toggle.active {
    color: #662d91;
}
.social img {
    width: 10%;
}

.social {
    /* margin-left:  auto; */
    /* margin-right:  auto; */
    /* display:  block; */
    /* padding-left: 8%; */
    margin-left: 26%;
    margin-top: 10%;
    margin-bottom: 10px
}
.select-cart {
    margin: 25px 0px;
}
.select-cart select {
    width: 100%;
    background-color: #662d91;
    color: white;
    font-size: 19px;
    padding: 10px;
    /* text-align:  center; */
}

.cart-product{
    color: #662d91;
    background-color: #f3f4f7;
    margin: 30px 0px;
}
h1.section-header {
    text-align: center;
    color: #662d91;
    text-transform: uppercase;
    padding: 10px 0px;
}
input.form-control {
    border-radius: 0px;
}

button.btn.btn-default.submit {
    margin-top: 25px;
        color: white;
    background-color: #662d91;
}

.star {
    margin: 30px 0px;
}

.star1 {
    text-align:  center;
    border: solid 1px #e6e2e2;
    padding: 20px 0px;
        box-shadow: 0 0 7px rgba(33,33,33,.2);
}
.star1:hover {
    box-shadow: 0 0 28px rgba(39, 44, 40, 1);
    /* padding: 0.4px; */
    /* margin-bottom: 5px; */
    /* margin: 4px; */
    margin-top: 1px;
}

.star1 img {
    border-radius:  50%;
    margin: 15px 0px;
}

i.far.fa-star {
    color: #f5f036;
    background: red;
}

i.fas.fa-star {
    color:  yellow;
}

.rating p {}

.star1 p {
    padding: 0px 15px;
}
#contact{
    color: #662d91;
}
#contact h4{
    text-align: center;
    text-transform: uppercase;
}
.img-sanpham img{
    width: 100%;
}
.col-xs-12.col-sm-12.col-md-7.col-lg-7 {
    padding-right: 0px;
}
.star1 img {
    height: 150px;
}
.doan-van {
    height: 130px;
}
div#hihi {
    background-color: #662d91;
    /* color: white; */
}
i.fas.fa-phone {
    transform: rotate(180deg);
}

.title-bai h1 {
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    color: #8ac440;
    font-weight: bold;
}
.detail-post h2 {
    font-size: 18px;
}
span.menu-mobi{
    display: none;
}
.bai-viet h1 {
    font-size: 28px;
    text-align: center;
    margin: 30px 0px;
}

@media (min-width: 768px) {
    .border{
        height:243px;
    }
}
@media (max-width: 992px) {

}
@media (max-width: 768px) {

}
@media (max-width: 576px) {
    span.menu-mobi{
        display: block;
        position: absolute;
        text-transform: uppercase;
        right: 47px;
        top: 10px;
        font-size: 17px;
        color: #642c97;
    }
    .wrapper{
        width:100%;
    }
   /* .header img{
        float: none;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    .search {
        float: none;

    }*/
    .right-slide{
        margin-top: 0px;
    }
    .carousel-indicators{
        bottom: -22px;
    }
    .search{
        float: none;
        margin-top: 5px;
    }
    .search button{
        float: right;
    }
    .logo-k {
        text-align: center;
    }
    .header{
        margin-bottom: 5px;
    }
    .header img{
        float: none;
    }
    .menu {
        clear: both;
        border-bottom: none;
        border-top: none;
    }
    #flexmenu ul li a {
        padding: 8px;
        font-size: 12px;
    }

}