@import url("../css/bootstrap.css");
/*@import url('../css/animate.css');*/
@import url("../css/slick.css");
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inder&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Soccer League";
  src: url("../fonts/soccer_league/SoccerLeague-Italic.woff2") format("woff2"),
    url("../fonts/soccer_league/SoccerLeague-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

a {
  font-family: "Oswald", sans-serif;
}

P {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Soccer League";
}

li,
a {
  font-family: "Oswald", sans-serif;
}

.sub-nav-line a {
  color: #fff;
}

.sign-up-btn a {
  background: red;
  color: white;
  padding: 5px 10px 5px;
  border-radius: 2px;
}

.site-logo img {
  width: 100%;
}

/* font-family: "Roboto", sans-serif; */

:root {
  --theme-color: #ed1d23;
  --theme-color-invert: #ed1d23;
  --theme-color-2: #efefef;
  --theme-color-3: #e8e8e8;
  --theme-color-4: #c7c7c7;
  --theme-color-6: #000;
  --theme-color-7: #fff;
  --theme-color-8: #d1d2d8;
  --theme-filter-black: brightness(0) saturate(100%) invert(0%) sepia(84%)
    saturate(7500%) hue-rotate(328deg) brightness(114%) contrast(114%);
  --theme-filter-white: brightness(0) saturate(100%) invert(100%) sepia(1%)
    saturate(332%) hue-rotate(264deg) brightness(114%) contrast(100%);
  --inverted-theme-color-invert: #fff;
  --inverted-theme-color-2: #101010;
  --inverted-theme-color-3: #171717;
  --inverted-theme-color-4: #383838;
  --inverted-theme-color-6: #fff;
  --inverted-theme-color-7: #000;
  --inverted-theme-color-8: linear-gradient(175deg, #ed1d23, #000000);
  --inverted-theme-filter-black: brightness(0) saturate(100%) invert(100%)
    sepia(1%) saturate(332%) hue-rotate(264deg) brightness(114%) contrast(100%);
  --inverted-theme-filter-white: brightness(0) saturate(100%) invert(0%)
    sepia(84%) saturate(7500%) hue-rotate(328deg) brightness(114%)
    contrast(114%);
}

body.inverted {
  --theme-color-invert: var(--inverted-theme-color-invert);
  --theme-color-2: var(--inverted-theme-color-2);
  --theme-color-3: var(--inverted-theme-color-3);
  --theme-color-4: var(--inverted-theme-color-4);
  --theme-color-6: var(--inverted-theme-color-6);
  --theme-color-7: var(--inverted-theme-color-7);
  --theme-color-8: var(--inverted-theme-color-8);
  --theme-filter-black: var(--inverted-theme-filter-black);
  --theme-filter-white: var(--inverted-theme-filter-white);
}

body {
  background-color: var(--theme-color-2);
  color: var(--inverted-theme-color-2);
}

.theme-btn {
  letter-spacing: 2.37px;
  text-transform: uppercase;
  background-color: var(--theme-color);
  color: #fff !important;
  padding: 10px 21px;
  font-size: 14px;
  display: inline-block;
  transition: 0.2s all;
  border: 1px solid transparent;
}

.theme-btn:hover {
  color: var(--theme-color) !important;
  background-color: transparent;
  border: 1px solid var(--theme-color);
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

/* THEME__CHANGER__BUTTON__STARTS */

.toggle_btn {
  display: flex;
  align-items: center;
}

.checkbox {
  display: none; /* Hide default checkbox */
}

.checkbox-label {
  width: 50px;
  height: 25px;
  background-color: var(--theme-color-4);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}

.ball {
  width: 20px;
  height: 20px;
  background-color: white;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: left 0.3s;
}

.checkbox:checked + .checkbox-label {
  background-color: var(--theme-color); /* Change background when toggled */
}

.checkbox:checked + .checkbox-label .ball {
  left: 25px; /* Move the ball to the right */
}

/* THEME__CHANGER__BUTTON__ENDS */

.sub-nav-line li {
  display: inline-block;
  padding: 15px 30px 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 20px 0 25px;
  position: absolute;
  top: 10px;
  width: 100%;
  background: #0000004d;
}

.search-field {
  position: relative;
}

.search-icn {
  position: absolute;
  top: 18%;
  left: 85%;
}

.banner-top {
  /*background-image: url(../images/banner-bg.png);*/
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 50px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.wishlist {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0px 0 0px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 30px;
}

.pulls-rating {
  text-align: center;
}

.search-icn i {
  color: #ff0000;
}

.search-field input#exampleFormControlInput1 {
  background: #ebebeb36;
  border: none;
  padding: 5px 20px 5px;
  border-radius: 25px;
  color: white;
}

.search-field input::placeholder {
  color: white;
  font-size: 12px;
}

.buffalo h4 {
  font-size: 20px;
  color: var(--theme-color-6);
}

.pulls-rating h5 {
  font-size: 17px;
  color: var(--theme-color-6);
}

.pulls-rating p {
  font-size: 14px;
  color: var(--theme-color-6);
}

.banner-txt h1 {
  font-size: 55px;
  color: #fff;
}

.banner-txt p {
  font-size: 15px;
  font-weight: 200;
  text-transform: capitalize;
  color: #fff;
}

.banner-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-one a {
  background: var(--theme-color);
  padding: 7px 30px 7px;
  color: #fff;
  border: 1px solid var(--theme-color);
  transition: 0.2s all;
}

.btn-two a {
  background: #fff;
  padding: 7px 30px 7px;
  color: #000;
  transition: 0.2s all;
  border: 1px solid transparent;
}

.wish-box {
  margin: 75px 0 0;
  background: linear-gradient(175deg, #ed1d23, #000000);
  border: 1px solid #708090bd;
  padding: 40px 15px 40px;
  width: 100%;
}

.banner-txt {
  padding: 0 90px 0;
}

.adds-head h2 {
  color: var(--theme-color-6);
  font-size: 45px;
}

.adds-head span {
  color: red;
}

.adds-head {
  text-align: center;
  padding: 0 0 90px;
}

.adds-head p {
  color: var(--theme-color-6);
  text-transform: capitalize;
}

.logo-adds {
  padding: 60px 0 60px;
}

.brand-slides {
  width: 100px;
  height: 100px;
  position: relative;
}

.brand-slides.slick-center::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18%;
  background: linear-gradient(
    180deg,
    rgba(237, 29, 35, 0) 0%,
    rgba(237, 29, 35, 1) 100%
  );
  width: 65%;
  height: 60%;
  margin: 0 auto;
  z-index: -1;
}

.brand-slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.adds-head {
  position: relative;
  text-align: center; /* Center align text */
}

.adds-head::before {
  content: "";
  position: absolute;
  left: 52%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background-color: var(--theme-color-4);
  border-radius: 2px;
  top: 22%;
}

.learn-more {
  text-align: center;
}

.fearure-head h2 {
  color: white;
  font-size: 40px;
}

.fearure-head span {
  color: black;
}

.key-feature {
  background-image: url(../images/key-feature-bg.png);
  padding: 90px 0 90px;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-txt p {
  color: white;
}

.fearure-head {
  position: relative;
  text-align: center; /* Center align text */
  border-right: 1px solid white;
}

.fearure-head::before {
  content: "";
  position: absolute;
  left: 25%;
  transform: translateX(-50%);
  width: 115px;
  height: 1px;
  background-color: var(--theme-color-4);
  border-radius: 2px;
  top: 97%;
}

.feature-txt {
  padding: 0 20px 0;
}

.learn-more a {
  background: black;
  color: white;
  padding: 10px 30px 10px;
}

.box-img {
  background-color: var(--theme-color);
  display: inline-block;
  padding: 14px 13px;
  border-radius: 50px;
  transition: 0.2s all;
}

.box-img img {
  width: 100%;
  height: 100%;
}

.chat-box h3 {
  font-size: 35px;
  color: var(--theme-color-6);
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-box p {
  font-size: 16px;
}

.chat-box {
  text-align: center;
  background: var(--theme-color-7);
  padding: 35px 0 35px;
  border-radius: 11px;
  transition: 0.2s all;
  border: 7px solid transparent;
}

.chat-box p {
  color: var(--theme-color-6);
}

.chat-box i {
  color: var(--theme-color-7) !important;
}

.chat-and-others {
  padding: 60px 0 60px;
  margin-top: -130px;
}

.box-img img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(2%)
    hue-rotate(219deg) brightness(108%) contrast(100%);
  transition: 0.2s all;
}

.chat-box:hover .box-img img {
  filter: brightness(0) saturate(100%);
}

.chat-box:hover .box-img {
  background-color: #fff;
}

.chat-box:hover {
  background-color: var(--theme-color);
  border: 7px solid var(--theme-color-2);
}
.ready-to-join {
  background-image: url(../images/join-bg.png);
  padding: 160px 0 160px;
  background-repeat: no-repeat;
  background-size: cover;
}

.join-head h1 {
  color: white;
  font-size: 50px;
}

.join-head span {
  color: black;
}

.join-head {
  text-align: center;
}

.join-head p {
  color: white;
}

.join-head h1 {
  position: relative;
}

.join-head h1::before {
  content: "";
  position: absolute;
  left: 52%;
  transform: translateX(-50%);
  width: 160px;
  height: 2px;
  background-color: var(--theme-color-4);
  border-radius: 2px;
  bottom: 0px;
}

.join-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0 0;
}

.join-one a {
  background: black;
  color: white;
  padding: 8px 30px 8px;
  font-size: 14px;
}

.join-two a {
  color: white;
  border: 1px solid white;
  padding: 6px 15px 6px;
  font-size: 14px;
}

.footer-logo-img {
  z-index: 99;
  position: sticky;
  top: 0;
}

.footer-logo {
  position: relative;
  text-align: center;
}

.half-cut {
  position: absolute;
  top: -35%;
  left: 37%;
}

.half-cut img {
  width: 70%;
}

.footer-sec {
  background-image: url(../images/footer-bg.png);
  padding: 70px 0 80px;
  background-repeat: no-repeat;
  background-size: cover;
}

.social-media ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 100px 0 0;
  position: relative;
  left: 63px;
  margin-bottom: 0;
}

.social-media a {
  color: white;
  font-size: 18px;
  font-weight: 300;
}

/* TRANSLATOR */

.switch {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.switch > span {
  position: absolute;
  top: 14px;
  pointer-events: none;
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  width: 50%;
  text-align: center;
}

input.check-toggle-round-flat:checked ~ .off {
  color: #f36f25;
}

input.check-toggle-round-flat:checked ~ .on {
  color: #fff;
}

.switch > span.on {
  left: 0;
  padding-left: 2px;
  color: #f36f25;
}

.switch > span.off {
  right: 0;
  padding-right: 4px;
  color: #fff;
}

.check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input.check-toggle-round-flat + label {
  padding: 2px;
  width: 60px;
  height: 30px;
  background-color: #400011;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 93px;
}
input.check-toggle-round-flat + label:before,
input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}

input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: #400011;
  -webkit--moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}

input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 23px;
  background-color: #fff;
  -webkit-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  -o-border-radius: 52px;
  border-radius: 68px;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
}

