:root {
  --bs-black: #000;
  --bs-blue: #007bff;
  --bs-indigo: #6610f2;
  --bs-purple: #696cff;
  --bs-green-100: #359A70;
  --bs-warning: #FF9933;
  --bs-warning-dark: #f38d26;
  --bs-white: #fff;
  --bs-gray: rgba(67, 89, 113, 0.6);
  --bs-gray-dark: rgba(67, 89, 113, 0.8);
  --bs-primary: #696cff;
  --bs-secondary: #8592a3;
  --bs-light: #fcfdfd;
  --bs-dark: #233446;
  --bs-gray: rgba(67, 89, 113, 0.1);
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 67, 89, 113;
  --bs-font-sans-serif: "Nunito", sans-serif;
  --bs-root-font-size: 16px;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.9375rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.53;
  --bs-body-color: #697a8d;
  --bs-body-bg: #f5f5f9;
  --bs-link-color: #696cff;
  --bs-link-decoration: none;
  --bs-link-hover-color: #5f61e6;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #d9dee3;
  --bs-border-radius: 0.375rem;
  --bs-box-shadow: 0 0.25rem 1rem rgba(161, 172, 184, 0.45);
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--bs-body-font-family);
}

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


/*	      Utilities
/*------------------------------------------*/
.text-dark-black {
  color: black;
}

.font-lg-normal {
  font-weight: 500;
}

.iti.iti--allow-dropdown {
  width: 100%;
}

.hidden {
  display: none;
}

.font-16 {
  font-size: 16px !important;
}

.form-control,
.form-control:active,
.form-control:focus {
  color: black;
}

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


/*	     0 - Waves | global
/*------------------------------------------*/
.wave-container {
  width: 100%;
  position: relative;
}

.waves {
  bottom: 0;
  width: 100%;
  min-height: 220px;
  background-image: url("../../img/backgrounds/wave.svg");
  z-index: 1;
}

@media (max-width: 768px) {
  .waves {
    min-height: 180px;
  }
}

.logo-box {
  max-width: 124px;
}

.override-right {
  position: absolute;
  right: 16px;
}

.override-left {
  position: absolute;
  left: 16px;
}

.signup-account {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  width: 80%;
  margin: 0 auto;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 0.25rem 1rem rgba(161, 172, 184, 0.45);
}

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


/*	     0 - Models | global
/*------------------------------------------*/

.modal .btn-close {
    background-color: #696cff;
    border-radius: .5rem;
    opacity: 1;
    padding: .635rem;
    box-shadow: 0 .125rem .25rem rgba(161, 172, 184, .4);
    position: absolute;
    top: 60px;
    right: 50px;
}


.btn-close {
  --bs-btn-close-color: #a1acb8;
  box-sizing: content-box;
  width: .8em;
  height: .8em;
  padding: .25em .25em;
  color: var(--bs-btn-close-color);
  background: rgba(0, 0, 0, 0) var(--bs-btn-close-bg) center / 0.8em auto no-repeat;
}

#starsContainer {
  color: gold;
  letter-spacing: 10px;
}

.small-gold-star {
  color: gold;
}

.bg-transparent {
  background-color: transparent !important;
}


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


/*	     0 - Leader BoardScreen | global
/*------------------------------------------*/
.leader-board-clasification {
  position: relative;
}

.pos-1st {
  box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.3);
}

.leader-board-position {
  position: absolute;
  top: -25px;
  right: -5px;
}

.user-rank-details {
  flex-direction: row;
}

.user-rank-text {
  margin-left: 6px;
}

/* CSS code from above goes here */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.bounce {
  display: inline-block;
  animation: bounce 2s infinite;
}

