@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --body-font: "Jost", sans-serif;

  --body-color: #171612;         /* Base text or accent color */
  --body-color-on: #006e36;     /* Slightly lighter for hover or borders */
  --body-bg-light: #2e2d26;      /* New: background shade of body color */

  --bg-color: #ffcb12;
  --para-color: #f7f4ff;
  --para-alt-color: #b2b4e1;

  --hover-color: #ffcb12;
  --hover-alt-color: #5ac4ff;

  --bs-primary: #4f46e5;
  --head-color: #ffcb12;

  --input-bg: #0f111f;
}


.collapsing {
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {

  font-family: var(--body-font);
  font-display: swap;
  background-color: var(--body-color-on);
  font-size: 18px;
  line-height: 30px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  overflow-x: hidden;
}

section,
footer {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}


h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  font-family: var(--body-font);
  color: var(--bg-color);
  font-weight: 600;
  text-transform: initial;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-family: var(--body-font);
  color: var(--para-color);
  font-weight: 600;
  text-transform: initial;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover {
  color: var(--hover-alt-color);
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
  color: var(--para-color);
}
.post-content {
  color:#ffff;
}
.post-content a,
.post-content a:focus,
.post-content a:hover {
  text-decoration: underline;
  color: var(--bg-color);
}


img {
  max-width: 100%;
  height: auto;
}

.max-un {
  max-width: unset;
}

.d-rtl {
  direction: rtl;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #b0baf1;
}

button {
  border: none;
  cursor: pointer;
}

input,
textarea {
  padding: 10px 20px;
  color: #1e266d;
  width: 100%;
  font-family: var(--body-font);
  height: 50px;
  background: #f5faff;
  border: 1px solid #eef1ff;
  border-radius: 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="password"] {
  font-family: initial;
}

input[type="checkbox"] {
  width: initial;
  height: initial;
}

select {
  border-radius: 10px;
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  height: initial;
  padding: 0;
  background: var(--input-bg);
  margin-bottom: 15px;
}
select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}
select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}
select .list .option {
  background: transparent;
}

select .list .option:hover {
  color: var(--hover-color);
}

select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}
textarea {
  min-height: 150px;
  resize: none;
}

span {
  display: inline-block;
}

.table thead th,
.table td,
.table th {
  border: none;
}

.d-grid {
  display: grid !important;
}

.b-none {
  border: none !important;
}

.ovf-unset {
  overflow-x: unset !important;
}

iframe {
  border: 0;
  width: 100%;
}

.shadow-none {
  box-shadow: none;
}

h1,
h1 > a {
  font-size: 76px;
  line-height: 98.8px;
  margin-top: -18px;
}

h2,
h2 > a {
  font-size: 57px;
  line-height: 74.1px;
  margin-top: -12px;
}

h3,
h3 > a {
  font-size: 43px;
  line-height: 55.9px;
  margin-top: -8px;
}

h4,
h4 > a {
  font-size: 32px;
  line-height: 41.6px;
  margin-top: -7px;
}

h5,
h5 > a {
  font-size: 24px;
  line-height: 31.2px;
  margin-top: -5px;
}

h6,
h6 > a {
  font-size: 18px;
  line-height: 23.4px;
  margin-top: -3px;
}

table thead tr th {
  font-size: 18px;
  line-height: 30px;
}

a {
  display: inline-block;
  color: var(--para-color);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

p,
span,
li,
label {
  margin: 0;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--para-color);
  line-height: 30px;
}

.section-text {
  margin-bottom: 34px;
}

.section-header {
  margin-bottom: 55px;
}

.sub-title {
  color: var(--hover-color);
  margin-bottom: 30px;
}

.title {
  font-weight: 700;
  margin-bottom: 16px;
  color:#fff;
}

.xxlr {
  font-size: 26px;
  line-height: 36px;
  margin-top: -7px;
}

.xlr {
  font-size: 24px;
  line-height: 36px;
  margin-top: -7px;
}

.mdr {
  font-size: 16px;
  line-height: 22px;
}

.z-1 {
  z-index: 1;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.pt-120 {
  padding-top: 120px;
}

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 60px;
  }
  .mb-60 {
    margin-bottom: 40px;
  }
  .mt-60 {
    margin-top: 40px;
  }
  .mb-80 {
    margin-bottom: 60px;
  }
  .mt-80 {
    margin-top: 60px;
  }
  .header-section {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
    background-color:var(--body-color);
  }
}

@media (max-width: 575px) {
  .pt-120 {
    padding-top: 50px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 50px;
  }
}

*::-webkit-scrollbar-track {
  background: #00003e;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-button,
*::-webkit-scrollbar-thumb {
  background-color: #5732c6;
}

.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--hover-color);
  border-radius: 5px;
  color: #fff;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  z-index: 9;
  cursor: pointer;
  transition: all 1s;
  transform: translateY(100%);
}

.scrollToTop.active {
  bottom: 30px;
  transform: translateY(0%);
  color: var(--body-color);
}

.scrollToTop:hover {
  color: var(--body-color);
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99999999;
  overflow: visible;
  background: url(../images/preloader.gif) no-repeat center center;
  background-size: 20%;
  background-color: #e5eff1;
}

.icon-svg {
  position: relative;
}

.icon-svg img {
  opacity: 1;
  position: absolute;
}

.icon-svg svg {
  position: absolute;
  stroke-dashoffset: 1500;
  stroke-dasharray: 1500;
  transform: scale(1);
  transition: transform 0.3s, fill 0.5s;
  opacity: 0;
  visibility: hidden;
}

.icon-svg:hover svg {
  visibility: visible;
  opacity: 1;
  stroke-dashoffset: 0;
  fill: transparent;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s;
}

.icon-svg:hover img {
  opacity: 0;
  visibility: hidden;
}

