/* app css stylesheet */

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 14px;
  margin-left:70px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: red;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: default;
}

.newSlider{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: default;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.newSlider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: limeGreen;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

input:checked + .newSlider {
  background-color: red;
}

input:focus + .newSlider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .newSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  height: 20px;
}

.slider.round:before {
  border-radius: 50%;
}

.newSlider.round {
  border-radius: 34px;
  height: 20px;
}

.newSlider.round:before {
  border-radius: 50%;
}

.strike {
  text-decoration: line-through;
}

.noshowmarked {
  text-decoration: line-through;
  text-decoration-color:#FF999C;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-t-15 {
  margin-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

/* animated check */

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px rgb(100, 189, 99);
  }
}

/* spinner */

spinner .progress {
  margin-top: 15px;
  margin-left: 15px;
}
#reviews spinner .progress {
  margin-top: 30px;
  margin-left: 0px !important;
}

/* beacon */

.beacon{
  position:absolute;
  top: 50%;
  left: 50%;
  height: 3em;
  width: 3em;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.beacon:before{
  position: absolute;
  content: '';
  height: 3em;
  width: 3em;
  left: 0;
  top: 0;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px #f39c12;
  -webkit-animation: active 2s infinite linear;
  animation: active 2s infinite linear;
}

@-webkit-keyframes active{
  0%{
    -webkit-transform:scale(.1);
    opacity:1;
  }
  70%{
    -webkit-transform:scale(2.5);
    opacity:0;
  }
  100%{
    opacity:0;
  }
}

@keyframes active{
  0%{
    transform:scale(.1);
    opacity:1;
  }
  70%{
    transform:scale(2.5);
    opacity:0;
  }
  100%{
    opacity:0;
  }
}

/* table themes */

.table-custom thead tr {
  background-color: #343d46;
  opacity: 0.9 !important;
  /*#4f5b66;*/
}
.table-custom thead tr th, .table-custom thead tr td {
  color: white;
  opacity: 1 !important;
}
.table-custom thead .sorting:after {
  opacity: 1 !important;
}

/* box themes */
.overflow-box {
  overflow: auto;
}

/*ng toast custom alert theme */

.ng-toast .alert-success {
  background-color: #dff0d8 !important;
  color: #3c763d !important;
  border-color: #d6e9c6 !important;
}
.ng-toast .alert-danger {
  color: #a94442 !important;
  background-color: #f2dede !important;
  border-color: #ebccd1 !important;
}

/* theme overrides */

.content-wrapper {
  background-color: #f5f5f5;
  min-height: 768px;
}  

.skin-green .main-header .navbar {
  background-color: #37474f !important;
}

.skin-green .main-header .logo {
  border-color: #222d32;
  background-color: #222d32;
  color: #fff;
  border-bottom: 0 solid transparent;
}

.skin-green .main-header>.logo:hover {
  background-color: #222d32;
}

.navbar-nav>.user-menu>.dropdown-menu>li.user-header>p {
  color: white;
}
.treeview-menu>li>a {
  padding: 5px 5px 5px 25px;
}
.skin-green .sidebar-menu>li.active>a {
  /*border-left-color: #26a69a;*/
  border-left-width: 5px;
}

.control-sidebar-menu .menu-info {
  color: white;
}
.control-sidebar-menu li a {
  cursor: pointer;
}

.main-header .alert-top-bar {
  background-color: #dc3545 !important;
  color: white;
  text-align: center;
  font-weight: bold;
  height: 20px;
}
.alert-top-bar-on {
  padding-top: 70px !important;
}

/* inventory upload */

#inventory-upload form {
  overflow-x: scroll;
}

/* reviews */

#reviews .rating-select {
  background-color: transparent;
  border: none;
  outline: none;
  text-align: left;
  width: 100%;
}

#reviews .rating-select i {
  color: #d5d5d5;
}

#reviews .rating-select:focus {
  border: none;
  outline: none;
}

#reviews .rating-selected i {
  color: goldenrod;
}

#reviews .channel-select {
  display: inline-block;
  text-align: left;
  width: 100%;
}

#reviews .channel-select input {
  margin-right: 5px;
}

#reviews .filter-label {
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  color: #777;
  margin-bottom: 5px;
  margin-right: 5px;
  padding: 3px;
}

#reviews .review-card {
  border: 1px dotted #d5d5d5;
  padding: 5px;
  margin-bottom: 5px;
}

