@charset "UTF-8";
 

/************ TABLE OF CONTENTS ***************


    01. common CSS
    02. header CSS
    03. banner CSS
    04. about CSS
    05. page-title CSS
    06. profile CSS
    07. art CSS
    08. creator CSS
    09. register CSS
    10. process CSS
    11. account CSS
    12. activity CSS
    13. forum CSS
    14. footer CSS
    15. body-color CSS
    16. wallet CSS


**********************************************/
/*----------------------------------------
    01. common CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  line-height: 28px;
}

a {
  text-decoration: none;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: var(--clr-common-heading);
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--clr-common-heading);
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--clr-common-body-text);
  margin-bottom: 15px;
  line-height: 28px;
}

*::-moz-selection {
  background: var(--clr-common-black);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--clr-common-black);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background: var(--clr-common-black);
  color: var(--clr-common-white);
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  font-size: 16px;
  color: #b4b4b4;
  opacity: 1;
}

*::placeholder {
  font-size: 16px;
  color: #b4b4b4;
  opacity: 1;
}

:root {
  /**
     @color declaration
     */
  --clr-common-white: #ffffff;
  --clr-common-black: #000000;
  --clr-common-blue: #2785ff;
  --clr-common-heading: #171717;
  --clr-common-body-text: #636363;
  --clr-common-border: #e0e2e5;
  --clr-common-placeholder: #b4b4b4;
  --clr-theme-1: #2785ff;
  --clr-bg-white: #ffffff;
  --clr-bg-gray: #f9f9f9;
  --clr-bg-black: #000000;
  --clr-bg-footer: #f9f9f9;
  --clr-bg-dark: #111826;
}

:root .active-dark-mode {
  /**
      @color declaration
      */
  --clr-common-white: #ffffff;
  --clr-common-black: #000000;
  --clr-common-blue: #2785ff;
  --clr-common-heading: #ffffff;
  --clr-common-body-text: #86909d;
  --clr-common-border: #2a2f36;
  --clr-common-placeholder: #b4b4b4;
  --clr-theme-1: #2785ff;
  --clr-bg-white: #18182c;
  --clr-bg-gray: #181f2d;
  --clr-bg-black: #000000;
  --clr-bg-footer: #161626;
  --clr-bg-dark: #0c0c1f9c;
}

:root .active-light-mode {
  --clr-common-white: #ffffff;
  --clr-common-black: #000000;
  --clr-common-blue: #2785ff;
  --clr-common-heading: #171717;
  --clr-common-body-text: #636363;
  --clr-common-border: #e0e2e5;
  --clr-common-placeholder: #b4b4b4;
  --clr-theme-1: #2785ff;
  --clr-bg-white: #ffffff;
  --clr-bg-gray: #f9f9f9;
  --clr-bg-black: #000000;
  --clr-bg-footer: #f9f9f9;
  --clr-bg-dark: #ffffff;
}

/*--
    - Common Classes
-----------------------------------------*/
.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;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--clr-common-gray);
}

.pink-bg {
  background: var(--clr-common-black);
}

.white-bg {
  background: var(--clr-common-white);
}

.black-bg {
  background: var(--clr-common-black);
}

.footer-bg {
  background: var(--clr-bg-footer);
}

/*--
    - color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: var(--clr-common-white) !important;
}

.white-color {
  color: var(--clr-common-white);
}

.theme-color {
  color: var(--clr-common-black) !important;
}

.black-color {
  color: var(--clr-common-black);
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

/* link btn */
.link-btn {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-black);
  text-transform: uppercase;
  padding-right: 15px;
}
.link-btn i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn i:first-child {
  left: -100%;
  visibility: hidden;
  opacity: 0;
}
.link-btn i:last-child {
  right: 0;
}
.link-btn:hover {
  color: var(--clr-common-black);
}
.link-btn:hover i:first-child {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn:hover i:last-child {
  right: -100%;
  visibility: hidden;
  opacity: 0;
}

.link-btn-2 {
  position: relative;
  font-size: 14px;
  color: var(--clr-common-black);
  font-weight: 500;
  padding-right: 22px;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Urbanist", sans-serif;
}
.link-btn-2 i {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  font-size: 12px;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: var(--clr-common-black);
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.pink {
  color: var(--clr-common-black);
}
.link-btn-2.pink:hover {
  color: var(--clr-common-black);
}

/* pulse btn */
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 84px;
  text-align: center;
  background-color: var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: var(--clr-common-black);
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.pulse-btn i {
  padding-left: 2px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.fill-btn {
  font-size: 15px;
  color: var(--clr-common-white);
  font-weight: 600;
  background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
  background-size: 200% 100%;
  /* display: inline-block; */
  /* line-height: 50px; */
  border-radius: 5px;
  padding: 17px 57px;
  position: relative;
  overflow: inherit;
  transition: all linear 0.3s;
  border-radius: 20px;
  outline: none;
  border: none;
  }
.fill-btn:hover {
  color: var(--clr-common-white);
  background-position: 100% 100%;
outline: none;box-shadow: 0 20px 40px 0 rgb(83 194 247 / 35%);}

.fill-btn-orange {
  font-size: 16px;
  color: #171717;
  font-weight: 600;
  background: #fcbd11;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  border-radius: 5px;
  padding: 0 35px;
  position: relative;
  overflow: hidden;
}
.fill-btn-orange:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}
.fill-btn-orange:hover {
  color: #171717;
}
.fill-btn-orange:hover:before {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.fill-btn-lightblue {
  font-size: 16px;
  color: var(--clr-common-white);
  font-weight: 600;
  background: #3b99fc;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  border-radius: 5px;
  padding: 0 35px;
  position: relative;
  overflow: hidden;
}
.fill-btn-lightblue:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}
.fill-btn-lightblue:hover {
  color: var(--clr-common-white);
}
.fill-btn-lightblue:hover:before {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.fill-btn-lightred {
  font-size: 16px;
  color: var(--clr-common-white);
  font-weight: 600;
  background: #fd3566;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  border-radius: 5px;
  padding: 0 35px;
  position: relative;
  overflow: hidden;
}
.fill-btn-lightred:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}
.fill-btn-lightred:hover {
  color: var(--clr-common-white);
}
.fill-btn-lightred:hover:before {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.border-btn {
  height: 50px;
  border: 1px solid var(--clr-theme-1);
  padding: 0 30px;
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-theme-1);
  line-height: 48px;
}
.border-btn:hover {
  color: var(--clr-common-heading);
  border-color: var(--clr-common-heading);
}
.border-btn i {
  margin-right: 10px;
}

.social__links ul li {
  display: inline-block;
}
.social__links ul li a {
  width: 40px;
  height: 40px;
  background: #eff1f5;
  display: inline-block;
  border: 1px solid #eff1f5;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  color: var(--clr-common-heading);
}
.social__links ul li a:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.section-main-title1 {
  font-size: 36px;
  line-height: 1.33;
  font-weight: 700;
  color: var(--clr-common-heading);
}
@media (max-width: 575px) {
  .section-main-title1 {
    font-size: 28px;
  }
}

.section-title1 p {
  font-size: 16px;
  color: var(--clr-common-body-text);
}

.basic-pagination ul li {
  display: inline-block;
  margin-right: 16px;
}
.basic-pagination ul li a, .basic-pagination ul li span {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-white);
  color: var(--clr-common-heading);
  font-size: 16px;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--clr-bg-white);
}

.basic-pagination ul li a:hover,
.basic-pagination ul li span.current {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
  box-shadow: 0px 20px 30px rgba(37, 52, 103, 0.1);
}

.live-blink {
  width: 25px;
  height: 25px;
  background: transparent;
  border: 6px solid var(--clr-theme-1);
  border-radius: 50px;
  animation: live-pulse 1s infinite;
}

@keyframes live-pulse {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.section-title1 .live-blink {
  position: absolute;
  top: 10px;
  left: 0;
}

.nice-select {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-heading);
  background: var(--clr-bg-white);
  border-color: var(--clr-bg-white);
  height: 40px;
}
.nice-select::after {
  width: 8px;
  height: 8px;
  border: 4px solid #74829f;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: 18px;
}
.nice-select:hover, .nice-select:active, .nice-select:focus {
  border-color: var(--clr-bg-white);
}
.nice-select.open {
  border-color: var(--clr-bg-white);
}
.nice-select .list {
  background-color: var(--clr-bg-white);
  box-shadow: 0 0 0 1px transparent;
  border: 1px solid var(--clr-common-border);
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: var(--clr-common-border);
}

/*----------------------------------------
    02. header CSS
----------------------------------------*/
.oc-transparent-header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 99;
}

.main-menu {
  display: inline-block;
}
.main-menu ul li {
  display: inline-block;
  margin: 0px 18px;
  position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .main-menu ul li {
    margin: 0px 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin: 0px 13px;
  }
}
.main-menu ul li a {
    font-size: 17px;
    color: var(--clr-common-heading);
    text-transform: inherit;
    display: inline-block;
    padding: 35px 0;
    line-height: 20px;
    font-weight: 500;
}
.main-menu ul li .sub-menu {
  background: var(--clr-bg-white) none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 120%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 240px;
  z-index: 9;
  border-top: 4px solid var(--clr-theme-1);
  text-align: left;
  padding: 15px 0;
}
.main-menu ul li .sub-menu .sub-menu {
  left: 100%;
  top: 100%;
}
.main-menu ul li .sub-menu li {
  display: inline-flex;
  margin: 0px;
  padding: 8px 25px 8px 25px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.main-menu ul li .sub-menu li a {
  padding: 0px;
  display: block;
  color: var(--clr-common-heading);
  position: relative;
  font-weight: 400;
}
.main-menu ul li .sub-menu li a:before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: var(--clr-common-heading);
  opacity: 0;
}
.main-menu ul li .sub-menu li:hover > a {
  color: var(--clr-theme-1);
  padding-left: 5px;
}
.main-menu ul li .sub-menu li:hover > a:before {
  width: 100%;
  left: 0;
  right: auto;
}
.main-menu ul li:hover > a {
  color: #39a4f3;
}
.main-menu ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-menu ul li:hover > .sub-menu li:hover > .sub-menu {
  top: 0;
}
.main-menu ul li:hover.menu-item-has-children::after {
  color: var(--clr-theme-1);
  opacity: 1;
  visibility: visible;
}
.main-menu ul li.menu-item-has-children {
  position: relative;
}
.main-menu ul li.menu-item-has-children:after {
  position: static;
  content: "";
  font-size: 12px;
  color: var(--clr-common-heading);
  opacity: 1;
  visibility: visible;
  font-family: "Font Awesome 5 Pro";
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-left: 2px;
}

.action-item {
  display: inline-block;
}
.action-item a {
  display: inline-block;
  position: relative;
}
.action-item a i {
  font-size: 20px;
  color: var(--clr-common-heading);
}
.action-item .action-item-number {
  width: 18px;
  height: 18px;
  background: var(--clr-theme-1);
  display: inline-block;
  text-align: center;
  line-height: 18px;
  color: var(--clr-common-white);
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: -8px;
  font-size: 12px;
}

.container.header-container {
  max-width: 1650px;
}

.header-top {
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-common-border);
  overflow-x: clip;
}

.offer-text {
  display: flex;
  align-items: center;
  gap: 20px;
}
.offer-text p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

.art-auction-ends.offer-time-end {
  font-size: 15px;
  background: #5666ff;
  height: 30px;
  line-height: 30px;
  color: var(--clr-common-white);
  padding: 0 10px;
  border-radius: 5px;
}

.header-top-right {
  display: flex;
  gap: 40px;
  justify-content: end;
}
.header-top-right .nice-select {
  padding-left: 0;
  padding-right: 17px;
  width: inherit;
  height: 30px;
  line-height: 30px;
  color: var(--clr-common-body-text);
  font-size: 15px;
  background: none;
  border: none;
  margin-bottom: 0;
  position: relative;
  min-width: 46px;
}
.header-top-right .nice-select::after {
  right: 0;
  border-width: 2px;
  top: 14px;
}
.header-top-right .nice-select:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 1px;
  background: #dde0e4;
  top: 5px;
  left: -20px;
}
.header-top-right .nice-select.language-select::before {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-main {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
 .header-main1 {
    /* border-bottom: 1px solid var(--clr-common-border); */
    /* overflow-x: clip; */
    box-shadow: 0px 0px 10px rgb(148 148 151 / 10%);
    background-color: rgb(255 255 255 / 55%);
}	
.active-dark-mode .header-main1 {
  /* border-bottom: 1px solid var(--clr-common-border); */
  /* overflow-x: clip; */
  box-shadow: 0px 0px 10px rgb(148 148 151 / 10%);
  background-color: rgb(16 17 18 / 19%);
 }
	

	

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header1-logo img {
    max-width: 160px;
  }
}

.header-main-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-menu1 {
  /* margin-right: 95px; */
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu1 {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu1 {
    margin-right: 50px;
  }
}

.profile-item-header .profile-img {
  position: relative;
  cursor: pointer;
}
.profile-item-header .profile-img:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1;
  border-radius: 50%;
}
.profile-item-header .profile-img img {
  width: 45px;
  height: 45px;
  border: 0;
  cursor: pointer;
}
.profile-item-header .profile-verification {
  width: 18px;
  height: 18px;
  border-width: 2px;
  line-height: 16px;
  font-size: 7px;
  right: 0;
  bottom: 0;
}

.into-sidebar .profile-action ul {
  left: 110%;
  top: 0;
  background: #1c2434;
}
.into-sidebar .profile-action ul li a {
  color: #9ba3af;
}

.filter-search-input.header-search {
  width: 330px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .filter-search-input.header-search {
    width: 270px;
  }
}
.filter-search-input.header-search input {
  border: 1px solid #2d3136;
  border-radius: 5px;
  background: none;
  height: 45px;
  padding: 0 50px 0 20px;
  color: var(--clr-common-heading);
}
.filter-search-input.header-search button {
  top: 9px;
  color: #8b8d8f;
}
.filter-search-input.header-search button::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background: var(--clr-common-border);
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
}

.header-btn .fill-btn {
  /* height: 45px; */
  /* line-height: 45px; */
  /* display: inline-flex; */
}

.action-list-header1 .action-item {
  margin-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .action-list-header1 .action-item {
    margin-right: 15px;
  }
}
.action-list-header1 .action-item:last-child {
  margin-right: 0;
}

.sticky {
  position: fixed;
  top: 0;
  background: var(--clr-bg-white);
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  transition: 0.4s;
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  border: none;
}

/* bar-icon style */
.bar-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--clr-common-heading);
  display: inline-block;
}

.bar-icon span:nth-child(2) {
  margin-left: 40%;
  transition: 0.3s;
}

.bar-icon:hover span:nth-child(2) {
  margin-left: 0;
}

.bar-icon.left-bar-icon span:nth-child(2) {
  margin-left: 0;
  transition: 0.3s;
  width: 60%;
}

.bar-icon.left-bar-icon:hover span:nth-child(2) {
  width: 100%;
}

.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.3;
  visibility: visible;
}

.offcanvas-overlay-white {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--clr-common-white);
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay-white.overlay-open {
  opacity: 0;
  visibility: visible;
}

.side-info-close {
  background: none;
  border: 0;
  color: var(--clr-common-black);
  font-size: 15px;
  padding: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-radius: 40px;
  line-height: 26px;
  font-weight: bold;
  padding: 0px 9px 0px 9px;
  border: 3px solid #0000003b;
}

.active-dark-mode .side-info-close {
  /* background: none; */
  /* border: 0; */
  /* color: var(--clr-common-white); */
  /* font-size: 15px; */
  /* padding: 0px 9px 0px 9px; */
  /* -webkit-transition: all 0.5s ease-out 0s; */
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  /* transition: all 0.5s ease-out 0s; */
  /* border: 3px solid #fff; */
  /* border-radius: 40px; */
  /* line-height: 26px; */
  /* font-weight: bold; */
}


.side-info {
  background: #FFF;
  height: 400px;
  position: fixed;
  z-index: 99999;
  right: -100%;
  top: 0;
  width: 365px;
  padding: 45px 35px 45px 45px;
  transition: 0.6s;
  overflow-y: scroll;
}


.active-dark-mode .side-info {
  background: #0c1423;
  height: 400px;
  position: fixed;
  z-index: 99999;
  right: -100%;
  top: 0;
  width: 365px;
  padding: 45px 35px 45px 45px;
  transition: 0.6s;
  overflow-y: scroll;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .side-info {
    width: 300px;
    padding: 15px 25px;
  }
}

.side-info.info-open {
    right: 0;
    width: 300px;
    padding: 15px 25px;
}

.offset-widget .filter-search-input input {
  background: #0c1423;
  border-radius: 10px;
  border: 1px solid var(--clr-bg-dark);
  color: #9ba3af;
}

.offset-widget p {
  color: #9ba3af;
}

.offset-profile-action {
  display: flex;
  align-items: center;
}

.offset-widget .action-item a i {
  color: var(--clr-common-white);
}

/* mean menu */
div.mean-container .mean-bar {
  background: transparent;
}
div.mean-container .mean-nav {
  background: none;
  margin-bottom: 40px;
  overflow: hidden;
}
div.mean-container .mean-nav > ul {
  display: block !important;
}
div.mean-container .mean-nav ul li a {
  width: 100%;
  color: var(--clr-common-black);
border-top: 1px solid #c5d8ff33;
  font-size: 16px;
  text-transform: none;
  opacity: 1;
}


.active-dark-mode div.mean-container .mean-nav ul li a {
  width: 100%;
  color: var(--clr-common-white);
  border-top: 1px solid #111826;
  font-size: 16px;
  text-transform: none;
  opacity: 1;
}


div.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}
div.mean-container .mean-nav ul li a i {
  display: none;
}
div.mean-container .mean-nav ul li a.mean-expand {
  height: 28px;
  border: none;
}
div.mean-container .mean-nav ul li a.mean-expand::before {
  position: absolute;
  content: "+";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  content: "-";
}
div.mean-container a.meanmenu-reveal {
  display: none !important;
}

.header-main2 {
  background: #eff1f5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 850;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-main2 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.header-main2-content {
  background: var(--clr-bg-white);
  padding: 20px 30px;
  border-radius: 0 0 10px 10px;
  margin-bottom: 40px;
}
.header-main2-content .header-main-left {
  display: flex;
  align-items: center;
}
.header-main2-content .header-main-right {
  display: flex;
  align-items: center;
}
.header-main2-content .filter-search-input.header-search {
  width: 600px;
}
.header-main2-content .filter-search-input.header-search input {
  height: 50px;
  border: none;
  background: #eff1f5;
}

.product-filter-btn svg * {
  fill: var(--clr-common-white);
}

.menu2-side-bar {
  width: 275px;
  left: 0;
  background: var(--clr-bg-white);
  padding: 27px 27px;
  border-right: 1px solid var(--clr-common-border);
  right: auto;
  top: 0;
}

.menu2-sidebar-widget-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-common-heading);
}

.sidebar-creators-list .creator-single-short {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--clr-common-border);
}
.sidebar-creators-list .creator-single-short:last-child {
  padding-bottom: 0;
  border: none;
}
.sidebar-creators-list .artist .profile-img img {
  width: 45px;
  border: none;
}
.sidebar-creators-list .artist .profile-img {
  margin-right: 16px;
}
.sidebar-creators-list .artist .profile-verification {
  width: 15px;
  height: 15px;
  font-size: 7px;
}
.sidebar-creators-list .artist {
  margin-bottom: 0;
}
.sidebar-creators-list .artist-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--clr-common-heading);
}
.sidebar-creators-list .artist-name a:hover {
  color: var(--clr-theme-1);
}
.sidebar-creators-list .creator-name-id .artist-id {
  font-size: 14px;
  color: var(--clr-theme-1);
}

.menu2-sidebar-widget .process-icon {
  height: 79px;
  margin-bottom: 13px;
}
.menu2-sidebar-widget .process-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}
.menu2-sidebar-widget .fill-btn {
  font-size: 12px;
  font-weight: 600;
  height: 35px;
  line-height: 35px;
  padding: 0 18px;
}
.menu2-sidebar-widget .work-process-btn {
  line-height: 1;
}
.menu2-sidebar-widget .work-process-single {
  padding: 27px 27px;
  border-radius: 0;
  margin-left: -27px;
  margin-right: -27px;
  margin-bottom: -27px;
  background: #f9f9f9;
}

.menu2-mobile-menu {
  border-bottom: 1px solid var(--clr-common-border);
  margin-bottom: 30px;
}
.menu2-mobile-menu.mean-container .mean-nav ul li a {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-common-heading);
}
.menu2-mobile-menu.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}
.menu2-mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  background: var(--clr-bg-white);
}
.menu2-mobile-menu.mean-container .mean-nav ul li a.mean-expand::before {
  position: absolute;
  content: "+";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-size: 15px;
  font-weight: 400;
}
.menu2-mobile-menu.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  content: "";
  font-family: "Font Awesome 5 Pro";
}
.menu2-mobile-menu.mean-container .mean-nav ul li a.mean-expand::after {
  position: absolute;
  content: "";
  width: 220px;
  height: 100%;
  right: 0;
  top: 0;
}
.menu2-mobile-menu.mean-container .mean-nav ul li:hover > a {
  color: var(--clr-theme-1);
}
.menu2-mobile-menu.mean-container .mean-nav ul li a {
  border-top: 0;
}
.menu2-mobile-menu.mean-container .mean-nav {
  margin-bottom: 20px;
}

.sidebar-category-filter {
  width: 275px;
  right: 0;
  background: var(--clr-bg-white);
  padding: 27px 27px;
  border-left: 1px solid var(--clr-common-border);
  left: auto;
  top: 0;
}
.sidebar-category-filter .category-item {
  display: block;
}
.sidebar-category-filter .category-item a {
  display: inline-flex;
  align-items: center;
  padding: 0 0px;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-body-text);
  width: 100%;
  border-radius: 0;
  background: none;
  height: 30px;
  border: none;
  line-height: 30px;
}
.sidebar-category-filter .filter-widget-content ul li {
  margin-bottom: 7px;
}
.sidebar-category-filter .filter-widget-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-common-heading);
  cursor: pointer;
  position: relative;
}
.sidebar-category-filter .filter-widget-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1;
}
.sidebar-category-filter .filter-widget-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}
.sidebar-category-filter .filter-widget-content::after {
  position: absolute;
  top: 3px;
  right: 0;
  content: "";
  font-family: "Font Awesome 5 Pro";
  color: var(--clr-common-heading);
  cursor: pointer;
  transform: rotate(-180deg);
  line-height: 1;
}
.sidebar-category-filter .filter-widget-content.content-hidden::after {
  transform: rotate(0deg);
}
.sidebar-category-filter .filter-widget-content.content-hidden ul {
  display: none;
}
.sidebar-category-filter .filter-widget-content .oc-check-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}
.sidebar-category-filter .filter-widget-content input[type=checkbox] {
  border: 1px solid #86909d;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 15px;
  height: 15px;
  cursor: pointer;
  position: relative;
  top: 2px;
  font-size: 15px;
  margin-right: 8px;
}
.sidebar-category-filter .filter-widget-content input[type=checkbox]:checked {
  border: none;
  background-color: #2467ec;
  color: #ffffff;
}
.sidebar-category-filter .filter-widget-content input[type=checkbox]:checked::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  line-height: 15px;
  top: 0;
  left: 3px;
  font-size: 10px;
}

@media (min-width: 1400px) {
  .c-container-1 {
    width: calc(100% - 583px);
  }
}

.menu2-side-bar-wrapper {
  width: 275px;
  position: fixed;
  top: 0;
  left: -300px;
  transition: 0.3s;
  z-index: 999;
  height: 100vh;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
}
@media (min-width: 1400px) {
  .menu2-side-bar-wrapper {
    left: 0;
  }
}
.menu2-side-bar-wrapper.open {
  left: 0;
}

.sidebar-category-filter-wrapper {
  width: 275px;
  position: fixed;
  top: 0;
  right: -300px;
  transition: 0.3s;
  z-index: 999;
  height: 100vh;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
}
@media (min-width: 1400px) {
  .sidebar-category-filter-wrapper {
    right: 0;
  }
}
.sidebar-category-filter-wrapper.open {
  right: 0;
}

.body-has-sidebar {
  position: relative;
  overflow-x: clip;
}

.product-filter-btn {
  font-size: 22px;
  color: var(--clr-common-heading);
  line-height: 0;
  cursor: pointer;
}

.home3-mode-switch.mode-switch-wrapper {
  position: static;
  transform: none;
}
.home3-mode-switch .label .ball {
  display: none;
}
.home3-mode-switch .label {
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  border: 1px solid var(--clr-common-border);
  transform: scale(1);
  font-size: 20px;
  padding: 0;
  justify-content: center;
}
.home3-mode-switch .label i {
  height: 45px;
  width: 45px;
  line-height: 45px;
}

