.style-add-children/* 

Step 1
======

Style your page (the product list)

*/

.product {
  float: left;
  margin: 10px;
}

.product .product-images,
.product .product-form {
  display: none;
}

.fancybox-form-wrap > .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
  background-color: #fff !important;
}

.svn_background_tab > .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
  background-color: #fff !important;
}

/* 

Step 2
======

Reposition and redesign fancyBox blocks

*/

/* This elements contains both blocks */
.fancybox-bg, .fancybox-inner, .fancybox-outer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.fancybox-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  max-width: 800px;
  max-height: 600px;
}

/* Left block will contain the gallery */
.fancybox-stage {
  /* width: 0;
  background: #fff;
  z-index: 99999;
  padding: 20px;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch !important; */
  z-index: 0;
}

/* Right block - close button and the form */
.fancybox-form-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow: auto; 
  background: #fff;
}

.fancybox-form-wrap .svnContentTour select{
  margin-bottom: 3px;
}

.svnContentTour{
  text-align: left
}

/* Add vertical lines */
.fancybox-form-wrap::before, 
.fancybox-form-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.fancybox-form-wrap::before {
  width: 8px;
  background: #f4f4f4;
}

.fancybox-form-wrap::after {
  width: 1px;
  background: #e9e9e9;
}


/* Set position and colors for close button */
.fancybox-button--close {
  position: absolute;
  top: 0;
  right: 0;
  background: #F0F0F0;
  color: #222;
  padding: 7px;
  min-width: unset;
}

.fancybox-button:hover {
  color: #111;
  background: #e4e4e4;
}

.fancybox-button svg path {
  stroke-width: 1;
}

/* Set position of the form */
.fancybox-inner .product-form {
  /*overflow: auto;*/

}


/* 

Step 3
======

Tweak fade animation

*/

.fancybox-inner {
  opacity: 0;
  transition: opacity .3s;
}

.fancybox-is-open .fancybox-inner {
  opacity: 1;
}

.fancybox-is-closing .fancybox-fx-fade {
  opacity: 1 !important; /* Prevent double-fading */
}

/* 

Step 2
======

Bullet navigation design

*/
.product-bullets {
  list-style: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  z-index: 99999;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.product-bullets li {
  display: inline-block;
  vertical-align: top;
}

.product-bullets li a {
  display: block;
  height: 30px;
  width: 20px;
  position: relative;
}

.product-bullets li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 10px;
  border-radius: 99px;
  text-indent: -99999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
}

.product-bullets li.active a span {
  background: #FF6666;
}

/* INPUT NUMBER INCREMENTER */
.input-number-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

.input-number-group .input-group-button {
  line-height: calc(80px/2 - 5px);
}

.input-number-group .input-number {
  width: 80px;
  padding: 0 12px;
  vertical-align: top;
  text-align: center;
  outline: none;
  display: block;
  margin: 0;
}

/* .input-number-group .input-number,
.input-number-group .input-number-decrement, .input-number-group .input-number-decrement-2,
.input-number-group .input-number-increment, .input-number-group .input-number-increment-2 {
  border: 1px solid #cacaca;
  height: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 0;
} */

/* .input-number-group .input-number-decrement, .input-number-decrement-2,
.input-number-group .input-number-increment, .input-number-increment-2 {
  display: inline-block;
  width: 40px;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 400;
} */

/* .input-number-group .input-number-decrement, .input-number-decrement-2 {
  margin-right: 0.3rem;
}

.input-number-group .input-number-increment, .input-number-decrement-2 {
  margin-left: 0.3rem;
} */

/* INPUT NUMBER INCREMENTER */

.composer-tools ul {
  list-style: outside none none;
  padding-top: 10px;
}
.composer-tools li {
  display: inline-block;
}
.composer-tools label {
  display: block;
}
.composer-tools input, .composer-tools select {
  display: inline-block;
}