input.check-toggle-round-flat:checked + label:after {
  margin-left: 25px;
}

/* TRANSLATOR */

.trans-three p,
.trans-one p {
  color: white;
  margin: 0 0 4px 0px;
  font-size: 12px;
}

.inner-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ed1d23;
  padding: 14px 20px 10px 20px;
  border-radius: 50px;
}

.translator-btn-main {
  display: flex;
  justify-content: center;
  padding: 57px 0;
}

.footer-nav a {
  color: white;
  font-size: 15px;
  font-family: "Poppins";
}

.footer-nav ul {
  display: flex;
  gap: 25px;
  justify-content: center;
  position: relative;
  right: 140px;
  margin-bottom: 0;
}

.footer-nav a:hover {
  border-bottom: 1px solid white;
}

.learn-more a:hover {
  background: transparent;
  color: black;
  transition: 0s all;
}

.btn-one a:hover {
  background: transparent;
  color: white;
}

.btn-two a:hover {
  background: transparent;
  color: white;
  border: 1px solid;
}

.join-one a:hover {
  background: transparent;
  color: black;
  transition: 0s all;
}

.join-two a:hover {
  background: transparent;
  color: black;
  transition: 0s all;
  border: none;
}

.sub-nav-line a:hover {
  border-bottom: 1px solid white;
}