/*----------------------------------------
    03. banner CSS
----------------------------------------*/
.banner-900 {
  min-height: 900px;
  position: relative;
}

.banner-670 {
  min-height: 670px;
  position: relative;
}

.banner-460 {
  min-height: 460px;
  position: relative;
}

.banner-bg,
.banner-bg-light {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.b1-shape1 {
  position: absolute;
  left: 2.5%;
  top: 29%;
  filter: blur(2px);
}

.active-dark-mode .banner-bg-light {
  display: none;
}

.active-light-mode .banner-bg {
  display: none;
}

.single-banner-1 {
  padding-top: 250px;
}

.search-form {
  position: relative;
  width: 100%;
  max-width: 610px;
}
.search-form::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  color: #b1b1b1;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  left: 19px;
}
.search-form input {
  width: 100%;
  height: 70px;
  line-height: 60px;
  padding: 0 135px 0 45px;
  color: var(--clr-common-heading);
  border-radius: 5px;
  background: var(--clr-common-white);
  border: none;
}
.search-form input::placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
.search-form input::focus {
  border: 0;
}
.search-form button {
  font-size: 16px;
  font-weight: 700;
  text-transform: inherit;
  line-height: 50px;
  text-align: center;
  height: 50px;
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border: none;
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 0;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 30px;
}
.search-form button i {
  color: var(--clr-common-white);
  margin-left: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-btn.mb-105 {
    margin-bottom: 60px;
  }
}

.banner-content h1 {
  font-size: 58px;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content h1 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .banner-content h1 {
    font-size: 34px;
  }
}
.banner-content h1 span {
  font-weight: 800;
  color: #399de3;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.banner-content p {
  font-size: 20px;
}

.banner-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.oc-banner-video {
  display: flex;
  align-items: center;
  gap: 15px;
}
.oc-banner-video a {
  height: 50px;
  width: 50px;
  line-height: 48px;
  text-align: center;
  border: 1px solid var(--clr-common-body-text);
  display: inline-block;
  color: var(--clr-common-heading);
  font-size: 14px;
  border-radius: 50%;
}
.oc-banner-video span {
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  display: inline-block;
  color: var(--clr-common-heading);
}

.oc-banner-counter {
  display: flex;
  gap: 70px;
}
@media (max-width: 575px) {
  .oc-banner-counter {
    gap: 50px;
  }
}
.oc-banner-counter .art-meta-notice {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .oc-banner-counter .art-meta-notice {
    font-size: 30px;
  }
}
.oc-banner-counter .art-meta-type {
  font-size: 16px;
  font-weight: 500;
  text-transform: inherit;
  margin-bottom: 0;
}

.banner-content1 {
  max-width: 610px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content1 {
    max-width: 530px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content1 {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content1 {
    max-width: 430px;
    padding-top: 0;
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .banner-content1 {
    padding-top: 0;
    padding-bottom: 10px;
  }
}

.oc-banner-img {
  height: 100%;
  margin-top: -40px;
  }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .oc-banner-img {
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .oc-banner-img {
    /* max-width: 350px; */
    margin: 0 auto;
    height: 100%;
  }
}
.oc-banner-img .oc-banner-img-1 {
  position: absolute;
  border-radius: 13px;
  top: 0px;
  right: 91px;
  z-index: 1;
}
@media (max-width: 575px) {
  .oc-banner-img .oc-banner-img-1 img {
    height: 150px;
  }
}
.oc-banner-img .oc-banner-img-1 img {
  border-radius: 13px;
}
.oc-banner-img .oc-banner-img-2 {
  position: absolute;
  border-radius: 13px;
  top: 160px;
  left: 0px;
}
@media (max-width: 575px) {
  .oc-banner-img .oc-banner-img-2 {
    top: 80px;
  }
  .oc-banner-img .oc-banner-img-2 img {
    height: 120px;
  }
}
.oc-banner-img .oc-banner-img-2 img {
  border-radius: 13px;
}
.oc-banner-img .oc-banner-img-3 {
  position: absolute;
  border-radius: 13px;
  top: 80px;
  right: -200px;
}
@media (max-width: 575px) {
  .oc-banner-img .oc-banner-img-3 {
    right: 0px;
  }
  .oc-banner-img .oc-banner-img-3 img {
    height: 200px;
  }
}
.oc-banner-img .oc-banner-img-3 img {
  border-radius: 13px;
}
.oc-banner-img .oc-banner-img-4 {
  position: absolute;
  border-radius: 13px;
  bottom: 91px;
  left: 61px;
}
@media (max-width: 575px) {
  .oc-banner-img .oc-banner-img-4 {
    left: 10px;
  }
  .oc-banner-img .oc-banner-img-4 img {
    height: 180px;
  }
}
.oc-banner-img .oc-banner-img-4 img {
  border-radius: 13px;
}
.oc-banner-img .oc-banner-client-wrapper {
  position: absolute;
  left: -30px;
  bottom: 0px;
  z-index: 2;
}
@media (max-width: 575px) {
  .oc-banner-img .oc-banner-client-wrapper {
    left: 0px;
  }
}
.oc-banner-img .oc-banner-client {
  padding: 30px;
  border-radius: 10px;
  max-width: 300px;
  height: 185px;
  background: transparent;
  border: 1px solid rgba(162, 175, 200, 0.31);
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(12px);
  --webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.05);
  /* (plus shape's fill blended on top as a separate layer with 10% opacity) */
}
.oc-banner-img .oc-banner-client img {
  position: static;
  height: 100%;
  width: 100%;
}
.oc-banner-img .oc-banner-client a {
  height: 40px;
  width: 40px;
  border: 2px solid var(--clr-common-white);
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  overflow: hidden;
}
.oc-banner-img .oc-banner-client a:not(:first-child) {
  margin-left: -15px;
}
.oc-banner-img .oc-banner-client .q-meta-viewed-members {
  display: inline-flex;
}
.oc-banner-img .oc-banner-client .q-meta-views {
  font-size: 14px;
  color: var(--clr-common-heading);
  display: block;
}
.oc-banner-img .oc-banner-client .q-meta-type {
  font-size: 16px;
  color: var(--clr-common-heading);
  font-weight: 700;
}
.oc-banner-img .oc-banner-client .q-meta-item {
  gap: 10px;
  margin-bottom: 13px;
}
.oc-banner-img .oc-banner-client p {
  font-size: 14px;
  line-height: 24px;
  color: var(--clr-common-heading);
}

@-moz-document url-prefix() {
  .active-dark-mode .oc-banner-client {
    background: #3841547a;
  }

  .active-light-mode .oc-banner-client {
    background: #e7ebf47a;
    border: 1px solid rgba(147, 161, 188, 0.14);
  }
}
@keyframes circle {
  from {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
.banner-content2 {
  text-align: center;
}
.banner-content2 .banner-btn {
  display: inherit;
}
.banner-content2.banner-content p {
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.banner2-container {
  overflow-x: clip;
  overflow-y: visible;
}

.single-banner-3 {
  border-radius: 10px;
  overflow: hidden;
}
.single-banner-3 .banner-bg img,
.single-banner-3 .banner-bg-light img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner-content3 h1 {
  font-size: 40px;
  font-weight: 700;
  max-width: 400px;
  line-height: 1.25;
  color: var(--clr-common-white);
}
@media (max-width: 575px) {
  .banner-content3 h1 {
    font-size: 34px;
  }
}

.banner-content3 p {
  font-size: 16px;
  color: var(--clr-common-white);
  max-width: 350px;
}

.banner-content3 {
  padding: 0 40px;
}
@media (max-width: 575px) {
  .banner-content3 {
    padding: 0 25px;
  }
}

@media (min-width: 1600px) and (max-width: 1800px) {
  .banner-3-column {
    width: 60%;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .banner-3-column {
    width: 100%;
  }
}

@media (min-width: 1600px) and (max-width: 1800px) {
  .sidebar-art-list-column {
    width: 40%;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .sidebar-art-list-column {
    width: 100%;
  }
}

/*----------------------------------------
    04. about CSS
----------------------------------------*/
.error-404-content h4 {
  font-size: 30px;
  margin-bottom: 13px;
}

.error-404-img img {
  width: 600px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .error-404-img img {
    width: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-404-img img {
    width: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .error-404-img img {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .error-404-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 450px) and (max-width: 575px) {
  .error-404-img img {
    width: 350px;
  }
}

.art-category-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--clr-bg-white);
  border-radius: 5px;
  color: var(--clr-common-heading);
  background: var(--clr-bg-white);
  font-size: 16px;
  margin-bottom: 30px;
}

.sale-category-box-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-common-heading);
  margin-bottom: 13px;
}
.sale-category-box-title i {
  margin-right: 10px;
}

.sale-categoty-box {
  border: 1px solid var(--clr-bg-white);
  border-radius: 5px;
  padding: 11px 20px;
  margin-bottom: 30px;
  background: var(--clr-bg-white);
}
.sale-categoty-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.currency-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--clr-bg-white);
  border-radius: 5px;
  color: var(--clr-common-heading);
  background: var(--clr-bg-white);
  font-size: 16px;
  margin-bottom: 30px;
}

.royalty-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--clr-bg-white);
  border-radius: 5px;
  color: var(--clr-common-heading);
  background: var(--clr-bg-white);
  font-size: 16px;
  margin-bottom: 30px;
}

.upload-btn {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.upload-btn button {
  min-width: 150px;
}

.browse-file-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-common-heading);
  margin-bottom: 8px;
}

.browse-file-icon {
  font-size: 72px;
  color: #dde0f9;
  margin-bottom: 20px;
}

.browse-file-note {
  font-size: 14px;
  font-weight: 600;
}

.browse-file-wrapper {
  border: 2px dashed var(--clr-theme-1);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
}

.browse-file-btn {
  margin-top: 15px;
  margin-bottom: 18px;
}

.uploaded-file-wrapper {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 10px;
  padding: 35px 35px;
}
@media (max-width: 575px) {
  .uploaded-file-wrapper {
    padding: 35px 15px;
  }
}

.uploaded-file-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-common-heading);
  margin-bottom: 10px;
}

.uploaded-file {
  margin-bottom: 20px;
}
.uploaded-file img {
  width: 100%;
}

.uploaded-file-btn {
  text-align: center;
}
.uploaded-file-btn .text-btn {
  font-size: 16px;
  color: var(--clr-common-heading);
  border-bottom: 1px solid var(--clr-common-heading);
}

.about-info-title {
  font-size: 24px;
  margin-bottom: 23px;
}

.about-info-wrapper p {
  margin-bottom: 28px;
}

.about-points-box {
  border: 1px solid var(--clr-bg-white);
  border-radius: 10px;
  background: var(--clr-bg-white);
  padding: 28px 45px;
}
.about-points-box li {
  list-style: disc;
  color: var(--clr-theme-1);
  margin-bottom: 2px;
}
.about-points-box li a {
  color: var(--clr-theme-1);
  text-decoration: underline;
}
.about-points-box li:last-child {
  margin-bottom: 0;
}

.about-info-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
}

.about-points-list li {
  list-style: decimal-leading-zero;
  margin-left: 27px;
  padding-left: 10px;
  margin-bottom: 20px;
}
.about-points-list li:last-child {
  margin-bottom: 0;
}

.sidebar-widget-single {
  border: 1px solid var(--clr-bg-gray);
  background: var(--clr-bg-gray);
  border-radius: 10px;
  padding: 30px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .sidebar-widget-single {
    padding: 30px 15px;
  }
}

.sidebar-nav-link {
  width: 100%;
  height: 60px;
  border: 1px solid var(--clr-bg-white);
  display: block;
  border-radius: 5px;
  font-weight: 600;
  color: var(--clr-common-heading);
  line-height: 58px;
  padding: 0 30px;
  position: relative;
  background: var(--clr-bg-white);
  text-align: left;
}
.sidebar-nav-link:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  box-shadow: 0px 30px 40px rgba(28, 52, 94, 0.1);
  border-color: var(--clr-theme-1);
}
.sidebar-nav-link:hover i {
  color: var(--clr-common-white);
}
.sidebar-nav-link:hover .inner-item-number {
  color: var(--clr-common-white);
}
.sidebar-nav-link .inner-item-number {
  position: absolute;
  font-weight: 600;
  color: var(--clr-common-heading);
  right: 30px;
  top: 0;
  transition: 0.3s;
}

.sidebar-tab-nav .nav-link {
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  border: none;
  background: none;
}
.sidebar-tab-nav .nav-link.active {
  background: none;
}
.sidebar-tab-nav .nav-link.active .sidebar-nav-link {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  box-shadow: 0px 30px 40px rgba(28, 52, 94, 0.1);
  border-color: var(--clr-theme-1);
}
.sidebar-tab-nav .nav-link.active .sidebar-nav-link i {
  color: var(--clr-common-white);
}
.sidebar-tab-nav .nav-link.active .sidebar-nav-link .inner-item-number {
  color: var(--clr-common-white);
}

.sidebar-tab-nav .nav-link:last-child {
  margin-bottom: 0;
}

.sidebar-tab-nav .nav-tabs {
  border-bottom: 0;
}

.sidebar-nav-link i {
  font-size: 20px;
  color: var(--clr-theme-1);
  margin-right: 20px;
  transition: 0.3s;
}

.category-list li {
  margin-bottom: 20px;
}
.category-list li a {
  width: 100%;
  height: 60px;
  border: 1px solid var(--clr-common-border);
  display: inline-block;
  border-radius: 5px;
  font-weight: 600;
  color: var(--clr-common-heading);
  line-height: 58px;
  padding: 0 30px;
  position: relative;
  background: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .category-list li a {
    padding: 0 20px;
  }
}
.category-list li a i {
  font-size: 20px;
  color: var(--clr-theme-1);
  margin-right: 20px;
  transition: 0.3s;
}
.category-list li a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  box-shadow: 0px 30px 40px rgba(28, 52, 94, 0.1);
  border-color: var(--clr-theme-1);
}
.category-list li a:hover i {
  color: var(--clr-common-white);
}
.category-list li a:hover .inner-item-number {
  color: var(--clr-common-white);
}
.category-list li:last-child {
  margin-bottom: 0;
}
.category-list .inner-item-number {
  position: absolute;
  font-weight: 600;
  color: var(--clr-common-heading);
  right: 30px;
  top: 0;
  transition: 0.3s;
}

.sidebar-widget-title {
  font-size: 20px;
  margin-bottom: 35px;
}

.accordion-general .accordion-item {
  margin-bottom: 10px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--clr-bg-white);
}
.accordion-general .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-general .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.accordion-general .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.accordion-general .accordion-body {
  font-size: 18px;
  line-height: 30px;
  padding: 20px 30px 30px;
  background: var(--clr-bg-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .accordion-general .accordion-body {
    padding: 20px 15px 30px;
  }
}
.accordion-general .accordion-button {
  border: none;
  background: var(--clr-bg-white);
  border-bottom: 1px solid var(--clr-bg-white);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 20px;
  color: var(--clr-common-heading);
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  padding: 28px 20px 28px 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .accordion-general .accordion-button {
    padding: 20px 15px 20px 45px;
    font-size: 18px;
  }
}
.accordion-general .accordion-button::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  background-image: none;
  position: absolute;
  left: 30px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .accordion-general .accordion-button::after {
    left: 15px;
  }
}
.accordion-general .accordion-button:focus {
  box-shadow: none;
}
.accordion-general .accordion-collapse {
  border: none;
}
.accordion-general .accordion-collapse.show {
  border-top: 1px solid var(--clr-common-border);
}
.accordion-general .accordion-button.collapsed {
  border-bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.accordion-general .accordion-button.collapsed::after {
  content: "";
}
.accordion-general .accordion-button.collapsed:focus {
  border-color: var(--clr-common-white);
}

.sidebar-auction-active .art-item-wraper {
  padding: 0;
  background: var(--clr-bg-gray);
}
.sidebar-auction-active .art-item-content {
  padding: 20px 0px 0px;
}
.sidebar-auction-active .art-3dots-menu {
  right: 0;
}

/*----------------------------------------
    05. page-title CSS
----------------------------------------*/
.page-title-area {
  border-top: 0;
  background: #ffffff5c;
  padding: 130px 10px 40px 10px;
}

.active-dark-mode .page-title-area {
  border-top: 0;
  background: #0000001a;
  padding: 130px 10px 40px 10px;
}

.breadcrumb-title {
  font-size: 36px;
}
@media (max-width: 575px) {
  .breadcrumb-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 450px) and (max-width: 575px) {
  .breadcrumb-title {
    font-size: 36px;
  }
}

.page-title .trail-items .trail-item {
  display: inline-block;
}
.page-title .trail-items .trail-item a {
  padding-right: 22px;
  position: relative;
  color: var(--clr-theme-1) !important;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-common-body-text);
}
.page-title .trail-items .trail-item a::before {
  position: absolute;
  content: "";
  font-size: 20px;
  color: var(--clr-common-heading);
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}
.page-title .trail-items .trail-item span {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-common-body-text);
}

/*----------------------------------------
    06. profile CSS
----------------------------------------*/
.profile-img {
  display: inline-block;
  line-height: 1;
}
.profile-img img {
  width: 90px;
  border: 5px solid var(--clr-bg-white);
  border-radius: 50%;
  background: var(--clr-bg-white);
}

.profile-verification {
  width: 22px;
  height: 22px;
  border: 3px solid var(--clr-bg-white);
  background: #ffc107;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  color: var(--clr-common-white);
  font-size: 8px;
  position: absolute;
  right: 5px;
  bottom: 0;
}

.profile-verification.verified {
  background: var(--clr-theme-1);
}

.profile-action {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.profile-action ul {
  background: var(--clr-bg-white);
  padding: 10px 15px;
  min-width: 120px;
  border-radius: 5px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 99999;
  box-shadow: 0px 30px 20px rgba(37, 52, 103, 0.11);
}
.profile-action ul li i {
  margin-right: 10px;
  font-size: 12px;
}
.profile-action ul li a {
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 5px 0;
}
.profile-action ul li a:hover {
  color: var(--clr-theme-1);
}

.show-element .profile-action {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------
    07. art CSS
----------------------------------------*/
.art-item-single {
  transition: 0.3s;
  border-radius: 15px;
}
.art-item-single:hover .art-3dots-menu {
  opacity: 1;
  visibility: visible;
}
.art-item-single:hover .art-action {
  opacity: 1;
  visibility: visible;
}
.art-item-single:hover .art-item-img a img {
  transform: scale(1.05);
}
.art-item-single:hover .place-bid {
  opacity: 1;
  visibility: visible;
}
.art-item-wraper {
 
  border-radius: 10px;
  padding: 10px;
background: #fff;
    border: 1px solid #00000012;
}
.active-dark-mode .art-item-wraper {
  background: #18182c;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #ffffff0a;
}

.art-item-content {
  padding: 20px 10px 10px;
}

.art-item-img {
  overflow: hidden;
  border-radius: 8px;
}
.art-item-img a img {
  width: 100%;
  border-radius: 8px;
}
.art-item-img a img:hover {
  transform: scale(1.05);
}
.art-item-img .art-action-like-count {
  position: absolute;
  right: 39px;
  top: 0;
}
.art-item-img .art-action-collection {
  position: absolute;
  top: 48px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.art-item-img .place-bid {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 5;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
}

.art-item-content .place-bid {
  height: 50px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  margin-top: 35px;
  line-height: 50px;
  text-align: center;
}

.art-name {
  font-size: 22px;
  color: var(--clr-common-heading);
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .art-name {
    font-size: 20px;
  }
}
.art-name a:hover {
  color: var(--clr-theme-1);
}

.artist {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.artist .profile-img {
  margin-right: 10px;
}
.artist .profile-img img {
  width: 25px;
  border: none;
}
.artist .profile-verification {
  width: 13px;
  height: 13px;
  border-width: 2px;
  line-height: 11px;
  font-size: 6px;
  right: -4px;
  bottom: 0px;
}

.artist-id {
  font-size: 14px;
  line-height: 1;
  color: var(--clr-common-body-text);
  font-weight: 500;
}

.art-meta-type {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-body-text);
  line-height: 1;
  margin-bottom: 5px;
}

.art-activity {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-body-text);
}
.art-activity:hover {
  color: var(--clr-common-heading);
}
.art-activity i {
  margin-right: 10px;
  color: var(--clr-theme-1);
}

.art-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-theme-1);
  line-height: 1;
}

.art-sale {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.place-bid {
  background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
  background-size: 200% 100%;
  height: 35px;
  border-radius: 20px;
  color: var(--clr-common-white);
  display: inline-block;
  line-height: 35px;
  font-size: 13px;
  font-weight: 700;
  padding: 0 10px;
}
.place-bid:hover {
  background-position: 100% 100%;
  color: var(--clr-common-white);
box-shadow: 0 20px 40px 0 rgb(59 123 238 / 40%);}

.art-meta-info {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 0;
}

.art-3dots-icon {
  font-size: 19px;
  color: #878787;
  padding: 0 2px;
}

.art-3dots-menu {
  position: absolute;
  right: 10px;
  top: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  cursor: pointer;
}
.art-3dots-menu::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1;
}
.art-3dots-menu:hover .art-3dots-icon {
  color: var(--clr-theme-1);
}

.show-element .art-3dots-action {
  opacity: 1;
  visibility: visible;
}

.art-3dots-action {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.art-3dots-action ul {
  background: var(--clr-bg-gray);
  padding: 5px 10px;
  min-width: 100px;
  border-radius: 5px;
  position: absolute;
  right: 0;
  top: 105%;
  z-index: 99999;
}
.art-3dots-action ul li i {
  margin-right: 10px;
  font-size: 12px;
}
.art-3dots-action ul li a {
  font-size: 15px;
  font-weight: 500;
}
.art-3dots-action ul li a:hover {
  color: var(--clr-theme-1);
}

.art-action {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  z-index: 1;
}
.art-action:hover .art-action-like-count {
  opacity: 1;
  visibility: visible;
}
.art-action:hover .art-action-collection {
  opacity: 0;
  visibility: hidden;
}

.art-action-like {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  color: var(--clr-common-white);
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 46px;
  display: inline-block;
}
.art-action-like.liked {
  background: var(--clr-theme-1);
}

.art-action-like-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-common-white);
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  line-height: 40px;
  padding: 0 10px;
  display: inline-block;
}
.art-action-like-count:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 9px;
  background: rgba(0, 0, 0, 0.5);
  right: -5px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  transform: translateY(-50%);
}

.art-action-collection {
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: var(--clr-common-white);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  text-align: center;
  line-height: 46px;
  display: inline-block;
}

.category-collections-wrapper {
  background: var(--clr-bg-white);
  border-radius: 10px;
  overflow: hidden;
  padding: 8px;
  transition: 0.3s;
  border: 1px solid var(--clr-bg-white);
}
.category-collections-wrapper .art-item-single {
  border-radius: 5px;
  height: 100%;
  overflow: hidden;
}
.category-collections-wrapper .art-item-single:hover {
  box-shadow: none;
}
.category-collections-wrapper .art-item-single:hover .art-item-img a img {
  transform: scale(1);
}
.category-collections-wrapper .art-item-img {
  height: 100%;
}
.category-collections-wrapper .art-item-img a {
  height: 100%;
  pointer-events: none;
}
.category-collections-wrapper .art-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.category-collections-wrapper .art-item-wraper {
  padding: 0;
  height: 100%;
  border: 0;
}
.category-collections-wrapper .art-item-inner {
  height: 100%;
}
.category-collections-wrapper .row {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 8px;
}

.category-collections-inner > .row {
  position: relative;
}

.category-collections-inner > .row:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 2;
}

.category-collections-inner {
  border-radius: 10px;
  overflow: hidden;
}

.collection-content {
  padding: 16px 12px 12px;
}
.collection-content .art-3dots-menu {
  right: 12px;
  top: 16px;
}

.collection-category .category-name {
  font-size: 22px;
  margin-bottom: 15px;
}
.collection-category .category-name a:hover {
  color: var(--clr-theme-1);
}

.resource-created {
  font-size: 14px;
  color: var(--clr-common-body-text);
  font-weight: 700;
}

