@font-face {
    font-family: ScriptMTBold;
    src: url(ScriptMTBold.ttf);
}

.title {
    font-family: ScriptMTBold;
    color:#000;
    font-size: 25px
}



.logincontainer {
    margin: 20px auto 100px auto;
    padding: 0 10px;
    max-width: 450px;
}

  .navbar-default .navbar-nav .open .dropdown-menu>li>a {
      color:#000 !important;
  }

  nav>.nav>li>a {
    color: #555;
    background-color: #e7e7e7 !important;
  }
  .navbar-default .navbar-nav>li>a, .navbar-brand {
      color: #fff !important;

  }
  .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
      color: #555 !important;
      background-color: #e7e7e7;
  }

  .navbar-default .navbar-nav>li>a{
      border-top:2px solid #e13e2f;
  }

  .navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
      color: #555 !important;
      background-color: #e7e7e7;
      border-top:2px solid #880000;
  }
  .navbar-toggle{
      background-color: #e3e3e3;
  }
  .head{
    background-color:#fff; color:#8a8a8a; width:100%
  }
  .head small{
    text-transform: capitalize;
    font-size:10px;
  }
  .navbar{
    background-color:#30318b;
  }
  .title-head{
    padding:6px;
    padding-right: 0%;
    padding-left: 0%;
  }
  .subtitle{
    font-weight:bold;
  }
  .box-sidebar{
     box-shadow: 0px 10px 18px -9px #666; padding:20px 15px; border-top:4px solid #880000
  }
  .sidebar-title{
    border-bottom:1px solid #880000;
    font-weight:bold;
    margin-top:13px;
    padding-bottom:5px;
  }
  .sidebar-title.top{
    border-bottom:1px solid #880000;
    font-weight:bold;
    margin-top:-10px;
  }
  .jumbotron {
    padding: 0px;
    margin-bottom: 0px;
    color: inherit;
    background-color: #eee;
  }
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 200;
  }
  .container .jumbotron, .container-fluid .jumbotron {
      padding-right: 0px;
      padding-left: 0px;
  }

  .myTabs li{
    width:50%;
  }

  .myTabs li a{
    text-align: center;
    font-weight: bold;
  }

  .myTabs .active a{
    color:red !important;
  }

  #myTabs li{
    width:25%;
  }
  #myTabs li a{
    text-align: center;
    font-weight: bold;
  }

  hr{
    padding:0px;
    margin:5px 0px 8px 0px;
  }
  .date{
    display:block;
    font-size:11px;
  }

  .text-footer{
    display:block;
    font-size:11px;
    padding:15px;
  }

  label.error {
    color: red; 
    padding-left: .5em;
    font-style:italic;
    font-size:12px;
    background-color: #eee;
    display:block;
    padding: 5px;
    font-weight: none;
    border-bottom:1px solid #ccc;
  }

  .overflow{
    overflow:hidden; height:110px; width:100%; background:#cecece;
  }



