/* Full Page  */
.gap {
  height: 10px;
  width: 100%;
}

.connectBtn {
  border: 1px solid #FC4F02;
  border-radius: 5px;
  width: auto;
  padding: 10px 40px;
  font-size: 16px;
  color: #000;
  margin: 20px 0;
  text-decoration: none;
  text-align: left;
}

.connectBtn1 {
  border: 1px solid #FC4F02;
  width: auto;
  background-color: #FC4F02;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  text-align: left;
}

.connectBtn:hover {
  background-color: #FC4F02;
  margin-left: 5px;
  transition: 0.3s;
}

.left-animate-zoom {
  -webkit-animation-name: left-zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: left-zoom;
  animation-duration: 0.8s;
}

@-webkit-keyframes left-zoom {
  0% {
    transform: scale(1) translateX(-100%);
  }

  50% {
    transform: scale(0.5) translateX(0);
  }

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

@keyframes left-right-zoom {
  0% {
    transform: scale(1) translateX(-100%);
  }

  50% {
    transform: scale(0.5) translateX(0);
  }

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

.right-animate-zoom {
  -webkit-animation-name: right-zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: right-zoom;
  animation-duration: 0.8s;
}

@-webkit-keyframes right-zoom {
  0% {
    transform: scale(1) translateX(100%);
  }

  50% {
    transform: scale(0.5) translateX(0);
  }

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

@keyframes right-zoom {
  0% {
    transform: scale(1) translateX(100%);
  }

  50% {
    transform: scale(0.5) translateX(0);
  }

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

.box {
  padding: 30px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 5%);
  display: flex;
  align-items: flex-start;
  transition: all 1s linear;
}

.box:hover {
  border: 2px solid #FC4F02;
}

.box1 {
  padding: 30px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 5%);
  display: flex;
  align-items: flex-start;
  transition: all 1s linear;
  margin: 15px 0px;
}

.box1:hover {
  border: 2px solid #FC4F02;
}

.chat-section {
  border: 16px solid #000;
  border-radius: 50px;
  width: 60% !important;
}

.bot {
  z-index: 1;
  left: -50px;
  top: 150px;
}

.emoji {
  z-index: 1;
  right: -50px;
  top: 300px;
}

.verify {
  z-index: 1;
  left: -50px;
  top: 400px;
}

.like {
  right: -110px;
  top: 370px;
}

.heart {
  right: -100px;
  top: 200px;
}

.black-shadow {
  filter: drop-shadow(0px 0px 15px #9f9fa3);
}

.chat-block {
  width: 85%;
  float: left;
  text-align: left;
}

.chats {
  background-color: #E8EFF2;
  font-size: 12px;
  padding: 10px;
  line-height: normal;
}

.chat-block1 {
  float: right;
  text-align: left;
  width: 85%;
}

.chats1 {
  background-color: #060042;
  font-size: 12px;
  padding: 10px;
  color: #fff;
  line-height: normal;
}

.chat-block3 {
  width: 85%;
  float: left;
  text-align: left;
}

.chats3 {
  background-color: #E8EFF2;
  font-size: 12px;
  padding: 10px;
  margin-left: 4px;
  line-height: normal;
  position: relative;
}

.chats3::after {
  content: '';
  position: absolute;
  border: 10px solid transparent;
  left: 0px;
  border-right-color: #E8EFF2;
  bottom: -10px;
  transform: rotate(180deg);
}

.chat-block4 {
  width: 85%;
  float: right;
  text-align: left;
  position: relative;
}

.chats2 {
  background-color: #FC4F02;
  font-size: 12px;
  padding: 10px;
  color: #fff;
  line-height: normal;
  position: relative;
}

.chats2::after {
  content: '';
  position: absolute;
  border: 10px solid transparent;
  right: 0px;
  border-right-color: #FC4F02;
  bottom: -10px;
  transform: rotate(360deg);
}

.btns {
  width: 100%;
}

.btns button {
  width: 40%;
  font-size: 10px;
  color: #FC4F02;
  border: 2px solid #FC4F02;
  border-radius: 3px;
  background-color: #fff;
}

.btns button:hover {
  color: #fff !important;
  background-color: #FC4F02;
}

.chat-section1 {
  width: 65%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-height: 575px;
}

.chat-container1 {
  padding: 15px;
}

.l-chat {
  background-color: #E8EFF2;
  padding: 8px;
  margin: 7px 0px;
  font-size: 12px;
  max-width: 100%;
  border-radius: 6px;
  position: relative;
  display: inline-block;
}

.l-chat:nth-child(even)::before {
  content: '';
  position: absolute;
  border: 10px solid transparent;
  left: 0px;
  border-right-color: #E8EFF2;
  bottom: -10px;
  transform: rotate(180deg);
}

.r-chat {
  background-color: #fc4f02;
  color: #fff;
  float: right;
  padding: 8px;
  margin: 7px 0px;
  font-size: 12px;
  max-width: 100%;
  position: relative;
  border-radius: 6px;
}

.r-chat::after {
  content: '';
  position: absolute;
  border: 10px solid transparent;
  right: 0px;
  border-right-color: #FC4F02;
  bottom: -10px;
  transform: rotate(360deg);
}

.l-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
  margin: 7px 0px;
}

button {
  padding: 7px 14px;
  border: 2px solid #fc4f02;
  border-radius: 6px !important;
  text-decoration: none;
  color: #fc4f02;
  background-color: white;
  transition: 0.3s ease;
  font-size: 9px;
}

button:hover {
  background-color: #fc4f02;
  color: white;
}

.button-primary {
  background-color: #fc4f02;
  color: white;
}

.button-primary:hover {
  opacity: 0.9;
}

.img-card {
  display: flex;
  overflow-x: scroll;
  margin-top: 10px;
  gap: 10px;
}

.img-card img {
  border-radius: 10px;
  box-shadow: 0 2px 6px #545454a6;
  margin: 5px;
}

/* --------------------------accordion-------------------------- */



.acord-nrmltxt {
  font-size: 16px !important;
  line-height: normal;
  font-family: 'Roboto-Regular';
}

.acccord-tab1>.acccord-toggle1 {
  position: absolute;
  display: none;
  background: #F4F8FF;
}

.acccord-tab1>label {
  color: #000;
  background: #fff;
  font-size: 20px;
  line-height: normal;
  position: relative;
  display: block;
  padding: 25px 30px 30px 30px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px 8px 0px 0px;
  font-family: 'PTSans-Bold' !important;
}

.acccord-tab1>.acccord-content1 {
  max-height: 0;
  transition: all 0.8s;
  overflow: hidden;
  padding: 0 10px 0 60px;
  background: #F4F8FF;
  border-radius: 0 0 8px 8px;
}

.acccord-tab1>label:after {
  content: '\f078';
  position: absolute;
  top: 25px;
  right: 10px;
  font-family: fontawesome;
  transform: rotate(180deg);
  transition: transform .15s;
  margin-right: 5px;
}

.acccord-tab1>.acccord-toggle1:checked~label:after {
  transform: rotate(0deg);
  background: #F4F8FF;
}

.acccord-tab1>.acccord-toggle1:checked~.acccord-content1 {
  max-height: 110vh;
  border: 1px solid #B8CBF8;
  border-top: none;
  padding: 0px 20px 25px 60px;
}

.acccord-tab1>.acccord-toggle1:checked~label {
  background: #F4F8FF;
  /* Change background color when checked */
  border: 1px solid #B8CBF8;
  /* Add border when checked */
  border-bottom: none;
}


#slideImage {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.connect-btn {
  border: 1px solid #FC4F02;
  width: auto;
  background-color: #FC4F02;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  text-align: left;
}


span strong {
  font-family: 'PTSans-Bold' !important;
}


@media (min-width:0px) and (max-width:768px) {

  .box {
    display: block;
    margin: 10px 0px;
  }

  .box1 {
    display: block;
    margin: 10px 0px;
  }

  .chats {
    padding: 4px;
  }

  .chats1 {
    padding: 4px;
    color: #fff;
  }

  .chat-section1 {
    width: 95%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-height: 575px;
  }
}

@font-face {
  font-family: 'PTSans-Bold';
  src: url(../fonts/PTSans-Bold.ttf);
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url(../fonts/RobotoSlab-Regular.ttf);
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}