/* CSS code from above goes here */
@keyframes shakeX {

  from,
  to {
    transform: translate3d(0, 0, 0);
  }

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

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

.shakeX {
  animation: shakeX 1s cubic-bezier(.36, .07, .19, .97) both;
}

/* Define the keyframes for the pulse animation */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Apply the pulse animation to an element */
.pulse {
  display: inline-block;
  animation: pulse 2s infinite;
}

.chevron-right {
  display: none;
}

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


/*	     0 - SideBar | global
/*------------------------------------------*/

.layout-menu-collapsed .layout-menu-toggle {
  opacity: 1 !important;
}

.layout-menu-collapsed .chevron-right {
  display: block;
}

.layout-menu-collapsed .chevron-left {
  display: none;
}

.menu-vertical .app-brand {
  justify-content: center;
}

.menu-vertical .app-brand.logo-make-small {
  padding-left: 1rem;
  justify-content: flex-start;
}

.menu-vertical .app-brand.logo-make-small .app-brand-logo {
  transform: scale(0.7);
}

.client-logo {
  height: 1.75rem;
  object-fit: contain;
}

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


/*	     0 - Assign Owner | global
/*------------------------------------------*/

.image-preview-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 1.5rem;
}

.image-preview-wrapper>img {
  border-radius: 5px;
}

.remove-image {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}

.wrong-image-error {
  display: none;
}

.select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice {
  color: #696cff !important;
  background: rgba(105, 108, 255, .08) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000 !important;
}




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


/*	     0 - DataTable | global
/*------------------------------------------*/


#organizationList_wrapper .dataTables_paginate .paginate_button {
  margin-left: auto;
  padding: 0.3em 0.8em;
}

#organizationList_wrapper table.dataTable.no-footer {
  border-bottom: 0px !important;
}

#organizationList_filter {
  padding-bottom: 30px;
}

#organizationList_wrapper .dataTables_paginate .paginate_button {
  border-radius: .375rem;
  margin-left: .375rem;
}

#organizationList_wrapper .dataTables_paginate .paginate_button.current,
#organizationList_wrapper .dataTables_paginate .paginate_button.current:hover {
  border-color: var(--bs-purple);
  background: var(--bs-purple);
  background-color: var(--bs-purple);
  color: var(--bs-white) !important;
}

#organizationList_wrapper .dataTables_paginate .paginate_button:hover {
  box-shadow: none;
  color: var(--bs-purple) !important;
  background: rgba(105, 108, 255, .16);
  border-color: rgba(105, 108, 255, .16);
  background-color: rgba(105, 108, 255, .16);
}

#organizationList>tbody>tr>td.dtr-control:before,
#organizationList>tbody>tr>th.dtr-control:before {
  background: var(--bs-purple);
  background-color: var(--bs-purple);
}

#organizationList_wrapper .dataTables_filter input {
  margin-left: 1rem;
  border-radius: 0.375rem;
  border: 1px solid rgb(228, 230, 232);
}

#organizationList_wrapper .dataTables_length select {
  border-radius: 0.375rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid rgb(228, 230, 232);
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: rgb(228, 230, 232) !important;
}

.table>:not(caption)>*>* {
  padding-top: .782rem !important;
  padding-bottom: .782rem !important;
}

.buttons-csv,
.buttons-excel, .buttons-pdf {
  padding: 0.4375rem 1.25rem 0.4375rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.53;
  background:#5f61e6;
  box-shadow: none;
border-radius: .375rem !important;
}

.buttons-excel, .buttons-pdf {
  margin-left: 10px !important;
}
/* 
.dt-button.buttons-csv,
.dt-button.buttons-excel {
  --bs-btn-padding-x: 1.25rem;
  --bs-btn-padding-y: 0.4375rem;
  --bs-btn-font-size: 0.9375rem;
  --bs-btn-line-height: 1.53;
  --bs-btn-border-radius: 6px;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: rgba(105, 108, 255, .5);

  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: all .2s ease-in-out;
}

.dt-button.buttons-excel {
  margin-left: 10px;
} */