#reviews .review-card .trip-logo {
  width: 100%;
  margin-left: 5px;
}
#reviews .review-card .buzzotel-logo {
  width: 100px;
  margin-left: 5px;
  margin-top: 10px;
}
#reviews .review-card .agoda-logo {
  margin-left: 5px;
  margin-top: 10px;
}
#reviews .review-card .booking-logo {
  margin-left: 5px;
  margin-top: 10px;
  width: 100%;
}
#reviews .review-card .expedia-logo {
  width: 100%;
  margin-left: 5px;
}
#reviews .review-card .goibibo-logo {
  width: 80%;
  margin-left: 5px;
  margin-top: 12px;
}
#reviews .review-card .mmt-logo {
  width: 80%;
  margin-left: 5px;
  margin-top: 12px;
}
#reviews .review-card .hotels-logo {
  width: 80%;
}
#reviews .review-card .tripadvisor-logo {
  width: 80%;
}
#reviews .review-card .holidayiq-logo {
  width: 80%;
  margin-left: 5px;
  margin-top: 10px;
}
#reviews .review-card .mmt_hiq-logo {
  width: 80%;
  margin-left: 5px;
  margin-top: 10px;
}
#reviews .review-heading span {
  min-width: 32px;
}
#reviews .review-heading stars i {
  color: goldenrod;
  font-size: 14px;
}
#reviews .review-heading h4 a,
#reviews .review-heading h4 a:focus,
#reviews .review-heading h4 a:hover {
  color: black;
  text-decoration: none;
}
#reviews .review-heading .review-stars {
  margin-top: 10px;
}
#reviews .active-filters-text {
  margin: 5px 5px 0px 0px;
}
@media (min-width: 768px) {
  #reviews .review-controls-column {
    padding-right: 0px !important;
  }
}

/* booking analytics */
.buzz-columns .col-lg-4 {
  width: 29%;
}

/*my account > billing */
#my-account-billing .due-date {
  color: #dd4b39;
  background-color: white;
  padding: 2px;
  border: 1px dotted #dd4b39;
}

.pay-now, .pay-now:active, .pay-now:focus, .pay-now:hover {
  background-color: white;
  border-style: dotted;
  color: #dd4b39;
  font-size: 14px;
  font-weight: 600;
}

/*modal*/
.modal.pending-payment .modal-dialog {
  border-top: 2px solid #dd4b39;
  margin-top: 10%;
}
.modal.payment-received .modal-dialog {
  border-top: 2px solid green;
  margin-top: 10%;
}

#rates-edit .suggestions-spinner {
  margin-left: 30px;
}

#rates-edit .date-heading tr th {
  vertical-align: middle;
  border-bottom: none !important;
  padding-top: 0px !important;
}

#rates-edit .room-heading tr th {
  vertical-align: middle;
  border-bottom: none !important;
  background-color: #2c3b41;
  color: white;
}
#rates-edit .dyna-heading tr th {
  vertical-align: middle;
  border-bottom: none !important;
  background-color: #2c3b41;
  color: white;
  /*#fff8e1;*/
}
#rates-edit .date-heading tr th {
  vertical-align: middle;
  border-bottom: none !important;
  background-color: #2c3b41;
  color: white;
  /*#fff8e1;*/
}
#rates-edit .date-header {
  margin-bottom: 0px !important;
}
#rates-edit .switchery {
  border: none;
}
#rates-edit .switchery-small {
  height: 16px;
  width: 31px;
  margin-left: 30%;
}
#rates-edit .switchery-small>small {
  height: 16px;
  width: 16px;
}
#rates-edit .input-error {
  border-color: rgba(229, 103, 23, 0.8);
  box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075) inset, 0 0 8px rgba(229, 103, 23, 0.6);
  outline: 0 none;
}
#rates-edit .ng-toast {
  height: auto;
  margin-top: 0px;
  position: relative;
  text-align: left;
}
#rates-edit .ng-toast .alert {
  margin-bottom: 0px;
  padding: 3px 30px 3px 5px;
}

/* accounting report */
#bookings_wrapper {
  overflow: auto;
}
#bookings_wrapper .dataTables_filter {
  display: none;
}

/* competitor pricing */
@media (max-width: 480px) {
  #comp-pricing-dashboard .price-display {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  #comp-pricing-dashboard .price-display {
    font-size: 16px;
  }
}
#comp-pricing-dashboard .price-display i{
  font-size: 12px;
  opacity: 0.8;
}

#configure-account .ota-row {
  border-bottom: 1px dotted #d2d6de;
  padding-bottom: 15px;
}

#configure-products .input-error {
  border-color: rgba(229, 103, 23, 0.8);
  box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075) inset, 0 0 8px rgba(229, 103, 23, 0.6);
  outline: 0 none;
}