.accordion-button:focus {
  box-shadow: none;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

/* cmn btn */
.cmn-btn {
  padding: 10px 30px;
  font-weight: 600;
  text-align: center;
  background: var(--bg-color);
  color: var(--bs-white);
  border: 1px solid var(--bg-color);
  transition: 0.3s;
  border-radius: 50px;
}

.cmn-btn:hover {
  background: transparent;
  border: 1px solid #ffcb12;
}

.cmn-btn.second {
  background: transparent;
  border: 1px solid #ffcb12;
}

.cmn-btn.second:hover {
  background: var(--bg-color);
  border: 1px solid var(--bg-color);
}

.alt-btn {
  padding: 15px 30px;
  border: 1px solid var(--bg-color);
  border-radius: 10px;
  transition: 0.3s;
}

.alt-btn:hover {
  background: var(--bg-color);
  border-color: var(--bg-color);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes zoomInOut {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes ripple2Ani {
  0% {
    transform: translate(0px, 0px);
  }
  33% {
    transform: translate(-5px, -5px);
  }
  66% {
    transform: translate(5px, 5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes rippleAni {
  0% {
    transform: translate(0px, 0px);
  }
  33% {
    transform: translate(5px, -5px);
  }
  66% {
    transform: translate(-5px, 5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-section.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #171612;
}

.header-section .navbar-toggler {
  padding-right: 0;
  display: none;
  border: none;
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .navbar-toggler i {
  color: var(--hover-color);
}

.header-section .navbar {
  /*padding: 5px 5px;*/
  padding: 30px 15px;
}
.nav-link {
  white-space: nowrap; /* Prevent line breaks within the link text */
}
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link,
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-item {
  font-weight: 500;
  padding: 0 10px;
  color: var(--para-color);
  text-transform: capitalize;
  font-weight: 600;
  transition: 0.3s;
}

.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover,
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-item:hover {
  color: var(--hover-color);
  transition: 0.3s;
}

.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active,
.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-item.active {
  color: var(--hover-color);
}

.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle {
  margin-right: 15px;
}

.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  position: absolute;
  content: "\0043";
  border: none;
  font-family: "arafat font";
  font-weight: 400;
  font-size: 14px;
}

.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  background-color: var(--body-color);
}

.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
  display: block;
  padding: 5px 15px;
  transition: 0.3s;
}

.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:hover {
  background: var(--hover-color);
  transition: 0.3s;
  color: var(--body-color);
}

.header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropend .dropdown-menu {
  margin-left: 20%;
}

.header-section .navbar .navbar-collapse .right-area {
  margin-left: 48px;
}

.header-section .navbar .navbar-collapse .right-area .search-icon {
  border-right: 1px solid #7e6de9;
  margin-right: 20px;
  padding-right: 20px;
}

.header-section .navbar .navbar-collapse .right-area .login {
  background: transparent;
  color: var(--bs-white);
}

.header-section .navbar .navbar-collapse .right-area .cmn-btn {
  margin-left: 15px;
}

.header-section .nav-item.main-navbar .main-menu {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 232px;
  background: #171612;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.header-section .nav-item.main-navbar .main-menu .sub-navbar {
  position: relative;
}

.header-section .nav-item.main-navbar .main-menu .sub-navbar .sub-menu {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  right: -80%;
  top: 0;
}

.header-section .nav-item.main-navbar .main-menu .sub-navbar:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-section .nav-item.main-navbar:hover .main-menu {
  opacity: 1;
  visibility: visible;
  top: 30px;
}

.header-section.user-dashboard .navbar-collapse .right-area {
  position: relative;
}

.header-section.user-dashboard .navbar-collapse .right-area .search-icon {
  margin-right: 0;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item {
  margin-left: 20px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .active-dot {
  position: relative;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .active-dot::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background: #eb5757;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .cart-btn {
  position: relative;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .cart-btn .items {
  position: absolute;
  top: 0;
  right: -6px;
  width: 15px;
  height: 15px;
  background: #ff96a5;
  font-weight: bold;
  border-radius: 50%;
  font-size: 10px;
  line-height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f007f;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.user-area .user-btn {
  cursor: pointer;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.user-area .user-btn .user-profile img {
  border-radius: 50%;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.user-area .user-btn .name-area {
  font-weight: bold;
  margin-left: 8px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.user-area .user-btn i {
  color: var(--bs-white);
  margin-left: 8px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .settings-btn {
  cursor: pointer;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .head-area {
  margin-bottom: 20px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .main-area {
  padding-bottom: 15px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .nice-select {
  border-radius: 10px;
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  height: initial;
  padding: 0;
  background: var(--input-bg);
  margin-bottom: 15px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .nice-select .list .option {
  background: transparent;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .nice-select .list .option:hover {
  color: var(--hover-color);
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.setting-area .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .notifications-btn {
  cursor: pointer;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .img-area img {
  border-radius: 50px;
  margin-right: 20px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area {
  padding: 20px;
  width: 365px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area p {
  margin-top: 10px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area .time-area {
  color: #e2d7ff;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area button {
  background: transparent;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area a {
  align-items: initial;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area .left span {
  width: 28px;
  height: 28px;
  background: #c2a9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070044;
  margin-left: 10px;
  border-radius: 26px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.massage-area {
  cursor: pointer;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.massage-area button {
  padding: 0;
  display: inline-block;
  background: transparent;
  border: none;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.massage-area button:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.cart-area .cart-btn {
  cursor: pointer;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.cart-area .dropdown-items {
  position: relative;
  border: 1px solid #776ae1;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.cart-area .dropdown-items .img-area img {
  margin-right: 20px;
  background: #4736d3;
  padding: 10px 20px;
  border-radius: 10px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.cart-area .dropdown-items button {
  position: absolute;
  right: -20px;
  top: -15px;
  background: transparent;
  display: inline-block;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.cart-area .dropdown-items button img {
  width: 50%;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item.cart-area .cmn-btn {
  margin-top: 30px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area {
  position: absolute;
  top: 50px;
  width: 350px;
  right: 0;
  padding: 30px;
  background: var(--body-color);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  transform: translateY(150px);
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area.active {
  transform: translateY(0px);
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area .head-area .img-area img {
  border-radius: 50px;
  margin-right: 20px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area .head-area .text-area h5 {
  margin-bottom: 15px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area .head-area .text-area img {
  margin-right: 10px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area ul li {
  margin-top: 5px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area ul li.border-area {
  border-top: 1px solid #706eb1;
  padding-top: 15px;
  margin-top: 15px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area ul li a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area ul li a img {
  margin-right: 15px;
}

.header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area ul li a.active, .header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area ul li a:hover {
  background: #41aa28;
  border-radius: 5px;
  transition: 0.3s;
}

.banner-section .overlay{
  background-color:#171612;
  background-image:url(../images/index-bg.png),url(../images/banner-bg.png);
  background-repeat:no-repeat;
  background-position:top 260px right 10px,top 200px right 0;
  position:relative;
  background-size:auto
}
.banner-section .overlay .shape-area img{
  position:absolute
}
.banner-section .overlay .shape-area .obj-1{
  left:5%;
  top:30%;
  animation:ripple2Ani 4s linear infinite
}
.banner-section .overlay .shape-area .obj-2{
  left:3%;
  bottom:20%;
  animation:rippleAni 3s linear infinite
}
.banner-section .overlay .banner-content{
  padding:328px 0 360px
}
.banner-section .overlay .banner-content .container{
  position:relative
}
.banner-section .overlay .banner-content .container .content-shape img{
  position:absolute
}
.banner-section .overlay .banner-content .container .content-shape .obj-1{
  left:20%;
  top:-40%;
  animation:spin 30s linear infinite
}
.banner-section .overlay .banner-content .container .content-shape .obj-2{
  left:15%;
  bottom:-30%;
  animation:ripple2Ani 5s linear infinite
}
.banner-section .overlay .banner-content .container .content-shape .obj-3{
  left:40%;
  bottom:-15%;
  animation:rippleAni 5s linear infinite
}
.banner-section .overlay .banner-content .container .content-shape .obj-4{
  left:25%;
  bottom:-55%;
  animation:spin 30s linear infinite
}
.banner-section.inner-banner .banner-content{
  padding:211px 0 256px
}
.banner-section .overlay .banner-content .cmn-btn {
  margin-right: 45px;
}

.banner-section .overlay .banner-content .bottom-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section .overlay .banner-content .bottom-area .popupvideo {
  width: 30px;
  height: 30px;
  background: #58b463;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-section .overlay .banner-content .bottom-area .popupvideo::before, .banner-section .overlay .banner-content .bottom-area .popupvideo::after {
  position: absolute;
  content: "";
  background: #58b463;
  opacity: 0.2;
  border-radius: 50%;
}

.banner-section .overlay .banner-content .bottom-area .popupvideo::before {
  width: 65px;
  height: 65px;
}

.banner-section .overlay .banner-content .bottom-area .popupvideo::after {
  width: 45px;
  height: 45px;
}

.banner-section.inner-banner .banner-content .main-content .breadcrumb-area {
  margin-top: 10px;
}

.banner-section.inner-banner .banner-content .main-content .breadcrumb-area .breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--para-color);
}

.banner-section.inner-banner .banner-content .main-content .breadcrumb-area .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  background-image: url(../images/right-arrow.png);
  background-repeat: no-repeat;
  width: 15px;
  height: 8px;
  padding: 0 10px;
  content: "";
}

.banner-section.terms .overlay {
  background-image: url(../images/index-bg.png);
  background-repeat: no-repeat;
  background-position: top;
}

.banner-section.about .overlay {
  background-image: url(../images/index-bg.png), url(../images/banner-overlay.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right, right bottom 10px, top;
  background-size: contain;
}


.banner-section.about .overlay .banner-content {
  padding: 232px 0 245px;
}

.banner-section.about .shape-area .obj-1 {
  left: 10%;
  top: initial;
  bottom: calc(20%);
}

.banner-section.about .shape-area .obj-2 {
  right: 4%;
}

.banner-section.about .shape-area .obj-3 {
  left: 10%;
  bottom: calc(60%);
}
.banner-section.all-tips.premium .overlay {
  background-image: url(../images/affiliate-banner.webp), url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: bottom right, right bottom -1px, top;
  background-size: auto, 100%, 100%;
}
.banner-section.all-tips.reviews .overlay {
  background-image: url(../images/reviews.svg), url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: bottom right, right bottom -1px, top;
  background-size: auto, 100%, 100%;
}
.banner-section.all-tips.pay .overlay {
  background-image: url(../images/pay.svg), url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: bottom right, right bottom -1px, top;
  background-size: auto, 100%, 100%;
}
.banner-section.all-tips .overlay {
  background-image: url(../images/tournaments-illus.webp), url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: bottom right, right bottom -1px, top;
  background-size: auto, 100%, 100%;
}

.banner-section.all-tips .overlay .banner-content {
  padding: 232px 0 245px;
}

.banner-section.all-tips .overlay .shape-area .obj-1 {
  left: 10%;
  top: initial;
  bottom: calc(20%);
}

.banner-section.all-tips .overlay .shape-area .obj-2 {
  display: none;
}

.banner-section.all-tips .overlay .shape-area .obj-3 {
  left: 10%;
  bottom: calc(60%);
}

/*.banner-section.match-betting .overlay {*/
/*  !*background-image: url(../images/about-bg.png);*!*/
/*  background-repeat: no-repeat;*/
/*  background-position: top;*/
/*  background-size: contain;*/
/*}*/

.banner-section.match-betting .overlay .banner-content {
  padding: 195px 0 120px;
  text-align: center;
}

.banner-section.match-betting .overlay .banner-content .head-area h5 {
  color: #5ac4ff;
  margin: 20px 0 40px;
}

.banner-section.match-betting .overlay .shape-area .obj-1 {
  left: 10%;
  top: initial;
  bottom: calc(20%);
}

.banner-section.match-betting .overlay .shape-area .obj-2 {
  right: 4%;
}

.banner-section.match-betting .overlay .shape-area .obj-3 {
  left: 10%;
  bottom: calc(60%);
}

.banner-section.match-betting .overlay .sports {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #2d237b;
  border: 1px solid #6980ba;
  padding: 20px;
}

.banner-section.match-betting .overlay .sports .single {
  border-radius: 10px;
  background-color: var(--body-color);
  padding: 20px;
}

.banner-section.match-betting .overlay .sports .single .logo-area {
  border-radius: 10px;
  background-color: #4736d3;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.banner-section.match-betting .overlay .sports .vs {
  border-radius: 50%;
  background-color: var(--body-color);
  width: 110px;
  height: 110px;
  margin: 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section.match-betting .overlay .sports .vs h3 {
  margin-top: 0;
  text-transform: uppercase;
  color: var(--hover-color);
}

.banner-section.match-betting .overlay .sports .mid-area .countdown {
  margin-top: 10px;
}

.banner-section.match-betting .overlay .sports .mid-area .countdown h5 span {
  color: #ff96a5;
  font-size: inherit;
  font-weight: 500;
  text-transform: uppercase;
}

.banner-section.tipster-profile .overlay {
  background-image: url(../images/banner-bg.png), url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: right bottom 15px, right bottom -1px, top;
  background-size: 100%, 100%, 100%;
}

.banner-section.tipster-profile .overlay .banner-content {
  padding: 189px 0 375px;
}

.banner-section.tipster-profile .overlay .shape-area .obj-1 {
  left: 10%;
  top: initial;
  bottom: calc(20%);
}

.banner-section.tipster-profile .overlay .shape-area .obj-2 {
  right: 4%;
}

.banner-section.tipster-profile .overlay .shape-area .obj-3 {
  left: 10%;
  bottom: calc(60%);
}

.banner-section.tipster-profile.find-tipster .banner-content {
  padding: 195px 0 375px;
}

.banner-section.tipster-profile.create .overlay {
  position: relative;
  z-index: 1;
}

.banner-section.tipster-profile.create .overlay::before, .banner-section.tipster-profile.create .overlay:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.banner-section.tipster-profile.create .overlay::after {
  background-image: url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: left bottom -1px;
}

.banner-section.tipster-profile.create .overlay::before {
  background-color: #2F007F;
  opacity: 0.4;
}

.banner-section.tipster-profile.create .overlay .banner-content {
  padding: 222px 0 233px;
}

.banner-section.tipster-profile.create.post-tips .overlay {
  z-index: 0;
}

.banner-section.tipster-profile.create.post-tips .banner-content {
  padding: 170px 0 300px;
}

.banner-section.contact .overlay {
  background-image: url(../images/contact-banner.png), url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: right bottom 55px, right bottom -1px, top;
  background-size: auto, 100%, 100%;
}

.banner-section.contact .overlay .banner-content {
  padding: 202px 0 380px;
}

.banner-section.contact .overlay .shape-area .obj-1 {
  left: 10%;
  top: initial;
  bottom: calc(20%);
}

.banner-section.contact .overlay .shape-area .obj-2 {
  right: 10%;
  top: 15%;
}

.banner-section.contact .overlay .shape-area .obj-3 {
  left: 10%;
  bottom: calc(60%);
}

.banner-section.affiliate .overlay {
  background-image: url(../images/affiliate-banner.png), url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: right bottom -20px, right bottom -1px, top;
  background-size: auto, 100%, 100%;
}

.banner-section.affiliate .overlay .banner-content {
  padding: 294px 0 300px;
}

.banner-section.affiliate .overlay .shape-area .obj-1 {
  left: 10%;
  top: initial;
  bottom: calc(20%);
}

.banner-section.affiliate .overlay .shape-area .obj-2 {
  right: 10%;
  top: 15%;
}

.banner-section.affiliate .overlay .shape-area .obj-3 {
  left: 10%;
  bottom: calc(60%);
}

.banner-section.become-tipster .overlay {
  background-color: #2f007f;
  background-image: url(../images/banner-overlay.png), url(../images/index-bg.png), url(../images/become-tipster-banner.png);
  background-repeat: no-repeat;
  background-position: right bottom -1px, top, right bottom 180px;
  position: relative;
  background-size: 100%, 100%, auto;
}

.banner-section.become-tipster .overlay .shape-area img {
  position: absolute;
}

.banner-section.become-tipster .overlay .shape-area .obj-1 {
  left: 10%;
  top: calc(30%);
}

.banner-section.become-tipster .overlay .shape-area .obj-2 {
  right: 10%;
  top: calc(25%);
}

.banner-section.become-tipster .overlay .shape-area .obj-3 {
  left: 35%;
  bottom: calc(50%);
}

.banner-section.become-tipster .overlay .banner-content {
  padding: 215px 0 360px;
}

.banner-section.become-tipster .overlay .banner-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.banner-section.become-tipster .overlay .banner-content ul li p {
  margin-top: 0;
  padding-left: 10px;
}

.banner-section.become-tipster .overlay .banner-content .reg-area {
  background-color: var(--body-color);
  border-radius: 10px;
  padding: 30px;
}
.banner-section.become-tipster .overlay .banner-content .reg-area .single-input {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--bg-color);
  background: var(--input-bg);
  padding: 15px 30px;
  margin-bottom: 20px;
}

.banner-section.become-tipster .overlay .banner-content .reg-area .single-input input {
  background: transparent;
  padding: 0;
  border: none;
  margin: 0;
  color: var(--bs-white);
  height: initial;
}

.banner-section.become-tipster .overlay .banner-content .reg-area .single-input img {
  margin-right: 20px;
}

.banner-section.become-tipster .overlay .banner-content .nice-select {
  border-radius: 10px;
  background-color: transparent;
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
  height: initial;
  padding: 0;
}

.banner-section.become-tipster .overlay .banner-content .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 10px;
}

 .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.banner-section.become-tipster .overlay .banner-content .nice-select .list .option {
  background: transparent;
}

.banner-section.become-tipster .overlay .banner-content .nice-select .list .option:hover {
  color: var(--hover-color);
}

.banner-section.become-tipster .overlay .banner-content .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.banner-section.become-tipster .overlay .banner-content .cmn-btn {
  width: 100%;
  border-radius: 10px;
  margin-top: 15px;
}

.banner-section.become-tipster .overlay .banner-content .privacy {
  margin: auto;
  margin-top: 20px;
  width: 80%;
}

.banner-section.become-tipster .overlay .banner-content .privacy a {
  color: var(--hover-color);
}

.banner-section.user-dashboard .overlay {
  background-image: url(../images/user-dashboard-banner.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}

.banner-section.support-help .overlay {
  background-image: url(../images/support-banner.png), url(../images/banner-overlay.png);
  background-repeat: no-repeat;
  background-position: bottom right, right bottom -1px;
  background-size: auto;
}

.banner-section.support-help .overlay .banner-content {
  padding: 265px 340px;
}

.banner-section.support-help .overlay .banner-content h1 {
  display: none;
}

.banner-section.buyers-support {
  background: var(--body-color);
  padding-top: 120px;
}

.banner-section.buyers-support .overlay {
  background-image: unset;
}

.banner-section.buyers-support .overlay .banner-content {
  padding: 30px 0;
}

.banner-section.buyers-support .overlay .banner-content form .form-content {
  display: flex;
  justify-content: space-between;
  background: var(--body-color);
  padding: 15px 30px;
  padding-right: 0;
  border-radius: 10px;
}

.banner-section.buyers-support .overlay .banner-content form .form-content input {
  background: var(--body-color);
  color: var(--bs-white);
  border: none;
  padding-left: 0;
}

.banner-section.buyers-support .overlay .banner-content form .form-content button {
  padding: 0;
  min-width: 50px;
  min-height: 50px;
  margin-right: 30px;
}

.log-reg .modal-content {
  background: var(--body-color);
  border-radius: 10px;
  padding: 30px;
}

.log-reg .modal-content .modal-header {
  border: none;
}

.log-reg .modal-content .modal-body {
  padding: 0;
}

.log-reg .modal-content .form-area .single-input {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--bg-color);
  background: var(--input-bg);
  padding: 15px 30px;
  margin-bottom: 20px;
}

.log-reg .modal-content .form-area .single-input input {
  background: transparent;
  padding: 0;
  border: none;
  margin: 0;
  color: var(--bs-white);
  height: initial;
}

.log-reg .modal-content .form-area .single-input img {
  margin-right: 20px;
}

.log-reg .modal-content .form-area .forget .checkbox-wrapper {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.log-reg .modal-content .form-area .forget .checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.log-reg .modal-content .form-area .forget .checkbox-wrapper input:checked ~ .checkmark:after {
  display: block;
  background-image: url(../images/check-box.png);
  background-repeat: no-repeat;
  width: 13px;
  height: 10px;
  background-position: center;
}
 .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--input-bg);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.log-reg .modal-content .form-area .forget .checkbox-wrapper .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--input-bg);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.log-reg .modal-content .form-area .forget .checkbox-wrapper .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  background-image: unset;
}

.log-reg .modal-content .form-area .forget a {
  color: var(--hover-color);
}

.log-reg .modal-content .form-area .cmn-btn {
  border-radius: 10px;
  width: 100%;
  margin-top: 30px;
}

.log-reg .modal-content .or {
  position: relative;
  background: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.log-reg .modal-content .or::before, .log-reg .modal-content .or::after {
  position: absolute;
  content: "";
  background: var(--bs-white);
  height: 1px;
  width: 45%;
}

.log-reg .modal-content .or::before {
  left: 0;
}

.log-reg .modal-content .or::after {
  right: 0;
}

.log-reg .modal-content .reg-with {
  margin-bottom: 30px;
}

.log-reg .modal-content .reg-with a {
  width: 100%;
  border-radius: 10px;
  background: #4469b7;
  border-color: transparent;
  border-color: transparent;
}

.log-reg .modal-content .reg-with a:hover {
  background: transparent;
  border-color: #8b84c3;
}

.log-reg .modal-content .reg-with a.second {
  background: transparent;
  border-color: #8b84c3;
}

.log-reg .modal-content .reg-with a.second:hover {
  background: #4469b7;
  border-color: transparent;
}

.log-reg .modal-content .bottom-area button {
  background: transparent;
  justify-content: center;
  color: var(--bs-white);
  display: block;
}

.log-reg .modal-content .bottom-area button.active {
  display: none;
}

.log-reg .modal-content .bottom-area span {
  color: var(--hover-color);
}

.log-reg .modal-content .regMod .single-input {
  margin-bottom: 0;
  margin-top: 20px;
}

.log-reg .modal-content .regMod .joining {
  margin-top: 20px;
}

.log-reg .modal-content .regMod .or {
  margin-top: 20px;
}

.usermessage .modal-content {
  background: var(--body-color);
  border-radius: 20px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
  border: none;
  overflow: hidden;
}

.usermessage .modal-content .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
  border: none;
}

.usermessage .modal-content .btn-close:focus {
  box-shadow: none;
}

.usermessage .modal-content .modal-body {
  display: flex;
  padding: 0;
}

.usermessage .modal-content .modal-body aside {
  width: 300px;
  background: var(--body-color);
  padding: 15px;
}

.usermessage .modal-content .modal-body aside .input-area {
  background: var(--body-color);
  padding: 15px;
  border-radius: 5px;
}

.usermessage .modal-content .modal-body aside .input-area button {
  background: transparent;
}

.usermessage .modal-content .modal-body aside .input-area input {
  background: transparent;
  border: none;
  height: initial;
  padding: 0;
  padding-right: 10px;
  color: var(--bs-white);
}

.usermessage .modal-content .modal-body aside ul {
  overflow: auto;
  height: 600px;
}

.usermessage .modal-content .modal-body aside ul li {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.usermessage .modal-content .modal-body aside ul li img {
  margin-right: 15px;
  border-radius: 50%;
}

.usermessage .modal-content .modal-body aside ul li h6 {
  margin-bottom: 10px;
}

.usermessage .modal-content .modal-body aside ul li .status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  background: #ff725d;
}

.usermessage .modal-content .modal-body aside ul li .status.green {
  background: #58b666;
}

.usermessage .modal-content .modal-body main header {
  padding: 15px;
  border-bottom: 1px solid #706eb1;
}

.usermessage .modal-content .modal-body main header img {
  border-radius: 50%;
  margin-right: 10px;
}

.usermessage .modal-content .modal-body main ul {
  padding: 15px;
  border-bottom: 1px solid #706eb1;
  overflow: auto;
  height: 400px;
}

.usermessage .modal-content .modal-body main ul li {
  margin-bottom: 20px;
}

.usermessage .modal-content .modal-body main ul li .status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  background: #58b666;
}

.usermessage .modal-content .modal-body main ul li .status.blue {
  background: #6fbced;
}

.usermessage .modal-content .modal-body main ul li .entete .time {
  color: #d7d7d7;
}

.usermessage .modal-content .modal-body main ul li .message {
  background: var(--body-color);
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  position: relative;
  width: 90%;
}

.usermessage .modal-content .modal-body main ul li .message::before {
  position: absolute;
  content: "";
  top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--body-color) transparent;
  margin-left: 15px;
}

.usermessage .modal-content .modal-body main ul li.me .entete {
  text-align: right;
}

.usermessage .modal-content .modal-body main ul li.me .message {
  background: #2d237b;
  margin-left: auto;
}

.usermessage .modal-content .modal-body main ul li.me .message::before {
  right: 20px;
  margin-left: initial;
  border-color: transparent transparent #2d237b transparent;
}

.usermessage .modal-content .modal-body footer {
  padding: 15px;
}

.usermessage .modal-content .modal-body footer textarea {
  background: var(--body-color);
  min-height: 100px;
  border: none;
  color: var(--bs-white);
}

.footer-section{
  /*background-image:url(../images/footer-bg.png);*/
  background-color: var(--body-color);
  background-repeat:no-repeat;
  background-position:bottom
}
.footer-section .newsletter{
  background-image:url(../images/newsletter-bg.png);
  background-repeat:no-repeat;
  background-size:contain;
  background-color:#443397;
  border-radius:20px;
  padding:60px 110px
}
.footer-section .newsletter form .form-group{
  background:#432f9f;
  border:1px solid var(--bg-color);
  border-radius:10px;
  padding:10px
}
.footer-section .newsletter form .form-group input{
  background-color:#432f9f;
  border:none;
  border-radius:30px;
  padding:0 20px;
  color:var(--bs-white);
  height:min-content
}
.footer-section .newsletter form .form-group button{
  background:var(--hover-color);
  border-radius:10px;
  min-width:90px;
  min-height:50px
}
.footer-section .menu-item{
  display:flex;
  justify-content:space-between;
  align-items:center
}
.footer-section .menu-item .footer-link{
  display:flex
}
.footer-section .menu-item .footer-link li{
  padding-right:20px;
  margin-right:20px;
  border-right:1px solid #7876d5
}
.footer-section .menu-item .footer-link li:last-child{
  padding:0;
  margin:0;
  border:none
}
.footer-section .menu-item .footer-link li a:hover{
  color:var(--head-alt-color);
  transition:.3s
}
.footer-section .menu-item .footer-link li a.active{
  color:var(--head-alt-color)
}
.footer-section .copyright{
  margin-top:30px;
  padding:30px 0;
  border-top:1px solid var(--bg-color);
  display:flex;
  align-items:center;
  justify-content:space-between
}
.footer-section .copyright .copy-area a{
  color:var(--head-color)
}
.footer-section .copyright .copy-area .auth{
  color:#ff96a5
}
.footer-section .copyright .social-link a{
  width:35px;
  height:35px;
  border:1px solid #5653a8;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:20px;
  transition:.3s
}
.footer-section .copyright .social-link a svg{
  color:#5ac4ff;
  transition:.3s
}
.footer-section .copyright .social-link a:hover{
  background:#ff96a5;
  border-color:#ff96a5
}
.footer-section .copyright .social-link a:hover svg{
  color:var(--bs-white)
}
.sm-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 .sm-menu-item .sm-footer-link {
  display: flex;
}

.sm-footer-link li {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #7876d5;
}


.sm-menu-item .sm-footer-link li:last-child {
  padding: 0;
  margin: 0;
  border: none;
}

.sm-footer-link li a:hover {
  color: var(--hover-color);
  transition: 0.3s;
}
.footer-section .menu-item .footer-link li a:hover {
  color: var(--hover-color);
  transition: 0.3s;
}

.footer-section .copyright {
  padding: 30px;
  background: var(--body-color);
  border-radius: 10px 10px 0px 0px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section .copyright .copy-area a {
  color: var(--hover-color);
}

.footer-section .copyright .copy-area .auth {
  color: #ff96a5;
}

.footer-section .copyright .social-link a {
  width: 35px;
  height: 35px;
  border: 1px solid #3a3878;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: 0.3s;
}

.footer-section .copyright .social-link a i {
  color: #5ac4ff;
  transition: 0.3s;
}

.footer-section .copyright .social-link a:hover {
  background: #ff96a5;
  border-color: #ff96a5;
}

.footer-section .copyright .social-link a:hover i {
  color: var(--bs-white);
}

.counter-section .single-area .img-area {
  margin-right: 30px;
}

.counter-section .single-area h4 {
  margin-bottom: 5px;
}

.counter-section .single-area h4 span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-weight: inherit;
}

.counter-section .single-area p {
  color: var(--hover-alt-color);
}

.counter-section.about {
  position: relative;
}

.counter-section.about::before {
  position: absolute;
  content: "";
  top: 0;
  width: 90%;
  height: 100%;
  border-radius: 10px;
  left: 5%;
  background-image: linear-gradient(0deg, #070044 0%, #3d2fac 99%);
  z-index: -1;
}

.top-tipsters {
  background-image: url(../images/top-tipsters-section-bg.png);
  background-repeat: no-repeat;
  background-position: top;
}

.top-tipsters .single-area {
  background: var(--body-color);
  border-radius: 10px;
}

.top-tipsters .single-area .main-content {
  padding: 30px;
}

.top-tipsters .single-area .main-content .sub-heading {
  padding: 0 0 21px;
  position: relative;
}

.top-tipsters .single-area .main-content .sub-heading::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #5e67bd;
  left: calc(50%);
}

.top-tipsters .single-area .main-content .sub-heading .img-area {
  margin-right: 5px;
}

.top-tipsters .single-area .main-content .roi-profit h6 {
  margin-bottom: 5px;
}

.top-tipsters .single-area .main-content .roi-profit .roi h6 {
  color: var(--hover-color);
}

.top-tipsters .single-area .main-content .roi-profit .profit h6 {
  color: var(--hover-alt-color);
}

.top-tipsters .single-area .main-content .btn-area {
  margin-top: 25px;
}

.top-tipsters .single-area .profile-content .profile-pic {
  border-radius: 50%;
  border: 4px solid var(--body-color);
}

.top-tipsters .single-area .profile-content .profile {
  transform: translateY(-50px);
  display: inline-block;
  position: relative;
}

.top-tipsters .single-area .profile-content .profile .gold {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.top-tipsters .single-area h5 {
  margin-top: -25px;
  text-align: center;
}

.how-it-works .img-area {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.how-it-works .img-area h3, .how-it-works .img-area h5, .how-it-works .img-area p {
  position: absolute;
  right: -35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  background: #7924c7;
  border: 7px solid #070044;
}

.how-it-works .mid-area {
  position: relative;
}

.how-it-works .mid-area::before, .how-it-works .mid-area::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 190px;
  left: calc(50% - 200px);
}

.how-it-works .mid-area::after {
  background-image: url(../images/arrow-one.png);
  background-repeat: no-repeat;
  top: 0;
}

.how-it-works .mid-area::before {
  background-image: url(../images/arrow-two.png);
  background-repeat: no-repeat;
  bottom: 0;
}

.how-it-works .mid-area h3 {
  left: -35px;
  top: calc(50% - 120px);
}

.how-it-works.affiliate .single-item {
  text-align: center;
}

.how-it-works.affiliate .single-item .img-area h5 {
  width: 50px;
  height: 50px;
  border-width: 5px;
  right: -25px;
}

.how-it-works.affiliate .single-item .single-title {
  margin-top: 20px;
}

.how-it-works.become-tipster {
  margin-top: -330px;
  transform: translateZ(0px);
}

.how-it-works.become-tipster .single-item {
  text-align: center;
  padding: 40px 25px 30px;
  background: var(--body-color);
  border-radius: 20px;
}

.how-it-works.become-tipster .single-item .img-area p {
  width: 40px;
  height: 40px;
  border-width: 5px;
  right: -15px;
  bottom: 20px;
  background: #7924c7;
  border-color: var(--body-color);
}

.how-it-works.become-tipster .single-item .single-title {
  margin-top: 20px;
  margin-bottom: 15px;
}

.join-us {
  background-image: url(../images/faqs-bg.png);
  background-repeat: no-repeat;
  background-position: top;
}

.join-us .main-content {
  background: var(--body-color);
  border-radius: 20px;
  padding: 75px 0;
}

.join-us .main-content .btn-area .cmn-btn {
  margin: 0 15px;
}

.tips-and-events .tips-single {
  padding: 30px;
  border: 1px solid var(--bg-color);
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  background-color: var(--body-color);
  align-items: flex-start;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tips-and-events .tips-single .left-area {
  display: flex;
}

.tips-and-events .tips-single .review-profile {
  text-align: center;
}

.tips-and-events .tips-single .review-profile .img-area {
  position: relative;
  display: inline-block;
}

.tips-and-events .tips-single .review-profile .img-area .profile {
  border: 2px solid #c2a9ff;
  border-radius: 50%;
}
.tips-and-events .tips-single .review-profile .img-area .bprofile {
  border: 1px solid #edb606;

}

.tips-and-events .tips-single .review-profile .img-area .gold {
  position: absolute;
  bottom: 0;
  right: 0;
}

.tips-and-events .tips-single .review-profile .review {
  margin-top: 10px;
}

.tips-and-events .tips-single .review-profile .review i {
  color: #f59b00;
  font-size: 14px;
  cursor: pointer;
  margin-right: -2px;
}

.tips-and-events .tips-single .mid-content {
  margin-left: 50px;
}

.tips-and-events .tips-single .mid-content .match-tip-header .img-header {
  width: 30px;
  height: 30px;
  background:transparent;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.tips-and-events .tips-single .mid-content .tip-heading {
  margin: 15px 0;
}
.tips-and-events .tips-single .mid-content .tip-heading .img-header {
  width: 30px;
  height: 30px;
  background:transparent;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.tips-and-events .tips-single .mid-content .tip-heading h5 {
  color: var(--hover-color);
  margin-left: 10px;
  margin-top: 0;
}

.tips-and-events .tips-single .mid-content .date-name h6 {
  color: var(--hover-alt-color);
  margin-bottom: 19px;
  margin-top: 0;
}

.tips-and-events .tips-single .mid-content .date-name p {
  color: var(--para-alt-color);
}

.tips-and-events .tips-single .right-area .offers-number {
  width: 90px;
  height: 90px;
  border: 1px solid var(--bg-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tips-and-events .tips-single .right-area .logo-area {
  background: #19115f;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
}

.tips-and-events .section-btn a {
  margin-top: 18px;
}

.tips-and-events .cus-mar {
  margin-bottom: -20px;
}

.tips-and-events .events-single {
  padding: 15px;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
  border-radius: 10px;
  margin-bottom: 20px;
}

.tips-and-events .events-single .time-tips .tips {
  padding: 8px 15px;
  border: 1px solid #00ebd5;
  border-radius: 10px;
}

.tips-and-events .events-single .time-tips .tips span {
  margin-left: 10px;
}

.tips-and-events .events-single .heading-area {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  background: #2d237b;
  border-radius: 10px;
  margin: 20px 0;
}

.tips-and-events .events-single .heading-area h5 {
  text-transform: uppercase;
  color: var(--hover-color);
}

.tips-and-events .events-single .bottom-area span {
  color: #c2a9ff;
}

.why-bitips-better {
  background-color: #2d0572;
  background-image: url(../images/why-bitips-better-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom 120px;
}

.why-bitips-better .single-area {
  border-bottom: 1px solid #5b29b1;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.why-bitips-better .single-area:last-child {
  padding-bottom: 0;
  margin-bottom: -5px;
  border: none;
}

.why-bitips-better .single-area .img-area img {
  max-width: unset;
}

.why-bitips-better .single-area .text-area {
  margin-left: 30px;
}

.why-bitips-better .single-area .text-area h4 {
  margin-bottom: 19px;
}

.why-bitips-better.about {
  background-color: transparent;
}

.best-tipster .single-item {
  border: 1px solid #635b92;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
}

.best-tipster .single-item .rank {
  background-image: url(../images/rank-bg.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -6px;
  left: calc(15%);
  width: 50px;
  height: 55px;
  text-align: center;
  display: inline-grid;
  align-items: center;
}

.best-tipster .single-item .rank .rank-title {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: -15px;
}

.best-tipster .single-item .rank span {
  margin-left: 12px;
  line-height: 10px;
}

.best-tipster .single-item .left-area {
  display: flex;
  align-items: center;
}

.best-tipster .single-item .left-area .review-profile {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--bg-color);
  border-radius: 20px;
  padding: 15px 30px 8px;
  margin-right: 30px;
}

.best-tipster .single-item .left-area .review-profile .img-area {
  position: relative;
  display: inline-block;
}

.best-tipster .single-item .left-area .review-profile .img-area .profile {
  border: 2px solid #c2a9ff;
  border-radius: 50%;
}

.best-tipster .single-item .left-area .review-profile .img-area .gold {
  position: absolute;
  bottom: 0;
  right: 0;
}

.best-tipster .single-item .left-area .review-profile h6 {
  margin: 15px 0 8px;
  color: var(--hover-alt-color);
}

.best-tipster .single-item .left-area .review-profile .review i {
  color: #f59b00;
  font-size: 14px;
  cursor: pointer;
  margin-right: -2px;
}

.best-tipster .single-item .left-area .mid-content .item-total {
  display: flex;
  align-items: center;
}

.best-tipster .single-item .left-area .mid-content .item-total .single {
  border-right: 1px solid var(--bg-color);
  text-align: center;
  margin-right: 30px;
  padding-right: 30px;
}

.best-tipster .single-item .left-area .mid-content .item-total .single:last-child {
  border: none;
}

.best-tipster .single-item .left-area .mid-content .item-total .single h6 {
  color: var(--hover-alt-color);
}

.best-tipster .single-item .left-area .mid-content .item-total .single span {
  color: var(--para-alt-color);
}

.best-tipster .single-item .right-area {
  padding: 20px 10px;
  background: #1d1566;
  border-radius: 10px;
  text-align: center;
}

.best-tipster .single-item .right-area h5 {
  color: var(--hover-color);
}

.best-tipster .single-item .right-area p {
  color: var(--para-alt-color);
  margin: 6px 0 15px;
}

.best-tipster .section-btn a {
  margin-top: 20px;
}

.faqs-section {
  position: relative;
}

.faqs-section::before {
  position: absolute;
  content: "";
  width: 100%;
  background: #2d0572;
  height: 60%;
  top: 0;
  left: 0;
  z-index: -1;
}

.faqs-section .faq-bg {
  padding-top: 40px;
  border-radius: 10px;
  background-image: linear-gradient(0deg, #070044 0%, #2d237b 99%);
}

.faqs-section .section-header a {
  color: var(--hover-color);
}

.faqs-section .accordion {
  margin-bottom: -20px;
}

.faqs-section .accordion .accordion-item {
  margin-bottom: 20px;
  background: #3a2fa4;
  box-shadow: 0px 12px 24px rgba(47, 65, 129, 0.1);
  border-radius: 10px;
  border: none;
}

.faqs-section .accordion .accordion-item .accordion-header {
  position: relative;
  display: flex;
  align-items: center;
}

.faqs-section .accordion .accordion-item .accordion-header::after {
  position: absolute;
  left: 20px;
  z-index: 3;
  width: 30px;
  height: 30px;
  margin-left: auto;
  content: "";
  background-image: url(../images/faq-icon.png);
  background-repeat: no-repeat;
}

.faqs-section .accordion .accordion-item .accordion-button {
  padding: 20px;
  padding-left: 70px;
  background: #3a2fa4;
  border-radius: 10px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  border: none;
}

.faqs-section .accordion .accordion-item .accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../images/minus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  right: 30px;
  transition: all ease 0.3s;
}

.faqs-section .accordion .accordion-item .accordion-button::before {
  content: "";
  position: absolute;
  right: 25px;
  width: 30px;
  height: 30px;
  background: #261c7e;
  border-radius: 5px;
}

.faqs-section .accordion .accordion-item .accordion-button.collapsed::after {
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../images/plus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  transform: rotate(-90deg);
  transition: all ease 0.3s;
}

.faqs-section .accordion .accordion-item .accordion-collapse {
  border: none;
}

.faqs-section .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 20px;
}

.faqs-section .accordion .accordion-item .accordion-collapse .accordion-body p {
  padding: 20px 0;
  border-top: 1px solid #b0baf1;
}

.faqs-section.support {
  background-image: url(../images/faq-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 60%;
}

.faqs-section.support .nav {
  margin-bottom: 40px;
}

.faqs-section.support .nav .cmn-btn {
  background: transparent;
  border-color: #7867de;
  margin: 0 10px;
}

.faqs-section.support .nav .cmn-btn.active {
  background: var(--bg-color);
  border-color: transparent;
}

.faqs-section.support h3 {
  margin-bottom: 30px;
  text-align: center;
}

.faqs-section.support.faqs {
  background-image: unset;
}

.faqs-section.support.faqs::before {
  display: none;
}

.faqs-section.support.faqs .faq-box ul {
  margin-bottom: -20px;
}

.faqs-section.support.faqs .faq-box ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.faqs-section.support.faqs .faq-box ul li a {
  padding: 20px;
  padding-left: 70px;
  padding-right: 60px;
  background: #3a2fa4;
  border-radius: 10px;
  border: none;
  display: flex;
  width: 100%;
  align-items: center;
}

.faqs-section.support.faqs .faq-box ul li a h5 {
  margin-top: 0;
}

.faqs-section.support.faqs .faq-box ul li a::after, .faqs-section.support.faqs .faq-box ul li a::before {
  content: "";
  position: absolute;
}

.faqs-section.support.faqs .faq-box ul li a::after {
  right: 15px;
  width: 20px;
  height: 20px;
  background-image: url(../images/right-arrow-sec.png);
  background-repeat: no-repeat;
  background-size: 18px;
}

.faqs-section.support.faqs .faq-box ul li a::before {
  left: 20px;
  z-index: 3;
  width: 30px;
  height: 30px;
  margin-left: auto;
  background-image: url(../images/faq-icon.png);
  background-repeat: no-repeat;
}

.testimonials .single-slide {
  padding: 40px 30px;
  background: #1d1566;
  border-radius: 10px;
  margin: 0 15px;
}

.testimonials .single-slide .profile-area {
  margin-top: 24px;
}

.testimonials .single-slide .profile-area .img-area {
  margin-right: 20px;
}

.testimonials .single-slide .profile-area .img-area img {
  border-radius: 50%;
}

.testimonials .single-slide .profile-area .text-area h6 {
  margin-top: 0;
}

.testimonials .single-slide .profile-area .text-area .mdr {
  color: #ff96a5;
  margin-top: 5px;
}

.testimonials.affiliate {
  margin-top: 45px;
}

.about-us .section-area .para-area {
  margin-top: 25px;
}

.what-we-do {
  position: relative;
  overflow-x: initial;
}

.what-we-do::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  background: #2d0572;
  z-index: -1;
  top: 0;
}
.single-sidebar {
    background-color: var(--body-color);
  padding: 40px 30px;
  margin-bottom: 30px;
}
.all-tips-content .sidebar .single-sidebar {
  border-radius: 10px;
  background-color: var(--body-color);
  padding: 40px 30px;
  margin-bottom: 30px;
}

.all-tips-content .sidebar .single-sidebar.tipster {
  padding-bottom: 20px;
}

.all-tips-content .sidebar .single-sidebar .title-area {
  border-bottom: 1px solid var(--bg-color);
  margin-bottom: 30px;
  padding-bottom: 5px;
}

.all-tips-content .sidebar .single-sidebar .date-single {
  margin-bottom: 20px;
}

.all-tips-content .sidebar .single-sidebar .date-single.end {
  margin-bottom: 0;
}

.all-tips-content .sidebar .single-sidebar .single-input {
  border: 1px solid var(--bg-color);
  border-radius: 10px;
  background-color: var(--body-color);
  display: flex;
  align-items: center;
}
.single-input {
  border: 1px solid var(--bg-color);
  border-radius: 10px;
  background-color: var(--body-color);
  display: flex;
  align-items: center;
}
.all-tips-content .sidebar .single-sidebar .single-input img {
  margin-left: 20px;
}

.all-tips-content .sidebar .single-sidebar .single-input input {
  background-color: var(--body-color-on);
  border: none;
  border-radius: 10px;
  color: var(--bs-white);
}

.all-tips-content .sidebar .single-sidebar .btn-area {

  border-radius: 10px;
  background-color: var(--bg-color);
  color: var(--para-color);
  width: 100%;
  padding: 15px 0;
  text-align: center;
  margin-top: 40px;
}

.all-tips-content .sidebar .single-sidebar .btn-area.view {
  margin-top: 20px;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single .checkbox-area input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  border: 1px solid #cbcaed;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single .checkbox-area .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single .checkmark::after {
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single input:checked ~ .checkmark {
  border: 1px solid var(--hover-alt-color);
}

.all-tips-content .sidebar .single-sidebar .checkbox-single input:checked ~ .checkmark:after {
  display: block;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single .item-title i {
  color: #6e62d4;
  font-size: 14px;
  margin: 0 2px;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single .item-title i.full {
  color: #f59b00;
}

.all-tips-content .sidebar .single-sidebar .checkbox-single .item-title img {
  margin-right: 10px;
}

.all-tips-content .sidebar .single-sidebar .nice-select {
  border-radius: 10px;
  background-color: var(--body-color);
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
}

.all-tips-content .sidebar .single-sidebar .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}

.all-tips-content .sidebar .single-sidebar .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.all-tips-content .sidebar .single-sidebar .nice-select .list .option {
  background: transparent;
}

.all-tips-content .sidebar .single-sidebar .nice-select .list .option:hover {
  color: var(--hover-color);
}

.all-tips-content .sidebar .single-sidebar .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.all-tips-content .right-area .heading-area {
  border-radius: 10px;
  background-color: var(--body-color);
  padding: 30px;
  margin-bottom: 40px;
}

.all-tips-content .right-area .heading-area h4 span {
  color: var(--hover-color);
  font-size: inherit;
  font-weight: inherit;
}

.all-tips-content .right-area .heading-area .bottom-item {
  margin-top: 30px;
}

.all-tips-content .right-area .heading-area .bottom-item .single-input {
  border-radius: 10px;
  background-color: var(--body-color);
}

.all-tips-content .right-area .heading-area .bottom-item .nice-select {
  border-radius: 10px;
  background-color: var(--body-color);
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--bg-color);
  height: 50px;
}

.all-tips-content .right-area .heading-area .bottom-item .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}

.all-tips-content .right-area .heading-area .bottom-item .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.all-tips-content .right-area .heading-area .bottom-item .nice-select .list .option {
  background: transparent;
}

.all-tips-content .right-area .heading-area .bottom-item .nice-select .list .option:hover {
  color: var(--hover-color);
}

.all-tips-content .right-area .heading-area .bottom-item .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.all-tips-content .right-area .single-item {
  border-radius: 20px;
  background-color: var(--body-color);
  padding: 30px;
  border: 1px solid var(--bg-color);
  margin-top: 30px;
}

.all-tips-content .right-area .single-item .left,
.all-tips-content .right-area .single-item .top-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.all-tips-content .right-area .single-item .top-area {
  border-bottom: 1px solid var(--bg-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.all-tips-content .right-area .single-item .top-area .left .time-left {
  color: #ffb2bd;
  background: #331c76;
  padding: 5px 20px;
  margin-left: 30px;
  border-radius: 15px;
}

.all-tips-content .right-area .single-item .top-area .right {
  display: flex;
  align-items: center;
  border: 1px solid #00ebd5;
  border-radius: 10px;
  padding: 5px 15px;
}

.all-tips-content .right-area .single-item .top-area .right .mdr {
  color: #00ebd5;
  margin-left: 5px;
}

.all-tips-content .right-area .single-item .mid-area h5 {
  margin-bottom: 30px;
}

.all-tips-content .right-area .single-item .mid-area .sports {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #2d237b;
  padding: 10px;
}

.all-tips-content .right-area .single-item .mid-area .sports .single {
  border-radius: 10px;
  background-color: var(--body-color);
  padding: 10px;
}

.all-tips-content .right-area .single-item .mid-area .sports .single .logo-area {
  border-radius: 10px;
  background-color: #4736d3;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.all-tips-content .right-area .single-item .mid-area .sports .vs {
  border-radius: 50%;
  background-color: var(--body-color);
  width: 80px;
  height: 80px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-tips-content .right-area .single-item .mid-area .sports .vs h4 {
  margin-top: 0;
  text-transform: uppercase;
  color: var(--hover-color);
}

.all-tips-content .right-area .single-item .mid-area .btn-area {
  margin-top: 30px;
}

.pagination {
  background-color: var(--body-color);
  border-radius: 40px;
  padding: 20px;
  display: inline-flex;
}

.pagination .page-item .page-link {
  border-radius: 50%;
  background: #33288a;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
  border: none;
  font-weight: bold;
  margin: 0 8px;
}

.pagination .page-item .page-link.active, .pagination .page-item .page-link:hover {
  background: var(--bg-color);
}

.pagination .page-item .page-link.previous {
  margin-right: 20px;
}

.pagination .page-item .page-link.next {
  margin-left: 20px;
}

.ui-datepicker.ui-widget-content {
  background-color: var(--body-color);
  border: 1px solid var(--bg-color);
}

.ui-datepicker .ui-datepicker-header {
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.ui-datepicker .ui-state-default,
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default,
.ui-datepicker .ui-button,
.ui-datepicker .ui-button.ui-state-disabled:hover,
.ui-datepicker .ui-button.ui-state-disabled:active {
  border: 1px solid var(--bg-color);
  background: var(--body-color);
  text-align: center;
  color: var(--para-color);
}

.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-widget-header .ui-state-highlight {
  background: var(--bg-color);
  border: 1px solid var(--bg-color);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background: transparent !important;
  border: none;
}

.ui-datepicker .ui-state-active,
.ui-datepicker .ui-state-active,
.ui-datepicker .ui-widget-header .ui-state-active,
.ui-datepicker a.ui-button:active,
.ui-datepicker .ui-button:active,
.ui-datepicker .ui-button.ui-state-active:hover {
  background: var(--hover-alt-color);
  border-color: var(--hover-alt-color);
}

.match-betting-head {
  background: var(--body-color);
  overflow-x: initial;
  padding: 40px 0;
}

.match-betting-head .nice-select {
  border-radius: 10px;
  background-color: var(--body-color);
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--bg-color);
  height: 50px;
}

.match-betting-head .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}

.match-betting-head .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.match-betting-head .nice-select .list .option {
  background: transparent;
}

.match-betting-head .nice-select .list .option:hover {
  color: var(--hover-color);
}

.match-betting-head .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.match-betting-head .btn-area i {
  font-size: 30px;
  background-color: #2d237b;
  border-radius: 5px;
  min-width: 50px;
  min-height: 50px;
  color: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
}

.match-betting-head .btn-area i.active {
  background-color: #6656ef;
}

.match-betting-head.find-tipster {
  background: transparent;
  padding: 0;
  margin-top: -277px;
  transform: translateZ(0px);
}

.match-betting-head.find-tipster .top-content {
  background-color: var(--body-color);
  border-radius: 20px;
  padding: 40px 30px;
}

.match-betting-head.find-tipster .top-content .single-input input {
  background-color: var(--input-bg);
  border: none;
  border-radius: 10px;
  color: var(--bs-white);
}

.match-betting-head.find-tipster .top-content .single-input .nice-select {
  background: var(--input-bg);
  margin-bottom: 30px;
}

.match-betting-head.find-tipster .top-content .range-input input {
  padding: 0;
  margin: 0;
  color: #fff;
  background: transparent;
  width: initial;
  border: none;
  font-weight: inherit;
  font-size: inherit;
}

.match-betting-head.find-tipster .top-content .range-input .ui-widget-header {
  background: #4d38ff;
}

.match-betting-head.find-tipster .top-content .range-input .ui-widget-content {
  border: none;
  background: #5b4ecb;
  height: 10px;
  margin: 0;
}

.match-betting-head.find-tipster .top-content .range-input .ui-slider-handle.ui-state-default {
  width: 15px;
  height: 15px;
  background: var(--hover-color);
  box-shadow: 0 4px 4px rgba(53, 78, 133, 0.3);
  border-radius: 20px;
  border: none;
  top: -3px;
}

.match-betting-head.find-tipster .top-content .range-input .ui-slider-handle.ui-state-default:focus {
  outline: none;
}

.match-betting-head.find-tipster .top-content .btn-area {
  margin-right: -30px;
}

.match-betting-head.find-tipster .top-content .btn-area .cmn-btn {
  margin-left: 15px;
}

.match-betting-content .all-items {
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.match-betting-content .single-item {
  flex: 0 0 calc(100% / 3 - 15px);
  max-width: calc(100% / 3 - 15px);
  background-color: var(--body-color);
  border-radius: 20px;
  margin-bottom: 30px;
  transition: 0.5s;
}

.match-betting-content .single-item .first-area .profile-area .w-100 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.match-betting-content .single-item .first-area .profile-area .profile-pic {
  border-radius: 50%;
  border: 4px solid var(--body-color);
}

.match-betting-content .single-item .first-area .profile-area .profile {
  transform: translateY(-50px);
  display: inline-block;
  position: relative;
}

.match-betting-content .single-item .first-area .profile-area .profile .gold {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.match-betting-content .single-item .first-area .name-area {
  margin-top: -30px;
}

.match-betting-content .single-item .first-area .name-area img {
  margin-left: 10px;
}

.match-betting-content .single-item .first-area .sub-heading {
  position: relative;
  border-bottom: 1px solid #404190;
  margin: 20px 0 35px;
  padding-bottom: 25px;
}

.match-betting-content .single-item .first-area .sub-heading::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #5e67bd;
  left: calc(50%);
}

.match-betting-content .single-item .first-area .sub-heading .img-area {
  margin-right: 5px;
}

.match-betting-content .single-item .mid-area .roi-profit {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.match-betting-content .single-item .mid-area .roi-profit h6 {
  margin-bottom: 5px;
}

.match-betting-content .single-item .mid-area .roi-profit .roi h6 {
  color: var(--hover-color);
}

.match-betting-content .single-item .mid-area .roi-profit .profit {
  position: relative;
}

.match-betting-content .single-item .mid-area .roi-profit .profit::before, .match-betting-content .single-item .mid-area .roi-profit .profit::after {
  position: absolute;
  content: "";
  top: 0;
  width: 1px;
  height: 100%;
  background: #404190;
}

.match-betting-content .single-item .mid-area .roi-profit .profit::before {
  left: calc(-50%);
}

.match-betting-content .single-item .mid-area .roi-profit .profit::after {
  right: calc(-50%);
}

.match-betting-content .single-item .mid-area .roi-profit .profit h6 {
  color: var(--hover-alt-color);
}

.match-betting-content .single-item .mid-area .roi-profit .rate h6 {
  color: #c2a9ff;
}

.match-betting-content .single-item .mid-area .about-user {
  display: none;
}

.match-betting-content .single-item .last-area {
  padding-bottom: 30px;
}

.match-betting-content .single-item .last-area .last-top {
  border-style: solid;
  border-width: 1px;
  border-color: var(--bg-color);
  border-radius: 10px;
  background-color: #2d237b;
  text-align: center;
  padding: 30px 10px;
  margin: 30px 10px;
}

.match-betting-content .single-item .last-area .last-top h6 {
  margin-bottom: 25px;
}

.match-betting-content .single-item .last-area .last-top .single-radio {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: var(--body-color);
  padding: 10px 45px;
}

.match-betting-content .single-item .last-area .last-top .single-radio:hover input ~ .checkmark {
  background-color: transparent;
}

.match-betting-content .single-item .last-area .last-top .single-radio .amount {
  color: var(--hover-color);
  margin-left: 5px;
}

.match-betting-content .single-item .last-area .last-top .single-radio .checkmark {
  position: absolute;
  left: 15px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid var(--bs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-betting-content .single-item .last-area .last-top .single-radio .checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-white);
}

.match-betting-content .single-item .last-area .last-top .single-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.match-betting-content .single-item .last-area .last-top .single-radio input:checked ~ .checkmark {
  background-color: transparent;
  border: 1px solid var(--hover-color);
}

.match-betting-content .single-item .last-area .last-top .single-radio input:checked ~ .checkmark::after {
  display: block;
  background: var(--hover-color);
}

.match-betting-content .single-item .last-area .last-top .cmn-btn {
  margin-top: 20px;
}

.match-betting-content .single-item .last-area .last-top .cmn-btn.buy {
  background: #4736d3;
  width: 100%;
  border-radius: 10px;
  border: none;
}

.match-betting-content .single-item .last-area .last-bottom {
  display: flex;
  justify-content: center;
}

.match-betting-content .single-item .last-area .last-bottom .tips {
  display: inline-flex;
  align-items: center;
  border: 1px solid #00ebd5;
  border-radius: 10px;
  padding: 5px 15px;
  margin-right: 30px;
}

.match-betting-content .single-item .last-area .last-bottom .tips img {
  margin-right: 5px;
}

.match-betting-content .single-item .last-area .last-bottom .cmn-btn {
  border-radius: 10px;
  padding: 5px 25px;
}

.match-betting-content .single-item.list {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-around;
}

.match-betting-content .single-item.list .items {
  width: 100%;
}

.match-betting-content .single-item.list .first-area {
  background-color: #2d237b;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.match-betting-content .single-item.list .first-area .sub-heading {
  margin-bottom: 0;
  padding-bottom: 0;
  border-color: transparent;
}

.match-betting-content .single-item.list .first-area .profile-area .w-100 {
  border-top-right-radius: unset;
}

.match-betting-content .single-item.list .mid-area {
  padding: 20px 30px;
}

.match-betting-content .single-item.list .mid-area .roi-profit .profit::before {
  left: calc(-50%);
}

.match-betting-content .single-item.list .mid-area .roi-profit .profit::after {
  right: calc(-50%);
}

.match-betting-content .single-item.list .mid-area .about-user {
  border-top: 1px solid #404190;
  margin-top: 20px;
  padding-top: 20px;
  display: block;
}

.match-betting-content .single-item.list .mid-area .about-user h5 {
  margin-bottom: 10px;
}

.match-betting-content .single-item.list .last-area {
  padding-bottom: 20px;
}

.match-betting-content .single-item.list .last-area .last-top {
  padding: 20px 10px;
  margin: 20px 10px;
}

.match-betting-content .pagination {
  margin-top: 40px;
}

.match-betting-content.dashboard {
  margin-top: 40px;
}

.match-betting-content.dashboard .single-item {
  flex: initial;
  max-width: initial;
}

.match-betting-content.dashboard .single-item .last-area .last-top .radio-area {
  margin-bottom: 30px;
}

.match-betting-content.dashboard .single-item .last-area .last-top .buy {
  background: transparent;
  border: 1px solid var(--bg-color);
  color: var(--hover-color);
  width: 80%;
  margin: auto;
  margin-top: 30px;
}

.match-betting-content.dashboard .single-item .last-area .last-top p {
  margin-top: 15px;
}

.match-betting-content.dashboard .single-item .last-area .last-top .single-radio {
  justify-content: space-between;
  padding: 10px 40px;
  padding-right: 20px;
}

.match-betting-content.dashboard .single-item .last-area .last-bottom a {
  border-radius: 20px;
  width: 80%;
  background: #4736D3;
  border-color: transparent;
}

.match-betting-content.dashboard .single-item .last-area .last-bottom a:hover {
  background: transparent;
  border-color: #7867de;
}

.paymentModal .modal-content {
  background: #2d237b;
}

.paymentModal .payment-box {
  border-style: solid;
  border-width: 1px;
  border-color: var(--bg-color);
  border-radius: 10px;
  background-color: #2d237b;
  padding: 25px 20px;
}

.paymentModal .single-radio {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: var(--body-color);
  padding: 10px 45px;
  padding-right: 10px;
  margin-bottom: 10px;
}

.paymentModal .single-radio img {
  margin-left: 5px;
}

.paymentModal .single-radio:hover input ~ .checkmark {
  background-color: transparent;
}

.paymentModal .single-radio .amount {
  color: var(--hover-color);
  margin-left: 5px;
}

.paymentModal .single-radio .checkmark {
  position: absolute;
  left: 20px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid var(--bs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paymentModal .single-radio .checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-white);
}

.paymentModal .single-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.paymentModal .single-radio input:checked ~ .title-item {
  color: var(--hover-color);
}

.paymentModal .single-radio input:checked ~ .checkmark {
  background-color: transparent;
  border: 1px solid var(--hover-color);
}

.paymentModal .single-radio input:checked ~ .checkmark::after {
  display: block;
  background: var(--hover-color);
}

.paymentModal h6 {
  margin-bottom: 20px;
}

.paymentModal .subscribe {
  border-bottom: 1px solid #645bb4;
  margin-bottom: 29px;
  padding-bottom: 9px;
}

.paymentModal .btn-area {
  margin-top: 20px;
}

.paymentModal .btn-area a {
  width: 100%;
  border-radius: 10px;
}

.tipster-profile-content {
  margin-top: -288px;
  transform: translateZ(0px);
}

.tipster-profile-content .profile-banner-area .main-content {
  background: var(--body-color);
  position: relative;
  padding: 15px;
  margin-bottom: 30px;
}

.tipster-profile-content .profile-banner-area .main-content .rank {
  background-image: url(../images/rank-bg-second.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -6px;
  left: calc(45%);
  width: 65px;
  height: 70px;
  text-align: center;
  display: inline-grid;
  align-items: center;
}

.tipster-profile-content .profile-banner-area .main-content .rank .rank-title {
  display: block;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: -15px;
  margin-left: 15px;
}

.tipster-profile-content .profile-banner-area .main-content .rank h5 {
  margin-left: 15px;
  line-height: 10px;
}

.tipster-profile-content .profile-banner-area .main-content .top-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 30px;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .profile {
  margin-top: -80px;
  display: inline-block;
  position: relative;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .profile .profile-pic {
  border-radius: 50%;
  border: 4px solid var(--body-color);
}

.tipster-profile-content .profile-banner-area .main-content .top-area .profile .gold {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .user-info {
  margin-left: 20px;
  margin-top: 20px;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .user-info .top {
  margin-bottom: 15px;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .user-info img {
  margin-right: 15px;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .user-info h5 {
  margin-right: 15px;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .btn-area {
  margin-top: -80px;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .btn-area .cmn-btn {
  background: #5ac4ff;
  color: #2f007f;
  border: none;
}

.tipster-profile-content .profile-banner-area .main-content .top-area .btn-area .cmn-btn.follow {
  background: #c2a9ff;
  margin-left: 15px;
}

.tipster-profile-content .profile-banner-area .main-content .mid-area {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin: 40px 30px;
}

.tipster-profile-content .profile-banner-area .main-content .mid-area .single {
  border: 1px solid #7c86da;
  border-radius: 10px;
  background-color: #332989;
  padding: 10px 50px 5px;
  width: 100%;
  margin: 0 12px;
}

.tipster-profile-content .profile-banner-area .main-content .mid-area h6 {
  color: var(--hover-color);
  margin-bottom: 10px;
}

.tipster-profile-content .profile-banner-area .main-content .main-tabs {
  border: none;
  padding-bottom: 20px;

}

.tipster-profile-content .profile-banner-area .main-content .main-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  border: none;
  color: var(--bs-white);
  padding: 0;
  margin: 0 30px;
}

.tipster-profile-content .profile-banner-area .main-content .main-tabs .nav-item .nav-link.active {
  background: transparent;
  position: relative;
  transition: all 0.3s;
}

.tipster-profile-content .profile-banner-area .main-content .main-tabs .nav-item .nav-link.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--hover-color);
  left: 0;
  bottom: -20px;
  transition: all 0.3s;
}

.tipster-profile-content .profile-banner-area .main-content .main-tabs .nav-item .nav-link span {
  background: #4a3dba;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.tipster-profile-content .main-tab-content .date-area {
  color: var(--hover-color);
  margin: 40px 0 30px;
}

.tipster-profile-content .main-tab-content .nav-tabs {
  border: none;
}

.tipster-profile-content .main-tab-content .nav-tabs .cmn-btn {
  background: transparent;
  border: 1px solid #5b70ba;
  margin-right: 30px;
}

.tipster-profile-content .main-tab-content .nav-tabs .cmn-btn.active {
  background: #4736d3;
  border: 1px solid #4736d3;
}

.tipster-profile-content .main-tab-content .single-area {
  border: 1px solid #5b70ba;
  border-radius: 10px;
  background-color: #070044;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.tipster-profile-content .main-tab-content .single-area .left-area .flag {
  margin-bottom: 15px;
}

.tipster-profile-content .main-tab-content .single-area .left-area .flag p {
  margin-left: 5px;
  color: #b2b4e1;
}

.tipster-profile-content .main-tab-content .single-area .left-area span {
  color: #b2b4e1;
  margin-top: 10px;
}

.tipster-profile-content .main-tab-content .single-area .right-area span {
  background-color: #062647;
  color: var(--hover-color);
  border-radius: 20px;
  padding: 5px 20px;
  margin-bottom: 15px;
}

.tipster-profile-content .main-tab-content .single-area .right-area .right-top {
  justify-content: flex-end;
}

.tipster-profile-content .main-tab-content .single-area .right-area .right-top img {
  margin-right: 10px;
}

.tipster-profile-content .main-tab-content .single-area .right-area .logo-area {
  background: #19115f;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
}

.tipster-profile-content .main-tab-content .single-area .right-area .logo-area.text {
  padding: 10px 20px;
  margin-top: 15px;
}

.tipster-profile-content .main-tab-content .pagination {
  margin-top: 40px;
}

.tipster-profile-content .main-tab-content .sidebar .single-box {
  border-style: solid;
  border-width: 1px;
  border-color: var(--bg-color);
  border-radius: 10px;
  background-color: #2d237b;
  padding: 25px 20px;
}

.tipster-profile-content .main-tab-content .sidebar h6 {
  margin-bottom: 20px;
}

.tipster-profile-content .main-tab-content .sidebar .subscribe {
  border-bottom: 1px solid #645bb4;
  margin-bottom: 29px;
  padding-bottom: 9px;
}

.tipster-profile-content .main-tab-content .sidebar .btn-area {
  margin-top: 20px;
}

.tipster-profile-content .main-tab-content .sidebar .btn-area a {
  width: 100%;
  border-radius: 10px;
}

.tipster-profile-content .main-tab-content .sidebar .subscribers {
  background: #332989;
  border-radius: 5px;
  padding: 20px;
  margin-top: 30px;
}

.tipster-profile-content .main-tab-content .sidebar .subscribers .img-area {
  border-radius: 50%;
  background-color: #4436be;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.tipster-profile-content .main-tab-content .sidebar .subscribers span {
  color: #84d3ff;
}

.tipster-profile-content .main-tab-content .sidebar .subscribers h5 {
  margin-top: 0;
}

.tipster-profile-content .main-tab-content .sidebar .single-sidebar {
  background: #332989;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}

.tipster-profile-content .main-tab-content .sidebar .single-sidebar .text-area {
  margin-bottom: 15px;
}

.tipster-profile-content .main-tab-content .sidebar .single-sidebar .img-area {
  background: #19115f;
  border-radius: 20px;
  padding: 15px 35px;
  display: inline-block;
}

.tipster-profile-content .main-tab-content .sidebar .single-radio {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: var(--body-color);
  padding: 10px 45px;
  padding-right: 10px;
  margin-bottom: 10px;
}

.tipster-profile-content .main-tab-content .sidebar .single-radio img {
  margin-left: 5px;
}

.tipster-profile-content .main-tab-content .sidebar .single-radio:hover input ~ .checkmark {
  background-color: transparent;
}

.tipster-profile-content .main-tab-content .sidebar .single-radio .amount {
  color: var(--hover-color);
  margin-left: 5px;
}

.tipster-profile-content .main-tab-content .sidebar .single-radio .checkmark {
  position: absolute;
  left: 20px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid var(--bs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tipster-profile-content .main-tab-content .sidebar .single-radio .checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-white);
}

.tipster-profile-content .main-tab-content .sidebar .single-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.tipster-profile-content .main-tab-content .sidebar .single-radio input:checked ~ .title-item {
  color: var(--hover-color);
}

.tipster-profile-content .main-tab-content .sidebar .single-radio input:checked ~ .checkmark {
  background-color: transparent;
  border: 1px solid var(--hover-color);
}

.tipster-profile-content .main-tab-content .sidebar .single-radio input:checked ~ .checkmark::after {
  display: block;
  background: var(--hover-color);
}

.tipster-profile-content .main-tab-content .statistics-single {
  background: #231B63;
  border-radius: 20px;
  padding: 20px 30px;
  margin-bottom: 30px;
}

.tipster-profile-content .main-tab-content .statistics-single.apex {
  padding-left: 15px;
}

.tipster-profile-content .main-tab-content .statistics-single.apex .head-area {
  padding-left: 20px;
}

.tipster-profile-content .main-tab-content .statistics-single.apex .head-area .cmn-btn {
  margin-left: 15px;
  margin-right: 5px;
}

.tipster-profile-content .main-tab-content .statistics-single .head-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tipster-profile-content .main-tab-content .statistics-single .nice-select {
  background-color: transparent;
  border: 1px solid #5B70BA;
  border-radius: 25px;
  display: flex;
  align-items: center;
  width: 25%;
  height: 50px;
}

.tipster-profile-content .main-tab-content .statistics-single .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}

.tipster-profile-content .main-tab-content .statistics-single .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.tipster-profile-content .main-tab-content .statistics-single .nice-select .list .option {
  background: transparent;
}

.tipster-profile-content .main-tab-content .statistics-single .nice-select .list .option:hover {
  color: var(--hover-color);
}

.tipster-profile-content .main-tab-content .statistics-single .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.tipster-profile-content .main-tab-content .statistics-single .table {
  text-align: center;
  margin-top: 20px;
}

.tipster-profile-content .main-tab-content .statistics-single .table tbody {
  background-color: #34298C;
  padding: 15px 0;
}

.tipster-profile-content .main-tab-content .statistics-single .table tbody .title-item {
  background: #19115F;
  border-radius: 10px;
  padding: 15px;
}

.tipster-profile-content .main-tab-content .statistics-single .table th {
  font-weight: 500;
}

.tipster-profile-content .main-tab-content .statistics-single .table th, .tipster-profile-content .main-tab-content .statistics-single .table td {
  color: var(--bs-white);
}

.tipster-profile-content .main-tab-content .follow-single {
  background-color: var(--body-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding-bottom: 40px;
}

.tipster-profile-content .main-tab-content .follow-single .first-area .profile-area .w-100 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tipster-profile-content .main-tab-content .follow-single .first-area .profile-area .profile-pic {
  border-radius: 50%;
  border: 4px solid var(--body-color);
}

.tipster-profile-content .main-tab-content .follow-single .first-area .profile-area .profile {
  transform: translateY(-50px);
  display: inline-block;
  position: relative;
}

.tipster-profile-content .main-tab-content .follow-single .first-area .profile-area .profile .gold {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.tipster-profile-content .main-tab-content .follow-single .first-area .name-area {
  margin-top: -30px;
}

.tipster-profile-content .main-tab-content .follow-single .first-area .name-area img {
  margin-left: 10px;
}

.tipster-profile-content .main-tab-content .follow-single .first-area .sub-heading {
  position: relative;
  margin: 20px 0 25px;
}

.tipster-profile-content .main-tab-content .follow-single .first-area .sub-heading::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #5e67bd;
  left: calc(50%);
}

.tipster-profile-content .main-tab-content .follow-single .first-area .sub-heading .img-area {
  margin-right: 5px;
}

.tipster-profile-content .main-tab-content .follow-single .btn-area a {
  border-radius: 10px;
  padding: 6px 30px;
}

.apexcharts-canvas .apexcharts-menu-icon {
  display: none;
}

.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light {
  border: 1px solid #3123A6;
  background: #3123A6;
  padding: 20px 30px;
}

.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
  border: 1px solid #3123A6;
  background: #3123A6;
  color: var(--bs-white);
  text-align: center;
}

.apexcharts-canvas .apexcharts-xaxistooltip {
  display: none;
}

.contact-section {
  margin-top: -276px;
  transform: translateZ(0px);
}

.contact-section .bg-area {
  background-color: var(--body-color);
  border-radius: 20px;
  padding: 60px 95px;
}

.contact-section .form-content {
  margin-top: -30px;
}

.contact-section .form-content .single-input {
  margin-top: 30px;
}

.contact-section .form-content .single-input input, .contact-section .form-content .single-input textarea {
  background-color: var(--body-color);
  border: none;
  border-radius: 10px;
  color: var(--bs-white);
  border: 1px solid var(--bg-color);
}

.contact-section .form-content .single-input .nice-select {
  border-radius: 10px;
  background-color: var(--body-color);
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--bg-color);
  height: 50px;
}

.contact-section .form-content .single-input .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}

.contact-section .form-content .single-input .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.contact-section .form-content .single-input .nice-select .list .option {
  background: transparent;
}

.contact-section .form-content .single-input .nice-select .list .option:hover {
  color: var(--hover-color);
}

.contact-section .form-content .single-input .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.contact-section .form-content button {
  border-radius: 10px;
  margin-top: 30px;
}

.contact-us .main-content .cmn-btn {
  margin-top: 40px;
}

.invite-friends {
  background-image: url(../images/invite-friends-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--body-color);
  overflow-x: initial;
}

.invite-friends .single-item {
  text-align: center;
}

.invite-friends .single-item .img-area {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: #6d3cc1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.invite-friends .social-box {
  background: #2d237b;
  padding: 30px 0;
  border-radius: 20px;
  margin-bottom: -45px;
  transform: translateZ(0px);
}

.invite-friends .social-box p {
  margin-right: 10px;
}

.invite-friends .social-box .social-link a {
  width: 35px;
  height: 35px;
  border: 1px solid #3a3878;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: 0.3s;
}

.invite-friends .social-box .social-link a i {
  color: #5ac4ff;
  transition: 0.3s;
}

.invite-friends .social-box .social-link a:hover {
  background: #ff96a5;
  border-color: #ff96a5;
}

.invite-friends .social-box .social-link a:hover i {
  color: var(--bs-white);
}

.features-section ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.features-section ul li p {
  margin-top: 0;
  padding-left: 10px;
}

.features-section .cmn-btn {
  margin-top: 20px;
}

.error-section h4 {
  margin: 50px 0 40px;
}

.become-tipster-section {
  background-image: url(../images/reg-form-bg.png);
  background-repeat: no-repeat;
  background-position: top;
}

.become-tipster-section .reg-area {
  background-color: var(--body-color);
  border-radius: 10px;
  padding: 30px;
}

.become-tipster-section .reg-area .single-input {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--bg-color);
  background: var(--input-bg);
  padding: 15px 30px;
  margin-bottom: 20px;
}

.become-tipster-section .reg-area .single-input input {
  background: transparent;
  padding: 0;
  border: none;
  margin: 0;
  color: var(--bs-white);
  height: initial;
}

.become-tipster-section .reg-area .single-input img {
  margin-right: 20px;
}

.become-tipster-section .reg-area .nice-select {
  border-radius: 10px;
  background-color: transparent;
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
  height: initial;
  padding: 0;
}

.become-tipster-section .reg-area .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 10px;
}

.become-tipster-section .reg-area .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.become-tipster-section .reg-area .nice-select .list .option {
  background: transparent;
}

.become-tipster-section .reg-area .nice-select .list .option:hover {
  color: var(--hover-color);
}

.become-tipster-section .reg-area .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.become-tipster-section .reg-area .cmn-btn {
  width: 100%;
  border-radius: 10px;
  margin-top: 15px;
}

.become-tipster-section .reg-area .privacy {
  margin: auto;
  margin-top: 20px;
  width: 80%;
}

.become-tipster-section .reg-area .privacy a {
  color: var(--hover-color);
}

.user-dashboard-content {
  margin-top: -57px;
  transform: translateZ(0px);
}

.user-dashboard-content .sidebar {
  background: var(--body-color);
  border-radius: 20px;
}

.user-dashboard-content .sidebar .profile {
  text-align: center;
  padding: 30px 0 40px;
}

.user-dashboard-content .sidebar .profile img {
  border-radius: 50%;
  border: 1px solid #5C61C8;
  padding: 15px;
}

.user-dashboard-content .sidebar .info-area {
  padding: 0 60px 30px;
  border-bottom: 1px solid #5C61C8;
}

.user-dashboard-content .sidebar .info-area h4 {
  margin-bottom: 30px;
}

.user-dashboard-content .sidebar .info-area .location, .user-dashboard-content .sidebar .info-area .date {
  margin-top: 15px;
}

.user-dashboard-content .sidebar .info-area .location img, .user-dashboard-content .sidebar .info-area .date img {
  margin-right: 10px;
}

.user-dashboard-content .sidebar .info-area .edit-profile a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.user-dashboard-content .sidebar .info-area .edit-profile a img {
  margin-right: 10px;
}

.user-dashboard-content .sidebar .info-area .follow {
  margin-top: 20px;
}

.user-dashboard-content .sidebar .info-area .follow img {
  margin-right: 10px;
}

.user-dashboard-content .sidebar .last-sign-in {
  padding: 30px 0;
}

.user-dashboard-content .sidebar .last-sign-in .mdr {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  margin-top: 20px;
}

.user-dashboard-content .sidebar .last-sign-in .mdr::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background: #00FF66;
  left: -20px;
  z-index: 1;
}

.user-dashboard-content .sidebar-bottom {
  padding: 30px;
  background: var(--body-color);
  border: 1px dashed #6358CB;
  border-radius: 20px;
  margin-top: 30px;
}

.user-dashboard-content .sidebar-bottom h4 {
  margin: 40px 0 20px;
}

.user-dashboard-content .sidebar-bottom .cmn-btn {
  margin-top: 30px;
}

.user-dashboard-content .main-tab-btn {
  padding: 30px 20px;
    background: var(--bg-color);
  border-radius: 20px;
}

.user-dashboard-content .main-tab-btn .cmn-btn {
  border: 1px solid var(--body-color);
}

.user-dashboard-content .main-tab-btn .cmn-btn:hover, .user-dashboard-content .main-tab-btn .cmn-btn.active {
  background: var(--body-color);
  border-color: transparent;
}

.user-dashboard-content .main-tab-btn .cmn-btn img {
  margin-right: 5px;
}

.user-dashboard-content .find-tipster {
  background: var(--body-color);
  border-radius: 10px;
  padding: 40px 30px;
}

.user-dashboard-content .find-best-tipster .single-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #443D8D;
  border-radius: 10px;
}

.user-dashboard-content .find-best-tipster .single-item .img-area {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.user-dashboard-content .find-best-tipster .single-item .img-area p {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  right: -10px;
  background: #7924c7;
}

.user-dashboard-content .find-best-tipster .single-item .single-title {
  margin-top: 15px;
}

.user-dashboard-content .account-tab {
  justify-content: space-between;
  margin: 30px 0 40px;
}

.user-dashboard-content .account-tab button {
  background: transparent;
  color: var(--bs-white);
  display: flex;
  align-items: center;
  text-transform: capitalize;
  padding: 0;
  padding-bottom: 15px;
}

.user-dashboard-content .account-tab button.active {
  position: relative;
}

.user-dashboard-content .account-tab button.active::after {
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  height: 1px;
  background: var(--hover-color);
  bottom: 0;
}

.user-dashboard-content .account-tab button img {
  margin-right: 15px;
}

.user-dashboard-content .tab-single .single-box {
  padding: 30px;
  background: var(--body-color);
  border-radius: 20px;
  margin-bottom: 40px;
}

.user-dashboard-content .tab-single .single-box .single-input {
  margin-bottom: 20px;
}

.user-dashboard-content .tab-single .single-box .single-input input {
  background-color: var(--input-bg);
  border: none;
  border-radius: 10px;
  color: var(--bs-white);
}

.user-dashboard-content .tab-single .single-box .single-input .input-area {
  background-color: var(--input-bg);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.user-dashboard-content .tab-single .single-box .single-input .input-area img {
  margin-right: 15px;
}

.user-dashboard-content .tab-single .single-box .single-input .input-area input {
  height: initial;
  padding: 0;
  margin: 0;
}

.user-dashboard-content .tab-single .single-box .single-input .input-area .nice-select {
  border-radius: 10px;
  background-color: transparent;
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
  height: initial;
  padding: 0;
}

.user-dashboard-content .tab-single .single-box .single-input .input-area .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 10px;
}

.user-dashboard-content .tab-single .single-box .single-input .input-area .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.user-dashboard-content .tab-single .single-box .single-input .input-area .nice-select .list .option {
  background: transparent;
}

.user-dashboard-content .tab-single .single-box .single-input .input-area .nice-select .list .option:hover {
  color: var(--hover-color);
}

.user-dashboard-content .tab-single .single-box .single-input .input-area .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.user-dashboard-content .tab-single .single-box .btn-area {
  margin-top: 30px;
}

.user-dashboard-content .tab-single .single-box .btn-area.alt {
  margin-top: 10px;
}

.user-dashboard-content .tab-single .single-box .info-area {
  margin-top: 20px;
}

.user-dashboard-content .tab-single .file-upload {
  display: flex;
  align-items: center;
  padding: 30px;
  background: var(--body-color);
  border-radius: 20px;
  margin-bottom: 40px;
}

.user-dashboard-content .tab-single .file-upload .img-area {
  margin-right: 30px;
}

.user-dashboard-content .tab-single .file-upload .img-area img {
  display: inline;
  border: 1px solid #5C61C8;
  padding: 20px;
  border-radius: 50%;
}

.user-dashboard-content .tab-single .file-upload input {
  margin: 0;
  opacity: 0;
  visibility: hidden;
}

.user-dashboard-content .tab-single .file-upload .file {
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
}

.user-dashboard-content .tab-single .file-upload .file .file-custom {
  position: absolute;
  top: 0;
  width: 60%;
  z-index: 5;
  height: 55px;
  border-radius: 20px;
  border: 1px solid #5B70BA;
  display: flex;
  align-items: center;
}

.user-dashboard-content .tab-single .file-upload .file .file-custom::before {
  position: absolute;
  left: 0;
  background-image: url(../images/upload-icons.png);
  background-repeat: no-repeat;
  content: "";
  width: 24px;
  height: 24px;
  left: 20px;
}

.user-dashboard-content .tab-single .file-upload .file .file-custom::after {
  content: "Upload Profile Photo";
  position: absolute;
  right: 20px;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single .checkbox-area input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  background: #7264E7;
  border: 1px solid #7264E7;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single .checkbox-area .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single .checkmark::after {
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-image: url(../images/check-box.png);
  background-repeat: no-repeat;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single input:checked ~ .checkmark {
  border-color: transparent;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single input:checked ~ .checkmark:after {
  display: block;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single .item-title i {
  color: #6e62d4;
  font-size: 14px;
  margin: 0 2px;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single .item-title i.full {
  color: #f59b00;
}

.user-dashboard-content .tab-single.checkbox-tab .checkbox-single .item-title img {
  margin-right: 10px;
}

.user-dashboard-content .tab-single.checkbox-tab .btn-area {
  margin-top: 10px;
}

.user-dashboard-content .tab-single.current-balance h3 {
  margin: 10px 0 15px;
}

.user-dashboard-content .tab-single.payment .single-box {
  border-style: solid;
  border-width: 1px;
  border-color: var(--bg-color);
  border-radius: 10px;
  background-color: #2d237b;
  padding: 25px 20px;
}

.user-dashboard-content .tab-single.payment h6 {
  margin-bottom: 20px;
}

.user-dashboard-content .tab-single.payment .radio-area {
  margin: 0 -10px;
}

.user-dashboard-content .tab-single.payment .radio-area.payment-method {
  margin-right: 15px;
}

.user-dashboard-content .tab-single.payment .radio-area.payment-method .single-radio {
  background: #4736D3;
}

.user-dashboard-content .tab-single.payment .payment-title {
  border-top: 1px solid #676BBD;
  padding-top: 40px;
  margin-top: 40px;
}

.user-dashboard-content .tab-single.payment .single-radio {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: var(--body-color);
  padding: 10px 45px;
  padding-right: 10px;
  width: 100%;
  margin: 0 10px;
  margin-bottom: 10px;
}

.user-dashboard-content .tab-single.payment .single-radio img {
  margin-left: 5px;
}

.user-dashboard-content .tab-single.payment .single-radio:hover input ~ .checkmark {
  background-color: transparent;
}

.user-dashboard-content .tab-single.payment .single-radio .checkmark {
  position: absolute;
  left: 20px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid var(--bs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-dashboard-content .tab-single.payment .single-radio .checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-white);
}

.user-dashboard-content .tab-single.payment .single-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.user-dashboard-content .tab-single.payment .single-radio input:checked ~ .title-item {
  color: var(--hover-color);
}

.user-dashboard-content .tab-single.payment .single-radio input:checked ~ .checkmark {
  background-color: transparent;
  border: 1px solid var(--hover-color);
}

.user-dashboard-content .tab-single.payment .single-radio input:checked ~ .checkmark::after {
  display: block;
  background: var(--hover-color);
}

.user-dashboard-content .table-area .tab-content {
  margin-top: 30px;
}

.user-dashboard-content .table-area .cmn-btn {
  background: transparent;
  border-color: #7867de;
  margin: 0 10px;
}

.user-dashboard-content .table-area .cmn-btn.active {
  background: var(--bg-color);
  border-color: transparent;
}

.user-dashboard-content .table-area .table {
  text-align: center;
  margin: 0;
}

.user-dashboard-content .table-area .table thead {
  background: #2D237B;
}

.user-dashboard-content .table-area .table thead th:first-child {
  width: 22%;
}

.user-dashboard-content .table-area .table tbody {
  background-color: var(--body-color);
  padding: 15px 0;
}

.user-dashboard-content .table-area .table tbody .title-item img {
  border-radius: 50%;
  margin-right: 5px;
}

.user-dashboard-content .table-area .table tbody .tipsters-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-dashboard-content .table-area .table tbody .tipsters-item img {
  margin-right: 5px;
}

.user-dashboard-content .table-area .table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.user-dashboard-content .table-area .table tr:last-child {
  border: none;
}

.user-dashboard-content .table-area .table th {
  font-weight: 500;
}

.user-dashboard-content .table-area .table th, .user-dashboard-content .table-area .table td {
  color: var(--bs-white);
  vertical-align: middle;
}

.user-dashboard-content .delete-account a {
  color: #FF96A5;
}

.privacy-content {
  overflow-x: initial;
}

.privacy-content .top-wrapper {
  margin-top: -7px;
  margin-bottom: -7px;
}

.privacy-content .top-wrapper h4 {
  text-transform: uppercase;
  margin-bottom: 30px;
}

.privacy-content .top-wrapper p {
  margin-bottom: 30px;
}

.privacy-content .top-wrapper ul {
  margin-bottom: 20px;
}

.privacy-content .top-wrapper ul li {
  margin-bottom: 10px;
}

.privacy-content .safe-data {
  margin: 55px 0;
}

.privacy-content .safe-data ul {
  list-style-type: decimal;
  margin-left: 18px;
}

.privacy-content .safe-data ul li {
  padding-left: 15px;
}

.privacy-content .safe-data ul li::marker {
  font-weight: bold;
}

.privacy-content .cookies {
  margin-bottom: -36px;
}

.privacy-content.terms .safe-data {
  margin-bottom: -23px;
}

.create-tipster-profile .nav {
  background: var(--body-color);
  border-radius: 20px;
  padding: 40px 100px;
  justify-content: space-between;
}

.create-tipster-profile .nav .nav-link {
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--bs-white);
}

.create-tipster-profile .nav .nav-link span {
  width: 40px;
  height: 40px;
  background: #C2A9FF;
  color: var(--body-color);
  border-radius: 20px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-tipster-profile .nav .nav-link.mid {
  position: relative;
}

.create-tipster-profile .nav .nav-link.mid::before, .create-tipster-profile .nav .nav-link.mid:after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background-image: url(../images/right-arrow-sec.png);
  background-repeat: no-repeat;
}

.create-tipster-profile .nav .nav-link.mid::before {
  left: calc(-60%);
}

.create-tipster-profile .nav .nav-link.mid::after {
  right: calc(-60%);
}

.create-tipster-profile .nav .nav-link.active {
  color: var(--hover-color);
}

.create-tipster-profile .nav .nav-link.active span {
  background: var(--hover-color);
}

.create-tipster-profile .tab-content {
  margin-top: 40px;
}

.create-tipster-profile .tab-content .main-content {
  background: var(--body-color);
  border-radius: 20px;
  padding: 40px;
}

.create-tipster-profile .tab-content .main-content .profile-area {
  background: #4539B3;
  border: 1px solid #5C61C8;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: center;
  padding: 50px 0;
}

.create-tipster-profile .tab-content .main-content .profile-area .img-area img {
  border-radius: 50%;
  border: 1px solid #5C61C8;
  padding: 15px;
}

.create-tipster-profile .tab-content .main-content .profile-area .info-area h5 {
  margin: 35px 0 30px;
}

.create-tipster-profile .tab-content .main-content .profile-area .info-area .location, .create-tipster-profile .tab-content .main-content .profile-area .info-area .date {
  margin-top: 15px;
}

.create-tipster-profile .tab-content .main-content .profile-area .info-area .location img, .create-tipster-profile .tab-content .main-content .profile-area .info-area .date img {
  margin-right: 5px;
}

.create-tipster-profile .tab-content .main-content .file-upload {
  display: flex;
  align-items: center;
  background: var(--body-color);
}

.create-tipster-profile .tab-content .main-content .file-upload .img-area {
  margin-right: 30px;
}

.create-tipster-profile .tab-content .main-content .file-upload .img-area img {
  display: inline;
  border: 1px solid #5C61C8;
  padding: 20px;
  border-radius: 50%;
}

.create-tipster-profile .tab-content .main-content .file-upload input {
  margin: 0;
  opacity: 0;
  visibility: hidden;
}

.create-tipster-profile .tab-content .main-content .file-upload p {
  margin-bottom: 15px;
}

.create-tipster-profile .tab-content .main-content .file-upload .completing-profile {
  margin-bottom: 35px;
}

.create-tipster-profile .tab-content .main-content .file-upload .file {
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
}

.create-tipster-profile .tab-content .main-content .file-upload .file .file-custom {
  position: absolute;
  top: 0;
  width: 60%;
  z-index: 5;
  height: 55px;
  border-radius: 20px;
  border: 1px solid #5B70BA;
  display: flex;
  align-items: center;
}

.create-tipster-profile .tab-content .main-content .file-upload .file .file-custom::before {
  position: absolute;
  left: 0;
  background-image: url(../images/upload-icons.png);
  background-repeat: no-repeat;
  content: "";
  width: 24px;
  height: 24px;
  left: 20px;
}

.create-tipster-profile .tab-content .main-content .file-upload .file .file-custom::after {
  content: "Upload Profile Photo";
  position: absolute;
  right: 20px;
}

.create-tipster-profile .tab-content .main-content .bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #5C61C8;
  padding-top: 25px;
  margin-top: 30px;
}

.create-tipster-profile .tab-content .main-content .bottom-area .right-area .cmn-btn {
  margin-left: 30px;
}

.create-tipster-profile .tab-content .main-content .introduce .introduce-text {
  min-width: 60%;
}

.create-tipster-profile .tab-content .main-content .introduce .form-area .single-input {
  margin-top: 15px;
}

.create-tipster-profile .tab-content .main-content .introduce .form-area input, .create-tipster-profile .tab-content .main-content .introduce .form-area textarea {
  background-color: var(--body-color);
  border: none;
  border-radius: 5px;
  color: var(--bs-white);
  border: 1px solid var(--bg-color);
}

.create-tipster-profile .tab-content .main-content.final {
  display: grid;
  justify-content: center;
  text-align: center;
}

.create-tipster-profile .tab-content .main-content.final .profile-area {
  background: transparent;
  border: none;
  padding: 0;
}

.create-tipster-profile .tab-content .main-content.final h3 {
  display: grid;
  justify-content: center;
  margin: 30px 0;
}

.create-tipster-profile .tab-content .main-content.final h3 img {
  margin-right: 10px;
}

.create-tipster-profile .tab-content .main-content.final h4 {
  margin-bottom: 20px;
}

.create-tipster-profile .tab-content .main-content.final .btn-area {
  margin-top: 40px;
}

.create-tipster-profile .tab-content .main-content.final .btn-area .cmn-btn {
  margin: 0 15px;
}

.post-tips-area .main-content {
  background: var(--body-color);
  border-radius: 20px;
  padding: 40px;
}

.post-tips-area .main-content .head-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.post-tips-area .main-content .head-area .right {
  padding: 15px;
  border: 1px solid #6980BA;
  border-radius: 20px;
  background: transparent;
}

.post-tips-area .main-content .head-area .right img {
  margin-right: 10px;
}

.post-tips-area .main-content .top-content {
  padding: 40px 30px;
  background: rgba(45, 35, 123, 0.5);
  border: 1px solid #6980BA;
  border-radius: 20px;
}

.post-tips-area .main-content .top-content .sports {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

.post-tips-area .main-content .top-content .sports .single .logo-area {
  border-radius: 10px;
  background-color: #4736d3;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.post-tips-area .main-content .top-content .sports .count-down h5 {
  color: #FF96A5;
}

.post-tips-area .main-content .top-content .sports .vs h1 {
  margin-top: 0;
  text-transform: uppercase;
  color: var(--hover-color);
}

.post-tips-area .form-parameters h5 {
  border-bottom: 1px solid #6C71E1;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.post-tips-area .form-parameters .single-input input, .post-tips-area .form-parameters .single-input textarea {
  background-color: var(--body-color);
  border: none;
  border-radius: 10px;
  color: var(--bs-white);
}

.post-tips-area .form-parameters .single-input .nice-select {
  background: var(--body-color);
  margin-bottom: 30px;
}

.post-tips-area .form-parameters .btn-area {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.post-tips-area .form-parameters .nice-select {
  border-radius: 10px;
  background-color: var(--body-color);
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--bg-color);
  height: 50px;
}

.post-tips-area .form-parameters .nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}

.post-tips-area .form-parameters .nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.post-tips-area .form-parameters .nice-select .list .option {
  background: transparent;
}

.post-tips-area .form-parameters .nice-select .list .option:hover {
  color: var(--hover-color);
}

.post-tips-area .form-parameters .nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}

.post-tips-area .modal-dialog {
  max-width: 100%;
}

.post-tips-area .modal-dialog .modal-content {
  background: transparent;
}

.post-tips-area .modal-dialog .modal-content .form-parameters {
  background: var(--body-color);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 60px 20px;
}

.post-tips-area .modal-dialog .modal-content .form-parameters .title {
  margin-bottom: 40px;
}

.post-tips-area .modal-dialog .modal-content .single-input {
  text-align: start;
}

.post-tips-area .modal-dialog .modal-content .btn-area {
  justify-content: center;
}

.post-tips-area .modal-dialog .modal-content .btn-area .cmn-btn {
  margin: 0 15px;
}

.post-tips-area.main-box {
  transform: translateZ(0px);
  margin-top: -225px;
}

.post-tips-area.main-box .main-content button span {
  color: var(--bs-white);
}

.support-help-center {
  overflow-x: initial;
  transform: translateZ(0px);
  margin-top: -270px;
}

.support-help-center form {
  background: var(--body-color);
  border-radius: 10px;
  padding: 30px 40px;
}

.support-help-center form .form-content {
  display: flex;
  justify-content: space-between;
  background: var(--body-color);
  padding: 15px 30px;
  border-radius: 10px;
}

.support-help-center form .form-content input {
  background: var(--body-color);
  color: var(--bs-white);
  border: none;
  padding-left: 0;
}

.support-help-center form .form-content button {
  padding: 0;
  min-width: 50px;
  min-height: 50px;
}

.support-help-center .cus-mar {
  margin-bottom: -20px;
}

.support-help-center .single-item {
  padding: 30px 40px;
  background: var(--body-color);
  border-radius: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.support-help-center .single-item h5 {
  margin: 40px 0 25px;
}

.buyers-support-section .section-header a {
  color: var(--hover-color);
}

.buyers-support-section .section-img {
  border: 1px solid #4348C9;
  border-radius: 20px;
}

.buyers-support-section .section-img img {
  border-radius: 20px;
}

.buyers-support-section .bottom-content {
  display: flex;
  justify-content: space-between;
}

.buyers-support-section .bottom-content .left {
  display: flex;
  align-items: center;
}

.buyers-support-section .bottom-content .left p {
  margin-right: 30px;
}

.buyers-support-section .bottom-content .left .img-area {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: var(--body-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.buyers-support-section .bottom-content .right .social-link a {
  width: 35px;
  height: 35px;
  border: 1px solid #3a3878;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: 0.3s;
}

.buyers-support-section .bottom-content .right .social-link a i {
  color: #5ac4ff;
  transition: 0.3s;
}

.buyers-support-section .bottom-content .right .social-link a:hover {
  background: #ff96a5;
  border-color: #ff96a5;
}

.buyers-support-section .bottom-content .right .social-link a:hover i {
  color: var(--bs-white);
}

@media (max-width: 1799px) {
  .why-bitips-better {
    background-size: 45%;
  }
  .footer-section {
    background-size: 190% 65%;
  }
  .banner-section.support-help .overlay {
    background-size: 25%, auto;
  }
}

@media screen and (min-width: 399px) and (max-width: 768px) {
  .tipster-profile-content .main-tab-content .follow-single,
  .match-betting-content.dashboard .single-item,
  .top-tipsters .single-area {
    margin-left: auto;
    margin-right: auto;
  }
  .top-tipsters .single-area,
  .match-betting-content .single-item.list,
  .tipster-profile-content .main-tab-content .follow-single,
  .match-betting-content .single-item {
    max-width: 330px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .header-section.user-dashboard .navbar-collapse .right-area .single-item.user-area .user-btn .name-area {
    display: none;
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item {
    margin-left: 15px;
  }
  .header-section .navbar .navbar-collapse .right-area .search-icon {
    padding-right: 15px;
  }
  .header-section.user-dashboard .navbar .navbar-collapse .right-area {
    margin-left: 10px !important;
  }
}

@media (max-width: 1499px) {
  .counter-section.about::before {
    width: 100%;
    left: 0;
  }
  .invite-friends {
    background-position: bottom;
  }
}

@media (max-width: 1399px) {
  .best-tipster .single-item .rank {
    left: calc(18%);
  }
  .features-section .img-area img {
    max-width: 90%;
  }
  .banner-section.tipster-profile .overlay .shape-area .obj-3 {
    display: none;
  }
  .user-dashboard-content .main-tab-btn .cmn-btn {
    padding: 10px 15px;
  }
}

@media (max-width: 1199px) {
  h1, h1 > a {
    font-size: 57px;
    line-height: 68.4px;
  }
  h2, h2 > a {
    font-size: 43px;
    line-height: 51.6px;
  }
  .banner-section .overlay .banner-content {
    padding: 220px 0 110px;
  }
  .banner-section.inner-banner .overlay .banner-content {
    padding: 215px 0 100px;
  }
  .banner-section.buyers-support .overlay .banner-content {
    padding: 100px 0;
  }
  .banner-section.contact .overlay .banner-content {
    padding: 215px 0 350px;
  }
  .banner-section.tipster-profile.find-tipster .banner-content {
    padding: 195px 0 350px;
  }
  .banner-section.tipster-profile .overlay .banner-content {
    padding: 189px 0 350px;
  }
  .banner-section .overlay .banner-content .container .light-area img {
    width: 20%;
  }
  .banner-section .overlay .shape-area .obj-1,
  .banner-section .overlay .shape-area .obj-2 {
    width: 5%;
  }
  .banner-section .overlay .shape-area .obj-3 {
    width: 3%;
  }
  .counter-section .cus-mar {
    margin-bottom: -30px;
  }
  .counter-section .single-area {
    margin-bottom: 30px;
  }
  .top-tipsters .cus-mar {
    margin-bottom: -30px;
  }
  .top-tipsters .single-area {
    margin-bottom: 30px;
  }
  .best-tipster .single-item,
  .tips-and-events .tips-single {
    padding: 20px;
  }
  .best-tipster .single-item .left-area .mid-content .item-total .single {
    margin-right: 20px;
    padding-right: 20px;
  }
  .footer-section .newsletter {
    padding: 60px 160px;
  }
  .why-bitips-better {
    background-position: right center;
  }
  .banner-section .overlay .shape-area .obj-3 {
    bottom: calc(35%);
  }
  .banner-section.inner-banner .overlay .shape-area .obj-1,
  .banner-section.inner-banner .overlay .shape-area .obj-3 {
    display: none;
  }
  .counter-section .single-area {
    justify-content: center;
  }
  .banner-section.affiliate .overlay {
    background-size: 35%, 100%, 100%;
  }
  .banner-section.all-tips .overlay {
    background-size: 40%, 100%, 100%;
  }
  .features-section .img-area {
    text-align: center;
    margin-top: 40px;
  }
  .features-section .img-area img {
    max-width: 60%;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link,
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-item {
    font-size: 16px;
  }
  .banner-section.contact .overlay {
    background-size: 50%, 100%, 0;
  }
  .create-tipster-profile .tab-content .main-content .file-upload .file .file-custom {
    width: 70%;
  }
  .match-betting-content .single-item .last-area .last-top .radio-area {
    display: grid !important;
    background: var(--body-color);
  }
  .match-betting-content .single-item .mid-area {
    padding: 0 15px;
  }
  .match-betting-content .single-item .mid-area .roi-profit {
    justify-content: space-between;
  }
  .match-betting-content .single-item .mid-area .roi-profit .profit::before {
    left: calc(-35%);
  }
  .match-betting-content .single-item .mid-area .roi-profit .profit::after {
    right: calc(-35%);
  }
  .post-tips-area .main-content .top-content .sports {
    display: grid;
  }
  .post-tips-area .main-content .top-content .sports .mid-area {
    margin: 30px 0;
  }
  .post-tips-area .main-content .top-content .sports .single {
    justify-content: center;
  }
  .banner-section.support-help .overlay {
    background-size: 0, auto;
  }
  .tipster-profile-content .main-tab-content .statistics-single.apex .head-area {
    display: grid;
  }
  .tipster-profile-content .main-tab-content .statistics-single.apex .head-area h5 {
    margin-bottom: 20px;
  }
  .tipster-profile-content .main-tab-content .statistics-single.apex .head-area .cmn-btn {
    margin-left: 0;
    margin-right: 15px;
  }
  .tipster-profile-content .main-tab-content .statistics-single .table {
    width: 130%;
  }
  .tipster-profile-content .main-tab-content .sidebar .subscribe {
    display: grid !important;
    background-color: var(--body-color);
  }
  .user-dashboard-content .main-tab-btn .cmn-btn:hover, .user-dashboard-content .main-tab-btn li {
    margin-bottom: 20px;
  }
  .user-dashboard-content .main-tab-btn .cmn-btn:hover:last-child, .user-dashboard-content .main-tab-btn li:last-child {
    margin-bottom: 0;
  }
  .user-dashboard-content .account-tab li {
    margin-bottom: 20px;
  }
  .user-dashboard-content .account-tab li:last-child {
    margin-bottom: 0;
  }
  .user-dashboard-content .account-tab li button {
    padding-bottom: 5px;
  }
  .user-dashboard-content .tab-single .file-upload .file .file-custom {
    width: 65%;
  }
  .user-dashboard-content .table-area .table {
    width: 130%;
  }
}

@media (max-width: 991px) {
  h1, h1 > a {
    font-size: 57px;
    line-height: 68.4px;
    margin-top: -12px;
  }
  h2, h2 > a {
    font-size: 43px;
    line-height: 51.6px;
    margin-top: -8px;
  }
  h3, h3 > a {
    font-size: 32px;
    line-height: 38.4px;
    margin-top: -7px;
  }
  h4, h4 > a {
    font-size: 24px;
    line-height: 28px;
    margin-top: -5px;
  }
  h5, h5 > a {
    font-size: 18px;
    line-height: 22px;
    margin-top: -3px;
  }
  h6, h6 > a, table thead tr th, a, p, span, li {
    font-size: 16px;
    line-height: 22px;
  }
  .section-header {
    margin-top: -8px;
    margin-bottom: 40px;
  }
  .title {
    margin-bottom: 20px;
  }
  .xxlr {
    font-size: 20px;
    line-height: 28px;
  }
  .xlr {
    font-size: 18px;
    line-height: 25.5px;
  }
  .header-section .navbar-toggler {
    display: inline-block;
  }
  .header-section .navbar .navbar-brand {
    margin-top: -5px;
    width: 35%;
  }
  .header-section .navbar .navbar-brand img {
    max-width: initial;
  }
  .header-section .navbar .navbar-collapse .navbar-nav {
    margin: 20px 0;
    overflow-y: auto;
    margin-bottom: 10px;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropend .dropdown-menu {
    left: 60px;
  }
  .header-section .nav-item.main-navbar .main-menu .sub-navbar .sub-menu {
    right: 0;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show {
    display: inline-block;
    margin-left: 130px;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    display: none;
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item {
    padding: 8px 0;
  }
  .header-section .nav-item.dropdown .dropdown-menu {
    position: initial;
  }
  .header-section .navbar .navbar-collapse .right-area .lang {
    display: none !important;
  }
  .header-section .navbar .navbar-collapse .right-area {
    margin-left: 0;
  }
  .how-it-works .img-area {
    margin-bottom: 30px;
  }
  .how-it-works .img-area img {
    width: 70%;
  }
  .banner-section.support-help .overlay .banner-content {
    padding: 240px 300px;
  }
  .how-it-works .mid-area .img-area h3,
  .how-it-works .img-area h3 {
    right: calc(21%);
    width: 80px;
    height: 80px;
  }
  .header-section.user-dashboard .navbar .navbar-collapse.collapsing {
    display: none;
  }
  .how-it-works .mid-area h3 {
    left: initial;
    top: initial;
  }
  .how-it-works .mid-area::before,
  .how-it-works .mid-area::after {
    display: none;
  }
  .tips-and-events .section-btn {
    margin-bottom: 35px;
  }
  .why-bitips-better {
    background-image: unset;
  }
  .best-tipster .single-item .left-area .mid-content .item-total {
    flex-wrap: wrap;
  }
  .best-tipster .single-item .left-area .mid-content .item-total .single {
    margin-bottom: 20px;
  }
  .best-tipster .single-item .left-area .mid-content .item-total .single:last-child {
    margin-bottom: 0;
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area {
    max-height: 350px;
    overflow: scroll;
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area a {
    padding: 15px 0;
  }
  .join-us {
    background-size: 100% 75%;
  }
  .best-tipster .single-item .left-area .review-profile {
    padding: 15px 0 8px;
    margin-right: 30px;
    min-width: 140px;
  }

  /* Responsive design for small devices */
  @media (max-width: 768px) {
    .best-tipster .single-item .left-area .review-profile {
      margin: 0 auto; /* Center the element */
      width: 100%; /* Make it fill the width */
      text-align: center; /* Center-align content */
    }
  }

  .footer-section .menu-item {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .footer-section .menu-item .logo {
    margin-bottom: 30px;
  }
  .footer-section .menu-item .footer-link li {
    padding-right: 10px;
    margin-right: 10px;
  }
  .banner-section.about .overlay {
    background-size: 50%, 100%;
  }
  .what-we-do .section-area,
  .about-us .section-area {
    margin-top: 40px;
  }
  .what-we-do .col-lg-5 img {
    width: 50%;
  }
  .about-us .col-lg-5 img {
    width: 50%;
  }
  .how-it-works.affiliate .cus-mar {
    margin-bottom: -40px;
  }
  .how-it-works.affiliate .single-item {
    margin-bottom: 40px;
  }
  .how-it-works.affiliate .single-item .img-area {
    justify-content: center;
    margin-bottom: 0;
  }
  .how-it-works.affiliate .single-item .img-area h5 {
    right: 0;
  }
  .all-tips-content .right-area .heading-area .bottom-item .single-input {
    margin-top: 20px;
  }
  .how-it-works.become-tipster {
    overflow-x: initial;
  }
  .how-it-works.become-tipster .cus-mar {
    margin-bottom: -30px;
  }
  .how-it-works.become-tipster .single-item {
    margin-bottom: 30px;
  }
  .how-it-works.become-tipster .single-item .img-area {
    justify-content: center;
  }
  .how-it-works.become-tipster .single-item .img-area p {
    right: 0;
  }
  .banner-section.buyers-support {
    padding-top: 90px;
  }
  .banner-section.tipster-profile .overlay {
    background-size: 0, 100%, 100%;
  }
  .banner-section.tipster-profile.create .overlay .banner-content {
    padding: 222px 0 120px;
  }
  .create-tipster-profile .tab-content .main-content .profile-area {
    margin-bottom: 30px;
  }
  .create-tipster-profile .tab-content .main-content .file-upload .file .file-custom {
    width: 55%;
  }
  .match-betting-head.find-tipster .top-content .single-input input {
    margin-bottom: 30px;
  }
  .match-betting-head.find-tipster .top-content .btn-area {
    margin-top: 20px;
  }
  .match-betting-content .single-item {
    flex: 0 0 calc(100% / 2 - 15px);
    max-width: calc(100% / 2 - 15px);
  }
  .match-betting-content .single-item.list {
    display: grid;
    flex: 0 0 calc(100% / 2 - 15px);
    max-width: calc(100% / 2 - 15px);
    border-radius: 20px;
  }
  .match-betting-content .single-item.list .first-area .profile-area .w-100 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .match-betting-content .single-item.list .first-area .sub-heading {
    margin-bottom: 15px;
  }
  .match-betting-head .btn-area .fas {
    display: none !important;
  }
  .banner-section.match-betting .overlay .sports .vs {
    width: 90px;
    height: 90px;
    margin: 0 60px;
  }
  .banner-section.tipster-profile.create.post-tips .banner-content {
    padding: 200px 0 290px;
  }
  .post-tips-area .main-content .head-area {
    align-items: center;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area .profile,
  .tipster-profile-content .profile-banner-area .main-content .top-area .btn-area {
    margin-top: 0;
  }
  .tipster-profile-content .profile-banner-area .main-content .rank {
    left: initial;
    right: 20px;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area {
    padding-top: 20px;
    display: grid;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area .btn-area {
    margin-top: 20px;
  }
  .tipster-profile-content .profile-banner-area .main-content .mid-area {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .tipster-profile-content .profile-banner-area .main-content .mid-area .single {
    flex: 0 0 calc(100% / 3 - 15px);
    max-width: calc(100% / 3 - 15px);
    margin: initial;
    margin-bottom: 15px;
  }
  .tipster-profile-content .profile-banner-area .main-content .main-tabs .nav-item .nav-link {
    margin: 0 15px;
  }
  .tipster-profile-content .profile-banner-area .main-content .main-tabs .nav-item .nav-link.active::after {
    bottom: -5px;
  }
  .tipster-profile-content .main-tab-content .sidebar {
    margin-top: 40px;
  }
  .single-side-area {
    margin-top: 40px;
  }
  .user-dashboard-content {
    overflow-x: initial;
  }
  .user-dashboard-content .find-best-tipster .main-content {
    margin-bottom: -20px;
  }
  .user-dashboard-content .find-best-tipster .single-item {
    margin-bottom: 20px;
  }
  .user-dashboard-content .tab-single .file-upload .file .file-custom {
    width: 55%;
  }
  .user-dashboard-content .account-tab {
    margin: 30px 0 30px;
  }
  .usermessage .modal-content .modal-body {
    display: grid;
  }
  .usermessage .modal-content .modal-body aside {
    width: 100%;
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .banner-section .overlay .banner-content {
    padding: 200px 0 100px;
  }
  .counter-section .single-area .img-area {
    width: 35%;
  }
  .tips-and-events .tips-single .review-profile {
    min-width: 100px;
  }
  .best-tipster .single-item {
    display: grid;
  }
  .best-tipster .single-item .rank {
    left: calc(25%);
  }
  .faqs-section .accordion .accordion-item .accordion-button {
    padding-right: 15%;
  }
  .footer-section .newsletter {
    padding: 45px 100px;
  }
  .banner-section.inner-banner.terms .overlay .banner-content {
    padding: 170px 0 60px;
  }
  .footer-section .copyright {
    display: grid;
    justify-content: center;
  }
  .footer-section .copyright .copy-area {
    order: 1;
    margin-top: 20px;
  }
  .footer-section .copyright .social-link {
    justify-content: center;
  }
  .footer-section .copyright .social-link a {
    margin: 0 10px;
  }
  .banner-section.about .overlay {
    background-size: 0, 100%;
  }
  .invite-friends .cus-mar {
    margin-bottom: -40px;
  }
  .invite-friends .cus-mar .single-item {
    margin-bottom: 40px;
  }
  .banner-section.affiliate .overlay {
    background-size: 0, 100%, 100%;
  }
  .banner-section.all-tips .overlay {
    background-size: 0, 100%, 100%;
  }
  .all-tips-content .right-area .single-item .top-area {
    display: grid;
  }
  .all-tips-content .right-area .single-item .top-area .left {
    margin-bottom: 20px;
  }
  .banner-section.buyers-support .overlay .banner-content form .form-content {
    margin-top: 20px;
  }
  .contact-section .bg-area {
    padding: 40px 30px;
  }
  .create-tipster-profile .nav {
    padding: 30px 15px;
  }
  .create-tipster-profile .tab-content .main-content.final .btn-area .cmn-btn {
    margin-top: 15px;
  }
  .create-tipster-profile .tab-content .main-content.final h3 {
    margin-top: 0;
  }
  .create-tipster-profile .tab-content .main-content.final .btn-area {
    margin-top: 20px;
  }
  .create-tipster-profile .tab-content .main-content .file-upload .file .file-custom {
    width: 60%;
  }
  .create-tipster-profile .tab-content {
    margin-top: 30px;
  }
  .create-tipster-profile .nav {
    justify-content: center;
    display: grid;
  }
  .create-tipster-profile .tab-content .main-content {
    padding: 30px 15px;
  }
  .match-betting-content .single-item.list,
  .match-betting-content .single-item {
    flex: 0 0 calc(100% / 1 - 15px);
    max-width: calc(100% / 1 - 15px);
  }
  .match-betting-head.find-tipster {
    overflow-x: hidden;
  }
  .user-dashboard-content .tab-single .file-upload .file .file-custom {
    width: 75%;
  }
  .match-betting-content .all-items {
    justify-content: center;
    padding: 0;
  }
  .match-betting-content .single-item.list .mid-area {
    padding: 20px 15px;
  }
  .match-betting-content .single-item .mid-area .roi-profit .profit::before,
  .match-betting-content .single-item .mid-area .roi-profit .profit::after {
    display: none;
  }
  .banner-section.match-betting .overlay .sports {
    display: grid;
    justify-content: center;
  }
  .banner-section.match-betting .overlay .sports .vs {
    margin: auto;
  }
  .banner-section.match-betting .overlay .sports .mid-area {
    margin: 30px 0;
  }
  .tipster-profile-content .profile-banner-area .main-content .main-tabs .nav-item .nav-link {
    margin-bottom: 25px;
  }
  .tipster-profile-content .profile-banner-area .main-content .main-tabs {
    padding-bottom: 0;
  }
  .tipster-profile-content .main-tab-content .single-area {
    display: grid;
  }
  .tipster-profile-content .main-tab-content .single-area .right-area {
    margin-top: 30px;
  }
  .user-dashboard-content .account-tab {
    justify-content: start;
  }
  .user-dashboard-content .account-tab li {
    margin-right: 20px;
  }
}

@media (max-width: 575px) {
  h1, h1 > a {
    font-size: 40px;
    line-height: 46px;
    margin-top: -7px;
  }
  h2, h2 > a {
    font-size: 30px;
    line-height: 36px;
    margin-top: -6px;
  }
  h3, h3 > a {
    font-size: 24px;
    line-height: 28px;
    margin-top: -5px;
  }
  h4, h4 > a {
    font-size: 18px;
    line-height: 22px;
    margin-top: -3px;
  }
  a, p, span, li, .cmn-btn, thead tr th, tbody tr th, tbody tr td, input, label, textarea, h6, h6 > a {
    font-size: 15px;
    line-height: 19px;
  }
  .section-header {
    margin-top: -5px;
    margin-bottom: 30px;
  }
  .title {
    margin-bottom: 15px;
  }
  .xxlr {
    font-size: 18px;
    line-height: 25.5px;
  }
  .xlr {
    font-size: 16px;
    line-height: 22.4px;
  }
  .header-section .navbar {
    padding: 20px 15px;
  }
  .banner-section.inner-banner .overlay .banner-content,
  .banner-section .overlay .banner-content {
    padding: 180px 0 80px;
  }
  .banner-section.buyers-support .overlay .banner-content {
    padding: 70px 0;
  }
  .banner-section.support-help .overlay .banner-content {
    padding: 220px 300px;
  }
  .banner-section.tipster-profile.find-tipster .banner-content {
    padding: 190px 0 330px;
  }
  .banner-section.contact .overlay .banner-content {
    padding: 200px 0 340px;
  }
  .banner-section.tipster-profile.create .overlay .banner-content {
    padding: 170px 0 70px;
  }
  .banner-section.tipster-profile .overlay .banner-content {
    padding: 189px 0 350px;
  }
  .banner-section.tipster-profile.create.post-tips .banner-content {
    padding: 180px 0 280px;
  }
  .banner-section .overlay {
    background-size: 125%, 245%;
  }
  .banner-section .img-area {
    display: none;
  }
  .faqs-section .accordion .accordion-item .accordion-button::before {
    width: 30px;
    height: 30px;
  }
  .faqs-section .accordion .accordion-item .accordion-button::after,
  .faqs-section .accordion .accordion-item .accordion-button.collapsed::after {
    width: 15px;
    height: 15px;
    background-size: 100%;
    right: 25px;
    position: absolute;
  }
  .faqs-section .accordion .accordion-item .accordion-button::before,
  .faqs-section .accordion .accordion-item .accordion-button.collapsed::before {
    right: 18px;
  }
  .faqs-section .accordion .accordion-item .accordion-button {
    padding: 15px;
    padding-right: 60px;
  }
  .faqs-section .accordion .accordion-item .accordion-collapse .accordion-body p {
    padding: 15px 0;
  }
  .faqs-section .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0 15px;
  }
  .faqs-section .accordion .accordion-item .accordion-header::after {
    display: none;
  }
  .best-tipster .single-item .left-area {
    margin-bottom: 15px;
  }
  .footer-section .menu-item ul li:nth-child(1), .footer-section .menu-item ul li:nth-child(2), .footer-section .menu-item ul li:nth-child(4) {
    display: none;
  }
  .all-tips-content .right-area .single-item .mid-area .sports {
    display: grid;
    justify-content: center;
  }
  .all-tips-content .right-area .single-item .mid-area .sports .vs {
    margin: 15px auto;
  }
  .features-section ul li img,
  .banner-section.become-tipster .overlay .banner-content ul li img {
    width: 4%;
  }
  .header-section.user-dashboard .navbar .navbar-collapse .right-area {
    margin-top: 20px;
  }
  .buyers-support-section .bottom-content {
    display: grid;
    justify-content: center;
  }
  .buyers-support-section .bottom-content .right {
    margin-top: 20px;
  }
  .buyers-support-section .bottom-content .right .social-link {
    justify-content: center;
  }
  .buyers-support-section .bottom-content .right .social-link a {
    margin-left: initial;
    margin: 0 15px;
  }
  .contact-us .main-content img {
    width: 60%;
  }
  .match-betting-head {
    padding: 25px 0;
  }
  .match-betting-head .nice-select {
    margin: 5px 0;
  }
  .support-help-center .single-item {
    padding: 30px 20px;
  }
  .user-dashboard-content .account-tab li {
    margin-bottom: 20px;
    margin-right: 15px;
  }
  .user-dashboard-content .tab-single .single-box .col-6 {
    width: 100%;
  }
  .user-dashboard-content .main-tab-btn {
    justify-content: start !important;
  }
  .user-dashboard-content .main-tab-btn li {
    margin-right: 20px;
  }
  .user-dashboard-content .find-tipster {
    display: grid !important;
    justify-content: center !important;
  }
  .user-dashboard-content .find-tipster a {
    justify-content: center;
    margin-top: 20px;
  }
  .user-dashboard-content .tab-single .file-upload {
    display: grid;
  }
  .user-dashboard-content .tab-single .file-upload .right-area {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .join-us .main-content {
    padding: 50px 0;
  }
  .join-us .main-content .btn-area {
    display: grid !important;
  }
  .join-us .main-content .btn-area .cmn-btn.second {
    margin-top: 15px;
  }
  .tips-and-events .tips-single {
    display: grid;
    justify-content: center;
  }
  .tips-and-events .tips-single .offers-number {
    width: 100% !important;
  }
  .tips-and-events .tips-single .left-area {
    display: grid;
  }
  .tips-and-events .tips-single .right-area {
    margin-top: 20px;
  }
  .tips-and-events .tips-single .mid-content {
    margin-left: 0;
    margin-top: 20px;
  }
  .best-tipster .single-item .left-area {
    display: grid;
  }
  .best-tipster .single-item .left-area .mid-content {
    margin-top: 20px;
    display:flex;

  }
  .best-tipster .single-item .rank {
    right: calc(5%);
    left: initial;
  }
  .why-bitips-better .single-area .text-area {
    margin-left: 15px;
  }
  .best-tipster .single-item .left-area .mid-content .item-total .single {
    margin-right: 15px;
    padding-right: 15px;
  }

  @media (min-width: 992px) {
    .m-details {
      margin: 20px;
    }
  }

  .footer-section .newsletter {
    padding: 45px 15px;
    background-image: unset;
  }
  .footer-section .copyright .copy-area p {
    text-align: center;
  }
  .footer-section .newsletter form .form-group input {
    padding: 0 15px;
  }
  .all-tips-content .right-area .single-item .top-area {
    justify-content: center;
  }
  .all-tips-content .right-area .single-item .top-area .left {
    display: grid;
  }
  .all-tips-content .right-area .single-item .top-area .left .time-left {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }
  .all-tips-content .right-area .single-item .top-area .right {
    justify-content: center;
  }
  .all-tips-content .right-area .single-item .mid-area h5 {
    text-align: center;
  }
  .all-tips-content .right-area .single-item {
    padding: 20px 15px;
  }
  .contact-section .bg-area {
    padding: 30px 15px;
  }
  .contact-section .bg-area .col-6 {
    width: 100%;
  }
  .contact-section .form-content .single-input {
    margin-top: 20px;
  }
  .create-tipster-profile .tab-content .main-content .file-upload .file .file-custom {
    width: 80%;
  }
  .create-tipster-profile .tab-content .col-6, .create-tipster-profile .tab-content .col-10 {
    width: 100%;
  }
  .create-tipster-profile .tab-content .main-content .bottom-area {
    display: grid;
    padding-top: 20px;
    margin-top: 25px;
  }
  .create-tipster-profile .tab-content .main-content .bottom-area .left-area {
    margin-top: 20px;
    order: 1;
  }
  .paymentModal .payment-box {
    border: none;
    padding: 0;
  }
  .paymentModal .subscribe {
    display: grid !important;
    background-color: var(--body-color);
  }
  .faqs-section.support .nav {
    margin-top: -15px;
  }
  .faqs-section.support .nav li {
    margin-top: 15px;
  }
  .match-betting-head.find-tipster .top-content {
    padding: 31px 15px;
  }
  .support-help-center form .form-content {
    padding: 15px;
  }
  .support-help-center form {
    padding: 30px 20px;
  }
  .match-betting-head.find-tipster .top-content .btn-area .cmn-btn {
    margin: auto;
  }
  .match-betting-content .pagination {
    margin-top: 20px;
  }
  .pagination .page-item .page-link {
    width: 30px;
    height: 30px;
    margin: 0 5px;
  }
  .pagination .page-item .page-link.next {
    margin-left: 10px;
  }
  .pagination .page-item .page-link.previous {
    margin-right: 10px;
  }
  .post-tips-area .main-content .head-area {
    display: grid;
  }
  .post-tips-area .main-content .head-area h4 {
    order: 1;
    margin-top: 30px;
  }
  .post-tips-area .main-content {
    padding: 30px 20px;
  }
  .post-tips-area .main-content .top-content .sports .single .logo-area {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
  .post-tips-area .form-parameters .btn-area {
    display: grid;
    justify-content: center;
  }
  .post-tips-area .form-parameters .btn-area .second {
    margin-bottom: 20px;
  }
  .post-tips-area .modal-dialog .modal-content .btn-area {
    display: grid;
    margin-top: -10px;
  }
  .post-tips-area .modal-dialog .modal-content .btn-area .cmn-btn {
    margin-top: 15px;
  }
  .post-tips-area .modal-dialog .modal-content .form-parameters {
    padding: 30px 20px;
  }
  .support-help-center .single-item .img-area img {
    width: 45%;
  }
  .support-help-center .single-item h5 {
    margin: 30px 0 20px;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area {
    padding-top: 45px;
    margin: 0 15px;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area .profile {
    max-width: 75px;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area .profile .gold {
    width: 20%;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area .user-info {
    margin-left: 10px;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area .btn-area .cmn-btn {
    margin-top: 15px;
  }
  .tipster-profile-content .profile-banner-area .main-content .top-area .btn-area .cmn-btn.follow {
    margin-left: 0;
  }
  .tipster-profile-content .profile-banner-area .main-content .mid-area .single {
    flex: 0 0 calc(100% / 2 - 15px);
    max-width: calc(100% / 2 - 15px);
  }
  .tipster-profile-content .main-tab-content .nav-tabs .cmn-btn {
    margin-right: 10px;
  }
  .tipster-profile-content .main-tab-content .statistics-single.apex .head-area .cmn-btn {
    margin-bottom: 10px;
  }
  .tipster-profile-content .main-tab-content .statistics-single {
    padding: 20px 15px;
  }
  .tipster-profile-content .main-tab-content .statistics-single .table {
    width: 190%;
  }
  .user-dashboard-content .sidebar .info-area {
    padding: 0 30px 25px;
  }
  .user-dashboard-content .account-tab li {
    margin-right: 30px;
  }
  .user-dashboard-content .table-area .table {
    width: 210%;
  }
  .user-dashboard-content .tab-single.payment .radio-area {
    display: grid !important;
  }
  .faqs-section.support.faqs .faq-box ul li a::after {
    background-size: 15px;
  }
  .faqs-section.support.faqs .faq-box ul li a::before {
    display: none;
  }
  .faqs-section.support.faqs .faq-box ul li a {
    padding-left: 20px;
  }
  .banner-section .overlay .banner-content {
    padding: 180px 0 50px;
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area,
  .header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area {
    width: 285px;
    padding: 30px 20px;
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item.user-area .user-btn .name-area {
    display: none;
  }
}

@media (max-width: 375px) {
  .counter-section .col-6 {
    width: 100% !important;
  }
  .counter-section .single-area .img-area {
    width: 25%;
  }
  .user-dashboard-content .main-tab-btn .cmn-btn {
    width: 100%;
  }
  .user-dashboard-content .main-tab-btn {
    justify-content: center !important;
  }
  .user-dashboard-content .tab-single .file-upload .file .file-custom {
    width: 100%;
  }
  .user-dashboard-content .tab-single .single-box .btn-area {
    margin-top: 10px;
  }
}
/*custom css */
/* Default width for small devices (sm) */
.logo {
  width:100%;
}

/* For larger devices (lg) */
@media (min-width: 992px) {
  .logo {
    width: 70%;
  }
}
 .hero-intro__img {
  max-height: 300px;
  overflow: hidden;
  position: relative;
   }
 .hero-intro__img img {
  max-width: 100%; }
 .hero-intro__img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(transparent, transparent, #FFF);
  z-index: 1; }

@media (max-width: 991px) {
  .showonlyinlg {
    display: none;
  }
}
.fixed-ad {
  position: relative;
  top: 20px; /* Distance from the top */
}


/* Disable fixed behavior on smaller screens */
@media (max-width: 991px) {
  .fixed-ad {
    position: static; /* Revert to normal layout */
  }
}
/*.row-ads {*/
/*  min-height: 100vh; !* Ensure the parent is tall enough *!*/
/*}*/
/* Default Shimmer Line */
.shimmer-line {
    height: 15px;
    background: linear-gradient(90deg, var(--body-bg-light) 75%, var(--body-color) 50%, #ffc107 25%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
    margin: 5px 0;
    width: 100%; /* Default width set to 100% */
}

/* Adjust Shimmer Line Height in Tips */
.tips-single .shimmer-line {
    height: 20px;
    margin-bottom: 10px;
}

/* Responsive Styling for Small Devices */
@media (max-width: 768px) {
    .shimmer-line {
        width: 100%; /* Ensure lines fill the container */
        height: 10px; /* Optional: Adjust height for smaller displays */
        margin-bottom: 5px; /* Reduce spacing for compact layout */
    }

    .tips-single .img-header.shimmer-box {
        width: 30px; /* Adjust size of circular elements */
        height: 30px;
    }

    .tips-single .shimmer-box.w-100 {
        height: 30px; /* Adjust button height */
    }

    .logo-area.shimmer-box {
        width: 60px; /* Adjust logo size */
        height: 30px;
    }
}

.how-it-works.how-to-convert {

  transform: translateZ(0px);
}

.how-it-works.how-to-convert .single-item {
  text-align: center;
  padding: 40px 25px 30px;
  background: var(--body-color);
  border-radius: 20px;
}
.how-it-works.how-to-convert .single-item  img{
  width: 140px;
  height: 140px;
  border-radius:50%;
}
.how-it-works.how-to-convert .single-item .img-area p {
  width: 40px;
  height: 40px;
  border-width: 5px;
  right: -15px;
  bottom: 20px;
  background: #128f0c;
  border-color: var(--body-color);
}

.how-it-works.how-to-convert .single-item .single-title {
  margin-top: 20px;
  margin-bottom: 15px;
}
.bg-review{
  background-color:#070044;
}
@media (min-width: 992px) { /* Bootstrap lg breakpoint */
  .custom-margin-left-lg {
    margin-left: 200px!important;
  }
}
.why-us {

  background-image: url(../images/why-bitips-better-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom 1020px;

}
.why-us .single-area {
  border-bottom: 1px solid #5b29b1;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.why-us .single-area:last-child {
  padding-bottom: 0;
  margin-bottom: -5px;
  border: none;
}

.why-us .single-area .img-area img {
  max-width: unset;
}

.why-us .single-area .text-area {
  margin-left: 30px;
}

.why-us .single-area .text-area h4 {
  margin-bottom: 19px;
}

.why-us .about {
  background-color: transparent;
}
.why-us .accordion .accordion-item {
  margin-bottom: 20px;
  background: #3a2fa4;
  box-shadow: 0px 12px 24px rgba(47, 65, 129, 0.1);
  border-radius: 10px;
  border: none;
}

.why-us .accordion .accordion-item .accordion-header {
  position: relative;
  display: flex;
  align-items: center;
}

.why-us .accordion .accordion-item .accordion-header::after {
  position: absolute;
  left: 20px;
  z-index: 3;
  width: 30px;
  height: 30px;
  margin-left: auto;
  content: "";
  background-image: url(../images/faq-icon.png);
  background-repeat: no-repeat;
}

.why-us .accordion .accordion-item .accordion-button {
  padding: 20px;
  padding-left: 70px;
  background: #3a2fa4;
  border-radius: 10px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  border: none;
}

.why-us .accordion .accordion-item .accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../images/minus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  right: 30px;
  transition: all ease 0.3s;
}

.why-us .accordion .accordion-item .accordion-button::before {
  content: "";
  position: absolute;
  right: 25px;
  width: 30px;
  height: 30px;
  background: #261c7e;
  border-radius: 5px;
}

.why-us .accordion .accordion-item .accordion-button.collapsed::after {
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../images/plus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  transform: rotate(-90deg);
  transition: all ease 0.3s;
}

.why-us .accordion .accordion-item .accordion-collapse {
  border: none;
}

.why-us .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 20px;
}

.why-us .accordion .accordion-item .accordion-collapse .accordion-body p {
  padding: 20px 0;
  border-top: 1px solid #b0baf1;
}
.pricing {
   border-radius: 100px;

}
.pricing .plan {
  background-color: rgb(31, 35, 64);
  padding: 2.5rem;
  margin: 2px;
  border-radius: 5px;

  transition: 0.3s;
  cursor: pointer;
}
.pricing .plan h2 {
  font-size: 27px;

  margin-bottom: 12px;
}
.pricing .plan .price {
  font-size: 25px;
}
.pricing .plan ul.features {
  list-style-type: none;


  color: rgba(255, 255, 255, 0.61);
}
.pricing .plan ul.features li {

}
.pricing .plan ul.features li .fas {

}
.pricing .plan ul.features li .fa-check-circle {
  color: #6ab04c;
}
.pricing .plan ul.features li .fa-times-circle {
  color: #eb4d4b;
}
.pricing .plan button {
  border: none;
  width: 100%;
  padding: 12px 35px;
  margin-top: 1rem;
  background-color: #6ab04c;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.pricing .plan.popular {
  border: 2px solid #edb606;
  position: relative;

}
.pricing .plan.popular span {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #edb606;
  color: #ffffff;
  padding: 4px 20px;
  font-size: 18px;
  border-radius: 5px;
}
.pricing .plan:hover {
  box-shadow: 5px 7px 67px -28px rgba(0, 0, 0, 0.37);
}

.price{
  color:#FFFFFF;
}

.slide img {
  width: 100%;
  height: 40px;
  object-fit: contain; /* Ensures the image fits within the dimensions without distortion */
}
.slick-slide img {
  width: 100%;
  object-fit: contain;
}



.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.single-input {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--bg-color);
  background: var(--input-bg);
  padding: 15px 30px;
  margin-bottom: 20px;
}
.single-input input {
  background: transparent;
  padding: 0;
  border: none;
  margin: 0;
  color: var(--bs-white);
  height: initial;
}
.single-input img {
  margin-right: 20px;
}

.nice-select {
  border-radius: 10px;
  background-color: transparent;
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
  height: initial;
  padding: 0;
}

.nice-select::after {
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 10px;
}

.nice-select .list {
  width: 100%;
  background: var(--body-color);
  border: 1px solid var(--bg-color);
}

.nice-select .list .option {
  background: transparent;
}

.nice-select .list .option:hover {
  color: var(--hover-color);
}

.nice-select .list .focus {
  background-color: transparent;
  color: var(--hover-color);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff;
  line-height: 50px;
  width: 150%;
  display: flex;
  align-items: center;
}


.select2-selection {
  background-color: #070044 !important; /* Makes the background transparent */

  color: #FFFFFF; /* Ensures the text color matches the surrounding styles */
}

.select2-selection__rendered {
  background-color: #070044; /* Ensures selected value background is transparent */
}

.select2-dropdown {
  background-color: #070044 !important; /* Makes the dropdown transparent */
}

.select2-search__field {
  background-color: #070044 !important; /* Makes the search box background transparent */
}

 .match-stats {
   display: flex; /* Side by side alignment for teams */
   justify-content: space-evenly; /* Space between home and away team */
   align-items: flex-start;
   margin-bottom: 15px;
   gap: 20px;
 }

.team-stats-inline {
  display: flex;
  align-items: center;
  gap: 5px; /* Small space between boxes */
  flex-wrap: wrap; /* Wrap items if necessary */
}

.stat-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-weight: bold;
  color: white;
  border-radius: 4px;
  text-align: center;
  line-height: 30px;
}
@media (max-width: 480px) {
  .team-stats-inline {
    gap: 3px; /* Smaller gap between boxes */
  }

  .stat-box {
    width: 25px;  /* Smaller width */
    height: 25px; /* Smaller height */
    font-size: 12px; /* Smaller font size */
    line-height: 25px; /* Adjust line height to match box size */
  }
}

.stat-box.win {
  background-color: green;
}

.stat-box.draw {
  background-color: gold;
  color: black;
}

.stat-box.loss {
  background-color: red;
}

.team-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}



canvas {
  width: 1000px;
  margin: 0 auto;
}

.legend {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  color:white;
}

.legend-item {
  margin-right: 20px;
}

.legend-item span {
  margin-left: 5px;
}

.progress {
  width: 100%;
  height: 20px;
  background-color: #fcd2d2;
  color:#0b0b0b;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}

.progress-bar {
  height: 100%;
  text-align: center;
  line-height: 20px;
  color: rgba(243, 243, 243, 0.92);
  position: absolute;
  top: 0;
}

.home {
  left: 0;
  background-color: #4caf50; /* Green */
}


.progress-bar.equal {
  width: 100%;
  background-color: #0f3249; /* Green */
}


.away {
  right: 0;
  background-color: #fc1400; /* Yellow */
}

.original-price {
  text-decoration: line-through;   /* Strikethrough for the original price */
  color: #888;                     /* Gray color for the original price */
  font-size: 16px;                 /* Slightly smaller font */
}

.discounted-price {
  font-weight: bold;               /* Bold text */
  /* Larger font size */
}

.discount-tag {
  background-color: #edb606;       /* Red background */
  color: #fff;                     /* White text */
  padding: 2px 6px;                /* Padding */
  font-size: 12px;                 /* Smaller font */
  font-weight: bold;               /* Bold text */
  border-radius: 6px;              /* Rounded corners */
}
.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:80px;
  right: 30px;
  background-color: #41aa28;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
  background: #008a13;
  color: #fff;
  text-decoration: none;

}

.my-float{
  margin-top:16px;
}
.chat-popup {
  display: none;
  position: fixed;
  bottom: 20px; /* Adds space between the popup and the bottom of the screen */
  right: 5px;
  z-index: 9;
  background-color: #ffffff;
  width: 20%;
  height:400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px; /* Adjust this value as needed */
}

@media (max-width: 576px) {
  .chat-popup {
    width: 100%;
    margin-bottom: 80px; /* Adjust for smaller screens if necessary */
  }
}

.popup-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 500px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
}

.header-chat {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #0088cc;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: white;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;

}

.header-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.header-text span {
  font-size: 12px;
  color: #d0d0d0;
}

.messages {
  flex-grow: 1;
  padding: 15px;
  background-image: url('https://wallpapers.ispazio.net/wp-content/uploads/2020/03/IMG_4581-576x1024.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-y: auto;
}

/* Basic styling for the message bubble */
.message {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
  max-width: 60%;
  margin: 5px 0;
}

.message.received {
  background-color: #0088cc;
  color: white;
}

/* Typing indicator styles */
.dot {
  width: 8px;
  height: 8px;
  margin: 0 2px;
  background-color: #999;
  border-radius: 50%;
  opacity: 0;
  animation: blink 1.5s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

/* Animation for dots */
@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}


.received {
  background-color: #0088cc;
  color: white;
  align-self: flex-start;
}

.sent {
  background-color: #0088cc;
  color: white;
  align-self: flex-end;
}

.textarea-container {
  display: flex;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #ddd;
  background-color: white;
}
.send-btn {
  color: #0088cc;

}
.banner-section-review.match-betting .overlay .sports {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #2d237b;
  border: 1px solid #6980ba;
  padding: 20px;
}

.banner-section-review.match-betting .overlay .sports .single {
  border-radius: 10px;
  background-color: var(--body-color);
  padding: 20px;
}

.banner-section-review.match-betting .overlay .sports .single .logo-area {
  border-radius: 10px;
  background-color: #4736d3;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.banner-section-review.match-betting .overlay .sports .vs {
  border-radius: 50%;
  background-color: var(--body-color);
  width: 110px;
  height: 110px;
  margin: 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section-review.match-betting .overlay .sports .vs h3 {
  margin-top: 0;
  text-transform: uppercase;
  color: var(--hover-color);
}

.banner-section-review.match-betting .overlay .sports .mid-area .countdown {
  margin-top: 10px;
}
.counter-section{
  position:relative;
  padding:40px 0 30px;
  margin-top:-105px;
  transform:translateZ(10px)
}
.counter-section:before{
  position:absolute;
  content:"";
  width:90%;
  background:#0d102f;
  border-radius:20px;
  height:100%;
  top:0;
  left:5%;
  z-index:-1
}
.counter-section .single-area .text-area{
  margin-left:30px
}
.counter-section .single-area .text-area p{
  color:var(--head-color)
}
.counter-section .single-area h3 span{
  font-size:inherit;
  font-weight:inherit
}
@media screen and (min-width:1399px)and (max-width:1499px){
  .counter-section:before{
    width:95%;
    left:2%
  }
}
@media screen and (min-width:1499px)and (max-width:1750px){
  .about-bitbetio .overlay .shape-area .obj-1{
    right:0;
    width:6%
  }
}
@media(max-width:1799px){
  .banner-section .overlay{
    background-size:45%,80%
  }
  .how-it-works:before{
    background-size:120%;
    background-position:top
  }
  .banner-section.affiliate .overlay .banner-content .content-shape img{
    right:35%;
    bottom:40%;
    width:20%
  }
  .banner-section.currency-bet.escrow-bets-banner .overlay .shape-area .chart-illu{
    width:20%
  }
  .banner-section.faqs .overlay .shape-area .faqs-illu{
    width:25%
  }
  .banner-section.tournaments .overlay .banner-content .content-shape img{
    right:20%;
    bottom:-30%;
    width:20%
  }
  .banner-section.tournaments .overlay .shape-area img{
    right:0;
    bottom:0;
    width:30%
  }
  .banner-section.blog .overlay .shape-area img{
    width:25%
  }
}
@media(max-width:1499px){
  .about-bitbetio .overlay .shape-area{
    display:none
  }
  .banner-section.soccer-bets .overlay{
    background-position:bottom -40px right 150px,top 95px right 150px;
    background-size:50% 85%
  }
}
@media(max-width:1399px){
  .banner-section .overlay .banner-content .container .content-shape .obj-4{
    left:50%;
    bottom:-40%
  }
  .banner-section .overlay .banner-content .container .content-shape .obj-3{
    right:20%;
    left:auto;
    bottom:0
  }
  .banner-section .overlay .banner-content .container .content-shape .obj-2{
    left:36%;
    bottom:-10%
  }
  .counter-section{
    padding:40px 30px 30px
  }
  .counter-section .single-area .img-area{
    width:25%
  }
  .bet-this-game .single-area .main-content .mid-area .countdown{
    padding:10px
  }
  .bet-this-game .single-area .main-content .team-single .img-area{
    width:80%;
    margin-left:auto;
    margin-right:auto
  }
  .bet-this-game .single-area .main-content{
    margin:50px 25px 40px
  }
  .currency-bet-section .table-responsive .table{
    width:110%
  }
  .dashboard-content .google-authentication ul{
    padding-bottom:0;
    justify-content:center
  }
  .dashboard-content .google-authentication ul li{
    margin-bottom:10px
  }
  .banner-section.contact .overlay .shape-area .contact-illu{
    width:45%
  }
}
@media(max-width:1299px){
  .counter-section:before{
    width:94%;
    left:3%
  }
  .banner-section.soccer-bets .shape-area img{
    display:none
  }
  .banner-section.escrow-bets-banner .banner-content{
    padding:210px 0 110px
  }
}
@media(max-width:1250px){
  .testimonails-section .slick-slide{
    opacity:1
  }
}
@media(max-width:1199px){
  h1,h1>a{
    font-size:57px;
    line-height:74.1px;
    margin-top:-16px
  }
  h2,h2>a{
    font-size:43px;
    line-height:55.9px;
    margin-top:-10px
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-item,.header-section .navbar .navbar-collapse .navbar-nav .nav-item .nav-link{
    font-size:16px
  }
  .banner-section .overlay .banner-content{
    padding:220px 0 230px
  }
  .banner-section.inner-banner .overlay .banner-content{
    padding:215px 0 100px
  }
  .banner-section.inner-banner.soccer-bets .overlay .banner-content{
    padding:220px 0 230px
  }
  .banner-section.inner-banner.escrow-bets-banner .overlay .banner-content{
    padding:220px 0 110px
  }
  .banner-section.inner-banner.tournaments .overlay .banner-content{
    padding:215px 0 180px
  }
  .banner-section.inner-banner.contact .overlay .banner-content{
    padding:215px 0 230px
  }
  .header-section .navbar .navbar-collapse .right-area{
    margin-left:20px
  }
  .header-section.user-dashboard .navbar-collapse .right-area{
    margin-left:-25px
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item .nice-select{
    padding-right:20px
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item .nice-select:after{
    right:5px
  }
  .how-it-works:before{
    width:100%;
    background-color:#0d102f;
    background-image:unset;
    height:60%
  }
  .counter-section .cus-mar{
    margin-bottom:-20px
  }
  .counter-section .single-area{
    margin-bottom:30px
  }
  .bet-this-game .single-area .main-content{
    margin:50px 10px 40px
  }
  .bet-this-game .single-area .main-content .mid-area .countdown{
    padding:2px
  }
  .bet-this-game .single-area .bottom-item{
    padding:20px
  }
  .bet-this-game .single-area .bottom-item .cmn-btn{
    padding:10px 16px
  }
  .banner-section.affiliate .overlay .banner-content .content-shape img{
    display:none
  }
  .banner-section.affiliate .overlay .shape-area img{
    width:30%
  }
  .banner-section .overlay .banner-content .container .content-shape img,.banner-section.soccer-bets .shape-area img{
    display:none
  }
  .bet-this-game.all-soccer-bets .filter-section form{
    margin-bottom:-30px
  }
  .bet-this-game.all-soccer-bets .filter-section .input-area,.bet-this-game.all-soccer-bets .filter-section .nice-select{
    margin-bottom:30px
  }
  .currency-bet-section .table-responsive .table{
    width:120%
  }
  .create-future-currency .main-content .single-input .nice-select{
    width:40%
  }
  .tournaments-section .single-item .mid-area ul{
    display:grid;
    margin:15px 0 5px
  }
  .tournaments-section .single-item .mid-area ul li{
    margin-bottom:15px
  }
  .dashboard-content .tab-content .single-info{
    margin-bottom:20px
  }
  .dashboard-content .tab-content h5.title{
    margin-top:20px
  }
  .dashboard-content .tab-content .table-responsive .table{
    margin-bottom:0;
    width:140%
  }
  .dashboard-content .deposit-with-tab .balance-area{
    margin-bottom:30px
  }
}
@media(max-width:991px){
  h1,h1>a{
    font-size:57px;
    line-height:68.4px;
    margin-top:-16px
  }
  h2,h2>a{
    font-size:43px;
    line-height:51.6px;
    margin-top:-10px
  }
  h3,h3>a{
    font-size:32px;
    line-height:38.4px;
    margin-top:-8px
  }
  h4,h4>a{
    font-size:24px;
    line-height:28px;
    margin-top:-6px
  }
  h5,h5>a{
    font-size:18px;
    line-height:22px;
    margin-top:-4px
  }
  a,h6,h6>a,li,p,span,table thead tr th{
    font-size:16px;
    line-height:22px
  }
  .section-header{
    margin-top:-8px;
    margin-bottom:40px
  }
  .title{
    margin-bottom:20px
  }
  .xxlr{
    font-size:20px;
    line-height:28px
  }
  .xlr{
    font-size:18px;
    line-height:25.5px
  }
  .header-section .navbar-toggler{
    display:inline-block
  }
  .header-section .navbar .navbar-brand{
    margin-top:-5px;
    width:35%
  }
  .header-section .navbar .navbar-brand img{
    max-width:none
  }
  .header-section .navbar .navbar-collapse .navbar-nav{
    /*height:200px;*/
    overflow-y:auto;
    margin:20px 0 10px
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropend .dropdown-menu{
    left:70%;
    min-width:180px
  }
  .header-section .nav-item.main-navbar .main-menu .sub-navbar .sub-menu{
    right:0
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show{
    display:inline-block;
    margin-left:130px
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu{
    display:none
  }
  .header-section .navbar .navbar-collapse .navbar-nav .nav-item{
    padding:8px 0
  }
  .header-section .nav-item.dropdown .dropdown-menu{
    position:static
  }
  .header-section .navbar .navbar-collapse .right-area .lang{
    display:none!important
  }
  .header-section .navbar .navbar-collapse .right-area{
    margin-left:0
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item{
    margin-right:20px;
    margin-left:0
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item .nice-select{
    padding-left:10px
  }
  .header-section.user-dashboard .navbar .navbar-collapse.collapsing{
    display:none
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area{
    left:0
  }
  .banner-section .overlay{
    background-size:0,60%
  }
  .banner-section.soccer-bets .overlay{
    background-size:0
  }
  .about-bitbetio .left-side{
    display:none
  }
  .how-it-works .main-content ul{
    margin-bottom:10px
  }
  .bet-this-game .single-area .main-content .mid-area .countdown{
    padding:10px 20px
  }
  .bet-this-game .single-area .main-content{
    margin:50px 20px 40px
  }
  .amazing-features:before{
    background-size:175% 74%
  }
  .more-features .img-area{
    width:60%;
    padding-top:40px;
    margin:auto
  }
  .affilliate-section .img-area{
    text-align:center
  }
  .affilliate-section .img-area img{
    width:60%;
    padding-top:30px
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .mid-area .quick-amounts{
    padding:0 25px
  }
  .testimonails-section .testimonails-carousel{
    padding-bottom:70px
  }
  .features-section .section-img-area{
    display:none
  }
  .bitbetio-affiliates .img-area{
    text-align:center
  }
  .bitbetio-affiliates .img-area img{
    margin-top:30px;
    width:60%
  }
  .bet-this-game .sidebar{
    margin-bottom:30px
  }
  .call-to-action .d-rtl{
    text-align:center
  }
  .call-to-action .d-rtl img{
    margin-top:30px;
    width:60%
  }
  .currency-bet-section .table-responsive .table{
    width:155%
  }
  .betting-details .main-content .escrow-bet-single .left-area{
    margin-right:30px
  }
  .betting-details .main-content .table-responsive .table{
    width:115%
  }
  .betting-details .main-content .escrow-bet-single .right-area{
    width:50%
  }
  .escrow-bets-fee .single-item img{
    width:30%
  }
  .create-future-currency .main-content .single-input .input-items input:last-child{
    width:42%
  }
  .create-future-currency .main-content .single-input .nice-select{
    width:23%
  }
  .how-works-tournaments{
    overflow-x:initial
  }
  .how-works-tournaments .cus-mar{
    margin-bottom:-25px
  }
  .how-works-tournaments .cus-mar .single-area{
    margin-bottom:25px
  }
  .tournaments-section .single-item{
    display:grid
  }
  .tournaments-section .single-item .last-item{
    padding:40px 120px;
    margin-top:30px
  }
  .how-works-tournaments.tournaments-section{
    margin-bottom:25px
  }
  .blog-section .sidebar-blog{
    margin-top:40px
  }
  .dashboard-content{
    margin-top:48px
  }
  .dashboard-content .tab-content{
    margin-top:30px
  }
  .dashboard-content .bets-tab ul{
    margin-bottom:0
  }
  .dashboard-content .dashboard-heading ul li .nav-link{
    padding:20px 12px
  }
  .error-section .section-text{
    margin-top:40px
  }
}
@media(max-width:767px){
  .banner-section .overlay .banner-content{
    padding:200px 0 190px
  }
  .banner-section .overlay{
    background-size:0,0
  }
  .footer-section .menu-item .footer-link li{
    padding-right:10px;
    margin-right:10px
  }
  .footer-section .copyright{
    display:grid;
    justify-content:center;
    text-align:center
  }
  .footer-section .copyright .copy-area{
    order:1
  }
  .footer-section .copyright .social-link{
    justify-content:center;
    margin-bottom:10px
  }
  .footer-section .copyright .social-link a{
    margin:10px
  }
  .footer-section .newsletter{
    padding:60px
  }
  .footer-section{
    position:relative;
    background-image:unset
  }
  .footer-section:before{
    content:"";
    width:100%;
    height:65%;
    bottom:0;
    background-color:#291b6b;
    position:absolute;
    z-index:-1
  }
  .faqs-section .accordion .accordion-item .accordion-button{
    padding-right:60px
  }
  .counter-section .single-area .img-area{
    width:20%
  }
  .about-bitbetio .single-item img,.amazing-features .single-slide .slide-content img{
    width:40%
  }
  .about-bitbetio .single-item h5{
    margin-top:30px
  }
  .amazing-features .single-slide .slide-content h5{
    margin-top:25px
  }
  .amazing-features:after{
    background-image:unset
  }
  .banner-section .overlay .banner-content .container .content-shape,.banner-section .overlay .shape-area{
    display:none
  }
  .how-it-works .main-content{
    padding:35px 0 60px
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .mid-area{
    display:grid
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .mid-area .quick-amounts{
    padding:20px 0
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .bottom-area{
    display:grid
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .bottom-area .btn-area{
    margin:20px 0
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .bottom-area .btn-area button{
    padding:15px 10px
  }
  .features-section .single-area .img-area img{
    width:35%
  }
  .how-it-works.affiliates .single-area .img-area img{
    width:25%
  }
  .how-it-works.affiliates:before{
    height:90%
  }
  .currency-bet-section .table-responsive .table{
    width:210%
  }
  .betting-details .main-content .table-responsive .table{
    width:170%
  }
  .betting-details .main-content .escrow-bet-single{
    display:grid;
    padding:20px
  }
  .betting-details .main-content .escrow-bet-single .left-area{
    margin:0 0 20px
  }
  .betting-details .main-content .escrow-bet-single .right-area{
    width:100%;
    padding:20px
  }
  .escrow-bets-fee .cus-mar{
    margin-bottom:-30px
  }
  .escrow-bets-fee .single-item{
    margin-bottom:30px
  }
  .create-future-currency .main-content{
    padding:50px 30px
  }
  .create-future-currency .main-content .invite-friends{
    padding:30px 20px
  }
  .create-future-currency .main-content .single-input .nice-select{
    width:30%
  }
  .create-future-currency .main-content .single-input .input-items input:last-child{
    width:60%
  }
  .faqs-section.faqs-page ul{
    padding-bottom:0;
    justify-content:center
  }
  .faqs-section.faqs-page ul li{
    margin-bottom:10px
  }
  .tournaments-section .table-responsive .table{
    width:120%
  }
  .dashboard-content .dashboard-heading ul{
    justify-content:flex-start
  }
  .dashboard-content .tab-content .affiliate-tab .table-responsive .table{
    width:180%
  }
  .dashboard-content .transactions-tab form{
    flex-wrap:wrap
  }
  .dashboard-content .transactions-tab form .single-input{
    margin-bottom:20px
  }
  .dashboard-content .transactions-tab form .text-end{
    margin-bottom:10px
  }
  .dashboard-content .tab-content .file-upload .file .file-custom{
    width:65%
  }
  .dashboard-content .google-authentication .footer-area{
    display:inline-grid
  }
  .dashboard-content .google-authentication .footer-area h6{
    margin-bottom:20px
  }
}
@media(max-width:575px){
  h1,h1>a{
    font-size:40px;
    line-height:46px;
    margin-top:-9px
  }
  h2,h2>a{
    font-size:30px;
    line-height:36px;
    margin-top:-7px
  }
  h3,h3>a{
    font-size:24px;
    line-height:28px;
    margin-top:-6px
  }
  h4,h4>a{
    font-size:18px;
    line-height:22px;
    margin-top:-4px
  }
  .cmn-btn,a,h6,h6>a,input,label,li,p,span,tbody tr td,tbody tr th,textarea,thead tr th{
    font-size:15px;
    line-height:19px
  }
  .section-header{
    margin-top:-5px;
    margin-bottom:30px
  }
  .title{
    margin-bottom:15px
  }
  .xxlr{
    font-size:18px;
    line-height:25.5px
  }
  .xlr{
    font-size:16px;
    line-height:22.4px
  }
  .header-section .navbar{
    padding:20px 15px
  }
  .banner-section .overlay .banner-content{
    padding:170px 0 180px
  }
  .banner-section.inner-banner .overlay .banner-content{
    padding:170px 0 65px
  }
  .banner-section.inner-banner.soccer-bets .overlay .banner-content{
    padding:170px 0 210px
  }
  .banner-section.inner-banner.soccer-bets.currency-bet .overlay .banner-content{
    padding:170px 0 190px
  }
  .banner-section.inner-banner.soccer-bets.currency-bet.escrow-bets-banner .overlay .banner-content{
    padding:170px 0 70px
  }
  .banner-section.inner-banner.tournaments .overlay .banner-content{
    padding:170px 0 140px
  }
  .banner-section.inner-banner.contact .overlay .banner-content{
    padding:170px 0 210px
  }
  .faqs-section .accordion .accordion-item .accordion-button{
    padding-left:20px
  }
  .faqs-section .accordion .accordion-item .accordion-header:after{
    display:none
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .top-item{
    display:grid
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .top-item .draw{
    margin:20px 0
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .select-odds{
    padding:15px
  }
  .betpopmodal .modal .modal-dialog .modal-content .modal-body .select-odds .in-dec-val{
    width:40%
  }
  .features-section .single-area .img-area img{
    width:20%
  }
  .how-it-works.affiliates .magnific-area .mfp-iframe:before{
    width:120px;
    height:120px
  }
  .how-it-works.affiliates .magnific-area .mfp-iframe{
    height:60px;
    width:60px
  }
  .features-section .single-area h5,.how-it-works.affiliates .single-area h4{
    margin-top:10px
  }
  .testimonails-section .slick-slide .single-content{
    padding:30px 20px
  }
  .tournaments-section .single-item .left-item{
    display:grid
  }
  .tournaments-section .single-item .mid-area{
    margin-top:30px;
    margin-left:0
  }
  .tournaments-section .single-item .last-item{
    padding:40px 70px
  }
  .blog-section .sidebar-blog .sidebar-single .sidebar-carousel .single-slide img{
    width:100%
  }
  .blog-section .blog-post .bottom-item{
    display:grid!important
  }
  .blog-section .blog-post .bottom-item .social-link{
    margin-top:30px
  }
  .blog-section .blog-post .bottom-item .social-link a{
    margin:0 20px 0 0
  }
  .dashboard-content{
    margin-top:38px
  }
  .dashboard-content .tab-content .file-upload .file .file-custom{
    width:70%
  }
}
@media(max-width:480px){
  .footer-section .menu-item{
    display:grid;
    justify-content:center;
    text-align:center
  }
  .footer-section .menu-item ul{
    margin-top:20px
  }
  .bet-this-game .single-area .main-content{
    margin:50px 0 40px
  }
  .bet-this-game .single-area .main-content .team-single .img-area{
    width:65%
  }
  .bet-this-game .single-area .main-content .mid-area .countdown{
    padding:6px 3px
  }
  .bet-this-game .single-area .bottom-item{
    border-top:1px solid #8e78c0;
    display:grid;
    justify-content:center
  }
  .bet-this-game .single-area .bottom-item .cmn-btn{
    margin-bottom:15px
  }
  .bet-this-game .single-area .bottom-item .cmn-btn:last-child{
    margin-bottom:0
  }
  .bet-this-game .single-area .head-area{
    display:grid!important
  }
  .bet-this-game .single-area .head-area .cmn-btn{
    width:50%
  }
  .bet-this-game .single-area .head-area p{
    margin:20px 0 0
  }
  .footer-section .newsletter{
    padding:60px 15px
  }
  .pagination .page-item .page-link{
    width:30px;
    height:30px
  }
  .pagination .page-item .page-btn{
    width:50px;
    height:30px
  }
  .pagination .page-item .page-btn.next,.pagination .page-item .page-btn.previous{
    margin:0
  }
  .currency-bet-section .table-responsive .table{
    width:255%
  }
  .betting-details .main-content{
    padding:0 15px 30px
  }
  .betting-details .main-content .table-responsive .table{
    width:245%
  }
  .create-future-currency .main-content .invite-friends .single-btn{
    display:inline-grid
  }
  .create-future-currency .main-content .invite-friends .single-btn .clear{
    margin-top:15px
  }
  .create-future-currency .main-content .single-input .input-items{
    display:grid!important
  }
  .create-future-currency .main-content .single-input .input-items input:first-child,.create-future-currency .main-content .single-input .input-items input:last-child{
    width:100%;
    border-radius:10px
  }
  .create-future-currency .main-content .single-input .nice-select{
    width:70%
  }
  .tournaments-section .single-item .last-item{
    padding:30px
  }
  .tournaments-section ul.nav{
    padding:10px 10px -10px;
    justify-content:center
  }
  .tournaments-section ul.nav li{
    margin-bottom:10px
  }
  .tournaments-section .single-item .mid-area ul li{
    margin-right:0
  }
  .tournaments-section .table-responsive .table{
    width:170%
  }
  .blog-section .single-blog .blog-content{
    padding:20px 15px
  }
  .blog-section .sidebar-blog .sidebar-single .sidebar-carousel .single-slide .slide-bottom{
    display:grid!important
  }
  .blog-section .sidebar-blog .sidebar-single .sidebar-carousel .single-slide .slide-bottom .icon-area{
    margin-top:15px
  }
  .blog-section .sidebar-blog .sidebar-single .title{
    margin-bottom:10px
  }
  .blog-section .sidebar-blog .sidebar-single .sidebar-carousel .slick-arrow{
    display:none!important
  }
  .blog-section .blog-post{
    padding:30px 15px
  }
  .log-reg .modal-content .tab-content .login-reg-content .counter-area{
    display:grid;
    padding-top:15px
  }
  .log-reg .modal-content .tab-content .login-reg-content .counter-area .single{
    margin-top:15px
  }
  .dashboard-content .bets-tab ul{
    padding-bottom:0;
    justify-content:center
  }
  .dashboard-content .bets-tab ul li{
    margin-bottom:10px
  }
  .dashboard-content .tab-content .table-responsive .table{
    width:190%
  }
  .dashboard-content .deposit-with-tab .right-area,.dashboard-content .deposit-with-tab .right-area .address-bar{
    padding:20px 10px
  }
  .dashboard-content .buy-crypto .col-6{
    width:100%!important
  }
  .dashboard-content .google-authentication .brand{
    display:grid!important;
    margin-top:10px
  }
  .dashboard-content .google-authentication .brand a{
    margin-top:10px
  }
  .dashboard-content .tab-content .file-upload{
    display:grid
  }
  .dashboard-content .tab-content .file-upload .img-area{
    margin-bottom:20px
  }
  .dashboard-content .setting-tab .single-area{
    display:grid
  }
  .dashboard-content .setting-tab .single-area a.mdr{
    margin-left:0
  }
  .dashboard-content .setting-tab .single-area p{
    margin:15px 0
  }
  .dashboard-content .setting-tab .single-area a.cmn-btn{
    margin-top:15px
  }
  .dashboard-content .setting-tab .single-area .switch{
    margin-left:0
  }
  .dashboard-content .google-authentication{
    padding:20px 10px
  }
  .dashboard-content .tab-content .file-upload .file .file-custom{
    width:75%
  }
  .dashboard-content .affiliate-tab .table-area,.dashboard-content .buy-crypto,.dashboard-content .buy-crypto .form-box{
    padding:20px 10px
  }
  .dashboard-content .tab-content .buy-crypto .table-responsive .table{
    width:245%
  }
  .dashboard-content .affiliate-tab,.dashboard-content .affiliate-tab .referral-bar{
    padding:20px 10px
  }
  .dashboard-content .tab-content .affiliate-tab .table-responsive .table{
    width:260%
  }
  .contact-section .bg-area{
    padding:50px 20px
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area,.header-section.user-dashboard .navbar-collapse .right-area .single-item.notifications-area .main-area{
    width:290px;
    padding:20px 10px
  }
  .header-section.user-dashboard .navbar-collapse .right-area .single-item .main-area ul li a{
    padding:15px 0
  }
}
@media(max-width:375px){
  .about-bitbetio .col-6,.leave-comments .col-6{
    width:100%!important
  }
  .banner-section.inner-banner .banner-content .main-content .breadcrumb-area .breadcrumb .breadcrumb-item+.breadcrumb-item:before{
    padding:0 12px
  }
  .breadcrumb-item+.breadcrumb-item{
    padding-left:9px
  }
  .bet-this-game .single-area .main-content{
    display:grid;
    justify-content:center
  }
  .bet-this-game .single-area .main-content .mid-area{
    padding:30px 0
  }
  .bet-this-game .single-area .head-area .cmn-btn{
    width:60%
  }
  .footer-section .newsletter form .form-group input{
    padding-left:0
  }
  .footer-section .newsletter form .form-group button{
    min-width:40px;
    min-height:40px
  }
  .how-it-works .main-content ul li h5{
    padding-left:15px
  }
  .how-it-works .main-content ul li h5 .image-area{
    width:20%
  }
  .currency-bet-section .table-responsive .table{
    width:350%
  }
  .blog-section .title{
    margin:30px 0 15px
  }
  .blog-section .author-blog-post{
    display:grid!important
  }
  .blog-section .blog-post .author{
    display:flex;
    align-items:center
  }
  .blog-section .blog-post .author .author-bottom{
    display:flex
  }
  .blog-section .blog-post .author .author-bottom .icon-area{
    margin-left:20px
  }
  .log-reg .modal-content .tab-content .login-reg-content .remember-me{
    display:grid
  }
  .log-reg .modal-content .tab-content .login-reg-content .remember-me .checkbox-single .left-area{
    margin-bottom:25px
  }
  .log-reg .modal-content .log-reg-btn{
    margin-bottom:-10px
  }
  .log-reg .modal-content .log-reg-btn li{
    margin-bottom:20px
  }
  .dashboard-content .tab-content .file-upload .file .file-custom{
    width:91%
  }
}
.logo{
  width: 100%;
  height:50px;
}
.blog-page-wrap {
  padding: 5rem;
  background-color: var(--body-color-on);
  font-family: var(--body-font);
}

.blog-title h4 {
  color: var(--head-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.single-blog-card {
  background-color: #1e1e1a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.single-blog-card:hover {
  transform: translateY(-4px);
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-img-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(23, 22, 18, 0.85), rgba(23, 22, 18, 0.2));
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-overlay-content {
  color: var(--para-color);
}

.card-title-b {
  font-size: 1rem;
  font-weight: 500;
  color: var(--para-color);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.card-title-b:hover {
  color: var(--bg-color);
}

.post-time {
  font-size: 0.75rem;
  color: var(--para-alt-color);
}
@media (max-width: 768px) {
  .card-img-wrapper {
    height: 180px;
  }

  .card-title-b {
    font-size: 0.95rem;
  }
}
.offcanvas.bg-off-dark {
  background-color: rgba(0, 0, 0, 0.5) !important; /* Semi-transparent dark */
  backdrop-filter: blur(10px) saturate(180%); /* Frosty blur effect */
  -webkit-backdrop-filter: blur(10px) saturate(180%); /* Safari support */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Depth shadow */
  border-left: 1px solid rgba(255, 255, 255, 0.1); /* Right edge border now becomes left */
}

/* Custom width and position for the offcanvas */
.offcanvas.offcanvas-end {
  width: 80%;
  left: auto;
  right: -50%; /* Start hidden from the right */
  transition: right 0.3s ease, backdrop-filter 0.3s ease; /* Animate from right */
}

/* Show the offcanvas correctly when it's open */
.offcanvas.show {
  right: 0 !important;
}

.offcanvas .nav-link {
  padding: 10px;
  font-size: 16px;
  color: white;
  transition: background-color 0.2s ease;
}

.offcanvas .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Subtle hover */
}

.offcanvas .nav-link i {
  margin-right: 10px;
}

.offcanvas .dropdown-menu {
  border: none;
  background-color: rgba(0, 0, 0, 0.3); /* Transparent dropdown */
  backdrop-filter: blur(5px); /* Dropdown frost */
}

.offcanvas .dropdown-menu .nav-link {
  padding-left: 30px;
}

.bg-dark-menu {
  background-color: rgba(0, 0, 0, 0.9);
}

