/* -------------------------------------------

Name: 		coin-web-app
Version:    1.0
Author:		
------------------------------------------- */
/* [Table of contents] 
  1. General Css 
  2. Color Codes
  3. Typography
  4. Header
  5. Sign Up
  6. Login
  7. Footer
  8. Home Page
  9 .Master Collection
  10. Member Dashboard
  11.Coin Details-Empty
  12.UploadedSingleCoinDetails

*/

/* -------------------------------------------   
 # [Fonts family]
 font-family: 'Montserrat', sans-serif;
 font-family: 'Inter', sans-serif;
 font-family: 'Poppins', sans-serif;
------------------------------------------- */

/*===========================
    1. General Css
   
===========================*/

html {
  /* 1rem=10px  <=== NOTE */
  font-size: 62.5%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}

body,
html {
  color: var(--primary-text);
  font-size: 10px;
  font-weight: 400;
  font-family: var(--primary-font);
  scroll-behavior: smooth;
  line-height: 1.5;
  background-image: url("../images/gallery/Coin.png");
  background-position: center center;
  background-size: contain;
  position: relative;
  background-repeat: no-repeat;
  background-size: 35%;
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  background-image: var(--primary-gradiant-color);

  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  max-width: 100%;
  margin: 0 auto;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

input.form-control,
select.form-control,
textarea.form-control {
  outline: none;
  transition: background-color 5000s ease-in-out 0s;
}

input.form-control:hover,
input.form-control:focus,
select.form-control:hover,
select.form-control:focus textarea.form-control:hover,
textarea.form-control:focus,
.form-control:hover,
.form-control:focus,
.form-check-input,
.form-check-input:hover,
.form-check-input:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
}

button.btn:hover,
button.btn:focus,
.btn:focus,
.btn:hover {
  outline: 0;
  box-shadow: none;
}

.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus .btn.active:focus {
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--black-color);
  border-color: var(--black-color);
}

::-moz-selection {
  /* Code for Firefox */
  color: #ffffff;
  background: #48b7c4;
}