* {margin: 0; padding: 0;}
.tree ul {
padding-top: 20px; position: relative;
transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.tree li {
float: left; text-align: center;
list-style-type: none;
position: relative;
padding: 20px 3px 0 3px;

transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before, .tree li::after{
content: '';
position: absolute; top: 0; right: 50%;
border-top: 1px solid #337ab7;
width: 50%; height: 20px;
}
.tree li::after{
right: auto; left: 50%;
border-left: 1px solid #337ab7;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after, .tree li:only-child::before {
display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child{ padding-top: 0;}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before, .tree li:last-child::after{
border: 0 none;

}
/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before{
border-right: 1px solid #337ab7;
border-radius: 0 5px 0 0;
-webkit-border-radius: 0 5px 0 0;
-moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
border-radius: 5px 0 0 0;
-webkit-border-radius: 5px 0 0 0;
-moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before{
content: '';
position: absolute; top: 0; left: 50%;
border-left: 1px solid #337ab7;
width: 0; height: 20px;
}

.tree li .link{
border: 1px solid #337ab7;
padding: 6px 6px;
text-decoration: none;
color: #fff;
font-weight: bold;
font-family: arial, verdana, tahoma;
font-size: 11px;
display: inline-block;
background-color: #337ab7;
border-radius: 5px 5px 0px 0px;
width:101px;
-webkit-border-radius: 5px 5px 0px 0px;
-moz-border-radius: 5px 5px 0px 0px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.tree li .link0{
border: 1px solid #8a8a8a;
padding: 5px 5px;
text-decoration: none;
color: red;
font-weight: bold;
font-family: arial, verdana, tahoma;
font-size: 11px;
display: inline-block;
background-color: #cecece;
border-radius: 5px 5px 0px 0px;
width:101px;
-webkit-border-radius: 5px 5px 0px 0px;
-moz-border-radius: 5px 5px 0px 0px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover+ul li a {
color: #000; border: 1px solid #94a0b4;
}

/*Connector styles on hover*/
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before, 
.tree li a:hover+ul ul::before{
border-color:  red;
}

.image0{
border-radius:60px; width:50px;
border:2px solid #fff;
}

.image{
border-radius:60px; width:40px;
border:2px solid #fff;
}

.image2{
border-radius:60px; width:37px;
border:2px solid #fff;
}

.judul {
  font-weight: bold;
}

.produk{
border:1px solid #f4f4f4;
min-height: 250px;
padding:0;
}

.produk:hover{
border:1px solid #cecece;
background-color: #e3e3e3;
}

.keranjang{
top:8px; left:-9px;
}

.keranjang-notif{
  margin:-27px 0px 0px 5px; 
  position:absolute;
}

.search {
    box-sizing: border-box;
    border: 1px solid #f4f4f4;
    border-radius: 4px;
    font-size: 13px;
    background-color: #f3f3f3;
    background-image: url('searchicon.png');
    background-position: 8px 5px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

.search:focus {
    width: 100%;
}

.blur{
    min-height:50px; width:76%; display:block;
    -webkit-filter: blur(5px); -moz-filter: blur(5px); -ms-filter: blur(5px); -o-filter: blur(5px); filter: blur(5px);
}

.stok{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight:bold;
    color:#fff;
    background-color:#bbb;
    width: 60px;
    height: 60px;
    padding-top:10px;
    border-radius:120px;
}

.normal{
    min-height:88px; width:90%; display:block;
}

.valign{
    vertical-align: middle !important;
}

.keranjang-checkouts{
    bottom: -0px;
    left: -27px;
    position: relative;

}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 1px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


footer {
    display: block;
}
.boxed:not(.active) {
    background: transparent !important;
    min-width: 1220px;
}
.titlefooter > h3 {
    display: block;    
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 7px 13px;
    margin-bottom: 10px;
    font-weight: bold;
    padding-top: 30px;
}

.footersite {
    
    color: #ffffff;
    
}

.footersite a {
    color: #ffffff !important;
}


.footersite>.wrapper {
    padding: 15px 0px 1px 0px;
    background: transparent !important;
    position: relative;
}

.footersite .wrapper {
    background: inherit;
    width: 100% !important;
}
.footersiteatas {
    background-color: #FFFFFF;
    color: #000000;
    height:30px;

}

.footersiteatas a {
    color: #ffffff !important;
}


.footersiteatas>.wrapper {
    padding: 15px 0px 1px 0px;
    background: transparent !important;
    position: relative;
}

.footersiteatas .wrapper {
    background: inherit;
    width: 100% !important;
}


.footersitebawah {
    background-color: #434343;
    color: #ffffff;
    box-shadow: inset 0px -140px 200px -50px rgba(0, 0, 0, 0.15);

}

.footersitebawah a {
    color: #ffffff !important;
}


.footersitebawah>.wrapper {
    padding: 15px 0px 1px 0px;
    background: transparent !important;
    position: relative;
    padding-left:50px;
    padding-top:20px;
}

.footersitebawah .wrapper {
    background: inherit;
    width: 100% !important;
}
.fotoorganisasi{
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 11px;
    display: inline-block;

    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;

    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    text-align:center;
    max-width:180px;
    max-height:280px
}
.noteyou{
    color:yellow important;
}

 .star-rating {
    line-height:32px;
    font-size:1.25em;
  }
  .star-rating .fa-star{color: #3399cc;}
  /*****************globals*************/

  .star-lintang {
    line-height:32px;
    font-size:1.25em;
  }
  .star-lintang .fa-star{color: #3399cc;}
  /*****************globals*************/

  .star-review-rating {
    line-height:32px;
    font-size:1.25em;
  }
  .star-review-rating .fa-star{color: #3399cc;}
  /*****************globals*************/

  .star-review-rating-user {
    line-height:21px;
    font-size:1.25em;
  }
  .star-review-rating-user .fa-star{color: #3399cc;}
  /*****************globals*************/

.stars {
    line-height:12px;
    font-size:1em;
  }
  .stars .fa-star{color: #3399cc;}
  /*****************globals*************/


