p img {
  display: inline-block;
}

.container {
  position: absolute;
  left: 0;
}

.whole-content {
  margin-left: 0 !important;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-text {
  max-width: 770px !important;
  display: flex;
  flex-direction: column;
}

.sub-text {
  width: 62%;
  text-align: center;
  align-self: center;
  font-size: 22.3px;
}

.question-header {
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
}

.customized-text {
  color: #ff1313;
  text-transform: uppercase;
}

a {
  cursor: pointer;
}

a span {
  cursor: text;
}

.btns-sect {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btns-sect button {
  margin-inline: 0.5rem;
  width: 100%;
}

.red {
  background: #ff1313 !important;
}

.red:hover {
  background: #fff !important;
  color: #ff1313 !important;
}

.grey {
  background: #d9d9d9 !important;
  color: #ff1313 !important;
  border: none !important;
}

.grey:hover {
  color: #ff1313 !important;
  background: #fff !important;
}

.mainNav {
  width: 100%;
}

.nav-bar {
  display: flex;
  justify-content: space-around;
}

.q-form {
  min-height: 376px;
}

.sidebar-heading {
  display: grid;
  justify-items: center;
}

.rotate-180 {
  transform: rotate(180deg);
  transition: 0.1s ease-in-out;
}

.rotate-0 {
  transform: rotate(0deg);
  transition: 0.1s ease-in-out;
}

.rotate-45 {
  transform: rotate(45deg);
  transition: 0.1s ease-in-out;
}

.profile {
  max-height: 25rem !important;
}

.list-style-dot {
  list-style: disc;
}

.side-card {
  min-height: 525px !important;
  max-height: 525px !important;
}

.side-card img {
  min-height: 525px !important;
  max-height: 525px !important;
}

.hover-danger {
  color: #fff !important;
}

.hover-danger:hover {
  color: #ff3131 !important;
}

.hover-info:hover {
  color: #0dcaf0 !important;
}

.hover-white:hover {
  color: #fff !important;
}

.bg-gradient-down {
  background: linear-gradient(
    to bottom,
    #000000ed,
    #00000000,
    #00000000,
    #00000000,
    #00000000
  );
}

.bg-gradient-cover {
  background: linear-gradient(
    to bottom,
    #000000a8,
    #f9d42300,
    #f9d42300,
    #f9d42300,
    #00000082
  );
}

.bg-gradient-top {
  background: linear-gradient(to top, #000000ed, #00000000, #00000000);
}

.card-action-btn {
  border: none;
  outline: none;
  transition: 0.5s;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
}

.product-card:hover .card-action-btn {
  opacity: 1;
  pointer-events: all;
}

.transition-100 {
  transition: 1s ease-in-out !important;
}
.transition-75 {
  transition: 0.75s ease-in-out !important;
}
.transition-50 {
  transition: 0.5s ease-in-out !important;
}
.transition-25 {
  transition: 0.25s ease-in-out !important;
}
.transition-10 {
  transition: 0.1s ease-in-out !important;
}

@media only screen and (max-width: 767px) {
  .chat-app .chat-history {
    height: 300px;
    overflow-x: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .chat-app .chat-list {
    height: 650px;
    overflow-x: auto;
  }
  .chat-app .chat-history {
    height: 600px;
    overflow-x: auto;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .chat-app .chat-list {
    height: 480px;
    overflow-x: auto;
  }
  .chat-app .chat-history {
    height: calc(100vh - 350px);
    overflow-x: auto;
  }
}

:focus-visible {
  -webkit-appearance: none !important;
  outline: none;
}

.main-bg {
  background: url(../../../../background.jpg) no-repeat fixed;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Webkit scrollbar styles */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent; /* Background of the track */
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #4d4c4c; /* Scrollbar thumb color */
  border-radius: 10px; /* Padding around the thumb */
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #707070; /* Scrollbar thumb color */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spin-animation {
  animation: spin 250s linear infinite; /* Adjust duration as needed */
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations */
.animate-left {
  animation: slideInLeft 1s ease-in-out;
}

.animate-right {
  animation: slideInRight 1s ease-in-out;
}

.zoom-in-animation {
  animation-name: zoomIn;
  animation-duration: 600ms;
  animation-timing-function: ease;
  animation-delay: 700ms;
  animation-direction: normal;
  animation-fill-mode: both;
}

.scrollingWrapper {
  animation: scrollNews 20s linear infinite;
  display: flex;
}
.scrollingWrapper:hover {
  animation-play-state: paused;
}
@keyframes scrollNews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Initial circular layout for social media icons */
.social-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 1s ease;
}

/* Default small icon size and circular arrangement */
.social-item {
  opacity: 1;
  transition: transform 1s ease;
  margin: 0;
}

.social-item i {
  font-size: 18px;
  transition: all 1s ease;
}

/* Hover effect to spin and expand the social links */
.social-container:hover {
  width: 100%;
  height: auto;
  border-radius: 5%;
}

.social-container:hover .social-item i {
  opacity: 1;
  animation: reverse-spin 0.45s linear 2;
}

.social-container:not(:hover) .social-item i {
  animation: spin 0.5s linear 2 forwards;
}

/* Reverse spin animation keyframes */
@keyframes reverse-spin {
  0% {
    transform: rotate(360deg);
  }
  33% {
    transform: rotate(240deg);
  }
  66% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.social-item:hover .social-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.zoom-ref div {
  width: 100%;
}

.masonry-container {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .masonry-container {
    column-count: 2;
  }
}