.editBtn{

  border-radius: 50px;
  border: 1px solid #5f61e6;
  padding: 6px;
  color:#5f61e6 ;
  cursor: pointer;

}

.editBtn:hover{

  border: 1px solid #5f61e6;
  color:#ffffff ;
  background: #5f61e6;


}

.deleteBtn{

  border-radius: 50px;
  border: 1px solid #c1121f;
  padding: 6px;
  color:#c1121f ;
  cursor: pointer;

}

.deleteBtn:hover{

  border: 1px solid #c1121f;
  color:#ffffff ;
  background: #c1121f;

}
html:not([dir=rtl]) .text-center {
  text-align: center !important;
}

.text-align-center{

  align-items: center !important;

}

 


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


/*	     0 - Responsiveness | global
/*------------------------------------------*/

@media (max-width: 640px) {
  .leader-board-clasification .card-body-mob {
    padding: 14px 8px;
  }

  .leader-board-position {
    width: 40px;
  }

  .font-14Mob {
    font-size: 14px !important;
  }

  .user-rank-details {
    flex-direction: column;
  }

  .w-60Mob {
    width: 60% !important;
  }

  .table>:not(caption)>*>* {
    padding: .625rem 0.95rem;
  }

  .w-100Mob {
    width: 100%;
  }

  .menu-vertical .app-brand.logo-make-small {
    padding-left: 1rem;
    justify-content: center;
  }

  .menu-vertical .app-brand.logo-make-small .app-brand-logo {
    transform: initial;
  }

  #organizationList_wrapper #organizationList_filter {
    padding-bottom: 15px;
  }

  #organizationList_wrapper #organizationList_filter label {
    text-align: left;
    display: block;
  }

  #organizationList_wrapper #organizationList_filter input {
    width: 100%;
    margin-top: 5px;
    margin-left: auto;
  }

  #organizationList_wrapper .dataTables_paginate .paginate_button {
    margin-left: initial;
  }
}

@media (min-width: 768px) {
  .signup-account {
    bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .waves {
    display: none;
  }

  .font-lg-normal {
    font-size: initial;
  }

  body.bg-lg-cultured {
    background-color: #f5f5f9 !important;
  }

  .leader-board-clasification .card-body .text-primary {
    font-size: 1.5rem !important;
  }

  .leader-board-position {
    width: 50px;
  }

  .nominate-avatar {
    width: 25% !important;
  }

  .winner-avatar {
    width: 50% !important;
  }

  .image-prize {
    width: 150px;
  }

}

@media screen and (min-width: 767px) and (max-width: 992px) {
  .leader-board-position {
    width: 40px;
  }

}

@media screen and (min-width: 993px) and (max-width: 1025px) {
  .leader-board-position {
    width: 40px;
  }


}

/* Assign Review List */
.btn-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  display: inline-block;
}
  
.btn-container i {
    display: inline-block;
    position: relative;
    top: -9px;
 }
  
  label {
    font-size: 13px;
    color: #424242;
    font-weight: 500;
  }
  
  .btn-color-mode-switch {
    display: inline-block;
    margin: 0px;
    position: relative;
    width: 100%;
}
  
.btn-color-mode-switch > label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 100%;
  height: 40px;
  background: #e7e7ff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.08) inset;
  display: block;
}
  
.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: 0;
  right: 0;
  line-height: 39px;
  width: 50%;
}
  
.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 50%;
  height: auto;
  background: #696cff;
  color: #fff;
  border-radius: 15px;
  position: absolute;
  left: 6px;
  top: 6px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  padding: 5px 0px;
}
  
  .btn-color-mode-switch > .alert {
    display: none;
    background: #FF9800;
    border: none;
    color: #fff;
  }
  
  .btn-color-mode-switch input[type="checkbox"] {
    cursor: pointer;
    width: 50%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0px;
}
  
  .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
    background: #696cff;
    color: #fff;
  }
  
  .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after {
    content: attr(data-on);
    left: auto;
    background: #e7e7ff;
    color: #000;
    right: 10px;
}
  
  .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before {
    content: attr(data-off);
    right: auto;
    left: 0;
}
  
  .btn-color-mode-switch input[type="checkbox"]:checked ~ .alert {
    display: block;
  }
  
  .dark-preview {
    background: #696cff;
  }
  
  .white-preview {
    background: #e7e7ff;
  }