.sign-up-btn a:hover {
  background: transparent;
  color: white;
  transition: 0s all;
}

/* ABOUT__US__SEC__START */

.abt-banner-txt h1 {
  text-align: center;
  font-size: 60px;
  color: white;
}

.abt-img-main img {
  width: 100%;
  max-width: 600px;
}

.abt-heading p::after {
  content: "";
  background: transparent;
  width: 80px;
  height: 80px;
  position: absolute;
  border: 2px solid lightgrey;
  border-radius: 50px;
  left: -50%;
  bottom: -20px;
  z-index: -1;
}

.abt-heading p {
  position: relative;
  background: var(--theme-color-3);
  color: red;
  display: inline-block;
  padding: 5px 20px;
}

.abt-heading h2 {
  font-size: 60px;
  padding: 10px 0 5px;
  color: var(--theme-color-6);
}

.abt-heading span {
  color: var(--theme-color-invert);
}

.invertor-txt p {
  color: var(--theme-color-6);
}

.bottom-pra-txt {
  padding: 30px 0 30px;
}

.abt-sec {
  padding: 60px 0 50px;
  background-image: url(../images/about-us-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.bottom-pra-txt p {
  color: var(--theme-color-6);
}

/* ABOUT__US__SEC__ENDS */

/* TRENDING__START */

.trending-table {
  padding: 60px 0 50px;
  background-image: url(../images/about-us-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.trending-head h3 {
  padding: 0 37px 0;
  color: var(--theme-color-6);
}

.trending-tabs ul#myTab {
  border: transparent;
}

.trending-tabs button#home-tab {
  background: transparent;
  border: transparent;
  color: red;
}

.trending-tabs button#profile-tab {
  background: transparent;
  border: transparent;
}

.trending-tabs button#contact-tab {
  background: transparent;
  border: transparent;
}

.trending-tabs button#watcher-tab {
  background: transparent;
  border: transparent;
}

.trending-tabs {
  padding: 62px 40px 0;
  position: relative;
}

.trending-tabs .nav-tabs .nav-item.show .nav-link,
.trending-tabs .nav-tabs .nav-link.active {
  color: red;
}

.trending-tabs .nav-tabs .nav-item.show .nav-link,
.trending-tabs .nav-tabs .nav-link.active:before {
  content: "";
  width: 45px;
  height: 1px;
  background: red;
  position: absolute;
  bottom: 20%;
  /* left: 5%; */
}

button#profile-tab {
  color: var(--theme-color-6);
}

button#contact-tab {
  color: var(--theme-color-6);
}

button#watcher-tab {
  color: var(--theme-color-6);
}

button#home-tab {
  color: var(--theme-color-6);
}

.trending-table .nav-link {
  position: relative;
}

.trending-table .nav-link.active:before {
  content: "";
  width: 45px;
  height: 1px;
  background: red;
  position: absolute;
  bottom: 10%;
  left: 5% !important;
}

.tab-inner-body li {
  display: inline-block;
  padding: 20px 10px 0;
}

.tab-inner-body a {
  color: #686868;
  font-weight: 500;
}

li.active {
  background: red;
  padding: 7px 10px 7px;
}

li.active a {
  color: white;
}

.accordian-header-flex-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  position: relative;
}

.score-count {
  display: flex;
  gap: 40px;
}

.score p {
  margin: 0;
  color: white;
}

.totalscore p {
  margin: 0;
}

.buffalo h3 {
  margin: 0;
}

.tab-inner-body .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 6 Pro" !important;
  background-image: none;
  margin: 0px;
  position: absolute;
  top: 26px;
  right: -40px;
  font-size: 30px;
  font-weight: 600;
  color: red;
  width: 18px;
  height: 18px;
}

.tab-inner-body .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg) !important;
}

