﻿/* Navbar ====================================== */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600&display=swap');
@import url(materialize.css);

/*** animation styles ***/

.shake_anim {
  -webkit-animation-name: shake_animation;
  animation-name: shake_animation;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.bounce_anim {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes shake_animation {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake_animation {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-webkit-keyframes bounce_animation {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}
@keyframes bounce_animation {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

/************************/

/** CSS Positions **/

.pos_absolute { position: absolute; }
.pos_relative { position: relative; }
.pos_fixed { position: fixed; }

/*****************/


/** Margin styles **/
.m-l-r-auto {
  margin-left: auto;
  margin-right: auto;
}


/*** Padding styles ***/

.pb0 {
  padding-bottom: 0 !important;
}
.pb10 { padding-bottom: 10px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb50 { padding-bottom: 50px !important; }

.pt10 { padding-top: 10px !important; }
.pt20 { padding-top: 20px !important; }
.pt30 { padding-top: 30px !important; }
.pt40 { padding-top: 40px !important; }
.pt50 { padding-top: 50px !important; }

/**********************/

/*** Text colors ***/

.text_red {
  color: #66201f !important;
}
.text_green {
  color: #4CAF50 !important;
}
.text_orange {
  color: #ff6600 !important;
}
.text_goldan {
  color: #d2ab67 !important;
}

/*******************/

/** font-weight styles **/
.font-light {
  font-weight: 100;
}

/*** bg colors **/
.bg-red {
  background-color: #da291a !important;
  color: #fff; 
}

.bg_lightgreen {
  background-color: #b6ffb9 !important;
}
.bg_lightgray {
  background-color: #eee !important;
}
.no-bg {
  background: none; 
  background-color: none; 
  color: #666;
}

/** text Colors **/
.col-theme-golden {
  color: #d2ab67 !important;
}
.col-theme-red {
  color: #c22119 !important;
}

.col-theme-pink {
  color: #c11ada !important; 
}

/** border styles **/
.no-border-bottom {
  border-bottom: 0px !important; 
}

.border-1 {
  border: 1px solid #ddd;
}

.border-theme-golden {
  border-color: #d2ab67;
}
.border-white {
  border-color: #fff;
}

/** Box-shadow styles **/
.no-box-shadow {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/** html element styles **/
hr {
  border-top: 1px solid #ccc;
}

.pointerlink {cursor: pointer;}

/*** Navbar styles ***/

.theme-red .sidebar {
  width: 250px;
}
.theme-red section.content {
  margin: 100px 15px 0 265px;
}

.theme-red section.content.full_width {
  margin: 15px 15px 0 15px;
}

.preview_page_logo img {
  width: 230px;
}

.navbar-nav {
  margin-top: 5px;
}

/*******************/

/*** Buttons ***/

.btn.theme_btn.bg-red {
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.btn.theme_btn.bg-red:hover {
  color:#fff;
  background-color: #883d3c;
}

/*****************/

body.modal-open::-webkit-scrollbar {
  width: 1em;
}
 
body.modal-open::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
body.modal-open::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

/*** Data tables styling ***/

table.custom_table > thead > tr > th {
  text-align: center !important;
}
table.custom_table.head_lightred > thead > tr > th {
  background-color: #bb9594;
  color: #fff;
}
table.custom_table > tbody > tr > td.text-right {
  text-align: right !important;
}

table.custom_table > tbody > tr.spl_row > td {
  color: #333 !important;
  font-size: 16px !important;
}

table.custom_table > tbody > tr td.border0 {
  border: 0px !important;
}

table.custom_table > tbody > tr td.border_left0 {
  border-left: 0px !important;
}
table.custom_table > tbody > tr td.border_right0 {
  border-right: 0px !important;
}
table.custom_table > tbody > tr td.border_bottom0 {
  border-bottom: 0px !important;
}
table.custom_table > tbody > tr td.border_top0 {
  border-top: 0px !important;
}

table.custom_table > tbody > tr > td.text-left {
  text-align: left !important;
}
table.custom_table > tbody > tr > td.text-center {
  text-align: center !important;
}
table.custom_table > thead > tr > th.width_60,
table.custom_table > tbody > tr > td.width_60 {
  width: 70px !important;
}

table.dataTable > tbody > tr.child ul.dtr-details {
  display: block;
  width: 100%;
  -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.22);
  box-shadow: 0 0 3px rgba(0,0,0,0.22);
  border-radius: 5px;
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, 
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
  top: 12px;
  left: 6px;
  content: '\f107';
  font-family: FontAwesome;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before, 
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  content: '\f106';
  font-family: FontAwesome;
}

table.dataTable > tbody > tr.child ul.dtr-details > li {
  display: table;
  width: 100%;
  padding: 0;
  background-color: #f9f9f9;
}
table.dataTable > tbody > tr.child span.dtr-title {
  display: table-cell;
  width: 160px;
  vertical-align: top;
  background-color: #f2f2f2;
  padding: 5px;
  padding-right: 5px;
}
table.dataTable > tbody > tr.child span.dtr-data {
  display: table-cell;
  vertical-align: top;
  padding: 5px;
  padding-left: 15px;
}

table.table.dataTable > thead > tr > th {
  background-color: #f9f9f9;
}

table.table.dataTable > thead > tr > th,
table.table.dataTable > tfoot > tr > th {
  width: 130px !important;
}
table.table.dataTable > thead > tr > th:nth-child(1),
table.table.dataTable > tfoot > tr > th:nth-child(1) {
  width: 60px !important;
}

table.table.dataTable > tfoot > tr > th > input,
table.table.dataTable > tfoot > tr > th > select {
  min-width: 50px;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: 400;
  padding: 6px;
  padding-left: 8px;
  color: #666;
}

table.table.dataTable > tfoot > tr > th > input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

table.table.dataTable > tfoot > tr > th > input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

table.table.dataTable > tfoot > tr > th > input:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

table.table.dataTable > tfoot > tr > th > input::-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

table.table.dataTable > tfoot > tr > th > input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

table.table.dataTable > tbody > tr > th {
  text-align: center;
}

.main-card .dataTables_wrapper .dt-buttons a.dt-button.buttons-copy {
  background-color: #03a9f4;
}
.main-card .dataTables_wrapper .dt-buttons a.dt-button.buttons-csv {
  background-color: #31b131;
}


.date_time_badge {
  display: block;
  width: 150px;
  background-color: #d2ab67;
  /*color: #fff;*/
  padding: 0px 5px;
  border-radius: 2px;
  margin-bottom: 3px;
}
.date_time_badge.from_badge {
  background-color: #ffdba2;
}
.date_time_badge.to_badge {
  background-color: #efdedc;
}


/**************************/


/*** Page header buttons ***/

.header .btn-group { 
  position: absolute;
  right: 20px;
  top: 25px;
  /*height: 60px;*/
  display: inline-block;
  float: right;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.header .btn-group .dropdown-menu {
  right: 0;
  left: auto;
  float: none;
  min-width: 300px;
  padding: 5px 10px 10px;
  border-radius: 5px;
}
.header .btn-group .dropdown-menu table.table { border: 0px; margin-bottom: 0; }
.header .btn-group .dropdown-menu table.table tbody tr {
  border-bottom: 1px dashed #ddd;
}
/*.book_inf_wrap .menu_pkg_details table.table { width: 280px; }*/
.header .btn-group .dropdown-menu table.table tbody tr td {
  padding: 10px;
  border: 0px;
  font-size: 14px;
  font-weight: 600;
  color: #676767;
}
.header .btn-group .dropdown-menu table.table tbody tr td:nth-child(1) {
  vertical-align: middle;
}
.header .btn-group .dropdown-menu table.table tbody tr td:nth-child(2) {
  width: 100px;
  text-align: center;
  /*background-color: #f6f6f6;*/
  vertical-align: middle;
}

.header .btn-group .dropdown-menu table.table tfoot tr td {
  padding: 10px;
  border: 0px;
  font-size: 16px;
  color: #333;
  background-color: #f1f1f1;
  text-align: center;
}
.header .btn-group .dropdown-menu table.table tfoot tr td.tot_price {
  padding-top: 12px;
  padding-bottom: 4px;
}
.header .btn-group .dropdown-menu table.table tfoot tr td .btn { font-size: 15px; }

.header .btn-group .btn {
  border-radius: 50%;
  overflow: visible;
}
.header .btn.view-btn {
  position: absolute;
  top: 25px;
  right: 65px;
  overflow: visible;
}
/*.header .btn + .btn {
  right: 65px;
}*/
.header .btn span.badge {
  position: absolute;
  right: -5px;
  top: -5px;
  width: 22px;
  height: 22px;
  padding: 1px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 300;
  color: #fff;
  background-color: #333;
  text-align: center;
  line-height: 22px;
  z-index: 1;
}

/*************************/


/*** Breadcrumb Wrap ***/

.breadcrumb_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-wrap: wrap;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;
  width: 100%;
}
.breadcrumb_wrap .breadcrumb_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 170px;
  border: 1px solid #ec9894;
  margin-bottom: 6px;
  margin-right: 6px;
  padding: 3px 8px;
  border-radius: 3px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffebea;
  min-height: 50px;

}
.breadcrumb_wrap .breadcrumb_list.back_btn_wrap {
  min-width: 0;
  width: auto;
  padding: 0;
}
.breadcrumb_wrap .breadcrumb_list p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.breadcrumb_wrap .breadcrumb_list button.icon {
  border: 0;
  background: transparent;
  /*padding: 0;*/
  height: 100%;
}
.breadcrumb_wrap .breadcrumb_list button.icon i.material-icons { line-height: inherit; }

.breadcrumb_wrap .breadcrumb_list .small_preview {
  width: 32px;
  height: 32px;
  overflow: hidden;
  text-align: center;
  margin-right: 6px;
  display: inline-block;
}
.breadcrumb_wrap .breadcrumb_list .small_preview img {
  -webkit-object-fit: contain;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

 /*** small preview in select time question ***/
 .timefield_with_icon_wrap {
  display: table;
  width: 100%;
 }
 .timefield_with_icon_wrap  .small_preview,
 .timefield_with_icon_wrap .form-group {
    display: table-cell;
 }
 .timefield_with_icon_wrap .small_preview {
    /*width: 1%;*/
    white-space: nowrap;
    vertical-align: middle;
    width: 40px;
    height: 32px;
    overflow: hidden;
    text-align: center;
    padding-right: 10px;
  }
  .timefield_with_icon_wrap .small_preview img {
    -webkit-object-fit: contain;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .timefield_with_icon_wrap .form-group {
    display: inline-block;
    width: 100%;
  }

 /*******************************/ 


@media only screen and (max-width: 1366px) {
  .breadcrumb_wrap {
    padding-right: 300px;
  }
}

/***********************/

/*** Pagination ***/

.main-card .pagination li.active a {
    background-color: #66201f;
}

/*****************/


/*** Tabs style ***/

.custom_tabs {
  position: relative;
}

.custom_tabs .nav-tabs {
    border-bottom: 2px solid #af5756;
    background-color: #c16967;
}
.custom_tabs .nav-tabs > li {
    position: relative;
    top: 0;
    left: 0;
}

.custom_tabs .nav-tabs > li > a {
    border: none !important;
    color: #fff !important;
    border-radius: 0;
}
.custom_tabs .nav-tabs > li.active > a, 
.custom_tabs .nav-tabs > li.active > a:hover, 
.custom_tabs .nav-tabs > li.active > a:focus {
    color: #fff !important;
    cursor: pointer;
    background-color: #a95755 !important;
    border: 0;
    border-bottom-color: transparent;
    border-radius: 0;
    margin-right: 0;
}
.custom_tabs .nav-tabs > li > a:before {
    left: 0;
    border-bottom: 2px solid #6b302f;
    bottom: -1px;
}
.custom_tabs .nav-tabs > li > a .badge {
  background-color: #d2ab67;
  border-radius: 10px;
}

.custom_tabs .nav-tabs + .tab-content {
    padding: 15px 12px;
    border: 1px solid #eee;
    border-top: 0px;
}

/******************/


/*** modal style **/

.full_height_modal .modal-body{
  height: 70vh;
}
.full_height_modal .modal-body iframe > html > body::-webkit-scrollbar {
  width: 8px;
}
 
.full_height_modal .modal-body iframe > html > body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.full_height_modal .modal-body iframe > html > body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.full_height_modal .modal-body html body {
  background-color: transparent;
}

.full_height_modal .modal-body iframe {
  border: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.full_height_modal.height_80 .modal-body {
  height: 80vh;  
}
.full_height_modal.height_90 .modal-body {
  height: 90vh;  
}

.modal.round_corner_8 .modal-content {
    border-radius: 8px;
}

.booked_date_strip {
  display: inline-block;
  margin: 10px auto 0;
  text-align: center;
  background: #f76257;
  color: #fff;
  padding: 4px 20px;
  border-radius: 30px;
  font-size: 17px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
}

/*** Counter label ***/

.question-counter {
  /*float: right;*/
  display: inline-block;
  background-color: #d2ab67;
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
}
.custom_tabs > .question-counter {
  position: absolute;
  right: 15px;
  top: 6px;
}

@media screen and (max-width: 640px)
{
  .question-counter { 
    float: none;
    display: block;
    width: 100px;
    text-align: center;
    margin-top: 10px;
  }
}

/*********************/


/** Panel group (Accordian) **/

.timeline_wrap {
  padding-left: 120px;
  position: relative;
}

.timeline_wrap .current_date {
  display: inline-block;
  padding: 0px;
  border-radius: 10px;
  /*box-shadow: 0 0px 10px rgba(0,0,0,0.14);*/
  height: auto;
  background-color: #fff7e7;
  border: 2px solid #e0c699;
  color: #8b8b8b;
  position: absolute;
  left: 15px;
  z-index: 2;
}
/*.timeline_wrap .current_date.current_date2 {
  position: relative;
}*/

.timeline_wrap .current_date span.from {
    text-align: center;
    /*float: left;*/
    font-size: 16px;
    font-weight: 600;
    /* background-color: #ffdba2; */
    /*background-color: #fff4e1;*/
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    /*min-width: 70px;*/
}
.timeline_wrap .current_date span.from span {
    display: block;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
}

.timeline_wrap ul {
  padding-left: 0;
  list-style-type: none;
}
.timeline_wrap .panel-group,
.timeline_wrap ul {
  position: relative;
  padding-top: 100px;
}
.timeline_wrap .panel-group:before,
.timeline_wrap ul:before {
  content: '';
  position: absolute;
  left: -60px;
  top: 0;
  height: 100%;
  border-left: 2px dashed #d2ab67;
  z-index: 1;
}
.timeline_wrap .panel-group .panel.panel-theme { position: relative; }
.timeline_wrap ul li { 
  border-bottom: 1px dashed #ccc; 
  position: relative; 
  padding: 15px 0;
}
.timeline_wrap .panel-group .panel.panel-theme.first:before,
.timeline_wrap ul li.first:before {
  content: '';
  left: -70px;
  top: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid #d2ab67;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  z-index: 4;
}

/*.timeline_wrap .panel-group .panel.panel-theme span.time_span {
  position: absolute;
  left: -81px;
  top: 10px;
  height: 100%;
  border-left: 2px solid #883d3c; 
  z-index: 3;
}*/

.timeline_wrap ul li > a {
  /*display: block;*/
  /*padding: 12px 60px 12px 5px;
  */color: #333;
  text-decoration: none;
}
.timeline_wrap ul li > a .btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
}

.timeline_wrap ul li > h5 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
}

.timeline_wrap ul li > a > p > span {
  display: inline-block;
  padding: 0px 4px;
  /*padding: 1px 4px;
  background-color: #fff7e7;
  border: 1px solid #e8b5b2;*/
  border-radius: 1px;
  font-weight: 600;
}
.timeline_wrap ul li > a .menu_price_tag,
.timeline_wrap ul li > a > p > .menu_price_tag {
  position: static;
  font-size: 14px;
  padding: 1px 6px;
  border-radius: 1px;
}
.timeline_wrap .panel-group .panel.panel-theme span.time_span,
.timeline_wrap ul li span.time_span {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -125px;
  top: 10px;
  font-size: 14px;
  min-width: 50px;
  /*background-color: #ddd;*/
  color: #777;
  text-align: right;  
  z-index: 3;
}
/*.timeline_wrap ul li.same_time a span.time_span { opacity: 0; visibility: hidden; }*/
.timeline_wrap .panel-group .panel.panel-theme.first span.time_span,
.timeline_wrap ul li.first span.time_span {
  opacity: 1;
  visibility: visible;
}

.panel-group .panel.panel-theme + .panel.panel-theme {
    margin-top: 25px;
}

.timeline_wrap .panel-group .panel.panel-theme.next_day {
  margin-top: 140px;
}
.timeline_wrap .panel-group .panel.panel-theme.next_day .current_date {
  top: -110px;
  left: -105px;
}

.panel-group .panel.panel-theme {
  /*border: 1px solid #e2b567;*/
  /*border: 1px solid #883d3c; */
  border: 0px;
  border-radius: 3px;
}
.panel-group .panel.panel-theme .panel-collapse {
  border: 1px solid #883d3c; 
}
.panel-group .panel-theme .panel-title {
  /*background-color: #e2b567; */
  /*background-color: #f3c575;*/
  background-color: #883d3c;
  /*padding-left: 20px;*/
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.panel-group .panel-theme .panel-title:hover {
  /*background-color: #efc06e;*/
  /*background-color: #e6bb6f;*/
  background-color: #66201f;
}


.panel-group .panel-theme .panel-heading { position: relative; color: #fff; }
/*.panel-group .panel-theme .panel-heading i.success_icon {
  color: #23bf27;
  font-size: 28px;
  position: absolute;
  top: -13px;
  left: -3px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}*/
.panel-group .panel-theme .panel-heading i.success_icon {
  /*color: #28b72b;*/
  color: #43d046;
  font-size: 2.8rem;
  position: absolute;
  top: 11px;
  right: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.6s cubic-bezier(1,-0.52, 0.07, 1.39);
  -o-transition: all 0.6s cubic-bezier(1,-0.52, 0.07, 1.39);
  transition: all 0.6s cubic-bezier(1,-0.52, 0.07, 1.39);
}

.panel-group .panel-theme .panel-heading.complete i.success_icon {
  -webkit-transform: scale(1.0);
  -ms-transform: scale(1.0);
  transform: scale(1.0);
  opacity: 1;
}

/*.panel-group .panel-theme .panel-title i.control_icon {
  float: none;
  position: absolute;
  right: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}*/
.panel-group .panel-theme .panel-title i.control_icon {
  float: none;
  position: absolute;
  left: 5px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.panel-group .panel-theme .panel-title i.control_icon.opened {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*.panel-group .panel-theme .panel-title i.control_icon.closed {
  transform: rotate(0deg);
}*/

/*.panel-group .panel.panel-theme .panel-heading a {
  padding: 11px 15px;
}*/
.panel-group .panel.panel-theme .panel-heading a {
  padding: 11px 15px 11px 30px;
}

.package_card {
  display: block;
  min-height: 100px;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  position: relative;
  /*box-shadow: 0 1px 10px rgba(0,0,0,0.2);*/
  border: 2px solid #e0c699;
  margin-bottom: 10px;
}
.package_card.active {
  border-color: #66201f;
  background-color: #fff7e7;
}
.package_card a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0 5px;
  text-decoration: none;
}
.package_card h6 {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 8px;
  line-height: 1.4;

} 
.package_card .menu_price_tag {
    position: relative;
    /*font-size: 14px;*/
    /*padding: 1px 6px;*/
    /*border-radius: 1px;*/
    bottom: auto;
    top: auto;
    right: 0;
    left: 0;
    /*width: 120px;*/
    margin: auto;
}

.package_card .menu_pkg_info_wrap .menu_pkg_details {
  padding: 0;
}
.package_card .menu_pkg_info_wrap .menu_pkg_details table.table tbody tr td:nth-child(1) {
  width: 120px;
}
.package_card .menu_pkg_info_wrap .menu_pkg_details table.table tbody tr td:nth-child(2) {
  width: 50%;
}

/** Bills Tab **/
.bills_summary_wrap {
  padding: 15px 0 25px;
  text-align: center;
  border-bottom: 1px dashed #d2ab67;
  margin-bottom: 25px;
}
.bills_summary_wrap h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #883d3c;
  text-decoration: underline; 
}
.bills_summary_wrap table {
  width: 70%;
  min-width: 600px;
  margin: auto;
}
.bills_summary_wrap table thead tr th {
  padding: 8px 0;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}
.bills_summary_wrap table tbody tr td {
  font-size: 20px;
  font-weight: 600;
  
  padding: 10px;
  width: 33.33%;
  border: 1px solid #ddd;
}
.bills_summary_wrap table tbody tr td:nth-child(1) {
  background-color: #ffeede;
  /*border: 1px solid #ffc68f;*/
  border-color: #ffc68f;
}
.bills_summary_wrap table tbody tr td:nth-child(2) {
  background-color: #ddffde;
  /*border: 1px solid #80f584;*/
  border-color: #80f584;
}
.bills_summary_wrap table tbody tr td:nth-child(3) {
  background-color: #fff6da; /*ffebea*/
  /*border: 1px solid #efd279;*/
  border-color: #efd279;
}

/** Downloads Tab **/
.downloads_tab_wrap .btn:not(.btn-link):not(.btn-circle) i {font-size: 16px; top:auto;}
.downloads_tab_wrap .download_all {
  padding: 15px;
  background-color: #f2fff3;
  margin-bottom: 20px;
}
.downloads_tab_wrap p {
  font-size: 16px;
  font-weight: 500;
}
.downloads_tab_wrap .download_all .btn:not(.btn-link):not(.btn-circle) { margin-left: 15px; font-size: 15px; }
/*.downloads_tab_wrap .table {
  margin-top: 20px;
}*/
.downloads_tab_wrap .table thead tr th { 
  text-align: center;
  text-transform: uppercase; 
}
.downloads_tab_wrap .table tbody tr td:first-child {
  text-align: center;
  width: 100px;
}
.downloads_tab_wrap .table tbody tr td:last-child {
  text-align: center; 
}

/*** Cart Tab ***/
.cart_table_wrapper {
  padding: 0;  
}
.cart_table_wrapper .cart_table {
  /*min-width: 920px;*/
  width: 100%;
  margin-bottom: 30px;
}
.cart_table_wrapper .cart_table .column-1 {
    width: 75px;
    text-align: center;
}
.cart_table_wrapper .cart_table .column-2 {
    width: 150px;
    text-align: left;
}
.cart_table_wrapper .cart_table .column-3 {
    width: 355px;
    /*padding-right: 30px;*/
}
.cart_table_wrapper .cart_table .column-4 {
    width: 150px;
    text-align: center;
}
.cart_table_wrapper .cart_table .column-5,
.cart_table_wrapper .cart_table .column-9 {
    width: 133px;
    text-align: right;
}
.cart_table_wrapper .cart_table .column-6 {
    width: 133px;
    text-align: center;
}
.cart_table_wrapper .cart_table .column-7,
.cart_table_wrapper .cart_table .column-8 {
    width: 120px;
    text-align: right;
}
.cart_table_wrapper .cart_table th.column-3,
.cart_table_wrapper .cart_table th.column-5 {
    text-align: center;
}

.cart_table_wrapper .cart_table .column-5 span,
.cart_table_wrapper .cart_table .column-9 span {
  display: none;
}

.cart_table_wrapper .cart_table .column-10 {
    text-align: center;
    font-size: 18px !important;
}
.cart_table_wrapper .column-10 > a {
  color: var(--color-secondary);
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.cart_table_wrapper .column-10 > a i { font-size: 20px; }
.cart_table_wrapper .column-10 > a span { display: none;  }
.cart_table_wrapper .column-10 > a:hover {
  color: #66201f;
  text-decoration: none;
}
.cart_table_wrapper .column-4 .form-group {
  margin-bottom: 0;
}

.cart_table_wrapper .cart_table .display_flex .cart_img {
  width: 100px;
  margin-right: 15px;
}
.cart_table_wrapper .cart_table .display_flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.cart_table_wrapper .cart_table .display_flex p {
  /*color: var(--color-primary);*/
  margin-bottom: 0;
  font-size: 15px;
}

.cart_table_wrapper .cart_table tbody > tr,
.cart_table_wrapper .cart_table tfoot > tr {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.cart_table_wrapper .cart_table thead > tr > th,
.cart_table_wrapper .cart_table tbody > tr > td,
.cart_table_wrapper .cart_table tfoot > tr > td {
  /*font-size: 15px;*/
  padding: 10px;
  /*color: #666;*/
  vertical-align: middle;
  text-align: left;
  border-color: #eee;
}
.cart_table_wrapper .cart_table tfoot > tr > td {
  text-align: left;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.cart_table_wrapper .cart_table tfoot > tr > td.column-8,
.cart_table_wrapper .cart_table tfoot > tr > td.column-9 {
  text-align: right;
}
.cart_table_wrapper .cart_table thead > tr > th { 
  /*font-weight: 500; */
  text-align: center !important;
  text-transform: uppercase;
  background-color: #f9f9f9; 
}
.cart_table_wrapper .cart_table tfoot > tr:last-child td {
  background-color: #f2fff3;
}

.cart_table_wrapper .cart_table .form_group { margin: 0 auto; width: 60%; }


/****************/

/*** Form labels ***/

.form-group .form-line .form-label { color: #444 !important; }

/*******************/

.text_capital { text-transform: capitalize !important; }
.text_uppercase { text-transform: uppercase; !important; }


/** Dashboard **/
.info-box .icon img {
  padding-top: 10px;
}
/***************/

/*** venues PAge ***/
.hall-wrapper .card .body {
  padding: 15px 10px;
}
.hall-wrapper .card .body h4 { font-size: 17px; }

  /*** Custom Cards ***/

  .card.main-card .body > .card .body,
  .card.main-card .body > .card .header {
    padding-left: 0;
    padding-right: 0;
  }

  .card.thumb_card {
    display: block;
    min-height: 480px;
  }
  .thumb_card .img_box {
    height: 400px;
    width: 100%;
    overflow: hidden;
  }
  .thumb_card .img_box img {
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: top;
    -o-object-position: top;
    object-position: top;
  }
  .thumb_card .body h4 {
    margin-top: 0;
    margin-bottom: 0px;
  }
  .hall-wrapper .thumb_card .body h4 {
    font-size: 20px;
  }
  .thumb_card .body h4 span { display: block; }

  @media screen and (max-width: 1680px) {
    .card.thumb_card .img_box {
      height: 350px;
    }
    .card.thumb_card {
      min-height: 430px;
    }
  }
  @media screen and (max-width: 1500px) {
    .card.thumb_card .img_box {
      height: 300px;
    }
    .card.thumb_card {
      min-height: 340px;
    }
    .hall-wrapper .thumb_card .body h4 {
      font-size: 18px;
    }
  }
  @media screen and (max-width: 1366px) {
    .card.thumb_card .img_box {
      height: 260px;
    }
    .card.thumb_card {
      min-height: 330px;
    }
    .hall-wrapper .thumb_card .body h4 {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 1199px) {
    .card.thumb_card .img_box {
      height: 300px;
    }
    .card.thumb_card {
      min-height: 380px;
    }
  }
  @media screen and (max-width: 991px) {
    .card.thumb_card .img_box {
      height: 190px;
    }
    .card.thumb_card {
      min-height: 280px;
    }
  }
  @media screen and (max-width: 767px) {
    .card.thumb_card .img_box {
      height: 240px;
    }
    .card.thumb_card {
      min-height: 340px;
    }
    .card.thumb_card .body h4 {
      font-size: 16px;
    }
    
  }
  @media screen and (max-width: 640px) { 
    .venue_thumb_wrap .col-xs-6 {
      width: 100%;
    }
    .card.thumb_card {
      min-height: 0px;
      height: auto;
    }
    .card.thumb_card .img_box {
      height: auto;
    }
    .thumb_card .img_box img { height: auto; }
  }
  /**********************/

/**************************/

/*** Time Slot boxes ***/

.select_opt .slot_box[type="radio"] + label {
  position: relative;
    width: 100%;
}

.select_opt .slot_box[type="radio"]:not(:checked) + label {
    padding-left: 0;
    height: auto;
    min-height: 130px;
    line-height: normal;
    font-size: 14px;
    font-weight: normal;
    /*background-color: #e8c483;*/
    border: 1px solid #d2ab67;
    
}
.select_opt .slot_box[type="radio"] + label:before, 
.select_opt .slot_box[type="radio"] + label:after {
  border: 0px;
    top: 5px;
}
/*.select_opt .slot_box[type="radio"]:not(:checked) + label:before, 
.select_opt .slot_box[type="radio"]:not(:checked) + label:after {
    border: 0px;
    top: 5px;
}*/
/*.select_opt .slot_box[type="radio"]:not(:checked) + label:after {

}*/

.select_opt .slot_box[type="radio"]:not(:checked) + label .title {
  text-align: center;
  display: block;
  background-color: #d2ab67;
  padding: 7px 5px;
  font-size: 15px;
}
.slot_desc {
  display: block;
  padding: 10px 0;
}
.price-span {
  font-size: 15px;
  font-weight: 600;
  padding-top: 5px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
}
.price-span:before {
  content: '\f156';
  font-family: FontAwesome;
}

.select_opt .slot_box[type="radio"]:checked + label {
    padding-left: 0px;
    height: auto;
    min-height: 130px;
    line-height: normal;
    font-size: 14px;
    font-weight: normal;
    border: 1px solid #66201f;
}
.select_opt .slot_box[type="radio"]:checked + label:before {
    border: 2px solid transparent;
}
.select_opt .slot_box[type="radio"]:checked + label:after, 
.select_opt .slot_box[type="radio"].with-gap:checked + label:after {
    background-color: #d2ab67;
    border: 2px solid #d2ab67;
    z-index: 0;
}
.select_opt .slot_box[type="radio"]:checked + label .title {
  background-color: #66201f;
  color: #d2ab67;
  display: block;
  padding: 7px 5px;
  font-size: 15px;
}


.select_opt .slot_box1[type="radio"] + label {
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}

.select_opt .slot_box1[type="radio"] + label:before, 
.select_opt .slot_box1[type="radio"] + label:after {
  border: 0px;
  top: 7px;
  left: 5px;
}

.select_opt .slot_box1[type="radio"]:not(:checked) + label {
    padding-left: 0;
    height: auto;
    /*min-height: 130px;*/
    line-height: normal;
    font-size: 14px;
    font-weight: normal;
    /*background-color: #e8c483;*/
    /*border: 1px solid #d2ab67;*/
    border: 0;    
    border-radius: 10px;
    -webkit-box-shadow: 0px 1px 9px rgba(120, 107, 107, 0.16);
    box-shadow: 0px 1px 9px rgba(120, 107, 107, 0.16);
}
.select_opt .slot_box1[type="radio"] + label .title {
  /*background-color: #ffdba2;*/
  background-color: #fdd99f;
  text-align: center;
  display: block;
  padding: 9px 5px;
  font-size: 15px;
}

.select_opt .slot_box1[type="radio"]:checked + label {
    padding-left: 0px;
    height: auto;
    /*min-height: 130px;*/
    /*overflow: hidden;*/
    border-radius: 10px;
    overflow: hidden;
    line-height: normal;
    font-size: 14px;
    font-weight: normal;
    -webkit-box-shadow: 0px 1px 20px rgba(120, 107, 107, 0.21);
    box-shadow: 0px 1px 20px rgba(120, 107, 107, 0.21);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    /*border: 1px solid #66201f;*/
}
.select_opt .slot_box1[type="radio"]:checked + label:before {
    border: 2px solid transparent;
}
.select_opt .slot_box1[type="radio"]:checked + label:after, 
.select_opt .slot_box1[type="radio"].with-gap:checked + label:after {
    background-color: #66201f;
    border: 2px solid #66201f;
    z-index: 0;
}
.select_opt .slot_box1[type="radio"]:checked + label .title {
  /*background-color: #66201f;*/
  color: #66201f;
  display: block;
  padding: 9px 5px;
  font-size: 15px;
}

.select_opt .slot_box1[type="radio"] + label ul{
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: 22px;
}
.select_opt .slot_box1[type="radio"] + label ul li {
  display: block;
  /*background-color: #ddd;*/
  /*margin-bottom: 5px;*/
  position: relative;
  min-height: 20px;
  clear: both;
  padding: 0px;
}
.select_opt .slot_box1[type="radio"] + label ul li span.from,
.select_opt .slot_box1[type="radio"] + label ul li span.to {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  padding: 2px;
  border-radius: 5px;
  min-width: 65px;
}
.select_opt .slot_box1[type="radio"] + label ul li span.from {
  float: left;
  /*background-color: #ffdba2;*/
  background-color: #fff4e1;
}
.select_opt .slot_box1[type="radio"] + label ul li span.to {
  float: right;
  /*background-color: #ead3d2;*/
  background-color: #f5ebea;
}

.select_opt .slot_box1[type="radio"] + label ul li.date span.from,
.select_opt .slot_box1[type="radio"] + label ul li.date span.to {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select_opt .slot_box1[type="radio"] + label ul li.date span.from {
  border-bottom: 1px solid #ecd7b4;
}
.select_opt .slot_box1[type="radio"] + label ul li.date span.to {
  border-bottom: 1px solid #d8cdcd;
}
.select_opt .slot_box1[type="radio"] + label ul li.time span.from,
.select_opt .slot_box1[type="radio"] + label ul li.time span.to {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 15px;
}

.select_opt .slot_box1[type="radio"] + label ul li span.from span,
.select_opt .slot_box1[type="radio"] + label ul li span.to span {
  display: block;
  font-size: 24px;
  font-weight: 400;
}

/*.select_opt .slot_box1[type="radio"] + label ul li.price { margin-top: 15px; }
.select_opt .slot_box1[type="radio"] + label ul li.price span {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  background-color: #c8ffc4;
  padding: 5px 12px;
  border-radius: 5px;
  display: inline-block;
}
.select_opt .slot_box1[type="radio"] + label ul li.price span:before {
  content: '\f156';
  font-family: FontAwesome;
  font-weight: 400;
  padding-right: 3px;
  position: relative;
  top: 1px;
}*/
.select_opt .slot_box1[type="radio"] + label .price { margin-top: 0px; }
.select_opt .slot_box1[type="radio"] + label .price {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background-color: #befdb9;
  padding: 6px 12px;
  border-radius: 0px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.select_opt .slot_box1[type="radio"] + label .price:before {
  content: '\f156';
  font-family: FontAwesome;
  font-weight: 400;
  padding-right: 3px;
  position: relative;
  top: 1px;
}



/*.select_opt .slot_box[type="radio"]:checked + label:after {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}*/

/*** menu Page ***/

.menu_dish_thumb .menu_head img {
  width: 100%;
}

.menu_opt {
  width: 100%;
  min-height: 50px;
    /*border: 1px solid;*/
}

.menu_opt input[type="checkbox"] {
  display: none;
}
.menu_opt input[type="checkbox"] + label:before,
.menu_opt input[type="radio"] + label:before { display: none; }

.menu_opt .checkbox label,
.menu_opt .radio label {
  padding-left: 40px !important;
  text-align: left;
  display: block;
  width: 100%;
  height: 100% !important;
  padding: 5px 0;
  font-size: 15px !important;
  /*border: 1px solid #ddd;*/
}

.menu_opt span {
  vertical-align: top;
  display: inline-block;
  position: relative;
  text-align: left;
  margin: 0 auto;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu_opt label .select_indicator {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    border: 2px solid #555;
    border-radius: 0;
    height: 26px;
    width: 26px;
    top: 3px;
    left: 5px;
    z-index: 5;
    border-radius: 3px;
    -webkit-transition: all .2s cubic-bezier(0.46, -0.39, 0.39, 1.43);
    -o-transition: all .2s cubic-bezier(0.46, -0.39, 0.39, 1.43);
    transition: all .2s cubic-bezier(0.46, -0.39, 0.39, 1.43);
}
.menu_opt label .select_indicator:before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 0;
    height: 14px;
    width: 14px;
    top: 4px;
    left: 4px;
    border-radius: 3px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    margin: auto;
    -webkit-transition: all .32s cubic-bezier(0.46, -0.39, 0.39, 1.43);
    -o-transition: all .32s cubic-bezier(0.46, -0.39, 0.39, 1.43);
    transition: all .32s cubic-bezier(0.46, -0.39, 0.39, 1.43);
    background-color: #883d3c;
}


.menu_opt strong {
  display: inline-block;
  line-height: 1.1;
}

.menu_opt input[type="radio"]:checked + label:after { display: none; }

.menu_opt input[type="checkbox"]:checked + label,
.menu_opt input[type="radio"]:checked + label {
  color: #883d3c;
}

.menu_opt input[type="checkbox"]:checked + label span.select_indicator,
.menu_opt input[type="radio"]:checked + label span.select_indicator {
  border-color: #883d3c;
}

.menu_opt input[type="checkbox"]:checked + label span.select_indicator:before,
.menu_opt input[type="radio"]:checked + label span.select_indicator:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  
}

.menu_dish_thumb .menu_head {
  min-height: 120px;
  width: 100%;
  /*padding: 15px 10px;*/
  /*background-color: #ccc;*/
  position: relative;
}
.menu_dish_thumb .menu_head:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  top: 0;
  left: 0;
  position: absolute;
  display: block;
}
.menu_dish_thumb .menu_head h3 {
  position: absolute;
  text-transform: capitalize;
  top: 50%;
  display: inline-block;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  font-size: 24px;
  text-align: center;
  color: #c96;
}

/********************/

/*** booking (listings) main page **/

table.table thead tr.bg_red {
  background-color: #66201f !important;
  color: #fff !important;
}

table.table tbody tr.bg_lightgray {
  background-color: #f3f3f3 !important;
}

/**************************/


/** booking question form elements **/
.record_opt {
  width: 100%;
  min-height: 100px;
  background-color: transparent;
  margin-bottom: 10px;
  text-align: center;
}

.record_opt input[type="checkbox"] {
  display: none;
}
.record_opt input[type="checkbox"] + label:before,
.record_opt input[type="radio"] + label:before { display: none; }

.record_opt .checkbox label,
.record_opt .radio label {
  padding-left: 0 !important;
  text-align: center;
  display: block;
  width: 100%;
  height: 100% !important;
  padding: 10px 0;
  font-size: 15px !important;
  border: 1px solid #ddd;
}

.record_opt span {
  display: block;
  width: 62px;
  height: 62px;
  border: 2px solid transparent;
  border-radius: 50%;
  position: relative;
  text-align: center;
  margin: 0 auto 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.record_opt span img {
  max-width: 100%;
  width: 60px;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.record_opt strong {
  display: inline-block;
  /* min-height: 30px; */
  line-height: 1.1;
}
.record_opt input[type="checkbox"]:checked + label,
.record_opt input[type="radio"]:checked + label {
  border-color: #d2ab67;
  color: #d2ab67;
  /*background: #daf2fc;*/
}

.record_opt input[type="radio"]:checked + label:after { display: none; }

.record_opt input[type="checkbox"]:checked + label span img,
.record_opt input[type="radio"]:checked + label span img {
  -webkit-transform: scale(1.05) translateY(-50%);
  -ms-transform: scale(1.05) translateY(-50%);
  transform: scale(1.05) translateY(-50%);
}


.option_circle {
  width: 120px;
  display: inline-block;
  min-height: 100px;
  background-color: transparent;
  margin-bottom: 10px;
  text-align: center;

}

.option_circle input[type="checkbox"] {
  display: none;
}
.option_circle input[type="checkbox"] + label:before,
.option_circle input[type="radio"] + label:before { display: none; }

.option_circle .checkbox label,
.option_circle .radio label {
  padding-left: 0 !important;
  text-align: center;
  display: block;
  width: 100%;
  height: 100% !important;
  padding: 10px 0;
  font-size: 15px !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.option_circle span {
  display: block;
  font-size: 16px; 
  width: 100px;
  height: 100px;
  line-height: 95px;
  border: 1px solid #ddd;
  border-radius: 50%;
  position: relative;
  text-align: center;
  margin: 0 auto 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.option_circle span img { display: inline-block; }

.option_circle strong {
  display: inline-block;
  /* min-height: 30px; */
  line-height: 1.1;
}
.option_circle input[type="checkbox"]:checked + label span,
.option_circle input[type="radio"]:checked + label span {
  border-color: #d2ab67;
  color: #d2ab67;
  /*background: #daf2fc;*/
}

.option_circle input[type="checkbox"]:checked + label,
.option_circle input[type="radio"]:checked + label {
  color: #d2ab67;
}

.option_circle input[type="radio"]:checked + label:after { display: none; }


.option_box {
  width: 100%;
  display: inline-block;
  min-height: 120px;
  background-color: transparent;
  margin-bottom: 10px;
  text-align: center;
}

.option_box input[type="checkbox"] {
  display: none;
}
.option_box input[type="checkbox"] + label:before,
.option_box input[type="radio"] + label:before { display: none; }

.option_box .checkbox label,
.option_box .radio label {
  padding-left: 0 !important;
  text-align: center;
  display: block;
  width: 100%;
  height: 120px !important;
  padding: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  font-size: 16px !important;
  font-weight: 600 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.option_box span.price_tag {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #a3e05d;
  color: #666;
  /*font-size: 15px; */
  padding: 4px 8px;
  /*border: 1px solid #666;*/
  border-radius: 0%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*.option_box span img { display: inline-block; }*/

.option_box strong {
  /*display: inline-block;*/
  /* min-height: 30px; */
  /*line-height: 1.1;*/
}
.option_box input[type="checkbox"]:checked + label,
.option_box input[type="radio"]:checked + label {
  border-color: #d2ab67;
  color: #d2ab67;
  /*background: #daf2fc;*/
}

/*.option_box input[type="checkbox"]:checked + label,
.option_box input[type="radio"]:checked + label {
  color: #d2ab67;
}*/

.option_box input[type="radio"]:checked + label:after { display: none; }

.package_card1 {
  display: block;
  /*min-height: 100px;*/
  padding: 0px;
  text-align: center;
  /*border-radius: 6px;*/
  position: relative;
  /*box-shadow: 0 1px 10px rgba(0,0,0,0.2);*/
  /*border: 2px solid #e0c699;*/
  margin-bottom: 0px;
}

.package_card1 .radio,
.package_card1 .checkbox { margin-top: 0; margin-bottom: 0; }

.package_card1 input[type="checkbox"],
.package_card1 input[type="radio"] {
  display: none;
}
.package_card1 input[type="checkbox"] + label:before,
.package_card1 input[type="radio"] + label:before { display: none; }

.package_card1 .checkbox label,
.package_card1 .radio label {
  padding-left: 12px !important;
  text-align: center;
  display: block;
  width: 100%;
  height: 120px !important;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.package_card1 input[type="checkbox"]:checked + label,
.package_card1 input[type="radio"]:checked + label {
  border-color: #d2ab67;
  color: #d2ab67;
  background: #fffcf6;
  /*background: #daf2fc;*/
}
.package_card1 input[type="radio"]:checked + label:after { display: none; }

.package_card1 .menu_price_tag {
    position: absolute;
    font-size: 16px;
    line-height: 20px;
    padding: 1px 6px;
    border-radius: 1px;
    bottom: 10px;
    top: auto;
    right: 0;
    left: 0;
    width: 120px;
    margin: auto;
}


/** Add to cart question wrap **/
.que-cart-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}
.que-cart-wrap .que-cart-item-price {
  display: inline-block;
  margin-right: 20px;
  font-size: 17px;
}
.que-cart-wrap .form-group {
  width: 100px;
  margin-right: 20px;
  margin-bottom: 0;
}
.que-cart-wrap button.btn { margin-top: 0; }


/** Media Element **/
.custom_media.media { margin-bottom: 0; }
.custom_media .media-left {
  min-width: 110px;
}
.custom_media .label {
  padding: 0.6em 0.6em;
  font-size: 90%;
  display: inline-block;
  color: #d2ab67;
}

.media_small {
  width: 350px;
}


/** Slick SLider CSS **/
.slick-prev {
    left: -10%;
}
.slick-next {
    right: -10%;
}
.slick-prev, .slick-next, .slick-prev:before, .slick-next:before {
  color: #d2ab6d;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  color: #da291a;
}


/** buttons styles **/

.custom_btn_wrap { text-align: center; }

.custom_btn_wrap .btn {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.btn-big {
  padding: 15px 30px;
}

.custom-btn.btn:not(.btn-link):not(.btn-circle) i {
    font-size: 14px;
    position: relative;
    top: 3px;
}
.custom-btn.btn:not(.btn-link):not(.btn-circle) {
  border: 1px solid #fff;
}


/** Card Styles **/

.event_title_card {
  background: #d1ab67 url('../images/lagna-event-title-bg.png') top right no-repeat !important;
}

/** Circle Styles **/

.circle {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  overflow: hidden;
  text-align: center;
}

.circle-70 {
  width: 70px;
  height: 70px;
}
.circle-80 {
  width: 80px;
  height: 80px;
}
.circle-90 {
  width: 90px;
  height: 90px;
}
.circle-100 {
  width: 100px;
  height: 100px;
}
.circle-110 {
  width: 110px;
  height: 110px;
}
.circle-120 {
  width: 120px;
  height: 120px;
}


/** Progress Bar **/

.progress.custom_progress { height: 18px; }

.custom_progress .progress-bar { font-size: 12px; font-weight: 600; }
.progress.custom_progress .progress-bar {
  line-height: 18px;

}


/** Page Under Construction **/
#error_page {
  /*background-color: #333;*/
  height: 60vh;
  position: relative;
}

.err_logo {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 30px;
  margin: auto;
}

#error_page .error_cont { 
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

#error_page .error_cont h1{
  margin: 2rem 0px;
  font-size: 6rem;
  font-weight: 500;
  color: #666;
  /*text-shadow: 1px 1px 3px rgba(0,0,0,0.9);*/
}

#error_page .error_cont p {
  font-size: 1.5rem;
  color: #999;
  margin-bottom: 2.5rem;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.9);*/
} 
.error_symbol i {
  font-size: 7rem;
  color: #cc9966;
  -webkit-animation: err_symbol_anim 1.8s infinite cubic-bezier(0.43,-0.3, 0.59, 1.51);
  animation: err_symbol_anim 1.8s infinite cubic-bezier(0.43,-0.3, 0.59, 1.51);
}

@-webkit-keyframes err_symbol_anim {
  0%{
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100%{
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);      
  }
}
@keyframes err_symbol_anim {
  0%{
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100%{
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);      
  }
}

#error_page .error_cont .home_btn {
  display: inline-block;
  text-decoration: none;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  background-color: #999;
  border-radius: 3rem;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.6);
  box-shadow: 0 1px 1px rgba(0,0,0,0.6);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-shadow: 1px 1px 1px rgba(250,250,250,0.7);          
}
#error_page .error_cont .home_btn:hover {
  background-color: #fe6613;
  color: #fff;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

@media screen and (max-width:767px) {
  .error_symbol i { font-size: 4rem; }
  #error_page .error_cont h1 {
      margin: 1rem 0px;
      font-size: 5rem;
  }
  #error_page .error_cont { padding-top: 1.5rem; }
}


/*** Menu Thumbnail Card modal ***/
.btn.modal_close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    background-color: rgba(0,0,0,0.6);
    text-align: center;
    top: 0;
    /*line-height: 36px;*/
    z-index: 1;
  }
  .btn.modal_close i {
    font-size: 18px;
    color: #fff;
    line-height: 1;
  }
  .btn.modal_close.btn_link {
    background-color: transparent;
    color: #333;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  .btn.modal_close.btn_link i {
    color: inherit;
  }

#menu_package_card .modal-body {
    padding: 0;
    padding-bottom: 10px;
    color: #333;
  }
  #menu_package_card .modal-footer { border-top: 1px solid #ddd; }
  


  #menu_package_card .modal-dialog { width: 420px; }
  
  .menu_pkg_info_wrap {
    padding: 0px;
    /*border: 1px solid #333;*/
    display: block;
    width: 100%;
  }
  .pkg_image {
    min-height: 200px;
    width: 100%;
    display: inline-block;
    position: relative;
    background-color: #ddd;
    background-size: cover !important;
  }
  .pkg_image .menu_title {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    width: 250px;
    background-color: rgba(0,0,0,0.8);
    padding: 10px;
    margin: 0 auto 10px auto;
    display: inline-block;
    left: 0;
    right: 0;
  }
  .menu_pkg_info_wrap .menu_pkg_details {
    display: block;
    width: 100%;
    padding: 15px 15px 0;
    text-align: left;
  }
  .menu_pkg_info_wrap .menu_pkg_details h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #883d3c;
    line-height: 1.35;
  }
  .menu_pkg_info_wrap .menu_pkg_details table.table { border: 0px; }
  .menu_pkg_info_wrap .menu_pkg_details table.table tbody tr {
    border-bottom: 1px dashed #ddd;
  }
  /*.book_inf_wrap .menu_pkg_details table.table { width: 280px; }*/
  .menu_pkg_info_wrap .menu_pkg_details table.table tbody tr td {
    padding: 8px;
    border: 0px;
    font-size: 14px;
    font-weight: 600;
    /*color: #333;*/
  }
  .menu_pkg_info_wrap .menu_pkg_details table.table tbody tr td:nth-child(1) {
    vertical-align: top;
    /*width: 60px;*/
    /*background-color: #f9f9f9;*/
  }
  .menu_pkg_info_wrap .menu_pkg_details table.table tbody tr td:nth-child(1):before {
    content:'\f105';
    /*width: 8px;
    height: 8px;
    background-color: #999;*/
    /*color: #333;*/
    font-size: 15px;
    border-radius: 50%;
    position: relative;
    margin-right: 8px;
    display: inline-block;
    font-family: FontAwesome;

  }
  .menu_pkg_info_wrap .menu_pkg_details table.table tbody tr td:nth-child(2) {
    width: 100px;
    text-align: center;
    background-color: #fff4d2;
    font-weight: 400;
    text-align: left;
  }
  .price_wrap { position: relative; text-align: center; }

  #menu_package_card .modal-body .menu_price_tag { position: static; margin: 0 auto 10px; }


/***************************/

/** Booking Calendar **/

/** Genaral listing style with Title **/

.g_listings {
  display: block;
  width: 100%;
}

.g_listings .title {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  padding: 5px 0;
  text-align: left;
  padding-left: 15px;
  margin-bottom: 15px;
}
.g_listings .title:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 9px;
  border-radius: 50%;
  display: inline-block;
  background-color: #666;
}
.g_listings .title.col-theme-pink:before { background-color: #c11ada; }


.g_listings ul li {
  font-size: 12px;
  color: #666;
  text-align: left;
  margin-bottom: 12px;
}
.g_listings ul li strong { display: block; }

/*** Booking Calendar ***/

  .event_notation {
    display: block;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  .event_notation ul { margin-bottom: 0; }
  .event_notation ul li {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    background-color: #ddd;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 0px 10px 0px 0;
    margin-bottom: 10px;
  }
  .event_notation ul li.no_ev { background-color: #fffbed; border-color: #ffefbe; }
  .event_notation ul li.ev1 { background-color: #ffe28a; border-color: #ffc107; }
  .event_notation ul li.ev2 { background-color: #c1f3a7; border-color: #7be247; }
  .event_notation ul li.ev3 { background-color: #82d8ff; border-color: #03a9f4; }
  .event_notation ul li.ev4 { background-color: #ffbdb6; border-color: #f75d4f; }

  .event_notation ul li.booked { background-color: #999; border-color: #555; }

  .event_notation ul li.not_booked { background-color: #eee; border-color: #ccc; }

  .event_notation ul li span.notation {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 6px;
    vertical-align: text-top;
  }
  /** No Event marker color (Light-Skin) **/
  .event_notation ul li span.notation.no_ev {
    background-color: #fff3cf;
  }
  /** Lagna Event marker color (Golden-Yellow) **/
  .event_notation ul li span.notation.ev1 {
    background-color: #ffc107;
  }
  /** Munj Event marker color (Light-Green) **/
  .event_notation ul li span.notation.ev2 {
    background-color: #7be247;
  }
  /** Birthday Event marker color (Sky-blue)  **/
  .event_notation ul li span.notation.ev3 {
    background-color: #03a9f4;
  }
  /** Dohale Event marker color (Light-Red) **/
  .event_notation ul li span.notation.ev4 {
    background-color: #f75d4f;
  }
  /** Booked marker color (Light-Red) **/
  .event_notation ul li span.notation.booked {
    background-color: #666;
  }
  /** Non Booked marker color (Light-Red) **/
  .event_notation ul li span.notation.not_booked {
    background-color: #ccc;
  }
    
  #booking-calendar .fc-button-primary {
    color: #fff;
    background-color: #4d5c6b;
    border-color: #384048;
    border-radius: 1px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  #booking-calendar .fc-button-primary .fc-icon { font-size: 1.15em; }
  #booking-calendar .fc-button-primary:hover,
  #booking-calendar .fc-button-primary:active {
    color: #fff;
    background-color: #485461;
    border-color: #384048;
  }
  #booking-calendar .fc-button-primary:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  #booking-calendar .fc-toolbar .fc-center h2 { 
    display: inline-block; 
    padding-left: 10px; 
    padding-right: 10px; 
    vertical-align: middle; 
  }
  #booking-calendar .fc-head-container.fc-widget-header table thead tr th {
    padding: 10px;
    background-color: #4d5c6b;
    color: #fff;
  }
  #booking-calendar .fc-day-number { font-size: 16px; }

  #booking-calendar  .fc-content-skeleton table tbody { position: relative; }
  #booking-calendar .fc-content-skeleton table tbody:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 16px;
    bottom: -24px;
    /*background-color: #ffebb0;*/
    background-color: #fff3cf;
    z-index: -1;
    display: none;
  }
  
  #booking-calendar .fc-content-skeleton table tbody tr { position: relative; }
  #booking-calendar .fc-content-skeleton table tbody tr td{position: relative;}
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event {
    /*position: absolute; */
    /*top:0;*/
    /*top:10px; */
    /*width:100%; */
    margin:0;
    color: #fff !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 
    border: none;
    border-radius: 0px;
    font-weight: normal;
  }
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event .fc-content {
    height: 25px;
    vertical-align: middle;
    margin-bottom: 2px;
  }
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.fc-time-grid-event .fc-content { height:auto; }

  #booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event .fc-time { 
    font-weight: normal;
    vertical-align: top; 
    /*background-color: #999;*/
    height: 25px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 4px;
    padding-left: 1px;
    padding-right: 2px; 
    position: relative;
  }
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event .fc-time:before {
    content: '\f042';
    font-family: FontAwesome;
    font-size: 16px;
    color: #333;
    padding-left: 2px;
    display: inline-block;
    /* vertical-align: top; */
    position: relative;
    top: 1px;
    line-height: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.morning_half .fc-time:before {
    content: '\f042';
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evening_half .fc-time:before {
    content: '\f042';
  }
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.full_day .fc-time:before {
    content: '\f111';
  }
  
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-1 .fc-time {
    background-color: #ffe28a;
    color: #333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-1 .fc-time:before {
    color: #ffc107;
  }*/
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-2 .fc-time {
    background-color: #c1f3a7;
    color: #333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-2 .fc-time:before {
    color: #7be247;
  }*/
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-3 .fc-time {
    background-color: #82d8ff;
    color: #333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-3 .fc-time:before {
    color: #03a9f4;
  }*/
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-4 .fc-time {
    background-color: #ffd65a;
    color: #333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-4 .fc-time:before {
    color: #333;
  }*/
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-5 .fc-time {
    background-color: #ffbdb6;
    color: #333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-5 .fc-time:before {
    color: #f75d4f;
  }*/
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-6 .fc-time {
    background-color: #f5b8f3;
    color:#333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-6 .fc-time:before {
    color: #f403ed;
  }*/
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-7 .fc-time {
    background-color: #d5bfe0;
    color:#333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-7 .fc-time:before {
    color: #944cb9;
  }*/
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-8 .fc-time {
    background-color: #ffe6c0;
    color:#333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-8 .fc-time:before {
    color: #ffa013;
  }*/
  #booking-calendar .fc-content-skeleton table tbody tr td .fc-event.evt-9 .fc-time {
    background-color: #efcbcb;
    color: #333;
  }
  /*#booking-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event.evt-9 .fc-time:before {
    color: #66201f;
  }*/

  #booking-calendar .fc-content .fc-title { 
    opacity: 1; 
    height: 25px; 
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 4px; 
    vertical-align: top;
  }
  
  .popover.custom_popover.ev1 {
    background-color: #fff2cc;
  }

  .popover.custom_popover.ev2 {
    background-color: #d2ffbb;
  }

  .popover.custom_popover.ev3 {
    background-color: #9ee1ff;
  }

  .popover.custom_popover.ev4 {
    background-color: #ffdad6;
  }

  .popover.right > .arrow {
    border-right-color: rgba(0,0,0,0.2);
  }
  .popover.left > .arrow {
    border-left-color: rgba(0,0,0,0.2);
  }
  .popover.top > .arrow {
    border-top-color: rgba(0,0,0,0.2);
  }
  .popover.bottom > .arrow {
    border-bottom-color: rgba(0,0,0,0.2);
  }
  /** Event 1 **/
  .popover.custom_popover.ev1.right > .arrow:after {
    border-right-color: #ffe189; 
  }
  .popover.custom_popover.ev1.left > .arrow:after {
    border-left-color: #ffe189; 
  }
  .popover.custom_popover.ev1.top > .arrow:after {
    border-top-color: #ffe189; 
  }
  .popover.custom_popover.ev1.bottom > .arrow:after {
    border-bottom-color: #ffe189; 
  }
  
  /** Event 2 **/
  .popover.custom_popover.ev2.right > .arrow:after {
    border-right-color: #d2ffbb; 
  }
  .popover.custom_popover.ev2.left > .arrow:after {
    border-left-color: #d2ffbb; 
  }
  .popover.custom_popover.ev2.top > .arrow:after {
    border-top-color: #d2ffbb; 
  }
  .popover.custom_popover.ev2.bottom > .arrow:after {
    border-bottom-color: #d2ffbb; 
  }

  /** Event 3 **/
  .popover.custom_popover.ev3.right > .arrow:after {
    border-right-color: #9ee1ff; 
  }
  .popover.custom_popover.ev3.left > .arrow:after {
    border-left-color: #9ee1ff; 
  }
  .popover.custom_popover.ev3.top > .arrow:after {
    border-top-color: #9ee1ff; 
  }
  .popover.custom_popover.ev3.bottom > .arrow:after {
    border-bottom-color: #9ee1ff; 
  }

  /** Event 4 **/
  .popover.custom_popover.ev4.right > .arrow:after {
    border-right-color: #ffdad6; 
  }
  .popover.custom_popover.ev4.left > .arrow:after {
    border-left-color: #ffdad6; 
  }
  .popover.custom_popover.ev4.top > .arrow:after {
    border-top-color: #ffdad6; 
  }
  .popover.custom_popover.ev4.bottom > .arrow:after {
    border-bottom-color: #ffdad6; 
  }
  
  .popover.custom_popover.ev1 .popover-title {
    background-color: #fde7a6;
    border-bottom: 1px solid #ffe189;
  }
  .popover.custom_popover.ev2 .popover-title {
    background-color: #b1ff89;
    border-bottom: 1px solid #a0f575;
  }
  .popover.custom_popover.ev3 .popover-title {
    background-color: #78d5ff;
    border-bottom: 1px solid #6dcffb;
  }
  .popover.custom_popover.ev4 .popover-title {
    background-color: #ffb1aa;
    border-bottom: 1px solid #ffa29a;
  }
  .popover.custom_popover .popover-title {
    font-size: 13px;
    color: #444;
    padding: 5px 6px;
    text-transform: capitalize;
  }
  .popover.custom_popover .popover-content {
    font-size: 12px;
    color: #444;
    padding: 8px 6px;
  }

  .popover.custom_popover .popover-content ul {
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }
  .popover.custom_popover .popover-content ul li { display: block; margin-bottom: 5px; }
  .popover.custom_popover .popover-content ul li:last-child { margin-bottom: 0; }

  /*** Booking Info Modal ***/

  #bookingInfoModal .modal-body {
    padding: 0;
    color: #333;
  }

  #bookingInfoModal .modal-dialog { width: 420px; }
  #bookingInfoModal .modal-body iframe {
    min-height: 600px;
    border: 0px;
  }
  #bookingInfoModal .modal-body iframe html::-webkit-scrollbar {
    /*width: 1em;*/
    display: none !important;
  }
  #bookingInfoModal .modal-body iframe html::scrollbar {
    /*width: 1em;*/
    display: none !important;
  }
  /*#bookingInfoModal .modal-body iframe > html > body {
    background-color:transparent !important;
  }*/
  
  .book_inf_wrap {
    padding: 0px;
    /*border: 1px solid #333;*/
    display: block;
    width: 100%;
  }
  .venue_details {
    min-height: 200px;
    width: 100%;
    display: inline-block;
    position: relative;
    background-color: #ddd;
    background-size: cover !important;
  }
  .venue_details .venue_title {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    width: 250px;
    background-color: rgba(0,0,0,0.8);
    padding: 10px;
    margin: 0 auto 10px auto;
    display: inline-block;
    left: 0;
    right: 0;
  }
  .book_inf_wrap .event_details_wrap {
    display: block;
    width: 100%;
    padding: 20px 15px;
    text-align: left;
  }
  .book_inf_wrap .event_details_wrap .event_title {
    font-size: 22px;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .book_inf_wrap .event_details_wrap h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .book_inf_wrap .event_details_wrap table.table { width: 280px; }
  .book_inf_wrap .event_details_wrap table.table tbody tr td {
    padding: 5px 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  .book_inf_wrap .event_details_wrap table.table tbody tr td:nth-child(1) {
    vertical-align: middle;
    width: 60px;
    background-color: #eee;
  }
  .book_inf_wrap .event_details_wrap table.table tbody tr td:nth-child(2) {
    width: 130px;
  }
  .book_inf_wrap .event_details_wrap table.table tbody tr td:nth-child(2) img,
  .book_inf_wrap .event_details_wrap table.table tbody tr td:nth-child(3) img {
    width: 18px;
    margin-right: 2px;
    display: inline-block;
    vertical-align: top;
  }
  .book_inf_wrap .event_details_wrap table.table tbody tr td:nth-child(3) {
    width: 90px;
  }

  .event_date_time_wrap {
    position: relative;
    padding: 0px;
    min-height: 35px;
  }
  .event_date_time_wrap .title {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    position: relative;
    /*top: 1px;*/
    /* color: black; */
    background-color: #ddd;
    padding: 3px 5px;
    min-width: 50px;
  }
  .e_date, .e_time {
    /*position: absolute;*/
    display: inline-block;
    min-width: 120px;
    /*border: 1px solid #ddd;*/
    padding: 3px 5px;
    text-align: left;
    vertical-align: top;
  }
  .e_date { left: 0; border-right: 1px solid #999;  }
  /*.e_time { right: 0; }*/
  .e_date img, .e_time img {
    width: 18px;
    margin-right: 2px;
    display: inline-block;
    vertical-align: middle;
  }
  .e_date span, .e_time span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  .payment_status {
    display: block;
    padding-top: 0px;
  }
  .pay_status {
    position: relative;
    display: inline-block;
    min-width: 250px;
    /*padding-left: 20px;*/
    padding: 3px;
    margin-bottom: 3px;
    border-radius: 3px;
  }
  .pay_status p { margin-bottom: 0; }
  .pay_status:after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
  }
  .pay_status.complete:after {
    background-color: #2b982b;
  }
  .pay_status.pending:after {
    background-color: #ff9600;
  }
  .pay_status.complete {
    border: 1px solid #2b982b;
    background-color: #7dec7d;
  }
  .pay_status.pending {
    border: 1px solid #ff9600;
    background-color: #ffcb80;
  }

  .fc-widget-content .fc-scroller::-webkit-scrollbar {
    display: none;
  }

  /************************/




  #booking-calendar2  .fc-content-skeleton table tbody { position: relative; }
  #booking-calendar2 .fc-content-skeleton table tbody:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 16px;
    bottom: -24px;
    /*background-color: #ffebb0;*/
    background-color: #ccc;
    z-index: -1;
  }
  
  #booking-calendar2 .fc-content-skeleton table tbody tr { position: relative; }
  #booking-calendar2 .fc-content-skeleton table tbody tr td{position: relative;}
  #booking-calendar2 .fc-content-skeleton table tbody tr td .fc-event {
    position: absolute; 
    /*top:0;*/
    top:10px; 
    width:100%; 
    margin:0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 
    border: none;
    border-radius: 2px;
    font-weight: normal;
  }
  #booking-calendar2 .fc-content-skeleton table tbody tr td .fc-day-grid-event .fc-time { font-weight: normal; }

  #booking-calendar2 .fc-content .fc-title { opacity: 0; }





/** Muhurt Calendar **/


  .muhurt_notation {
    display: block;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  .muhurt_notation ul { margin-bottom: 0; }
  .muhurt_notation ul li {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    background-color: #ddd;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 0px 10px 0px 0;
    margin-bottom: 10px;
  }

  .muhurt_notation ul li.chaturthi { background-color: #fdf3f7; border-color: #ffe1ec; }
  .muhurt_notation ul li.muhurt1 { background-color: #ffebc0; border-color: #fcbb2e; }
  .muhurt_notation ul li.muhurt2 { background-color: #d7d7d7; border-color: #666; }
  .muhurt_notation ul li.muhurt3 { background-color: #ffc1e4; border-color: #f32f9e; }
  .muhurt_notation ul li.muhurt4 { background-color: #b0d6ff; border-color: #1f81ef; }
  .muhurt_notation ul li.muhurt5 { background-color: #ffccc8; border-color: #f75d4f; }
  .muhurt_notation ul li.muhurt6 { background-color: #c8ffab; border-color: #7be247; }
  .muhurt_notation ul li.goraj { background-color: #f5e6ff; border-color: #efd3ff; }

  .muhurt_notation ul li span.notation {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 6px;
    vertical-align: text-top;
  }
  /** Date Vratbandh Muhurt marker color (Light orange) **/
  .muhurt_notation ul li.muhurt1 span.notation {
    background-color: #fcbb2e;
  }
  /** Date Lagna Muhurt marker color (Medium Gray) **/
  .muhurt_notation ul li.muhurt2 span.notation {
    background-color: #666;
  }
  /** Ruikar Lagna Muhurt marker color (Pink) **/
  .muhurt_notation ul li.muhurt3 span.notation{
    background-color: #f32f9e;
  }
  /** Latkar Lagna Muhurt marker color (blue)  **/
  .muhurt_notation ul li.muhurt4 span.notation{
    background-color: #1f81ef;
  }
  /** Kalnirnay Lagna Muhurt marker color (Light-Red) **/
  .muhurt_notation ul li.muhurt5 span.notation {
    background-color: #f75d4f;
  }
  /** Mangala Gaur marker color (Light-green) **/
  .muhurt_notation ul li.muhurt6 span.notation {
    background-color: #7be247;
  }
  /** Goraj Muhurt marker color (Light-purple) **/
  .muhurt_notation ul li.goraj span.notation {
    background-color: #efd3ff;
  }
  /** Chaturthi marker color (Light-pink) **/
  .muhurt_notation ul li.chaturthi span.notation {
    background-color: #ffe1ec;
  }
  
  #muhurt-calendar .fc-button-primary {
    color: #fff;
    background-color: #4d5c6b;
    border-color: #384048;
    border-radius: 1px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  #muhurt-calendar .fc-button-primary .fc-icon { font-size: 1.15em; }
  #muhurt-calendar .fc-button-primary:hover,
  #muhurt-calendar .fc-button-primary:active {
    color: #fff;
    background-color: #485461;
    border-color: #384048;
  }
  #muhurt-calendar .fc-button-primary:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  #muhurt-calendar .fc-toolbar .fc-center h2 { 
    display: inline-block; 
    padding-left: 10px; 
    padding-right: 10px; 
    vertical-align: middle; 
  }

  #muhurt-calendar .fc-head-container.fc-widget-header table thead tr th {
    padding: 10px;
    background-color: #4d5c6b;
    color: #fff;
  }
  #muhurt-calendar .fc-day-number { font-size: 16px; }

  #muhurt-calendar .fc-event-container a.fc-event {
    line-height: 1 !important;
    margin: 0 2px 1px;
    height: 16px;
  }
  #muhurt-calendar .fc-event-container a.fc-event .fc-content { height: 20px; text-align: center; }
  #muhurt-calendar .fc-event-container a.fc-event .fc-title { vertical-align: top; }
  #muhurt-calendar .fc-content-skeleton table tbody tr td .fc-day-grid-event .fc-time { display: none; }

  .ev_marker_wrap {
    display: inline-block;
    position: relative;
    height: 16px;
  }
  .ev_marker {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
  }  

  /** Date Vratbandh Muhurt Event marker color (light orange) **/
  .ev_marker_wrap.muhurt1 .ev_marker {
    background-color: #fcbb2e;
    border-color: #f3b227;
  }
  /** Date Lagna Muhurt marker color (Medium Gray) **/
  .ev_marker_wrap.muhurt2 .ev_marker {
    background-color: #666;
    border-color: #555;
  }
  /** Ruikar Lagna Muhurt marker color (Pink) **/
  .ev_marker_wrap.muhurt3 .ev_marker {
    background-color: #f32f9e;
    border-color: #e72b95;
  }
  /** Latkar Lagna Muhurt Event marker color (blue)  **/
  .ev_marker_wrap.muhurt4 .ev_marker {
    background-color: #1f81ef;
    border-color: #1778e4;
  }
  /** Kalnirnay Lagna Muhurt Event marker color (Light-Red) **/
  .ev_marker_wrap.muhurt5 .ev_marker {
    background-color: #f75d4f;
    border-color: #e95446;
  }
  /** Mangala Gaur marker color (Light-Green) **/
  .ev_marker_wrap.muhurt6 .ev_marker {
    background-color: #7be247;
    border-color: #6dd13a;
  }

  /** Chaturthi Highlight color **/
  .fc-day-grid .fc-day.chaturthi {
    background-color: #ffe1ec;
  }
  
  /** Goraj Muhurt Highlight color **/
  .fc-day-grid .fc-day.goraj_muhurt {
    background-color: #efd3ff;
  }


/** Add New Bill Modal **/

#add_new_bill .modal-footer { 
  text-align: left;
  padding: 15px 25px; 
}

/** Catering **/

.custom_size {
  padding: 30px;
  background-color: #ccc;
}

.menu_title_wrap {
  display: block;
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  position: relative;
}
.modal .menu_title_wrap {
  border: 1px solid #f1d275;
  background-color: #fff4d3;
  margin-top: 30px;
  color: #444;
}

.menu_price_tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 20px;
  background-color: #57d043;
  border: 1px solid #45bb32;
  color: #fff;
  text-align: center;
  position: absolute;
  right: 15px;
  top: 18px;
}

.menu_dish_thumb .menu_price_tag {
  position: static;
}
.menu_dish_thumb a:hover,
.menu_dish_thumb a:focus {
  text-decoration: none;
}

.menu_dish {
  position: relative;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background-color: #eee;
  margin: auto;
  padding: 10px;
}

.item {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  overflow: hidden;
}
.item.big_size {
  width: 200px;
  height: 200px;
}
.item.selectable { 
  cursor: pointer; 
  border: 0px solid #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.item.active,
.item.selectable:hover {
  border-width: 5px;
  -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
}

.item:nth-of-type(1) {
  background-color: #8cfc7a;
  top: -webkit-calc(0% + 80px);
  top: calc(0% + 80px);
}

.item:nth-of-type(2) {
  background-color: #f398eb;
  left: -webkit-calc(100% - 80px);
  left: calc(100% - 80px);

}

.item:nth-of-type(3) {
  background-color: #a9b7ff;
  top: -webkit-calc(100% - 80px);
  top: calc(100% - 80px);
}

.item:nth-of-type(4) {
  background-color: #47e2d5;
  left: -webkit-calc(0% + 80px);
  left: calc(0% + 80px);
}

.item:nth-of-type(5) {
  background-color: #02b41f;
  top: -webkit-calc(12% + 80px);
  top: calc(12% + 80px);
  left: -webkit-calc(89% - 80px);
  left: calc(89% - 80px);
}

.item:nth-of-type(6) {
  background-color: #ffeb44;
  top: -webkit-calc(88% - 80px);
  top: calc(88% - 80px);
  left: -webkit-calc(89% - 80px);
  left: calc(89% - 80px);
}

.item:nth-of-type(7) {
  background-color: #ffeb44;
  top: -webkit-calc(88% - 80px);
  top: calc(88% - 80px);
  left: -webkit-calc(11% + 80px);
  left: calc(11% + 80px);
}

.item:nth-of-type(8) {
  background-color: #ffeb44;
  top: -webkit-calc(11% + 80px);
  top: calc(11% + 80px);
  left: -webkit-calc(12% + 80px);
  left: calc(12% + 80px);
}

.item:nth-of-type(9) {
  background-color: #fdd66c;
}

.item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

/*.submenu_list_wrap {
  position: relative;
  background-color: #333;
  border-radius: 6px;
  
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  opacity: 0;
  transition: transform 0.25s ease-in-out, opacity 0.3s ease;
}

.submenu_list_wrap.open {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.submenu_list_wrap .close_btn {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #666;
  color: #333;
  position: absolute;
  right: -10px;
  top: -10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.submenu_list_wrap .close_btn:hover {
  background-color: #cc9966;
  color: #be2018;
}*/

.submenu_list_wrap h5 {
  margin-top: 0;
  padding: 15px 10px;
  margin-bottom: 0;
  color: #ccc;
  border-bottom: 1px solid #666;
}

.submenu_list {
  display: block;
  height: 300px;
  overflow-y: auto;
}

.submenu_list ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.submenu_list ul li {
  display: table;
  border-bottom: 1px solid #666;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  color: #ccc;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.submenu_list ul li:last-child { border-bottom: 0; }


.submenu_list ul li span.subitem_img {
  width: 80px;
  height: auto;
  overflow: hidden;
  text-align: center;
}

.submenu_list ul li span.subitem_img,
.submenu_list ul li span.subitem_name {
  display: table-cell;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.submenu_list ul li span.subitem_img img {
  width: 100%;
  margin: auto;
}

.submenu_list ul li span.subitem_name {
  font-size: 14px;
  text-align: left;
  padding-left: 5px;
}

/*.submenu_list ul li:hover {
  background-color: #292929;
}*/

.submenu_list ul li:hover span.subitem_img{
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.toast {
  visibility: hidden;
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: rgba(0,0,0,0.8);
  color: #eee; 
  text-align: center; 
  border-radius: 30px; 
  padding: 16px; 
  position: fixed; 
  z-index: 1; 
  left: 50%; /* Center a toast */
  bottom: 50px; 
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
.toast.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
  animation: fadein 0.5s, fadeout 0.5s 3.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 50px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 50px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 50px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 50px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}



.submenu_list::-webkit-scrollbar {
    width: 5px;
}
 
.submenu_list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
.submenu_list::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.submenu_list ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.submenu_list ul li {
  display: table;
  border-bottom: 1px solid #ddd;
  width: 100%;
  padding: 5px 0;
}


.submenu_list ul li span.subitem_img {
  width: 60px;
  height: auto;
  overflow: hidden;
  text-align: center;
}

.submenu_list ul li span.subitem_img,
.submenu_list ul li span.subitem_name {
  display: table-cell;
  vertical-align: middle;
}

.submenu_list ul li span.subitem_img img {
  width: 100%;
  margin: auto;
}

.submenu_list ul li span.subitem_name {
  font-size: 14px;
  text-align: left;
  padding-left: 10px;
  padding-right: 5px;
  color: #333;
}

/*** Payment Success Message ***/

.success_message { text-align: center; }

.success_check {
  display: inline-block;
  margin: auto;
  padding: 10px;
  margin-bottom: 40px;
}
/* text Colors */

.col-theme-green {
  color: #43a047 !important;
}


/*** Form Input Placeholders ***/

.form-control::-webkit-input-placeholder {
  color: #444 !important;
}
.form-control::-moz-placeholder { 
  color: #444 !important;
  opacity: 1;
}
.form-control:-ms-input-placeholder { 
  color: #444 !important;
}
.form-control:-moz-placeholder { 
  color: #444 !important;
  opacity: 1;
}

.form-group .form-line.box_control .form-control {
  padding-left: 6px;
  border: 1px solid #ddd;
}

.form-group .bootstrap-select.form-control > .dropdown-toggle {
  padding-left: 0;
  padding-right: 12px;
}

.Note_control {
  display: flex;
  width: 100%;
  align-items: center;
}
.label_box {
  display: flex;
  width: 100px;
  justify-content: flex-start;
  padding: 5px 10px;
  background-color: #eee;
}
.form_control_box {
  width: 100%;
  display: flex;
}

/***************************/

/*** Menu Edit for Breakfast, Tea/Coffee etc. ***/


.short_menu_wrap {
  display: block;
  width: 65%;
  padding: 20px 0px;
  text-align: left;
}
.short_menu_wrap h4 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}
.short_menu_wrap table.table { border: 0px; }
.short_menu_wrap table.table tbody tr,
.short_menu_wrap table.table thead tr {
  border-bottom: 1px dashed #ccc;
  vertical-align: middle;
}
.short_menu_wrap table.table thead tr {
  background-color: #ffebea;
  border-top: 1px dashed #ccc;
}
.short_menu_wrap table.table thead tr th {
    padding: 10px;
    font-size: 15px;
    border-bottom: 0px;
    text-align: center;
}
.short_menu_wrap table.table thead tr th:nth-child(1) { text-align: left; }

.short_menu_wrap table.table tbody tr td {
  padding: 15px 10px;
  border: 0px;
  font-size: 15px;
  /*font-weight: 600;*/
  color: #333;
  vertical-align: middle;
}
.short_menu_wrap table.table tbody tr td .form-group { margin-bottom: 5px; }
.short_menu_wrap table.table tbody tr td:nth-child(1) {
  width: 50%;
  text-align: left;
}
.short_menu_wrap table.table tbody tr td:nth-child(1):before,
.short_menu_wrap table.table tfoot tr td:nth-child(1):before {
  content:'\f105';
  /*width: 8px;
  height: 8px;
  background-color: #999;*/
  color: #333;
  font-size: 15px;
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  display: inline-block;
  font-family: FontAwesome;
}
.short_menu_wrap table.table tbody tr td:nth-child(2) {
  width: 18%;
  text-align: center;
  /*background-color: #e4ffdf;*/
  text-align: right;
}
.short_menu_wrap table.table tfoot tr {
  background-color: #cbffc3;
  border-bottom: 1px dashed #ccc;
}
.short_menu_wrap table.table tfoot tr td { 
  border-top: 0; 
  vertical-align: middle;
  padding: 8px 10px;
  font-weight: 600;
}



/************************************/
}

.ls-closed .bars:after, 
.ls-closed .bars:before {
  left: 230px;
}

/*** Responsive ***/
@media screen and (max-width: 767px)
{
  section.content > .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .card.main-card > .body {
    padding-left: 0;
    padding-right: 0;
  }
  .card.main-card .body > .card .body, 
  .card.main-card .body > .card .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  /** calendar heading **/
  #booking-calendar .fc-toolbar h2 { font-size: 20px; }
}



/*** Snacks meny wrap ***/
.snacks_menu_wrap {
  /*background-color: #f2f2f2;*/
}
.snacks_menu_wrap table thead tr th {
  text-align: center;
  background-color: #c16967;
  color: #fff;
}
.snacks_menu_wrap table thead tr th:nth-child(1) {
  text-align: left;
}
.snacks_menu_wrap table thead tr th:nth-child(2) {
  width: 200px;
}
.snacks_menu_wrap table thead tr th:nth-child(3) {
  width: 200px;
}
.snacks_menu_wrap table tbody tr td:nth-child(1) {
  text-align: left;
  font-weight: 500;
}
.snacks_menu_wrap table tbody tr td {
  font-weight: 600;
  padding: 5px 8px;
}
.snacks_menu_wrap table tbody tr td {
  vertical-align: middle;
}
.snacks_menu_wrap table tbody tr td input.form-control {
  border-radius: 1px;
  box-shadow: none;
}
.snacks_menu_wrap table tbody tr td input.form-control:focus {
  border: 1px solid #66201f;
  box-shadow: none;
}

/*******************/

/** Flash message **/
.flash-message.show {
  top: 0;
}

/** Badge style **/

.custom_badge {
  display: inline-block;
  font-size: 13px;
  color: #666;
  font-weight: 500;
  background-color: #ddd;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.custom_badge.event_badge {
  padding: 0px 10px 0px 0;
  margin-bottom: 0;
}

.event_badge .notation {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 6px;
  vertical-align: text-top;
}

/******************/

/** Info Card **/

.info_card {
  display: inline-block;
  max-width: 300px;
  padding: 5px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f9f9f9;
  color: #333;
}
.info_card b,
.info_card strong { font-weight: 600; }
.info_card.info_card_applicant {
  background-color: #ffebea;
  border-color: #ec9894;
  right: 20px;
  top: 18px;
  text-align: right;
}
.info_card.info_card_applicant div {
  display: block;
  margin-bottom: 1px;
  font-size: 13px;
}
.info_card.info_card_applicant div:first-child {
  /*border-right: 1px solid #ec9894;  */
  font-weight: 600;
  font-size: 14px;
}
.info_card.info_card_applicant div:last-child {
  margin-bottom: 0;
  /*padding-right: 0;*/
}

/***************/

/** time input style **/
.timeinput_wrap {
  position: relative;
  max-width: 220px;
  margin: auto;
}
.timeinput_wrap img.time_icon {
  height: 30px;
  width: auto;
  position: absolute;
  right: 0;
}

/***********/

/** Empty / Blank Page ***/

.empty_page {
  width: 100%;
  min-height: 300px;
  display: block;
  padding: 20px;
  text-align: center;
}
.empty_page img {
  max-width: 100%;
  display: inline-block;
  margin-bottom: 20px;
}
.empty_page div.text_msg {
  font-size: 32px;
  font-weight: 400;
  color: #999;
  text-align: center;
}

/***************/

