/*-----------------------------------------------------------------------------------

  Project Name: Investify HTML Template
  Author: Tdevs
  Support:
  Description: Investify related HTML Template
  Version: 1.0

-----------------------------------------------------------------------------------

/*----------------------------------------*/
/*   Globals Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
:root {
  --td-ff-body: "JetBrains Mono", monospace;
  --td-ff-fontawesome: "Font Awesome 6 Pro";
  --td-ff-icomoon: "icomoon";
  --td-white: hsl(0, 0%, 100%);
  --td-black: hsl(0, 0%, 0%);
  --td-placeholder: hsla(0, 0%, 0%, 0.5);
  --td-selection: hsl(0, 0%, 0%);
  --td-heading: #0E0E11;
  --td-primary: #FFCD10;
  --td-secondary: #FDD819;
  --td-tertiary: #F81717;
  --td-text-primary: #BDBDC0;
  --td-warning: #FFA336;
  --td-success: #85FFC4;
  --td-danger: #FF3E3E;
  --td-green: #80ED99;
  --td-magenta: #56F5FF;
  --td-sidecar: #E9D8A6;
  --td-pinkDiamond: #FFD6FF;
  --td-kissable: #FF8F77;
  --td-kittensEye: #86A8FF;
  --td-seaweed: #FF9211;
  --td-pureLaughter: #FFF4CC;
  --td-candleLight: #FDD819;
  --td-fw-normal: normal;
  --td-fw-thin: 100;
  --td-fw-elight: 200;
  --td-fw-light: 300;
  --td-fw-regular: 400;
  --td-fw-medium: 500;
  --td-fw-sbold: 600;
  --td-fw-bold: 700;
  --td-fw-ebold: 800;
  --td-fw-black: 900;
  --td-fs-body: 16px;
  --td-fs-p: 16px;
  --td-fs-h1: 60px;
  --td-fs-h2: 48px;
  --td-fs-h3: 38px;
  --td-fs-h4: 32px;
  --td-fs-h5: 24px;
  --td-fs-h6: 20px;
}

/*---------------------------------
/*  Default Spacing
---------------------------------*/
.section-space {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.section-space-top {
  padding-top: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space-top {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-top {
    padding-top: 70px;
  }
}

.section-space-bottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 70px;
  }
}