.resource-meta-item {
  height: 30px;
  background: var(--clr-bg-white);
  display: inline-block;
  border: 1px solid var(--clr-common-border);
  border-radius: 2px;
  padding: 0 12px;
  transition: 0.3s;
}
.resource-meta-item:hover {
  background-image: linear-gradient(to right, #2b81ff, #7237ff, #2b81ff);
  background-size: 200% 100%;
  border-image: linear-gradient(to right, #2b81ff, #7237ff, #2b81ff);
}
.resource-meta-item:hover .resource-created,
.resource-meta-item:hover .resource-meta-type {
  color: var(--clr-common-white);
}
.resource-meta-item .resource-created {
  display: inline-block;
  transition: 0.3s;
}
.resource-meta-item .resource-meta-type {
  display: inline-block;
  transition: 0.3s;
}

.resource-meta-type {
  font-size: 14px;
  color: var(--clr-common-body-text);
  font-weight: 500;
}

.popular-collections-area {
  margin-top: -20px;
}

.in-auction .art-item-wraper {
  border: 1px solid var(--clr-bg-white);
  margin-bottom: 1px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .in-auction .art-item-wraper {
    padding: 20px;
  }
}
.in-auction .art-item-img img {
  height: 440px;
  object-fit: cover;
}
.in-auction .art-item-content {
  margin-top: -100px;
  background: var(--clr-common-white);
  max-width: calc(100% - 10%);
  border-radius: 10px 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px 5px;
}
.in-auction .art-meta-info {
  display: grid;
  grid-template-columns: 125px auto;
  justify-content: inherit;
  border-top: 0;
  padding-top: 0;
  margin-top: 27px;
}
@media (max-width: 575px) {
  .in-auction .art-meta-info {
    grid-template-columns: 85px auto;
  }
}
.in-auction .art-price {
  font-size: 18px;
}
@media (max-width: 575px) {
  .in-auction .art-price {
    font-size: 14px;
  }
}
.in-auction .art-meta-type {
  margin-bottom: 8px;
}
.in-auction .artist {
  margin-bottom: 20px;
}
.in-auction .art-3dots-menu {
  right: 20px;
}
@media (max-width: 575px) {
  .in-auction .art-auction-ends {
    font-size: 14px;
  }
}

.art-auction-ends {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-common-heading);
  display: flex;
  line-height: 1;
}
.art-auction-ends > div {
  margin-right: 5px;
}

.art-auction-ends.in-art-item {
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  width: inherit;
  padding: 0 15px 0;
  line-height: 40px;
  border-radius: 5px 5px 5px 5px;
  color: var(--clr-common-white);
}
.art-auction-ends.in-art-item:before {
  position: absolute;
  content: "";
  color: var(--clr-theme-1);
  font-family: "Font Awesome 5 Pro";
  left: 14px;
  top: 0px;
  font-weight: 400;
  display: none;
}

.auction-time-and-btn {
  left: 50%;
  transform: translateX(-50%);
  margin-right: -50%;
  position: absolute;
  top: -60px;
}
.auction-time-and-btn .place-bid {
  font-size: 18px;
  font-weight: 700;
  padding: 0 24px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin-right: -50%;
  position: absolute;
  top: 0px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.circle-nav-btn {
  width: 60px;
  height: 60px;
  border: 1px solid #d6dbdf;
  text-align: center;
  line-height: 58px;
  border-radius: 50%;
  background: var(--clr-common-white);
  font-size: 19px;
  color: var(--clr-common-heading);
  transition: 0.3s;
}
.circle-nav-btn:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.square-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-bg-white);
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  background: var(--clr-bg-white);
  font-size: 19px;
  color: #adb4be;
  transition: 0.3s;
}
.square-nav-btn:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}

.auction-button-prev {
  position: absolute;
  right: 50px;
  top: -80px;
  transform: translate(0);
  z-index: 2;
}
@media (max-width: 575px) {
  .auction-button-prev {
    display: none;
  }
}

.auction-button-next {
  position: absolute;
  right: 0;
  top: -80px;
  transform: translate(0);
  z-index: 2;
}
@media (max-width: 575px) {
  .auction-button-next {
    display: none;
  }
}

.art-item-single.in-auction:hover {
  box-shadow: none;
}

.new-arrival-btn .text-btn {
  font-size: 16px;
  color: var(--clr-common-heading);
  border-bottom: 1px solid var(--clr-theme-1);
}

.auction-active .art-item-wraper {
  padding: 20px;
margin-top: 5px;margin-left: 5px;margin-right: 5px;}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .auction-active .art-item-wraper {
    padding: 10px;
  }
}

@media (min-width: 1600px) {
  .container.auction2-container {
    max-width: 1800px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.categories-bar-active .swiper-slide {
  width: auto;
}

.category-item {
  display: inline-block;
}
.category-item a {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-common-heading);
  border: 1px solid transparent;
  background: var(--clr-bg-white);
  display: inline-flex;
  align-items: center;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  padding: 0 23px;
}
.category-item a img {
  max-width: 19px;
  max-height: 19px;
  margin-right: 10px;
}
.category-item a:hover {
  border-color: var(--clr-theme-1);
}

.categories-bar-button-prev {
  font-size: 28px;
  color: var(--clr-common-heading);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 50px;
  line-height: 50px;
  z-index: 2;
}
.categories-bar-button-prev::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 50px;
  background: var(--clr-bg-white);
  opacity: 0.94;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .categories-bar-button-prev::before {
    width: 40px;
  }
}

.categories-bar-button-next {
  font-size: 28px;
  color: var(--clr-common-heading);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 50px;
  line-height: 50px;
  z-index: 2;
}
.categories-bar-button-next::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 50px;
  background: var(--clr-bg-white);
  opacity: 0.94;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .categories-bar-button-next::before {
    width: 40px;
  }
}

.item-category-select {
  width: 220px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--clr-bg-white);
  border-radius: 10px 0 0 10px;
  color: var(--clr-common-heading);
  font-weight: 600;
  background: var(--clr-bg-white);
  border-right-color: var(--clr-common-border);
}
@media (max-width: 575px) {
  .item-category-select {
    border-radius: 10px;
    border-right-color: var(--clr-bg-white);
  }
}

.filter-search-input {
  position: relative;
}
.filter-search-input input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 0 10px 10px 0;
  padding: 0 20px;
  outline: none;
}
@media (max-width: 575px) {
  .filter-search-input input {
    border: 1px solid var(--clr-bg-white);
    border-radius: 10px;
  }
}
@media (max-width: 575px) {
  .filter-search-input {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    display: inline-block;
  }
}
.filter-search-input button {
  position: absolute;
  right: 20px;
  top: 12px;
  color: #919191;
}

.sale-category-select {
  width: 190px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--clr-bg-white);
  border-radius: 0 10px 10px 0;
  color: var(--clr-common-heading);
  background: var(--clr-bg-white);
}

.select-category-title {
  width: 140px;
  display: inline-block;
  height: 50px;
  border: 1px solid var(--clr-bg-white);
  line-height: 50px;
  border-radius: 10px 0 0 10px;
  padding-left: 20px;
  color: var(--clr-common-heading);
  border-right-color: var(--clr-common-border);
  background: var(--clr-bg-white);
}
.select-category-title i {
  margin-right: 4px;
}

.art-filter-row {
  display: grid;
  grid-template-columns: auto 330px;
  grid-gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-filter-row {
    display: inherit;
  }
}
.art-filter-row .filter-by-search {
  display: grid;
  grid-template-columns: 220px auto;
}
@media (max-width: 575px) {
  .art-filter-row .filter-by-search {
    display: inherit;
  }
}

.art-item-img.art-details-img {
  max-width: 600px;
  height: 1100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .art-item-img.art-details-img {
    height: 1000px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .art-item-img.art-details-img {
    height: 800px;
  }
}
@media (max-width: 575px) {
  .art-item-img.art-details-img {
    height: 500px;
  }
}
.art-item-img.art-details-img a {
  height: 100%;
}
.art-item-img.art-details-img img {
  height: 100%;
  object-fit: cover;
}

.created-by {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--clr-common-body-text);
}

.creator {
  display: grid;
  grid-template-columns: 60px auto;
  grid-gap: 25px;
  align-items: center;
}
.creator .profile-img img {
  width: 60px;
  border: 0;
}
.creator .profile-verification {
  bottom: 0;
  right: -11px;
}
.creator .artist-id {
  font-weight: 600;
}

.art-name-details {
  border-top: 1px solid var(--clr-common-border);
  border-bottom: 1px solid var(--clr-common-border);
  padding: 17px 0 15px 0;
}
.art-name-details .art-name {
  font-size: 48px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .art-name-details .art-name {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .art-name-details .art-name {
    font-size: 32px;
  }
}

.art-details-meta-info .art-meta-type {
  font-size: 16px;
  margin-bottom: 13px;
}
.art-details-meta-info .art-price {
  font-size: 28px;
  color: var(--clr-common-heading);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-details-meta-info .art-price {
    font-size: 22px;
  }
}
.art-details-meta-info .art-sale {
  font-size: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-details-meta-info .art-sale {
    font-size: 22px;
  }
}
.art-details-meta-info .art-auction-ends {
  font-size: 28px;
  width: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-details-meta-info .art-auction-ends {
    font-size: 22px;
    width: 170px;
  }
}
.art-details-meta-info .art-meta-notice {
  margin-top: 6px;
}
.art-details-meta-info .artist-meta-item-border::after {
  right: -50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .art-details-meta-info .artist-meta-item-border::after {
    right: -25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .art-details-meta-info .artist-meta-item-border::after {
    right: -40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .art-details-meta-info .artist-meta-item-border::after {
    right: -55px;
  }
}
@media (max-width: 575px) {
  .art-details-meta-info .artist-meta-item-border::after {
    display: none;
  }
}

.art-meta-notice {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-common-heading);
}

.artist-meta-info.art-details-meta-info {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .artist-meta-info.art-details-meta-info {
    display: inherit;
  }
}
@media only screen and (min-width: 450px) and (max-width: 575px) {
  .artist-meta-info.art-details-meta-info {
    display: flex;
  }
}

.art-item-img .art-action-like-count {
  position: absolute;
  right: 48px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.art-details-action {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.art-details-action .place-bid {
  height: 50px;
  line-height: 50px;
  padding: 0 45px;
}
.art-details-action .art-action-like-count {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-heading);
  border: 1px solid var(--clr-bg-white);
  height: 50px;
  line-height: 48px;
  padding: 0 15px;
  background: var(--clr-bg-white);
}
.art-details-action .art-action-like-count i {
  margin-right: 10px;
}
.art-details-action .art-action-like-count::after {
  display: none;
}
.art-details-action .art-action-collection {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-heading);
  border: 1px solid var(--clr-bg-white);
  height: 50px;
  line-height: 48px;
  width: inherit;
  padding: 0 15px;
  background: var(--clr-bg-white);
}
.art-details-action .art-action-collection i {
  margin-right: 10px;
}

.social__links.art-item-share {
  display: grid;
  grid-template-columns: 37px auto;
  align-items: center;
}
.social__links.art-item-share ul li {
  margin-right: 13px;
}
.social__links.art-item-share ul li a {
  background: none !important;
  border: none !important;
  color: var(--clr-common-body-text);
  width: inherit;
  height: inherit;
}
.social__links.art-item-share ul li a:hover {
  color: var(--clr-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-details-content {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .artist-meta-info.art-details-meta-info .art-meta-item {
    margin-bottom: 20px;
  }
}

.art-information-tab-nav .nav-link {
  font-size: 16px;
  color: var(--clr-common-heading);
  height: 48px;
  padding: 0 5px;
  margin-right: 40px;
  position: relative;
  border: 0;
}
.art-information-tab-nav .nav-link:last-child {
  margin-right: 0px;
}
.art-information-tab-nav .nav-link:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--clr-theme-1);
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.art-information-tab-nav .nav-link:hover {
  color: var(--clr-theme-1);
  border: 0;
}
.art-information-tab-nav .nav-tabs {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 10px;
  padding: 0 30px;
}
.art-information-tab-nav .nav-link.active {
  color: var(--clr-theme-1);
  border: 0;
  background: none;
}
.art-information-tab-nav .nav-link.active::before {
  opacity: 1;
}

.placed-bids-wrapper {
  border: none;
  border-radius: 10px;
}
.placed-bids-wrapper .single-bid:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.single-bid {
  padding: 20px 30px 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  counter-increment: bid-serial;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 5px;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .single-bid {
    grid-template-columns: 80px auto;
  }
}
@media (max-width: 575px) {
  .single-bid {
    padding: 20px 20px 20px;
  }
}
.single-bid .creator {
  display: grid;
  grid-template-columns: 90px auto;
  grid-gap: 15px;
}
.single-bid .creator .profile-img img {
  width: 90px;
  border: 0;
}
@media (max-width: 575px) {
  .single-bid .creator .profile-img img {
    width: 80px;
  }
}
.single-bid .creator .artist-id {
  font-size: 14px;
  color: var(--clr-theme-1);
  margin-bottom: 16px;
}
.single-bid .artist-name {
  font-size: 18px;
  margin-bottom: 5px;
}
.single-bid .artist-name a:hover {
  color: var(--clr-theme-1);
}
.single-bid .profile-img::before {
  position: absolute;
  content: counter(bid-serial, decimal-leading-zero);
  font-size: 10px;
  font-weight: 600;
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 20px;
  border: 3px solid var(--clr-bg-white);
  border-radius: 50%;
  top: 10px;
  left: -13px;
}

.bid-date {
  font-size: 14px;
  line-height: 1;
  color: var(--clr-common-body-text);
}

.bid-time {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  line-height: 1;
  color: var(--clr-common-body-text);
}
.bid-time:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #b9b9b9;
  left: 10px;
}

.bid-date-time {
  display: flex;
}

.bid-status {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 9px;
}
.bid-status span {
  font-weight: 700;
}
.bid-status span.accepted {
  color: #20b17b;
}
.bid-status span.pending {
  color: #ff8a04;
}

.bid-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.bid-price-dollar {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.bid-pricing {
  text-align: right;
}
@media (max-width: 575px) {
  .bid-pricing {
    text-align: left;
    padding-left: 95px;
  }
}

.art-info-wrapper {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 10px;
  padding: 20px 30px 50px;
}
.art-info-wrapper ul li {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-common-heading);
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .art-info-wrapper ul li {
    margin-bottom: 10px;
  }
}

.art-info-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-body-text);
  width: 240px;
  display: inline-block;
  position: relative;
}
.art-info-title:after {
  position: absolute;
  content: ":";
  right: 50px;
}

.art-user-wrapper {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 10px;
  padding: 22px 30px 20px;
}
.art-user-wrapper ul li {
  margin-bottom: 4px;
  padding-left: 25px;
  position: relative;
}
.art-user-wrapper ul li:last-child {
  margin-bottom: 0;
}
.art-user-wrapper ul li:before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  left: 0;
  color: var(--clr-theme-1);
}

.note {
  color: var(--clr-common-heading);
  font-weight: 600;
}
.note span {
  font-weight: 700;
  margin-right: 10px;
}
.note .text-btn {
  text-decoration: underline;
}

.box-card-icon img {
  height: 64px;
}

.box-card-title {
  font-size: 24px;
  margin-bottom: 25px;
}

.box-card-single {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 10px;
  padding: 50px 30px 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .box-card-single {
    padding: 50px 20px 50px;
  }
}

.box-card-icon {
  margin-bottom: 40px;
}

.box-card-inner p {
  margin-bottom: 30px;
}

.box-card-wallet .box-card-icon {
  margin-bottom: 65px;
  margin-top: -65px;
  position: relative;
}
.box-card-wallet .box-card-icon img {
  height: 70px;
  position: relative;
}
.box-card-wallet .box-card-icon:before {
  position: absolute;
  content: "";
  background: #eef6ff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transform: translate(-25%, -25%);
}
.box-card-wallet .box-card-btn a {
  min-width: 180px;
}

.box-card-single.box-card-wallet {
  margin-top: 50px;
}

.box-card-wallet.wallet-metamask .box-card-icon::before {
  background: #fff4ee;
}

.box-card-wallet.wallet-fortmatic .box-card-icon::before {
  background: #eeefff;
}

.box-card-wallet.wallet-torus .box-card-icon::before {
  background: #eff1ff;
}

.box-card-wallet.wallet-bitski .box-card-icon::before {
  background: #ffebf0;
}

.box-card-wallet.wallet-coinbase .box-card-icon::before {
  background: #eff1ff;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .rank-list-container {
    overflow-x: scroll;
    scrollbar-width: thin;
  }
}

.rank-list-wrapper {
  border: 1px solid transparent;
  border-radius: 5px;
  min-width: 930px;
}

.rank-list-row-heading .rank-list-row {
  height: 60px;
}
.rank-list-row-heading .rank-list-cell {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-common-heading);
}

.rank-list-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  height: 112px;
  align-items: center;
  margin-bottom: 5px;
  border-radius: 5px;
}

.rank-list-items .rank-list-row {
  counter-increment: rank-serial;
}
.rank-list-items .rank-list-row:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.rank-list-items .rank-list-cell-sl span {
  position: relative;
}
.rank-list-items .rank-list-cell-sl span:before {
  content: counter(rank-serial, decimal-leading-zero);
}
.rank-list-items .rank-list-cell-hours {
  color: #2cbe58;
}
.rank-list-items .rank-list-cell-days {
  color: #dc1e1e;
}

.rank-list-cell {
  flex-grow: 1;
  padding-left: 25px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .rank-list-cell {
    padding-left: 15px;
  }
}

.rank-list-cell.rank-list-cell-sl {
  max-width: 55px;
}

.rank-list-cell.rank-list-cell-artwotrks {
  max-width: 100px;
}

.rank-list-cell.rank-list-cell-market {
  max-width: 80px;
}

.rank-list-cell.rank-list-cell-volume {
  max-width: 100px;
}

.rank-list-cell.rank-list-cell-hours {
  max-width: 80px;
}

.rank-list-cell.rank-list-cell-days {
  max-width: 90px;
}

.rank-list-cell.rank-list-cell-bids {
  max-width: 55px;
}

.rank-list-cell.rank-list-cell-price {
  max-width: 115px;
}

.rank-list-cell.rank-list-cell-owner {
  max-width: 200px;
}

.rank-list-cell.rank-list-cell-assets {
  max-width: 90px;
}

.art-item-single.art-item-single-rank {
  border-radius: 5px;
  width: 70px;
}

.art-item-single-rank .art-item-wraper {
  border: 0;
  padding: 0;
  border-radius: 5px;
}
.art-item-single-rank .art-item-img img {
  border-radius: 5px;
  width: 70px;
}

.top-seller-select {
  width: 120px;
}

.artwork-filter-row {
  display: grid;
  justify-content: end;
  gap: 15px;
  grid-template-columns: 150px 150px 150px 150px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .artwork-filter-row {
    grid-template-columns: 140px 140px 140px 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .artwork-filter-row {
    justify-content: start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .artwork-filter-row {
    justify-content: start;
    grid-template-columns: 150px 150px 150px;
  }
}
@media (max-width: 575px) {
  .artwork-filter-row {
    justify-content: start;
    grid-template-columns: 135px 135px;
  }
}
@media only screen and (min-width: 450px) and (max-width: 575px) {
  .artwork-filter-row {
    grid-template-columns: 150px 150px;
  }
}

.artworks-area-bg {
  background: var(--clr-bg-gray);
}

.art-item2-single .art-name {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 28px;
}
@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), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-item2-single .art-name {
    font-size: 24px;
  }
}
.art-item2-single .art-meta-type {
  font-size: 15px;
  color: var(--clr-common-heading);
  font-weight: 400;
  margin-bottom: 13px;
}
@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), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-item2-single .art-meta-type {
    margin-bottom: 7px;
  }
}
.art-item2-single .art-price,
.art-item2-single .art-auction-ends {
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-common-heading);
}
@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), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-item2-single .art-price,
.art-item2-single .art-auction-ends {
    font-size: 18px;
  }
}
.art-item2-single .artist .profile-img img {
  width: 50px;
}
.art-item2-single .artist .profile-verification {
  width: 15px;
  height: 15px;
}
.art-item2-single .artist .profile-img {
  margin-right: 15px;
}
.art-item2-single .artist-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.art-item2-single .creator-name-id .artist-id {
  font-size: 14px;
  color: var(--clr-common-body-text);
}
.art-item2-single .art-item-wraper {
  padding: 0;
  border: none;
}
.art-item2-single .artist {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 15px;
  background: var(--clr-bg-white);
  position: absolute;
  top: -40px;
  left: 40px;
  border-radius: 40px;
  padding-right: 30px;
}
@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), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-item2-single .artist {
    left: 30px;
  }
}
.art-item2-single .art-item-content {
  padding: 65px 40px 46px;
}
@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), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-item2-single .art-item-content {
    padding: 55px 30px 36px;
  }
}
.art-item2-single .art-item-img .place-bid {
  font-size: 15px;
}
.art-item2-single .art-meta-info {
  flex-wrap: wrap;
  gap: 20px;
  column-gap: 100px;
  justify-content: start;
}
@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), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .art-item2-single .art-meta-info {
    column-gap: 0;
    justify-content: space-between;
  }
}

.auction2-button-prev {
  position: absolute;
  top: calc(50% - 15px);
  left: -20px;
  z-index: 1;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .auction2-button-prev {
    left: -15px;
  }
}

.auction2-button-next {
  position: absolute;
  top: calc(50% - 15px);
  right: -20px;
  z-index: 1;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .auction2-button-next {
    right: -15px;
  }
}

.sidebar-art-list {
  display: flex;
  flex-direction: column;
  height: 460px;
  justify-content: space-between;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar-art-list {
    flex-direction: inherit;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    height: inherit;
    margin-top: 30px;
  }
}

@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: 768px) and (max-width: 991px) {
  .sidebar-art-list > div {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar-art-list > div {
    width: calc((100% - 0px) / 1);
  }
}

.sidebar-art-item .art-item-img {
  width: 140px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-art-item .art-item-img {
    width: 110px;
  }
}
.sidebar-art-item .art-item-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.sidebar-art-item .art-name {
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-art-item .art-name {
    font-size: 18px;
  }
}
.sidebar-art-item .artist-id {
  color: var(--clr-common-heading);
}
.sidebar-art-item .art-meta-type {
  font-size: 12px;
}
.sidebar-art-item .art-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-heading);
}
.sidebar-art-item .art-item-content .place-bid {
  font-size: 13px;
  font-weight: 600;
  padding: 0 12px;
  height: 30px;
  line-height: 30px;
  margin-top: 0;
}
.sidebar-art-item .art-meta-info {
  justify-content: space-between;
  align-items: center;
}
.sidebar-art-item .artist {
  margin-bottom: 20px;
}
.sidebar-art-item .art-item-content {
  padding: 0 10px 0;
  flex-grow: 1;
}

.artwork-btn {
  line-height: 1;
}

@media (min-width: 1500px) and (max-width: 1700px) {
  .home-3-artworks .col-xl-3 {
    width: 33.3333333333%;
  }
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .home-3-artworks .col-xl-3 {
    width: 50%;
  }
}

/*----------------------------------------
    08. creator CSS
----------------------------------------*/
.creator-single {
  transition: 0.3s;
}

.creator-cover-img img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 150px;
  object-fit: cover;
}

.creator-inner {
  border-radius: 10px;
}