.tab-inner-body button.accordion-button {
  background: linear-gradient(175deg, #ed1d23, #000000);
  border-radius: 0 !important;
}

.tab-inner-body .accordion-item {
  margin: 0 0 15px;
  border: none;
  border-radius: 0px;
}

.buffalo h3 {
  color: aliceblue;
}

.totalscore p {
  margin: 0;
  color: white;
}

a.page-link {
  background: transparent;
  border: transparent;
  color: var(--theme-color-6);
}

.page-pagination ul.pagination {
  justify-content: end;
}

.team-flex-one h3 {
  font-size: 30px;
  margin: 0;
  color: var(--inverted-theme-color-6);
}

.team-flex-one p {
  margin: 0;
  color: var(--inverted-theme-color-6);
}

.team-names {
  display: flex;
  align-items: center;
  gap: 55px;
}

.teams-select {
  background: linear-gradient(175deg, #ed1d23, #000000);
  padding: 5px 60px 5px;
  margin: 25px 0 0;
  position: relative;
}

.team-number {
  position: absolute;
  top: 25%;
  left: -3%;
}

.team-number h4 {
  color: white;
  background: black;
  padding: 4px 14px 4px;
  border-radius: 25px;
}

/* TRENDING__END */

/*.brand-slides:before {*/
/*  content: '';*/
/*  width: 130px;*/
/*  height: 70px;*/
/*  position: absolute;*/
/*  background: linear-gradient(175deg, #ED1D23, #000000);*/
/*  left: 26%;*/
/*  bottom: -13%;*/
/*  z-index: -1;*/
/*}*/

.brand-slides {
  position: relative;
}

.buffalo-bills {
  padding: 50px 0 50px;
  background-image: url(../images/about-us-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* TABS___CODEPEN__STARTS */

/* .tabs-wrapper {
  max-width: 500px;
  width: 100%;
} */

.tabs {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  padding: 0 0 20px;
  li {
    cursor: pointer;
    padding: 5px 35px;
    border-radius: 0px;
    /* border: 1px solid #DDD; */
    background-color: transparent;
    transition: 0.25s;
    color: var(--theme-color-6);
    border: 1px solid var(--theme-color-6);

    &:hover {
      border-color: #111;
      color: var(--theme-color-2);
      background-color: var(--theme-color-6);
    }
    &.active {
      border-color: red;
      color: #fff;
      background-color: red;
      text-transform: uppercase;
    }
  }
}

.tab-content-wrappers .tab-content {
  display: none;
  margin-top: 10px;
  border-radius: 5px;
  h2 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
  }
  p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* TABS___CODEPEN__ENDS */

.buffalo {
  margin: 0px 0 0;
  /*width: 270px;*/
}

div#tab1 p {
  /* width: 143%; */
  color: var(--theme-color-6);
}

.buffalo-post input#exampleFormControlInput2 {
  padding: 15px 70px 15px;
  border-radius: 40px;
  background: var(--theme-color-4);
  border: transparent;
}

.buffalo-post {
  position: relative;
}

.user {
  position: absolute;
  top: 10%;
  left: 3%;
}

.user {
  background: red;
  padding: 8px 10px 8px;
  border-radius: 25px;
}

.plus-user {
  position: absolute;
  top: 31%;
  left: 91%;
}

.plus-user i {
  font-size: 25px;
  color: var(--theme-color-6);
}

.post-one ul {
  display: flex;
  align-items: center;
}

.post-one li {
  padding: 0 10px 0;
}

.post-one i {
  font-size: 20px;
  color: var(--theme-color-6);
}

.post-flex {
  display: flex;
  justify-content: space-between;
  padding: 35px 10px 0;
  /* align-items: center; */
  width: 100%;
  max-width: 600px;
}

.post-two a {
  background: red;
  color: white;
  padding: 10px 15px 10px;
}

.top-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-user p {
  margin: 0;
  font-size: 14px;
  color: var(--theme-color-6);
  font-weight: 600;
}

.post-show {
  padding: 50px 0 0;
}

.player-post img {
  width: 100%;
  padding: 15px 0 0;
}

.buffalo-post {
  width: 100%;
  max-width: 600px;
}

.pic-post ul {
  display: flex;
  align-items: center;
}

.pic-post li {
  padding: 0 10px 0;
}

.pic-post a {
  color: var(--theme-color-6);
  font-size: 20px;
}

.post-comments p {
  margin: 0;
  color: red;
}

.post-like p {
  color: var(--theme-color-6);
  font-size: 13px;
}

.comment-type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-type p {
  margin: 0;
  font-size: 14px;
  color: var(--theme-color-6);
}

.comment-type {
  padding: 20px 0 0;
}

.comment-type img {
  width: 10%;
}

.side-post {
  text-align: center;
}

.side-post-one p {
  color: var(--theme-color-6);
}

.side-post-two p {
  color: var(--theme-color-6);
}

.page-pagination ul.pagination .next {
  justify-content: center !important;
  padding: 20px 0 0;
}

div#myTabContent {
  display: block !important;
}

.post-discription h3 {
  font-size: 37px;
  color: var(--theme-color-6);
}

.post-discription span {
  color: red;
}

.post-discription h3 {
  position: relative;
}

.post-discription h3::before {
  content: "";
  width: 150px;
  height: 2px;
  background: darkgrey;
  position: absolute;
  bottom: -4%;
  left: -1%;
}

.post-discription p {
  color: var(--theme-color-6);
}

.last-active p {
  font-size: 20px;
  font-weight: 700;
  color: red;
}

.base-player img {
  width: 100%;
}

.story-one {
  width: 30%;
}
.story-two {
  width: 30%;
}
.story-one img {
  width: 100%;
}

.mini-posts {
  display: flex;
  gap: 55px;
  padding: 90px 0 0;
}

.story-disc span {
  color: red;
}

.story-disc h4 {
  color: var(--theme-color-6);
}

.story-disc h4 {
  position: relative;
}

.story-disc h4::before {
  content: "";
  width: 125px;
  height: 1px;
  background: grey;
  position: absolute;
  bottom: -23%;
  left: -13%;
}

.story-disc p {
  font-size: 14px;
  color: var(--theme-color-6);
}

.count-timer p {
  margin: 0;
  font-weight: 700;
  font-size: 17px;
  color: red;
}

.chat-box:hover h3 {
  color: #fff;
}

.chat-box:hover p {
  color: #fff;
}

/**/

.minus {
  position: relative;
  display: inline-block;
}

.minus::after {
  content: "Remove From Wishlist";
  position: absolute;
  top: -30px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  pointer-events: none;
}

.minus:hover::after {
  opacity: 1;
  visibility: visible;
}

.minus {
  position: relative;
  display: inline-block;
  padding: 7px 10px 7px;
  border-radius: 60%;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}

.minus:hover {
  background-color: red; /* Red background on hover */
}

.side-post-one img {
  width: 100%;
  max-width: 170px;
}

.side-post-two img {
  width: 100%;
  max-width: 170px;
}

.base-player {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.base-player:hover {
  transform: scale(1.05); /* Slight zoom effect */
}

.story-one {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.story-one:hover {
  transform: scale(1.05); /* Slight zoom effect */
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: red;
  color: white;
  padding: 10px 20px 10px;
  border-radius: 25px;
}

.page-pagination.next-right {
  position: relative;
  left: -30%;
  padding: 20px 0 0 !important;
}

.abt-img-main img {
  animation: moveUpDown 1s infinite alternate ease-in-out;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

.player-post img {
  transition: transform 0.3s ease-in-out;
}

.player-post:hover img {
  transform: scale(1.1);
}

.side-post-one img {
  transition: transform 0.3s ease-in-out;
}

.side-post-one:hover img {
  transform: scale(1.1);
}

.side-post-two img {
  transition: transform 0.3s ease-in-out;
}

.side-post-two:hover img {
  transform: scale(1.1);
}

.buffalo-chart .wish-box {
  background: var(--theme-color-8) !important;
}

h4.color-change {
  color: white;
}

h5.color-change {
  color: white;
}

p.color-change {
  color: red;
}

/* Profile Page Start */

body:has(.dash-section) {
  background-color: var(--theme-color-6);
}

.dash-section {
  padding: 55px 0;
}

.dash-left .pulls-rating h5 {
  font-family: "Oswald";
}

.profile-txt a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--theme-color-2);
}

section.payment-section h1, section.payment-section h5, section.payment-section p {
  color: var(--theme-color-7) !important;
}
section.payment-section .ti-check-box {
  color: var(--theme-color-7) !important;
}

section.payment-section button {
  background-color: var(--theme-color) !important;
  color: var(--theme-color-7) !important;
  border-radius: 0px;
}

.InputElement {
  color: var(--theme-color-7) !important;
}

.profile-txt a h5 {
  display: flex;
  align-items: center;
  gap: 12px;
  /* color: #FFF; */
  color: var(--theme-color-7);
  font-family: "Roboto";
  margin: 0;
}

.profile-txt a h6 {
  background-color: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.profile-dropdown {
  margin-top: 40px;
}

.profile-dropdown ul {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.profile-txt {
  margin-bottom: 27px;
}

.profile-dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 21px;
}

.profile-dropdown ul li a.active-nav h5 {
  color: var(--theme-color);
  font-weight: bold;
}

.profile-dropdown ul li a h5 {
  margin: 0;
  font-family: "Roboto";
  color: var(--theme-color-7);
  /* color: #fff; */
  font-weight: 300;
  font-size: 16px;
}

.profile-dropdown ul li a img {
  width: 47px;
  height: 20px;
  object-fit: contain;
  filter: var(--theme-filter-white);
  filter: #000;
}

.profile-dropdown ul li {
  margin-bottom: 24px;
}

.profile-dropdown ul li:last-child {
  margin: 0 0 38px;
}

.profile-post {
  background-color: var(--theme-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  border: 1px solid transparent;
}

.profile-post a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
}

.dash-left .wish-box {
  margin-top: 46px;
  border: 1px solid #ed1d2320;
  background: linear-gradient(
    180deg,
    rgba(237, 29, 35, 0.3) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.profile-txt a img {
  transform: rotate(0);
  transition: 0.2s all;
}

.profile-dropdown.open .profile-txt a img {
  transform: rotate(-90deg);
  transition: 0.2s all;
  filter: var(--inverted-theme-filter-black);
}

.dash-search form input {
  background: #ebebeb33;
  border-radius: 36px;
  border: 0;
  padding: 13px 49px 13px 28px;
  width: 100%;
  font-size: 15px;
  color: var(--theme-color-7);
  outline: 0;
}

.dash-nav-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 45px;
}

.dash-nav ul {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-nav {
  width: 65%;
}

.dash-search {
  width: 31%;
  position: relative;
}

.dash-search form img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.dash-nav ul li a {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--theme-color-7);
  letter-spacing: 2.37px;
}

.dash-nav ul li.li-chat {
  margin: 0;
  display: inline-flex;
}

.dash-score-wrap-flex {
  display: flex;
  width: 100%;
  gap: 15px;
}

.dash-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-score-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-score-wrap-flex h5 {
  margin: 0;
  font-size: 13px;
  font-family: "Roboto";
  color: var(--theme-color);
}

.dash-score-flex h6 {
  color: var(--theme-color-7);
  font-size: 13px;
  font-weight: 300;
  font-family: "Roboto";
  margin: 0;
}

.dash-score-flex h6 span {
  color: var(--theme-color);
}

.dash-score-main-flex {
  display: flex;
  align-items: center;
  gap: 23px;
}

.dash-score-more a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-score-more h6 {
  color: var(--theme-color-7);
  margin: 0;
  font-family: "Oswald";
  text-transform: uppercase;
  letter-spacing: 2.37px;
}

.dash-score-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}

.blog-box {
  margin-bottom: 46px;
}

.blog-box:last-child {
  margin: 0;
}

.blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.blog-head h5 {
  margin: 0;
  color: var(--theme-color-7);
  font-size: 18px;
  text-transform: capitalize;
  font-family: "Roboto";
  font-weight: 400;
  line-height: 0;
}

.blog-head a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color);
}

.blog-head a img {
  margin: 3px 0 0;
}

.blog-txt {
  margin-bottom: 13px;
}

.blog-txt a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-txt p {
  margin: 0;
  color: var(--theme-color-7);
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-txt img {
  width: 60px;
  height: 60px;
}

.blog-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-user img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.blog-user p {
  color: var(--theme-color-7);
  margin: 0;
  font-size: 13px;
}

.blog-user span {
  font-size: 13px;
  color: var(--theme-color-7);
  opacity: 50%;
}

.dash-ad-img {
  width: 192px;
  height: 107px;
}

.dash-ad-img img {
  width: 100%;
  border-radius: 6px;
}

.dash-ad-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-ad-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dash-ad-wrap h6 {
  color: var(--theme-color-7);
  margin: 0;
}

.dash-ad-wrap h5 {
  color: var(--theme-color);
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

.dash-ad-wrap h5 span {
  color: #ffffff80;
}

.dash-stop {
  display: flex;
  gap: 8px;
  align-items: center;
}

.stoper {
  width: 23px;
  height: 23px;
  background: var(--theme-color);
  border-radius: 50%;
}

.dash-stop p {
  margin: 0;
  color: var(--theme-color-7);
}

.post-add-wrap {
  position: relative;
  margin-top: 30px;
}

.post-add-wrap form input {
  width: 100%;
  border-radius: 50px;
  border: 0;
  background: #ffffff33;
  padding: 22px 30px 22px 70px;
  font-size: 15px;
  font-family: "Roboto";
  font-weight: 400;
  color: #fff;
  outline: none;
}

.post-add-wrap a {
  position: absolute;
  top: 14px;
  left: 15px;
  background-color: var(--theme-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-add-wrap a:last-child {
  background: none;
  left: 93%;
  width: auto;
  height: auto;
  top: 40%;
}

.post-add-btn-img a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(151deg) brightness(93%) contrast(113%);
  width: 20px;
  height: 20px;
}

.post-add-btn-img img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(151deg) brightness(93%) contrast(113%);
  width: 20px;
  height: 20px;
}

.post-add-btn-img {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-add-btn-wrap {
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-tabs {
  margin: 50px 0 0 0;
}

.post-tabs ul.nav-tabs {
  width: 100%;
  border: 0;
}

.post-tabs ul.nav-tabs li {
  width: 50%;
}

.post-tabs ul.nav-tabs li button {
  width: 100%;
  background: none;
  border-bottom: 1px solid #d9d9d933 !important;
  border: 0;
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-size: 15px;
  outline: none;
}

.post-tabs ul.nav-tabs li button.active {
  background: 0;
  border: 0;
  border-color: #d9d9d9;
}

.post-tabs ul.nav-tabs li button.active {
  color: var(--theme-color);
  border-color: var(--theme-color) !important;
}

.watch-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 30px 0 0;
}

.watch-wrap a {
  border: 1px solid #fff;
  padding: 14px 28px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s all;
}

.watch-wrap-img {
  position: relative;
  display: flex;
}

.watch-wrap-img::after {
  content: "Lorem Ipsum dolor sit amet";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: black;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  pointer-events: none;
  text-transform: capitalize;
  font-family: "Roboto";
}

.watch-wrap-img:hover::after {
  opacity: 1;
  visibility: visible;
}

.watch-wrap a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.post-section {
  margin: 40px 0 0 0;
}

.post-user {
  margin-bottom: 25px;
}

.post-user .profile-txt {
  margin: 0;
}

.post-img a img {
  width: 100%;
}

.post-user .profile-txt h5 {
  font-size: 16px;
}

.post-user .profile-txt a {
  gap: 18px;
}

.post-img {
  margin-bottom: 20px;
}

.post-react {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}

.post-react a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.post-likes span {
  color: var(--theme-color);
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 400;
}

.post-caption {
  margin: 13px 0 13px 0;
}

.post-caption p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.post-caption p b {
  font-weight: 600;
}

.post-comment-img {
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  border-radius: 50%;
}

.post-comment {
  display: flex;
  align-items: center;
  gap: 18px;
}

.post-comment input {
  border: 0;
  background: 0;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto";
  width: 89%;
  outline: none;
  color: #fff;
}

.post-box {
  margin-bottom: 60px;
}

.view-more-btn {
  text-align: right;
}

.view-more-btn2 {
  text-align: center;
  margin: 70px 0 0;
}

.profile-user {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

.prem-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 5px 0;
}

.profile-img {
  position: relative;
}

.prem {
  position: absolute;
  right: -10px;
}

.prem-flex h5 {
  margin: 0 0 0 0;
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-weight: bold;
}

.profile-wrap h4 {
  margin-bottom: 10px;
  color: var(--theme-color);
  font-family: "Roboto";
  font-size: 18px;
  font-weight: bold;
}

.prem-score {
  background-image: url(../images/grey-grad.png);
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  width: 45px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(272deg,rgba(100, 39, 20, 1) 13%, rgba(253, 194, 125, 1) 48%, rgba(62, 16, 10, 1) 90%); */
}

.prem-score h6 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.follow-flex {
  display: flex;
  align-items: center;
  gap: 22px;
}

.follow-flex a {
  padding: 10px 14px;
  font-size: 12px;
}

.follow-flex .dropdown button {
  border: 1px solid #fff;
  background: 0;
  border-radius: 50%;
  padding: 0;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-flex .dropdown button::after {
  content: unset;
}

.follow-flex .dropdown button img {
  width: 17px;
  height: 5px;
  object-fit: contain;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--theme-color);
}

.dropdown-menu {
  padding: 0;
}

.dropdown-item {
  transition: 0.2s all;
  font-size: 15px !important;
}

.other-profile-section p {
  color: var(--theme-color-7);
  font-size: 15px;
  font-family: "Roboto";
  font-weight: 400;
  margin-bottom: 15px;
}

.stragety {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.stragety h6 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--theme-color);
  font-family: "Oswald";
  letter-spacing: 1.27px;
  margin: 0;
}

.stragety h5 {
  font-size: 15px;
  font-family: "Roboto";
  color: #ffffff80;
  margin: 0;
}

.links-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 15px 0;
  border: 1px solid #ffffff33;
  border-width: 1px 0;
}

.link-flex {
  display: flex;
  align-items: center;
  gap: 11px;
}

.link-flex img {
  width: 17px;
  height: 18px;
  object-fit: contain;
}

.link-flex a {
  color: var(--theme-color-7);
  font-size: 14px;
  font-family: "Roboto";
  font-weight: 400;
}

.followers {
  display: flex;
  align-items: center;
  gap: 7px;
}

.follow-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.follow-wrap h6 {
  margin: 0;
  font-family: "Roboto";
  font-weight: 500;
  color: var(--theme-color-7);
}

.follow-wrap h5 {
  margin: 0;
  font-family: "Roboto";
  color: var(--theme-color-7);
  font-weight: 200;
  font-size: 16px;
}

.other-profile-section .post-tabs ul.nav-tabs li {
  width: 25%;
}

.other-profile-section .post-tabs {
  margin: 28px 0 0 0;
}

.publish-wrap {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 20px 0 15px;
  border-bottom: 1px solid #ffffff33;
}

.publish-img img {
  width: 42px;
  height: 42px;
}

.publish-txt {
  width: 91%;
}

.publish-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.publish-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}

.publish-flex h6 {
  font-size: 15px;
  color: var(--theme-color-7);
  font-weight: bold;
  margin: -4px 0 0 0;
}

.publish-flex p {
  font-size: 11px;
  color: #ffffff80;
  font-weight: bold;
  margin: 0;
}

.publish-head .dropdown button {
  border: 0;
  background: 0;
}

.publish-head .dropdown button:after {
  content: unset;
}

.publish-cap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.publish-cap span {
  margin-left: 20px;
  font-size: 10px;
  color: var(--theme-color);
  padding: 7px 10px;
  text-transform: uppercase;
  font-weight: 600;
  background: #ed1d2333;
  letter-spacing: 1.38px;
}

.publish-cap h5 {
  color: var(--theme-color);
  font-size: 11px;
  font-family: "Oswald";
  text-transform: uppercase;
  letter-spacing: 1.16px;
  margin: 0;
}

.publish-cap p {
  margin: 0;
  font-size: 14px;
  font-family: "Roboto";
}

.publish-react {
  display: flex;
  align-items: center;
  gap: 70px;
}

.publish-flex a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.publish-flex a h6 {
  margin: 0;
}

.publish-flex a img {
  width: 23px;
  height: 23px;
  object-fit: scale-down;
}

.notification-box {
  display: flex;
  align-items: start;
  gap: 35px;
  margin-bottom: 50px;
}

.notification-img img {
  width: 75px;
  height: 75px;
}

.notification-img {
  position: relative;
}

.notification-img .prem img {
  width: auto;
  height: auto;
}

.notification-heading h5 {
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}

.notification-heading {
  margin-bottom: 40px;
}

.notification-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.notification-head h4 {
  color: var(--theme-color);
  font-family: "Roboto";
  font-size: 20px;
  margin: 0;
  width: 100px;
  line-break: anywhere;
}

.notification-head h6 {
  font-family: "Roboto";
  font-weight: bold;
  color: #ffffff80;
  font-size: 14px;
  margin: 0;
}

.notification-head .prem-score h6 {
  color: var(--theme-color-6);
  font-size: 20px;
  font-weight: 700;
}

.notification-box:last-child {
  margin: 0;
}

.notification-head .prem-score {
  width: 40px;
  height: 35px;
}

.notification-p p {
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-size: 17px;
  font-weight: 300;
  margin: 0;
}

.notification-p p b {
  font-weight: 600;
}

.notification-p {
  margin-bottom: 2px;
}

.notification-s a {
  color: #ffffff80;
  font-size: 17px;
  font-family: "Roboto";
  font-weight: 300;
}

.dash-notification-content .view-more-btn.view-more-btn2 {
  margin: 30px 0 0;
}

.notification-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dash-notification-content {
  height: 100%;
}

.notification-main {
  flex: 1 1 0;
}

.dash-message-content .notification-heading {
  margin-bottom: 10px;
}

.message-section {
  border: 1px solid #ffffff80;
  border-width: 1px 1px 0 0;
  height: 100%;
  padding: 29px 19px 29px 0;
}

.dash-message-content {
  height: 100%;
}

.no-message p {
  font-size: 16px;
  font-weight: 200;
  color: #ffffff80;
  margin: 0;
}

.settings-section .post-tabs {
  margin: 50px 0 0 0;
}

.settings-section .post-tabs ul.nav-tabs li {
  width: 33.3%;
}

.settings-section .notification-heading {
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d933;
}

.setting-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9d9d933;
  margin-bottom: 12px;
}