.section-title-space {
  margin-bottom: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title-space {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-space {
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-space {
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-space {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .section-title-space {
    margin-bottom: 40px;
  }
}

/*----------------------------------------*/
/*   Typography scss
/*----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: var(--td-ff-body);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: var(--td-text-primary);
}

/*----------------------------------------*/
/*  rock page bg
/*----------------------------------------*/
.rock-page-bg {
  background: url(../images/bg/body-bg.png) #0E0E11;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/*----------------------------------------*/
/*  rock auth bg
/*----------------------------------------*/
.rock-auth-bg {
  background-image: url(../images/bg/auth-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/*----------------------------------------*/
/*  rock-dashboard bg
/*----------------------------------------*/
.rock-dashboard-bg {
  background-image: url(../images/bg/dashboard-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 100vh;
  width: 100%;
}
@media (max-width: 575px) {
  .rock-dashboard-bg {
    background-image: url(../images/bg/mobile-body-bg.png);
    background-size: cover;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  margin-top: 0px;
  line-height: 1.125;
  margin-bottom: 0;
  font-weight: 700;
  word-break: break-word;
}

h1,
.h1 {
  line-height: 1.125;
  font-weight: 700;
  font-size: clamp(1.75rem, 1rem + 2vw, 4.375rem);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 32px;
  }
}

h2,
.h2 {
  font-size: clamp(1.375rem, 0.875rem + 1.5vw, 2.5rem);
  line-height: 1.3;
  font-weight: 700;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  h2,
  .h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}

h3,
.h3 {
  line-height: 1.25;
  font-weight: 700;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h3,
  .h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 24px;
  }
}

h4,
.h4 {
  line-height: 1.33;
  font-weight: 700;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h4,
  .h4 {
    font-size: 22px;
  }
}

h5,
.h5 {
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 575px) {
  h5,
  .h5 {
    font-size: 20px;
  }
}

h6,
.h6 {
  line-height: 1.44;
  font-weight: 700;
}
@media (max-width: 575px) {
  h6,
  .h6 {
    font-size: 18px;
  }
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  color: var(--td-text-primary);
  font-size: 1rem;
}
p.b1 {
  font-size: 12px;
  line-height: 1.4;
}
p.b2 {
  font-size: 14px;
  line-height: 1.5;
}
p.b3 {
  font-size: 20px;
  line-height: 1.625;
}
p.b4 {
  font-size: 22px;
  line-height: 1.754;
}
p:last-child {
  margin-bottom: 0px;
}

a {
  text-decoration: none;
}

a,
.btn,
button,
span,
sub,
sup,
p,
select,
textarea,
img,
svg,
.transition-3,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

.o-x-clip {
  overflow-x: clip;
}

img {
  max-width: 100%;
  object-fit: cover;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

hr:not([size]) {
  margin: 0;
  border-color: #ddd;
  opacity: 1;
  border-width: 1px;
}

*::-moz-selection {
  background: var(--td-black);
  color: var(--td-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--td-black);
  color: var(--td-white);
  text-shadow: none;
}

::selection {
  background: var(--td-black);
  color: var(--td-white);
  text-shadow: none;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 14px;
}

*::placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

/*---------------------------------
  1.2 Common Classes
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.position-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

.x-clip {
  overflow-x: clip;
}

.o-visible {
  overflow: visible;
}

.valign {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

/*----------------------------------------
  Bootstrap customize
-----------------------------------------*/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 30px;
}

@media (min-width: 1601px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.g-0, .gx-0 {
  --bs-gutter-x: ;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0 ;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 10px;
}

.gy-12 {
  --bs-gutter-y: 12px;
}

.gy-15 {
  --bs-gutter-y: 15px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.g-20 {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.gy-20 {
  --bs-gutter-y: 20px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gy-20 {
  --bs-gutter-y: 20px;
}

.gx-24 {
  --bs-gutter-x: 24px;
}

.gy-24 {
  --bs-gutter-y: 24px;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 30px;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 30px;
}

.g-40,
.gx-40 {
  --bs-gutter-x: 40px;
}

.g-40,
.gy-40 {
  --bs-gutter-y: 40px;
}

.g-50,
.gx-50 {
  --bs-gutter-x: 50px;
}

.g-50,
.gy-50 {
  --bs-gutter-y: 50px;
}

.g-60,
.gy-60 {
  --bs-gutter-y: 60px;
}

.gy-xs-16 {
  --bs-gutter-y: 15px;
}

/*----------------------------------------
  Body Overlay
-----------------------------------------*/
.body-overlay {
  background-color: #000000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay {
  background-color: #000000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

/*----------------------------------------
  Mfp customize
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1600px) and (max-width: 1800px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 850px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 820px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 750px;
  }
}

.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mfp-close:hover {
  color: var(--td-white);
}
.mfp-close::after {
  position: absolute;
  content: "\f00d";
  height: 100%;
  width: 100%;
  font-family: var(--td-ff-fontawesome);
  font-size: 31px;
  font-weight: 200;
  right: -20px;
  margin-top: -25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mfp-close::after {
    right: 15px;
    margin-top: -30px;
  }
}

/*----------------------------------------*/
/*  Postbox css
/*----------------------------------------*/
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-wrapper {
    padding-left: 0;
  }
}

.postbox-text p {
  line-height: 26px;
}
.postbox-text p b {
  color: var(--td-white);
}

.postbox-thumb img {
  border-radius: 10px;
}

.postbox-title h3 {
  font-size: 30px;
  color: var(--td-white);
  margin-bottom: 30px;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-title h3 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox-title h3 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox-title h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .postbox-title h3 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .postbox-title h3 {
    font-size: 20px;
  }
}

.sidebar-wrapper {
  padding: 25px 30px 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
@media (max-width: 480px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-wrapper {
    padding: 20px 20px;
  }
}

.sidebar-widget-title {
  margin-bottom: 25px;
  color: var(--td-white);
  font-size: 22px;
}
@media (max-width: 480px) {
  .sidebar-widget-title {
    font-size: 20px;
  }
}

.rc-post-item {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 12px 12px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.rc-post-item:not(:last-child) {
  margin-bottom: 20px;
}

.rc-post-title {
  font-size: 15px;
  color: var(--td-white);
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .rc-post-title {
    font-size: 14px;
    line-height: 1.2;
  }
}
.rc-post-title a:hover {
  color: var(--td-primary);
}

.rc-meta p {
  font-size: 12px;
  margin-bottom: 0;
}

.rc-post-thumb {
  width: 80px;
  height: 90px;
  min-width: 80px;
}
@media (max-width: 480px) {
  .rc-post-thumb {
    max-width: 66px;
  }
}
.rc-post-thumb img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}
.rc-title a:hover {
  color: #ffffff;
}

.rc-meta span {
  font-size: 14px;
  position: relative;
  padding-left: 15px;
}
.rc-meta span::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background: rgba(124, 126, 130, 0.5);
  top: 50%;
  left: 0;
}

/*----------------------------------------*/
/* FAQ style
/*----------------------------------------*/
.accordion-wrapper.site-faq .accordion .accordion-button {
  padding: 20px 65px 20px 0px;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  box-shadow: none;
  color: var(--td-white);
  border-top: 0;
}
@media (max-width: 575px) {
  .accordion-wrapper.site-faq .accordion .accordion-button {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .accordion-wrapper.site-faq .accordion .accordion-button {
    font-size: 16px;
    padding: 21px 30px 20px 20px;
  }
}
.accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed) {
  border: 0;
  border-radius: 0;
}
.accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed) span {
  color: var(--td-primary);
}
.accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed):after {
  content: "\f00d" !important;
  color: var(--td-white);
  background-image: none;
}
.accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed) .accordion-body {
  background: var(--td-white);
}
.accordion-wrapper.site-faq .accordion .accordion-button::after {
  position: absolute;
  right: 20px;
  content: "+";
  font-family: var(--td-ff-fontawesome);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  top: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .accordion-wrapper.site-faq .accordion .accordion-button::after {
    right: 0;
  }
}
.accordion-wrapper.site-faq .accordion .accordion-button span {
  padding-right: 15px;
  display: inline-block;
  transition: none;
}
.accordion-wrapper.site-faq .accordion .accordion-body {
  padding-left: 20px;
  padding-right: 20px;
  background: transparent;
  padding-bottom: 20px;
  border-radius: 0px;
  padding-top: 10px;
}
@media (max-width: 480px) {
  .accordion-wrapper.site-faq .accordion .accordion-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.accordion-wrapper.site-faq .accordion .accordion-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.accordion-wrapper.site-faq .accordion .accordion-body .accordion-body-list {
  margin-top: 14px;
}
.accordion-wrapper.site-faq .accordion .accordion-body .accordion-body-list ul li:not(:last-child) {
  margin-bottom: 7px;
}
.accordion-wrapper.site-faq .accordion .accordion-item {
  background: transparent;
  border-radius: 0px;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.accordion-wrapper.site-faq .accordion .accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-wrapper.site-faq .accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rock-fun-fact-shapes .shape-one {
  position: absolute;
  top: -130%;
  z-index: 0;
  left: -15%;
  -moz-animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
  -webkit-animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
  animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-fun-fact-shapes .shape-one {
    max-width: 80px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .rock-fun-fact-shapes .shape-one {
    width: 160px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-fun-fact-shapes .shape-one {
    max-width: 120px;
    left: -10%;
  }
}
.rock-fun-fact-shapes .shape-two {
  -moz-animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
  -webkit-animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
  animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
  position: absolute;
  right: -12%;
  bottom: -150%;
  z-index: -1;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .rock-fun-fact-shapes .shape-two {
    width: 160px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-fun-fact-shapes .shape-two {
    bottom: -130%;
    max-width: 120px;
  }
}

/*----------------------------------------*/
/* Fotter style
/*----------------------------------------*/
.rock-footer .footer-pattern {
  position: absolute;
  bottom: 0;
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.rock-footer .footer-intro-main {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: auto 411px;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px 30px;
}
@media (max-width: 575px) {
  .rock-footer .footer-intro-main {
    grid-template-columns: 1fr;
  }
}
.rock-footer .footer-intro-main .description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 12px;
  font-weight: 500;
}
.rock-footer .footer-main {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-between;
  padding-top: 52px;
  padding-bottom: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 50px 30px;
}
@media xs, only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-footer .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .rock-footer .footer-main {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.rock-footer .footer-wg-title {
  margin-bottom: 15px;
}
.rock-footer .footer-wg-title h5 {
  font-size: 18px;
  font-weight: 500;
  color: var(--td-white);
}
.rock-footer .footer-links ul li {
  list-style: none;
}
.rock-footer .footer-links ul li:not(:last-child) {
  margin-bottom: 6px;
}
.rock-footer .footer-links ul li a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.rock-footer .footer-links ul li a:hover {
  color: var(--td-primary);
}
.rock-footer .footer-social a {
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .rock-footer .footer-social a {
    width: 44px;
    height: 44px;
  }
}
.rock-footer .footer-social a:hover {
  transform: translateY(-5px);
}

.rock-footer-copyright {
  text-align: center;
  padding: 18px;
}
.rock-footer-copyright .description {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/*----------------------------------------*/
/* fun fact style
/*----------------------------------------*/
.fun-fact-counter-grid {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 30px 50px;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .fun-fact-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fun-fact-counter-grid {
    grid-template-columns: 1fr;
  }
}
.fun-fact-counter-grid .fun-fact-bg {
  position: absolute;
  top: -20%;
  width: 1440px;
  height: 700px;
  filter: blur(302px);
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.single-counter-item {
  position: relative;
  text-align: center;
}
.single-counter-item:nth-child(4)::before {
  display: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .single-counter-item:nth-child(2n)::before {
    display: none;
  }
}
.single-counter-item::before {
  position: absolute;
  content: "";
  height: 35px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  left: 109%;
  bottom: 0%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .single-counter-item::before {
    display: none;
  }
}
.single-counter-item .icon {
  margin-bottom: 20px;
}
.single-counter-item .content .title,
.single-counter-item .content span {
  font-family: var(--td-ff-body);
  font-size: 56px;
  color: var(--td-white);
  font-weight: 200;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .single-counter-item .content .title,
  .single-counter-item .content span {
    font-size: 44px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-counter-item .content .title,
  .single-counter-item .content span {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-counter-item .content .title,
  .single-counter-item .content span {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .single-counter-item .content .title,
  .single-counter-item .content span {
    font-size: 32px;
  }
}
.single-counter-item .content .description {
  color: var(--td-primary);
  font-size: 12px;
}

/*----------------------------------------*/
/*  how it works style
/*----------------------------------------*/
.rock-how-it-works-grid {
    display: -ms-grid;
    display: -moz-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 30px;
  }
  @media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .rock-how-it-works-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .rock-how-it-works-grid {
      grid-template-columns: 1fr;
    }
  }

  .rock-how-it-works-item {
    position: relative;
    text-align: center;
  }
  @media (max-width: 575px) and (max-width: 575px), only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px), only screen and (max-width: 575px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
    .rock-how-it-works-item:nth-child(2n) .line {
      display: none;
    }
  }
  @media (max-width: 480px) and (max-width: 575px), only screen and (max-width: 480px) and (min-width: 576px) and (max-width: 767px), only screen and (max-width: 480px) and (min-width: 768px) and (max-width: 991px) {
    .rock-how-it-works-item .line {
      display: none;
    }
  }
  .rock-how-it-works-item .content .title {
    color: var(--td-white);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
  }
  .rock-how-it-works-item .content .description {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
  }
  .rock-how-it-works-item .icon {
    margin-bottom: 22px;
  }
  .rock-how-it-works-item .icon span {
    width: 104px;
    height: 104px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  @media (max-width: 575px) {
    .rock-how-it-works-item .icon span {
      width: 84px;
      height: 84px;
    }
    .rock-how-it-works-item .icon span img {
      max-width: 32px;
    }
  }
  .rock-how-it-works-item .icon span:before {
    position: absolute;
    content: "";
    inset: 0;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(187.69deg, rgba(255, 205, 16, 0) 29.9074500799%, rgba(255, 205, 16, 0.4) 100%);
    -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
  }
  .rock-how-it-works-item .line {
    position: absolute;
    top: 52px;
    left: 105%;
    width: 75%;
    height: 1px;
    background: var(--td-white);
    transform: translateX(-50%);
  }
  @media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .rock-how-it-works-item .line {
      left: 106%;
      width: 67%;
    }
  }
  .rock-how-it-works-item .line::before, .rock-how-it-works-item .line::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--td-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .rock-how-it-works-item .line::after {
    left: auto;
    right: 0;
  }
  .rock-how-it-works-item:nth-child(2) .icon span {
    background: rgba(167, 186, 255, 0.1);
  }
  .rock-how-it-works-item:nth-child(2) .icon span::before {
    background: linear-gradient(187.69deg, rgba(167, 186, 255, 0) 29.9074500799%, rgba(167, 186, 255, 0.4) 100%);
  }
  .rock-how-it-works-item:nth-child(3) .icon span {
    background: rgba(85, 255, 224, 0.1);
  }
  .rock-how-it-works-item:nth-child(3) .icon span:before {
    background: linear-gradient(187.69deg, rgba(85, 255, 224, 0) 29.9074500799%, rgba(85, 255, 224, 0.4) 100%);
  }
  .rock-how-it-works-item:nth-child(4) .icon span {
    background: rgba(255, 255, 255, 0.1);
  }
  .rock-how-it-works-item:nth-child(4) .icon span::before {
    background: linear-gradient(187.69deg, rgba(255, 255, 255, 0) 29.9074500799%, rgba(255, 255, 255, 0.4) 100%);
  }
  .rock-how-it-works-item:nth-child(5) .icon span {
    background: rgba(162, 255, 182, 0.1);
  }
  .rock-how-it-works-item:nth-child(5) .icon span::before {
    background: linear-gradient(187.69deg, rgba(162, 255, 182, 0) 29.9074500799%, rgba(162, 255, 182, 0.4) 100%);
  }
  .rock-how-it-works-item:nth-child(6) .icon span {
    background: rgba(85, 112, 255, 0.1);
  }
  .rock-how-it-works-item:nth-child(6) .icon span::before {
    background: linear-gradient(187.69deg, rgba(85, 112, 255, 0) 29.9074500799%, rgba(85, 112, 255, 0.4) 100%);
  }
  .rock-how-it-works-item:nth-child(7) .icon span {
    background: rgba(202, 255, 160, 0.1);
  }
  .rock-how-it-works-item:nth-child(7) .icon span::before {
    background: linear-gradient(187.69deg, rgba(202, 255, 160, 0) 29.9074500799%, rgba(202, 255, 160, 0.4) 100%);
  }
  .rock-how-it-works-item:nth-child(8) .icon span {
    background: rgba(255, 255, 255, 0.1);
  }
  .rock-how-it-works-item:nth-child(8) .icon span:before {
    background: linear-gradient(187.69deg, rgba(255, 255, 255, 0) 29.9074500799%, rgba(255, 255, 255, 0.4) 100%);
  }
  .rock-how-it-works-item:nth-child(4n) .line, .rock-how-it-works-item :nth-child(8n) .line, .rock-how-it-works-item :nth-child(12n) .line, .rock-how-it-works-item :nth-child(16n) .line, .rock-how-it-works-item :nth-child(20n) .line, .rock-how-it-works-item:last-child .line {
    display: none;
  }

/*----------------------------------------*/
/* investment calculator style
/*----------------------------------------*/
.investment-calculator-form .single-input .nice-select {
  margin-bottom: 20px;
  width: 100%;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  float: none;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  height: 70px;
  padding: 0 30px;
  border: 0;
  font-weight: 500;
  position: relative;
}
@media (max-width: 575px) {
  .investment-calculator-form .single-input .nice-select {
    height: 60px;
    padding: 0 25px;
  }
}
.investment-calculator-form .single-input .nice-select:before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.investment-calculator-form .single-input .nice-select .current {
  text-align: left;
  font-size: 14px;
  position: relative;
  color: var(--td-white);
}
.investment-calculator-form .single-input .nice-select .list {
  transform-origin: center center;
  -webkit-transform: scale(1) translateY(0px);
  -moz-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  -o-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
  -webkit-transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  -o-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: 100%;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  background: rgb(55, 47, 41);
  mix-blend-mode: normal;
  backdrop-filter: blur(22px);
  padding: 12px;
}
.investment-calculator-form .single-input .nice-select::after {
  right: 40px;
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid var(--td-text-primary);
  border-right: 1.5px solid var(--td-text-primary);
  font-size: 16px;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border: 5px solid;
  border-top-color: transparent;
  border-left-color: transparent;
  background-color: transparent;
  transition: all ease-in-out 0.2s;
  margin-top: -2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
@media (max-width: 575px) {
  .investment-calculator-form .single-input .nice-select::after {
    right: 30px;
  }
}
.investment-calculator-form .single-input .nice-select .option {
  font-size: 14px;
  line-height: 40px;
  min-height: 40px;
  color: var(--td-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 0 10px;
}
.investment-calculator-form .single-input .nice-select .option.selected {
  font-weight: 500;
}
.investment-calculator-form .single-input .nice-select .option.selected.focus {
  background-color: #353535;
}
.investment-calculator-form .single-input .nice-select .option:hover {
  background-color: #353535;
}
.investment-calculator-form .single-input input {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  height: 70px;
  width: 100%;
  padding: 0 30px;
  color: var(--td-white);
  border: none;
  font-weight: 500;
  position: relative;
  outline: none;
}
@media (max-width: 575px) {
  .investment-calculator-form .single-input input {
    height: 60px;
    padding: 0 25px;
  }
}
.investment-calculator-form .single-input input::after {
  position: absolute;
  content: "";
}
.investment-calculator-form .single-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--td-white);
}
.investment-calculator-form .single-input input::-moz-placeholder { /* Firefox 19+ */
  color: var(--td-white);
}
.investment-calculator-form .single-input input:-moz-placeholder { /* Firefox 4-18 */
  color: var(--td-white);
}
.investment-calculator-form .single-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--td-white);
}
.investment-calculator-form .single-input input::placeholder { /* MODERN BROWSER */
  color: var(--td-white);
}
.investment-calculator-form .single-input input:focus {
  border: none;
}
.investment-calculator-form .single-input .input-field {
  position: relative;
}
.investment-calculator-form .single-input .input-field:before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.investment-calculator-form .single-input .input-field .icon {
  position: absolute;
  top: 50%;
  right: 34px;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .investment-calculator-form .single-input .input-field .icon {
    right: 24px;
  }
}
.investment-calculator-form .input-description {
  color: var(--td-primary);
  font-weight: 500;
  font-size: 12px;
  text-align: end;
  margin-top: 14px;
  margin-bottom: 14px;
}
.investment-calculator-form .investment-gradient-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .investment-calculator-form .investment-gradient-btn .site-btn {
    height: 52px;
  }
}

.investment-calculator-shapes .shape-one {
  position: absolute;
  top: -38%;
  left: -8%;
  z-index: -1;
  -moz-animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
  -webkit-animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
  animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .investment-calculator-shapes .shape-one {
    width: 40%;
    left: -10%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .investment-calculator-shapes .shape-one {
    display: none;
  }
}
.investment-calculator-shapes .shape-two {
  position: absolute;
  right: -7%;
  bottom: -45%;
  z-index: -1;
  -moz-animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
  -webkit-animation: tdupdown 2s ease-in-out 1s forwards infinite alternate;
  animation: tpupdown 1.5s ease-in-out 1s forwards infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .investment-calculator-shapes .shape-two {
    width: 40%;
    right: -10%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .investment-calculator-shapes .shape-two {
    display: none;
  }
}
.investment-calculator-shapes .shape-three {
  position: absolute;
  top: -122px;
  left: 53px;
  z-index: -2;
  max-width: 958px;
  mix-blend-mode: lighten;
  opacity: 10%;
}

/*----------------------------------------*/
/* investors style
/*----------------------------------------*/
.rock-investors-wrapper {
  padding: 25px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
.rock-investors-wrapper.style-two .rock-investors-item {
  grid-template-columns: 67% auto auto;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-investors-wrapper.style-two .rock-investors-item {
    grid-template-columns: 50% auto auto;
  }
}
@media (max-width: 480px) {
  .rock-investors-wrapper.style-two .rock-investors-item {
    grid-template-columns: auto auto;
  }
}
.rock-investors-wrapper .title {
  font-size: 18px;
  color: var(--td-white);
  margin-bottom: 20px;
}

.rock-investors-grid {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-investors-grid {
    grid-template-columns: 1fr;
  }
}

.rock-investors-item {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: 40% 15% auto;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-investors-item {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .rock-investors-item {
    grid-template-columns: auto auto;
  }
}
.rock-investors-item:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rock-investors-item .rock-investors-contents {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.rock-investors-item .rock-investors-contents .content .title {
  color: var(--td-white);
  font-size: 12px;
  margin-bottom: 3px;
  line-height: 1.5;
}
.rock-investors-item .rock-investors-contents .content .description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: normal;
}
.rock-investors-item .rock-investors-bagde .site-bade {
  background: rgba(20, 191, 140, 0.6);
  mix-blend-mode: normal;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 7px 20px;
  color: var(--td-white);
  font-size: 10px;
}
.rock-investors-item .rock-investors-bagde .site-bade.warning-badge {
  background-color: var(--td-warning);
}
.rock-investors-item .rock-currency .small-dolar {
  font-size: 10px;
  color: #14BF8C;
}
.rock-investors-item .rock-currency .dolar {
  font-size: 12px;
  color: var(--td-white);
}

.rock-investors-shapes .shape-one {
  position: absolute;
  top: 25%;
  left: -8%;
  z-index: -1;
  filter: blur(4.5px);
  animation: moveShape 6s infinite alternate, fadeIn 3s ease-in-out forwards;
}
.rock-investors-shapes .shape-two {
  position: absolute;
  right: -5%;
  bottom: -8%;
  filter: blur(4.5px);
  animation: moveShape 6s infinite alternate, fadeIn 3s ease-in-out forwards;
}

/*----------------------------------------*/
/* join members style
/*----------------------------------------*/
.join-members-main {
  margin: 0 auto;
  padding: 70px 50px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .join-members-main {
    padding: 50px 30px;
  }
}

/*----------------------------------------*/
/*  Main menu css
/*----------------------------------------*/
.td-main-menu > ul {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  gap: 18px;
}
.td-main-menu > ul > li:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-main-menu > ul > li:not(:last-child) {
    margin-right: 0px;
  }
}
.td-main-menu > ul > li.active > a {
  color: var(--td-primary);
}
.td-main-menu > ul > li > a {
  position: relative;
}
.td-main-menu > ul > li:last-child a::before {
  display: none;
}
.td-main-menu > ul > li:hover > a {
  color: var(--td-primary);
}
.td-main-menu > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  left: 0px;
}
.td-main-menu > ul > li:hover > ul.dp-menu li:hover > ul {
  opacity: 1;
  pointer-events: all;
  left: 100%;
}
.td-main-menu li {
  position: relative;
  list-style: none;
}
.td-main-menu li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--td-text-primary);
  padding: 28px 5px;
  display: inline-block;
  letter-spacing: 0.2px;
}

.menu-icon {
  width: 30px;
  height: 20px;
  position: relative;
  display: block;
}
.menu-icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 0;
  inset-inline-start: 0;
  background: var(--td-white);
  transition: all 0.3s;
}
.menu-icon::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  inset-inline-start: 0;
  background: var(--td-white);
  transition: all 0.3s;
}
.menu-icon span {
  position: absolute;
  content: "";
  width: 18px;
  height: 1px;
  top: 50%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--td-white);
}
.menu-icon:hover::after, .menu-icon:hover::before,
.menu-icon:hover span {
  background-color: var(--td-primary);
}

/*----------------------------------------*/
/*  Meanmenu css
/*----------------------------------------*/
.mean-container {
  margin-bottom: 35px;
}
.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: var(--td-white);
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}
.mean-container a.meanmenu-reveal span {
  display: block;
  background: var(--td-white);
  height: 3px;
  margin-top: 3px;
}
.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
  float: left;
  width: 100%;
}
.mean-container .mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0 !important;
}
.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}
.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}
.mean-container .mean-nav ul li.dropdown-opened > a, .mean-container .mean-nav ul li.dropdown-opened > span {
  color: var(--td-white);
}
.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked {
  background: var(--td-white);
  color: var(--td-white);
  border-color: transparent;
}
.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked i {
  color: var(--td-white);
  transform: rotate(90deg);
}
.mean-container .mean-nav ul li.mean-last {
  border-bottom: none;
  margin-bottom: 0;
}
.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  transition: 0.3s;
}
.mean-container .mean-nav ul li > a > i {
  display: none;
}
.mean-container .mean-nav ul li a, .mean-container .mean-nav ul li span {
  display: block;
  float: left;
  width: 90%;
  padding: 10px 5%;
  margin: 0;
  text-align: left;
  text-decoration: none;
  width: 100%;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.mean-container .mean-nav ul li a:hover, .mean-container .mean-nav ul li span:hover {
  color: var(--td-primary);
}
.mean-container .mean-nav ul li a:hover i, .mean-container .mean-nav ul li span:hover i {
  color: var(--td-primary);
}
.mean-container .mean-nav ul li a.mean-expand, .mean-container .mean-nav ul li span.mean-expand {
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent;
  border: none !important;
  font-size: 14px;
  margin-top: 5px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.079) !important;
  height: 30px;
  width: 30px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover, .mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--td-white);
  color: var(--td-white);
  border-color: var(--td-white);
}
.mean-container .mean-nav ul li a.mean-expand:hover i, .mean-container .mean-nav ul li span.mean-expand:hover i {
  color: var(--td-white);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked, .mean-container .mean-nav ul li span.mean-expand.mean-clicked {
  color: var(--td-white);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover, .mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover {
  background: var(--td-white);
  color: var(--td-white);
  border-color: var(--td-white);
}
.mean-container .mean-nav ul li li a {
  width: 90%;
  padding: 10px 7%;
  text-shadow: none !important;
  visibility: visible;
}
.mean-container .mean-nav ul li li li a {
  width: 80%;
  padding: 10px 12%;
}
.mean-container .mean-nav ul li li li li a {
  width: 70%;
  padding: 10px 17%;
}
.mean-container .mean-nav ul li li li li li a {
  width: 60%;
  padding: 10px 20%;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  float: left;
  width: 100%;
  position: relative;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
}
.mean-container .mean-bar, .mean-container .mean-bar * {
  /* Fix for box sizing on Foundation Framework etc. */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/*----------------------------------------*/
/* Newslatter style
/*----------------------------------------*/
.rock-newsletter-wrapper {
  padding: 65px 50px 105px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 575px) {
  .rock-newsletter-wrapper {
    padding: 45px 30px 75px;
  }
}

.rock-newsletter-content {
  max-width: 737px;
  margin: 0 auto;
  text-align: center;
}
.rock-newsletter-content .newsletter-form form {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-newsletter-content .newsletter-form form {
    flex-direction: column;
  }
}
.rock-newsletter-content .newsletter-form .single-input {
  flex: auto;
  width: 100%;
}
.rock-newsletter-content .newsletter-form .single-input input {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  height: 50px;
  width: 100%;
  padding: 0 20px;
  color: var(--td-white);
  border: none;
  font-weight: 500;
  outline: none;
  font-size: 14px;
  border: 1px solid rgba(173, 171, 168, 0.6);
}
.rock-newsletter-content .newsletter-form .single-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.3);
}
.rock-newsletter-content .newsletter-form .single-input input::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.3);
}
.rock-newsletter-content .newsletter-form .single-input input:-moz-placeholder { /* Firefox 4-18 */
  color: rgba(255, 255, 255, 0.3);
}
.rock-newsletter-content .newsletter-form .single-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: rgba(255, 255, 255, 0.3);
}
.rock-newsletter-content .newsletter-form .single-input input::placeholder { /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.3);
}
.rock-newsletter-content .newsletter-form .single-input input:focus {
  border-color: var(--td-white);
}
.rock-newsletter-content .newsletter-form .single-input .input-field {
  position: relative;
}
.rock-newsletter-content .newsletter-form .single-input .input-field::after {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.rock-newsletter-content .newsletter-form .site-btn {
  flex: 0 0 auto;
  height: 50px;
  padding: 0 27px !important;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-newsletter-content .newsletter-form .site-btn {
    width: 100%;
  }
}

.rock-newsletter-shapes .shape-one {
  position: absolute;
  right: -12%;
  top: 0%;
  animation: moveShape 6s infinite alternate, fadeIn 3s ease-in-out forwards;
  filter: blur(4.5px);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-newsletter-shapes .shape-one {
    max-width: 80px;
  }
}
.rock-newsletter-shapes .shape-two {
  position: absolute;
  bottom: -17%;
  filter: blur(4.5px);
  left: -9%;
  animation: moveShape 6s infinite alternate, fadeIn 3s ease-in-out forwards;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-newsletter-shapes .shape-two {
    max-width: 40px;
  }
}

/*----------------------------------------*/
/* payment accept style
/*----------------------------------------*/
.rock-payment-accept-section .swiper-wrapper {
  transition-timing-function: linear;
}

.rock-payment-thumb img {
  opacity: 0.5;
}

/*----------------------------------------*/
/* Price style
/*----------------------------------------*/
.rock-pricing-main {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-pricing-main {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-pricing-main {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-pricing-main {
    padding-top: 45px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-pricing-main {
    padding-top: 45px;
    padding-bottom: 0px;
  }
}

.rock-pricing-section {
  padding-bottom: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-pricing-section {
    padding-bottom: 0;
  }
}

.price-world-bg {
  position: absolute;
  top: -40px;
  height: 100%;
  width: 110%;
  z-index: -1;
  opacity: 0.4;
  left: 50%;
  transform: translateX(-50%);
}
.price-world-bg img {
  animation: spin 60s linear 0s infinite reverse;
  -moz-animation: 60s linear 0s reverse none infinite spin;
  -webkit-animation: spin 60s linear 0s infinite reverse;
}

.rock-pricing-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 30px 30px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.rock-pricing-item:before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-pricing-item {
    padding: 25px 20px 25px;
  }
}
.rock-pricing-item.is-active {
  background: rgba(255, 146, 17, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
.rock-pricing-item.is-active::before {
  background: linear-gradient(139.9deg, rgba(255, 163, 54, 0.4) 0%, rgba(255, 163, 54, 0) 100%);
}
.rock-pricing-item.outline-hidden::before {
  display: none;
}
.rock-pricing-item .item-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--td-white);
}
@media xs {
  .rock-pricing-item .item-title {
    font-size: 20px;
  }
}
.rock-pricing-item .price-value {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rock-pricing-item .price-badge {
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 5px 11px;
  display: inline-block;
  color: var(--td-white);
  font-size: 10px;
  font-weight: 500;
}
.rock-pricing-item .price-suggest {
  font-size: 12px;
  color: var(--td-seaweed) !important;
  font-weight: 500;
}
.rock-pricing-item .price-list {
  margin-top: 30px;
  margin-bottom: 25px;
}
.rock-pricing-item .price-list ul li {
  list-style: none;
}
.rock-pricing-item .price-list ul li:not(:last-child) {
  margin-bottom: 12px;
}
.rock-pricing-item .price-list ul li .single-list {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.rock-pricing-item .price-list ul li .single-list .list-content {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: start;
  gap: 10px;
}
.rock-pricing-item .price-list ul li .single-list .list-content .list-item-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.rock-pricing-item .price-list ul li .single-list .list-content .icon-list li {
  list-style: none;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: start;
  gap: 10px;
}
.rock-pricing-item .price-list ul li .single-list .list-content .icon-list li:not(:last-child) {
  margin-bottom: 20px;
}
.rock-pricing-item .price-list ul li .single-list .list-content .icon-list li .list-item-text {
  font-weight: 500;
}
.rock-pricing-item .price-list ul li .single-list .list-valu span {
  font-size: 14px;
  font-weight: 500;
  color: var(--td-seaweed);
}
.rock-pricing-item .price-btn-wrp {
  text-align: center;
}
.rock-pricing-item .price-btn-wrp .description {
  color: var(--td-seaweed);
  font-size: 10px;
  font-weight: 500;
  margin-top: 8px;
}
.rock-pricing-item .price-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .rock-dashboard-pricing-section .rock-pricing-item {
    padding: 25px 25px;
  }
}

@-webkit-keyframes tpupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-moz-keyframes tpupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-ms-keyframes tpupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes tpupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
/*----------------------------------------*/
/* video style
/*----------------------------------------*/
.rock-video-thumb {
  position: relative;
}
.rock-video-thumb img {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
}
.rock-video-thumb .play-btn {
  width: 72px;
  height: 72px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--td-warning);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rock-video-thumb .play-btn::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.7);
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0px;
  bottom: 0px;
  z-index: 0;
  animation-name: popupBtn;
  animation-duration: 1.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: -1;
}
.rock-video-thumb .play-btn::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.7);
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0px;
  z-index: 0;
  animation-name: popupBtn;
  animation-duration: 1.8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: -1;
}

/*----------------------------------------*/
/* rock why choose style
/*----------------------------------------*/
.rock-why-choose-grid {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: 273px 273px 273px 273px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .rock-why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.rock-why-choose-item {
  text-align: center;
}
.rock-why-choose-item .icon {
  margin-bottom: 30px;
}
.rock-why-choose-item .icon span {
  width: 104px;
  height: 104px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 575px) {
  .rock-why-choose-item .icon span {
    width: 84px;
    height: 84px;
  }
}
.rock-why-choose-item .icon span:before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(145.53deg, rgba(255, 255, 255, 0) 57.4999988079%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.rock-why-choose-item .content .title {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--td-white);
}
.rock-why-choose-item .content .description {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.rock-why-choose-item:hover .icon {
  margin-bottom: 30px;
}
.rock-why-choose-item:hover .icon span {
  transform: translateY(-5px);
}

/*----------------------------------------*/
/* authentication style
/*----------------------------------------*/
.rock-auth-section {
  padding: 100px 0;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .rock-auth-section {
    padding: 80px 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .rock-auth-section {
    padding: 60px 0;
  }
}

.rock-auth-wrapper {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
}
.rock-auth-wrapper .rock-auth-shapes .shape-one {
  position: absolute;
  bottom: 0;
  left: 12%;
  z-index: -1;
  filter: blur(2px);
}
.rock-auth-wrapper .rock-auth-shapes .shape-two {
  position: absolute;
  top: -5%;
  right: -11%;
  z-index: -1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-auth-wrapper .rock-auth-shapes {
    display: none;
  }
}

.rock-auth-main-inner {
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  max-width: 858px;
  margin: 0 auto;
  padding: 60px 60px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-auth-main-inner {
    padding: 30px 30px;
  }
}
@media (max-width: 480px) {
  .rock-auth-main-inner {
    padding: 30px 20px;
  }
}

.rock-auth-logo {
  text-align: center;
  margin-bottom: 55px;
}
.rock-auth-logo img {
    height: 50px;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-auth-logo {
    margin-bottom: 35px;
  }
}

.rock-auth-content {
  text-align: center;
  margin-bottom: 85px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-auth-content {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-auth-content {
    margin-bottom: 50px;
  }
}
.rock-auth-content .title {
  font-size: 30px;
  color: var(--td-white);
  margin-bottom: 7px;
}
@media (max-width: 480px) {
  .rock-auth-content .title {
    font-size: 22px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-auth-content .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-auth-content .title {
    font-size: 26px;
  }
}
.rock-auth-content .description {
  font-size: 14px;
  font-weight: 500;
}

.rock-auth-bottm {
  text-align: center;
  margin-top: 60px;
}
.rock-auth-bottm .rock-auth-btn {
  margin-bottom: 24px;
}
.rock-auth-bottm .rock-auth-btn .site-btn {
  padding: 0 60px;
}
.rock-auth-bottm .description {
  font-size: 14px;
  font-weight: 500;
}
.rock-auth-bottm .description .text-link {
  background: linear-gradient(135deg, rgb(253, 214, 141) 0%, rgb(251, 148, 134));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
}

.rock-auth-checkbox {
  margin-top: 20px;
}
.rock-auth-checkbox input[type=checkbox] {
  display: none;
}
.rock-auth-checkbox input[type=checkbox]:checked ~ label::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.rock-auth-checkbox input[type=checkbox]:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.rock-auth-checkbox input[type=checkbox] ~ label {
  position: relative;
  padding-inline-start: 30px;
  z-index: 1;
}
.rock-auth-checkbox input[type=checkbox] ~ label::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #C3C7C9;
  z-index: -1;
  transition: all 0.2s linear;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.rock-auth-checkbox input[type=checkbox] ~ label::before {
  position: absolute;
  content: "\f00c";
  top: 3px;
  left: 0px;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--td-white);
  transition: all 0.2s linear;
  font-family: var(--td-ff-fontawesome);
  font-size: 10px;
}
.rock-auth-checkbox input[type=checkbox] ~ label:hover {
  cursor: pointer;
}
.rock-auth-checkbox .terms-condition {
  font-size: 14px;
  font-weight: 500;
  color: var(--td-white);
}
.rock-auth-checkbox .terms-condition a {
  background: linear-gradient(135deg, rgb(253, 214, 141) 0%, rgb(251, 148, 134));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
}

.rock-auth-remember-inner {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-self: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 5px;
}
.rock-auth-remember-inner .rock-auth-checkbox {
  margin-top: 0;
}
.rock-auth-remember-inner .rock-auth-forgot p a {
  background: linear-gradient(135deg, rgb(253, 214, 141) 0%, rgb(251, 148, 134));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 14px;
  font-weight: 900;
}

.td-alert.alert-input {
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 12px;
  display: inline-block;
  padding-right: 40px;
}
.td-alert.alert-input p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--td-white);
}
.td-alert.alert-dismissible .btn-close {
  background-image: none;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  right: 5px;
}

/*----------------------------------------*/
/* Ranking badge card
/*----------------------------------------*/
.rock-ranking-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-ranking-badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .rock-ranking-badge-grid {
    grid-template-columns: 1fr;
  }
}

.rock-ranking-badge-item {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4.69592px);
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -o-border-radius: 22px;
  -ms-border-radius: 22px;
  border-radius: 22px;
  padding: 50px 50px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  justify-content: center;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 480px) {
  .rock-ranking-badge-item {
    padding: 30px 20px;
  }
}
.rock-ranking-badge-item:before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.rock-ranking-badge-item.badge-lock .inner::before {
  position: absolute;
  content: "";
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  left: 0;
  top: 0;
  background: #221A11;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -o-border-radius: 22px;
  -ms-border-radius: 22px;
  border-radius: 22px;
  opacity: 0.9;
  transition: 0.3s;
}
.rock-ranking-badge-item.badge-lock .inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "\f023";
  font-family: var(--td-ff-fontawesome);
  font-weight: 900;
  color: var(--td-white);
  font-size: 62px;
  transition: 0.3s;
}
.rock-ranking-badge-item:nth-child(1) .thumb {
  filter: drop-shadow(0px 4px 34px rgba(255, 255, 255, 0.25));
}
.rock-ranking-badge-item:nth-child(2) .thumb {
  filter: drop-shadow(0px 4px 34px rgba(255, 194, 99, 0.25));
}
.rock-ranking-badge-item:nth-child(3) .thumb {
  filter: drop-shadow(0px 4px 34px rgba(98, 42, 255, 0.25));
}
.rock-ranking-badge-item:nth-child(4) .thumb {
  filter: drop-shadow(0px 4px 34px rgba(98, 42, 255, 0.25));
}
.rock-ranking-badge-item .thumb {
  margin: 0 auto;
  margin-bottom: 28px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-ranking-badge-item .thumb {
    max-width: 120px;
  }
}
.rock-ranking-badge-item .content .title {
  font-size: 26px;
  margin-bottom: 25px;
  color: var(--td-white);
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-ranking-badge-item .content .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .rock-ranking-badge-item .content .title {
    font-size: 20px;
  }
}
.rock-ranking-badge-item .content .description {
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1.17398px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -o-border-radius: 36px;
  -ms-border-radius: 36px;
  border-radius: 36px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 15px;
}

