/*  
*  Pure CSS star rating that works without reversing order
*  of inputs
*  -------------------------------------------------------
*  NOTE: For the styling to work, there needs to be a radio
*        input selected by default. There also needs to be a
*        radio input before the first star, regardless of
*        whether you offer a 'no rating' or 0 stars option
*  
*  This codepen uses FontAwesome icons
*/
#full-stars-example {
  /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
  /* make hover effect work properly in IE */
  /* hide radio inputs */
  /* set icon padding and size */
  /* set default star color */
  /* set color of none icon when unchecked */
  /* if none icon is checked, make it red */
  /* if any input is checked, make its following siblings grey */
  /* make all stars orange on rating group hover */
  /* make hovered input's following siblings grey on hover */
  /* make none icon grey on rating group hover */
  /* make none icon red on hover */
}
#full-stars-example .rating-group {
  display: inline-flex;
}
#full-stars-example .rating__icon {
  pointer-events: none;
}
#full-stars-example .rating__input {
  position: absolute !important;
  left: -9999px !important;
}
#full-stars-example .rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 2rem;
  line-height: 0;
}
#full-stars-example .rating__icon--star {
  color: #000;
}
#full-stars-example .rating__icon--none {
  color: #eee;
}
#full-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
  color: red;
}
#full-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
  color: #ddd;
}
#full-stars-example .rating-group:hover .rating__label .rating__icon--star {
  color: #000;
}
#full-stars-example .rating__input:hover ~ .rating__label .rating__icon--star {
  color: #ddd;
}
#full-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
  color: #eee;
}
#full-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
  color: red;
}

#half-stars-example {
  /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
  /* make hover effect work properly in IE */
  /* hide radio inputs */
  /* set icon padding and size */
  /* add padding and positioning to half star labels */
  /* set default star color */
  /* set color of none icon when unchecked */
  /* if none icon is checked, make it red */
  /* if any input is checked, make its following siblings grey */
  /* make all stars orange on rating group hover */
  /* make hovered input's following siblings grey on hover */
  /* make none icon grey on rating group hover */
  /* make none icon red on hover */
}
#half-stars-example .rating-group {
  display: inline-flex;
}
#half-stars-example .rating__icon {
  pointer-events: none;
}
#half-stars-example .rating__input {
  position: absolute !important;
  left: -9999px !important;
}
#half-stars-example .rating__label {
  cursor: pointer;
  /* if you change the left/right padding, update the margin-right property of .rating__label--half as well. */
  padding: 0 0.1em;
  font-size: 2rem;
}
#half-stars-example .rating__label--half {
  padding-right: 0;
  margin-right: -0.6em;
  z-index: 2;
}
#half-stars-example .rating__icon--star {
  color: orange;
}
#half-stars-example .rating__icon--none {
  color: #eee;
}
#half-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
  color: red;
}
#half-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
  color: #ddd;
}
#half-stars-example .rating-group:hover .rating__label .rating__icon--star,
#half-stars-example .rating-group:hover .rating__label--half .rating__icon--star {
  color: orange;
}
#half-stars-example .rating__input:hover ~ .rating__label .rating__icon--star,
#half-stars-example .rating__input:hover ~ .rating__label--half .rating__icon--star {
  color: #ddd;
}
#half-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
  color: #eee;
}
#half-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
  color: red;
}

#full-stars-example-two {
  /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
  /* make hover effect work properly in IE */
  /* hide radio inputs */
  /* hide 'none' input from screenreaders */
  /* set icon padding and size */
  /* set default star color */
  /* if any input is checked, make its following siblings grey */
  /* make all stars orange on rating group hover */
  /* make hovered input's following siblings grey on hover */
}
#full-stars-example-two .rating-group {
  display: inline-flex;
}
#full-stars-example-two .rating__icon {
  pointer-events: none;
}
#full-stars-example-two .rating__input {
  position: absolute !important;
  left: -9999px !important;
}
#full-stars-example-two .rating__input--none {
  display: none;
}
#full-stars-example-two .rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 2rem;
}
#full-stars-example-two .rating__icon--star {
  color: orange;
}
#full-stars-example-two .rating__input:checked ~ .rating__label .rating__icon--star {
  color: #ddd;
}
#full-stars-example-two .rating-group:hover .rating__label .rating__icon--star {
  color: orange;
}
#full-stars-example-two .rating__input:hover ~ .rating__label .rating__icon--star {
  color: #ddd;
}
div#accordion i.fa.fa-star {

  font-size: 25px;
}
.review-section .card-header a:after {
  position: absolute;
  right: 18px;
  font-family: 'FontAwesome';
  font-size: 25px;
  content: "\f0d7";
}
.review-section .card-header a[aria-expanded="true"]:after {
  position: absolute;
  right: 18px;
  font-family: 'FontAwesome';
  font-size: 25px;
  content: "\f0d7";
  transform: rotate(180deg);
}
.card2 .card-header a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 20px;
  font-size: 23px;
  text-align: left;
}

div#accordion .card {
  border: 1px solid #9d8f8f;
  margin-bottom: 17px;
  border-radius: 15px;
}
div#accordion .card .card-header {
  border: 0;
  background-color: #fff;
  border-radius: 15px;
}
.card2 .card-body {
  color: #000;
  font-size: 20px;
}
.review-section .card-header a[aria-expanded="true"] .date{
  display: none;
}
.btn:focus{
  outline: none;
  box-shadow: unset;
}
.shadow--box input#textInput {
    font-size: 17px;
}
button#addButton {
    outline: none;
    border: 0;
    background-color: black;
    padding: 10px 24px;
    color: #fff;
    border-radius: 7px;
    margin: 15px 0px 0 0;
}
.drag-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}
    .drag-item .text {
      flex-grow: 1;
    }
    .drag-item .drag-icon {
    color: #999;
    margin-right: 5px;
}
    .drag-item .remove-button {
      margin-left: 10px;
      cursor: pointer;
    }
  #container {
    border: 2px dashed gray;
    min-height: 100px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .draggable {
    background-color: #f0f0f0;
    border: 1px solid gray;
    padding: 5px;
    margin-bottom: 5px;
    cursor: move;
  }

.col-ting {
  margin: 0 auto;
  margin-top: 18px;
  cursor: pointer;
}
.input_field{
    font-size: 20px;
  }
.image-preview{
    width: 116px;
    height: 123px;
    margin-left: -28px;
    cursor: pointer;

}

.image-box h3{
    margin-right: 29px;
    margin-top: 10px;
    font-size: 18px;
}
#file-upload1 {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* //Form Elements */
.file-upload,
  .image-box {
    cursor: pointer;
    overflow: hidden;
    }
    img {
      height: 100%;
    }
    
    .p2 {
      position: relative;
      top: 45%;
    
    }
  
.card2 .card-body .row {
    align-items: baseline;
}
.new-sec label {
    min-width: 90px;
}

@media(max-width: 991px){
.timing-schedule select {
    
    min-width: 88px !important;
}
  .card2 .card-header a {
    flex-wrap: wrap;
  }
}
@media(max-width: 767px){
  .btn-color-mode-switch > label.btn-color-mode-switch-inner {
    min-width: 295px !important;
    max-width: 100% !important;
    width: auto !important;
  }
  .card2 .card-header a {
    font-size: 19px;

  }
  p {
    font-size: 17px;
}
}

@media (max-width: 575px){
  .btn-color-mode-switch > label.btn-color-mode-switch-inner:after,
  .btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
    font-size: 15px !important;
  }

}