::selection {
  color: #ffffff;
  background: #48b7c4;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

a {
  color: var(--black-color);
  text-decoration-line: underline;
  cursor: pointer;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-track {
  background: var(--black-color);
}

::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  min-height: 10rem;
  background: var(--secondry-solid-color);
}

.form-check-input {
  margin-right: 0.6rem;
}

.visibility-hidden {
  visibility: hidden;
}

/* HEADER BUTTONS (Login+signup) */
.header-btn {
  color: var(--white-color);
  font-family: var(--secondary-font);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem 2rem;
  overflow: hidden;
  text-transform: capitalize;
  text-align: center;
  line-height: 0.8rem;
  border-radius: 0.8rem;
  border: 0.2rem solid var(--secondry-solid-color);
  background: var(--black-color-40);
  backdrop-filter: blur(2.9px);
  position: relative;
  transition: all 0.8s ease;
  white-space: pre;
  display: inline-flex;
}

.header-btn:hover {
  color: var(--black-color);
  background: var(--golden-gradiant-color);
  border: 0.2rem solid var(--secondry-solid-color);
}

.primary-btn {
  width: 100%;
  color: var(--black-color);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0.8rem;
  background: var(--btn-secondry-gradient-color);
  border-color: var(--btn-secondry-gradient-color);
  position: relative;
  transition: all 0.8s ease;
  min-height: 3.6rem;
  padding: 1rem 2rem;
}

.primary-btn:hover {
  background: var(--golden-gradiant-color);
  border-color: var(--golden-gradiant-color);
}

/* form button */
.primary-join-btn {
  border-radius: 0.4rem;
  background: var(--gray-gradiant-color);
  width: 100%;
  max-width: 28rem;
  min-height: 4.2rem;
  text-align: center;
  color: var(--white-color);

  border: none;
  border-radius: 0.8rem;
  position: relative;
  transition: all 0.8s ease;
  min-height: 4rem;
  font-size: 14px;
}

.primary-join-btn:hover {
  transform: translateY(-2px);
}

.primary-join-btn.active {
  background: var(--btn-bg-gradient-color);
}

.join-button__cta {
  width: 100%;
  max-width: 100%;
  border: 0.01rem solid var(--white-color);
  background: transparent;
  min-height: 5rem;
  color: var(--white-color);
  text-align: center;
  font-size: 2.3rem;
  line-height: 3.6rem;
  font-weight: 200;
  border-radius: 0.8rem;
}

.h-button-primary {
  width: 100%;
  max-width: 100%;
  border-radius: 0.8rem;
  background: var(--tertiary-solid-color);
  min-height: 3.2rem;
  color: var(--white-color);
  text-align: center;
  font-family: var(--inter-font);
  font-size: 1.5rem;
  font-weight: 500;
  border: var(--tertiary-solid-color);
  padding: 0.8rem 2rem;
}

.h-button-primary:hover {
  background-color: var(--black-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.edit-btn {
  width: 100%;
  max-width: 12.5rem;
  min-height: 2.5rem;
  border-radius: 0.8rem;
  border: 0.01rem solid var(--white-color);
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  background-color: transparent;
  padding: 0.5rem 1.4rem;
  position: relative;
}

.btn-outline-cancel {
  border: 1px solid var(--black-color);
}

/* scroll to top button */
.scrollto__topbtn {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  z-index: 99;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 2.8rem;
  border-radius: 50%;
  color: var(--black-color);
  height: 4rem;
  width: 4rem;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  cursor: pointer;
  border: 0.2rem solid var(--golden-gradiant-colo);
  background: var(--golden-gradiant-color);
  border-color: var(--golden-gradiant-color);
}

.scrollto__topbtn i .bi {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.scrollto__topbtn:hover {
  margin-bottom: 4px;
}

/* margin clasess */
.margin-x-35 {
  margin-inline: 3.5rem;
}

.margin-r-20 {
  margin-right: 2rem;
}

.m-l-13 {
  margin-left: 1.3rem;
}

.m-r-8 {
  margin-right: 0.8rem;
}

.m-r-17 {
  margin-right: 1.7rem;
}

.gx-8 {
  --bs-gutter-x: 8rem;
}

/* float clasess */
.float-inline {
  float: inline-end;
  z-index: 11111;
  position: relative;
}

.mix-blend-mode {
  mix-blend-mode: darken;
}

/*===========================
   2. Color Codes
===========================*/

:root {
  /* Solid Colors */
  --primary-solid-color: #031449;
  --secondry-solid-color: #dcb067;
  --tertiary-solid-color: #ab1b27;

  /* Gradiants */

  --primary-gradiant-color: linear-gradient(
    301deg,
    rgba(11, 32, 96, 0.92) 64.41%,
    rgba(208, 16, 16, 0.92) 95.62%
  );
  --secondry-gradient-color: linear-gradient(
    121deg,
    rgba(255, 255, 255, 0.4) 3.2%,
    rgba(255, 255, 255, 0.29) 95.17%
  );

  --golden-gradiant-color: linear-gradient(
    90.21deg,
    #ffdf8f 20.76%,
    #dcb067 84.73%
  );
  --gray-gradiant-color: linear-gradient(
    178.18deg,
    #c8c8c8 -13.56%,
    #c2c3c5 158.28%,
    #0b2060 158.3%
  );
  --new-gradiant-color: linear-gradient(0deg, #f0f0f0, #f0f0f0),
    linear-gradient(0deg, #ffffff, #ffffff);

  --bg-graident-color: linear-gradient(
    121deg,
    rgba(255, 255, 255, 0.4) 3.2%,
    rgba(255, 255, 255, 0.29) 95.17%
  );
  --white-gradient-color: linear-gradient(
    120.93deg,
    #ffffff 3.2%,
    rgba(255, 255, 255, 0.72) 95.17%
  );
  --btn-bg-gradient-color: linear-gradient(
    178deg,
    #0b2060 -13.56%,
    #0b2060 158.3%
  );
  --btn-secondry-gradient-color: linear-gradient(
    90deg,
    #fff 20.76%,
    #ababab 84.73%
  );
  --cta-graident-color: linear-gradient(
    279deg,
    #0b2060 0%,
    rgba(11, 32, 96, 0) 92%
  );
  --btn-border-gradient-color: linear-gradient(
    272.52deg,
    #dcb067 -1.68%,
    #fef0c2 98.81%
  );

  /* Nutural Colors */
  --white-color: #ffffff;
  --black-color: #000000;
  --black-color-40: rgba(0, 0, 0, 0.4);
  --black-color-60: rgba(17, 17, 19, 0.6);
  --light-yellow-color: #ffdf8f;
  --dark-yellow-color: #dcb067;
  --dark-gray-color: #545454;
  --dark-shade-gray-color: #282828;
  --dark-gray-text-color: #ababab;
  --dark-blue-color: #545c71;
  --light-blue-color: #7681a4;
  --light-gray-color: #858585;
  --Gray94-ccolor: #f0f0f0;
  --logo-color: #c29038;
  --egg-white: #fef0c2;
  --dark-shade-gray-color: #313131;
  --eerie-black: #1f1f1f;
  --silver--chalice: #aeaeae;
  --lavender--blue: #aeaeae;
  --cornmeal-color: #ffd590;
  --neon-silver-color: #cfcfd0;
  --royal-blue-color: #0b2060;

  /* Font Family */
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Poppins", sans-serif;
  --inter-font: "Inter", sans-serif;
  --robo-font: "Roboto";
}

/*===========================
   3. Typography
===========================*/
/* h1 {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--primary-text);
}

h2 {
  color: var(--primary-text);
  font-size: 4.7rem;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h3 {
  color: var(--text-white);
  font-size: 3.1rem;
  line-height: 1.2;
  font-weight: 700;
}

h4 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-text);
}

h5 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--primary-text);
} */

/* p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 1rem;
  color: var(--primary-text);
  font-family: var(--secondary-font);
} */
main {
  padding: 2.8rem 0 0 0;

  position: relative;
}

/*===========================
   4. Header
===========================*/

.header {
  width: 100%;
  transition: 0.3s ease-in-out;
}

.header .navbar {
  padding: 1.5rem 5.6rem;
}

header.fixed-top {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  padding: 0;
  width: 100%;
  animation: fadeInDown 0.3s ease-in-out 0s 1 normal none running;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}

header.fixed-top nav {
  background-color: rgba(11, 32, 96, 0.92);
  z-index: 111111;
}

.header .navbar-brand {
  margin-right: 0;
  padding: 0;
}

.navbar-brand .logo {
  max-width: 80%;
}

.header .navbar-nav .nav-link {
  font-family: var(--primary-font);
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0 2rem;
  padding: 0;
  position: relative;
  white-space: nowrap;
}

.header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0%;
  border-bottom: 0.2rem solid var(--secondry-solid-color);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.header .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
  color: var(--secondry-solid-color);
}

.header-buttons {
  display: flex;
  align-items: center;
}

.item-count {
  position: absolute;
  top: -10px;
  right: 2px;
  font-size: 10px;
  font-weight: 600;
  min-width: 15px;
  height: 15px;
  padding: 0 2px;
  line-height: 1.25em;
  border-radius: 50%;
  background-color: #dcb067;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-family: var(--inter-font);
}

.nav-item {
  position: relative;
  /* align-self: center; */
}

.header .nav-toggler i {
  color: var(--black-color);
  font-size: 1.8rem;
  height: 3.3rem;
  width: 3.5rem;
  line-height: 3.2rem;
  padding: 0;
  text-align: center;
  border-radius: 0;
  background: var(--golden-gradiant-color);
  box-shadow: 0.4rem 0.4rem 0.6rem rgba(0, 0, 0, 0.02);
  display: block;
}

.header .navbar-toggler {
  outline: none;
  border: none;
  padding: 0;
}

.header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* hamburger */
.hamburger {
  cursor: pointer;
  background: var(--golden-gradiant-color);

  box-shadow: 0.4rem 0.4rem 0.6rem rgba(0, 0, 0, 0.02);
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 2.5em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--black-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/*===========================
   5. Sign Up
===========================*/
.login-area {
  background: var(--bg-graident-color);
  /* margin-top: 4.8rem; */

  border-radius: 0.8rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.h-title {
  color: var(--white-color);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 3.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2.2rem 0;
}

.basic-login {
  background: var(--white-gradient-color);
  max-width: 90rem;
  margin-inline: auto;
  border-radius: 0.8rem;
  margin-inline: 4rem;
  z-index: 0;
  position: relative;
  padding: 9rem 8rem 5rem 8rem;
}

.basic-login .form-group {
  margin-bottom: 3.5rem;
}

.basic-login .form-label {
  font-family: var(--primary-font);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6rem;
  letter-spacing: 0.04rem;
  color: var(--light-gray-color);
  margin-bottom: 1rem;
}

.basic-login .form-check-label {
  color: var(--black-color);
  font-size: 1rem;
  text-transform: uppercase;
}

.bottom-check {
  margin-top: 4rem;
  display: flex;
}

.basic-login .bottom-check .form-check-label {
  font-size: 1.4rem;
  text-align: center;
  text-transform: unset;
}

.basic-login .form-check-input {
  border: 0.1rem solid var(--black-color);
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0;
  /* margin-right: 1.1rem; */
}

.basic-login .bottom-check .form-check-input {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.25em;
}

.basic-login .term-condition {
  text-transform: capitalize;
}

.basic-login .term-condition:hover {
  color: var(--secondry-solid-color);
}

.basic-login .form-control,
.basic-login .form-select {
  border-radius: 0.8rem;
  border: 0.1rem solid var(--Gray94-ccolor);
  background: var(--white-color);
  min-height: 5.5rem;
  box-shadow: 0.4rem 0.4rem 0.6rem rgba(0, 0, 0, 0.02);
  color: var(--light-gray-color);
  font-size: 1.2rem;
  line-height: 2.4rem;
  /* 200% */
  letter-spacing: 0.01rem;
  padding-inline: 1.6rem 1rem;
  transition: 250ms all linear 0ms;
}

.form-control {
  position: relative;
}

.basic-login .form-control:focus,
.basic-login .form-select:focus {
  border-color: var(--black-color);
}

.login-area-button {
  margin-top: 3rem;
  display: block;
  text-align: center;
}

/*===========================
   6. Login
===========================*/
.login-btn .primary-join-btn {
  background: var(--btn-bg-gradient-color);
}

.forgot-link {
  width: 100%;
  text-align: right;
  margin-top: -1.7rem;
}

.forgot-text {
  color: var(--light-gray-color);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
  letter-spacing: 0.04rem;
  text-decoration: underline;
  transition: all 0.3 linear;
}

.forgot-text:hover {
  color: var(--tertiary-solid-color);
  text-decoration: none;
}

/*===========================
   7. Footer
===========================*/
footer {
  position: relative;
}

.footer-bg {
  background-color: var(--primary-solid-color);
  padding: 10rem 5.6rem 4rem 5.6rem;
  position: absolute;
  width: 100%;
}

.footer-widget__text p {
  color: var(--white-color);
  font-family: var(--inter-font);
  font-size: 2.3rem;
  font-weight: 400;
  word-wrap: break-word;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 22.2rem;
}

.footer-widget__social {
  display: flex;
  align-items: center;
  justify-content: end;
}

.footer-widget__social a {
  height: 4.8rem;
  width: 4.8rem;
  color: var(--secondry-solid-color);
  background: var(--black-color);
  text-align: center;
  border-radius: 50%;
  font-size: 2rem;
  border: 0.2rem solid var(--secondry-solid-color);
  display: flex;
  text-decoration: none;
}

.footer-widget__social a i {
  margin: auto;
}

.footer-widget__social a:hover {
  color: var(--black-color);
  background: var(--golden-gradiant-color);
  border: 0.2rem solid var(--secondry-solid-color);
}

.footer-copyright {
  margin-top: 3.2rem;
}

.f-copyright__dom {
  color: var(--dark-blue-color);
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--inter-font);
  display: flex;
}

.f-copyright__list {
  text-align: center;
}

.f-copyright__list ul {
  display: flex;
  align-items: center;
  justify-content: end;
}

.f-copyright__list a {
  color: var(--dark-blue-color);
  text-align: end;
  font-family: var(--inter-font);
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
}

.f-copyright__list a:hover {
  color: var(--secondry-solid-color);
}

.h-line {
  width: 0.3rem;
  height: 2.3rem;
  background-color: var(--dark-blue-color);
  color: var(--dark-blue-color);
  margin: 0 0.8rem;
}

/*===========================
   8. Home PageMaster Collection
===========================*/
.hero-content {
  /* margin-top: 4rem; */
  margin-bottom: 6rem;
}

.hero-title {
  margin-top: 1rem;
}

.hero-title span {
  font-size: 14rem;
  color: var(--logo-color);
}

.hero-title h1 span {
  font-size: 15rem;
  color: var(--logo-color);
  line-height: 5rem;
}

.hero-title .sub-title {
  color: var(--egg-white);
  font-size: 6.8rem;
  letter-spacing: -0.204rem;
  text-transform: uppercase;
  padding-left: 0.7rem;
}

.hero-title .title-des {
  color: var(--white-color);
  font-size: 2.6rem;
  padding-left: 0.7rem;
}

.banner-cta {
  position: relative;
  width: 100%;
  /* max-width: 65.2rem; */
  /* height: 26rem; */
  background: var(--tertiary-solid-color);
  border-radius: 1.4rem;
  height: 100%;
}

.banner-cta-overlay {
  width: 100%;
  /* max-width: 65.2rem; */
  /* height: 26rem; */
  left: 0;
  top: 0;
  height: 100%;
  position: absolute;
  background: var(--cta-graident-color);
  border-radius: 1.4rem;
}

.banner-cta-des {
  padding: 3rem 5rem;
  position: absolute;
}

.banner-cta-des p {
  color: var(--white-color);
  font-size: 1.6rem;
  line-height: 3.6rem;
}

.cta-video__play {
  display: flex;
  justify-content: end;
  align-items: center;
}

.video-play__text p {
  color: var(--white-color);
  font-family: var(--secondary-font);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.018rem;
  margin-top: -1.3rem;
  cursor: pointer;
}

.video-play__icon img {
  max-width: 5.2rem;
}

.coin-display__card {
  background-color: var(--black-color);
  padding: 1rem;
  border-radius: 0 0 1rem 1rem;
  border-radius: 0.5rem;
}

/* .coins-display__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
} */
.card-content {
  border-radius: 1rem;
  border: 0.1rem solid var(--black-color);
  background: var(--dark-shade-gray-color);
  box-shadow: 0.4rem 0.4rem 1.3rem 0.3rem rgba(0, 0, 0, 0.11);
  padding: 1.3rem;
  width: 100%;
  /* min-width: 35rem;  */
  cursor: pointer;
  transition: all 0.6s linear;
  /* min-height: 572px; */
}

/* .card-content:hover {
  transform: scale(1.02);
} */
.report-textarea {
  margin-top: 5px;
  position: relative;
}

.report-textarea .form-control {
  height: 100px;
}

.report-textarea #custom-button {
  position: absolute;
  bottom: 3px;
  right: 5px;
  background-color: var(--black-color);
  border-color: var(--black-color);
  color: var(--white-color);
}

.display-card__title .coin-detail__title {
  border-radius: 0;
  font-family: var(--primary-font);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white-color);
  padding-left: 0;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.1rem solid var(--light-yellow-color);
  padding: 6px 0;
}

.display-card__title .form-controls {
  color: var(--white-color);
}

.chat-icon {
  position: relative;
  margin-right: 1rem;
}

.items {
  position: absolute;
  top: -9px;
  right: 0px;
  color: var(--white-color);
  font-family: var(--inter-font);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.08px;
}

.coin-details__meta {
  padding-top: 1rem;
}

.coin-details__meta-group {
  margin-bottom: 1rem;
  /* width: 50%; */
}

.coin-details__meta-label {
  color: var(--light-yellow-color);
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: capitalize;
}

.coin-details__meta-des {
  color: var(--white-color);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 13px;
}

.img-box {
  display: flex;
  padding: 1rem 0;
}
.bg-white {
  background: var(--white-color);
  position: relative;
  padding: 8.5rem 4.5rem;
  padding-bottom: 1rem;
}
.p-left-id {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1;

  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}

.p-right-id {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 1;

  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}
.center-log {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.centered-text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #a69d85;
  text-align: center;
  width: 100%;
  padding-top: 5rem;
}
.bottom-center {
  position: absolute;
  bottom: 25px;
}

.centered-text::before,
.centered-text::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #dcb067;
  margin: 0 10px;
}

.img-box .left-coin__img,
.img-box .right-coin__img {
  position: relative;
  width: 50%;
  background: var(--white-color);
  margin-right: 0.1rem;
  /* min-height: 14.1rem; */
  display: flex;
  align-items: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

.img-box .left-coin__img img,
.img-box .right-coin__img img {
  transition-duration: 2s;
  object-fit: cover;
}

.card-content .left-coin__img,
.card-content .right-coin__img {
  height: 100%;
  padding: 25px 0;
}

/* .img-box .left-coin__img img:hover,
.img-box .right-coin__imgimg:hover {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
} */
.display-card__button {
  background-color: var(--black-color);
  padding: 1rem 0rem;
}

.join-button__cta-container {
  margin-top: 7.2rem;
}

.join-button__cta-button .join-button__cta {
  max-width: 90%;
}

.join-button__cta:hover {
  transform: translateY(-2px);
}

.display-card__details {
  background-color: var(--black-color);
  padding: 0.7rem 1.5rem;
}

.display-card__details h3 {
  border-bottom: 0.1rem solid var(--light-yellow-color);
  text-transform: uppercase;
  color: var(--white-color);
  text-transform: uppercase;
  font-family: var(--primary-font);
  font-size: 1rem;
  padding-bottom: 0.8rem;
}

.h-pricing-table__info {
  margin: 6rem 0 4rem 0;
}

.h-pricing__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  color: var(--light-yellow-color);
}

.h-pricing__title span {
  color: var(--tertiary-solid-color);
  text-transform: uppercase;
}

.h-pricing__table {
  width: 100%;
  margin-top: 6rem;
}

/* .h-carousel__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
} */
.h-pricing-card__container {
  border-radius: 2.5rem;
  border: 0.5rem solid var(--dark-yellow-color);
  background: var(--white-color);
  padding: 6rem 1.8rem 3.5rem 1.8rem;
  transition: 0.5s ease-in-out;
  height: 100%;
  position: relative;
  /* max-width: 29rem; */
  width: 100%;
  /* min-height: 58rem; */
}

/* .h-pricing-card__container:hover{
  transform: scale(1.02);
} */
.h-pricing-card__title h3 {
  color: var(--black-color);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}

.h-pricing-card__current-price {
  color: var(--eerie-black);
  text-align: center;
  font-family: var(--inter-font);
  font-size: 3rem;
  font-weight: 700;
  padding-top: 2rem;
  padding-bottom: 1.6rem;
}

.h-pricing-card__current-price span {
  color: var(--silver--chalice);
  font-size: 1.6rem;
  font-weight: 600;
}

.h-pricing-card__offer {
  color: var(--dark-gray-text-color);
  text-align: center;
  font-family: var(--inter-font);
  font-size: 1.2rem;
  font-weight: 500;
}

.h-discount-tag {
  color: var(--dark-yellow-color);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
  padding-bottom: 1rem;
}

.h-pricing-card__separator {
  border: 0.05rem solid var(--lavender--blue);
  margin: 2rem 0 5rem 0;
}

.h-pricing-card__feature-title {
  margin-bottom: 1.5rem;
  color: var(--eerie-black);
  font-family: var(--inter-font);
  font-size: 1.5rem;
  font-weight: 800;
}

.h-plan-feature__content ul li {
  color: var(--eerie-black);
  font-family: var(--inter-font);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.1rem;
}

.h-button {
  margin-top: 7rem;
}

.h-button .h-button-primary {
  width: 83%;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  bottom: 3.5rem;
  margin: auto;
}

/*===========================
   9.Master Collection
===========================*/
.master-collection__container .login-area {
  padding: 0 5rem 5rem 5rem;
}

.search-input {
  margin: 0.8rem 0 3.8rem 0;
}

.master-collection__container .coins-display__container .card-content {
  margin-top: 5rem;
}

.search-input .form-control {
  width: 100%;
  height: 4.9rem;
  max-width: 70rem;
  text-align: center;
  color: var(--black-color-60);
  font-size: 1.6rem;
  line-height: 140%;
  border-radius: 0.8rem;
  border: 0.1rem solid var(--white-color);
  display: block;
  margin: auto;
  transition: 150ms all linear 0ms;
}

.search-input .form-control:focus,
textarea:focus {
  border: 0.2rem solid var(--black-color);
}

.custome-dropdown__wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}

.custome-dropdown__wrapper .dropdown-label {
  color: var(--white-color);
  font-size: 1.3rem;
  text-transform: capitalize;
  padding-right: 1rem;
}

.sort-by {
  max-width: 36rem;
  width: 100%;
}

.sort-by .dropdown-toggle::after {
  display: none !important;
}

.sort-by .dropdown-toggle {
  max-width: 36rem;
  width: 100%;
  min-height: 4rem;
  display: block;
  margin-left: auto;
  color: var(--white-color);
  font-family: var(--inter-font);
  font-size: 1.2rem;
  text-align: left;
  font-weight: 400;
  text-transform: capitalize;
  background: var(--black-color);
  border-color: var(--black-color);
  position: relative;
  background-image: url("../images/icons/Arrow\,\ Down.svg");
  background-position: 97%;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}

.sort-by .dropdown-toggle:focus {
  border: none;
}

.dropdown-menu-dark {
  max-width: 36rem;
  width: 100%;
  color: var(--white-color);
  font-family: var(--inter-font);
  font-size: 10rem;
  font-weight: 400;
  text-transform: capitalize;
  background: var(--light-blue-color);
  border-color: var(--light-blue-color);
  text-align: left;
  letter-spacing: 0.72px;
  border-radius: 0rem;
}

.sort-by .drop_icon {
  color: var(--cornmeal-color);
  font-size: 2rem;
}

.dropdown-menu-dark .dropdown-item {
  color: var(--white-color);
  font-family: var(--inter-font);
  font-size: 1.2rem;
  text-align: left;
  font-weight: 400;
  text-transform: capitalize;
  padding: 1.2rem 1.3rem;
}

.sub-heading__title h2 {
  color: var(--white-color);
  font-size: 2.6rem;
  font-weight: 500;
  text-transform: capitalize;
}

.sort-by .form-control {
  background-color: var(--black-color);
  color: var(--white-color);
  min-height: 38px;
  border-color: var(--black-color);
}

/* Change the background color of other options */
.sort-by .form-control option:not(:checked) {
  color: var(--white-color);
  font-size: 10px;
  padding: 12px !important;
  line-height: 20px;
}

.select-coontainer {
  position: relative;
}

.select-coontainer select {
  width: 100%;
  padding: 0px 20px 0px 10px;
  background-color: #000000;
  color: #fff;
  border-color: #000000;

  font-size: 13px;
  appearance: none;
}

.select-coontainer .icon-container {
  position: absolute;
  color: #ffd590;
  top: 13px;
  right: 10px;
  height: 100%;
}

.LyImageCropper-area-d {
  box-shadow: none !important;
}

.select-coontainer .icon-container i {
  display: flex;
  align-items: center;
  font-size: 17px;
}

.select-coontainer option {
  background-color: #000000;
  font-size: 13px;
}

/*===========================
   10. Member Dashboard
===========================*/
.user-profile__card {
  background: var(--bg-graident-color);
  min-height: 27.5rem;
  border-radius: 0.8rem;
  padding: 5rem 6rem;
  height: 100%;
}

.add-coin__card {
  background: var(--black-color);
  min-height: 27.5rem;
  border-radius: 0.8rem;
  padding: 3.5rem 3rem;
  height: 100%;
}

.bio_information {
  padding: 6rem 4rem;
}

.profile-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.user-profile-avatar {
  background: var(--golden-gradiant-color);
  border: 0.8rem var(--golden-gradiant-color);
  width: 11rem;
  height: 11rem;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.user-profile-avatar .user-profile__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-position: center center;
  object-fit: cover;
}

.user-profile-avatar .camera-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Profile-userFullName {
  color: var(--white-color);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.8rem 0 0.4rem 0;
}

.Profile-userlocation {
  color: var(--white-color);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.profile-card__userDetails .Profile-occupation {
  color: var(--light-yellow-color);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.profile-card__userDetails .profile-coins__info {
  color: var(--white-color);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.4rem;
}

.profileCard-editButton .edit-btn {
  display: block;
  margin: 2rem auto 0 auto;
}

.profileCard-proceedbtn .edit-btn:hover .arrow {
  animation: slide-right 0.6s ease-out both;
}

.profileCard-editButton .edit-btn:hover {
  background-color: var(--black-color);
  border-color: var(--black-color);
}

.profileCard-editButton .edit-btn:hover .edit-pencil {
  animation: lr 0.6s ease-out both;
}

@keyframes lr {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-1px);
  }

  75% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.identify-front__container {
  background-color: var(--white-color);
  padding: 0.6rem 1.5rem 1rem 1.5rem;
  width: 100%;
  border-radius: 0.5rem;
  text-align: center;
}

.identify-front__title {
  color: var(--dark-gray-color);
  font-family: var(--inter-font);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
}

.identify-front__img .user-profile-avatar {
  width: 9rem;
  height: 9rem;
  display: block;
  margin: 0.5rem auto 0 auto;
}

.identify-front__img .camera-icon img {
  max-width: 2.4rem;
}

.attach-img__btn {
  margin-top: 0.8rem;
}

.attach-img__btn .edit-btn {
  border: 0.1rem solid var(--black-color);
  color: var(--black-color);
}

.attach-img__btn .edit-btn {
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  display: block;
  margin: auto;
  font-weight: 600;
}

.attach-img__btn .edit-btn .icon {
  position: absolute;
  height: 1.6rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.attach-img__btn .edit-btn .text {
  transform: translateX(55px);
  margin-left: 1rem;
}

.attach-img__btn .edit-btn:hover .icon {
  width: 9rem;
}

.attach-img__btn .edit-btn:hover .text {
  transition: all 0.5s;
  opacity: 0;
}

.attach-img__btn .edit-btn:active .icon {
  transform: scale(0.85);
}

.add-coin__card-content {
  padding-left: 4.2rem;
  padding-top: 2.2rem;
}

.addcoin__description {
  color: var(--cornmeal-color);
  font-size: 2.7rem;
  line-height: 3.6rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.add-coin__card-content p {
  color: var(--white-color);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 2.8rem;
  text-transform: uppercase;
}

.check_box .form-check-label {
  color: var(--white-color);
  font-family: var(--secondary-font);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 163.418%;
}

.profileCard-proceedbtn {
  display: flex;
  justify-content: end;
}

.profileCard-proceedbtn .edit-btn {
  margin-top: 0;
  margin-right: unset;
}

.profileCard-proceedbtn .edit-btn {
  transition-duration: 0.2s;
}

.profileCard-proceedbtn .edit-btn i {
  font-size: 1.2rem;
}

.profileCard-proceedbtn .edit-btn:hover {
  background-color: var(--white-color);
  border-color: var(--black-color);
  color: var(--black-color);
}

.profileCard-proceedbtn .edit-btn:hover .arrow {
  animation: slide-right 0.6s ease-out both;
}

.bio {
  color: var(--white-color);
  font-family: var(--inter-font);
  font-size: 2rem;
  font-weight: 400;
  height: 220px;

  overflow-y: auto;
}

.round-img img {
  border-radius: 50%;
}

.bio img {
  vertical-align: middle;
}

/* arrow animation */
@keyframes slide-right {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.card-cehckbox__bottom {
  margin-top: 3rem;
}

.check_box .form-check-input {
  background-color: transparent;
  width: 1.3rem;
  height: 1.3rem;
}

.check_box .form-check-input:focus {
  border-color: var(--white-color);
}

.assesment-details {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assesment-details__text {
  display: flex;
}

.assesment-details__text .elipse-one,
.assesment-details__text .elipse-two,
.assesment-details__text .elipse-three {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;

  display: inline-block;
  margin-right: 0.6rem;
}

.elipse-one {
  background-color: var(--cornmeal-color);
}

.elipse-two {
  background-color: var(--white-color);
}

.elipse-three {
  background-color: var(--light-gray-color);
}

.assesment-details__text .elipse-title {
  color: var(--white-color);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2rem;
  /* 92.308% */
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.assesment-details__text .elipse-value {
  color: var(--white-color);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2rem;
  /* 92.308% */
  letter-spacing: 0.5px;
  opacity: 0.7;
  padding-top: 0.7rem;
}

.total-assesment {
  margin-top: 1.3rem;
}

.total-value_assesment {
  color: var(--white-color);
  font-size: 2rem;
  line-height: 1.2rem;
  /* 60% */
  letter-spacing: 0.5px;
}

.total-value_title {
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2rem;
  /* 60% */
  letter-spacing: 0.5px;
  padding-left: 0.8rem;
}

.coin_detail__msgShow .h4 {
  color: var(--white-color);
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
  padding: 3rem 0 3rem 2rem;
}

.h4 {
  color: var(--white-color);
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
  padding: 3rem 0 3rem 2rem;
}

.coin_detail__msgShow .alert-msg__show {
  color: var(--white-color);
  font-size: 1.4rem;
  text-transform: capitalize;
  padding-left: 7rem;
  max-width: 90rem;
}

.alert-msg__show {
  color: var(--white-color);
  font-size: 1.4rem;
  text-transform: capitalize;
  padding-left: 7rem;
  max-width: 90rem;
}

.user-all__coins .login-area {
  padding: 5rem;
  margin-top: 0;
}

.display-card__button .primary-btn {
  background: var(--golden-gradiant-color);
  border-color: var(--golden-gradiant-color);
}

.display-card__button .primary-btn:hover {
  background: var(--btn-secondry-gradient-color);
  border-color: var(--btn-secondry-gradient-color);
}

/*===========================
   11.Coin Details-Empty
   
===========================*/
.coin-detail_forms .basic-login__customize {
  max-width: 100%;
  position: relative;
}

.basic-login__customize {
  background: var(--white-gradient-color);
  max-width: 90rem;
  margin-inline: auto;
  border-radius: 0.8rem;
  margin-inline: 4rem;
  padding: 6rem 4rem;
}

.coin-detail_forms .basic-login__customize .form-select,
.coin-detail_forms .basic-login__customize .form-control {
  min-height: 4.8rem;

  font-size: 1.6rem;
  font-size: var(--inter-font);
  font-weight: 400;
  line-height: 22.4px;
  word-wrap: break-word;
  border: 1px rgba(17.21, 17.21, 18.66, 0.2) solid;
  color: rgba(17.21, 17.21, 18.66, 0.6);
  margin-bottom: 2.6rem;
}

.form-title {
  color: var(--black-color);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: capitalize;
  word-wrap: break-word;
  padding-bottom: 2.5rem;
}

.coind-details__identify .identify-front__container {
  border: 1px solid var(--neon-silver-color);
  padding: 2.6rem;
}

.coin-images__btn {
  margin-top: 1.5rem;
}

.coin-images__btn .edit-btn {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  color: var(--black-color);
  border: 0.1rem solid var(--black-color);
  display: block;
  margin: auto;
  max-width: unset;
  width: unset;
}

.coin-images__btn .edit-btn:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

.bg-yellow .edit-btn:hover {
  border-color: var(--light-yellow-color);
  color: var(--light-yellow-color);
  background-color: transparent;
}

.paragraph-text {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  text-align: end;
}

.text-dark {
  color: #000;
}

.select-option-div {
  min-width: 200px;
}

.mt-30 {
  margin-top: 3rem;
}

.select-option-div .form-select {
  padding: 10px 0px 13px 8px;
  border: 1px solid #11111333;
  font-size: 15px;
  border-radius: 4px;
  max-width: 200px;

  height: 46px;
}

.add-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}

.add-flex .login-area-button {
  margin-top: 0rem;
  width: 60%;
}

.coin-detail_customize-btn .primary-join-btn {
  background: var(--btn-bg-gradient-color);
  font-family: var(--secondary-font);
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 0.8rem;
  text-transform: uppercase;
  display: block;
  margin-left: auto;
  margin-right: unset;
  font-size: 14px;
}

.identification-coin__photos {
  margin-top: 2.4rem;
}

.identification-coin__photos .form-title {
  font-size: 3rem;
  padding-bottom: 3rem;
}

.coin-photos__box {
  border-radius: 0.5rem;
  border: 0.1 solid var(--black-color);
  background: var(--white-color);
  padding: 1.2rem;
  position: relative;
  max-width: 160px;
  margin-bottom: 2rem;
  height: 157px;
  border: 1px solid var(--black-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-photos__box .count {
  position: absolute;
  top: 0.6rem;
  left: 0.7rem;
  color: var(--black-color);
  font-family: var(--inter-font);
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
}

.Identification-coin {
  width: 14rem;
  height: auto;
  display: block;
  margin-inline: auto;
}

.coin-photos__box .coin-img {
  display: block;
  margin-inline: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  position: relative;
}

.coin-photos__box .camera-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
}

.uploadsupp .primary-join-btn {
  color: var(--white-color);
  display: block;
  margin-left: auto;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #352727;
  font-size: 1.2rem;
}

/*===========================
   12.UploadedSingleCoinDetails
   
===========================*/
.export-details .coin-images__btn {
  margin-top: 3rem;
}

.upload-coins_details .img-box .left-coin__img,
.upload-coins_details .right-coin__img {
  width: 100%;
  padding: 8.5rem 4.5rem;
}

.upload-coins_details .img-box {
  display: unset;
}

.full-cards__width .coin-display__card {
  border: 0.1rem solid var(--light-yellow-color);
  padding: 2.5rem 5rem;
}

.upload-coins__wrapper .login-area {
  padding: 5rem 10rem 12rem 10rem;
}

.bg-white .card-content {
  background: var(--white-color);
  border: none;
}

.bg-white .full-cards__width .coin-display__card {
  border: 0.1rem solid #bcbcbc;
  padding: 2.5rem 5rem;
  background: var(--white-color);
}

.bg-white .coin-details__meta-label {
  color: var(--black-color);
}

.bg-white .coin-details__meta-des {
  color: var(--black-color);
}

.coin-card__infotitle {
  color: var(--dark-shade-gray-color);
  font-size: 1.9rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.custome-select__form {
  min-height: 4.8rem;

  font-size: 1.6rem;
  font-size: var(--inter-font);
  font-weight: 400;
  line-height: 22.4px;
  word-wrap: break-word;
  border: 1px rgba(17.21, 17.21, 18.66, 0.2) solid;
  color: rgba(17.21, 17.21, 18.66, 0.6);
  margin-bottom: 2.6rem;
}

.text-label {
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 3rem;
}

.footer-disclaimer {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 0px;
}

/* POPUP */
/* .image-croper__bg{
  width: 100%;
  height: 100%;
 background-color: #D9D9D9;
padding: 2.5rem 0;
min-height: 55vh;
height: 55vh;
overflow-y: auto;
overflow-x: hidden!important;
border-bottom: 2px dashed var(--black-color);
} */
[_nghost-ng-c1583925566] {
  padding: 0 !important;
}

.image-croper__bg {
  width: 100%;
  height: 100%;
  --color: #e1e1e1;
  background-color: #f3f3f3;

  padding: 2.5rem 0;
  /* min-height: 55vh; */
  overflow-x: hidden !important;
  overflow-y: auto;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='2' stroke-dasharray='16%2c 19%2c 13%2c 19' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.LyImageCropper-area-d {
  box-shadow: none !important;
}

.LyCropperArea--round-true-j {
  border-radius: 50%;
  border: 2px dashed #000 !important;
}

.camera-icon img {
  border-radius: unset !important;
}

.image-editor .mat-mdc-dialog-container {
  box-shadow: none;
  min-height: 90vh;
  width: 50% !important;
  margin-top: 20px;
  padding: 0;
  border-radius: 2rem !important;
  min-width: 58vw !important;
  overflow: auto;
  display: block;
  margin-inline: auto;
  background-color: transparent !important;
}

.mat-mdc-dialog-container .mdc-dialog__surface {
  background-color: transparent !important;
}
.img-cropper {
  background-color: transparent;
}
.ae {
  width: 100% !important;
  height: 48px;
  padding: 8px;
  touch-action: pan-y !important;
}
.v {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  width: 100% !important;
}
/* .img-cropper {
  display: block;
margin-inline: auto;
width: 100%;
max-width: 372px;
height: 372px;
}
.image-cropper{
  width: 100%;
  height: 100%;
object-fit: cover;
}
.ngx-ic-source-image{    width: 100%;
  height: 100%;
object-fit: cover;
}
.ngx-ic-cropper {
  max-width: 372px;
  height: 372px;
} */

/* apply all   =>change  */
.mat-mdc-dialog-container .mdc-dialog__surface {
  border-radius: 2rem !important;
  overflow: hidden !important;
}

.image-popup__title {
  background: var(--royal-blue-color);
  text-align: center;
}

.image-popup__title h1 {
  color: var(--white-color);
  padding: 2rem 1rem;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: capitalize;
  text-transform: uppercase;
}

[_nghost-ng-c1583925566] > div[_ngcontent-ng-c1583925566] {
  width: 100%;
  position: relative;
  mix-blend-mode: darken;
}

.image-popup__subtitle {
  color: var(--black-color);
  padding: 0 0 2.3rem 0;
  text-align: center;
  font-family: var(--robo-font);
  font-size: 2rem;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
}

.popup-bottom {
  /* margin-top: 2rem; */
  padding: 2rem;
}

.popup-bottom h2 {
  color: var(--black-color);

  text-align: center;
  font-family: var(--robo-font);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.5px;
  line-height: 2.6rem;
}

.popup-button {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 20px;
}

.popup-button .login-btn {
  width: 100%;
}

.btn-outline {
  color: var(--royal-blue-color);
  max-width: 280px;
  border: 1px solid var(--black-color);
  border-radius: 0.5rem;
  background: transparent;
  font-family: var(--secondary-font);
  font-size: 1.2rem;
  text-transform: uppercase;
  width: 100%;
  min-height: 4.2rem;
  text-align: center;
}

.popup-button .login-btn .primary-join-btn {
  background: var(--btn-bg-gradient-color);
  color: var(--white-color);
  max-width: 280px;
  text-transform: uppercase;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #352727;

  display: block;
  margin-left: auto;
}

.popup-button .login-btn .primary-join-btn:hover {
  transform: translateY(0px);
}

.popup-button .login-btn {
  margin-top: 0;
}

.wrapper {
  margin-top: 2rem;
  width: 100%;
}

.custom-control__range {
  width: 100%;
  height: 10px;
  margin: 0;
  padding: 0;
  appearance: none;
  background-color: #dadada;
  border-radius: 5px;
  outline: none;
  margin-top: 10px;
}

.custom-control__range::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  background-color: #0b2060;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.custom-control__range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background-color: #0b2060;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.range-label {
  color: #0b2060;
  font-family: var(--robo-font);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  display: flex !important;
  align-items: center;
}

.range-percent {
  padding-left: 1rem;
}

/*===========================
   13.Privacy Policy
   
===========================*/
.terms-condition__container {
  padding-bottom: 50px;
}

.heading-title h1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4rem;
  color: var(--white-color);
  font-family: var(--primary-font);
}

.heading-subtitle {
  font-size: 1.6rem;
  line-height: 2.4rem;

  font-family: var(--secondary-font);
  font-weight: 400;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: var(--white-color);
}

.pt-50 {
  padding-top: 50px;
}

.text-paragraph {
  font-size: 1.5rem;
  line-height: 130%;
  color: var(--light-yellow-color);
  font-family: var(--secondary-font);

  color: var(--white-color);
  padding: 1.2rem 0;
}

.terms-condition__container h6 {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 400;
}

.terms-condition__container strong {
  color: #dcb067;
  font-family: var(--primary-font);

  font-weight: 900;
}

.terms-condition__container .strong-update {
  text-decoration: underline;
  font-weight: 500;
}

.richtext-divider {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: var(--white-color);
}

.text-heading {
  padding-top: 12px;
  padding-bottom: 12px;
  color: #ffdf8f;
  font-size: 17px;
  line-height: 24px;
}

.list-data li {
  font-size: 1.5rem;
  line-height: 130%;
  color: var(--light-yellow-color);
  font-family: var(--secondary-font);

  color: var(--white-color);
  padding: 0.8rem 0;
  list-style-type: disc;
  margin-left: 3rem;
}

.ml-30px {
  margin-left: 3rem;
}

.link-target {
  color: #dcb067;
  font-weight: 700;
  font-family: var(--primary-font);
  cursor: pointer;
}

/* POPUPS */

/* forgot-email popups */

.forgot-email {
  width: 35vw;
  background-color: var(--white-color);
  border-radius: 0.8rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin: auto;
}

.forgot-email__container .primary-join-btn {
  background: var(--btn-bg-gradient-color);
  margin-top: 20px;
  display: block;
  margin-inline: auto;
  text-transform: capitalize;
  font-size: 1.5rem;
}

.uiHeaderTitle {
  font-size: 2.5rem;
  line-height: 2.4rem;
  font-weight: 700;
  padding: 0rem 1.6rem 1.8rem 0rem;
  text-align: center;
}

/* identificationcomments-popup */
.comments-popup {
  min-width: 66vw;
  width: 55vw;
  height: 85vh;

  position: relative;

  /* background-color: var(--white-color); */
  border-radius: 0rem;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  margin: 1rem auto;
}

.comments-popup > mat-dialog-container {
  background: transparent !important;
  border-radius: 0px !important;
  margin-top: 50px;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.comments-popup .mat-mdc-dialog-container .mdc-dialog__surface {
  box-shadow: none !important;
}

.comment-popup__container {
  background-color: var(--white-color);
  padding: 1rem;

  height: 100%;
}

.wrapper-popup {
  width: 100%;
  height: 100%;
}

.comment-popup__container .content-area {
  padding: 3rem;
}

.comment-popup__container .content-area p {
  color: var(--black-color);
  font-size: 2rem;
  font-weight: 300;
}

.pb-17 {
  padding-bottom: 1.7rem;
}

.comment-popup__container h2 {
  color: var(--black-color);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 8px;
  text-align: left;
  padding-top: 4rem;
  line-height: 26px;
}

.content-area .list {
  max-height: 200px;
  overflow-y: auto;
}

.content-area .list ul {
  list-style: disc;
  padding-left: 19px;
}

.content-area ul li {
  color: var(--black-color);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 27px;
}

.cancel_icon {
  position: absolute;
  right: 22px;
  top: 15px;
}

.cancel_icon a i {
  font-weight: 400;
  color: var(--black-color);
  font-size: 20px;
  cursor: pointer;
}

.cancel_icon a i:hover {
  color: var(--light-yellow-color);
}

.assesment-details__wrapper .card-content {
  min-height: unset;
}

/* .assesment-details__wrapper .assesment-details .img-box .left-coin__img,
.img-box .right-coin__img {

  min-height: 220px;

} */

.p-30 {
  padding-right: 30px;
}

.assesment-details__wrapper .assesment-details__text .elipse-title {
  color: #121212;
  font-weight: 500;
  font-family: Poppins;
  font-size: 1.9rem;
  text-transform: capitalize;
}

.assesment-details__wrapper .assesment-details__text .elipse-value {
  color: #121212;
  padding-top: 5rem;
}

.assesment-details__wrapper .elipse-one {
  background-color: #5a6acf;
}

.assesment-details__wrapper .assesment-details {
  margin-top: 5rem;
  width: 72%;
}

.assesment-details__wrapper .elipse-two {
  background-color: #8593ed;
}

.assesment-details__wrapper .elipse-three {
  background-color: #ff81c5;
}

.assesment-details__wrapper .assesment-details__text .elipse-one,
.assesment-details__wrapper .assesment-details__text .elipse-two,
.assesment-details__wrapper .assesment-details__text .elipse-three {
  margin-right: 13px;
}

.assesment-details__wrapper .total-value_assesment {
  color: #000;

  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
}

.assesment-details__wrapper .total-value_title {
  color: #000;

  font-family: Poppins;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  padding-left: 2rem;
}

.assesment-details__wrapper .total-assesment {
  margin-top: 7rem;
}

.assesment-coins__details {
  margin-top: 3.6rem;
  clear: both;
}

.assesment-coins__details h2 {
  color: #000;

  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.assesment-coins__details p {
  color: #000;

  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.add-grades__values {
  margin-top: 7rem;
}

.add-grades__values .form-select {
  padding: 10px 16px;
  border: 1px solid var(--Black-20, rgba(17, 17, 19, 0.2));

  font-size: 1.6rem;
}

.add-grades__values .login-area-button {
  margin-top: 0rem;
}

.assess-wrapper .similar-card {
  background-color: #313131;
  background-color: #ffffff;
  padding: 20px 20px 20px 20px;
  border-radius: 10px;
}

.assess-wrapper .similar-card .similar-card-content {
  background-color: #313131;
  min-height: 415px;
  padding-top: 60px;
}

.similar-card .similar-card-img {
  max-width: 180px;
  display: block;
  margin: 0 auto;
}

.similar-card .card-title {
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  line-height: 53px;
  font-family: Montserrat;
  font-weight: 300;
  margin-top: 30px;
}

.similar-card .card-dic {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 900;
  line-height: 22.4px;
  text-align: center;
  color: #000000;
  margin-top: 20px;
}

.similar-card .card-dic span i {
  font-size: 27px;
}

.similar-card .card-dic span {
  margin: 0 15px;
}

.title-heading {
  font-size: 14px;
  font-weight: 700;
}

.title-heading span {
  padding-left: 5px;
  font-weight: 500;
}

.assess-wrapper .sub-heading {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 900;
  line-height: 22.4px;
  text-align: left;
  color: #ffffff;
  margin-top: 60px;
  padding-bottom: 20px;
}

.assess-wrapper .para {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
}

.assess-wrapper textarea {
  width: 100%;
  margin-top: 30px;
}

.assess-wrapper textarea:focus-visible {
  outline: none;
}

.assess-wrapper textarea {
  border-radius: 5px;
  height: 142px;
}

.full-cards__width .card-content {
  min-height: 100%;
}

.custome-height .form-control {
  height: 220px;
}

/* Font Family
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Poppins", sans-serif;
  --inter-font: "Inter", sans-serif;
  --robo-font:"Roboto"; */

/* about-us */
.about-wrapper .login-area,
.resources-wrapper .login-area,
.faq-wrapper .login-area {
  padding: 0 5rem 5rem 5rem;
}

.story-card {
  border-radius: 6px;
  background: var(--Color, #fff);
  width: 100%;
  padding: 4rem 6rem;
}

.about-sec h2 {
  color: var(--black-color);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.26px;
  text-transform: uppercase;
}

.about-sec p {
  color: var(--black-color);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.26px;
}

.about-sec ul li,
.edu-card ul li {
  list-style: disc;
  color: var(--white-color);
}

.story-card p {
  font-weight: 400;
  padding-top: 4rem;
}

.story-image {
  max-width: 330px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.misson-card {
  margin-top: 3rem;
  padding: 3.5rem 4rem;
  border-radius: 6px;
  background: linear-gradient(247deg, #d9a750 0.98%, #73592a 96.9%);
  min-height: 20rem;
}

.misson-card p,
.misson-card h2,
.values-card p,
.values-card h2 {
  color: var(--white-color);
}

.misson-card p,
.values-card p {
  padding-top: 3rem;
}

.values-card {
  min-height: 20rem;
  padding: 3.5rem 4rem;
  border-radius: 6px;
  background: linear-gradient(246deg, #d01010 3.16%, #6a0808 96.94%);
}

.mt-40 {
  margin-top: 4rem;
}

/* Rsources */

.resources-sec p,
.resources-sec h2 {
  color: var(--Color, #fff);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.26px;
}

.resources-sec p {
  font-weight: 300;
}

.edu-card {
  border-radius: 6px;
  background: linear-gradient(223deg, #d9a750 17.66%, #73592a 73.91%);
  padding: 3.5rem 4rem;
  position: relative;
  min-height: 370px;
}

.edu-card p {
  padding-top: 3rem;
  text-transform: lowercase;
}

.edu-card strong {
  font-weight: 700;
  text-transform: capitalize;
}

.icon-absolute {
  position: absolute;
  top: 15px;
  right: 15px;
  max-width: 48px;
}

.tool-card .edu-card {
  border-radius: 6px;
  background: linear-gradient(223deg, #d01010 13.09%, #6a0808 75.84%);
}

.cas-card .edu-card {
  border-radius: 6px;
  background: #000;
}

.cas-card .edu-card h2 {
  color: #d9a750;
}

.cas-card p span {
  opacity: 0.5;
}

/* faq */
.notification-card {
  border-radius: 6px;
  border: 2px solid #0b2060;
  background: var(--Color, #fff);
  padding: 2.5rem 3.5rem;
}

.notification-card h2,
.notification-card p {
  font-size: 1.8rem;
  letter-spacing: 1.26px;
  text-transform: uppercase;
}

.notification-card h2 {
  font-weight: 700;
  color: #d9a750;
}

.notification-card p {
  font-weight: 400;
  color: var(--black-color);
  padding-top: 3rem;
  text-transform: lowercase;
  padding-left: 1.5rem;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  margin-left: auto;
  content: "";
  background-image: url("../images/icons/Icon\ Frame.png");
  background-repeat: no-repeat;
  background-size: 3.25rem;
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/Icon\ Frame.svg");
  transform: unset;
}

/* Right-align the custom icon */
.accordion-button {
  display: flex;
  justify-content: space-between;
}

.accordion-button {
  color: #d9a750;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.26px;
  text-transform: uppercase;
}

.accordian-item h2 {
  color: #d9a750;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.26px;
  text-transform: uppercase;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  color: #d9a750;
  background: var(--Color, #fff);
}

.accordion-item {
  padding: 15px 20px 15px 30px;

  margin-bottom: 30px;
  border-radius: 6px;
  border: 2px solid #0b2060;
  background: var(--Color, #fff);
}

.accordion-body p {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.26px;
  margin-bottom: 10px;
}

/* Font Family
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Poppins", sans-serif;
  --inter-font: "Inter", sans-serif;
  --robo-font:"Roboto"; */

.filter-checkbox .form-check-label {
  color: var(--white-color);
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  /* float: inline-start; */
}

.filter-checkbox {
  display: block;
  margin-inline: auto;
  max-width: 16rem;
  width: 100%;
}

.filter-checkbox .form-check-input {
  width: 13px;
  height: 13px;
}

/* .filter-checkbox .form-check .form-check-input {
    float: left;
    margin-left: 0.5em;
  } */

.filter-checkbox {
  margin-top: 12px;
}

.search-filters__wrapper {
  border: 1px solid #ffdf8f;
  background: #000;
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 1rem;
}

.search-filters__wrapper .sort-by .form-control {
  background-color: #313131 !important;
  color: var(--white-color);
  min-height: 38px;
  border-color: var(--black-color);
}

.search-filters .dropdown-label {
  color: #ffdf8f;

  text-align: center;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.owl-carousel .owl-item {
  min-height: 0px !important;
  border: none !important;
}

::ngdeep .LyImageCropper-area-d {
  width: 250px !important;
  height: 250px !important;
}

.LyImageCropper-area-d {
  width: 250px !important;
  height: 250px !important;
}

.g .LyImageCropper-a {
  max-width: 260px !important;
  height: 260px !important;
}

.anchor-link {
  color: #fff !important;
  text-transform: capitalize !important;
}

/* progress -bar popuop */
.horizontal-ae {
  width: 100% !important;
  height: 48px;
  padding: 8px;
  touch-action: pan-y !important;
}

.LySlider_46color_58accent-as .y-bg-y {
  background-color: #000 important;
}

.LySlider_46color_58accent-as .track-x,
.LySlider_46color_58accent-as .thumb-ab,
.LySlider_46color_58accent-as .thumbLabel-ac,
.LySlider_46color_58accent-as .y-bg-y,
.LySlider_46color_58accent-as .tick-aj {
  background-color: #031449 !important;
}

.horizontal-t {
  width: 99% !important;
  height: 48px;
  padding: 8px;
  touch-action: pan-y !important;
  display: block !important;
  margin: auto !important;
}

.LySlider--size-small-ag .thumb-q {
  width: 14px;
  height: 14px;
  background-color: #031449 !important;
}

.LySlider_46color_58accent-ah .y-bg-n {
  opacity: 0.3;
}

.zoom-buutons {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 20px;
  height: 20px;
  display: flex;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.q,
.material-icons {
  color: #0b2060;
  font-size: 20px !important;
}

.LyButton--icon-appearance-o {
  min-width: 35px !important;
  width: 35px !important;
  height: 35px !important;
  padding: 0;
  border-radius: 50%;
  margin: 0px 3px !important;
}
.horizontal-ai {
  padding: 8px;
  touch-action: pan-y !important;
  width: 100% !important;
}

.sheldon-scale {
  background: linear-gradient(135deg, #5c5470, #2a2a40);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.sheldon-scale h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffdf8f;
  text-transform: uppercase;
}

.sheldon-scale p {
  font-size: 15px;
  margin-top: 5px;
  line-height: 1.5;
  color: #ababab;
  margin-bottom: 5px;
}

.sheldon-scale a {
  font-size: 12px;
  color: #93aeff;
  text-decoration: none;
  display: flex;
  justify-content: end;
}

.sheldon-scale a:hover {
  text-decoration: underline;
}
.browse-container {
  text-align: center;
  margin: 20px 0;
}
.browse-container span {
  font-size: 16px;
  font-weight: 800;
}
.browse-container .browse-text {
  margin-inline: 10px;
}
.browse-similar {
  background-color: #0b2060;
  padding: 2.3rem;
  width: 100%;
  border-radius: 10px;
}
.not-show-coin {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 5rem 0;
}

.not-show-coin h2 {
  font-size: 40px;
  text-align: center;
  font-weight: 400;
  line-height: 50px;
  color: var(--white-color);
}
.not-show-coin img {
  width: 170px;
}