.style-add-children{
  /* display: inline-block;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 400;
  width: auto;
  padding: 3px 8px;
  margin-left: 5px;
  border: 1px solid #cacaca;
  height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  user-select: none;
  border-radius: 0; */
}

/* .style-add-children:hover{
  background: #0a0a0a;
  color: #e6e6e6;
} */

.abc{
  display: none;
  margin-top: 10px;
}

.svn_section_group{
  border: 1px solid #eee;
  padding: 5px;
  margin-top: 10px;
}

.svnColorTitle{
  color: #e0681f;
}

.filter-cat-results .f-cat a, .filter-cat-results .f-cat h5{
  color: #e0681f;
} 

.filter-cat-results .f-cat a:hover, .filter-cat-results .f-cat h5:hover{
  color: #ffb254 !important;
} 

#svn-accordion a{
  text-decoration: none;
  background-color: #f5f5f5;
}

#svn-accordion .panel-heading{
  background-color: #f5f5f5;
}

.name-tour, .svn-name-tour, .svn-booking-action-tour{
  background-color: #e0681f;
}

.datepicker_star{
  max-height:35px !important;
}

#svn_check_availability{
  clear: both;color: #fff; background:#000;
  margin-top:35px;
}

.svnInfoStyle p{
  margin-top: 20px;
  line-height: 1.7em;
}

.svnInfoStyle #accordion .panel{
  border: none;
  border-radius: 3px;
  box-shadow: none;
  margin-bottom: 15px;
}
.svnInfoStyle #accordion .panel-heading{
  padding: 0;
  border: none;
  border-radius: 3px;
}
.svnInfoStyle #accordion .panel-title a{
  display: block;
  padding: 12px 15px;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  color: #f81ac1;
  /*border: 1px solid #ececec;*/
  box-shadow: 0 0 10px rgba(0,0,0,.05);
  position: relative;
  transition: all 0.5s ease 0s;
  box-shadow: 0 1px 2px rgba(43,59,93,0.30);
}
.svnInfoStyle #accordion .panel-title a.collapsed{
  box-shadow: none;
  color: #e0681f;
  box-shadow: 0 1px 2px rgba(43,59,93,0.30);
}
.svnInfoStyle #accordion .panel-title a:before,
.svnInfoStyle #accordion .panel-title a.collapsed:before{
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  width: 25px;
  height: 25px;
  line-height: 28px;
  font-size: 15px;
  font-weight: 900;
  color: #f81ac1;
  text-align: center;
  position: absolute;
  top: 8px;
  right: 15px;
  transform: rotate(135deg);
  transition: all 0.3s ease 0s;
}
.svnInfoStyle #accordion .panel-title a.collapsed:before{
  color: #676767;
  transform: rotate(0);
}
.svnInfoStyle #accordion .panel-title a:after{
  content: "";
  width: 1px;
  height: 100%;
  background: #ececec;
  position: absolute;
  top: 0;
  right: 55px;
}
.svnInfoStyle #accordion .panel-body{
  padding: 0px 15px;
  border: none;
  font-size: 15px;
  color: #615f5f;
  line-height: 27px;
}

button.svn-name-tour.tour-cu-chi-class:disabled {
  /* background-color: #dddd; */
}

.svn_infomation_tour .nav-tabs>li>a {
  border: 1px solid #000;
}
.svn_infomation_tour .nav-tabs{
  border-bottom: none;
}

@media screen and (max-width: 500px){
    /* .input-number-group .input-number, .input-number-group .input-number-decrement, .input-number-group .input-number-decrement-2, .input-number-group .input-number-increment, .input-number-group .input-number-increment-2{
        height: 35px;
    } */
    
    /* .input-group-button .style-add-children{
        margin-left: 0px !important;
        margin-top: 5px !important;
    } */
    
    #svnPrice{
        width: 70px;
    }
    
    #svnNumberDate{
        width: 80px;
    }

    .svn-space-label{
      margin-top: 5px;
    }

    #svn_check_availability{
      margin-top:0;
      margin-bottom: 15px;
    }

}