.setting-wrap {
  margin: 60px 0;
  outline: none;
}

.setting-wrap h4 {
  color: var(--theme-color);
  font-family: "Roboto";
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9d9d933;
  margin-bottom: 17px;
}

.setting-flex h5 {
  margin: 0;
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-weight: 300;
  font-size: 17px;
  opacity: 80%;
}

.setting-flex .trans-three p,
.setting-flex .trans-one p {
  color: var(--theme-color-7);
}

.post-tabs .tab-pane {
  outline: none;
}

.setting-flex .checkbox-label {
  width: 95px;
  height: 47px;
  padding: 7px;
  background: var(--theme-color-7);
}

.setting-flex .ball {
  width: 36px;
  height: 36px;
  background: var(--theme-color);
}

.setting-flex .checkbox:checked + .checkbox-label .ball {
  background: #fff;
  left: 54px;
}

.setting-flex .checkbox-label img,
.setting-flex .checkbox-label i {
  width: 26px;
  height: 26px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 34.65px;
  color: var(--theme-color-7);
}

.setting-flex .translator-btn-main {
  padding: 0;
}

.setting-flex .translator-btn-main .inner-flex {
  background: none;
  padding: 0;
}

.setting-flex .translator-btn-main input.check-toggle-round-flat + label {
  width: 44px;
  height: 24px;
  background: var(--theme-color);
}

