@font-face {
  font-family: medium;
  src: url("../fonts/ReadexPro-Medium.ttf");
}
* {
  margin: 0;
  padding: 0;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  overflow-x: hidden;
  font-size: 1rem;
  font-family: medium;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  color: #68605c;
  font-family: medium;
}

h1 {
  color: #68605c;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3,
h4 {
  font-size: 1.125rem;
  font-family: medium;
}

p,
q {
  line-height: 1.9;
  font-size: 1.125rem;
  margin: 0;
  font-family: medium;
  color: #000;
}

ul {
  margin: 0;
  padding: 0;
}

textarea {
  resize: none;
}

input:focus,
textarea:focus,
select:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

input.valid,
textarea.valid {
  border: 2px solid #e0fd02 !important;
}

button:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

a {
  font-size: 0.875rem;
  font-family: medium;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
}

.select2-container {
  width: 100% !important;
}

.select2.select2-container--open .select2-selection__arrow img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.select2-selection__arrow img {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}

.select2-container--default .select2-selection--single {
  background-color: #fef6ed;
  /*border-color: #000;*/
  border-radius: 10px;
  min-height: 60px;
  position: relative;
  z-index: 99;
}

.select2-container--open .select2-selection--single {
  background-color: #fff;
  border: 2px solid #e0fd02;
}

.select2-selection__rendered {
  color: #68605c !important;
  line-height: 60px !important;
  padding-right: calc(1.3125rem + 0.75vw) !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
}

.select2-selection__arrow {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
  width: 30px !important;
  height: 30px !important;
  left: 15px !important;
}
.select2-selection__arrow img {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  border-color: #000;
  border-radius: 5px;
  z-index: 99999999;
  background-color: #fff;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 10px 20px !important;
  border-radius: 5px !important;
  outline: none !important;
  border-color: #e2e2e2 !important;
  background-color: #fff !important;
}

.select2-results li {
  padding-right: 30px;
  line-height: 60px;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #68605c;
}

.select2-container--default .select2-results > .select2-results__options {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.select2-container.active .select2-selection__rendered {
  color: #000 !important;
}

.select2-container.active .select2-selection__rendered {
  color: #000 !important;
}

.select2-container.active .select2-selection--single {
  border: 2px solid #e0fd02;
}

.modal-content {
  border-radius: 10px;
  border: none;
}

.btn {
  padding: 1.125rem calc(1.48125rem + 2.775vw);
  font-size: 1rem;
  font-family: medium;
  color: #756e6a;
  background-color: #e0fd02;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .btn {
    padding: 1.125rem 3.5625rem;
  }
}
.btn:hover {
  overflow: hidden;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn .drop {
  position: absolute;
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 0% 100% 100% 100%;
  -webkit-transform: rotate(45deg) translateX(50%);
  transform: rotate(45deg) translateX(50%);
  background-color: #756e6a;
  left: 50%;
  top: -100%;
  bottom: 0px;
  margin: 0 auto;
  z-index: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
}
.btn:hover {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  color: #e0fd02;
}
.btn:hover .drop {
  top: 50%;
  -webkit-animation: drop 0.3s linear forwards;
  animation: drop 0.3s linear forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  opacity: 1;
}
.btn.red {
  background-color: #756e6a;
  color: #fff;
}
.btn.red .drop {
  background-color: #e0fd02;
}
.btn.outline {
  background-color: transparent;
  color: #68605c;
  border: 1px solid #e0fd02;
}
.btn.outline:hover,
.btn.outline[aria-expanded=true] {
  color: #fff;
  border-color: transparent;
}
.btn.outline .drop,
.btn.outline[aria-expanded=true] {
  background-color: #e0fd02;
}

@-webkit-keyframes drop {
  0% {
    top: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: -50px;
    left: -50px;
    width: 400px;
    height: 200px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    border-radius: 50%;
  }
}

@keyframes drop {
  0% {
    top: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: -50px;
    left: -50px;
    width: 400px;
    height: 200px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    border-radius: 50%;
  }
}
.btn-check:focus + .btn,
.btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.checkboxes input[type=checkbox]:checked + label:before {
  content: "";
  background-color: #756e6a;
  border-color: #fef6ed;
  color: #fef6ed;
}

label[for*=option] {
  color: #fef6ed;
}

.checkboxes.radios input[type=radio],
.checkboxes input[type=checkbox] {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.checkboxes label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-right: 38px;
  margin-bottom: 0;
  color: #000;
  font-size: 1rem;
}

.checkboxes label:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  position: absolute;
  right: 0;
  top: 3px;
  background-color: #fef6ed;
  border: 1px solid #fef6ed;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 15px;
}

.checkboxes input[type=checkbox]:checked + label:before,
.checkboxes input[type=radio]:checked + label:before {
  background-color: #756e6a;
}

section {
  overflow: hidden;
}

section {
  position: relative;
  z-index: 3;
}

@media (max-width: 576px) {
  .section-heading h2,
  .section-heading p {
    text-align: center;
  }
}
form {
  max-width: 550px;
}
@media (max-width: 768px) {
  form {
    max-width: 100%;
  }
}

input,
select,
textarea {
  min-height: 60px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fef6ed !important;
  border: 1px solid #fef6ed !important;
  border-radius: 10px !important;
  padding-left: 35px !important;
  padding-right: 35px !important;
  font-size: 1rem;
  font-family: medium;
  color: #000 !important;
}

input:focus,
select:focus,
textarea:focus {
  background-color: transparent !important;
  border-color: #e0fd02 !important;
  border-width: 2px !important;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #756e6a !important;
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #756e6a !important;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #756e6a !important;
}

input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #756e6a !important;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #756e6a !important;
}

