html,
body {
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.footer {
    height: 60px;
    background-color: black;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    /*font-family: 'Glyphicons Halflings';*/
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding: 15px;
    border: none;
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
}

.nav > li > form > button.logout:focus {
    outline: none;
}

/*NEW ------------------------------------------------------------------------------------*/

/*layout main.php*/
body{
    font-family: 'Lora', serif;
}

#myNavbar ul li a{
  text-decoration: none;
  color: black;
  z-index: 1;
  padding-top: 20px;
}

#myNavbar ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 2px;
  left: 0;
  background: #e08d41;
  visibility: hidden;
  border-radius: 5px;
  transform: scaleX(0);
  transition: .25s linear;
}

#myNavbar ul li a:hover:before,
#myNavbar ul li a:focus:before {
  visibility: visible;
  transform: scaleX(1);
}

#myNavbar { 
    height: 200px;
    max-height: 200px;
    width: 105%;
    overflow-y: scroll;
    -webkit-overflow-scrolling:touch;
    margin-right: 0px;
}

/*content index.php*/
.imgWhatText{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 1s linear;
}

.imgWhat{
    filter:blur(0px);
    transition: 1s -webkit-filter linear;
}

.imgWhat:hover + .imgWhatText{
    visibility: visible;
    opacity: 1;
}

.imgWhat:hover{
    filter:blur(2px);
    transition: 1s -webkit-filter linear;
}

.lobsterFont{
    /*font-family: 'Lobster', cursive;*/
}

.addBackground{
    background-color: white;
    color:black;
    padding:10px;
}

.addBackground:hover{
    border-radius: 5px 50px 5px;;
    background-color: #9c3f3f;
    color:white;
    transition: background-color 0.3s ease;
}

.menuHover{
    border : none;
    transition: all 0.3s linear;
}

.menuHover img{
    width: 75%;
    transition: all 0.3s linear;
}

.menuHover:hover{
    border:0.5px solid #9c3f3f;
    border-radius: 10px;
    box-shadow: 10px 10px 5px #9c3f3f;
    transition: all 0.3s linear;
}

.menuHover:hover img{
    width: 80%;
    height: auto;
    transition: all 0.3s linear;
}

.backgroundRed:hover{
    background-color: #f4f4f4;
}

@media(max-width:1050px) {
    .cekSize {
        text-align: center;
    }

    .border{
        border-left:none !important;
    }

    .logo{
        display: none;
    }
}

@media(max-width:500px) {
    .fontHead{
        font-size:30px !important;
    }
}

@media(max-width:1050px) {
    .navbar{
        display: block !important;
    }

    .hideMenu{
        display: none !important;
    }

    .showMenu{
        display: block !important;
    }

    .whatsNext{
        width: 100% !important;
        min-height:0px !important;
        max-height:300px !important;
    }
}

.whatsNext{
    width: 100%;
    min-height:300px;
    max-height:300px;
}

/*home*/
/*.overlay {
  background-color: rgba(246,156,73,0.7) !important;
}*/

.headerMenu:hover{
    color : white !important;
}

.containerPhoto{
    transition: .5s ease;
    backface-visibility: hidden;
    position: relative;
    padding-right: 0px;
}

.containerPhoto:hover{
    cursor: pointer;
}

.containerPhoto:hover .middle {
    background-color:rgba(215, 215, 215, 0.7) !important;
}

.containerPhoto:hover .imageHome {
    opacity: 0.5;
    background:rgba(215, 215, 215, 0.7) !important;
}

.imageHome{
    opacity: 0.7;
    transition: .5s ease;
    backface-visibility: hidden;
}

.textHome {
    color: black;
    font-size: 25px;
    padding: 16px 32px;
}

.middle {
    transition: .5s ease;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: left;
}

.bottom-left {
    background-color:rgba(246,156,73,0.9);
    position: absolute;
    bottom: 0px;
    font-size:25px;
    width: 100%;
    color: white;
    padding: 15px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size:50px;
    padding-left:10px;
}

.hideName{
    display: none;
}

.showName:hover .hideName{
    display: block !important;
}

.enter {
   display: block;
   margin: -10px 0;
}

.photoHover{
    overflow: hidden;
}

.photoNonHover {
    overflow:hidden;
}

.photoHover:hover{
    cursor: pointer;
    transform: scale(1.2);
    transition: all 1s linear;
}

.parentPhoto {
    width: 100%;
    height: 325px;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.childPhoto {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.bg-one {background-image: url('../img/fotonew1.jpg');background-size: cover;background-position: center;}
.bg-two {background-image: url('../img/fotonew2.jpg');background-size: cover;background-position: center;}
.bg-three {background-image: url('../img/fotonew3.jpg');background-size: cover;background-position: center;}


.parentPhoto:hover .childPhoto, .parentPhoto:focus .childPhoto {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.parentPhoto:hover .childPhoto:before, .parentPhoto:focus .childPhoto:before {
    display: block;
}

.parentPhoto:hover a, .parentPhoto:focus a {
    display: block;
}

.childPhoto:before {
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(246,156,73,0.5);
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav   li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
background-color:white;
color: black;
 }
       .navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle {
background-color:white;
color: black;
 }