.creator-content {
  border: 1px solid var(--clr-bg-white);
  border-radius: 0 0 10px 10px;
  padding: 0px 30px 30px 30px;
  text-align: center;
  background: var(--clr-bg-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .creator-content {
    padding: 0px 20px 30px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .creator-content {
    padding: 0px 10px 30px 10px;
  }
}

.artist-meta-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 37px;
}

.follow-artist {
  height: 40px;
  background-image: linear-gradient(to right, #2b81ff, #7237ff, #2b81ff);
  background-size: 200% 100%;
  display: inline-block;
  line-height: 40px;
  color: var(--clr-common-white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  padding: 0 27px;
  padding-left: 47px;
  position: relative;
  transition: 0.3s;
}
.follow-artist:before {
  position: absolute;
  content: "";
  left: 27px;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-common-white);
}
.follow-artist:hover {
  background-position: 100% 100%;
}

.follow-artist.followed {
  background: var(--clr-bg-white);
  color: var(--clr-common-body-text);
  border: 1px solid var(--clr-common-border);
}
.follow-artist.followed:before {
  content: "";
  color: var(--clr-common-body-text);
}

.creator-info {
  margin-top: -40px;
  z-index: 2;
  margin-bottom: 37px;
  margin-top: -40px;
  z-index: 2;
  margin-bottom: 37px;
}
.creator-info .artist-name {
  font-size: 18px;
  margin-bottom: 4px;
}
.creator-info .artist-name a:hover {
  color: var(--clr-theme-1);
}
.creator-info .artist-id {
  color: var(--clr-theme-1);
  font-size: 14px;
  font-weight: 600;
}
.creator-info .profile-img {
  margin-bottom: 18px;
}

.artist-meta-type {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 7px;
  color: var(--clr-common-body-text);
}

.artist-created {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.artist-likes {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.artist-follwers {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.artist-followed {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.artist-art-collection {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.artist-art-featured {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.artist-art-sold {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.artist-art-bids {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.artist-meta-item-border {
  position: relative;
}
.artist-meta-item-border:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--clr-common-border);
  top: -1px;
  right: -25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .artist-meta-item-border:after {
    right: -18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .artist-meta-item-border:after {
    right: -20px;
  }
}
@media only screen and (min-width: 450px) and (max-width: 575px) {
  .artist-meta-item-border:after {
    right: -75px;
  }
}

.tag-featured {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-common-white);
  background: #ff7801;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  padding: 0px 12px;
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  z-index: 1;
}

.tag-featured i {
  margin-right: 5px;
  font-size: 13px;
}

.creator-single-short {
  transition: 0.3s;
  border-radius: 0px;
}

.creator-single-short.creator-single-filled {
  background: var(--clr-bg-white);
  padding: 30px 30px;
  border-radius: 10px;
}

.creator-short-content {
  display: flex;
  column-gap: 15px;
  align-items: center;
  text-align: inherit;
  border-radius: 10px;
  padding: 0 0;
  background: none;
  border: none;
}
.creator-short-content .creator-info .artist-id {
  font-weight: 400;
}
.creator-short-content .creator-info .artist-name {
  padding-right: 18px;
}
.creator-short-content .profile-img img {
  width: 70px;
  border-width: 4px;
}
.creator-short-content .profile-verification {
  right: 0;
  bottom: 4px;
  width: 12px;
  height: 12px;
  border: 0;
  line-height: 12px;
  font-size: 6px;
}
.creator-short-content .creator-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  margin-top: 0;
  align-items: start;
  flex-grow: 1;
  flex-wrap: wrap;
  gap: 5px;
}
.creator-short-content .creator-info .follow-artist {
  height: 40px;
  line-height: 38px;
  padding: 0 15px;
  padding-left: 15px;
  padding-left: 30px;
  background: var(--clr-bg-white);
  color: var(--clr-common-white);
  background-image: linear-gradient(to right, #2b81ff, #7237ff, #2b81ff);
  background-size: 200% 100%;
}
.creator-short-content .creator-info .follow-artist:before {
  left: 14px;
  color: var(--clr-common-white);
}
.creator-short-content .creator-info .follow-artist.followed {
  background: var(--clr-bg-white);
  color: var(--clr-common-body-text);
  border: 1px solid var(--clr-common-border);
}
.creator-short-content .creator-info .follow-artist.followed:before {
  content: "";
  color: var(--clr-common-body-text);
}
.creator-short-content .artist-created {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-common-body-text);
  display: inline;
}
.creator-short-content .artist-meta-type {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-common-body-text);
  display: inline;
}
.creator-short-content .artist-follwers {
  font-size: 14px;
}
.creator-short-content .artist-meta-item-border:after {
  top: 0;
  left: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .creator-short-content .artist-meta-item-border:after {
    left: -12px;
  }
}
.creator-short-content .artist-meta-item-follower {
  padding-top: 18px;
  padding-bottom: 10px;
}

.featured-creator-content {
  border: 0;
  padding: 0;
  text-align: left;
  border-radius: 0;
  display: grid;
  grid-template-columns: 150px auto;
  grid-gap: 30px;
  align-items: center;
}
@media (max-width: 575px) {
  .featured-creator-content {
    display: inherit;
  }
}
.featured-creator-content .profile-img {
  margin-bottom: 50px;
}
.featured-creator-content .profile-img img {
  width: 150px;
  height: 160px;
  border: 0;
  border-radius: 10px;
}
.featured-creator-content .creator-info {
  margin-top: 0;
  margin-bottom: 50px;
}
.featured-creator-content .creator-info .artist-name {
  font-size: 20px;
  display: inline-block;
}
.featured-creator-content .creator-info .artist-id {
  margin-bottom: 6px;
  margin-top: 2px;
}
.featured-creator-content .profile-verification {
  right: -32px;
  bottom: 0;
}
.featured-creator-content .artist-follow-btn {
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-creator-content .artist-follow-btn {
    position: static;
    margin-top: 20px;
  }
}
.featured-creator-content .artist-meta-type {
  font-size: 14px;
  color: var(--clr-common-body-text);
  display: inline;
}
.featured-creator-content .artist-created {
  font-size: 14px;
  color: var(--clr-common-body-text);
  font-weight: 400;
  display: inline;
}
.featured-creator-content .artist-membership-year {
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-common-body-text);
  display: inline;
}
.featured-creator-content .artist-meta-item {
  display: inline-block;
  line-height: 1;
}
.featured-creator-content .artist-meta-item-border {
  padding-left: 20px;
}
.featured-creator-content .artist-meta-item-border:after {
  left: 7px;
  top: 0;
  background: var(--clr-common-body-text);
}

.featured-creator-wrapper {
  border: 1px solid var(--clr-common-white);
  padding: 30px 30px 0 30px;
  border-radius: 15px;
  background: var(--clr-common-white);
}
@media (max-width: 575px) {
  .featured-creator-wrapper {
    padding: 30px 20px 0 20px;
  }
}

.artist-membership-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 1;
}

.featured-creator-btn {
  margin-top: 12px;
}

.featured-creator-arts .art-item-wraper {
  padding: 0;
  border: 0;
}
.featured-creator-arts .art-item-img img {
  max-height: 300px;
  object-fit: cover;
}
.featured-creator-arts .artist-meta-item-border:after {
  right: -50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured-creator-arts .artist-meta-item-border:after {
    right: -35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-creator-arts .artist-meta-item-border:after {
    right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured-creator-arts .artist-meta-item-border:after {
    right: -30px;
  }
}
@media (max-width: 575px) {
  .featured-creator-arts .artist-meta-item-border:after {
    right: -15px;
  }
}
.featured-creator-arts .art-meta-info {
  padding-top: 0;
  border-top: 0;
  margin-top: 4px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-creator-arts .art-item-single {
    margin-bottom: 50px;
  }
}
.featured-creator-arts .art-item-single:hover {
  box-shadow: none;
}

.creator-cover-img.creator-details-cover-img img {
  height: 280px;
  border-radius: 0;
}
.creator-cover-img.creator-details-cover-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #010430;
  opacity: 0.45;
  top: 0;
  left: 0;
}

.creator-about {
  border: 1px solid var(--clr-bg-white);
  border-radius: 0 0 10px 10px;
  padding: 0 30px 30px;
  background: var(--clr-bg-white);
}
.creator-about .profile-img {
  width: calc(100% + 20px);
  height: 280px;
  background: var(--clr-bg-white);
  border-radius: 10px;
  margin-left: -10px;
  padding: 10px;
  margin-top: -95px;
  margin-bottom: 10px;
}
.creator-about .profile-img img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  object-fit: cover;
}
.creator-about .artist-name {
  font-size: 30px;
  display: inline-block;
  margin-bottom: 8px;
}
.creator-about .profile-verification {
  right: -30px;
  bottom: 3px;
}
.creator-about .artist-id {
  font-size: 18px;
  color: var(--clr-theme-1);
  margin-bottom: 25px;
}
.creator-about ul {
  margin-top: 25px;
  margin-bottom: 30px;
}
.creator-about ul li {
  margin-bottom: 3px;
}
.creator-about ul li i {
  color: #9b9b9b;
  width: 25px;
  display: inline-block;
}
.creator-about ul li a {
  color: var(--clr-theme-1);
}
.creator-about ul li:last-child {
  margin-bottom: 0;
}

.fill-btn.icon-left i {
  margin-right: 10px;
}

.message-creator-btn .fill-btn {
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.creator-details-meta-info .artist-meta-type {
  font-size: 14px;
}
.creator-details-meta-info .artist-created {
  font-size: 20px;
}
.creator-details-meta-info .artist-likes {
  font-size: 20px;
}
.creator-details-meta-info .artist-follwers {
  font-size: 20px;
}
.creator-details-meta-info .artist-followed {
  font-size: 20px;
}
@media (max-width: 575px) {
  .creator-details-meta-info .artist-meta-item-border::after {
    display: none;
  }
}

.creator-details-action {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.creator-details-action .follow-artist {
  height: 50px;
  line-height: 50px;
}

.social__links.creator-share {
  width: 50px;
  height: 50px;
  border: 1px solid var(--clr-common-border);
  border-radius: 5px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}
.social__links.creator-share > i {
  color: var(--clr-common-heading);
}

.profile-link-text {
  height: 50px;
  border: 1px solid var(--clr-common-border);
  display: inline-block;
  line-height: 48px;
  border-radius: 5px;
  padding: 0 50px 0 20px;
  font-weight: 600;
  color: var(--clr-common-heading);
  position: relative;
}
.profile-link-text button {
  color: var(--clr-common-heading);
  font-size: 24px;
  position: absolute;
  right: 15px;
  top: 3px;
}

.creator-info-bar {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  padding: 35px 30px 35px;
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .creator-info-bar {
    border-radius: 10px;
  }
}

.artist-meta-info.creator-details-meta-info {
  margin-bottom: 0;
  width: 410px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .artist-meta-info.creator-details-meta-info {
    width: 345px;
  }
}
@media (max-width: 575px) {
  .artist-meta-info.creator-details-meta-info {
    gap: 20px;
  }
}

.creator-info-tab-nav .artist-meta-type {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-heading);
  display: inline-block;
}
.creator-info-tab-nav .artist-created {
  font-size: 16px;
  font-weight: 900;
  color: var(--clr-theme-1);
  display: inline-block;
}
.creator-info-tab-nav .artist-art-collection {
  font-size: 16px;
  font-weight: 900;
  color: var(--clr-theme-1);
  display: inline-block;
}
.creator-info-tab-nav .artist-art-featured {
  font-size: 16px;
  font-weight: 900;
  color: var(--clr-theme-1);
  display: inline-block;
}
.creator-info-tab-nav .artist-art-sold {
  font-size: 16px;
  font-weight: 900;
  color: var(--clr-theme-1);
  display: inline-block;
}
.creator-info-tab-nav .artist-art-bids {
  font-size: 16px;
  font-weight: 900;
  color: var(--clr-theme-1);
  display: inline-block;
}
.creator-info-tab-nav .nav-tabs {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 10px;
  padding: 9px 40px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .creator-info-tab-nav .nav-tabs {
    padding: 9px 30px;
  }
}
.creator-info-tab-nav .nav-link {
  padding: 0px 5px;
  height: 40px;
  border: 0;
  position: relative;
}
.creator-info-tab-nav .nav-link:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--clr-theme-1);
  bottom: -9px;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .creator-info-tab-nav .nav-link:before {
    bottom: 5px;
  }
}
.creator-info-tab-nav .nav-link.active {
  color: var(--clr-theme-1);
  border: 0;
  background: none;
}
.creator-info-tab-nav .nav-link.active::before {
  opacity: 1;
}
.creator-info-tab-nav .artist-meta-item-border::after {
  right: -50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .creator-info-tab-nav .artist-meta-item-border::after {
    right: -28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .creator-info-tab-nav .artist-meta-item-border::after {
    display: none;
  }
}

.collected-items-wrapper .category-collections-wrapper {
  border-radius: 10px;
  padding: 10px;
}
.collected-items-wrapper .category-collections-wrapper .art-item-single {
  border-radius: 5px;
}
.collected-items-wrapper .category-collections-wrapper .art-item-img img {
  border-radius: 5px;
}
.collected-items-wrapper .category-collections-wrapper .row {
  --bs-gutter-x: 5px;
  --bs-gutter-y: 5px;
}
.collected-items-wrapper .collection-content {
  grid-template-columns: 50px auto;
}
.collected-items-wrapper .collection-content .profile-img img {
  width: 50px;
  border-width: 4px;
}
.collected-items-wrapper .collection-category .category-name {
  font-size: 16px;
}

.bid-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.bid-items .art-item-single {
  width: 60px;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .bid-items .art-item-single {
    width: 50px;
  }
}
.bid-items .art-item-single:hover .art-item-img a img {
  transform: scale(1);
}
.bid-items .art-item-wraper {
  border: 0;
  padding: 0;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .bid-items {
    gap: 10px;
    max-width: 110px;
  }
}

.bid-items-and-price {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 540px;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bid-items-and-price {
    max-width: 470px;
  }
}
@media (max-width: 575px) {
  .bid-items-and-price .bid-pricing {
    padding-left: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bids-items-wrapper .single-bid {
    display: inherit;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bids-items-wrapper .bid-items-and-price {
    max-width: inherit;
    margin-top: 20px;
  }
}

.profile-setting-list {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 0 0 10px 10px;
  padding: 30px 30px;
}
.profile-setting-list ul li {
  margin-bottom: 9px;
}
.profile-setting-list ul li a {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-common-heading);
  display: block;
}
.profile-setting-list ul li a i {
  margin-right: 15px;
}
.profile-setting-list ul li a:hover {
  color: var(--clr-theme-1);
}
.profile-setting-list ul li:last-child {
  margin-bottom: 0;
}
.profile-setting-list ul li.active a {
  color: var(--clr-theme-1);
}

.creator-info-details .creator-cover-img img {
  height: 160px;
}
.creator-info-details .profile-img img {
  width: 120px;
  height: 130px;
  border: 0;
  border-radius: 10px;
  margin-top: -45px;
}

.creator-img-name {
  display: flex;
  gap: 20px;
  padding: 0 20px 30px 30px;
  border-left: 1px solid var(--clr-bg-white);
  border-right: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  flex-wrap: wrap;
}
.creator-img-name .artist-name {
  font-size: 24px;
  display: inline-block;
  margin-right: 28px;
}
.creator-img-name .artist-name .profile-verification {
  right: -30px;
}
.creator-img-name .creator-name-id {
  padding-top: 17px;
}

.creator-name-id .artist-id {
  font-size: 15px;
  color: var(--clr-theme-1);
}

.change-photo {
  width: 30px;
  height: 30px;
  background: #171717;
  color: var(--clr-common-white);
  border-radius: 5px;
  text-align: center;
  line-height: 36px;
  position: absolute;
  cursor: pointer;
}

.creator-cover-img .change-photo {
  right: 10px;
  bottom: 10px;
}

.profile-img .change-photo {
  right: 5px;
  bottom: 5px;
}

.personal-info-text {
  min-height: 150px;
  border: 1px solid var(--clr-bg-white);
  border-radius: 5px;
  background: var(--clr-bg-white);
  padding: 15px 20px;
  margin-bottom: 30px;
}

.personal-info-btn {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.personal-info-btn button {
  min-width: 150px;
}

.top-seller-area {
  position: relative;
  z-index: 2;
}

/*----------------------------------------
    09. register CSS
----------------------------------------*/
.sign-up-area {
  background-size: cover;
  background-position: center;
}

.sign-up-wrapper {
  background: #eff1f5;
  padding: 55px 80px 60px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sign-up-wrapper {
    padding: 55px 40px 60px;
  }
}
@media (max-width: 575px) {
  .sign-up-wrapper {
    padding: 55px 15px 60px;
  }
}

.sign-up-inner {
  max-width: 690px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sign-up-inner {
    max-width: 600px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sign-up-inner {
    max-width: 535px;
  }
}

.sign-up-content h4 {
  font-size: 24px;
  margin-bottom: 13px;
}

.single-input-unit label {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-common-heading);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.single-input-unit input {
  height: 60px;
  width: 100%;
  border: 1px solid var(--clr-bg-white);
  border-radius: 5px;
  background: var(--clr-bg-white);
  color: var(--clr-common-heading);
  font-size: 16px;
  padding: 0 20px;
  outline: none;
  box-shadow: none;
  margin-bottom: 30px;
}
.single-input-unit input:focus {
  border-color: var(--clr-bg-white);
  background: var(--clr-bg-white);
  box-shadow: 0px 30px 50px rgba(28, 52, 94, 0.1);
  outline: none;
}

.sign-up-btn {
  display: flex;
  align-content: center;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sign-up-btn {
    flex-direction: column;
  }
}
.sign-up-btn .note {
  line-height: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sign-up-btn .note {
    line-height: inherit;
  }
}

.gender-category-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--clr-bg-white);
  border-radius: 5px;
  color: var(--clr-common-heading);
  background: var(--clr-bg-white);
  font-size: 16px;
  margin-bottom: 30px;
}

.sign-up-media-single {
  width: 260px;
  height: 60px;
  background: var(--clr-common-white);
  border-radius: 5px;
  display: inline-block;
  padding: 0 15px;
  line-height: 60px;
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  text-align: left;
}
.sign-up-media-single:hover {
  color: var(--clr-theme-1);
}
.sign-up-media-single:focus {
  color: #171717;
}
.sign-up-media-single img {
  width: 33px;
  margin-right: 15px;
}

.text-or {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-common-white);
  margin-bottom: 35px;
}

.sign-up-with-social {
  width: 34%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 10px 10px 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sign-up-with-social {
    position: relative;
    width: calc(100% + 160px);
    padding: 50px 0;
    margin-top: 50px;
    margin-left: -80px;
    margin-bottom: -60px;
  }
}

.sign-up-with-social-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
}
.sign-up-with-social-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #0421b1;
  opacity: 0.5;
}

.sign-up-with-social-content {
  text-align: center;
}

.sign-up-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-area {
  background-size: cover;
  background-position: center;
}

.login-wrapper {
  background: #eff1f5;
  padding: 55px 80px 60px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .login-wrapper {
    padding: 55px 15px 60px;
  }
}

.login-content h4 {
  font-size: 24px;
  margin-bottom: 40px;
}

.login-btn {
  display: flex;
  align-content: center;
  gap: 20px;
  flex-direction: column;
  text-align: center;
}

.contact-area {
  overflow: hidden;
}

.contact-content h4 {
  font-size: 30px;
  margin-bottom: 13px;
}
@media (max-width: 575px) {
  .contact-content h4 {
    font-size: 28px;
  }
}
.contact-content p {
  max-width: 700px;
}

.subject-category-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--clr-common-white);
  border-radius: 5px;
  color: var(--clr-common-heading);
  background: var(--clr-common-white);
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-btn .note {
  margin-bottom: 30px;
}
.contact-btn .fill-btn {
  min-width: 180px;
}

.single-input-unit textarea {
  height: 150px;
  width: 100%;
  border: 1px solid var(--clr-bg-white);
  border-radius: 5px;
  background: var(--clr-bg-white);
  color: var(--clr-common-heading);
  font-size: 16px;
  padding: 15px 20px;
  outline: none;
  box-shadow: none;
  margin-bottom: 30px;
  resize: none;
}
.single-input-unit textarea:focus {
  border-color: var(--clr-theme-1);
  background: var(--clr-common-white);
  box-shadow: 0px 30px 50px rgba(28, 52, 94, 0.1);
  outline: none;
}

.contact-map-wrapper {
  height: 100%;
}

.contact-map {
  position: absolute;
  width: 655px;
  height: calc(100% + 200px);
  top: -120px;
  left: 70px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-map {
    left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-map {
    position: static;
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 575px) {
  .contact-map {
    position: static;
    width: 100%;
    height: 300px;
  }
}

/*----------------------------------------
    10. process CSS
----------------------------------------*/
.work-processes .row > div {
  /* counter-increment: process-num; */
  /* counter-reset: tidbit-counter; */
  counter-increment: tidbit-counter;
}
.work-processes .row > div .step {
  font-size: 15px;
  position: absolute;
  right: 40px;
  top: 30px;
  z-index: 2;
color: #000;}
.active-dark-mode .work-processes .row > div .step {
  font-size: 15px;
  position: absolute;
  right: 40px;
  top: 30px;
  z-index: 2;
  color: #fff;
  }
.work-processes .row > div .step:before {
  position: absolute;
  content: counter(process-num, decimal-leading-zero);
  font-size: 60px;
  color: #eef1f6;
  font-weight: 900;
  z-index: -1;
  right: 50%;
  transform: translateX(50%);
}

.active-dark-mode .work-processes .row > div .step:before {
  position: absolute;
  /* counter-increment: tidbit-counter; */
  content: counter(tidbit-counter) " ";
  font-size: 60px;
  color: #eef1f6;
  font-weight: 900;
  z-index: -1;
  right: 50%;
  transform: translateX(50%);
  /* counter-reset: tidbit-counter; */
}
.work-process-single {
    background: #fff;
    border-radius: 50px;
    padding: 55px 40px 45px;
    border: 1px solid #00000012;
}
.active-dark-mode .work-process-single {
  background: #18182c;
  border-radius: 14px;
  padding: 55px 40px 45px;
  border: 1px solid #ffffff0a;
  /* counter-reset: tidbit-counter; */
  }


.box-rounded
{
	    border: 1px solid #00000014;
    box-shadow: 0px 0px 10px rgb(0 36 67 / 10%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(50px);
    background: linear-gradient(to bottom, #ffffffa1 0%, #ffffff61 100%);
    background-size: cover;
    border-radius: 20px;
	
}
.active-dark-mode .box-rounded

{
	
	    border: 1px solid #ffffff05;
    box-shadow: 0px 0px 10px rgb(5 4 8 / 10%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(50px);
    background: #18182c5c;
    background-size: cover;
    border-radius: 20px;
	
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .work-process-single {
    padding: 45px 30px 35px;
  }
}
.work-process-single:hover .process-icon img {
  transform: scale(1.05);
}

.work-process-content {
  text-align: center;
}

.work-process-content p {
  margin-bottom: 0;
}

.process-icon {
  height: 168px;
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .process-icon {
    height: 138px;
  }
}
.process-icon img {
  height: 100%;
  transition: 0.6s;
}

.process-title {
  font-size: 24px;
  margin-bottom: 22px;
}
.process-title a:hover {
  color: var(--clr-theme-1);
}

.text-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-theme-1);
  line-height: 20px;
  display: inline-flex;
  align-items: center;
}
.text-btn i {
  padding-left: 6px;
}
.text-btn:hover i {
  padding-left: 10px;
}

.process-btn {
  margin-top: 5px;
}

/*----------------------------------------
    11. account CSS
----------------------------------------*/
/* b-creator style */
.b-creator-text p {
  font-size: 18px;
  color: var(--clr-common-white);
  margin-bottom: 0;
}
.b-creator-text h4 {
  font-size: 36px;
  color: var(--clr-common-white);
  margin-bottom: 0;
}

.b-creator-wrapper {
  border-radius: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.b-creator-content {
  padding: 70px 80px 70px 440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .b-creator-content {
    padding: 70px 80px 70px 360px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .b-creator-content {
    padding: 70px 80px 70px 240px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .b-creator-content {
    padding: 70px 30px 70px 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .b-creator-content {
    padding: 70px 30px 70px 30px;
    display: inherit;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .b-creator-btn {
    margin-top: 30px;
  }
}
.b-creator-btn .fill-btn {
  color: var(--clr-common-heading);
  background: var(--clr-common-white);
}

/*----------------------------------------
    12. activity CSS
----------------------------------------*/
.activity-tab-nav .nav-link {
  font-size: 16px;
  color: var(--clr-common-heading);
  height: 48px;
  padding: 0 5px;
  position: relative;
  border: 0;
}
.activity-tab-nav .nav-link:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--clr-theme-1);
  bottom: -1px;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.activity-tab-nav .nav-link:hover {
  color: var(--clr-theme-1);
  border: 0;
}
.activity-tab-nav .nav-tabs {
  border: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  border-radius: 10px;
  padding: 0 30px;
  width: calc(100% - 360px);
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .activity-tab-nav .nav-tabs {
    width: calc(100% - 0px);
  }
}
.activity-tab-nav .nav-link.active {
  color: var(--clr-theme-1);
  border: 0;
  background: none;
}
.activity-tab-nav .nav-link.active::before {
  opacity: 1;
}
.activity-tab-nav nav {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .activity-tab-nav nav {
    display: inherit;
  }
}

.activity-wrapper-actions {
  border: none;
  border-radius: 10px;
}
.activity-wrapper-actions .activity-wrapper-action-single:last-child {
  border-bottom: 0;
  padding: 15px 30px;
}

.activity-wrapper-action-single {
  border-bottom: 1px solid var(--clr-bg-white);
  background: var(--clr-bg-white);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .activity-wrapper-action-single {
    padding: 15px 20px;
  }
}
.activity-wrapper-action-single .profile-img img {
  width: 70px;
  border: 0;
}

.activity-icon {
  width: 30px;
  height: 30px;
  border: 2px solid var(--clr-bg-white);
  background: var(--clr-theme-1);
  text-align: center;
  line-height: 30px;
  color: var(--clr-common-white);
  position: absolute;
  right: -10px;
  bottom: 5px;
  border-radius: 50%;
  font-size: 13px;
}

.actvity-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-heading);
  margin-bottom: 5px;
}
.actvity-text a {
  color: var(--clr-theme-1);
}

.activity-time {
  font-size: 14px;
  line-height: 1;
}

.activity-3dots-menu {
  position: absolute;
  right: 25px;
}
@media (max-width: 575px) {
  .activity-3dots-menu {
    right: 18px;
  }
}

.activity-icon.activity-like {
  background: #e93583;
}

.activity-icon.activity-bid {
  background: #22ceb1;
}

.activity-icon.activity-follow {
  background: #0b3f67;
}

.activity-icon.activity-collection {
  background: #ff7c24;
}

.activity-icon.activity-purchase {
  background: var(--clr-theme-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .recent-activity-area {
    padding-top: 60px;
  }
}

.recent-activity-wrapper {
  width: 850px;
  margin: 0 auto;
  padding: 20px 25px;
  background: var(--clr-common-white);
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .recent-activity-wrapper {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .recent-activity-wrapper {
    padding: 20px 15px;
  }
}

.recent-activity-wrapper .swiper-container-autoheight,
.recent-activity-wrapper .swiper-container-autoheight .swiper-slide {
  height: auto !important;
}

.recent-activity-single {
  text-align: center;
}
@media (max-width: 575px) {
  .recent-activity-single {
    text-align: left;
  }
}
.recent-activity-single .activity-wrapper-action-single {
  display: inline-flex;
  background: none;
  border-radius: 10px;
  gap: 10px;
  padding: 0;
  border: none;
  margin-bottom: 0;
}
.recent-activity-single .activity-wrapper-action-single .profile-img img {
  width: 40px;
  border: 0;
}
.recent-activity-single .activity-meta-text {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .recent-activity-single .activity-meta-text {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }
}
.recent-activity-single .actvity-text {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--clr-common-body-text);
  max-width: 600px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .recent-activity-single .actvity-text {
    max-width: 440px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .recent-activity-single .actvity-text {
    max-width: 290px;
  }
}
@media (max-width: 575px) {
  .recent-activity-single .actvity-text {
    white-space: normal;
  }
}
.recent-activity-single .actvity-text a,
.recent-activity-single .actvity-text span {
  font-weight: 600;
  color: var(--clr-common-heading);
}
.recent-activity-single .activity-time {
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  border-left: 1px solid var(--clr-common-border);
  margin-left: 20px;
}
@media (max-width: 575px) {
  .recent-activity-single .activity-time {
    padding-left: 0;
    border-left: none;
    margin-left: 0;
    padding-bottom: 3px;
  }
}

/*----------------------------------------
    13. forum CSS
----------------------------------------*/
.forum-search-bar .filter-by-search {
  display: grid;
  grid-template-columns: 220px auto;
}
@media (max-width: 575px) {
  .forum-search-bar .filter-by-search {
    display: inherit;
  }
}
.forum-search-bar .question-category-select {
  height: 60px;
  line-height: 60px;
  border-right-color: var(--clr-common-border);
}
@media (max-width: 575px) {
  .forum-search-bar .question-category-select {
    border-right-color: var(--clr-bg-white);
  }
}
.forum-search-bar .filter-search-input input {
  height: 60px;
}
.forum-search-bar .filter-search-input button {
  top: 18px;
}

.question-category-select {
  width: 220px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--clr-bg-white);
  border-radius: 10px 0 0 10px;
  color: var(--clr-common-heading);
  font-weight: 700;
}
@media (max-width: 575px) {
  .question-category-select {
    border-radius: 10px;
  }
}

.create-question-btn {
  height: 60px;
  background: var(--clr-theme-1);
  width: 100%;
  display: block;
  text-align: center;
  border: 1px solid var(--clr-theme-1);
  border-radius: 10px;
  line-height: 58px;
  color: var(--clr-common-white);
  font-weight: 700;
  position: relative;
}
.create-question-btn:before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  width: 40px;
  height: 40px;
  left: 10px;
  top: 10px;
  background: #4756e3;
  border-radius: 5px;
  font-weight: 500;
  line-height: 40px;
}
.create-question-btn:hover {
  color: var(--clr-common-white);
}

.tag {
  height: 40px;
  border: 1px solid var(--clr-common-border);
  padding: 0 10px;
  border-radius: 5px;
  display: inline-block;
  line-height: 38px;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-body-text);
  background: var(--clr-bg-white);
  text-align: center;
}
.tag:hover {
  color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}

.sidebar-widget-single .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar-widget-single .tags-list .tag {
  flex-grow: 1;
  max-width: 180px;
}

.auction-button-next.sidebar-auction-next {
  color: var(--clr-common-heading);
  font-size: 19px;
  top: -60px;
  transform: none;
}
.auction-button-next.sidebar-auction-next:hover {
  color: var(--clr-theme-1);
}

.auction-button-prev.sidebar-auction-prev {
  color: var(--clr-common-heading);
  font-size: 19px;
  top: -60px;
  left: auto;
  right: 26px;
  transform: none;
}
.auction-button-prev.sidebar-auction-prev:hover {
  color: var(--clr-theme-1);
}

.in-sidebar-auction .art-item-wraper {
  border: 0;
  padding: 0;
}

.q-single-wrapper {
  border: none;
  background: var(--clr-bg-white);
  border-radius: 10px;
}

.q-single-content {
  padding: 40px 40px 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .q-single-content {
    padding: 40px 15px 15px;
  }
}
.q-single-content .profile-img img {
  width: 70px;
  border: 0;
}

.author-name-time {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.name-post-time .artist-name {
  font-size: 20px;
  margin-bottom: 7px;
}

.post-date-time {
  display: flex;
  gap: 20px;
}

.post-date {
  font-size: 14px;
  color: var(--clr-common-body-text);
  line-height: 1;
}

.post-time {
  font-size: 14px;
  color: var(--clr-common-body-text);
  line-height: 1;
}

.item-border-before {
  position: relative;
}
.item-border-before:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #b9b9b9;
  left: -10px;
  top: -1px;
}

.post-question {
  font-size: 24px;
  margin-bottom: 13px;
}
@media (max-width: 575px) {
  .post-question {
    font-size: 22px;
  }
}

.post-inner-tags .tag {
  color: var(--clr-theme-1);
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  height: inherit;
  border: 0;
  background: none;
  line-height: 1;
  border-radius: 0;
}

.tags-list.post-inner-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
  margin-bottom: 8px;
}

.q-meta-type {
  font-size: 15px;
  color: var(--clr-common-heading);
  line-height: 1;
}

.q-meta-likes {
  font-size: 15px;
  color: var(--clr-common-heading);
  line-height: 1;
}

.q-meta-comments {
  font-size: 15px;
  color: var(--clr-common-heading);
  line-height: 1;
}

.q-meta-shares {
  font-size: 15px;
  color: var(--clr-common-heading);
  line-height: 1;
}

.q-meta-icon {
  font-size: 17px;
  color: var(--clr-common-heading);
  line-height: 1;
  margin-right: 5px;
}

.q-meta-item {
  display: flex;
  gap: 5px;
  align-items: center;
}
.q-meta-item a {
  display: flex;
  gap: 5px;
  align-items: center;
}
.q-meta-item button {
  display: flex;
  gap: 5px;
  align-items: center;
}

.q-meta-views {
  font-size: 15px;
  color: var(--clr-common-heading);
  line-height: 1;
}

.q-meta-viewed-member {
  padding-left: 19px;
  line-height: 1;
  margin-right: 5px;
}
.q-meta-viewed-member .profile-img img {
  width: 32px;
  border-width: 3px;
  margin-left: -19px;
}

.q-meta-content {
  display: flex;
  flex-wrap: wrap;
}
.q-meta-content .q-meta-item {
  border-top: 1px solid var(--clr-common-border);
  border-right: 1px solid var(--clr-common-border);
  height: 50px;
  flex-grow: 1;
  justify-content: center;
  padding: 0 10px;
}
.q-meta-content .q-meta-item:last-child {
  border-right: 0;
}
@media only screen and (min-width: 450px) and (max-width: 575px) {
  .q-meta-content .q-meta-item:nth-child(3) {
    border-right: 0;
  }
}

.comments-show .q-meta-content .q-meta-item {
  border-bottom: 1px solid var(--clr-common-border);
}
@media only screen and (min-width: 450px) and (max-width: 575px) {
  .comments-show .q-meta-content .q-meta-item:last-child {
    border-top: 0;
  }
}

.q-write-answer {
  padding: 30px 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .q-write-answer {
    padding: 30px 15px;
  }
}
.q-write-answer .profile-img img {
  width: 60px;
  border: 0;
}
.q-write-answer .answer-submit {
  flex-grow: 1;
}

.answer-submit textarea {
  border: 1px solid var(--clr-common-border);
  background: var(--clr-bg-white);
  border-radius: 10px;
  height: 150px;
  width: 100%;
  resize: none;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.answer-submit-btn {
  text-align: right;
}

.q-answers {
  padding: 0 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .q-answers {
    padding: 0 15px;
  }
}
.q-answers .q-single-answer:last-child {
  border-bottom: 0;
}

.q-single-answer {
  border-bottom: 1px solid var(--clr-common-border);
  margin-bottom: 30px;
}
.q-single-answer .profile-img img {
  width: 50px;
  border: 0;
}
.q-single-answer .name-post-time .artist-name {
  font-size: 18px;
}
.q-single-answer .post-date {
  font-size: 12px;
}
.q-single-answer .post-time {
  font-size: 12px;
}
.q-single-answer .author-name-time {
  gap: 10px;
}

.ans-meta-content {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.ans-meta-content .q-meta-item {
  padding-right: 20px;
  border-right: 1px solid #e3e3e3;
}
.ans-meta-content .q-meta-item:last-child {
  padding-right: 0;
  border-right: 0;
}
.ans-meta-content .q-meta-item button * {
  color: var(--clr-theme-1);
}
.ans-meta-content .q-meta-icon {
  font-size: 15px;
}
.ans-meta-content .q-meta-likes {
  font-size: 14px;
}
.ans-meta-content .q-meta-type {
  font-size: 14px;
}

.answer-text {
  margin-bottom: 15px;
}

.q-answers-btn {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 30px;
}

/*----------------------------------------
    14. footer CSS
----------------------------------------*/
.footer1-bg {
  background: var(--clr-bg-footer);
margin-top: 100px;}

.footer-area1-bg {
  background: var(--clr-bg-footer);
}

.footer-widget-title h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-common-heading);
  margin-bottom: 35px;
}

.footer-widget ul li {
  margin-bottom: 10px;
}
.footer-widget ul li a {
  font-size: 18px;
  color: var(--clr-common-body-text);
}
.footer-widget ul li a:hover {
  color: var(--clr-common-heading);
}
.footer-widget ul li:last-child {
  margin-bottom: 0;
}
.footer-widget p {
  font-size: 16px;
  color: var(--clr-common-body-text);
}

.social__links.footer__social ul {
  display: inline-flex;
  gap: 10px;
}
.social__links.footer__social ul li {
  margin-bottom: 0;
}

.footer1-widget1 {
  max-width: 335px;
  margin-right: -35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer1-widget1 {
    margin-right: 0;
  }
}

.footer1-widget2 {
  margin-left: auto;
  max-width: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer1-widget2 {
    margin-left: 0;
  }
}

.footer1-widget3 {
  margin-left: auto;
  max-width: 165px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer1-widget3 {
    margin-left: 0;
  }
}

.footer1-widget4 {
  margin-left: auto;
  max-width: 185px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer1-widget4 {
    margin-left: 0;
  }
}

.subscribe-form {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.subscribe-form::before {
  position: absolute;
  content: "";
  top: 21px;
  color: #86909d;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  left: 19px;
}
.subscribe-form input {
  width: 100%;
  height: 70px;
  line-height: 60px;
  padding: 0 180px 0 45px;
  color: var(--clr-common-heading);
  border-radius: 5px;
  background: #eff1f5;
  border: none;
  outline: none;
  border-radius: 20px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .subscribe-form input {
    padding: 0 20px 0 45px;
  }
}
.subscribe-form input::placeholder {
  font-size: 14px;
  color: #86909d;
}
.subscribe-form input::focus {
  border: 0;
}
.subscribe-form button {
  font-size: 16px;
  font-weight: 700;
  text-transform: inherit;
  line-height: 50px;
  text-align: center;
  height: 50px;
  background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
  background-size: 200% 100%;
  color: var(--clr-common-white);
  border: none;
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  padding: 0 30px;
}
@media (max-width: 575px) {
  .subscribe-form button {
    position: static;
    margin-top: 20px;
  }
}
.subscribe-form button:hover {
  box-shadow: 0 20px 40px 0 rgb(83 194 247 / 35%);
}
.subscribe-form button i {
  color: var(--clr-common-white);
  margin-left: 10px;
}

.irc-item {
  display: flex;
}

.irc-item-icon {
  margin-right: 20px;
}
.irc-item-icon i {
  font-size: 50px;
  color: var(--clr-theme-1);
}

.irc-item-content p {
  font-size: 14px;
  color: var(--clr-common-body-text);
  margin-bottom: 0;
}
.irc-item-content a {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-common-heading);
}

.copyright1-inner {
  background: var(--clr-bg-dark);
  padding: 30px 30px 30px;
  border-radius: 10px 10px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright1-inner {
    padding: 30px 50px 30px;
  }
}
@media (max-width: 575px) {
  .copyright1-inner {
    padding: 30px 15px 30px;
  }
}

.copyright2-inner {
  padding: 22px 30px;
  background: var(--clr-bg-footer);
  border-radius: 10px 10px 0 0;
}

.irc-item.copyright-support {
  align-items: center;
  display: flex;
}

.copyright1-support {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright1-support {
    margin-left: 0;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.copyright-text {
  color: var(--clr-common-body-text);
  font-size: 16px;
}
.copyright-text a {
  color: var(--clr-theme-1);
}

.copyright1-text {
  max-width: 196px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright1-text {
    max-width: inherit;
  }
}

.copyright2-text {
  max-width: 196px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright2-text {
    max-width: inherit;
    margin: 10px 0;
  }
}

.copyright-support-lines {
  position: relative;
  height: 70px;
}
.copyright-support-lines::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70px;
  background: var(--clr-common-border);
  top: 0;
  left: -75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .copyright-support-lines::before {
    left: -40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .copyright-support-lines::before {
    left: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-support-lines::before {
    left: -55px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright-support-lines::before {
    display: none;
  }
}
.copyright-support-lines::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 70px;
  background: var(--clr-common-border);
  top: 0;
  right: -15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .copyright-support-lines::after {
    right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-support-lines::after {
    display: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright-support-lines::after {
    display: none;
  }
}

.subscribe-form-copyright1 {
  margin-left: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe-form-copyright1 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .subscribe-form-copyright1 {
    margin-left: 0;
  }
}

.social__links.footer__social ul li a {
  color: var(--clr-common-heading);
}
.social__links.footer__social ul li a:hover {
  color: var(--clr-bg-white);
}

/*----------------------------------------
    15. body-color CSS
----------------------------------------*/
.body-bg {
    background: #eff1f5;
    background-image: url(https://storage2.perfectcdn.com/9e41b1/sy4o8e86rjf38h24.jpg) !important;
    /* background-position: top; */
    background-size: cover;
}

.body-bg.dark,
.body-bg.active-dark-mode {
  background: #111826;
  background-image: url(https://storage2.perfectcdn.com/9e41b1/3kgc4u2hi0sumna2.jpg) !important;
  /* background-position: top; */
  background-size: cover;
  }

.body-bg.white {
  background: var(--clr-common-white);
}

.active-dark-mode .work-processes .row > div .step::before {
  color: #ffffff08;
}
.active-dark-mode .header1-logo .logo-bw {
  display: block;
}
.active-dark-mode .header1-logo .logo-bb {
  display: none;
}
.active-dark-mode .footer-logo .logo-bw {
  display: block;
}
.active-dark-mode .footer-logo .logo-bb {
  display: none;
}
.active-dark-mode .sticky {
  box-shadow: 0px 0px 10px rgb(148 148 151 / 10%);
  background-color: rgb(22 22 36);
}
.active-dark-mode .header-main2.sticky {
  background: none;
}
.active-dark-mode .home3-mode-switch .label .fa-moon {
  display: none;
}
.active-dark-mode .sign-up-wrapper,
.active-dark-mode .login-wrapper {
  background: var(--clr-bg-footer);
}
.active-dark-mode .copyright-support-lines::before {
  background: #222c3a;
}
.active-dark-mode .copyright-support-lines::after {
  background: #222c3a;
}
.active-dark-mode .copyright-text {
  color: var(--clr-common-white);
}
.active-dark-mode .subscribe-form input {
  background: #1a1a2d52;
  border: solid 2px #ded3ff1c;
}
.active-dark-mode .social__links ul li a {
  background: #202036;
  border: 1px solid #ffffff08;
}
.active-dark-mode .social__links ul li a:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.active-dark-mode .menu2-sidebar-widget .work-process-single {
  background: #1c2434;
}
.active-dark-mode .menu2-side-bar {
  background: #181f2d;
}
.active-dark-mode .menu2-side-bar {
  border-color: #262e3e;
}
.active-dark-mode .menu2-mobile-menu {
  border-color: #262e3e;
}
.active-dark-mode .sidebar-creators-list .creator-single-short {
  border-color: #262e3e;
}
.active-dark-mode .header-main2 {
  background: #111826;
}
.active-dark-mode .sidebar-category-filter {
  border-color: #262e3e;
}
.active-dark-mode .home3-mode-switch .label {
  border-color: #39404e;
}
.active-dark-mode .header-main2-content .filter-search-input.header-search input {
  background: #1c2434;
}
.active-dark-mode .header-main2-content {
  background: #181f2d;
}
.active-dark-mode .menu2-mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  background: #181f2d;
}

.active-light-mode .home3-mode-switch .label .fa-sun {
  display: none;
}
.active-light-mode .filter-search-input.header-search input {
  border: 1px solid #d6d6d6;
}

.mode-switch-wrapper {
    position: fixed;
    right: -7px;
    /* top: 50%; */
    /* transition: 0.3s; */
    /* z-index: 2; */
    /* transform: translateY(-50%) rotate(90deg); */
    left: 24%;
	width: 100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mode-switch-wrapper {
    right: -9px;
  }
  
 
}
@media only screen and (min-width: 576px) and (max-width: 993px), (max-width: 575px) {
 .theme__switcher-btn {
	font-size: 14px;
 }
  .mode-switch-wrapper {
        position: absolute;
    right: -7px;
    /* top: 50%; */
    /* transition: 0.3s; */
    /* z-index: 2; */
    /* transform: translateY(-50%) rotate(90deg); */
  left: 48%;
    zoom: 67%;
}
}
.checkbox {
  /* opacity: 0; */
  /* position: absolute; */
}

.label {
  background-color: #111;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  position: relative;
  height: 26px;
  width: 50px;
  transform: scale(1.4);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .label {
    transform: scale(1.2);
  }
}

.active-dark-mode .label .ball {
  background-color: var(--clr-common-white);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  transform: translateX(0px);
  transition: transform 0.2s linear;
}

.active-light-mode .label .ball {
  background-color: var(--clr-common-white);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  transform: translateX(24px);
  transition: transform 0.2s linear;
}

.active-light-mode .checkbox:checked .ball {
  transform: translateX(0px);
}

.active-dark-mode .checkbox:checked .ball {
  transform: translateX(24px);
}

.fa-moon {
  color: #f1c40f;
}

.fa-sun {
  color: #f39c12;
}

.header1-logo .logo-bw {
  display: none;
}

.footer-logo .logo-bw {
  display: none;
}

/*----------------------------------------
    16. wallet CSS
----------------------------------------*/
.wallet-col-width-20 {
  width: 20%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wallet-col-width-20 {
    width: 33.3333%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .wallet-col-width-20 {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .wallet-col-width-20 {
    width: 100%;
  }
}

.oc-wallet {
  background: #fff;
    
    
    border: 1px solid #00000012;
  border-radius: 10px;
  padding: 35px 15px 30px 15px;
border-radius: 35px;}


.active-dark-mode .oc-wallet {
  background: #18182c;
  border-radius: 10px;
  padding: 35px 15px 30px 15px;
  border: 1px solid #ffffff0a;
  border-radius: 14px;
  }


.oc-wallet:hover .oc-wallet-title {
  color: var(--clr-common-heading);
}
.oc-wallet-icon {
  margin-bottom: 15px;
}
.oc-wallet .oc-wallet-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-common-body-text);
  margin-bottom: 0px;
}

.oc-category {
  text-align: center;
}
.oc-category-img {
  overflow: hidden;
  border-radius: 13px;
  margin-bottom: 25px;
}
.oc-category-img img {
  width: 100%;
}
.oc-category .oc-category-title {
  font-size: 18px;
  color: var(--clr-common-heading);
  font-weight: 700;
}
.oc-category .oc-category-title a:hover {
  color: var(--clr-theme-1);
}
.oc-category:hover img {
  transform: scale(1.1);
}

.oc-category-area {
  background: #68686808;
}
 .form-shadow {
	  margin: 24px auto 48px auto;
	  box-sizing: border-box;
	  border-radius: 9px;
	  display: flex;
	  justify-content: flex-end;
	  margin: 16px 0;
	  width: 100%;
	  background: #d2d2d252;
	  border: solid 2px #0043761a;
	  padding: 18px;
color: #000;font-weight: 700;}
/*# sourceMappingURL=style.css.map */
.active-dark-mode .form-shadow {
	  margin: 24px auto 48px auto;
	  box-sizing: border-box;
	  border-radius: 9px;
	  display: flex;
	  justify-content: flex-end;
	  margin: 16px 0;
	  width: 100%;
	  background: #1a1a2d52;
	  border: solid 2px #ded3ff1c;
	  padding: 18px;
color: #fff;font-weight: 700;}


.form-shadow:focus {
	 background: rgb(255 255 255 / 6%);
	 /* border: solid 2px #ded3ff1c; */
	 border: solid 2px #44afff;
	 box-shadow: inset 0 0 0 0 #2f91e045, 0 0 25px rgb(5 136 207 / 30%);
background: none;}
 .padding40 {
    padding: 29px;
}

a, a:focus, input, input:focus, textarea, textarea:focus {
    outline: none;
    /* font-family: Gilroy; */
    color: var(--clr-common-heading);
}
.mb-32 {
    margin-bottom: 32px;
}
.feature-icon {
    width: 150px;
    height: 150px;
    line-height: 200px;
    text-align: center;
background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
    border-radius: 30% !important;}
.d-inline-block {
    display: inline-block !important;
}

.saasTemp__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 210px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.saasTemp__item div:first-child {
  font-size: 52px;
  font-weight: 500;
  line-height: 63px;
  letter-spacing: -1.399999976158142px;
  margin-right: 16px;
  color: #fff;
}

.saasTemp__item div:last-child {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -1.399999976158142px;
  color: #fff;
}

.saasTemp__image {
  position: absolute;
  bottom: 0px;
  right: 2%;
  max-width: 913px;
  width: 100%;
  border-radius: 3.19694px;
}

.saasTemp__image img {
  width: 98%;
}

.library {
  /* background: #131921; */
  padding-top: 150px;
  padding-bottom: 124px;
  position: relative;
  /* overflow: hidden; */
}

.library .my-container {
  position: relative;
}

.library__left {
  position: absolute;
  max-width: 605px;
  width: 100%;
  top: 20%;
  right: 74%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.library__left img {
  width: 100%;
}

.library__right {
  position: absolute;
  width: 605px;
  top: 50%;
  left: 76%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.library__right img {
  width: 100%;
}

.library h2 {
  text-align: center;
font-size: 82px;}

.library p {
  margin-top: 32px;
  margin-bottom: 44px;
  text-align: center;
}

.library p span {
  display: block;
}


.wrapper__side-working {
    border-radius: 16px;
    padding: 11rem 8rem;
    height: 100%;
    }

.bg__black {
    background-color: #2b91e9;
box-shadow: 0 20px 40px 0 rgb(59 123 238 / 40%);}

.path__2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.font__size--40 {
    font-size: 50px !important;
font-weight: bold;}

.color__white {
    color: #ffffff !important;
}

.font__size--12 {
    font-size: 13px !important;
}

.opacity__5 {
    opacity: 0.8;
    transition: 0.5s;
}
.wrapper__list-experience {
    background: linear-gradient(to bottom, #ffffffa1 0%, #ffffff61 100%);
    
    
    border: 1px solid #00000012;
    
    
    
    
    border-radius: 10px;
    padding: 2rem;
    transition: 0.5s;
    width: 100%;
}
.active-dark-mode .wrapper__list-experience {
    background: #0d0d2626;
    
    
    border: 1px solid #ffffff0a;
    background-color: #0d0d2626;
    border-radius: 10px;
    padding: 2rem;
    transition: 0.5s;
    width: 100%;
}

.wrapper__list-experience:hover {
    box-shadow: -25px 47px 66px 0px #00000014;
    transform: translateX(2rem);
}
.flex-shrink-0 {
    -ms-flex-negative: 0!important;
    flex-shrink: 0!important;
}
.font__size--24 {
    font-size: 24px !important;
color: #000;}
.active-dark-mode .font__size--24 {
    font-size: 24px !important;
color: #fff;}

.semi-bold {
    font-weight: 600 !important;
}

.color__gray-1 {
    color: #9D9D9D !important;
line-height: 17px;}

.align-content-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between!important;
}

.ml-3, .mx-3 {
    margin-left: 1rem!important;
}

.feature-iconnew {
    width: 85px;
    height: 85px;
    line-height: 110px;
    text-align: center;
    background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
    border-radius: 30% !important;
}

.regnewbut {
	
	    width: 100%;
    text-align: -webkit-center;
    background: #fff;
    padding: 20px 70px 20px 70px;
    color: #000;
    border-radius: 15px;
    box-shadow: 0 9px 26px 0 rgb(30 70 141 / 40%);
display: block;}
.regnewbut:hover {
    width: 100%;
    text-align: -webkit-center;
    background: #ffffffeb;
    padding: 20px 70px 20px 70px;
    color: #000;
    border-radius: 15px;
    box-shadow: 0 17px 35px 0 rgb(6 31 75 / 40%);
}


.lang {
    display: block;
    width: 100px;
    position: relative;
    z-index: 100;
    text-align: left;
    flex-shrink: 0;
    -ms-flex-negative: 0;
}
.lang__current {
    display: block;
    width: 117Px;
    height: 40px;
    position: relative;
    line-height: 41px;
    padding-left: 37px;
    background: #ececed;
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 30%);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    font-family: Arial,Helvetica,sans-serif;
    color: #000000;
    cursor: default;
    border: 1px solid #1a1a1a0d;
    overflow: hidden;
    border-radius: 11px;
}

.active-dark-mode .lang__current {
    display: block;
    width: 117Px;
    height: 40px;
    position: relative;
    line-height: 41px;
    padding-left: 37px;
    background: #ffffff08;
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 30%);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #ffffff;
    cursor: default;
    border: 1px solid #ffffff03;
    overflow: hidden;
    border-radius: 11px;
}

 
.lang.opened .lang__list {
    display: block;
}
.lang__item img {
	display: initial;
    margin-right: 6px;
    vertical-align: baseline;
}
.lang__list {
    display: none;
    list-style-type: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 0;
    margin: 0;
    background: #f9f9f9;
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 30%);
    border-radius: 10px;
    position: absolute;
    width: 120px;
    margin-top: 5px;
    border: 1px solid #00000003;
}


.active-dark-mode .lang__list {
    display: none;
    list-style-type: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 0;
    margin: 0;
    background: #242433;
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 30%);
    border-radius: 10px;
    position: absolute;
    width: 120px;
    margin-top: 5px;
    border: 1px solid #ffffff03;
    }

.lang__item {
    display: block;
    width: 100%;
    height: 28px;
    padding-left: 9px;
    line-height: 28px!important;
    color: #000000!important;
    font-size: 13px!important;
    font-weight: 700!important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    /* text-transform: uppercase; */
}


.active-dark-mode .lang__item {
    display: block;
    width: 100%;
    height: 28px;
    padding-left: 9px;
    line-height: 28px!important;
    color: #ffffff!important;
    font-size: 13px!important;
    font-weight: 700!important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    /* text-transform: uppercase; */
}


.lang__current:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 18px;
    right: 7px;
    border-left: 4px solid transparent;
    border-right: 4px solid #ffffff00;
    border-top: 4px solid #0000002e;
}



.active-dark-mode .lang__current:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 18px;
    right: 7px;
    border-left: 4px solid transparent;
    border-right: 4px solid #ffffff00;
    border-top: 4px solid #ffffff14;
}

.lang.opened .lang__current:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 18px;
    right: 7px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: none;
    border-bottom: 4px solid #ffffff14;
}
.lang__current img {
    display: block;
    position: absolute;
    top: 12px;
    left: 9px;
}
.collection__item {
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -o-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 14px;
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
    /* padding: 20px 18px 13px; */
}
.collection__item:hover::before {
    visibility: visible;
    opacity: 1;
}

.collection__item::before {
    left: 0;
    top: 0;
    width: calc(100% + 6px);
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #46a0ff 100%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    margin: -3px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -o-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 15px;
}

.wallet__item::before, .create__item::before, .create__preview .nft__box::before, .app__wrapper::before, .subscribe__wrapper::before, .features__item::before, .collection__item::before, .bid__item::before, .seller__item::after, .seller__item::before {
    position: absolute;
    content: "";
}

.collection__item2 {
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -o-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 14px;
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
    /* padding: 20px 18px 13px; */
}
.collection__item2:hover::before {
    visibility: visible;
    opacity: 1;
}

.collection__item2::before {
    left: 0;
    top: 0;
    width: calc(100% + 6px);
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #46a0ff 100%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    margin: -3px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -o-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 16px;
}

.wallet__item::before, .create__item::before, .create__preview .nft__box::before, .app__wrapper::before, .subscribe__wrapper::before, .features__item::before, .collection__item2::before, .bid__item::before, .seller__item::after, .seller__item::before {
    position: absolute;
    content: "";
}

.collection__item3 {
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -o-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 14px;
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
    /* padding: 20px 18px 13px; */
}
.collection__item3:hover::before {
    visibility: visible;
    opacity: 1;
}

.collection__item3::before {
    left: 0;
    top: 0;
    width: calc(100% + 6px);
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #46a0ff 100%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3771FE 100%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    margin: -3px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -o-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 16px;
}

.wallet__item::before, .create__item::before, .create__preview .nft__box::before, .app__wrapper::before, .subscribe__wrapper::before, .features__item::before, .collection__item3::before, .bid__item::before, .seller__item::after, .seller__item::before {
    position: absolute;
    content: "";
}

.skiptranslate {
    display: none !important;
}

 
.goog-text-highlight {
    background-color: inherit;
    box-shadow: none;
    box-sizing: inherit;
}

.clear {
    top: 0px !important;
}



.custom-table {
  min-width: 900px; }
  
  
  .custom-table thead tr, .custom-table thead th {
    padding-bottom: 30px;
    border-top: none;
    border-bottom: none !important;
    color: #000;
    font-size: 11px;
    text-transform: uppercase;
    /* letter-spacing: .1rem; */
    }
	
	.active-dark-mode  .custom-table thead tr, .active-dark-mode .custom-table thead th {
    padding-bottom: 30px;
    border-top: none;
    border-bottom: none !important;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    /* letter-spacing: .1rem; */
    }
	
	
  .custom-table tbody th, .custom-table tbody td {
    color: #032038;
    padding-bottom: 30px;
    padding-top: 30px;
    font-weight: 500;
    border: none;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    }
	
	.active-dark-mode  .custom-table tbody th, .active-dark-mode .custom-table tbody td {
    color: #ffffff;
    padding-bottom: 30px;
    padding-top: 30px;
    font-weight: 500;
    border: none;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    }
	
	
	
    .custom-table tbody th small, .custom-table tbody td small {
      color: rgba(255, 255, 255, 0.3);
      font-weight: 300; }
    .custom-table tbody th a, .custom-table tbody td a {
      color: rgba(255, 255, 255, 0.3); }
    .custom-table tbody th .more, .custom-table tbody td .more {
      color: rgba(255, 255, 255, 0.3);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .2rem; }
  .custom-table tbody tr {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
	
    .custom-table tbody tr:hover td, .custom-table tbody tr:focus td {
      color: #000; }
	  
	  
	  .active-dark-mode .custom-table tbody tr:hover td, .active-dark-mode .custom-table tbody tr:focus td {
      color: #fff; }
	  
	  
	  
      .custom-table tbody tr:hover td a, .custom-table tbody tr:focus td a {
        color: #fdd114; }
      .custom-table tbody tr:hover td .more, .custom-table tbody tr:focus td .more {
        color: #fdd114; }
  .custom-table .td-box-wrap {
    padding: 0; }
  .custom-table .box {
    background: #fff;
    border-radius: 4px;
    margin-top: 15px;
    margin-bottom: 15px; }
    .custom-table .box td, .custom-table .box th {
      border: none !important; }
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-spacing: 0px;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
background-color: rgb(235 235 236 / 0%);
    --bs-table-accent-bg: rgb(0 0 0 / 2%);
}

.active-dark-mode .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgb(0 0 0 / 10%);
   --bs-table-accent-bg: rgb(0 0 0 / 2%);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  /* display: block; */
  /* width: 100%; */
  /* overflow-x: auto; */
}

.table-responsive > .table-bordered {
  border: 0;
}


.dropup,
.dropdown {
    position: relative;
}
.dropdown-toggle:focus {
    outline: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 0px 0;
    margin: 0px 0 0;
    list-style: none;
    font-size: 16px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: solid 2px #cbcbcb96;
}

.active-dark-mode .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 0px 0;
    margin: 0px 0 0;
    list-style: none;
    font-size: 16px;
    text-align: left;
    background-color: #0d0d21;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: solid 2px #ded3ff1c;
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}
.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333333;
    white-space: inherit;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: #2fa4e7;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    background-color: #2fa4e7;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    cursor: not-allowed;
}
.open > .dropdown-menu {
    display: block;
}
.open > a {
    outline: 0;
}
.dropdown-menu-right {
    left: auto;
    right: 0;
}
.dropdown-menu-left {
    left: 0;
    right: auto;
}
.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #999999;
    white-space: nowrap;
}
.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990;
}
.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}
@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0;
    }
    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}

.hidden {
    display: none !important;
}
.nav-pills > li {
    float: left;
}
.nav-pills > li + li {
    margin-left: 2px;
}

.pull-right {
    float: right !important;
}
.timeblock {
	background: linear-gradient(to bottom, #ffffffa1 0%, #ffffff61 100%);
	border: 1px solid #00000012;
	padding: 43px;
	border-radius: 20px;
}
.active-dark-mode .timeblock {
	background: linear-gradient(to bottom, #151626bf 0%, #161626 100%);
	border: 1px solid #00000012;
	padding: 43px;
	border-radius: 20px;
}
pre {
	    border: 3px solid #56acf6;
    padding: 30px;
    border-radius: 20px;
    color: #000;
    box-shadow: 0 20px 40px 0 rgb(59 123 238 / 14%);

background: #ffffff;}


.active-dark-mode pre {
	    border: 3px solid #56acf6;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 40px 0 rgb(59 123 238 / 14%);

background: #18182c;}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.fade {
    transition: opacity .45s linear;
}

 

.modal.in .modal-dialog {
    transform: none;
}

 
 
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
@media (min-width: 576px){
.modal-dialog {
    max-width: 500px;
    margin: 4.75rem auto;
}}

.modal-dialog .modal-content {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 25px;
}

.modal-content {
    background: #141A2E;
    color: #fff;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}

.active-dark-mode .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #191928;
    background-clip: padding-box;
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-dialog .modal-header {
    border: none;
    padding: 0;
}

.modal-header, .modal-footer {
    border-color: #273154;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.ahbtn.bs-2 {
    color: #0e8efd;
    background: rgb(19 145 253 / 34%);
}

.ahbtn {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px;
    border: none;
    font-size: 24px;
    position: relative;
}

.modal-dialog .modal-body {
    padding-top: 35px;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-dialog .modal-body .service-id-box {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 25px;
    padding: 0 15px;
    border-radius: 8px;
    background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
    margin: auto;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.service-id-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #355DF2;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-dialog .modal-body h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
}

.modal-dialog .modal-body p {
    /* color: #525560; */
    /* font-size: 13px; */
    /* padding: 0; */
    /* max-height: 200px; */
    /* overflow-x: scroll; */
}

.services-info {
    position: relative;
    border: 1px solid #319dfa;
    border-radius: 15px;
    padding: 39px;
    margin: 0 15px;
    background: #ffffff;
}

.active-dark-mode .services-info {
    position: relative;
    border: 1px solid #3ba1f9;
    border-radius: 15px;
    padding: 39px;
    margin: 0 15px;
    background: rgb(22 22 38);
}
.si-overlay {
    background: url(https://storage2.perfectcdn.com/9e41b1/6ofkmo23hs2onk8o.svg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 125px;
    border-radius: 20px;
    margin-top: -100px;
}

.justify-content-between {
    justify-content: space-between!important;
}

.services-info .si-item {
    text-align: center;
}

.services-info .si-circle {
    background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
    width: 55px;
    height: 55px;
    border-radius: 100%;
    text-align: center;
    line-height: 55px;
    font-size: 24px;
    margin-bottom: 5px;
}

.services-info .si-item small {
    color: #000!important;
    font-weight: 400;
line-height: 15px;}

.active-dark-mode .services-info .si-item small {
    color: #fff!important;
    font-weight: 400;
line-height: 15px;}


.services-info .services-info .si-item p {
    color: #000!important;
    font-weight: 400;
line-height: 15px;}

.active-dark-mode .services-info .si-item p {
    color: #fff!important;
    font-weight: 400;
line-height: 15px;}


.modal-dialog .modal-body p {
    /* color: #525560; */
    font-size: 13px;
    padding: 0;
    max-height: 200px;
    overflow-x: scroll;
}

::-webkit-scrollbar {
  width: 8px;
  position: fixed;
}

/* Track */
::-webkit-scrollbar-track {
  /* background: #07090c; */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(33 150 251);
  -webkit-backdrop-filter: invert(1);
  backdrop-filter: invert(1);
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(112 189 255);
}
 [tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0!important;
}

.dev-cta-area .dev-section-title .title {
    margin-bottom: 24px;
    padding-bottom: 0px;
    /* color: white; */
}

.dev-cta-area .dev-section-title .text {
    margin-bottom: 40px;
}

.dev-section-title .text {
    font-size: 20px;
}

.dev-cta-area .button-group {
    /* padding-left: 130px; */
}


.dev-cta-area .button-group .content-button {
    /* background-image: linear-gradient( 183deg , #5ad0ff, #008bc2); */
    /* border: 2px solid #00c1fb00; */
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 32px;
    gap: 24px;
    transition: 0.3s;
    border: 1px solid #4444440a;
}

.dev-cta-area .button-group .content-button .content-button-text .text {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
    /* color: #ffffffa1; */
    transition: 0.3s;
}

.dev-cta-area .button-group .content-button .content-button-text .title {
    font-size: 15px;
    /* color: #fff; */
    }

.dev-cta-area .button-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
 
.feature-iconstat {
    width: 80px;
    height: 80px;
    line-height: 94px;
    text-align: center;
    background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
    border-radius: 30% !important;
margin-bottom: 10px;}

.hp-fbox {
    /* background: #1993fc; */
    /* -webkit-box-shadow: 0px 53px 120px rgb(30 110 172 / 20%); */
    /* box-shadow: 0px 53px 120px rgb(30 60 172 / 20%); */
    border-radius: 50px;
    /* background-image: url(https://scrdes.com/assets/img/fbox-bg1.svg); */
    background-repeat: no-repeat;
    background-size: cover;
    }

.hp-fbox .hp-fbox-content {
    padding: 60px 90px;
}

.hp-fbox-row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.hp-fbox-item {
    text-align: left;
    margin: 15px 0;
}

.hp-fbox-item .hp-fbox-item-icon {
    height: 90px;
    width: 100px;
    position: relative;
    font-weight: normal;
    font-size: 65px;
    line-height: 57px;
    text-align: center;
    color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.hp-fbox-item .hp-fbox-item-icon::before {
    content: '';
    border-radius: 50%;
    width: 75px;
    height: 75px;
    position: absolute;
    right: 0px;
    top: 0px;
    background: #0089ff1a;
    z-index: 1;
}

.hp-fbox-item .hp-fbox-item-icon i {
    position: relative;
    z-index: 30;
    color: #0089ff;
    border: 2px solid #1d95fc9e;
    background-color: rgb(33 151 251 / 9%);
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    height: 93px;
}

.hp-fbox-item h2 {
    font-weight: bold;
    font-size: 25px;
    line-height: 40px;
    /* color: #fff; */
    margin-top: 0px;
    }

.hp-fbox-item h5 {
    font-weight: bold;
    font-size: 12px;
    /* line-height: 3px; */
    /* color: #FFFFFF; */
    margin-bottom: -12px;
}

.dev-cta-area .button-group .content-button2 {
    background-image: linear-gradient( 183deg , #16fabc, #00b387);
    border: none;
    /* border: 2px solid #4fa9f7; */
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 32px;
    gap: 24px;
    transition: 0.3s;
}

.dev-cta-area .button-group .content-button2:hover {
/* border: 2px solid #4fa9f7; */
box-shadow: 0 20px 40px 0 rgb(14 224 169 / 26%);}

	.mk-icons .fab.fa-instagram {
  background: linear-gradient(200deg, #fe44ff, #ff3f3f, #ffff37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 17px;
  padding: 2.4px;
  border-radius: 5px;
  color: #FFF;
  font-weight: lighter;
  margin-right: 10px;
  text-shadow: 1px 1px 7px #ff57db80;
}

.mk-icons .fab.fa-facebook-square {
    background: #207eff;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #207eff59;
}

.mk-icons .fab.fa-youtube {
    background: #ff0042;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 7px #ff085740;
} 

.mk-icons .fa.fa-thumbs-up {
       background: linear-gradient(200deg, #d1a747, #ffbc00, #ffa200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 17px;
    padding: 2.4px;
    border-radius: 5px;
    color: #FFF;
    font-weight: lighter;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #ffbc0094;
}
.mk-icons .far.fa-star {
    background: #ffe700;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	    text-shadow: 1px 1px 7px #ffc10fb0;
}

.mk-icons .fab.fa-twitch {
    background: #ab87ff;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 20px;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #fb00ff85;
}

.mk-icons .fab.fa-twitter {
    background: #1da1f2;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #1e98f58a;
}

.mk-icons .fab.fa-telegram {background: #20b3ff;background-clip: text;-webkit-background-clip: text;font-size: 21px;-webkit-text-fill-color: transparent;font-weight: bold;margin-right: 10px;text-shadow: 1px 1px 7px #20b3ff42;}

.mk-icons .fa.fa-music {background: linear-gradient(200deg, #d147c0, red, #ff00a0);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;font-size: 17px;padding: 2.4px;border-radius: 5px;color: #FFF;/* font-weight: lighter; */margin-right: 10px;text-shadow: 1px 1px 7px #ff209c40;}

.mk-icons .fab.fa-spotify {
    background: linear-gradient(200deg, #47d191, #00ff66, #00ff87);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 17px;
    padding: 2.4px;
    border-radius: 5px;
    color: #FFF;
    font-weight: lighter;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #00ff1f85;
}

.mk-icons .fab.fa-vk {
    background: linear-gradient(200deg, #478bd1, #478bd1, #0097ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 17px;
    padding: 2.4px;
    border-radius: 5px;
    color: #FFF;
    font-weight: lighter;
    margin-right: 10px;
    text-shadow: 1px 1px 7px #5d7ad77a;
}


.mk-icons .fab.fa-google-plus {
background: #ff204f;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	    text-shadow: 1px 1px 7px #ff001885;
}

.mk-icons .fab.fa-soundcloud {
background: #ff9200;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #ff8d0085;
}

.mk-icons .fab.fa-reddit {
    background: #ff4b00;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 20px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #ff4b0085;
}

.mk-icons .fab.fa-blogger {
  background: #ff9e00;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 19px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #ff990085;
}

.mk-icons .fab.fa-yoast {background: #ff002a;background-clip: text;-webkit-background-clip: text;font-size: 19px;-webkit-text-fill-color: transparent;font-weight: bold;margin-right: 10px;text-shadow: 1px 1px 7px #ff00004d;}


.mk-icons .fab.fa-pinterest-p {
background: #c3245c;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #ff008285;
}

.mk-icons .fab.fa-amazon {
background: #f2b41d;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 19px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #ffa50085;
}


.mk-icons .fab.fa-tumblr-square {
background: #ff0065;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #ff008285;
}


.mk-icons .fab.fa-yahoo {
    background: #8a00ff;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
	text-shadow: 1px 1px 7px #f66bff94;
}


.mk-icons .fab.fa-linkedin {
     background: #00bfff;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
}

.mk-icons .fab.fa-odnoklassniki {
background: #ff8100;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 7px #ff7e0f57;
}


.mk-icons .fab.fa-skyatlas {
	
	background: #007eff;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 7px #0fb1ffb0;
}

.mk-icons .fab.fa-imdb {
    background: #ff4700;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 17px;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 7px #ffdd7cb0;
    color: #000;
}
 
.mk-icons .fab.fa-discord {
    background: linear-gradient( 
200deg
 , #6b84d8, #7f9dff, #6b84d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    padding: 2.4px;
    border-radius: 5px;
    color: #FFF;
    font-weight: lighter;
    margin-right: 10px;
    text-shadow: 1px 1px 7px #c5d2ff7d;
}
.textcorp {
	color:#000;
}

.active-dark-mode .textcorp {
	color:#fff;
}

.labelstyle {
color: #000;	
}
.active-dark-mode .labelstyle {
color: #fff;	
}

.btnstart{
	width: 50%
}

     .integration-fixed__bottom-right {
   bottom: 50px;
   left: 25px;
}
             
             .integration-fixed {
    position: fixed;
    z-index: 10000000;
}
             
             .whatsapp-container {
    padding: 24px;
}
   
.marginsign {
    margin-left: 25px;
}	
   
.mrgnreset {
	
	    margin-right: 75px;
}
   
@media (max-width: 991.98px) {
	
	.mrgnreset {
	
	    margin-right: 0px;
}
  
.btnstart{
	width: 100%
}
.pull-right {
    float: left !important;
}
.captchabot {
	
	    margin-bottom: 35px;
}

.integration-fixed__bottom-right {
    bottom: -10px;
    right: -18px;
}
             
             .integration-fixed {
    position: fixed;
    z-index: 10000000;
}
             
             .whatsapp-container {
    padding: 24px;
}
.newheader {
	width: 50%;
}
   .hp-fbox-item .hp-fbox-item-icon {
    height: 90px;
    width: 100px;
    position: relative;
    font-weight: normal;
    font-size: 65px;
    line-height: 57px;
    text-align: center;
    color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}     

.marginsign {
    margin-left: 0px;
}	

.hp-fbox-item h2 {
    font-weight: bold;
    font-size: 23px;
    line-height: 40px;
    /* color: #fff; */
    margin-top: 0px;
    text-align: -webkit-center;
}

.hp-fbox-item h5 {
    font-weight: bold;
    font-size: 11px;
    /* line-height: 3px; */
    /* color: #FFFFFF; */
    margin-bottom: -12px;
    text-align: -webkit-center;
}

.wrapper__side-working {
    border-radius: 16px;
    padding: 9rem 8rem;
    height: 100%;
}

.wrapper__side-working {
    border-radius: 16px;
    padding: 6rem 2rem;
    height: 100%;
}
     
	 
.hp-fbox .hp-fbox-content {
    padding: 40px 10px;
}
}
 
.goog-text-highlight {
	background-color: #fff0!important;
	    box-shadow: none!important;
}


.checkbox {
	color:#000;
}

.active-dark-mode .checkbox {
	color:#fff;
}
.checkbox input {
	margin-right:10px;
}


.beamer_defaultBeamerSelector {
    position: fixed;
    bottom: 110px!important;
    right: 40px!important;
    width: 60px;
    height: 60px;
    background-color: #00d8a6;
    background-image: url(https://app.getbeamer.com/images/bell-full.svg);
    border-radius: 50%;
    color: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
    -webkit-transition: all .3s cubic-bezier(.25,.8,.25,1);
    -o-transition: all .3s cubic-bezier(.25,.8,.25,1);
    transition: all .3s cubic-bezier(.25,.8,.25,1);
    background-repeat: no-repeat;
    background-position: 50% 49%;
    z-index: 2147483000!important;
    -webkit-animation: beamer_pop-in .5s;
    -moz-animation: beamer_pop-in .5s;
    -ms-animation: beamer_pop-in .5s;
}

.topvideo {
    width: 95%;
    height: 500px;
    border-radius: 20px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background: #ffffff;
    border: 0;
    white-space: inherit;
}

.active-dark-mode .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #fff;
    text-align: inherit;
    white-space: nowrap;
    background: #0d0d21;
    border: 0;
    /* white-space: inherit; */
}
.searchwdt {
width: 50%;	
}

@media (max-width: 600px) {
.topvideo {
    width: 100%;
    height: 202px;
    border-radius: 20px;
}
.searchwdt {
width: 100%;	
}
.pb-100 {
    padding-bottom: 0px;
}
	
	
.beamer_defaultBeamerSelector {
    position: fixed;
    bottom: 68px!important;
    right: 6px!important;
    width: 60px;
    height: 60px;
    background-color: #00d8a6;
    background-image: url(https://app.getbeamer.com/images/bell-full.svg);
    border-radius: 50%;
    color: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
    -webkit-transition: all .3s cubic-bezier(.25,.8,.25,1);
    -o-transition: all .3s cubic-bezier(.25,.8,.25,1);
    transition: all .3s cubic-bezier(.25,.8,.25,1);
    background-repeat: no-repeat;
    background-position: 50% 49%;
    z-index: 2147483000!important;
    -webkit-animation: beamer_pop-in .5s;
    -moz-animation: beamer_pop-in .5s;
    -ms-animation: beamer_pop-in .5s;
}
}


.wrapper__list-experience777 {
    background: linear-gradient(to bottom, #ffffffa1 0%, #ffffff61 100%);
    
    
    border: 1px solid #00000012;
    
    
    
    
    border-radius: 10px;
    padding: 2rem;
    transition: 0.5s;
    width: 100%;
}
.active-dark-mode .wrapper__list-experience777 {
    background: #0d0d2626;
    
    
    border: 1px solid #ffffff0a;
    background-color: #0d0d2626;
    border-radius: 10px;
    padding: 2rem;
    transition: 0.5s;
    width: 100%;
}


.header1-logo2 .logo-bw {
  display: none;
}

.translated-ltr .header1-logo2 .logo-bw {
  display: block;
}
.translated-ltr .header1-logo2 .logo-bb {
  display: none;
}
.translated-ltr .footer-logo2 .logo-bw {
  display: block;
}
.translated-ltr .footer-logo2 .logo-bb {
  display: none;
}

.rate-us {
    background-color: #379ff912;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #4ea5ef;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 95px;
    height: 45px;
    border-top: 0;
}

.active-dark-mode.rate-us {
    background-color: #4e59ff14;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #355eae;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 95px;
    height: 45px;
    border-top: 0;
}

.rate-us .ticket-h-title {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: #389df4;
    top: -5px;
    padding: 0 5px;
    margin-top: 0;
    margin-bottom: 6px;
}


.ticket-h-title+p {
 font-size: 14px;
 font-weight: 600;
 margin-bottom: 0;
 color: #000;
}

.active-dark-mode .ticket-h-title+p {
 font-size: 14px;
 font-weight: 600;
 margin-bottom: 0;
 color: #fff;
}

.active-dark-mode .subscribe-form input:focus {
    border: solid 2px #44afff;
    box-shadow: inset 0 0 0 0 #2f91e045, 0 0 25px rgb(5 136 207 / 30%);
    background: none;
}

.alert-success {
    color: #109907;
    background-color: #10ff0017;
    border-color: #0685334d;
}

.card {
    margin-bottom: 30px;
    border: 0;
    border-radius: 25px;
    
    
    border: 1px solid #00000012;
    /* box-shadow: 0px 0px 10px rgb(0 36 67 / 10%); */
    background: #fff;
    position: relative;
backdrop-filter: blur(18px);color: #000;}
.active-dark-mode .card {
    margin-bottom: 30px;
    border: 0;
    border-radius: 25px;
    
    
    box-shadow: 0px 0px 10px rgb(5 4 8 / 10%);
    background: #0d0d2626;
    border: 1px solid #ffffff0a;
    background-color: #19192857;
    position: relative;
backdrop-filter: blur(40px);color: #fff;}


.card2 {
    margin-bottom: 30px;
    border: 0;
    border-radius: 25px;
    
    
    border: 1px solid #00000012;
    /* box-shadow: 0px 0px 10px rgb(0 36 67 / 10%); */
    background: #fff;
    position: relative;
	color: #000;}
.active-dark-mode .card2 {
    margin-bottom: 30px;
    border: 0;
    border-radius: 25px;
    
    
    box-shadow: 0px 0px 10px rgb(5 4 8 / 10%);
    background: #0d0d2626;
    border: 1px solid #ffffff0a;
    background-color: #0d0d2626;
    position: relative;
	color: #fff;}



.card-body {
    padding: 30px;
}

.card-header {
    border: none;
    border-radius: 25px 25px 0 0 !important;
    padding: 26px 30px !important;
    background: #bcbcbc0f;
    border-bottom: 1px solid rgb(0 0 0 / 2%);
    /* text-transform: capitalize; */
}


.active-dark-mode .card-header {
    border: none;
        border-radius: 25px 25px 0 0 !important;
    padding: 26px 30px !important;
    background: #00000012;
    border-bottom: #ffffff;
    text-transform: inherit;
}


body .card-footer,
body .card-footer:last-child {
    border: none;
    border-radius: 0 0 10px 10px;
    padding: 30px;
    background: var(--white);
}

.card-title {
    margin-bottom: 0;
}

.card-desc {
    margin: 5px 0 0;
}

.img-responsive {
    border-radius: 20px;
    border: 2px solid #2297fc;
    box-shadow: none;
}

.items-text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
    margin-top: -30px;
}

.btnstart::before {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    left: -3px;
    right: 0;
    height: 23px;
    /* background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAXCAYAAACS5bYWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABFpJREFUeNrUV0tIo1cUvpkYjQ4xxSA6DxuNqG0dtaUKOgs3s6i0dFd3pSsXdjeIixakiGA34sZuXCkoONLFwJTK4GMYLYXg29gatTpiXurkbd7vv9/5ub+IxuhA7eiFQ5Kbc8/57ne/e87/ywRBYLdl3GG3aNwqsLJ0k0tLS+fmcnNzWUVFBVMoFGx2djarvLxcm5OTw+bm5iytra2xc4ExNjY27iqVyvvwK6CpeDzuCYVC1urq6qDA9UcfPp+PHR4esmAwKK6tr68/l5/8rgQ2Ozub1dbWyiYmJooaGxt/VqvV38jlchX9l0qlwoFA4DWS/RKLxRxFRUVf5+XlPcaaT2AP0sVPJBL2SCRiAPBpu93+vKamZo/Ae71eZjabWV1dXVqw7CKwp43ksrCw8Bhg7MJ/PLDZ5PHx8cz29vYT5JGD/bSYLgTrcDgYdk6siSc6NjZWDaAe4ZoHQL+cmZnRpZPnhWDpD8kw7uKo9ML/NMCsd2tr61vkzboMrEyv138M7TyLRqMWMBsX3sMgaZhMpp+AR5EJrCocDpuEGzKg4x8khs+CVWxubvZfR9JkMik4nU7BarUKLpeLmLsKuwIqTLynp4fqmIzASrqQT09Pf1VVVfX0KsWZ6uHBwQHTaDSsoKAgo6/H4xHLEcrVyRwuEisrKzs5XrrIVAVwiUVDKRRrL+YI32ewdVhMApuHWvcj6vids6J2u90MF4yBHUZNgKoEBaRBQalJqFSqtJfUYrGIlQX+ydXVVTN+u0tKSjQNDQ1axJVl2iTypebn55d7e3v/kqoDgZU1NTU9LCws/Py0M+2ekuGincxJ3yF+18jIyHJLS0slQJUWFxczrBeBE0vE5tHRkbixlZWVfSR8gTX/0P5gH7S1tX3Z3t7+BW8qAvwSfr8/jA0EIRM/qoFtampqbW9vTw+XA+ojUruVd3Z2tvb19T2TQFEim81GgVJoCvvj4+NLOJZgaWmpemdn5y3a6BbcnJDAw8HBwac6ne6eqCW5XDwB3qVSqM9/DAwMUNy/eVLabT7sI25qwgujThCBhWE+mAt2yNc4SQKSZrOQQE1HS22VJkmPAGTr7+//fX19fRk+Zgq0trbGeFAKEAQT98BSqKOj47vm5uaa/Px8JeIk4GcaHh6eWlxcfAU/A8xG67BxAX3fwdcbYUpSDJ06Z49Ak8ZC3OL8f3YiA4PBYKdLQ2AJ9OTk5GpXV9cQiCVh79M94QtlPLDUE/1gPNrd3f0W33W4cBoco48zQuy/IZYAMnGqlSc4c66L9JruQUaSARXeT8HGKzxAqFBekni6+h46+pMzGiJGMgTOJh1yU/KNEGDvZWvfBawkA9ppwGg0mrRa7SOI2g+gxOgbJIpdFpj72PnxSnPX8vqRxTURgBQWKisrH+GThOm+CtAzoK/9/Uiqq/6hoaHfdnd3jaOjo7/yY7yxbwqkWy3sQzpS2C6YirwvUJk0y7hurfyGRrnduPGvAAMASmo8wzeVwfsAAAAASUVORK5CYII=) no-repeat 0 0, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAAAXCAYAAABOHMIhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABiZJREFUeNrsWMtPlFcUvzPMwIDysLyRR4uATDHWCiVgSmRlios2DeiiXUFs0nRBd6arxqQhJDapkYXhP4BqDKTQhZaFNQSCaBEVJjwdHsNr5DUMDDPDzPT3u7nTDEgRKrKgc5KT+z3uufec33de99P4fD4RpL2RNgjB3kn35MkTeRERESFiYmLkGBoaKnQ6nWSNRvPPZFxr+vv7k6KioiIdDsfa8vLyQkFBgcP3Bnel3MDAQArWI0eFhISE87nb7bZ7PJ4VvLYuLi5O5+fnu9+kMNfq6+tLjIyMzMY6KeBEbK/XarXReI3lPDZMWcc4v7GxYV1dXR3Jy8ub2E5HPvJ6vRSSDH0ku1wuAfsEZOV1IEFHoeNFdHS0yMrK2knR0Lm5uR+hxLdQMjbwHTZbB41h8RGwCdc9MzMzneHh4bGJiYlf4SN8ijkfwqiIncCAAR7Iz2GPSShudjqdfeCeqampvwBQfFxc3JdYqwTv8gB8/F48A8BgKecE14V+L7ju2tpae05OzkuCCZvkPOj8mizmC6vVKtmPu+bx48cC3qI1mUyFUOyywWD4SHlELBaLJmCHNcwAghuAOujtuF4FqHO4nsX4EsAS3I4TJ04ME1h8PDE9PS09TYZoY2Pj1729vd6lpSVfkDYTPG0UkfNDRUWFgQ5Gb2Mh0N29e9eG/GQfHh4W8/PzwUy/ObQ/gMfVVlZW1iAiZdQxp3nv3LljRoL/5erVq1UIxzSiiVD9X4EDYATynCwAzGO858hCQRoaGmJFZNJz8YIcBc4BF966dau6sLAwBxVSJCUlCSThQwuU3W6XkYUok1Vzm5znQx5bbm9v77p+/frPeNSNRzZ/ISBwrG4ZR48eLamtrf2+uLjYSEG9Xi/wTISFhQlWGXohyzO/CJlVl23KQRLbABoaHx+/Z1lUZ/Hq1SsJFj3JT3hmHx8fnydPTEzMj46OziHPW2w22wxeD4Kfgadh/4YEzU8Az4DhffAn5eXlX1y6dKkEoCTspAQ9Mjs7+0BBo8Fms1lkZGTsOo0QLLRNkvnR+fEJzIMHD0xtbW39CL8JTFtSbAOvBIyLHIGVm9VzE2gKuDAMSSpcT6KXyT137lx2cnLyMXhcGDb3wq3XuWF3d/fCzZs3P0c4v5eSknJQbYLo7Ox0gC2lpaVZ3Be67Th/dnZWoAJKsJC3XA8fPhxoamp6hMb+BaaMgWcUMGtszZjiFDNmvcDI91pzG0iY4ARwkwrxkcHBwUdgNrRMbnrqoRbkVzDcvn3bl5qaWsmcgFH4G8XdEGUWFhak51AuISFBnkoCTyFbyWKxCJwIxlC0fq2rq7tcVFRkRKskjh8/Lr0+kBjCCDV/knfdv3//WX19/R8IRRNemxlu4AXwKqM+EJwdj1HbPYSwh3sCPAJDABm2LLchCjS+5/kirKGhwWk0GrMuXrxYQuX9hm/XXTMXMY+srKwI5ApZrbYmZh7deEJhAUKjLe/pLTzSsCuHrK+1tbUJVe3P6upq87Vr174rKysrYHVj/uW+OH3IfEuw4F3ee/fuPQfAvwOs5yyE4CnlFOu7BWrTCWlreO6FACpBZGwUw4BvkANLobReHb3kGZYGsGzTq/zlO8AT1ru6uoZbWlqeA6gINJAfnz59OlVLoX8Jtebm5raampqfcMvQYgTknz9//sKVK1c+y83NTdIEuCnaKMuNGzd+6+np6cCtSTkAw9D9X8Dyh+dbgaaAC1XAnUlPTy+qqqq6cPbs2UzkmWjNljiDJzpwHFnCkW2yo6NjCKW8H54wjlezKvRT09LSTsJrz5w6dSoN+Yp51ADAPUj8VoDbDq9pxrwuJcNIYQllJTIi/xopBw/VA7DJp0+f9hA78CgL5F5C8J2CpoCj8sfA6WCe/FPRhsRlZmbGIs8Y4FFO5CJgtrSsvrRVGW1V93b1myoGnKAKEcHgnwsWpg1lNI0fphwrmdqbckeU18WrnlOjqp5/j7W3BWvfQVPKa5SBkcrYCNVB65TRTlWZ1lXiXVU5xbtlDb2SPaLWYwrgHIcqPg6Vc7fbX69Yoyqfa7/AeiegbWOEVhmsVcWDwPn224iDJgla8Hd38Hd3ELQgaIeI/hZgAIPEp0vmQJdoAAAAAElFTkSuQmCC) no-repeat 50% 0, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAXCAYAAACFxybfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAodJREFUeNrsVb1rWlEUv2pN/GqspKRSKFYXWzEloIWif0Fn6dJChQ7OQil0qd3EzcEpg0OgdHDr4CQODk7VRlLMEIVqApX4We0zflR9/Z1Ui4T34ksaaAYP/Hzc673n/M6550PG8zz73yKjn0wm83fDYDAwo9HINBrNnwOQg4MDs0ql2lQqlfdAWont7ng8Pjw+Ps44nc4G1pI9EXWaSOzt7TGO42aH5Pv7+08ajUZ0MBiUeXEZd7vdL5VK5fX29rZ+5tQiEmdxKrlcjsEYczgcynK5/BKKv/IXFNz/XiqVXkHdjUuRIA9SqdRD8or/R8Ez9fr9fqHVakUR4c2z0REjIQuHw2ZcrPBXLCA0RHTezEdHjIQqkUhEr9I4HOILhQLf6/VoOUFEvDMiQiToDx1Cdz+bzZ6bUFarlel0OkkVUK/XWbvdPoVer5fh3ntsfwJ+CJ2XA4p0Op1bpBgJyxDehQQ6nQ5DZXHBYDBZq9V+EhFUndnr9drEqoc2bwJbwGPgtohuVSwWe2Gz2TZMJpNgRKi6qtUqg2EWj8dTgUDgo0KhWPN4PC70EvXOzs67fD6/S6kiRIKeZA1YJ2MiJNbdbvfTUCjkV6vVK2hcDF8GI2w0GrGTkxM2HA5PDxaLxSOfz/cWEfk81X0XIMMFgJJ/srBjCgk8IdcfuVyuZ36//7nFYtkQyAMumUzuRiKRD0jMFLa+AZOpYwqgB/ziBVqmVBKUO7eAB/R0WG/Z7XaTVqtdbTabHJL6EK2djBaBPHA0NSqpbUsiMUeEBgpF4Q5AbZrmSJ/yEWgBTaBNHl9kdkgmMUeG7qwAq9PqovceTA3zlxlgsuswyuXsGsiSxJLEkoSY/BZgAEjRodi+uBruAAAAAElFTkSuQmCC) no-repeat 100% 0; */
}
canvas{
  position: absolute;
  width: 100%;
  z-index: -1;
  /* height: 100%; */
}
 .theme-switch-one .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-4);
    border-radius: 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-switch-one.style__two {
    height: 37px;
    width: 37px;
    border: 1px solid #9b9b9b17;
    border-radius: 50%;
    background: #121225;
}

.theme-switch-one {
    position: relative;
    display: inline-block;
    width: 62px;
    height: 32px;
}

.theme-switch-one input {
    opacity: 0;
    width: 0;
    height: 0;
    border: none;
}

.theme-switch-one .slider.round {
    border-radius: 34px;
}

.theme-switch-one.style__two .slider {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.theme-switch-one .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-4);
    border-radius: 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-switch-one .slider.round:before {
    border-radius: 50%;
}

.theme-switch-one.style__two .slider:before {
    background: url(https://storage2.perfectcdn.com/9e41b1/teq2f5d06i8cefmb.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.theme-switch-one .slider:before {
    position: absolute;
    content: "";
    height: 82%;
    aspect-ratio: 1 / 1;
    left: 4px;
    bottom: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: #000000;
    background: #000000 url(https://storage2.perfectcdn.com/9e41b1/ogoqp2f6u6siwcb0.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9;
}

.theme-switch-one input:checked + .slider:before {
    -webkit-transform: translateX(28px);
    transform: translateX(28px);
    background: #000000 url(https://storage2.perfectcdn.com/9e41b1/jkbpbscjubaalp1e.png);
    background-repeat: no-repeat;
    background-position: center;
}

.theme-switch-one.style__two input:checked + .slider:before {
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    background: url(https://storage2.perfectcdn.com/9e41b1/4iuzbiqd0hmrhjpw.png);
    background-repeat: no-repeat;
    background-position: center;
}

.textoerder {
	    text-shadow: 0 0 1px #149dff, 0 0 2px #ffffff, 0 0 5px #34a1ff, 0 0 11px #a3c3ff, 0 0 20px #89ffff, 0 0 30px #ffffff, 0 0 55px #00b8ff, 0 0 80px #00b8ff;
	    color: #048cff;
}

.active-dark-mode .textoerder {
	text-shadow: 0 0 1px #fff, 0 0 2px #ffffff, 0 0 5px #fff, 0 0 11px #0095ff, 0 0 20px #00b8ff, 0 0 30px #00a1ff, 0 0 55px #00dcff00, 0 0 80px #00b8ff;
	color: #ffffff;
}

.active-dark-mode .modal-dialog .modal-body p {
    color: #fff;
    font-size: 13px;
    padding: 0;
    max-height: 200px;
    overflow-x: scroll;
}


.btn-close {
  margin: 0;
  border: 0;
  padding: 0;
  background: #1d95fc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 150ms;
  margin-left: 30px;
  opacity: 1;
}
.btn-close .icon-cross {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  width: 19px;
  height: 40px;
}
.btn-close .icon-cross:before, .btn-close .icon-cross:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 6px;
}
.btn-close .icon-cross:before {
  transform: rotate(45deg);
}
.btn-close .icon-cross:after {
  transform: rotate(-45deg);
}
.btn-close .icon-cross span {
  display: block;
}
.btn-close:hover, .btn-close:focus {
  transform: rotateZ(90deg);
  background: #0052cc;
  opacity: 0.95;
}

.cross-stand-alone {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  width: 40px;
  height: 40px;
}
.cross-stand-alone:before, .cross-stand-alone:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 4px;
  background: #000;
  border-radius: 4px;
}
.cross-stand-alone:before {
  transform: rotate(45deg);
}
.cross-stand-alone:after {
  transform: rotate(-45deg);
}
.cross-stand-alone span {
  display: block;
}

.cross-1px {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  width: 80px;
  height: 80px;
}
.cross-1px:before, .cross-1px:after {
  content: "";
  position: absolute;
  top: 39.5px;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
  border-radius: 1px;
}
.cross-1px:before {
  transform: rotate(45deg);
}
.cross-1px:after {
  transform: rotate(-45deg);
}
.cross-1px span {
  display: block;
}
 

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.bgnhome {
	  background-image: url(https://storage2.perfectcdn.com/9e41b1/umic0clhobystwf3.png);
	  background-size: cover;
	  border: 1px solid #e9e9e9;
	  box-shadow: 0 20px 40px 0 rgb(22 22 70 / 8%);
}

.active-dark-mode .bgnhome {
	  background-image: url(https://storage2.perfectcdn.com/9e41b1/569d3ozahd68ldx7.png);
	  background-size: cover;
	  border: 1px solid #1e1b3c;
	  box-shadow: 0 20px 40px 0 rgb(22 22 70 / 28%);
}


.checkbox5 [type="checkbox"]:not(:checked),
.checkbox5 [type="checkbox"]:checked {
  position: absolute; 
  left: -9999px;
}
.checkbox5 [type="checkbox"]:not(:checked) + label,
.checkbox5 [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 95px;
  cursor: pointer;
}
.checkbox5 [type="checkbox"]:not(:checked) + label:before,
.checkbox5 [type="checkbox"]:checked + label:before,
.checkbox5 [type="checkbox"]:not(:checked) + label:after,
.checkbox5 [type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
}
.checkbox5 [type="checkbox"]:not(:checked) + label:before,
.checkbox5 [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 80px;
  height: 30px;
  background: #ff03034f;
  border-radius: 6px;
  transition: background-color .2s;
}
.checkbox5 [type="checkbox"]:not(:checked) + label:after,
.checkbox5 [type="checkbox"]:checked + label:after {
  width: 30px;
  height: 30px;
  transition: all .2s;
  border-radius: 6px 0 0 6px;
  background: #ff003b52;
  top: 0;
  left: 0;
}

/* on checked */
.checkbox5 [type="checkbox"]:checked + label:before {
  background: #39d26138;
}
.checkbox5 [type="checkbox"]:checked + label:after {
  background: #00f77a80;
  top: 0;
  left: 51px;
  border-radius: 0 6px 6px 0;
}

.checkbox5 [type="checkbox"]:checked + label .ui,
.checkbox5 [type="checkbox"]:not(:checked) + label .ui:before,
.checkbox5 [type="checkbox"]:checked + label .ui:after {
  position: absolute;
  left: 6px;
  width: 65px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  transition: all .2s;
}

.checkbox5 [type="checkbox"]:not(:checked) + label .ui:before {
  font-family: 'FontAwesome';
  content: "\f00d";
  left: 46px;
  margin-top: 3px;
  color: #ff1823;
}
.checkbox5 [type="checkbox"]:checked + label .ui:after {
  font-family: 'FontAwesome';
  content: "\f00c";
  color: #3bd239;
  margin-top: 3px;
  left: 12px;
}
.checkbox5 [type="checkbox"]:focus + label:before {
  border: 0; outline: 0;
  box-sizing: border-box;
}

.brandSlider {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 500px;
}
#infinite .bShadow {
    /* box-shadow: 0 3px 10px -3px rgb(21 27 38 / 30%); */
    /* background: #151b26; */
}

.brandSlider .bShadow {
    overflow: hidden;
    position: relative;
}

#infinite .bShadow::before {
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgb(238 238 238) 0%, rgba(255, 255, 255, 0) 100%);
}

#infinite .bShadow::before, #infinite .bShadow::after {
    content: " ";
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100px;
}

#infinite .bShadow div {
    width: 100%;
    -webkit-animation: translateinfinite 25s linear infinite;
    animation: translateinfinite 25s linear infinite;
}

.productBox {
    background: #ffffff;
    border-radius: 10px;
    height: 60px;
    padding: 0 15px;
    margin-bottom: 10px;
    color: #000;
}

.productBox .pbLeft i {
    width: 35px;
    text-align: center;
}

.productBox .pbRight {
    background: #ebebeb;
    border-radius: 7px;
    padding: 3px 15px;
    font-size: 12px;
    color: rgb(0 0 0 / 70%);
}

@-webkit-keyframes translateinfinite {
	100% {
		transform: translateY(calc(-60px * 6));
	}
}

@keyframes translateinfinite {
	100% {
		transform: translateY(calc(-60px * 6));
	}
}
#infinite .bShadow::after {
    top: 0;
    right: 0;
    background: linear-gradient(to bottom, rgb(240 238 241) 0%, rgba(255, 255, 255, 0) 100%);
}





.active-dark-mode #infinite .bShadow::before {
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgb(22 24 45) 0%, rgba(255, 255, 255, 0) 100%);
}

.active-dark-mode #infinite .bShadow::after {
    top: 0;
    right: 0;
    background: linear-gradient(to bottom, rgb(22 24 45) 0%, rgba(255, 255, 255, 0) 100%);
}

.active-dark-mode .productBox {
    background: #1c1d32;
    border-radius: 10px;
    height: 60px;
    padding: 0 15px;
    margin-bottom: 10px;
    color: #fff;
}

.active-dark-mode .productBox .pbRight {
    background: #17182c;
    border-radius: 7px;
    padding: 3px 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}


.request__w {
    position: relative;
    padding: 0 25px 45px;
    min-height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #ffffff17 url(https://storage2.perfectcdn.com/9e41b1/x6gkjkc6oqsrygzg.png) 0 0 no-repeat;
    background-size: cover;
    color: #fff;
    border-radius: 35px;
}
@media (min-width: 960px) and (min-width: 1200px) {
.request__w {
    padding-right: 3.125rem;
    padding-left: 3.125rem;
}

}


@media (min-width: 960px) {
.request__w {
    padding-right: calc(1.4375rem + 2.25vw);
    padding-left: calc(1.4375rem + 2.25vw);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

}


@media (min-width: 640px) {
.request__w {
    padding-top: 38px;
    padding-bottom: 38px;
    padding-right: calc(1.375rem + 1.5vw);
    padding-left: calc(1.375rem + 1.5vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

}


.request__entry {
    width: 100%;
}

@media (min-width: 640px) {
.request__entry {
    margin-bottom: 0;
    width: 50%;
}

}
@media (min-width: 960px) {
.request__entry {
    margin-bottom: 0;
    width: 30%;
}
}


img.lazy {
    border: 0;
    max-width: 100%;
    height: auto;
}

.request__title {
    margin-bottom: 10px;
    color: #fff;
}

.request__image {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

@media (min-width: 640px) {
.request__image {
    position: absolute;
    top: -10px;
    right: 0;
    max-width: 50%;
}

}

@media (min-width: 960px) {
.request__image {
    top: -47px;
    left: 55%;
    right: auto;
    max-width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

}

.request__button {
    --fgp-margin-top: initial;
    --orig-margin-top: 40px;
    margin-top: var(--fgp-margin-top, var(--orig-margin-top));
    width: 100%;
}

@media (min-width: 960px) {
.request__button {
    /* --fgp-margin-top: initial; */
    /* --orig-margin-top: 0px; */
    margin-top: var(--fgp-margin-top, var(--orig-margin-top));
    width: auto;
}
}

.button564 {
    border: 1px solid #3976f4;
    padding: 9px 30px;
    height: 55px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #3976f4;
    font-weight: 900;
    font-size: .75rem;
    line-height: 1;
    text-align: center;
    border-radius: 23px;
}

.button_filled_white {
    padding-right: 32px;
    padding-left: 33px;
    background-image: linear-gradient( 183deg , #7fbdf2, #0089ff);
    color: #ffffff;
    font-size: .75rem;
}

@media (min-width: 960px) {
.button_filled_white {
    padding-right: 40px;
    padding-left: 40px;
    font-size: 15px;
    font-weight: 600;
}
}

.request__text {
    font-size: 16px;
    font-weight: 400;
}

.button_filled_white:hover {
    background-color: white;
    box-shadow: 0 20px 40px 0 rgb(83 194 247 / 35%);
    color: #fff;
}

.fab.fa-tiktok {
       filter: drop-shadow(1px 0px 0px #FD3E3E) drop-shadow(-1px -1px 0px #4DE8F4);
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 17px;
    padding: 2.4px;
    border-radius: 5px;
    color: #FFF;
    margin-right: 10px;
    text-shadow: 1px 1px 7px #ccd0ff26;
}

.active-dark-mode select {
	    background-color: #ffffff0d!important;
	    background-clip: padding-box;
	    border: 1px solid #ced4da1f;
	    color: #fff!important;
}

.active-dark-mode option {
	    background-color: #141422;
	    background-clip: padding-box;
	    border: 1px solid #ced4da1f;
	    color: #fff;
}

.face {
  margin: 0 auto;
  width: 300px;
}

.face:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@media (max-width: 600px) {
.body-bg {
    background: #eff1f5;
    background-image: url(https://storage2.perfectcdn.com/9e41b1/c4ri7hq41ohd4745.jpg) !important;
    /* background-position: top; */
    background-size: contain;
}
	.body-bg.dark, .body-bg.active-dark-mode {
    background: #111826;
    background-image: url(https://storage2.perfectcdn.com/9e41b1/19msm9tk3lgl3ns6.jpg) !important;
    /* background-position: center; */
    background-size: contain;
}
	
}

.wrap_b0e8 {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    bottom: 120px!important;
    display: block;
    opacity: 1;
    position: fixed;
    transition: opacity .1s;
    visibility: visible;
    z-index: 2147483646;
    z-index: 2147483647;
	margin-bottom: -4px;
}
 
 .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}


.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,.slick-slider .slick-list {
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before,.slick-track:after {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
} 


.collect_s {
    display: block;
    padding-bottom: 100px
}

@media screen and (max-width: 960px) {
    .collect_s {
        padding-bottom:56px
    }
}

.collect_s .catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0 0
}

.collect_s .catalog .slick-track {
    padding: 30px 0
}

.collect_s .catalog .card {
    display: block;
    width: 307px;
    /* border-radius: 20px; */
    border: 1px solid rgba(74,79,113,.5);
    background-color: transparent;
    overflow: hidden;
    padding: 32px 19px;
    -webkit-transform: scale(.88);
    -ms-transform: scale(.88);
    transform: scale(0.95);
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    height: 355px;
    margin-bottom: 5px;
}

@media screen and (max-width: 992px) {
    .collect_s .catalog .card {
        width:33.3333%
    }
}

@media screen and (max-width: 768px) {
    .collect_s .catalog .card {
        width:50%
    }
}

@media screen and (max-width: 576px) {
    .collect_s .catalog .card {
        width:100%
    }
	.card-image {
	max-width: 25%;	
	}
	
.collect_s .catalog .card .media {
    display: block;
    position: relative;
    /* width: 100%; */
    /* background-color: #151225; */
    line-height: 20px;
    margin: -20px auto!important;
    overflow: hidden;
    z-index: 1;
    height: 100px!important;
}
.mk-social {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 14px!important;
    color: var(--clr-common-heading);
}
.collect_s .catalog .card {
    display: block;
    width: 307px;
    /* border-radius: 20px; */
    border: 1px solid rgba(74,79,113,.5);
    background-color: transparent;
    overflow: hidden;
    padding: 32px 19px;
    -webkit-transform: scale(.88);
    -ms-transform: scale(.88);
    transform: scale(0.95);
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    height: 332px;
    margin-bottom: 0px;
}
}

.collect_s .catalog .card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    z-index: 0
}

.collect_s .catalog .card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(45deg,#221b2d 0%,#351f34 100%);
    background: #ffffff;
    z-index: 0;
    opacity: .55;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out
}
.active-dark-mode .collect_s .catalog .card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(45deg,#221b2d 0%,#351f34 100%);
    background: #1b1c2c;
    z-index: 0;
    opacity: .55;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out
}
.collect_s .catalog .card.slick-center {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

@media screen and (max-width: 960px) {
    .collect_s .catalog .card.slick-center {
        -webkit-transform:scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.collect_s .catalog .card .media {
    display: block;
    position: relative;
    width: 100%;
    /* background-color: #151225; */
    line-height: 20px;
    margin: -15px auto;
    overflow: hidden;
    z-index: 1;
    height: 93px;
}

.collect_s .catalog .card .media .sticker {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 10px;
    padding: 6px 6px 6px 12px
}

.collect_s .catalog .card .media .sticker .data {
    display: inline-block;
    font: 400 13px/1 "Exo 2";
    color: #fff
}

.collect_s .catalog .card .media .picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

.collect_s .catalog .card .media .picture img {
    -o-object-fit: cover;
    object-fit: cover
}

.collect_s .catalog .card .media .lvl {
    text-align: -webkit-center;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    padding: 12px 13px 8px;
    margin: 0px 0px 4px 8px;
}

.collect_s .catalog .card .media .lvl .data {
    display: block;
    font: 600 16px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff
}

.collect_s .catalog .card .info {
    display: block;
    position: relative;
    margin: 0px auto 0;
    z-index: 1
}

.collect_s .catalog .card .info .name {
    display: block;
    padding-bottom: 4px
}

.collect_s .catalog .card .info .name .data {
    display: block;
    font: 400 12px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--clr-common-heading);
}

.collect_s .catalog .card .info .numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 5px;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.collect_s .catalog .card .info .numbers .num {
    display: block;
    font: 400 20px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #719f19;
    white-space: nowrap
}

.collect_s .catalog .card .info .numbers .sub-num {
    display: block;
    font: 400 12px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--clr-common-heading);
    white-space: nowrap;
    padding: 1px 0 0 8px
}

.collect_s .catalog .card .info .info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 16px;
    margin-bottom: 20px;
}

.collect_s .catalog .card .info .info-list .item {
    display: block;
    padding-right: 16px
}

.collect_s .catalog .card .info .info-list .item:last-child {
    text-align: center;
    padding: 0
}

.collect_s .catalog .card .info .info-list .title {
    display: block;
    font: 400 13px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--clr-common-heading);
    padding-bottom: 8px
}

.collect_s .catalog .card .info .info-list .data {
    display: block;
    font: 400 19px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.collect_s .catalog .card .info .info-list .meaning {
    display: block;
    font: 400 19px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--clr-common-heading);
}

.collect_s .catalog .card .decor {
    display: block;
    position: relative;
    width: calc(100% + 80px);
    height: 1px;
    background-color: rgba(93,71,115,.5);
    margin: 0 0 24px -40px
}

.collect_s .catalog .card .decor .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%
}

.collect_s .catalog .card .decor .progress:before {
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    right: -4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff
}

.collect_s .catalog .card .card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    opacity: 0;
    color: transparent;
    text-indent: -99999px;
    z-index: 2
}

.collect_s .catalog .common:after {
    background: -o-linear-gradient(45deg,#43ae09 0%,transparent 50%);
    background: linear-gradient(45deg,#43ae09 0%,transparent 50%)
}

.collect_s .catalog .common .media .sticker {
    background-color: #43ae09
}

.collect_s .catalog .common .media .lvl {
    background-color: #43ae09
}

.collect_s .catalog .common .info .info-list .data {
    color: #43ae09
}

.collect_s .catalog .common .decor .progress {
    width: 20%;
    background-color: #43ae09;
    -webkit-box-shadow: 0 0 5px #43ae09;
    box-shadow: 0 0 5px #43ae09
}

.collect_s .catalog .uncommon:after {
    background: -o-linear-gradient(45deg,#397de5 0%,transparent 50%);
    background: linear-gradient(45deg,#397de5 0%,transparent 50%)
}

.collect_s .catalog .uncommon .media .sticker {
    background-color: #397de5
}

.collect_s .catalog .uncommon .media .lvl {
    background-color: #397de5
}

.collect_s .catalog .uncommon .info .info-list .data {
    color: #397de5
}

.collect_s .catalog .uncommon .decor .progress {
    width: 30%;
    background-color: #397de5;
    -webkit-box-shadow: 0 0 5px #397de5;
    box-shadow: 0 0 5px #397de5
}

.collect_s .catalog .rare:after {
    background: -o-linear-gradient(45deg,#d561e3 0%,transparent 50%);
    background: linear-gradient(45deg,#d561e3 0%,transparent 50%)
}

.collect_s .catalog .rare .media .sticker {
    background-color: #d561e3
}

.collect_s .catalog .rare .media .lvl {
    background-color: #d561e3
}

.collect_s .catalog .rare .info .info-list .data {
    color: #d561e3
}

.collect_s .catalog .rare .decor .progress {
    width: 50%;
    background-color: #d561e3;
    -webkit-box-shadow: 0 0 5px #d561e3;
    box-shadow: 0 0 5px #d561e3
}

.collect_s .catalog .ultra-rare:after {
    background: -o-linear-gradient(45deg,#f9ed62 0%,transparent 50%);
    background: linear-gradient(45deg,#f9ed62 0%,transparent 50%)
}

.collect_s .catalog .ultra-rare .media .sticker {
    background-color: #f9ed62
}

.collect_s .catalog .ultra-rare .media .sticker .data {
    color: #000
}

.collect_s .catalog .ultra-rare .media .lvl {
    background-color: #f9ed62
}

.collect_s .catalog .ultra-rare .media .lvl .data,.collect_s .catalog .ultra-rare .media .lvl .num {
    color: #000
}

.collect_s .catalog .ultra-rare .info .info-list .data {
    color: #f9ed62
}

.collect_s .catalog .ultra-rare .decor .progress {
    width: 70%;
    background-color: #f9ed62;
    -webkit-box-shadow: 0 0 5px #f9ed62;
    box-shadow: 0 0 5px #f9ed62
}

.collect_s .catalog .epic:after {
    background: -o-linear-gradient(45deg,#ff8a00 0%,transparent 50%);
    background: linear-gradient(45deg,#ff8a00 0%,transparent 50%)
}

.collect_s .catalog .epic .media .sticker {
    background-color: #ff8a00
}

.collect_s .catalog .epic .media .lvl {
    background-color: #ff8a00
}

.collect_s .catalog .epic .info .info-list .data {
    color: #ff8a00
}

.collect_s .catalog .epic .decor .progress {
    width: 85%;
    background-color: #ff8a00;
    -webkit-box-shadow: 0 0 5px #ff8a00;
    box-shadow: 0 0 5px #ff8a00
}

.collect_s .catalog .legendary:after {
    background: -o-linear-gradient(45deg,#fc252f 0%,transparent 50%);
    background: linear-gradient(45deg,#fc252f 0%,transparent 50%)
}

.collect_s .catalog .legendary .media .sticker {
    background-color: #fc252f
}

.collect_s .catalog .legendary .media .lvl {
    background-color: #fc252f
}

.collect_s .catalog .legendary .info .info-list .data {
    color: #fc252f
}

.collect_s .catalog .legendary .decor .progress {
    width: 101%;
    background-color: #fc252f;
    -webkit-box-shadow: 0 0 5px #fc252f;
    box-shadow: 0 0 5px #fc252f
}

.collect_s .catalog .legenryf:after {
    background: -o-linear-gradient(45deg,#32FAF4 0%,transparent 50%);
    background: linear-gradient(45deg,#32FAF4 0%,transparent 50%)
}

.collect_s .catalog .legenryf .media .sticker {
    background-color: #32faf4
}

.collect_s .catalog .legenryf .media .lvl {
    background-color: #32faf4
}

.collect_s .catalog .legenryf .info .info-list .data {
    color: #32faf4
}

.collect_s .catalog .legenryf .decor .progress {
    width: 101%;
    background-color: #32faf4;
    -webkit-box-shadow: 0 0 5px #32faf4;
    box-shadow: 0 0 5px #32faf4
}

.collect_s .catalog .dfhfgjfg:after {
    background: -o-linear-gradient(45deg,#FDFDFC 0%,transparent 50%);
    background: linear-gradient(45deg,#FDFDFC 0%,transparent 50%)
}

.collect_s .catalog .dfhfgjfg .media .sticker {
    background-color: #fdfdfc
}

.collect_s .catalog .dfhfgjfg .media .lvl {
    background-color: #fdfdfc
}

.collect_s .catalog .dfhfgjfg .info .info-list .data {
    color: #fdfdfc
}

.collect_s .catalog .dfhfgjfg .decor .progress {
    width: 101%;
    background-color: #fdfdfc;
    -webkit-box-shadow: 0 0 5px #fdfdfc;
    box-shadow: 0 0 5px #fdfdfc
}

.collect_s .catalog .empty {
    display: block;
    min-width: 300px;
    max-width: 320px;
    width: 100%;
    margin-right: 16px
}

.collect_s .btn-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 32px;
    margin: 0 -8px -16px
}

.collect_s .btn-row .base-btn {
    margin: 0 8px 16px
}

.mk-social {
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 16px;
	color: var(--clr-common-heading);
}
.collect_s .catalog .epic .fill-btn {
   background-image: linear-gradient( 183deg , #ffb45b, #ff8a00);
}

.collect_s .catalog .epic .fill-btn:hover {
    box-shadow: 0 20px 40px 0 rgb(255 166 59 / 34%);
}

.collect_s .catalog .legendary .fill-btn {
background-image: linear-gradient( 183deg , #ff7c82, #fc252f);
}

.collect_s .catalog .legendary .fill-btn:hover {
     box-shadow: 0 20px 40px 0 rgb(255 65 73 / 28%);

}



.collect_s .catalog .legenryf .fill-btn {background-image: linear-gradient( 183deg , #4efff9, #00b3ad);}

.collect_s .catalog .legenryf .fill-btn:hover {
     box-shadow: 0 20px 40px 0 rgb(48 226 220 / 22%);
}

.collect_s .catalog .rare .fill-btn {background-image: linear-gradient( 183deg , #f288ff, #d561e3);}

.collect_s .catalog .rare .fill-btn:hover {
     box-shadow: 0 20px 40px 0 rgb(213 97 227 / 27%);
}

._orientationRight_c30e .button_f0b0 {
    margin-right: 7px!important;
}

.epic .fill-btn {
    background-image: linear-gradient( 183deg , #ffb45b, #ff8a00);
}

.epic .fill-btn:hover {
        box-shadow: 0 20px 40px 0 rgb(255 166 59 / 34%);

}

.epic .active-dark-mode .services-info {

    border: 1px solid #f99b3b;

    background: rgb(22 22 38);
}

.epic .services-info {
    border: 1px solid #f99b3b;

}

.epic .services-info .si-circle {
    background-image: linear-gradient( 183deg , #ffac4b, #ff8f0c);

}

.epic .modal-dialog .modal-body .service-id-box {
    background-image: linear-gradient( 183deg , #ffab48, #ff8e09);
}

.epic .ahbtn.bs-2 {
    color: #ff8f0c;
    background: rgb(255 165 60 / 18%);
}
.epic .si-overlay {
    background: url(https://storage2.perfectcdn.com/9e41b1/u4yq08eht77s4cp7.svg);

}


.legendary .fill-btn {
    background-image: linear-gradient( 183deg , #ff7c82, #fc252f);
}

.legendary .fill-btn:hover {
    box-shadow: 0 20px 40px 0 rgb(255 65 73 / 28%);
}

.legendary .active-dark-mode .services-info {

    border: 1px solid #f99b3b;

    background: rgb(22 22 38);
}

.legendary .services-info {
 
    border: 1px solid #fc363f;
 
 
}

.legendary .services-info .si-circle {
        background-image: linear-gradient( 183deg , #ff797f, #fc3841);

}

.legendary .modal-dialog .modal-body .service-id-box {
   background-image: linear-gradient( 183deg , #ff777d, #fd3942);
}

.legendary .ahbtn.bs-2 {
    color: #fc3b44;
    background: rgb(255 60 60 / 18%);
}
.legendary .si-overlay {
    background: url(https://storage2.perfectcdn.com/9e41b1/5jq44547dq91tr4r.svg);
  
}



.legenryf .fill-btn {
    background-image: linear-gradient( 183deg , #4efff9, #00b3ad);
}

.legenryf .fill-btn:hover {
    box-shadow: 0 20px 40px 0 rgb(48 226 220 / 22%);
}

.legenryf .active-dark-mode .services-info {

    border: 1px solid #f99b3b;

    background: rgb(22 22 38);
}

.legenryf .services-info {
    border: 1px solid #23d5cf;
}

.legenryf .services-info .si-circle {
    background-image: linear-gradient( 183deg , #3aece6, #06b9b3);
}

.legenryf .modal-dialog .modal-body .service-id-box {
    background-image: linear-gradient( 183deg , #3ef0ea, #07bab4);
}

.legenryf .ahbtn.bs-2 {
    color: #00fff6;
    background: rgb(42 220 214 / 22%);
}
.legenryf .si-overlay {
    background: url(https://storage2.perfectcdn.com/9e41b1/yor4kb31gtjh5z0o.svg);
  
}




.rare .fill-btn {
    background-image: linear-gradient( 183deg , #f288ff, #d561e3);
}

.rare .fill-btn:hover {
    box-shadow: 0 20px 40px 0 rgb(213 97 227 / 27%);
}

.rare .active-dark-mode .services-info {

    border: 1px solid #f99b3b;

    background: rgb(22 22 38);
}

.rare .services-info {
    border: 1px solid #e677f3;
}

.rare .services-info .si-circle {
    background-image: linear-gradient( 183deg , #eb7ff9, #d764e5);
}

.rare .modal-dialog .modal-body .service-id-box {
    background-image: linear-gradient( 183deg , #e97df7, #d966e7);
}

.rare .ahbtn.bs-2 {
    color: #d865e6;
    background: rgb(231 121 244 / 17%);
}
.rare .si-overlay {
    background: url(https://storage2.perfectcdn.com/9e41b1/3f6p6ajqrrlgpjgj.svg);
  
}

.input-group {
	
	    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.main-menu ul li a:hover {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.1);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.table777 {
    margin-bottom: 0px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff61 100%);
}
 .active-dark-mode .table777 {
    margin-bottom: 0px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background: linear-gradient(to bottom, #151626bf 0%, #161626 100%);
}

.table777 tbody tr td:first-child {
    padding-left: 16px;
}
.active-dark-mode .table777 tbody tr td:first-child {
    padding-left: 16px;
}
.table777 tbody tr td:last-child {
    padding-right: 16px;
}
.active-dark-mode .table777 tbody tr td:last-child {
    padding-right: 16px;
}
.table777 thead tr th:first-child {
    padding-left: 16px;
    border-top-left-radius: 16px;
}
.active-dark-mode .table777 thead tr th:first-child {
    padding-left: 16px;
    border-top-left-radius: 16px;
}
.table777 thead tr th:last-child {
    padding-right: 16px;
    border-top-right-radius: 16px;
}
.active-dark-mode .table777 thead tr th:last-child {
    padding-right: 16px;
    border-top-right-radius: 16px;
}

.table777 tbody tr:last-child td {
    border-bottom: none;
}
.active-dark-mode .table777 tbody tr:last-child td {
    border-bottom: none;
}
.table777 tbody tr:first-child td {
    border-top: 0px;
}
.active-dark-mode .table777 tbody tr:first-child td {
    border-top: 0px;
}
.table777 tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}
.active-dark-mode .table777 tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}
.table777 tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}
.active-dark-mode .table777 tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}
#block_55 .services-category {
    font-weight: 600;
    color: "" !important;
    background: "" !important;
    padding-top: 24px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    padding-bottom: 12px !important;
}

#block_55 .services-list-category-title td {
    text-align: left;
}

.table777 tbody tr:first-child td {
    border-top: 0px;
}

.table777 tbody tr td {
    font-size: "" !important;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 7px;
    padding-right: 7px;
    vertical-align: middle;
    height: 40px;
    color: #334e6e;
    background: #ffffff;
    border-color: #d3eae7;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #d3eae7;
}
.active-dark-mode .table777 tbody tr td {
    font-size: "" !important;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 7px;
    padding-right: 7px;
    vertical-align: middle;
    height: 40px;
    color: #ffffff;
    background: #ffffff;
    border-color: #ffffff0f;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ffffff0f;
}
.table777 {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table777 thead tr th {
    font-size: "";
    border-bottom: none;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 7px;
    padding-right: 7px;
    border-top: none;
    border-left: none;
    border-right: none;
    vertical-align: middle;
    height: 56px;
    color: #61768e;
    background: #ffffff;
}
.active-dark-mode .table777 thead tr th {
    font-size: "";
    border-bottom: none;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 7px;
    padding-right: 7px;
    border-top: none;
    border-left: none;
    border-right: none;
    vertical-align: middle;
    height: 56px;
    color: #ffffff;
    background: #151627;
}
 
.table777 tbody tr:nth-child(even) td {
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 10%, rgb(63 163 249 / 8%) 100%);
}

.active-dark-mode .table777 tbody tr:nth-child(even) td {
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 10%, rgb(0 137 255 / 8%) 100%);
}

.table777 tbody tr.rare:nth-child(even) td {
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 10%, rgb(227 116 240 / 16%) 100%);
}
.table777 tbody tr.legendary:nth-child(even) td {
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 10%, rgb(254 96 103 / 15%) 100%);
}

.table777 tbody tr.legenryf:nth-child(even) td {
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 10%, rgb(48 226 220 / 11%) 100%);
}

.table777 tbody tr.epic:nth-child(even) td {
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 10%, rgb(255 155 37 / 15%) 100%);
}


.table777 tbody tr:nth-child(odd) td {
    background: #0089ff2e;
}

.table777 tbody tr.rare:nth-child(odd) td {
    background: #4fa9f72e;
}

.table777 tbody tr.legendary:nth-child(odd) td {
    background: #fd555d14;
}

.table777 tbody tr.legenryf:nth-child(odd) td {
    background: #4fa9f72e;
}

.table777 tbody tr.epic:nth-child(odd) td {
    background: #ff9d291f;
}

 





.table777 th, .table777 td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #000000;
}
.table-wr {
    box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.table-responsive7 .table-service {
    min-width: 120px;
    max-width: 650px;
}

@media (max-width: 768px) {
.table-responsive7 .table-service {
    min-width: 310px;
}

}

.table777 .nowrap {
    white-space: nowrap;
}

td.idfaer21:after {
    content: "HIT";
    background-size: cover;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    animation: neon-1 .1s ease-in-out infinite alternate;
        margin-left: 10px;
    font-weight: bold;
}
td.idfaer21:before {
  content: "";
  background-image: url(https://storage2.perfectcdn.com/9e41b1/bhlg1l8798kud200.gif);
  background-size: cover;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
@keyframes neon-1 {
    from {
        text-shadow: 0 0 6px rgba(202, 228, 225, 0.92), 0 0 30px rgba(202, 228, 225, 0.34), 0 0 12px rgba(191, 226, 255, 0.52), 0 0 21px rgba(191, 226, 255, 0.92), 0 0 34px rgba(191, 226, 255, 0.78), 0 0 54px rgba(191, 226, 255, 0.92);
    }
    to {
        text-shadow: 0 0 6px rgba(202, 228, 225, 0.98), 0 0 30px rgba(202, 228, 225, 0.42), 0 0 12px rgba(191, 226, 255, 0.58), 0 0 22px rgba(191, 226, 255, 0.84), 0 0 38px rgba(191, 226, 255, 0.88), 0 0 60px #FFF;
    }
}


.idfaer777 {
	    background: #959eff5e;
}

td .img-responsive {
	border:none;
}