@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: #367fa9 !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: #367fa9;
}

.navbar-default .navbar-nav > li > a {
  border-top: 2px solid #3c8dbc;
}

.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: #367fa9;
  border-top: 2px solid #880000;
}
.navbar-toggle {
  background-color: #e3e3e3;
}
.head {
  background-color: #ffffff;
  color: #333333;
  width: 100%;
}
.head small {
  text-transform: capitalize;
  font-size: 14px;
}
.navbar {
  background-color: #3c8dbc;
}
.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: 13px;
  padding: 15px;
}

label.error {
  color: red;
  padding-left: 0.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 #3c8dbc;
  width: 50%;
  height: 20px;
}
.tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #3c8dbc;
}

/*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 #3c8dbc;
  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 #3c8dbc;
  width: 0;
  height: 20px;
}

.tree li .link {
  border: 1px solid #3c8dbc;
  padding: 6px 6px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-family: arial, verdana, tahoma;
  font-size: 11px;
  display: inline-block;
  background-color: #3c8dbc;
  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: #ffffff;
  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: 88px;
  width: 90%;
  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;
}