#configure-products #add-competitor input[type="text"] {
  width: 40%;
  display: inline;
  padding: 6px;
}

#configure-products #comp-pricing .box-title {
  font-size: 14px;
}

#comp-pricing-dashboard stars i {
  color: goldenrod;
}

#comp-pricing-dashboard tbody tr:first-of-type {
  background-color: white;
}

.img-responsive-50 {
  width: 50%;
  height: auto;
}
.img-responsive-15 {
  width: 15%;
  height: auto;
}

.img-responsive-100 {
  width: 100%;
  height: auto;
}

.dragula-item {
  display: inline;
}
.delete-picture {
  vertical-align: top;
  position: relative;
  left: -3%;
}

.radio-button-picture {
  /*vertical-align: top;*/
  position: relative;
  left: -19%;
  transform: scale(1.5);
}

.radio-button-picture-2 {
  /*vertical-align: top;*/
  position: relative;
  left: 2%;
  transform: scale(1.5);
}

.checkbox-picture {
  vertical-align: top;
  position: relative;
  left: -15%;
}

/* Coupon CSS */
#couponHeader{
  background-color:#37474f !important;
  height: 35px;
  padding-top: 6px;
  margin-top: 0px;
  margin-bottom: 0px;
  color:white
}
#modalClose{
  width: 52px;
}
#modalBody{
  padding-top: 0px;
}
#couponstract{
  border: 5px dotted #bbb;
}
#couponType{
  color:black;
}
#icon-gift{
  font-size:50px;
  align-content: center;
}
.t-a-l{
  text-align: left;
}
#datesselect,#datesselect1{
  background-color: #fff;
}
.bg-active{
  background-color: #1ebea5;
  color: white;
}
.new code {
  padding: 1px 4px;
  background-color: #db4437;
  font-size: 50%;
  color: #fff;
  font-family: raleway,helveticaneue,helvetica neue,Helvetica,Arial,sans-serif;
  border: none;
  position: absolute;
  top: 1px;
  right: 96px;
}
.circle {
  width:60px;
  height:auto;
  border-radius:30px;
  font-size:20px;
  color:#fff;
  line-height:60px;
  text-align:center;
  background:#000;
}
.hotel-background {
  background-color: rgb(245,245,245);
  border-right: 2px solid black;
  padding:2px; 
}

.label-view {
  white-space: normal;
  color: white;
  font-size: 18px;
}

.logo-img {
  width: 70px;
  height: 70px;
}
.mr-20{
  margin-right: 20px;
}
.mt-30{
  margin-top: 30px;
}
.mt-3{
  margin-top: 3px;
}
.w-100{
  width: 100px;
}

.box-size {
  margin-left: 12px;
  width: 49px;
  height: 26px;
}

.borderless td{
  border: none;
}

.td-width {
  width: 200px;
}

.font-adjust {
  font-size: 15px;
  width: 195px;
}

.blank_row
{
    height: 25px !important; /* overwrites any other rules */
    background-color: #DCDCDC;
}

.forecast_tr {
  height: 25px;
}

.forecast_th {
  padding-left: 5px;
  height: 25px !important;
}

.forecast_td {
  padding: 5px;
  text-align: center;
}

/*messages*/

.container {
  border: 2px solid #f8f7f7;;
  border-radius: 5px;
  padding: 2px;
  margin: 3px 0;
}
.chat-heading {
  margin: 0 0 0 5px;
  color: gray;
}
.chat-content {
  margin: 0 0 5px 5px;
}
.chat-time {
  margin:5px 5px 0 0;
}

.be-delete-picture {
  vertical-align: top;
  position: relative;
  left: -1.5%;
}
.be-img-responsive-15 {
  width: 15%;
  height: 160px;
}
.be-img-responsive-30{
  width: 30%;
  height: 160px;

}
.boarder-red{
  border: 2px solid #ffdddd;
}
.amenities {
  display: flex;
  gap: 1rem;
  margin: 1rem;
  flex-wrap: wrap;
}

.amenity-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.amenity-icon {
  height: 20px;
}

/* configure rateplans */
.master {
  padding: 0px !important;
  margin: 5px 10px 0px 2px !important;
  text-align: center;
  width: 35%;
}
.increment {
  padding-right: 0px !important;
}
.increment-plus {
  margin-top: 6px;
  padding-right: 0px !important;
}
.rateplan-configure-reset .modal-dialog {
  margin-top: 15%;
  width: 32%;
}
.increment1 {
  display: inline-block;
  width: 50%;
}


.hide{
  display: none;
}