/* --------------------------------

Primary style

-------------------------------- */


[data-content="general"] input, [data-content="business"] input {
  width: 220px !important;
}

/* --------------------------------

Main components

-------------------------------- */
.business_hours header {
  position: relative;
  height: 160px;
  line-height: 180px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.business_hours header h1 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .business_hours header {
    height: 200px;
    line-height: 225px;
  }
  .business_hours header h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.cd-tabs {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: 2em auto;
}
.cd-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs::after {
  /* subtle gradient layer on top right - to indicate it's possible to scroll */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 50px;
  z-index: 1;
  pointer-events: none;
  background: -webkit-linear-gradient( right , #f8f7ee, rgba(248, 247, 238, 0));
  background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.no-cssgradients .cd-tabs::after {
  display: none;
}
.cd-tabs.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #ececec;
  box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}
@media only screen and (min-width: 768px) {
  .cd-tabs::after {
    display: none;
  }
  .cd-tabs nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
    z-index: 1;
  }
}
@media only screen and (min-width: 9060px) {
  .cd-tabs nav {
    position: relative;
    float: none;
    background: transparent;
    box-shadow: none;
  }
}

.cd-tabs-navigation {
  width: 360px;
}
.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs-navigation li {
  float: left;
}
.cd-tabs-navigation a {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  text-align: center;
  font-size: 12px;
  /* font-size: 0.75rem; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  padding-top: 34px;
  color: #29324e;
  text-decoration: none;
}
.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(233, 230, 202, 0.3);
  text-decoration: underline;
}
.cd-tabs-navigation a.selected {
  background-color: #ffffff !important;
  box-shadow: inset 0 2px 0 #f05451;
  color: #29324e;
}
.cd-tabs-navigation a::before {
  /* icons */
  position: absolute;
  top: 12px;
  left: 50%;
  margin-left: -10px;
  display: inline-block;
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .cd-tabs-navigation {
    /* move the nav to the left on medium sized devices */
    width: 160px;
    float: left;
  }
  .cd-tabs-navigation a {
    height: 60px;
    width: 160px;
    padding-top: 5px;
	font-size: 14px;
  }
  .cd-tabs-navigation a i {
	font-size:18px;
  }
  .cd-tabs-navigation a.selected {
    box-shadow: inset 2px 0 0 #3F90FF;
  }
  .cd-tabs-navigation a::before {
    top: 11px;
  }
}
@media only screen and (min-width: 9060px) {
  .cd-tabs-navigation {
    /* tabbed on top on big devices */
    width: auto;
    background-color: #f8f7ee;
    box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
  }
  .cd-tabs-navigation a {
    height: 60px;
    line-height: 60px;
    width: auto;
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 2.8em 0 4.6em;
  }
  .cd-tabs-navigation a.selected {
    box-shadow: inset 0 2px 0 #f05451;
  }
  .cd-tabs-navigation a::before {
    top: 50%;
    margin-top: -10px;
    margin-left: 0;
    left: 38px;
  }
}

.cd-tabs-content {
  background: #ffffff;
}
.cd-tabs-content li {
  display: none;
  padding: 1.4em;
}
.cd-tabs-content li.selected {
  display: block;
  -webkit-animation: cd-fade-in 0.5s;
  -moz-animation: cd-fade-in 0.5s;
  animation: cd-fade-in 0.5s;
}
.cd-tabs-content li p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8493bf;
  margin-bottom: 2em;
}
@media only screen and (min-width: 768px) {
  .cd-tabs-content {
    min-height: 480px;
  }
  .cd-tabs-content li {
    padding: 2em 2em 2em 15em;
  }
}
@media only screen and (min-width: 9060px) {
  .cd-tabs-content {
    min-height: 0;
  }
  .cd-tabs-content li {
    padding: 3em;
  }
  .cd-tabs-content li p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*Plus / Minus styles*/
.field{
  font-size: 20px;
  font-weight: 800;
  float:left;
  width: 125px;

}
.pl_btn,.minus_btn{
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 5px;
  border: 1px solid #989898;
  background: #ececec;
}
.minus_btn{
  padding: 5px 12px;
}
.input_area input, .input_area.appended input {
  background: white;
  height: 25px;
  width: 25%;
  font-size: 16px;
  padding: 0px 5px;
  border: 1px solid #989898;
}
.label{
  clear: both;
  padding-top: 15px;
  border-top: 1px dashed #989898;
}

@media (max-width: 600px) and (min-width: 490px) {
  .input_area{
    width: calc(100% - 125px);
  }


}

.input_area{
  max-width: 350px;
}
.note-area{
  float: left;
  text-align: left;
  color: #989898;
  font-family: serif;
}
.label div:first-of-type{
  margin-left: 0px !important;
  float:left !important;
  clear: none;
}

.label div{
  margin-left: 125px !important;
  clear: both;
  margin-bottom: 30px;
}

.cd-tabs-content{
  overflow-y: scroll!important;
}

.newForm{
  border: solid 1px red;
}
.date_input_area{
  clear: both;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px dashed #989898;
}
.close_button{

  margin-left: 25px;
}
.new_inputes{
  border: solid 1px;
  padding: 10px;
  margin: 10px 0px
}

#plugin-business-hours-submit{
	margin-left: 30px;
}

.font_size_18 {
  font-size: 18px !important;
}

input.fixr{
  width:auto !important;
  margin-left: 5px;
}
.dlabel{
  color:#444 !important;
}