/* Global */
body{
  background: #F1F5E4;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.main_holder{
  position: relative;
  height: auto;
  width: 90%;
  max-width: 1400px;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0%);
}

/* Header */
.header{
  position: fixed;
  height: 55px;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 2;
  transition: all .2s ease-in-out;
}

.header_default{
  background: #d2d6c5;
  box-shadow: 0px 1px 0px 0px #bcbfb0;
}

.OK_logo{
  position: relative;
  width: 176px;
  margin-top: 13px;
  left: 9px;
}

.header_right{
  position: absolute;
  width: auto;
  right: 20px;
  top: 11px;
}

.book_header_btn{
  width: 100px;
  height: 32px;
  border-radius: 2px;
  background: transparent;
  border: solid 2px #494B41;
  color: #494B41;
  outline: none;
  cursor: pointer;
  font-family: arial;
  font-weight: bold;
  font-size: 14px;
  transition: all .2s ease-in-out;
}
.book_header_btn:hover{
  background: #DC81EF;
  border: solid 2px #DC81EF;
}
.book_header_btn:focus{
  background: #DC81EF;
  border: solid 2px #DC81EF;
}

.location{
  position: absolute;
  left: -280px;
  top: -7px;
  width: 270px;
}

.location_txt{
  position: absolute;
  color: #494B41;
  width: 100%;
  font-size: 16px;
  font-family: arial;
}

.location_svg{
  position: absolute;
  height: 24px;
  width: 24px;
  left: -30px;
  top: -3px;
}

.tel{
  position: absolute;
  left: -420px;
  top: -7px;
  width: 270px;
}

.tel_txt{
  position: absolute;
  color: #494B41;
  width: 100%;
  font-size: 16px;
  font-family: arial;
}

.tel_svg{
  position: absolute;
  height: 24px;
  width: 24px;
  left: -30px;
  top: -3px;
}

/* Width */
@media (max-width: 900px) {
  .header{
    height: 80px;
  }
  .OK_logo{
    margin-top: 9px;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  .header_right{
    position: absolute;
    right: 50%;
    margin-right: -275px;
    top: 40px;
  }
}

/* Mobile */
@media only screen and (max-device-width: 700px) and (max-device-height: 1200px){
  .header{
    height: 190px;
  }
  .OK_logo{
    width: 470px;
    margin-top: 15px;
    left: 23px;
  }
  .book_header_btn{
    position: absolute;
    top: 5px;
    right: 15px;
    height: 75px;
    width: 230px;
    font-size: 40px;
    border-width: 4px;
  }
  .location{
    top: 90px;
    transform: scale(1.7);
    left: -427px;
  }
  .tel{
    top: 90px;
    transform: scale(1.7);
    left: -700px;
  }
}