.filter-btn{

  width: 100%;

}


.accordion1 {
	position: relative;
    background-color: #ffffff;
    color: #444;
    cursor: pointer;
    padding: 10px 30px;
    display: flex;
    border: 2px solid #696cff5e !important;
    border-radius: 0.6em;   
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    box-shadow: 0 8px 10px 0px #00000059;
  }
 
@media screen and (max-width: 567px) { 
    .accordion1 {
 
      padding: 15px 20px;  
      display: block;

  }
}

.accordion1:hover {
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid #696cff !important;
    
  }

  .accordion1Active {
    background-color: #ffffff;
    border-radius: 10px 10px 0px 0px;
    border: 2px solid #696cff !important;
    
  }


.accordion1:after {
    content: '\002B';
    color: #696cff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
  
  .accordion1Active:after {
    content: "\2212";
  }

  @media screen and (max-width: 567px) { 
    .accordion1:after {
 
      content: '\002B';
      color: #696cff;
      font-weight: bold;
      position: absolute;
      top: auto;
      margin-top: -15px;
      right: 45px;

  }
}

  .panel {
    width: 100%;
    padding: 8px 18px;
    display: none;
    border-left: 2px solid #696cff;
    border-right: 2px solid #696cff;
    border-bottom: 2px solid #696cff;
    border-radius: 0em 0em 0.6em 0.6em;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 8px 10px 0px #00000036;

  }


.review-h{

color: #000;
font-size: 20px;
padding: 5px 0px 5px 0px;
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

}

@media screen and (max-width: 567px) { 
  .review-h {
  
    font-size: 16px;
    padding: 5px 0px 5px 0px;


}
}


.review-p{

  font-size: 14px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

.checked{

 color:#34e0a1;

}

.star{

  color:#ffc107;
 
 }


html:not([dir=rtl]) .ms-1 {
  margin-left: 6.5rem !important;
}

.review-box{

  padding: 20px;

}

.client-review{

  font-weight: 700;
  color: #000;
  padding-top: 20px;

}

 


.review-area>textarea{

width: 100%;
border: none;
background: #e7e7ff4f;
border-radius: 10px;
padding: 20px 20px;

}

.review-row{

    background: #f8f8ff;
    padding: 10px 0px 10px 0px;
    margin: 0px;
    border-radius: 10px;

}


.clear-btn{

  border: 1px solid #696cff;
  color: #696cff;
  background-color: transparent;
  border-radius: 10px;
  padding: 7px 15px;
  width: 100%;

}

.clear-btn:hover{

  border: 1px solid #696cff;
  background-color: #696cff;
  color: #fff;
  
}

@media screen and (max-width: 567px) { 
  .clear-btn {
  
    margin-bottom: 10px;

}
}


.ai-btn{

  border: 1px solid #34e0a1;
  color: #34e0a1;
  background-color: transparent;
  border-radius: 10px;
  padding: 7px 15px;
  width: 100%;


}

.ai-btn{

  border: 1px solid #34e0a1;
  background-color: #34e0a1;
  color: #fff;

}

.bx-atom{

  font-size: 14px;
  padding-right: 5px;

}

.bx-eraser{

  font-size: 14px;
  padding-right: 5px;

}

.bx-copy{

line-height: 40px;
font-size: 18px;
cursor: pointer;

}


@media screen and (max-width: 567px) { 
  .bx-copy {
  
    line-height: 0px;
    padding-top: 24px;

}
}

.bxs-send{

  line-height: 40px;
  font-size: 28px;
  color: #696cff;
  cursor: pointer;

}

@media screen and (max-width: 567px) { 
  .bxs-send {
  
    line-height: 0px;
    float: right;
    padding-bottom: 10px;

}
}


.container-p-b:not([class^=pb-]):not([class*=" pb-"]) {
  padding-bottom: 1.625rem !important;
}

.container-p-t:not([class^=pt-]):not([class*=" pt-"]) {
  padding-top: 1.625rem !important;
}



.pd-lr{

  padding: 0px 10px 0px 10px !important;

}

.pd-tb{

  padding: 10px 0px 10px 0px !important;

}

.pd-t{

  padding-top: 20px !important;

}


.showBtn{

  border-radius: 50px;
  border: 1px solid #5f61e6;
  padding: 6px 7px;
  color: #5f61e6;
  cursor: pointer;

}

.showBtn:hover{
  border: 1px solid #5f61e6;
  color: #ffffff;
  background: #5f61e6;
}


.client-response {
  border: none;
  background: #e7e7ff4f;
  border-radius: 10px;
  padding-left: 20px !important;
  border: 2px solid #5f61e6 !important;
  box-shadow: 0 0 1.375rem 0.25rem #a1acb82e !important;
}


.text-purple{

  color: #5f61e6;
  font-weight: 600;

}

.selected-star .star {
  color: #FFBD13;
  font-size: 38px;
}

.rating-section p{

  font-size: 26px;
  color: #000;

}

.rating-platform p{

  font-size: 26px;
  color: #000;
  margin-bottom: 0 !important;

}


.star-box .rating-section {

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 10px;
  transition: all 0.2s ease 0s;
  background: #fff;
  padding: 35px 35px 20px 30px !important;

}


.star-box .rating-heading{

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px 35px 0px 30px !important;
  color: #5f61e6;
  border: 1px solid;
  border-radius: 10px

}

.star-box .rating-overall{

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px 35px 0px 30px !important;
  color: #5f61e6;
  border: 1px solid;
  border-radius: 10px

}

.overall-h{

  color: #5f61e6;
  font-weight: 700;

}

.rating-center{

  display: block;
  align-content: center !important;

}


.rating-platform{

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 10px;
  transition: all 0.2s ease 0s;
  background: #fff;
  padding: 20px 35px 20px 30px !important;

}
.star-box .star, .selected-star .star {
  cursor: pointer;
  color: #FFBD13;
  font-size: 38px;
  transition: color 0.2s;
}

.star-box .star:hover,
.star-box .star:hover ~ .star {
  color: #FFBD13;
}

.star-box .star.full, .selected-star .star.full {
  color: #FFBD13;
}

.star-box .star.half:before, .selected-star .star.half:before {
  content: '\eeb9';
  color: #FFBD13;
}

.star-box .star.full:before, .selected-star .star.full:before {
  content: '\eeb8';
  color: #FFBD13;
}

.star-box .star.empty, .selected-star .star.empty {
  color: #FFBD13;
}

.selected-star {
  margin-top: 20px;
  font-size: 24px;
}

.star-box .star.animated, .selected-star .star.animated {
  animation: animate .5s ease-in-out forwards;
}
 
@media screen and (max-width: 567px) { 
  .pd-b-20 {
  
    font-size: 16px;
    padding: 5px 0px 5px 0px;


}
}

.filter-bg{

  display: flex;
  background: #696cff1c;
  padding: 20px 10px;
  border: 1px solid #fff ;
  border-radius: 10px;

}

@media screen and (max-width: 567px) { 
  .filter-bg{ 
    display: block !important; 
  } 
}

.filter-popup{
  margin: 20px 0px 0px;
}

.filter-field{

    display: block;
    width: 100%;
    padding: 8px 20px !important;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.53;
    color: #697a8d;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

.filter-selectfield{

  display: block;
  width: 100%;
  padding: 2px 0px 0px 0px !important;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.53;
  color: #697a8d;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}


/* The popup form - hidden by default */
.filter-popup {
  display: none;
  border: none;
  z-index: 1000;
  margin-bottom: 40px;
}

.popup-form.active {
  display: block;
}

.filter-apply{

  width: 100%; 
}
.filter-request-apply{

  width: 100%; 
}

.clear-btn2{

  width: 100%;
  color: #fff;
  background-color: #181818;
  border-color: #181818;

}

.vertical-center {
  margin: 28px 0px 0px 0px;
}

@media screen and (max-width: 567px) { 
  .vertical-center {
    margin: 15px 0px 10px 0px;
  }
}


.mb-pb{

  padding-bottom: 15px;

}

.fieldColor{

  color: #000;

}

.pd-b{

  margin-bottom: 30px;

}

.load{

  display: none;

}

.pd-t5{

 padding-top: 5px;

} 


.myAccordion{

  border: 1px solid #696cff38;
  font-weight: 700;
  font-size: 26px;
  color: #5f61e6;

}

.myAccordionbody{

  padding-left: 20px;
  border-left: 1px solid #5f61e6;
  margin: 20px;
  font-size: 20px;
  color: #000;

}

@media screen and (max-width: 567px) { 
  .myAccordion {
    font-size: 18px;
  }
}

@media screen and (max-width: 567px) { 
  .myAccordionbody {
    font-size: 16px;
  }
}


.myH1{

    text-align: center;

}

.myCenter{
  text-align: center !important;
}

.myPrevious{

  background-color: transparent;
  border: 1px solid #5f61e6;
  padding: 20px;
  border-radius: 10px;
  color: #000;
  text-align: right;

}

.myPrevious-p{

  font-size: 20px;
  font-weight: 700;

}

.myNext{

  background-color: transparent;
  border: 1px solid #5f61e6;
  padding: 20px;
  border-radius: 10px;
  color: #000;
  text-align: left;

}

.myNext-p{

  font-size: 20px;
  font-weight: 700;

}

.myPrevious-icon{

  float: left;
  line-height: 0.2;
  font-size: 2.0rem;
  color: #5f61e6;

}

.myNext-icon{

  float: right;
  line-height: 0.2;
  font-size: 2.0rem;
  color: #5f61e6;

}


.hidden {
	display: none;
}

.nosel {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;  
}


.img-enlarged__cont {
	width: 100%;
	height: 0px;
	opacity: 0;
	font-family: Helvetica, sans-serif;
	cursor: zoom-out;
	background: rgba(0,0,0,0.5);
	position: fixed; top: 20px; left: 0;
	z-index: 999;
	
	transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

.img-enlarged__cont.open {
	height: 100%;
	opacity: 1;
	
	transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

.img-enlarged {
	max-width: 90%;
	max-height: 80%;
	border: 5px solid #eee;
	display: block;
	margin: auto !important;
	
	position: relative; top: 10%; bottom: 10%;
}

.img-enlarged__nav.next::after {
	content: ">";
	font-size: 50px;
	font-family: monospace;
	color: #fff;
	position: absolute; right: 40%; top: 49%;
}
.img-enlarged__nav.prev::after {
	content: "<";
	font-size: 50px;
	font-family: monospace;
	color: #fff;
	position: absolute; left: 40%; top: 49%;
}


.gallery img {
	cursor: zoom-in;
}


.img-enlarged__nav {
	background: rgba(0,0,0,0.2);
	cursor: pointer;
	z-index: 999;
	text-align: center;
	height: 100%;
	width: 10%;
	vertical-align: middle;
	transition: 0.3s width, 0.2s background;
}
.img-enlarged__nav:hover {
	background: rgba(0,0,0,0.8);
	width: 11%;
	transition: 0.3s width, 0.2s background;
}
.img-enlarged__nav:active {
	width: 12%;
	transition: 0.1s width;
}

.img-enlarged__nav span {
	font-size: 25px;
	color: #fff;
	height: 20px;
	display: inline-block;
}

.img-enlarged__nav.prev {
	position: absolute; top: 0; left: 0;
}
.img-enlarged__nav.next {
	position: absolute; top: 0; right: 0;
}


.img-enlarged__counter {
	background: rgba(0,0,0,0.5);
	color: #fff;
	font-family: monospace;
	width: 50px;
	text-align: center;
	font-size: 15px;
	padding: 7px 0 7px 0;
	margin: auto !important;
	display: block;
	
	position: absolute; left: 49%; bottom: 5%;
}

.reviewCheckbox{

  position: absolute;
  margin: 10px 0px 0px 10px;

}

.reviewCheckbox>.form-check-input{

  border: 1px solid #5f61e6 !important;

}

.replyButton{

    align-content: center;

}

.googleLogin{

  text-align: center;
  align-content: center;
  padding: 50px 0px 50px 0px;
  background: #e7e7ff4f;
  border-radius: 10px;
  border: 2px solid #5f61e6 !important;
  box-shadow: 0 0 1.375rem 0.25rem #a1acb82e !important;
  
}
 

.m-none{
  margin: 0px 0px 20px 0px !important;
}

.pb-none{
  padding-bottom:0px;
}

.tripBox{
    display: flex;
    border: 1px solid #00aa6c;
    padding: 10px 0px 10px 30px;
    border-radius: 10px;
}

.tripText>p{  
    margin-bottom: 0px;
}

.googleBox{
    display: flex;
    border: 1px solid #ffc107;
    padding: 10px 0px 10px 30px;
    border-radius: 10px;
}

.googleText>p{  
    margin-bottom: 0px;
}

.bookingBox{
    display: flex;
    border: 1px solid #003282;
    padding: 10px 0px 8px 30px;
    border-radius: 10px;
}

.bookingText>h4{  
    margin-bottom: 0px;
    background: #003282;
    border-radius: 6px;
    color: #fff;
    font-size: 20px;
    padding: 5px 0px 0px 0px;
    text-align: center;
    width: 100%;
}

.bookingText>h5{  
    margin-bottom: 7px;
    background: #003282;
    border-radius: 6px;
    color: #fff;
    font-size: 20px;
    padding: 2px 3px 0px 3px;
    text-align: center;
    width: 100%;
}

.bookingText>p{  
    margin-bottom: 0px;
}

.expideaBox{
    display: flex;
    border: 1px solid #fddb32;
    padding: 10px 0px 8px 30px;
    border-radius: 10px;
}

.expideaText>h4{  
    margin-bottom: 0px;
    background: #fddb32;
    border-radius: 6px;
    color: #000;
    font-size: 20px;
    padding: 5px 0px 0px 0px;
    text-align: center;
    width: 100%%;
}

.expideaText>h5{  
    margin-bottom: 7px;
    background: #fddb32;
    border-radius: 6px;
    color: #000;
    font-size: 20px;
    padding: 2px 3px 0px 3px;
    text-align: center;
    width: 100%;
}


@media screen and (max-width: 567px) { 
  .bookingText>h5 {
    padding: 2px 3px 0px 3px;
    width: 18%;
  }
}

@media screen and (max-width: 567px) { 
  .expideaText>h5 {
    padding: 2px 3px 0px 3px;
    width: 18%;
  }
}

.expideaText>p{  
    margin-bottom: 0px;
}

@media screen and (max-width: 567px) { 
  .googleBox, .tripBox, .bookingBox {
    margin-bottom: 20px;
  }
}

.tripImg img{
  height: 22px;
}


.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%; 
  z-index: 9999;
  background-color: #ffffffcf;
}
.loader img{
  position: relative;
  left: 20%; 
}

.bookingReview h4 {
  background: #003282;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  padding: 5px 5px 5px 5px;
  text-align: center;
  margin: 0px 10px 0px 0px;
  width: 10%;
}
.bookingReviewss h4 {
  background: #003282;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  padding: 5px 5px 5px 5px;
  text-align: center;
  margin: 0px 10px 0px 0px; 
}

@media screen and (max-width: 567px) {
  .bookingReview h4 {
      width: 20%;
      margin: 10px 0px 0px 0px;
  }
  .bookingReviewss h4 {
    width: 20%;
    margin: 10px 0px 0px 0px;
  }
}
.expediaReview h4 {
  background: #fddb32;
  border-radius: 6px;
  color: #000;
  font-size: 18px;
  padding: 5px 5px 5px 5px;
  text-align: center;
  margin: 0px 10px 0px 0px;
  width: 10%;
}

.expediaReviewss h4 {
  background: #fddb32;
  border-radius: 6px;
  color: #000;
  font-size: 18px;
  padding: 5px 5px 5px 5px;
  text-align: center;
  margin: 0px 10px 0px 0px; 
}

@media screen and (max-width: 567px) {
  .expediaReview h4 {
      width: 20%;
      margin: 10px 0px 0px 0px;
  }
  .expediaReviewss h4 {
    width: 20%;
    margin: 10px 0px 0px 0px;
  }
}



.googleReview{
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ffc107;
  padding: 29px 10px 29px 10px;
  border-radius: 10px;
}

.tripReview{
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #00aa6c;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
}

.bookingReviews{
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #003282;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
}

.expediaReviews{
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #fddb32;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
}

.google-p {
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.assignRole{
  display: flex;
  background-color: #fff;
  border: 1px solid #696cff;
  padding: 30px 10px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
}

.assignRole-h5{
font-size: 12px;
margin: 0px;
}

.assignInner{
font-size: 14px;
margin-top: 5px;
}

.assignRole a{
  color: #696cff;
  font-size: 14px;
  float: right;
}

@media screen and (max-width: 567px) {
  .googleReview {
      padding: 15px 20px;
      display: block;
  }
  .tripReview {
      padding: 15px 20px;
      display: block;
  }
  .bookingReviews {
      padding: 15px 20px;
      display: block;
  }
  .expediaReviews {
      padding: 15px 20px;
      display: block;
  }
  .assignRole-h5{
    font-size: 14px;
     margin-bottom: 10px;
  }
  .mt-b{
    margin-top: 1rem !important;
  }
}
.menu-collapsed h5 {
    display: none;
}

.reassign {
  color: #fff !important;
  font-size: 12px;
  padding: 5px 10px;
  z-index: 10;
}

@media screen and (max-width: 567px) {
  .reassign {
      color: #fff !important;
      font-size: 12px;
      padding: 5px 10px;
      float: right;
      margin-top: -60px;
  }
<<<<<<< HEAD
}

.assignUser h6 {
    margin: 0px;
}

.date-range-picker {
  display: none;
  position: absolute;
  right: 0;
  margin: 10px 30px 0px 0px;
  padding: 20px;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: 250px;
}


.date-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
}

.date-range-picker label {
  margin-bottom: 5px;
  font-weight: bold;
}

.review-count i {
    background: #696cff;
    color: #fff;
    padding: 10px;
    font-size: 22px;
    border-radius: 8px;
    margin-bottom: 10px;
}


.gif-left{
  width: 70px;
  height: 70px;
  margin-right: 10px; 
}

.positive-text h3 span{
  color:#008000;
  font-weight:700;
}

.negative-text h3 span{
  color:#dd4b39;
  font-weight:700;
}

.border-red{
  border:1px solid #dd4b39;
}

.border-green{
  border:1px solid #008000;
}

.border-purple{
  border:1px solid #696cff;
}

.color-black{
  color:#000 !important;
}

@media (max-width: 768px) {
    .layout-menu {
        overflow-y: auto; /* Enables scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling */
    }
}