.setting-flex
  .translator-btn-main
  input.check-toggle-round-flat
  + label:before {
  background: var(--theme-color);
}

.setting-flex .translator-btn-main input.check-toggle-round-flat + label:after {
  width: 16px;
  height: 16px;
}

.setting-flex
  .translator-btn-main
  input.check-toggle-round-flat:checked
  + label:after {
  margin-left: 19px;
}

.setting-check {
  width: 32px;
  height: 32px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.setting-check img {
  margin-left: -7px;
  margin-top: 2px;
}

.setting-flex:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.setting-wrap-b .setting-flex h5 {
  font-weight: 500;
  color: var(--theme-color-7);
  opacity: 50%;
}

.setting-wrap-b .setting-flex a {
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-weight: 500;
}

.verified span {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--theme-color);
  font-weight: 500;
}

.verified h5 {
  margin-bottom: 3px;
}

.setting-wrap-b H4 {
  margin-bottom: 25px;
}

.edit-profile-section .profile-user {
  justify-content: center;
}

.add-img label {
  padding: 9px 18px;
  background: #ffffff1a;
  color: var(--theme-color-7);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8.5px;
  font-family: "Oswald";
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2.37px;
}

.bio-flex {
  font-size: 20px;
  padding-top: 25px;
  border-top: 1px solid #d9d9d933;
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-user-wrap {
  margin-bottom: 35px;
}

.bio-wrap h6 {
  color: var(--theme-color);
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 7px;
}

.bio-wrap h5 {
  margin: 0;
  color: rgb(255 255 255 / 80%);
  font-family: "Roboto";
  font-weight: 400;
  font-size: 15px;
}

.bio-flex a {
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-weight: 500;
  font-size: 14px;
}

.bio-wrap-b h5 {
  font-weight: bold;
}

.premium-content {
  position: relative;
}

.premium-head {
  padding: 60px 50px;
  text-align: center;
  position: relative;
}

.premium-head h2 {
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-weight: bold;
  font-size: 34px;
  margin-bottom: 10px;
}

.premium-head h2 span {
  color: var(--theme-color);
}

.premium-head p {
  color: var(--theme-color-7);
  font-size: 14px;
  opacity: 50%;
  width: 95%;
  margin: 0 auto;
}

.premium-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(
    180deg,
    rgba(237, 29, 35, 0.5) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.premium-wrap {
  margin-bottom: 40px;
}

.premium-wrap h3 {
  padding: 0 30px 0 50px;
  color: var(--theme-color);
  font-family: "Roboto";
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.premium-wrap ul li p {
  padding: 0 20px 0 62px;
  color: var(--theme-color-7);
  font-family: "Roboto";
  font-style: italic;
  font-size: 16px;
  margin: 0;
  position: relative;
}

.premium-wrap ul li p img {
  margin: 0 5px;
}

.premium-wrap ul li {
  border-top: 1px solid #ffffff33;
  padding: 10px 0;
}

.premium-wrap ul li:last-child {
  padding-bottom: 0;
}

.premium-wrap-main {
  position: relative;
  background: var(--theme-color-6);
  width: 90%;
  margin: 0 auto;
  padding: 30px 0 50px;
  border: 1px solid #ed1d2345;
  filter: drop-shadow(0 1px 25px #ed1d2345);
}

.premium-wrap:last-child {
  margin: 0;
}

.premium-wrap ul li p::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  position: relative;
  left: -10px;
  background: var(--theme-color-7);
  border-radius: 50%;
  transform: translateY(-50%);
}

.premium-wrap ul li.theme-color p {
  color: var(--theme-color);
  font-weight: 500;
}

.premium-wrap ul li.theme-color p::before {
  background: var(--theme-color);
}

.premium-wrap ul li.no-list p::before {
  content: unset;
}

.premium-wrap ul li.no-list p {
  padding-left: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.premium-wrap ul li.no-list p img {
  margin: 0;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.premium-wrap ul li.dot-circle p::before {
  border: 2px solid #fff;
  background: transparent;
  width: 11px;
  height: 13px;
  top: 1px;
  transform: skew(-0.06turn, 18deg);
}

.post-modal-header a {
  background-color: var(--theme-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-modal-section .modal-content {
  padding: 30px 20px 30px 40px;
  background: #1c1c1e;
}

.post-modal-section .modal-dialog {
  --bs-modal-width: 717px;
}

.post-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-close {
  cursor: pointer;
}

.post-user-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.post-user-header input {
  border: 0;
  background: transparent;
  width: 43%;
  color: var(--theme-color-7);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  font-family: "Roboto";
  line-height: normal;
}

.post-user-header input::placeholder {
  color: var(--theme-color-7);
}

.post-modal-section .post-add-btn-wrap {
  margin-top: 24px;
}

/* Profile Page End */

/* Login/Signup Page Start */

section.login-section {
  width: 100%;
}

section.login-section .row {
  width: 100%;
}

.login-left {
  width: 100%;
  height: 100vh;
  background: #000;
  padding: 30px 0 0 100px;
  position: sticky;
  left: 0;
  top: 0;
}
/* 
.login-left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
  inset: 0;
} */

.login-right {
  padding: 30px 200px 0;
}

.login-left img {
  margin-bottom: 36px;
}

.login-left h2 {
  color: #fff;
  font-size: 50px;
}

.login-right img {
  margin-bottom: 20px;
}

.login-right h5 {
  font-size: 30px;
  font-family: "Oswald";
  text-transform: capitalize;
  margin-bottom: 20px;
}

.login-right form input {
  border: 0;
  border-bottom: 1px solid #c7c7cc;
  background: transparent;
  width: 100%;
  padding: 4px 32px 11px 0;
  color: #000 !important;
  outline: none;
  margin-bottom: 10px;
}

.login-right form input::placeholder {
  color: #000000 !important;
}

body:has(.login-section) {
  background: #fff;
}

.login-right p {
  margin: 8px 0;
  font-size: 13px;
  font-family: arial;
  font-weight: 300;
  text-align: center;
}

.login-right form button {
  background-color: var(--theme-color);
  width: 100%;
  border: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  margin: 10px 0;
  transition: .2s all;
}

.login-right p a {
  font-family: arial;
}

.or {
  margin: 20px 0 24px;
  text-align: center;
  position: relative;
  font-size: 14px;
}

.or::before {
  content: "";
  height: 1px;
  background-color: #f2f2f7;
  flex-grow: 1;
  position: absolute;
  width: 44%;
  left: 0;
  bottom: 10px;
}

.or::after {
  content: "";
  height: 1px;
  background-color: #f2f2f7;
  flex-grow: 1;
  position: absolute;
  width: 44%;
  right: 0;
  bottom: 10px;
}

.sign-with-google a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #dadce0;
  color: #3c4043;
  border-radius: 50px;
  font-family: "Oswald";
  padding: 10px 0;
  margin: 0 auto 14px;
  width: 85%;
}

.sign-with-google a img {
  width: 16px;
  height: 16px;
  object-fit: none;
  margin: 0;
}

.small-content p {
  font-size: 10px;
  line-height: 18px;
  margin-bottom: 7px;
  text-align: left;
}

.small-content {
  margin-top: 20px;
}

.login-right form p {
  text-align: left;
}

.signup-section .login-right h5 {
  margin-top: 40px;
}

.password-show {
    position: relative;
}

.password-show img {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    top: 30%;
    transform: translateY(-50%);
    opacity: .3;
    cursor: pointer;
}

.password-show span {
    opacity: .8;
    margin: -10px 0 0;
    display: block;
}

.inp-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 10px;
}

.inp-check input {
    margin: 0 !important;
    width: 18px !important;
    height: 18px;
}

.inp-check p {
    font-size: 12px;
    margin: 0;
}

.login-right form button:hover {
    background: #000;
}

/* Login/Signup Page End */