textarea:disabled,
.attched-file a {
  color: #68605c !important;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: rtl !important;
}

#details {
  padding-top: 17px;
}

.custom-upload__button {
  min-height: 60px;
  line-height: 60px;
  cursor: pointer;
  border: 1px dashed #e0fd02;
  border-radius: 10px;
  color: #000;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-left: 35px !important;
  padding-right: 35px !important;
  font-size: 1rem;
  font-family: medium;
  color: #000;
}

.custom-upload__input {
  height: 0;
  right: -10000px;
  position: absolute;
}

.custom-select {
  position: relative;
}

.input-hidden {
  position: absolute;
  right: -9999px;
  width: 100%;
}

/* style the items (options), including the selected item: */
.select-items {
  border-radius: 10px;
}

.select-items div,
.select-selected {
  min-height: 60px;
  color: #ffffff;
  cursor: pointer;
}

.select-items div {
  padding: 18px 35px;
}

.select-selected {
  color: #756e6a;
  min-height: 60px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fef6ed !important;
  border: 1px solid #fef6ed !important;
  border-radius: 15px !important;
  padding-left: 35px !important;
  padding-right: 35px !important;
  line-height: 60px;
}

.select-items div:last-of-type {
  border: none;
}

.custom-select select {
  display: none;
}

/* style items (options): */
.select-items {
  position: absolute;
  background-color: #756e6a;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 99;
}

/* hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

#map {
  min-height: 450px;
}

header {
  background-color: #e0fd02;
  position: fixed;
  min-width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 0px 0px 121px 20px rgb(209, 209, 209);
  box-shadow: 0px 0px 121px 20px rgb(209, 209, 209);
  padding: 50px 0;
}
header.nav-up {
  top: -200px;
}
header .logo img {
  max-width: 200px;
}
@media (max-width: 768px) {
  header {
    padding: 20px;
  }
  header .logo img {
    max-width: 150px;
  }
}

.ticket-box {
  background-color: #fef6ed;
  text-align: center;
  padding: 20px;
  border-radius: 30px;
  border: 2px solid #f7f7f7;
  cursor: pointer;
  width: min(50vw, 300px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.ticket-box:hover,
.ticket-box.active {
  background-color: transparent;
  border-color: #e0fd02;
}
.ticket-box .icon img {
  width: 100px;
    margin:auto
}
.ticket-box h2 {
  margin-top: 20px;
}

.faq .accordion-item {
  border: none;
  background-color: #f8f8f8;
  padding: calc(1.28125rem + 0.375vw) calc(1.34375rem + 1.125vw);
  margin-bottom: 1.25rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .faq .accordion-item {
    padding: 1.5625rem 2.1875rem;
  }
}
.faq .accordion-item .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.faq .accordion-item .accordion-button {
  background-color: transparent;
  color: #756e6a;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0;
  display: inline-block;
  width: 100%;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.faq .accordion-item .accordion-button::after {
  display: none;
}
.faq .accordion-item .accordion-body {
  margin-right: 70px;
}
@media (max-width: 992px) {
  .faq .accordion-item .accordion-body {
    margin-right: 0;
  }
}
.faq .accordion-item.no-img .accordion-body {
  margin-right: 0px;
  padding-right: 0%;
}
.faq .accordion-item.active {
  background-color: #fef6ed;
}
.faq .service-icon {
  display: inline-block;
}
.faq .service-icon img {
  margin-left: 30px;
  width: 60px;
  height: auto;
}

.steps-form .actions {
  margin-bottom: 50px;
}

.steps-jq h1 {
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 70px;
}
.steps-jq p {
  color: #555;
}

.steps-jq .current-info {
  display: none;
}
.steps-jq .title {
  display: none;
}
.steps-jq .stpes-nav {
  padding-top: 0px !important;
  padding-bottom: 70px !important;
}
.steps-jq .stpes-nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
}
.steps-jq .stpes-nav ul li.active a {
  color: #fff;
  background-color: #e0fd02;
}
.steps-jq .stpes-nav ul li.active a::after {
  border-top: 2px dashed #e0fd02;
  opacity: 1;
}
.steps-jq .stpes-nav ul li a {
  font-size: calc(1.3125rem + 0.75vw);
  color: #fff;
  background-color: #bcbdbd;
  width: 80px;
  height: 80px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1200px) {
  .steps-jq .stpes-nav ul li a {
    font-size: 1.875rem;
  }
}
.steps-jq .stpes-nav ul li a::after {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 2px dashed #bcbdbd;
  position: absolute;
  right: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.steps-jq .stpes-nav ul li.last a::after {
  display: none;
}
.steps-jq .stpes-nav ul li .number {
  display: none;
}
.steps-jq #pervious {
  color: #555;
  font-size: 1rem;
}

.steps-form h2 {
  font-size: calc(1.4375rem + 2.25vw);
  text-align: center;
}
@media (min-width: 1200px) {
  .steps-form h2 {
    font-size: 3.125rem;
  }
}
@media (max-width: 992px) {
  .steps-form h2 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
@media (max-width: 992px) and (min-width: 1200px) {
  .steps-form h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .steps-form h2 {
    font-size: calc(1.3125rem + 0.75vw);
  }
}
@media (max-width: 768px) and (min-width: 1200px) {
  .steps-form h2 {
    font-size: 1.875rem;
  }
}
.steps-form .login-input {
  width: 70px;
  height: 70px;
  min-height: unset;
  margin: unset;
  padding: 0 !important;
  text-align: center;
}
@media (max-width: 768px) {
  .steps-form .login-input {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 450px) {
  .steps-form .login-input {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 370px) {
  .steps-form .login-input {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 300px) {
  .steps-form .login-input {
    width: 30px;
    height: 30px;
  }
}
.steps-form .custom-upload ion-icon {
  font-size: 30px;
  color: #ccc;
}
.steps-form .checkboxes a {
  text-decoration: underline;
  color: #e0fd02;
  font-size: 1rem;
}
.steps-form .category {
  background-color: #fef6ed;
  text-align: center;
  padding: 20px;
  border-radius: 30px;
  border: 2px solid #fef6ed;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.steps-form .category:hover,
.steps-form .category.active {
  background-color: transparent;
  border-color: #e0fd02;
}
.steps-form .category .icon {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #68605c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
}
.steps-form .category .icon img {
  width: 40px;
}
.steps-form .category .icon::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  border: 5px solid #68605c;
  border-radius: 50%;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.steps-form .category:hover .icon {
  background-color: #68605c;
  color: #fff;
}
.steps-form .category:hover .icon::before {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
}
.steps-form .category .category-title {
  margin-top: 20px;
}
.steps-form .note {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
}

.attched-file a {
  display: inline-block;
  min-height: 60px;
  line-height: 60px;
  cursor: pointer;
  border-radius: 15px;
  color: #000;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-left: 35px !important;
  padding-right: 35px !important;
  font-size: 1rem !important;
  background-color: #fef6ed !important;
}

.chat {
  padding-top: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .chat {
    padding-top: 5rem;
  }
}

.chat-number,
.card-status {
  color: #756e6a;
  font-size: 1.125rem;
}

.status.open {
  color: #e0fd02;
}
.status.answered {
  color: #96dd9e;
}
.status.closed {
  color: #ffaaaa;
}
.status.in-progress {
  color: #ffb16f;
}

.card-records h3,
.replay-box h3 {
  color: #756e6a;
}

.username {
  color: #756e6a;
  font-size: 1.125rem;
}

.chat .side-top {
  margin-right: 40px;
}
.chat .icon {
  position: relative;
  -webkit-transform: translateX(-12px);
  transform: translateX(-12px);
}
.chat .icon svg {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.chat .icon ion-icon {
  font-size: 40px;
  color: #756e6a;
}
.chat .icon img {
  width: 37px;
}
.chat .date {
  color: #756e6a;
  font-size: 0.875rem;
}
.chat .chat-message {
  background-color: #fef6ed;
  padding: calc(1.3125rem + 0.75vw);
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .chat .chat-message {
    padding: 1.875rem;
  }
}
.chat .benzol-side {
  margin-top: calc(1.75rem + 6vw);
}
@media (min-width: 1200px) {
  .chat .benzol-side {
    margin-top: 6.25rem;
  }
}
.chat .replay-box {
  margin-top: calc(1.8125rem + 6.75vw);
}
@media (min-width: 1200px) {
  .chat .replay-box {
    margin-top: 6.875rem;
  }
}
.chat .replay-box textarea {
  border: 2px solid #e0fd02 !important;
  background-color: #fff !important;
}
.chat .message-success {
  display: none;
}
.chat .text-success {
  font-size: 16px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 768px) {
  .keep-in-touch {
    padding-top: 30px;
  }
}
.keep-in-touch h3 {
  margin-bottom: 20px;
}
.keep-in-touch .get-started {
  background-color: #fef6ed;
  border-radius: 10px;
  padding: calc(1.5rem + 3vw) calc(1.48125rem + 2.775vw);
}
@media (min-width: 1200px) {
  .keep-in-touch .get-started {
    padding: 3.75rem 3.5625rem;
  }
}
.keep-in-touch .get-started .btn {
  background-color: #756e6a;
  color: #fff;
  font-size: 1rem;
}
.keep-in-touch .get-started .btn .drop {
  background-color: #e0fd02;
}
.keep-in-touch .download-profile {
  position: relative;
  z-index: 1;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: calc(1.5rem + 3vw) calc(1.48125rem + 2.775vw);
}
@media (min-width: 1200px) {
  .keep-in-touch .download-profile {
    padding: 3.75rem 3.5625rem;
  }
}
.keep-in-touch .download-profile .btn {
  font-size: 1rem;
}
.keep-in-touch .download-profile .profile-img {
  position: relative;
}
.keep-in-touch .download-profile .profile-img img {
  position: absolute;
  top: -74px;
  right: 0;
  width: 492px;
  height: auto;
  z-index: -1;
}
@media (max-width: 1200px) {
  .keep-in-touch .download-profile .profile-img img {
    top: -52px;
    right: -78px;
  }
}
@media (max-width: 992px) {
  .keep-in-touch .row {
    gap: 30px;
  }
  .keep-in-touch .get-started,
  .keep-in-touch .download-profile {
    text-align: center;
  }
}

.chat-page {
  margin-top: 231px;
}
@media (max-width: 768px) {
  .chat-page {
    margin-top: 155.69px;
  }
}
.chat-page .sidebar-box .person-box {
  background-color: #fef6ed;
  margin-bottom: 20px;
  border-radius: 10px;
}
.chat-page .sidebar-box .person-box .top {
  padding: calc(1.28125rem + 0.375vw) calc(1.3125rem + 0.75vw);
  border-bottom: 2px solid #f1f1f1;
}
@media (min-width: 1200px) {
  .chat-page .sidebar-box .person-box .top {
    padding: 1.5625rem 1.875rem;
  }
}
.chat-page .sidebar-box .person-box .back-to-tickets {
  color: #555;
}
.chat-page .sidebar-box .person-box .person-box-content {
  padding: calc(1.28125rem + 0.375vw) calc(1.3125rem + 0.75vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (min-width: 1200px) {
  .chat-page .sidebar-box .person-box .person-box-content {
    padding: 1.5625rem 1.875rem;
  }
}
.chat-page .sidebar-box .person-box .person-box-content .person-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.chat-page .sidebar-box .person-box .person-box-content .info span {
  font-size: 14px;
  color: #555;
  display: block;
}
.chat-page .sidebar-box.overview .content .info-row,
.chat-page .sidebar-box.user-details .content .info-row {
  border-bottom: 2px solid #f1f1f1;
  padding: 0.625rem calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .chat-page .sidebar-box.overview .content .info-row,
  .chat-page .sidebar-box.user-details .content .info-row {
    padding: 0.625rem 1.875rem;
  }
}
.chat-page .sidebar-box.overview .content .info-row span,
.chat-page .sidebar-box.user-details .content .info-row span {
  font-size: 14px;
}
.chat-page .sidebar-box .accepted-terms {
  color: #68605c;
  cursor: pointer;
}
.chat-page .sidebar-box .accepted-terms ion-icon {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .chat-page .sidebar-box.employee {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .chat-page .sidebar-box.overview {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .chat-page .sidebar-box.assigned-user {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .chat-page .sidebar-box.user-details {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.chat-page .details-section {
  border-radius: 10px;
}
.chat-page .details-section .details-top {
  row-gap: 20px;
  padding-top: 0.625rem;
  padding-bottom: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  .chat-page .details-section .details-top {
    padding-bottom: 1.5625rem;
  }
}
.chat-page .details-section .details-top .btn {
  padding: 0.8125rem calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  .chat-page .details-section .details-top .btn {
    padding: 0.8125rem 1.5625rem;
  }
}
.chat-page .details-section .details-top .btn span {
  font-size: 15px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.chat-page .details-section .details-top .btn span ion-icon {
  font-size: 20px;
}
.chat-page .details-section .chat-activities {
  row-gap: 20px;
}
.chat-page .details-section .chat-activities .alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  background-color: #fef6ed;
  border-radius: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0;
}
.chat-page .details-section .chat-activities .alert p {
  font-size: 1rem;
}
.chat-page .details-section .chat-activities .alert .icon {
  width: 24px;
  max-width: 24px;
}
.chat-page .details-section .chat-activities .alert .icon img {
  width: 24px;
  height: 24px;
}
.chat-page .details-section .chat-activities .alert span {
  font-family: bold;
}
.chat-page .details-section .chat-activities .activity .date {
  font-size: 14px;
  color: #555;
}
@media (max-width: 1200px) {
  .chat-page .details-section .chat-activities .activity .date {
    padding-right: 40px;
  }
}
.chat-page .details-section .chat-activities .activity p {
  font-size: 1rem;
}
.chat-page .details-section .chat-activities .activity .attached-file img {
  max-width: 150px;
}
.chat-page .details-section .chat-activities .activity .attached-file a {
  color: #e0fd02;
}
.chat-page .details-section .chat-activities .activity .user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.chat-page .details-section .chat-activities .activity.has-message {
  padding-right: 1rem;
  padding-left: 1rem;
}
.chat-page .details-section .chat-activities .replay-box textarea {
  border: 2px solid #e0fd02 !important;
  background-color: #fff !important;
}

.rate-us .rate-icons {
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.rate-us .rate-icons .rate-icon {
  cursor: pointer;
}
.rate-us .rate-icons .rate-icon svg {
  max-width: 50px;
  width: 50px;
  cursor: pointer;
  fill: #555;
}
.rate-us .rate-icons .rate-icon p {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  color: #555;
  cursor: pointer;
}
.rate-us .rate-icons .rate-icon .input-hidden:checked + label svg {
  fill: #e0fd02;
}
.rate-us .rate-icons .rate-icon .input-hidden:checked + label p {
  color: #e0fd02;
}
.rate-us .rate-icons.dis .rate-icon svg {
  fill: #ddd;
}
.rate-us .rate-icons.dis .rate-icon p {
  color: #ddd;
}
.rate-us .rate-us-message {
  color: #68605c;
}

/* Footer */
footer {
  padding: 20px;
}
footer .social-media li {
  position: relative;
}
footer .social-media li .hexagon {
  top: -88%;
  right: -225%;
  position: absolute;
  margin: 0 auto;
  background-color: #756e6a;
  border-radius: 15px;
  width: 100px;
  height: 63px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 0.4vh solid transparent;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
  opacity: 0;
}
footer .social-media li .hexagon::before,
footer .social-media li .hexagon::after {
  content: "";
  border: inherit;
  position: absolute;
  top: -0.5vh;
  right: -0.5vh;
  background-color: #756e6a;
  border-radius: inherit;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: unset;
  box-sizing: unset;
}
footer .social-media li .hexagon::before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
footer .social-media li .hexagon::after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
footer .social-media li:hover .hexagon {
  opacity: 1;
}
footer .social-media li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .footer-bottom {
  padding-top: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  footer .footer-bottom {
    padding-top: 1.875rem;
  }
}
footer .footer-bottom .social-media li {
  position: relative;
}
footer .footer-bottom .social-media li .hexagon {
  top: -116%;
  right: -225%;
  position: absolute;
  margin: 0 auto;
  background-color: #756e6a;
  border-radius: 15px;
  width: 100px;
  height: 63px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 0.4vh solid transparent;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
  opacity: 0;
}
footer .footer-bottom .social-media li .hexagon::before,
footer .footer-bottom .social-media li .hexagon::after {
  content: "";
  border: inherit;
  position: absolute;
  top: -0.5vh;
  right: -0.5vh;
  background-color: #756e6a;
  border-radius: inherit;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: unset;
  box-sizing: unset;
}
footer .footer-bottom .social-media li .hexagon::before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
footer .footer-bottom .social-media li .hexagon::after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
footer .footer-bottom .social-media li:hover .hexagon {
  opacity: 1;
}
footer .footer-bottom li ion-icon {
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #e0fd02;
}
footer .footer-bottom li:hover ion-icon {
  color: #fff;
}
footer.footer_in {
  border-top: 1px solid #ededed;
}
footer p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
  padding: 0;
  font-family: medium;
}
footer .hef {
  color: #68605c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