/*----------------------------------------*/
/* About style
/*----------------------------------------*/
.rock-about-thumb-wrap {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-about-thumb-wrap {
    margin-right: 0;
  }
}
.rock-about-thumb-wrap .card-text p {
  position: absolute;
  left: 0;
  bottom: 40px;
  padding: 10px 20px;
  background: #ffc300;
  color: #001219;
  font-size: 22px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-about-thumb-wrap .card-text p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .rock-about-thumb-wrap .card-text p {
    font-size: 14px;
  }
}
.rock-about-thumb-wrap .shape-one {
  position: absolute;
  left: -21%;
  top: 0%;
  animation: moveShape 6s infinite alternate, fadeIn 3s ease-in-out forwards;
  filter: blur(4.5px);
  z-index: -1;
}

/*----------------------------------------*/
/* Blog style
/*----------------------------------------*/
.rock-blog-grid-item {
  padding: 12px 12px 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.rock-blog-grid-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.rock-blog-grid-item:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(127.07deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.rock-blog-grid-item .blog-thumb {
  margin-bottom: 35px;
}
.rock-blog-grid-item .blog-thumb img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
}
.rock-blog-grid-item .blog-title {
  font-size: 18px;
  color: var(--td-white);
  margin-bottom: 20px;
}
.rock-blog-grid-item .description {
  font-size: 12px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}
.rock-blog-grid-item .blog-date span {
  font-size: 10px;
  margin-bottom: 20px;
  display: block;
  color: rgba(255, 255, 255, 0.7);
}
.rock-blog-grid-item .blog-link {
  text-align: end;
}

.blog-slider-btn {
  width: 66px;
  height: 66px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-slider-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-slider-navigation {
    margin-top: 50px;
    text-align: center;
  }
}
.blog-slider-navigation .blog-slider-btn {
  position: absolute;
  top: 50%;
  left: -86px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-slider-navigation .blog-slider-btn {
    position: inherit;
  }
}
.blog-slider-navigation .blog-slider-btn.blog-slider-next {
  left: auto;
  right: -86px;
}

/*----------------------------------------*/
/*  banner css
/*----------------------------------------*/
.banner-style-four {
  padding-top: 210px;
  padding-bottom: 210px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .banner-style-four {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-style-four {
    padding-top: 220px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style-four {
    padding-top: 200px;
    padding-bottom: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-four {
    padding-top: 180px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-style-four {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 575px) {
  .banner-style-four {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .banner-style-four {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
.banner-style-four .banner-content .banner-title {
  color: var(--td-white);
  margin-bottom: 30px;
  line-height: 1.3;
  letter-spacing: -6px;
  animation: zoomIn 1.5s ease-in-out forwards;
  font-size: 60px;
  font-weight: 800;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 36px;
    letter-spacing: -4px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 34px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 32px;
    letter-spacing: -3px;
  }
}
@media (max-width: 575px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 26px;
    letter-spacing: -3px;
  }
}
@media (max-width: 480px) {
  .banner-style-four .banner-content .banner-title {
    font-size: 24px;
    letter-spacing: -3px;
  }
}
.banner-style-four .banner-content .description {
  color: rgba(255, 255, 255, 0.7);
  max-width: 659px;
  margin-bottom: 45px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -2px;
  animation: fadeIn 2s ease-in-out forwards, slideIn 2s ease-in-out;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-four .banner-content .description {
    font-size: 16px;
    letter-spacing: -1px;
  }
}
.banner-style-four .btn-wrap {
  animation: bounceIn 2.5s ease-in-out forwards;
}
.banner-style-four .banner-thumb {
  animation: fadeIn 2s ease-in-out forwards, rotateIn 3s ease-in-out forwards;
}
.banner-style-four .banner-thumb img {
  width: 100%;
  animation: upDown 1.5s infinite alternate;
}
.banner-style-four .banner-thumb-wrapper {
  position: relative;
  z-index: 5;
}
.banner-style-four .banner-thumb-wrapper .banner-cercle {
  position: absolute;
  top: -15px;
  left: 0;
  z-index: -1;
  animation: pulse 3s infinite;
}
.banner-style-four .banner-dot {
  position: absolute;
  top: -5%;
  left: 0;
  z-index: -1;
  animation: fadeIn 2s ease-in-out forwards, moveShape 5s infinite alternate;
}
.banner-style-four .banner-four-shapes .shape-one {
  position: absolute;
  top: 20%;
  left: 5%;
  z-index: -1;
  filter: blur(4px);
  animation: moveShape 10s infinite alternate, fadeIn 3s ease-in-out forwards;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-four .banner-four-shapes .shape-one {
    max-width: 50px;
  }
}
.banner-style-four .banner-four-shapes .shape-two {
  position: absolute;
  bottom: 33%;
  left: 39%;
  z-index: -1;
  filter: blur(4px);
  animation: moveShape 10s infinite alternate, fadeIn 3s ease-in-out forwards;
}
.banner-style-four .banner-four-shapes .round-one {
  position: absolute;
  top: -100%;
  right: -50%;
  z-index: -1;
  animation: rotate 20s infinite linear;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-style-four .banner-four-shapes .round-one {
    top: 0;
  }
}

/* Keyframes for animations */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: translateY(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateY(-10px);
  }
}
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-360deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes moveShape {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
/*----------------------------------------*/
/*  Header css
/*----------------------------------------*/
.header-transparent {
  position: absolute;
  inset-inline-start: 0;
  margin: auto;
  width: 100%;
  z-index: 99;
  background-color: transparent;
}

.header-primary {
  padding: 30px 30px;
}
@media (max-width: 575px) {
  .header-primary {
    padding: 20px 15px;
  }
}

@media (max-width: 575px) {
  .header-logo img {
    max-width: 170px;
  }
}

.active-sticky {
  position: fixed !important;
  top: 0;
  z-index: 111;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0px 20px 40px rgba(37, 9, 62, 0.1);
  animation: sticky 0.3s;
  -webkit-animation: sticky 0.3s;
}

.header-lang-item {
  position: relative;
}
.header-lang-item > span {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  transition: all 0.1s linear;
  z-index: 1;
  font-weight: 500;
  color: var(--td-primary);
}
.header-lang-item > span:hover {
  cursor: pointer;
}
.header-lang-item ul {
  position: absolute;
  top: 207%;
  left: 0;
  z-index: 11;
  padding: 10px 15px;
  visibility: hidden;
  opacity: 0;
  min-width: max-content;
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
  background: #2d2a29;
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(50px);
  border-radius: 10px;
}
.header-lang-item ul.lang-list-open {
  visibility: visible;
  opacity: 1;
}
.header-lang-item ul li {
  list-style: none;
}
.header-lang-item ul li span.icon {
  display: none;
  transition: none;
}
.header-lang-item ul li .active span.icon {
  display: inline-block;
}
.header-lang-item ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.header-lang-item ul li a:hover {
  color: var(--td-primary);
}

.header-style-four {
  background: rgba(255, 255, 255, 0.04) !important;
  mix-blend-mode: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 0px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-style-four {
    padding: 20px 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-style-four.active-sticky {
    padding: 20px 0;
  }
}
.header-style-four.active-sticky .header-action-inner .header-lang-item > span {
  color: var(--td-white);
}
.header-style-four .header-inner {
  padding: 0 15px;
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: 20% 55% 25%;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  max-width: 1680px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-style-four .header-inner {
    grid-template-columns: auto auto auto;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-style-four .header-inner {
    grid-template-columns: auto auto;
  }
}
.header-style-four .header-action {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-style-four .header-action-inner {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  gap: 5px 15px;
}
.header-style-four .header-action-inner .header-lang-item > span {
  color: var(--td-white);
}
.header-style-four .social-share {
  margin-right: 8px;
}
.header-style-four .social-share .quick-share-btn {
  color: var(--td-white);
  font-size: 14px;
  font-weight: 800;
}
.header-style-four .social-share .quick-share-btn .text {
  position: relative;
}
.header-style-four .social-share .quick-share-btn .text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0px;
  background-color: var(--td-white);
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.3s;
}
.header-style-four .social-share .quick-share-btn .text:hover {
  color: var(--td-white);
}
.header-style-four .social-share .quick-share-btn .text:hover::after {
  transform-origin: bottom right;
  transform: scaleX(0);
}
.header-style-four .header-btn-wrap {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rock-sidebar-logo img {
  max-width: 144px;
}
@media (max-width: 480px) {
  .rock-sidebar-logo img {
    max-width: 110px;
  }
}

/*----------------------------------------*/
/*  Modal
/*----------------------------------------*/
#welcomeModal,
#withdrawLogModal,
#referModal {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.modal-dialog.rock-dashboard-modal {
  min-width: 740px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .modal-dialog.rock-dashboard-modal {
    min-width: 80%;
  }
}
.modal-dialog.rock-dashboard-modal .modal-content {
  border: 0;
  border-radius: 24px;
  position: relative;
  padding: 180px 50px 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .modal-dialog.rock-dashboard-modal .modal-content {
    padding: 100px 30px 30px;
  }
}
.modal-dialog.rock-dashboard-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper .rock-icon {
  margin-top: -80px;
  position: absolute;
  top: -290px;
  z-index: -1;
  left: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper .rock-icon {
    top: -160px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper .rock-icon {
    top: -40px;
  }
}
.modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper h3.title {
  font-size: 40px;
  color: var(--td-white);
  margin-bottom: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper h3.title {
    font-size: 32px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper h3.title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper h3.title {
    font-size: 24px;
  }
}
.modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper h4 {
  color: var(--td-white);
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper h4 {
    font-size: 18px;
  }
}
.modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper .description {
  font-size: 20px;
  letter-spacing: -2px;
  color: var(--td-white);
  margin-bottom: 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .modal-dialog.rock-dashboard-modal .rock-modal-content-wrapper .description {
    font-size: 16px;
  }
}
.modal-dialog.rock-dashboard-modal .modal-btn-close {
  position: absolute;
  top: 28px;
  right: 28px;
}
.modal-dialog.rock-dashboard-modal .modal-bg-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 38%;
  background-size: 100% 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  z-index: -1;
}

.modal-dialog.rock-withdraw-log-modal {
  max-width: 357px;
  margin: 0 auto;
}
.modal-dialog.rock-withdraw-log-modal .modal-btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
}
.modal-dialog.rock-withdraw-log-modal .modal-content {
  border: 0;
  border-radius: 24px;
  position: relative;
  padding: 40px 50px 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
}

.rock-withdraw-log-modal-content .rock-icon {
  margin-bottom: 30px;
}
.rock-withdraw-log-modal-content .content {
  background: rgba(255, 255, 255, 0.08);
  border: 1.17398px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 12px 12px;
}
.rock-withdraw-log-modal-content .content .description {
  font-size: 12px;
  color: var(--td-white);
  font-weight: 400;
}
.rock-withdraw-log-modal-content .content::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.rock-add-mony-modal {
  display: grid;
  place-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-add-mony-modal {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-add-mony-modal {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.rock-add-mony-content {
  text-align: center;
}
.rock-add-mony-content .thumb {
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .rock-add-mony-content .thumb {
    max-width: 88px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.rock-add-mony-content .title {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--td-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-add-mony-content .title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .rock-add-mony-content .title {
    font-size: 20px;
  }
}
.rock-add-mony-content .description {
  font-size: 14px;
  margin-bottom: 14px;
}
.rock-add-mony-content .transaction-badge {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--td-white);
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
}
@media (max-width: 480px) {
  .rock-add-mony-content .transaction-badge {
    font-size: 12px;
  }
}
.rock-add-mony-content .btn-inner {
  margin-top: 40px;
}

/*----------------------------------------*/
/*  Alerts Styles
/*----------------------------------------*/
#customAlert {
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  opacity: 1;
  visibility: visible;
}

#customAlert.hide {
  opacity: 0;
  visibility: hidden;
}

.rock-alert {
  background-color: rgba(255, 255, 255, 0.1);
}
.rock-alert .alert-content-inner {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.rock-alert .alert-content-inner .alert-content {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rock-alert .alert-content-inner .alert-content .icon {
  width: 45px;
  height: 45px;
  display: inline-block;
  background-color: var(--td-primary);
  color: var(--td-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  flex: 0 0 auto;
  line-height: 40px;
  text-align: center;
}
.rock-alert .alert-content-inner .alert-content strong {
  font-size: 14px;
  font-weight: 500;
}
.rock-alert .alert-content-inner .alert-btn-groupe .site-btn {
  height: 34px;
  padding: 0 14px;
  font-size: 12px;
}

.alert.alert-table {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--td-white);
  font-size: 14px;
  padding: 14px;
}

.rock-alert-mobile {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid #FFA336;
  backdrop-filter: blur(22px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 7px 12px;
}
.rock-alert-mobile .alert-content-inner {
  display: inline-flex;
  align-items: center;
  gap: 2px 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.rock-alert-mobile .alert-content-inner .alert-content {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rock-alert-mobile .alert-content-inner .alert-content strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--td-white);
}

/*----------------------------------------*/
/*  2.12 Badge
/*----------------------------------------*/
.rock-badge {
  background: rgba(133, 255, 196, 0.1);
  border: 1px solid var(--td-success);
  border-radius: 100px;
  font-size: 12px;
  padding: 5px 10px 5px 25px;
  color: var(--td-success);
  position: relative;
  display: inline-flex;
}
.rock-badge:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  display: inline-block;
  background: var(--td-success);
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.rock-badge.warning {
  color: var(--td-warning);
  border-color: var(--td-warning);
  background: rgba(255, 163, 54, 0.1);
}
.rock-badge.warning::before {
  background-color: currentColor;
}
.rock-badge.danger {
  color: var(--td-danger);
  background: rgba(255, 62, 62, 0.1);
  border-color: var(--td-danger);
}
.rock-badge.danger::before {
  background-color: currentColor;
}
.rock-badge.white {
  color: var(--td-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--td-white);
  border-radius: 100px;
}
.rock-badge.white::before {
  background-color: currentColor;
}
.rock-badge.white-opacity {
  color: var(--td-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}
.rock-badge.candle-light {
  color: var(--td-candleLight);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--td-candleLight);
}
.rock-badge.candle-light::before {
  background-color: currentColor;
}
.rock-badge.badge-icon {
  padding: 5px 10px 5px 10px;
}
.rock-badge.badge-icon::before {
  display: none;
}

.td-badge {
  font-size: 14px;
  text-transform: capitalize;
  display: inline-block;
  padding: 6px 15px;
  color: var(--td-heading);
  line-height: 1;
  text-align: center;
  background-color: var(--td-white);
}
.td-badge.primary {
  background: var(--td-primary);
  color: var(--td-white);
}
.td-badge.warning {
  background: var(--td-tertiary);
  color: var(--td-white);
}
.td-badge.danger {
  color: var(--td-white);
  background: var(--td-bg-danger);
}
.td-badge.success {
  color: var(--td-white);
  background: var(--td-bg-success);
}
.td-badge.black {
  color: var(--td-white);
  background: var(--td-black);
}

/*---------------------------------
/*  Button styles
---------------------------------*/
.btn-wrap {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px 15px;
  flex-wrap: wrap;
}

.site-btn {
  height: 45px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 27px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  color: #000000;
  background: var(--td-white);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0px 0px 2px rgba(0, 48, 73, 0.4);
}
.site-btn.btn-xxxs {
  height: 24px;
  font-size: 12px !important;
  padding: 10px 10px !important;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.site-btn.btn-xxs {
  height: 38px;
  padding: 0 17px !important;
}
.site-btn.btn-xs {
  height: 58px;
}
.site-btn i {
  font-size: 20px;
}
.site-btn.secondary-btn {
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--td-tertiary), var(--td-primary), var(--td-primary), var(--td-tertiary));
  box-shadow: inset -4px 4px 10px rgba(255, 255, 255, 0.5), inset 4px -4px 10px rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  color: var(--td-white);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-position: 100% 100%;
  background-size: 300% 100%;
}
.site-btn.secondary-btn:hover {
  background-position: 0 100%;
}
.site-btn.secondary-btn.outline-btn {
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: none;
}
.site-btn.gradient-btn {
  font-size: 14px;
  font-weight: 800;
  color: var(--td-white);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(166deg, var(--td-primary) 0%, var(--td-tertiary) 100%);
  mix-blend-mode: normal;
  box-shadow: inset -4px 4px 10px rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  -o-border-radius: 1000px;
  -ms-border-radius: 1000px;
  border-radius: 1000px;
  padding: 0 25px;
}
.site-btn.outline-opcity-btn {
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  color: var(--td-white);
  gap: 8px;
}
.site-btn.transparent-btn {
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 48px;
  font-size: 14px;
  font-weight: 400;
  color: var(--td-white);
  height: 28px;
  padding: 0 15px !important;
}
.site-btn.radius-10 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.site-btn.radius-12 {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}
.site-btn.radius-20 {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

.text-btn {
  font-weight: 800;
  color: #576363;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 12px;
  color: var(--td-white);
}
.text-btn i {
  font-size: 18px;
}
.text-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: -3px;
  background-color: var(--td-white);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.text-btn:hover {
  color: var(--td-white);
}
.text-btn:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.rock-input-btn-wrap {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 10px;
}

.action-btn-wrap {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.rock-text-link-btn {
  font-size: 14px;
  color: var(--td-white);
  font-weight: 600;
  text-decoration: underline;
}
.rock-text-link-btn.primary {
  color: #FFA336;
}
.rock-text-link-btn.primary:hover {
  color: #FFA336;
}
.rock-text-link-btn:hover {
  color: var(--td-white);
}

.rock-shortcut-btn {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding: 0 10px;
  height: 80px;
  width: 100%;
  justify-content: center;
}
.rock-shortcut-btn .text {
  font-size: 14px;
  font-weight: 800;
}

.rock-shortcut-btn-wrap {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/*----------------------------------------*/
/*  Offcanvas
/*----------------------------------------*/
.offcanvas-area {
  background: #000000 none repeat scroll 0 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 340px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas-area ::-webkit-scrollbar {
  display: none;
}
@media (max-width: 480px) {
  .offcanvas-area {
    width: 100%;
  }
}
.offcanvas-area.info-open {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas-logo a img {
  width: 160px;
}
@media (max-width: 575px) {
  .offcanvas-logo a img {
    width: auto;
    height: 35px;
  }
}
@media (max-width: 575px) {
  .offcanvas-logo a img {
    width: auto;
    height: 35px;
  }
}

.offcanvas-content {
  padding-bottom: 45px;
}

.offcanva-wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
@media (max-width: 480px) {
  .offcanva-wrapper {
    padding: 30px 20px;
  }
}

.offcanvas-top {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
  color: var(--td-white);
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .offcanvas-title {
    font-size: 20px;
  }
}

.offcanvas-text p {
  margin-bottom: 25px;
}

.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000000;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
  transition: 0.3s;
}
.offcanvas-overlay.overlay-open {
  opacity: 0.6;
  visibility: visible;
}

.sidebar-toggle {
  cursor: pointer;
}

.offcanvas-contact-icon {
  margin-inline-end: 15px;
}

.offcanvas-btn {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
}

.offcanvas-close-icon {
  line-height: 1;
  color: var(--td-white);
  background: transparent;
}
.offcanvas-close-icon .offcanvas-m-lines {
  position: relative;
  display: block;
  height: 12px;
  width: 33px;
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--1 {
  top: 6px;
  transform: rotate(45deg);
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--3 {
  opacity: 0;
  opacity: 0;
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--2 {
  top: 6px;
  transform: rotate(-45deg);
}
.offcanvas-close-icon .offcanvas-m-line {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transition: top 0.15s ease, transform 0.3s ease;
}
.offcanvas-close-icon .offcanvas-m-line.line--1 {
  top: 0;
}
.offcanvas-close-icon .offcanvas-m-line.line--2 {
  top: 5px;
}
.offcanvas-close-icon .offcanvas-m-line.line--3 {
  bottom: 0;
  bottom: 0;
}
.offcanvas-close-icon .offcanvas-m-line:hover .offcanvas-m-line {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.offcanvas-close-icon .offcanvas-m-line:hover .offcanvas-m-line:nth-of-type(2) {
  animation-delay: 0.1s;
}

/*----------------------------------------*/
/* Section Title
/*----------------------------------------*/
.text-highlight {
  position: relative;
  padding: 0 10px;
  display: inline-block;
}
.text-highlight:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--td-primary) 0%, rgba(255, 205, 16, 0) 100%);
  opacity: 0.4;
  z-index: -1;
  top: 0;
  left: 0;
}

.subtitle-four {
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 7px 17px;
  color: var(--td-white);
  font-size: 12px;
  margin-bottom: 35px;
  display: inline-block;
}

.section-title-four {
  font-size: 40px;
  color: var(--td-white);
  letter-spacing: -3px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title-four {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-four {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-four {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .section-title-four {
    font-size: 24px;
    letter-spacing: -1px;
  }
}

/*----------------------------------------*/
/* Tab customize
/*----------------------------------------*/
.td-tab .nav-tabs {
  padding: 0;
  margin: 0;
  border: 0;
}
.td-tab .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*----------------------------------------
   Basic pagination
-----------------------------------------*/
.pagination-wrapper {
  margin-top: 20px;
}

.rock-pagination ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-pagination ul {
    justify-content: start;
  }
}
.rock-pagination ul li {
  list-style: none;
}
.rock-pagination ul li:first-child a, .rock-pagination ul li:last-child a {
  border-color: transparent;
}
.rock-pagination ul li a {
  width: 45px;
  height: 45px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 0;
  top: 50%;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}
.rock-pagination ul li a:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--td-white);
  border-color: rgba(255, 255, 255, 0.03);
}
.rock-pagination ul li a i {
  font-weight: 500;
}
.rock-pagination ul li .current {
  width: 45px;
  height: 45px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 0;
  top: 50%;
  font-weight: 500;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--td-white);
  border-color: rgba(255, 255, 255, 0.03);
}

/*----------------------------------------*/
/* Back to top
/*----------------------------------------*/
.backtotop-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background: var(--td-primary);
}
@media (max-width: 480px) {
  .backtotop-wrap {
    bottom: 20px;
    right: 20px;
  }
}
.backtotop-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.backtotop-wrap::after {
  position: absolute;
  font-family: var(--td-ff-fontawesome);
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  font-weight: 400;
  color: var(--td-white);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.backtotop-wrap svg path {
  fill: none;
}
.backtotop-wrap svg.backtotop-circle path {
  stroke: #ccc;
  stroke-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.backtotop-wrap.warning-backtotop {
  background-color: #FF8112;
}
.backtotop-wrap.rock {
  background: linear-gradient(135deg, var(--td-primary) 0%, var(--td-tertiary) 100%);
  box-shadow: inset -4px 4px 10px rgba(255, 255, 255, 0.5), inset 4px -4px 10px rgba(255, 255, 255, 0.5);
}

/*----------------------------------------*/
/*  forms scss
/*----------------------------------------*/
.rock-single-input .input-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--td-white);
}
.rock-single-input .input-field {
  position: relative;
}
.rock-single-input .input-field.disabled input[type=text],
.rock-single-input .input-field.disabled input[type=email],
.rock-single-input .input-field.disabled input[type=tel],
.rock-single-input .input-field.disabled input[type=number],
.rock-single-input .input-field.disabled input[type=password],
.rock-single-input .input-field.disabled input[type=date],
.rock-single-input .input-field.disabled textarea {
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}
.rock-single-input .input-field.disabled input[type=text]:focus,
.rock-single-input .input-field.disabled input[type=email]:focus,
.rock-single-input .input-field.disabled input[type=tel]:focus,
.rock-single-input .input-field.disabled input[type=number]:focus,
.rock-single-input .input-field.disabled input[type=password]:focus,
.rock-single-input .input-field.disabled input[type=date]:focus,
.rock-single-input .input-field.disabled textarea:focus {
  border-color: rgba(255, 255, 255, 0.08);
}
.rock-single-input .input-field input[type=text],
.rock-single-input .input-field input[type=email],
.rock-single-input .input-field input[type=tel],
.rock-single-input .input-field input[type=number],
.rock-single-input .input-field input[type=password],
.rock-single-input .input-field input[type=date],
.rock-single-input .input-field textarea {
  padding: 0px 15px 0 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  height: 45px;
  width: 100%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}
.rock-single-input .input-field input[type=text]:focus,
.rock-single-input .input-field input[type=email]:focus,
.rock-single-input .input-field input[type=tel]:focus,
.rock-single-input .input-field input[type=number]:focus,
.rock-single-input .input-field input[type=password]:focus,
.rock-single-input .input-field input[type=date]:focus,
.rock-single-input .input-field textarea:focus {
  border-color: var(--td-primary);
}
.rock-single-input .input-field textarea {
  padding: 12px 15px;
  height: 150px;
  resize: none;
}
.rock-single-input .input-field textarea:focus {
  border-color: var(--td-primary);
}
.rock-single-input .input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.rock-single-input .input-description {
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
  color: var(--td-seaweed);
}
.rock-single-input:not(:last-child) {
  margin-bottom: 20px;
}
.rock-single-input .rock-input-label {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--td-white);
}
.rock-single-input .rock-input-label span {
  padding-left: 4px;
}
.rock-single-input .input-field input {
  outline: none;
  height: 45px;
  width: 100%;
  font-size: 14px;
  color: var(--td-text-primary);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  color: var(--td-white);
}
.rock-single-input .input-field input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.3);
}
.rock-single-input .input-field input::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.3);
}
.rock-single-input .input-field input:-moz-placeholder { /* Firefox 4-18 */
  color: rgba(255, 255, 255, 0.3);
}
.rock-single-input .input-field input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: rgba(255, 255, 255, 0.3);
}
.rock-single-input .input-field input::placeholder { /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.3);
}
.rock-single-input .input-field input:focus {
  border-color: var(--td-primary);
}
.rock-single-input .input-field.input-group {
  flex-wrap: nowrap;
}
.rock-single-input .input-field .input-group-text {
  color: var(--td-white);
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  font-size: 14px;
  min-width: 65px;
  justify-content: center;
}
.rock-single-input .input-select .nice-select {
  height: 44px;
  width: 100%;
  padding: 0 15px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  float: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08);
}
.rock-single-input .input-select .nice-select .current {
  text-align: left;
  font-size: 14px;
  position: relative;
  color: var(--td-white);
}
.rock-single-input .input-select .nice-select .list {
  -webkit-transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  -o-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: 100%;
  padding: 10px 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  background: #242424;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  border-width: 1px;
  padding: 12px 12px 12px 12px;
  max-height: 300px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.rock-single-input .input-select .nice-select::after {
  font-size: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid var(--td-text-primary);
  border-right: 1.5px solid var(--td-text-primary);
  font-size: 16px;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border: 5px solid;
  border-top-color: rgba(0, 0, 0, 0);
  border-left-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  transition: all ease-in-out 0.2s;
  margin-top: -2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.rock-single-input .input-select .nice-select .option {
  font-size: 14px;
  line-height: 38px;
  min-height: 38px;
  color: var(--td-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 0 10px;
}
.rock-single-input .input-select .nice-select .option.selected {
  font-weight: 500;
}
.rock-single-input .input-select .nice-select .option:hover {
  background-color: #353535;
}
.rock-single-input .input-select .nice-select .option.selected.focus {
  background-color: #353535;
}
.rock-single-input .verification {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  max-width: 355px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.rock-single-input .verification input[type=text],
.rock-single-input .verification input[type=email],
.rock-single-input .verification input[type=tel],
.rock-single-input .verification input[type=number],
.rock-single-input .verification input[type=password],
.rock-single-input .verification input[type=date],
.rock-single-input .verification textarea {
  padding: 0px 15px 0 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  height: 50px;
  width: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--td-white);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.rock-single-input .verification input[type=text]:focus,
.rock-single-input .verification input[type=email]:focus,
.rock-single-input .verification input[type=tel]:focus,
.rock-single-input .verification input[type=number]:focus,
.rock-single-input .verification input[type=password]:focus,
.rock-single-input .verification input[type=date]:focus,
.rock-single-input .verification textarea:focus {
  border-color: var(--td-primary);
}

.rock-single-input.has-invalid .input-field input[type=text]:focus,
.rock-single-input.has-invalid .input-field input[type=email]:focus,
.rock-single-input.has-invalid .input-field input[type=tel]:focus,
.rock-single-input.has-invalid .input-field input[type=number]:focus,
.rock-single-input.has-invalid .input-field input[type=password]:focus,
.rock-single-input.has-invalid .input-field input[type=date]:focus,
.rock-single-input.has-invalid .input-field textarea:focus {
  border-color: var(--td-danger);
}
.rock-single-input.has-invalid .input-field textarea:focus {
  border-color: var(--td-danger);
}

.feedback-invalid {
  font-size: 14px;
  margin-top: 5px;
  color: var(--td-danger);
}

/*----------------------------------------
   Image Preview
-----------------------------------------*/
.rock-upload-input {
  position: relative;
}
.rock-upload-input .input-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--td-white);
}

.file-upload-wrap .top-content {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.file-upload-wrap .input-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #000000;
}

.upload-custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 155px;
  text-align: center;
  border-radius: 8px;
}
.upload-custom-file input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  overflow: hidden;
  opacity: 0;
}
.upload-custom-file label {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.4s;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  -ms-transition: -ms-transform 0.4s;
  -o-transition: -o-transform 0.4s;
  transition: transform 0.4s;
  background-color: rgba(0, 0, 0, 0.1);
}
.upload-custom-file label span {
  display: block;
  font-size: 14px;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -ms-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}
.upload-custom-file label span b {
  color: var(--td-primary);
  font-weight: 500;
  text-decoration: underline;
}
.upload-custom-file label .type-file-text {
  margin-top: 5px;
  color: var(--td-danger);
}
.upload-custom-file label .upload-icon {
  max-width: 35px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.upload-custom-file label.file-ok {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.upload-custom-file label.file-ok span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.3rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  margin: auto;
  text-decoration: none;
}
.upload-custom-file label.file-ok .upload-icon {
  display: none;
}
.upload-custom-file.without-image {
  height: 188px;
}
.upload-custom-file.without-image label {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 20px;
}

.upload-thumb-close {
  display: none;
  position: absolute;
  right: 10px;
  top: 45px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: none;
}

/*----------------------------------------*/
/*  Animations
/*----------------------------------------*/
@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(360deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*----------------------------------------*/
/*  Shortcodes
/*----------------------------------------*/
.text-body {
  color: var(--td-heading);
}

.text-white {
  color: var(--td-white);
}

.text-black {
  color: var(--td-black);
}

.text-primary {
  color: var(--td-primary);
}

.text-secondary {
  color: var(--td-secondary);
}

.text-quaternary {
  color: var(--td-tertiary);
}

.text-gradient-1 {
  background: linear-gradient(135deg, rgba(253, 216, 25, 0.5) 0%, rgba(248, 23, 23, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.radius-4 {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.radius-5 {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.radius-8 {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.radius-10 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.radius-20 {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

.radius-30 {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.radius-40 {
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -o-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
}

.radius-45 {
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -o-border-radius: 45px;
  -ms-border-radius: 45px;
  border-radius: 45px;
}

.radius-50 {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}

.radius-60 {
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -o-border-radius: 60px;
  -ms-border-radius: 60px;
  border-radius: 60px;
}

.title-font {
  font-family: var(--td-ff-title);
}

.fw-3 {
  font-weight: var(--td-fw-light);
}

.fw-4 {
  font-weight: var(--td-fw-regular);
}

.fw-5 {
  font-weight: var(--td-fw-medium);
}

.fw-6 {
  font-weight: var(--td-fw-sbold);
}

.fw-7 {
  font-weight: var(--td-fw-bold);
}

.fw-8 {
  font-weight: var(--td-fw-ebold);
}

.fw-9 {
  font-weight: var(--td-fw-black);
}

.gap--5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

@media (max-width: 575px) {
  .xs-w-100 {
    width: 100%;
  }
}

/*----------------------------------------*/
/*  Background Css
/*----------------------------------------*/
.white-bg {
  background-color: var(--td-white);
}

.black-bg {
  background-color: var(--td-black);
}

.theme-bg {
  background-color: var(--td-bg-primary);
}

.theme-bg-secondary {
  background-color: var(--td-bg-secondary);
}

.warning-bg {
  background-color: var(--td-tertiary);
}

.flash-white {
  background-color: var(--td-flash-white);
}

.bg-aliceBlue {
  background-color: var(--td-aliceBlue);
}

/*----------------------------------------*/
/*  Preloader scss
/*----------------------------------------*/
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #121212;
  z-index: 999;
}

.sk-three-bounce {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #121212;
}
.sk-three-bounce .sk-child {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--td-primary);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}
.sk-three-bounce.is-brick-red.sk-three-bounce .sk-child {
  background-color: var(--bd-theme-2);
}
.sk-three-bounce.is-mainly-blue.sk-three-bounce .sk-child {
  background-color: var(--bd-theme-3);
}
.sk-three-bounce.is-orange.sk-three-bounce .sk-child {
  background-color: var(--bd-theme-4);
}
.sk-three-bounce.is-purple.sk-three-bounce .sk-child {
  background-color: var(--bd-theme-5);
}
.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*----------------------------------------*/
/*  Colors
/*----------------------------------------*/
.white-text {
  color: var(--td-white) !important;
}

.black-text {
  color: var(--td-black);
}

.text-primary {
  color: var(--td-heading);
}

.theme-primary {
  color: var(--td-bg-primary);
}

.theme-secondary {
  color: var(--td-secondary);
}

.theme-text-primary {
  color: var(--td-text-secondary);
}

.theme-text-secondary {
  color: var(--td-text-secondary);
}

.theme-text-tertiary {
  color: var(--td-text-tertiary);
}

.warning-text {
  color: var(--td-warning);
}

.success-text {
  color: var(--td-success);
}

.danger-text {
  color: var(--td-danger);
}

.green-text {
  color: var(--td-green);
}

.magenta-text {
  color: var(--td-magenta);
}

.sidecar-text {
  color: var(--td-sidecar);
}

.pinkDiamond-text {
  color: var(--td-pinkDiamond);
}

.kissable-text {
  color: var(--td-kissable);
}

.kittensEye-text {
  color: var(--td-kittensEye);
}

.pureLaughter-text {
  color: var(--td-pureLaughter);
}

.gradient-text-1 {
  background: linear-gradient(135deg, rgb(253, 217, 136) 0%, rgb(250, 130, 111) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*----------------------------------------*/
/* referral scss
/*----------------------------------------*/
.rock-referral-tree-form {
  padding: 30px 24px 30px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .rock-referral-tree-form {
    padding: 16px 16px 16px;
  }
}

.rock-referral-tree-form .title {
  color: var(--td-white);
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .rock-referral-tree-form .title {
    font-size: 18px;
    text-transform: uppercase;
  }
}
@media (max-width: 480px) {
  .rock-referral-tree-form .title {
    font-size: 14px;
  }
}

.rock-referral-tree-form-grid .rock-single-input .input-field {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  gap: 20px;
  width: 100%;
}
@media (max-width: 480px) {
  .rock-referral-tree-form-grid .rock-single-input .input-field {
    flex-wrap: wrap;
  }
}
.rock-referral-tree-form-grid .rock-single-input .input-field input {
  color: var(--td-white);
}
.rock-referral-tree-form-grid .rock-single-input .input-field input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--td-white);
}
.rock-referral-tree-form-grid .rock-single-input .input-field input::-moz-placeholder { /* Firefox 19+ */
  color: var(--td-white);
}
.rock-referral-tree-form-grid .rock-single-input .input-field input:-moz-placeholder { /* Firefox 4-18 */
  color: var(--td-white);
}
.rock-referral-tree-form-grid .rock-single-input .input-field input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--td-white);
}
.rock-referral-tree-form-grid .rock-single-input .input-field input::placeholder { /* MODERN BROWSER */
  color: var(--td-white);
}
@media (max-width: 575px) {
  .rock-referral-tree-form-grid .rock-single-input .input-field .site-btn {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .rock-referral-tree-form-grid .rock-single-input .input-field .site-btn {
    width: 100%;
  }
}
.rock-referral-tree-form-grid .rock-single-input .description {
  font-size: 12px;
  margin-top: 10px;
  font-weight: 300;
  color: var(--td-white);
}

.rock-referral-tree-item {
  padding: 0 16px;
  position: relative;
}
@media (max-width: 575px) {
  .rock-referral-tree-item {
    padding: 0 8px;
  }
}

.rock-referral-tree-card-inner {
  position: relative;
}
.rock-referral-tree-card-inner::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background: rgba(255, 255, 255, 0.3);
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  z-index: 5;
}

.rock-referral-tree-card {
  padding: 10px 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4.69592px);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  min-width: 240px;
}
.rock-referral-tree-card::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.rock-referral-tree-card.tree-parent {
  background: linear-gradient(135deg, var(--td-secondary) 0%, var(--td-tertiary) 100%);
  box-shadow: inset -4px 4px 10px rgba(255, 255, 255, 0.5);
  min-width: max-content;
}
.rock-referral-tree-card.tree-parent::before {
  display: none;
}
.rock-referral-tree-card.tree-parent::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% - 3px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 5;
}
.rock-referral-tree-card .thumb {
  max-width: 30px;
}
.rock-referral-tree-card .content .title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: left;
}
.rock-referral-tree-card .content .info {
  font-size: 10px;
  font-weight: 300;
  color: var(--td-white);
  text-align: left;
}

.rock-referral-logs-tab.td-tab .nav-tabs {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 5px 0;
  margin-bottom: 24px;
}
.rock-referral-logs-tab.td-tab .nav-tabs .nav-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--td-white);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  mix-blend-mode: normal;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  -o-border-radius: 1000px;
  -ms-border-radius: 1000px;
  border-radius: 1000px;
  padding: 0 16px;
}
.rock-referral-logs-tab.td-tab .nav-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--td-primary) 0%, var(--td-tertiary) 100%);
  box-shadow: inset -4px 4px 10px rgba(255, 255, 255, 0.5);
}

.rock-referral-tree-wrapper {
  max-width: max-content;
  margin: 0 auto;
  margin-top: 15px;
}
@media screen and (max-width: 1920px) {
  .rock-referral-tree-wrapper {
    overflow-x: scroll;
    margin-top: 10px;
  }
}

.rock-referral-tree {
  min-width: 1000px;
  padding-bottom: 20px;
}
.rock-referral-tree ul {
  padding-top: 20px;
  position: relative;
  transition: all 0.5s;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.rock-referral-tree ul ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  width: 0;
  height: 20px;
}
.rock-referral-tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.rock-referral-tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.rock-referral-tree li:only-child {
  padding-top: 0;
}
.rock-referral-tree li:last-child::before {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 0px 0 0;
}
.rock-referral-tree li:first-child::after {
  border-radius: 0px 0 0 0;
}

.rock-referral-tree li::before,
.rock-referral-tree li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 50%;
  height: 20px;
}

.rock-referral-tree li:only-child::after,
.rock-referral-tree li:only-child::before {
  display: none;
}

.rock-referral-tree li:first-child::before,
.rock-referral-tree li:last-child::after {
  border: 0 none;
}

/*----------------------------------------*/
/* Supports Tickets
/*----------------------------------------*/
.rock-support-tickets-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 24px 24px;
}
@media (max-width: 575px) {
  .rock-support-tickets-wrapper {
    padding: 0;
    border: none;
    border-radius: 0;
  }
}

.rock-support-tickets-grid {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 575px) {
  .rock-support-tickets-grid {
    gap: 40px;
  }
}
.rock-support-tickets-grid .rock-support-tickets-item {
  width: calc(50% - 34px);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-support-tickets-grid .rock-support-tickets-item {
    width: calc(80% - 34px);
  }
}
@media (max-width: 480px) {
  .rock-support-tickets-grid .rock-support-tickets-item {
    width: calc(100% - 34px);
  }
}
.rock-support-tickets-grid .rock-support-tickets-item.right-item {
  margin-left: auto;
}
.rock-support-tickets-grid .rock-support-tickets-item.right-item .rock-support-tickets-aviator {
  justify-content: end;
}

.rock-support-tickets-aviator {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.rock-support-tickets-aviator .thumb {
  width: 32px;
}
.rock-support-tickets-aviator .contents .title {
  font-size: 14px;
  color: var(--td-white);
  font-weight: 700;
  line-height: 1;
}
.rock-support-tickets-aviator .contents .info {
  font-size: 11px;
}

.rock-support-tickets-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 24px 24px;
}
@media (max-width: 480px) {
  .rock-support-tickets-card {
    padding: 16px 16px;
  }
}
.rock-support-tickets-card .rock-support-tickets-content > .description {
  font-size: 14px;
  color: var(--td-white);
}
.rock-support-tickets-card .rock-support-tickets-attachments {
  margin-top: 35px;
}
.rock-support-tickets-card .rock-support-tickets-attachments .content .title {
  background: linear-gradient(135deg, var(--td-secondary) 0%, var(--td-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 14px;
  margin-bottom: 10px;
}
.rock-support-tickets-card .rock-support-tickets-attachments .content .description {
  color: var(--td-white);
}

.rock-support-tickets-input-wrapper {
  margin-top: 225px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .rock-support-tickets-input-wrapper {
    margin-top: 150px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-support-tickets-input-wrapper {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-support-tickets-input-wrapper {
    margin-top: 80px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-support-tickets-input-wrapper {
    margin-top: 50px;
  }
}

.rock-support-tickets-input {
  position: relative;
}
.rock-support-tickets-input input {
  padding: 0px 370px 0 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  height: 76px;
  width: 100%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}
.rock-support-tickets-input input:focus {
  border-color: var(--td-primary);
}
@media (max-width: 575px) {
  .rock-support-tickets-input input {
    padding: 0px 160px 0 15px;
  }
}
@media (max-width: 480px) {
  .rock-support-tickets-input input {
    padding: 0px 15px 0 15px;
    height: 55px;
  }
}
.rock-support-tickets-input .button-inner {
  position: absolute;
  top: 50%;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  right: 15px;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .rock-support-tickets-input .button-inner {
    position: inherit;
    top: inherit;
    right: inherit;
    transform: inherit;
    margin-top: 20px;
  }
  .rock-support-tickets-input .button-inner .site-btn {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .rock-support-tickets-input .button-inner .button-attachments {
    display: none;
  }
}
.rock-support-tickets-input .button-inner .button-attachments span {
  font-size: 14px;
}

/*----------------------------------------*/
/* Profile Setting
/*----------------------------------------*/
.rock-profile-avater {
  margin-bottom: 25px;
}
.rock-profile-avater .thumb-wrapper {
  position: relative;
  width: max-content;
}
.rock-profile-avater .thumb-wrapper .thumb {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 152px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  z-index: 0;
}
.rock-profile-avater .thumb-wrapper .thumb img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.rock-profile-avater .thumb-wrapper .thumb::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  padding: 10px;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  z-index: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.rock-profile-avater .thumb-wrapper .edit-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rock-profile-avater .title {
  margin-bottom: 20px;
  color: var(--td-white);
  font-size: 16px;
}

.rock-profile-security-content .description {
  font-size: 14px;
  color: var(--td-white);
}
.rock-profile-security-content .description:not(:last-child) {
  margin-bottom: 20px;
}

.rock-profile-security-input {
  margin-top: 65px;
}

/*----------------------------------------*/
/* transactions
/*----------------------------------------*/
.common-table-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) auto;
  width: 100%;
  gap: 15px;
  margin-bottom: 24px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .common-table-form-grid {
    grid-template-columns: 1fr;
  }
}
.common-table-form-grid .rock-single-input {
  margin-bottom: 0 !important;
}
.common-table-form-grid .input-field {
  position: relative;
}
.common-table-form-grid .input-field input {
  outline: none;
  background-color: transparent;
  height: 45px;
  width: 100%;
  font-size: 14px;
  border: none;
  border: 1px solid rgba(173, 171, 168, 0.6);
  color: var(--td-text-primary);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 0 48px 0px 15px;
}
.common-table-form-grid .input-field input:focus {
  border-color: var(--td-primary);
}
.common-table-form-grid .input-field .input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.common-table-form-grid .site-btn {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  border: 0;
}

.datepicker-picker {
  background-color: #373746;
}

.datepicker-controls {
  gap: 5px;
}
.datepicker-controls .btn {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.03);
  color: var(--td-white);
}

/*----------------------------------------*/
/* Add Money
/*----------------------------------------*/
.rock-add-mony-wrapper .rock-input-btn-wrap {
  margin-top: 60px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-add-mony-wrapper .rock-input-btn-wrap {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .rock-add-mony-wrapper .rock-input-btn-wrap {
    flex-direction: column;
  }
}

.rock-add-mony-details > .title {
  color: var(--td-white);
  margin-bottom: 20px;
  font-size: 16px;
}
@media (max-width: 575px) {
  .rock-add-mony-details > .title {
    font-size: 14px;
    text-transform: uppercase;
  }
}

.rock-add-mony-list {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.rock-add-mony-list ul li {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px 5px;
  justify-content: space-between;
  padding: 21px 30px;
  list-style: none;
}
.rock-add-mony-list ul li:not(:last-child) {
  border: 1px dashed rgba(255, 255, 255, 0.1);
}
@media (max-width: 480px) {
  .rock-add-mony-list ul li {
    padding: 15px 15px;
  }
}
.rock-add-mony-list ul li .title,
.rock-add-mony-list ul li .info {
  font-size: 14px;
  font-weight: 700;
  color: var(--td-white);
}

/*----------------------------------------*/
/* site table
/*----------------------------------------*/
.sort-icon > span {
  position: relative;
}
.sort-icon > span:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/icons/arrow-sort-up.png) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 7px);
}
.sort-icon > span::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/icons/arrow-sort-down.png) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 17px);
  opacity: 40%;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-custom-table {
    min-width: 1100px;
  }
}
.rock-custom-table .contents {
  display: table;
  width: 100%;
}
.rock-custom-table .contents .site-table-head .site-table-col {
  padding: 16px 0px;
  font-size: 12px !important;
  font-weight: 400;
  color: var(--td-white);
  background: rgba(143, 148, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rock-custom-table .contents .site-table-head .site-table-col:first-child {
  padding-left: 20px;
  border-start-start-radius: 20px;
  border-end-start-radius: 20px;
}
.rock-custom-table .contents .site-table-head .site-table-col:last-child {
  border-end-end-radius: 20px;
  border-top-right-radius: 20px;
  padding-right: 20px;
}
.rock-custom-table .contents .site-table-list {
  display: table-row;
}
.rock-custom-table .contents .site-table-list .site-table-col {
  position: relative;
  display: table-cell;
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
  padding: 15px 0.5rem 14px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rock-custom-table .contents .site-table-list .site-table-col .description {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 11px;
}
.rock-custom-table .contents .site-table-list .site-table-col .description .content .title {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
}
.rock-custom-table .contents .site-table-list .site-table-col .description .content .title a:hover {
  color: var(--td-primary);
}
.rock-custom-table .contents .site-table-list .site-table-col .description .content .description {
  font-size: 11px;
  margin-bottom: 0;
}
.rock-custom-table .contents .site-table-list .site-table-col .action {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.rock-custom-table .contents .site-table-list .site-table-col .action span {
  margin-left: 5px;
}
.rock-custom-table .contents .site-table-list:last-child .site-table-col {
  border-bottom: 0;
}

.rock-filter-table-form {
  display: grid;
  grid-template-columns: 395px auto;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-filter-table-form {
    grid-template-columns: 50% auto;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-filter-table-form {
    grid-template-columns: 1fr;
  }
}
.rock-filter-table-form .rock-single-input {
  margin-bottom: 0 !important;
}

.filter-length {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-length > span {
  font-size: 14px;
  font-weight: 700;
  color: var(--td-white);
}
.filter-length .nice-select {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  float: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08);
}
.filter-length .nice-select .current {
  text-align: left;
  font-size: 14px;
  position: relative;
  color: var(--td-white);
}
.filter-length .nice-select .list {
  transform-origin: center center;
  -webkit-transform: scale(1) translateY(0px);
  -moz-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  -o-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
  width: 100%;
  padding: 10px 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  background-color: rgb(16, 16, 16);
}
.filter-length .nice-select::after {
  font-size: 16px;
  right: 16px;
  width: 6px;
  height: 6px;
  border-bottom: 1.5px solid var(--td-text-primary);
  border-right: 1.5px solid var(--td-text-primary);
  font-size: 16px;
  content: "";
  position: absolute;
  top: 50%;
  border-color: var(--td-white);
}
.filter-length .nice-select .option {
  font-size: 14px;
  line-height: 35px;
  min-height: 35px;
  color: white;
}
.filter-length .nice-select .option.selected {
  font-weight: 500;
}
.filter-length .nice-select.open, .filter-length .nice-select:focus {
  border-color: var(--td-primary);
}
.filter-length .nice-select .option:hover {
  background-color: #222123;
}
.filter-length .nice-select .option.focus {
  background-color: #222123;
}
.filter-length .nice-select .option.selected.focus {
  background-color: #222123;
}

.rock-schema-logs-table {
  overflow-x: auto;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1600px) and (max-width: 1800px) {
  .rock-schema-logs-table .rock-custom-table {
    min-width: 1400px;
  }
}

.transactions-description {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.transactions-description .content .title {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
}
.transactions-description .content .description {
  font-size: 12px;
}

.rock-recent-transactions-table {
  overflow-x: auto;
}

.rock-withdraw-account-table .rock-custom-table {
  min-width: inherit;
}

.rock-withdraw-account-table .rock-custom-table .contents .site-table-head .site-table-col:last-child {
  text-align: end;
}
.rock-withdraw-account-table .rock-custom-table .contents .site-table-list .site-table-col:last-child {
  text-align: end;
}

.account-description {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 11px;
}
.account-description .content .title {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  color: var(--td-white);
}
.account-description .content .description {
  font-size: 11px;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .schema-preview-table .rock-custom-table,
  .rock-support-tickets-list-table .rock-custom-table {
    min-width: 500px;
  }
}

.rock-all-notifications-table {
  overflow-x: auto;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-all-notifications-table .rock-custom-table {
    min-width: 850px;
  }
}

/*----------------------------------------*/
/* rock dashboard card
/*----------------------------------------*/
.rock-dashboard-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .rock-dashboard-card {
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  }
}
@media (max-width: 480px) {
  .rock-dashboard-card {
    padding: 16px;
  }
}
.rock-dashboard-card.hiden-card {
  border: none;
  background: transparent;
  backdrop-filter: none;
  padding: unset;
}
.rock-dashboard-card.hiden-card .rock-dashboard-tile {
  text-transform: uppercase;
}

.rock-dashboard-title-inner {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 20px 10px;
}
@media (max-width: 575px) {
  .rock-dashboard-title-inner {
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }
}
.rock-dashboard-title-inner .description {
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .rock-dashboard-title-inner .description {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .rock-dashboard-title-inner .site-btn.gradient-btn {
    height: 32px;
    font-size: 12px;
    padding: 0px 14px;
    border-radius: 30px !important;
  }
}

.rock-dashboard-tile {
  font-size: 18px;
  color: var(--td-white);
}
@media (max-width: 575px) {
  .rock-dashboard-tile {
    font-size: 16px;
  }
}

.single-progress .progress {
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px rgba(255, 255, 255, 0.08);
  border-radius: 172px;
}
.single-progress .progress .progress-bar {
  background: linear-gradient(135deg, rgb(253, 216, 25) 0%, rgb(248, 23, 23) 100%);
  border-radius: 4.5px;
  opacity: 0.6;
  box-shadow: inset 4px -4px 10px 0px rgba(255, 255, 255, 0.1);
}

.timeline-grid {
  display: grid;
  grid-template-columns: auto 172px auto;
  align-items: center;
  gap: 8px;
  width: max-content;
}

/*----------------------------------------*/
/* rock Dashboard css
/*----------------------------------------*/
.rock-page-header {
  max-width: 100vw;
  position: absolute;
  top: 0;
  z-index: 9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 290px;
  width: calc(100% - 290px);
}
@media (max-width: 575px) {
  .rock-page-header {
    margin-left: 0;
    width: 100%;
  }
}
.rock-page-header.dashboard-sticky {
  position: fixed;
  animation: sticky 0.3s;
  -webkit-animation: sticky 0.3s;
  top: 0;
  width: -webkit-fill-available;
  background: #131314;
}

.rock-dashboard-header {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  min-height: 69px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
  .rock-dashboard-header {
    padding: 15px 15px;
    background: rgba(25, 26, 32, 0.2);
    backdrop-filter: blur(16px);
    min-height: 65px;
  }
}
.rock-dashboard-header .header-left-content .content-inner {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 480px) {
  .rock-dashboard-header .header-left-content .content-inner {
    gap: 12px;
  }
}
.rock-dashboard-header .header-left-content .content-inner .current-status .title {
  font-size: 20px;
  color: var(--td-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-dashboard-header .header-left-content .content-inner .current-status .title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .rock-dashboard-header .header-left-content .content-inner .current-status .title {
    font-size: 14px;
  }
}
.rock-dashboard-header .header-right-content {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.rock-dashboard-header .header-right-content .btn-wrap {
  margin-right: 25px;
}
@media (max-width: 575px) {
  .rock-dashboard-header .header-right-content .btn-wrap {
    margin-right: 10px;
  }
}
.rock-dashboard-header .header-right-content .btn-wrap .site-btn {
  padding: 0 20px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  font-size: 12px;
}
@media (max-width: 480px) {
  .rock-dashboard-header .header-right-content .btn-wrap .site-btn {
    padding: 0 10px;
  }
}
.rock-dashboard-header .header-right-content .btn-wrap .site-btn i {
  font-size: 14px;
}
.rock-dashboard-header .header-right-content .user-action > ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 480px) {
  .rock-dashboard-header .header-right-content .user-action > ul {
    gap: 10px;
  }
}
.rock-dashboard-header .header-right-content .user-action > ul li {
  list-style: none;
}
.rock-dashboard-header .header-right-content .user-action > ul li .notification-box {
  position: relative;
}
.rock-dashboard-header .header-right-content .user-action > ul li .notification-box .icon {
  position: relative;
  font-size: 20px;
  top: 2px;
}
.rock-dashboard-header .header-right-content .user-head-drop-btn {
  margin-left: 12px;
  width: 32px;
  height: 32px;
  display: block;
}
@media (max-width: 575px) {
  .rock-dashboard-header .header-right-content .user-head-drop-btn {
    margin-left: 10px;
  }
}
@media (max-width: 480px) {
  .rock-dashboard-header .header-right-content .user-head-drop-btn {
    margin-left: 8px;
    width: 28px;
    height: 28px;
  }
}
.rock-dashboard-header .header-right-content .user-head-drop-btn::after {
  display: none;
}
.rock-dashboard-header .header-right-content .user-head-drop-btn img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.rock-dashboard-header .header-right-content .language-box .header-lang-item ul {
  top: 120%;
  padding: 7px 12px 7px 12px;
  width: 105px;
  box-sizing: border-box;
  background: #242424;
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(50px);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.rock-dashboard-header .header-right-content .language-box .header-lang-item ul li:not(:last-child) {
  margin-bottom: 2px;
}
.rock-dashboard-header .header-right-content .language-box .header-lang-item ul li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.rock-dashboard-header .header-right-content .language-box .header-lang-item ul li a.active {
  color: var(--td-white);
}
.rock-dashboard-header .header-right-content .language-box .header-lang-item ul li a:hover {
  color: var(--td-white);
}
.rock-dashboard-header .header-right-content .language-box .header-lang-item > span {
  color: var(--td-text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 5px 10px 5px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--td-white);
}
@media (max-width: 480px) {
  .rock-dashboard-header .header-right-content .language-box .header-lang-item > span {
    padding: 3px 4px 3px 8px;
  }
}
.rock-dashboard-header .header-right-content .light-icon,
.rock-dashboard-header .header-right-content .dark-icon {
  cursor: pointer;
}

.notifications-box .notifications-drop-btn::after {
  display: none;
}
.notifications-box .dropdown-menu {
  background: #101016;
  backdrop-filter: blur(50px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  width: 442px;
  top: 150% !important;
  padding: 24px 24px 24px;
  border: 0;
  right: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .notifications-box .dropdown-menu {
    transform: translateX(35%);
  }
}
@media (max-width: 480px) {
  .notifications-box .dropdown-menu {
    transform: translateX(45%);
  }
}
@media (max-width: 480px) {
  .notifications-box .dropdown-menu {
    width: 350px;
    padding: 15px 15px;
  }
}
@media (max-width: 360px) {
  .notifications-box .dropdown-menu {
    width: 300px;
    padding: 15px 15px;
    right: -15px;
  }
}
.notifications-box .dropdown-menu:before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.notifications-box .notifications-top-content {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}
@media (max-width: 480px) {
  .notifications-box .notifications-top-content {
    margin-bottom: 17px;
  }
}
.notifications-box .notifications-top-content .title {
  color: var(--td-white);
  font-size: 16px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .notifications-box .notifications-top-content .title {
    font-size: 14px;
  }
}
.notifications-box .notifications-top-content .link {
  color: var(--td-white);
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .notifications-box .notifications-top-content .link {
    font-size: 12px;
  }
}
.notifications-box .notifications-top-content .link:hover {
  color: var(--td-primary);
}
.notifications-box .notifications-info-wrapper {
  height: 280px;
  overflow-y: scroll;
  scrollbar-width: thin;
  padding-right: 5px;
}
.notifications-box .notifications-info-list ul li {
  list-style: none;
}
.notifications-box .notifications-info-list ul li .list-item {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 10px 10px;
}
.notifications-box .notifications-info-list ul li .list-item .content .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--td-white);
}
@media (max-width: 480px) {
  .notifications-box .notifications-info-list ul li .list-item .content .title {
    font-size: 12px;
  }
}
.notifications-box .notifications-info-list ul li .list-item .content .info {
  font-size: 11px;
  color: var(--td-white);
}
.notifications-box .notifications-info-list ul li .list-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.notifications-box .notifications-info-list ul li:not(:last-child) {
  margin-bottom: 6px;
}
.notifications-box .notifications-bottom-content {
  margin-top: 24px;
}
@media (max-width: 480px) {
  .notifications-box .notifications-bottom-content {
    margin-top: 14px;
  }
}
.notifications-box .notifications-bottom-content .notifications-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  color: var(--td-white);
  font-size: 14px;
  font-weight: 800;
}

.user-profile-drop .dropdown-menu {
  background: #242424;
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 12px 12px;
  width: 224px;
  top: 10px !important;
}
.user-profile-drop .dropdown-menu .user-logout .user-logout-btn {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 23, 23, 0.08);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 8px 8px;
  color: var(--td-white);
  font-size: 14px;
  font-weight: 500;
  color: #F81717;
}
.user-profile-drop .dropdown-info-list ul li {
  margin-bottom: 5px;
  list-style: none;
}
.user-profile-drop .dropdown-info-list ul li a .content {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--td-white);
}
@media (max-width: 480px) {
  .user-profile-drop .dropdown-info-list ul li a .content {
    padding: 6px 8px;
    font-size: 12px;
  }
}
.user-profile-drop .dropdown-info-list ul li a:hover .content {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--td-white);
}

.rock-sidebar-wrapper {
  background: rgba(25, 26, 32, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  z-index: 9;
  width: 290px;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100vh;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-sidebar-wrapper {
    background-color: #242424;
  }
}
@media (max-width: 575px) {
  .rock-sidebar-wrapper {
    display: none;
  }
}

.rock-page-header.close_icon {
  margin-left: 0;
  width: 100%;
}

.rock-sidebar-wrapper.close_icon {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: -290px;
}

.page-wrapper.compact-wrapper .rock-page-body-wrapper div.rock-sidebar-wrapper.close_icon ~ .rock-page-body {
  margin-left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-page-body-wrapper .rock-page-body {
    margin-left: 0 !important;
  }
}

.rock-sidebar-wrapper .back-btn {
  display: none;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .page-wrapper.compact-wrapper .rock-page-body-wrapper .back-btn {
    display: inline-block;
    top: 50%;
    right: 0;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--td-white);
    color: var(--td-text-primary);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
}
.bg-overlay.active {
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 8;
  top: 0;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .page-wrapper.compact-wrapper .rock-page-header {
    margin-left: 0;
    width: 100%;
  }
}

.user-sidebar {
  overflow-y: scroll;
  transition: 0.1s;
  height: calc(100% - 70px);
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.user-sidebar.nav-unfolded {
  left: 0;
  z-index: 2;
}
.user-sidebar::-webkit-scrollbar {
  width: 0px;
}
.user-sidebar::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: rgba(0, 48, 73, 0.3);
}
.user-sidebar::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: rgba(0, 18, 25, 0.3);
}
.user-sidebar .site-logo {
  padding-left: 20px;
  border-bottom: 1px solid rgba(var(--td-black), 0.06);
  height: 70px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: fixed;
  width: 290px;
  z-index: 10;
  background: #131314;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.user-sidebar .site-logo .logo {
  color: #000000;
}
.user-sidebar .site-logo .logo img {
  height: 30px;
}
.user-sidebar .user-nav {
  padding: 12px;
  position: relative;
  top: 70px;
}
.user-sidebar .user-nav ul li {
  margin-bottom: 5px;
  display: block;
}
.user-sidebar .user-nav ul li:last-child {
  margin-bottom: 0;
}
.user-sidebar .user-nav ul li.separator {
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  padding-bottom: 20px;
  width: 100%;
}
.user-sidebar .user-nav ul li a {
  padding: 0px 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 48px;
  position: relative;
  gap: 8px;
}
.user-sidebar .user-nav ul li a i {
  font-size: 24px;
  margin-right: 9px;
  position: relative;
}
.user-sidebar .user-nav ul li a span {
  color: var(--td-white);
}
.user-sidebar .user-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.user-sidebar .user-nav ul li.active {
  position: relative;
}
.user-sidebar .user-nav ul li.active:before {
  position: absolute;
  content: "";
  height: calc(100% - 10px);
  width: 6px;
  background: linear-gradient(135deg, rgb(253, 216, 25) 0%, rgb(248, 23, 23) 100%);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  left: calc(100% + 6px);
  top: calc(50% + 2px);
  transform: translateY(-50%);
  z-index: -1;
  -webkit-border-radius: 12px 0px 0 12px;
  -moz-border-radius: 12px 0px 0 12px;
  -o-border-radius: 12px 0px 0 12px;
  -ms-border-radius: 12px 0px 0 12px;
  border-radius: 12px 0px 0 12px;
}
.user-sidebar .user-nav ul li.active a {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--td-primary) 0%, var(--td-tertiary) 100%);
  box-shadow: inset -4px 4px 10px rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  color: var(--td-white);
}
.user-sidebar .user-nav ul li.active a span, .user-sidebar .user-nav ul li.active a svg* {
  color: var(--td-white);
  fill: var(--td-white);
}
.user-sidebar .user-nav ul li.logout a {
  color: var(--td-danger);
  background: rgba(var(--td-danger), 0.1);
}
.user-sidebar .user-nav ul li.logout a:hover {
  background: var(--td-danger);
  color: var(--td-white);
}
.user-sidebar .user-nav ul li.logout a:hover span {
  color: var(--td-white);
}

.sidebar-inner {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.rock-sidebar-logout {
  padding: 45px 20px 35px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .rock-sidebar-logout {
    padding: 35px 20px;
  }
}
.rock-sidebar-logout .submit {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--td-white);
  font-weight: 600;
  font-size: 14px;
  width: 100%;
  height: 46px;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  justify-content: center;
}

.rock-page-body {
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  margin-left: 290px;
  padding: 40px 21px 40px 21px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-page-body {
    padding: 30px 15px 30px 15px;
  }
}
@media (max-width: 575px) {
  .rock-page-body {
    padding: 15px 0px 110px 0px;
    min-height: calc(100vh - 65px);
    margin-top: 65px;
  }
}
@media (max-width: 575px) and (max-width: 480px) {
  .rock-page-body {
    padding: 15px 0px 90px 0px;
  }
}

/*----------------------------------------*/
/* Body content
/*----------------------------------------*/
.rock-dashboard-level-area {
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .rock-dashboard-level-area {
    margin-bottom: 16px;
  }
}

.rock-dashboard-level-wrapper {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-dashboard-level-wrapper {
    flex-direction: column;
  }
}

.rock-dashboard-level-contents {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 12px 20px;
  min-width: 454px;
  border-radius: 120px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .rock-dashboard-level-contents {
    min-width: 454px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-dashboard-level-contents {
    min-width: inherit;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-dashboard-level-contents {
    min-width: 100%;
  }
}
@media (max-width: 575px) {
  .rock-dashboard-level-contents {
    padding: 0;
    border: 0;
    flex-direction: row-reverse;
    justify-content: space-between;
    min-width: 100%;
  }
}
.rock-dashboard-level-contents .thumb {
  flex: 0 0 auto;
}
@media (max-width: 575px) {
  .rock-dashboard-level-contents .thumb {
    height: 64px;
    width: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 0.755507px solid rgba(255, 255, 255, 0.1);
  }
}
.rock-dashboard-level-contents .thumb img {
  filter: drop-shadow(0px 4px 24px #FFE793);
}
@media (max-width: 575px) {
  .rock-dashboard-level-contents .thumb img {
    width: 30px;
  }
}
.rock-dashboard-level-contents .content .lavel {
  font-size: 20px;
  font-weight: 500;
  color: var(--td-white);
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-dashboard-level-contents .content .lavel {
    font-size: 18px;
  }
}
.rock-dashboard-level-contents .content .lavel-title {
  font-size: 20px;
  color: var(--td-primary);
  font-weight: 800;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-dashboard-level-contents .content .lavel-title {
    font-size: 18px;
  }
}

.rock-dashboard-referral {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rock-dashboard-referral .contents .link-title {
  font-size: 18px;
  color: var(--td-white);
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-dashboard-referral .contents .link-title {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .rock-dashboard-referral .contents .link-title {
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
  }
}
.rock-dashboard-referral .contents .referral-link {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 0 87px;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-dashboard-referral .contents .referral-link {
    gap: 20px;
  }
}
.rock-dashboard-referral .contents .referral-link .referral-url-copy {
  margin-bottom: 0;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
}
.rock-dashboard-referral .contents .referral-link .copy-message {
  position: absolute;
  font-size: 12px;
  top: -30px;
  right: 0;
  background-color: #4CAF50;
  color: var(--td-white);
  padding: 4px 8px 3px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rock-dashboard-grid {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: start;
  gap: 15px 12px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-dashboard-grid {
    flex-direction: column;
  }
}

.rock-account-card-wrapper {
  background: rgba(143, 148, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 30px;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  min-width: 454px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-account-card-wrapper {
    min-width: 350px;
    padding: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rock-account-card-wrapper {
    padding: 20px;
    min-width: 384px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rock-account-card-wrapper {
    width: 100%;
    min-width: inherit;
  }
}
@media (max-width: 480px) {
  .rock-account-card-wrapper {
    padding: 20px;
  }
}
.rock-account-card-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(139.9deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.rock-account-card-wrapper > .title {
  font-size: 24px;
  color: var(--td-white);
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .rock-account-card-wrapper > .title {
    font-size: 20px;
  }
}
.rock-account-card-wrapper .rock-account-btn {
  margin-top: 30px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.rock-account-card-wrapper .rock-account-btn .site-btn {
  padding: 0 35px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 480px) {
  .rock-account-card-wrapper .rock-account-btn .site-btn {
    padding: 0 20px;
  }
}

.rock-account-card-main .rock-account-card {
  padding: 26px 25px;
  background: linear-gradient(111.65deg, #FFCB11 0.97%, #FFD84E 100%);
  box-shadow: 0px -4px 14px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  margin-top: 60px;
}
@media (max-width: 575px) {
  .rock-account-card-main .rock-account-card {
    margin-top: auto;
    margin-bottom: 40px;
  }
}
.rock-account-card-main .rock-account-card::before, .rock-account-card-main .rock-account-card::after {
  position: absolute;
  content: "";
  height: 100%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  z-index: -1;
  left: 50%;
  height: 100%;
  transform: translate(-50%);
}
.rock-account-card-main .rock-account-card:before {
  width: calc(100% - 34px);
  background: #FF921C;
  z-index: -1;
  top: -18px;
}
@media (max-width: 575px) {
  .rock-account-card-main .rock-account-card:before {
    bottom: -10px;
    top: auto;
  }
}
.rock-account-card-main .rock-account-card::after {
  width: calc(100% - 70px);
  background: rgba(255, 146, 28, 0.6);
  z-index: -1;
  top: -30px;
}
@media (max-width: 575px) {
  .rock-account-card-main .rock-account-card::after {
    bottom: -20px;
    top: auto;
  }
}
.rock-account-card-main .rock-account-card .content-inner {
  position: relative;
  z-index: 5;
}
.rock-account-card-main .rock-account-card .content-inner .card-content:not(:last-child) {
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 14px;
}
.rock-account-card-main .rock-account-card .content-inner .card-content .title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .rock-account-card-main .rock-account-card .content-inner .card-content .title {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.rock-account-card-main .rock-account-card .content-inner .info-text {
  display: inline-block;
  font-size: 16px;
}
.rock-account-card-main .rock-account-card .card-shape {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  right: 0px;
}
.rock-account-card-main .rock-account-card .card-shape img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rock-account-card-main .account-bg-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.1;
}

.rock-single-card-grid {
  width: 100%;
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .rock-single-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .rock-single-card-grid {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
  }
}

.rock-single-card {
  background: #EFFFC0;
  mix-blend-mode: normal;
  border: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 15px 20px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-single-card {
    padding: 15px 15px;
  }
}
@media (max-width: 575px) {
  .rock-single-card {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    padding: 14px 14px 12px;
  }
}
.rock-single-card .icon {
  text-align: end;
}
.rock-single-card .icon span {
  width: 42px;
  height: 42px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.08);
  justify-content: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}
.rock-single-card .content .title {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: -2px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-single-card .content .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rock-single-card .content .title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .rock-single-card .content .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1px;
  }
}
.rock-single-card .content .title span {
  margin-right: 5px;
}
.rock-single-card .content .description {
  color: var(--td-black);
  font-size: 14px;
  font-weight: 500;
}
.rock-single-card:nth-child(2) {
  background-color: #E1EDFF;
}
.rock-single-card:nth-child(3) {
  background-color: #FFF9D0;
}
.rock-single-card:nth-child(4) {
  background-color: #F6F5F2;
}
.rock-single-card:nth-child(5) {
  background-color: #F2F8FF;
}
.rock-single-card:nth-child(6) {
  background-color: #F2F8FF;
}
.rock-single-card:nth-child(7) {
  background-color: #EEFFEE;
}
.rock-single-card:nth-child(8) {
  background-color: #FED9CD;
}
.rock-single-card:nth-child(9) {
  background-color: #C9D1FF;
}
.rock-single-card:nth-child(10) {
  background-color: #F2FEFD;
}
.rock-single-card:nth-child(11) {
  background-color: #FEF4F2;
}
.rock-single-card:nth-child(12) {
  background-color: #FCFFD9;
}

.rock-bottom-appbar {
  padding: 0px 25px;
  height: 100px;
  position: fixed;
  bottom: 0;
  right: 15px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border-radius: 12px 12px 0px 0px;
  z-index: 99;
  width: 100%;
  left: 0;
}
@media (max-width: 480px) {
  .rock-bottom-appbar {
    padding: 0px 12px;
    height: 80px;
  }
}
.rock-bottom-appbar ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: center;
}
.rock-bottom-appbar ul li {
  list-style: none;
}
.rock-bottom-appbar ul li.active a .text {
  color: var(--td-white);
}
.rock-bottom-appbar ul li a {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.rock-bottom-appbar ul li a .text {
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .rock-bottom-appbar ul li a .text {
    font-size: 10px;
  }
}

.rock-mobile-screen-show {
  display: none;
}

@media (max-width: 575px) {
  .rock-desktop-screen-show {
    display: none;
  }
  .rock-mobile-screen-show {
    display: block;
  }
}
.rock-all-navigation-mobile {
  margin-top: 20px;
}
.rock-all-navigation-mobile .single-navigation-item {
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}
.rock-all-navigation-mobile .single-navigation-item a {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.rock-all-navigation-mobile .single-navigation-item .title {
  font-size: 14px;
  font-weight: 600;
}
.rock-all-navigation-mobile .all-navigation-inner {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid #FFA336;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  margin-top: 20px;
  padding: 12px 6px 0px;
}
.rock-all-navigation-mobile .all-navigation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.rock-mobile-title {
  font-size: 14px;
  color: var(--td-white);
  text-transform: uppercase;
}

.rock-mobile-table-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: 70% auto;
  gap: 20px 0px;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .rock-mobile-table-card {
    padding: 16px 16px;
  }
}
.rock-mobile-table-card:not(:last-child) {
  margin-bottom: 8px;
}
.rock-mobile-table-card .transactions-description {
  align-items: self-start;
}
.rock-mobile-table-card .transactions-short-content {
  text-align: end;
}
.rock-mobile-table-card .transactions-short-content span {
  font-size: 14px;
}
.rock-mobile-table-card .transactions-badge {
  text-align: end;
}
.rock-mobile-table-card .transaction-id span {
  font-size: 12px;
}

.rock-mobile-withdraw-account-item {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 18px 20px;
}

.moretext,
.moretext-2 {
  display: none;
}

/* caches-privacy style*/
.caches-privacy {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 430px;
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 80;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
@media (max-width: 480px) {
  .caches-privacy {
    width: auto;
    padding: 20px;
    left: 20px;
    right: 20px;
  }
}
.caches-privacy .content {
  margin-bottom: 15px;
}
.caches-privacy .content .title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--td-white);
}
@media (max-width: 575px) {
  .caches-privacy .content .title {
    font-size: 18px;
  }
}
.caches-privacy .content p {
  font-size: 14px;
  margin-bottom: 0;
}
.caches-privacy .content p a {
  color: #000000;
}
.caches-privacy .caches-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.caches-privacy .caches-btn .learn-more {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.caches-privacy .caches-btn .learn-more:hover {
  text-decoration: underline;
  color: var(--td-white);
}
.caches-privacy .caches-btn .site-btn {
  padding: 8px 20px;
}

/***

Customization

**/

.header-logo img {
    height: 35px;
}
.rock-dashboard-level-contents .thumb img,
.rock-sidebar-logo a img {
    height: 50px;
}

.single-counter-item .icon img {
    height: 60px;
}

.rock-payment-thumb img {
    width: 120px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(1);
}

.postbox-wrapper .postbox-item .postbox-text ul {
    margin-left: 35px;
}

.notify {
  z-index: 999;
}
/*# sourceMappingURL=styles.css.map */
