@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
 
body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  font-size: 16px;
  font-family: "Open Sans", sans-serif !important;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 background-color: rgb(30, 41, 59) !important;
}

* {
  outline: none;
}

a {
  text-decoration: none !important;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s
}

p {
  color: rgb(203 213 225);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0px;
}

.container {
  max-width: 1300px !important;
  padding: 0px 20px !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ticker {
  0% {
    transform:translate(0)
  }
  to {
    transform:translate(-50%)
  }
}
.animate-ticker {
  animation:ticker 10s linear infinite;
  min-width:100%
}

.price_ticker_slider {
  display: flex;
}

.price_ticker_slider .pricetickerbox {
  white-space: nowrap;
}

.price_ticker {
  padding: 8px 0px;
  background-color: #1b433e;
  position: relative;
  border-bottom: 1px solid #22c55e4d;
}

.price_ticker > .container-fluid {
  padding: 0px !important;
}

.pricetickerbox {
  text-align: center;
}

.pricetickerbox .boxsec {
  border-radius: 50px;
  padding: 2px 15px;
  display: inline-block;
}

.price_ticker .pricetickerbox .coinname {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.price_ticker .pricetickerbox .lucide-arrow-right {
  color: #fff;
  width: 16px;
}

.price_ticker .pricetickerbox .pricetxt {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.price_ticker .pricetickerbox .updown_price {
  padding-left: 5px;
}

.price_ticker .pricetickerbox .updown_price {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 5px;
}

.price_ticker .pricetickerbox .updown_price svg {
  width: 18px;
  margin-right: 5px;
}

.updown_price.downprice {
  color: red !important;
}

.updown_price.upprice {
  color: #0d0 !important;
}

.header_mainsec {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #0e172a;
  border-bottom: 1px solid #242f49;
  position: relative;
}

.header_mainsec.sticky {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999;
  width: 100%;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.header_mainsec .navbar {
  padding: 0px;
}

.header_mainsec .navbar .navbar-brand img {
  width: 250px;
  height: auto;
  filter: brightness(100);
}

.header_mainsec .navbar-brand h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  margin-bottom: 0px;
}

.header_mainsec .navbar .navbar-collapse {
  justify-content: center;
}

.header_mainsec .navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
  padding: 0px 15px;
}

.header_mainsec .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #16a34a;
}

.header_mainsec .navbar .navbar-nav .nav-item .nav-link.active {
  color: #16a34a;
}

.header_mainsec .rightbox {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 5px;
}

.header_mainsec .rightbox button {
  background-color: transparent;
  border: none;
  color: #fff;
}

.header_mainsec .rightbox button svg {
  width: 22px;
}

.header_mainsec .loginbox {
  margin-left: 10px;
}

.header_mainsec .loginbox .loginbtn {
  background-color: #16a34a;
  border: 1px solid #16a34a;
  border-radius: 8px;
  padding: 6px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  outline: none;
  box-shadow: none;
}

.header_mainsec .loginbox .loginbtn:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #16a34a;
}

.header_mainsec .loginbox .loginbtn svg {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.footer_mainsec {
  background-color: #0f172a;
  border-top: 1px solid #242f49;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.footer_mainsec .about_contnt .logobox {
  width: 90%;
  margin-bottom: 30px;
}

.footer_mainsec .about_contnt .logobox img {
  width: 250px;
  height: auto;
  filter: brightness(100);
}

.footer_mainsec .about_contnt .logobox h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  margin-bottom: 0px;
}

.footer_mainsec .about_contnt .contntbox {
  margin-bottom: 30px;
}

.footer_mainsec .about_contnt .contntbox p {
  font-weight: 500;
}

.social_media ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social_media ul li a {
  width: 40px;
  height: 40px;
  color: rgb(151, 166, 186);
  font-size: 20px;
  background-color: #1e293b;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.social_media ul li a:hover {
  color: #16a34a;
  background-color: #1e293b;
}

.footer_mainsec .menu_mainsec {
  padding-left: 50px;
}

.footer_mainsec .title_box {
  margin-bottom: 15px;
}

.footer_mainsec .title_box h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0px;
}

.footer_mainsec .menu_box ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
}

.footer_mainsec .menu_box ul li {
  margin-bottom: 5px;
}

.footer_mainsec .menu_box ul li a {
  color: rgb(151, 166, 186);
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
}

.footer_mainsec .menu_box ul li a:hover {
  color: #16a34a;
}

.copyright_mainsec {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  background-color: #0f172a;
}

.copyright_mainsec .copyright_sec {
  text-align: center;
  border-top: 1px solid #242f49;
  padding-top: 15px;
}

.copyright_mainsec .copyright_sec p {
  font-weight: 500;
}

.home_bannersec {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  background-image: linear-gradient(to bottom right, #0f172a, #1e293b, #14532d);
}

.home_bannersec > .container > .row {
  align-items: center;
}

.livetradingsignal {
  background-color: #16a34a33;
  border: 1px solid #22c55e4d;
  border-radius: 50px;
  color: rgb(74 222 128);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  padding: 6px 20px;
  outline: none;
  box-shadow: none;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.livetradingsignal .pulsedot {
  background-color: rgb(74 222 128);
  border-radius: 50px;
  width: 8px;
  height: 8px;
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}

.home_bannersec .contntbox {
  padding-right: 40px;
}

.home_bannersec .contntbox .titlecontntbox {
  margin-top: 30px;
}

.home_bannersec .contntbox .titlecontntbox h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 67px;
  margin-bottom: 30px;
}

.gradienttxt {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #4ade80, #60a5fa);
}

.home_bannersec .contntbox .titlecontntbox p {
  color: rgb(203 213 225);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
}

.home_bannersec .contntbox .titlecontntbox .btn_mainsec {
  margin-top: 40px;
}

.home_bannersec .contntbox .titlecontntbox .btn_mainsec .btn_style {
  padding: 14px 40px;
  margin-right: 15px;
}

.btn_mainsec .btn_style {
  background-color: #16a34a;
  border: 1px solid #16a34a;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.btn_mainsec .btn_style:hover {
  background-color: #0c652d;
  border: 1px solid #0c652d;
  color: #fff;
}

.btn_mainsec .btn_style.borderbtn {
  background-color: transparent;
  border: 1px solid rgb(71 85 105);
  color: rgb(203 213 225);
}

.btn_mainsec .btn_style.borderbtn:hover {
  background-color: transparent;
  border: 1px solid rgb(74 222 128);
  color: rgb(74 222 128);
}

.btn_mainsec .btn_style svg {
  width: 18px;
  height: 18px;
  margin-left: 6px;
}

.traders_infobox {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 100px;
  justify-content: center;
}

.traders_infobox .boxsec {
  text-align: center;
}

.traders_infobox .boxsec .icontxt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 5px;
}

.traders_infobox .boxsec .icontxt svg {
  color: rgb(74 222 128);
  width: 1.5rem;
  height: 1.5rem;
}

.traders_infobox .boxsec .icontxt .numbertxt {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}

.traders_infobox .boxsec .nametxt {
  color: rgb(151, 166, 186);
  font-size: 14px;
  font-weight: 500;
}

.livesignaldash_box {
  background-color: #1e293b80;
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}

.livesignaldash_box .title_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.livesignaldash_box .title_box h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 0px;
}

.pulsebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.pulsebox .pulsedot {
  background-color: rgb(74 222 128);
  border-radius: 50px;
  width: 8px;
  height: 8px;
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}

.pulsebox span {
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
}

.signaldashboard_mainbox {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
}

.signaldashboard_mainbox .boxsec {
  background-color: #16a34a33;
  border: 1px solid #22c55e4d;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
}

.signaldashboard_mainbox .boxsec .namebuy_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.signaldashboard_mainbox .boxsec .namebuy_box h4 {
  color: rgb(74 222 128);
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 0px;
}

.buybudge {
  background-color: #16a34a;
  border-radius: 4px;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 23px !important;
  padding: 2px 8px;
}

.buybudge.blue {
  background-color: rgb(37 99 235);
}

.buybudge.red {
  background-color: rgb(220 38 38);
}

.signaldashboard_mainbox .boxsec p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 3px;
}

.signaldashboard_mainbox .boxsec span {
  color: rgb(74 222 128);
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
}

.signaldashboard_mainbox .boxsec.bluebox {
  background-color: #2563eb33;
  border: 1px solid #3b82f64d;
}

.signaldashboard_mainbox .boxsec.bluebox .namebuy_box h4 {
  color: rgb(96 165 250);
}

.signaldashboard_mainbox .boxsec.bluebox span {
  color: rgb(96 165 250);
}

.signaldashboard_mainbox .boxsec.redbox {
  background-color: #dc262633;
  border: 1px solid #ef44444d;
}

.signaldashboard_mainbox .boxsec.redbox .namebuy_box h4 {
  color: rgb(248 113 113);
}

.signaldashboard_mainbox .boxsec.redbox span {
  color: rgb(248 113 113);
}

.livecryptoprices_mainsec {
  background-color: rgb(30, 41, 59);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.livecryptoprices_mainsec .toptitlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.livecryptoprices_mainsec .toptitlebox .titlesec h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  margin-bottom: 10px;
}

.livecryptoprices_mainsec .toptitlebox .titlesec p {
  font-size: 16px;
}

.liveupdatebox {
  background-color: #16a34a33;
  border: 1px solid #22c55e4d;
  border-radius: 6px;
  color: rgb(74 222 128);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  padding: 6px 20px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.table_mainsec {
  background-color: #000;
  border: 1px solid rgb(51 65 85);
  border-radius: .75rem;
  overflow: hidden;
  margin-bottom: 30px;
}

.table_mainsec .table {
  margin-bottom: 0px;
}

.table_mainsec .table thead {
  border-bottom: 1px solid rgb(51 65 85);
}

.table_mainsec .table thead tr th {
  background-color: rgb(30, 41, 59);
  color: rgb(203 213 225);
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  padding: 15px 25px;
  text-align: right;
}

.table_mainsec .table thead tr th:first-child {
  text-align: left;
}

.table_mainsec .table tbody tr td {
  background-color: #0e1628;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  padding: 15px 25px;
  border-bottom: 1px solid rgb(30 41 59);
  text-align: right;
  vertical-align: middle;
}

.table_mainsec .table tbody tr td:first-child {
  text-align: left;
}

.table_mainsec .table tbody tr td .coinnamebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.table_mainsec .table tbody tr td .coinnamebox .logobox img {
  width: 32px;
  height: auto;
}

.table_mainsec .table tbody tr td .coinnamebox .coinname .shortname {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.table_mainsec .table tbody tr td .coinnamebox .coinname .shortname a {
  color: #fff;
}

.table_mainsec .table tbody tr td .coinnamebox .coinname .fullname {
  color: rgb(151, 166, 186);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.table_mainsec .table tbody tr td .changeinfo svg {
  color: rgb(74 222 128);
  width: 22px;
  margin-right: 4px;
}

.table_mainsec .table tbody tr td .changeinfo svg.green {
  color: rgb(74 222 128);
}

.table_mainsec .table tbody tr td .changeinfo svg.red {
  color: rgb(248 113 113);
}

.table_mainsec .table tbody tr td .changeinfo .persentage.green {
  color: rgb(74 222 128);
  font-size: 15px;
  font-weight: 400;
}

.table_mainsec .table tbody tr td .changeinfo .persentage.red {
  color: rgb(248 113 113);
  font-size: 15px;
  font-weight: 400;
}

.table_mainsec .table tbody tr td .price {
  color: rgb(151, 166, 186);
  font-size: 15px;
  font-weight: 400;
}

.livecryptoprices_mainsec .btn_mainsec {
  text-align: center;
}

.news_mainsec {
  background-color: rgb(30, 41, 59);
}

.news_mainsec .articals_mainbox .articals_innerbox {
  background-color: rgb(14, 22, 40);
  border: 1px solid rgb(51 65 85);
  border-radius: .75rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 0px;
  min-height: 540px;
}

.news_mainsec .articals_mainbox .articals_imgbox {
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.news_mainsec .articals_mainbox .articals_imgbox img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.8s ease;
  object-fit: cover;
}

.news_mainsec .articals_mainbox:hover .articals_imgbox img {
  transform: scale(1.1);
}

.news_mainsec .articals_mainbox .articals_contntbox {
  padding: 20px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_contnt {
  margin-bottom: 0px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_contnt h3 {
  line-height: 27px;
  margin-bottom: 15px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_contnt h3 a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  display: inline-block;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_contnt h3 a:hover {
  color: rgb(74 222 128);
}

.news_mainsec.livecryptoprices_mainsec .share_social_sec {
  padding: 0px 20px 20px;
  margin-top: 0px;
}

.articals_mainbox .share_social_sec {
  margin-top: 40px;
}

.articals_mainbox .share_social_sec ul li a {
  background-color: #1e293b;
}

.articals_mainbox .share_social_sec ul li a:hover {
  background-color: #1e293b;
  color: #16a34a;
}

.articals_mainbox .artical_contnt .article_description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 75px;
}

.articals_mainbox .artical_contnt .article_description p {
  margin-bottom: 0px;
}

.articals_mainbox .artical_contnt .article_description p a {
  color: rgb(203 213 225);
  text-decoration: underline !important;
}

.articals_mainbox .artical_contnt .article_description p a:hover {
  color: #16a34a;
}

.articals_mainbox .artical_contnt .article_description img {
  display: none;
}

.news_mainsec .news_boxsec .articals_mainsec .articals_mainbox .share_social_sec {
  margin-top: 30px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .datetimebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .datetimebox .datetime {
  background-color: #16a34a;
  border-radius: 5px;
  padding: 2px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .datetimebox .datetime svg {
  color: #fff;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .datetimebox .datetime span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .trendingtxt svg {
  color: rgb(255, 255, 255);
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .trendingtxt span {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
}

.news_mainsec .articals_mainbox .sharebtn {
  padding: 0px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news_mainsec .articals_mainbox .sharebtn span {
  color: #16a34a;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
}

.news_mainsec .articals_mainbox .sharebtn a i {
  color: rgb(151, 166, 186);
  font-size: 30px;
}

.news_mainsec .articals_mainbox .sharebtn a:hover i {
  color: #16a34a;
  font-size: 30px;
}

.livetradingsignal_mainsec {
  background-color: #0f172a;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.livetradingsignal_mainsec .toptitlebox {
  text-align: center;
  margin-bottom: 20px;
}

.livetradingsignal_mainsec .toptitlebox h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  margin-bottom: 10px;
}

.livetradingsignal_mainsec .toptitlebox p {
  font-size: 16px;
}

.signals_trading .signal_card {
  background-color: rgb(30 41 59);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}

.signals_trading .signal_card .symbol_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.signals_trading .signal_card .symbol_info .symbol_contnt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.signals_trading .signal_card .symbol_info .symbol_contnt .symbol_icon img {
  width: 45px;
  height: auto;
}

.signals_trading .signal_card .symbol_info .symbol_contnt .contntbox h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 2px;
}

.signals_trading .signal_card .symbol_info .symbol_contnt .contntbox .timeframe {
  color: rgb(148 163 184);
}

.status.active-status {
  background-color: #16a34a33;
  border: 1px solid #22c55e4d;
  border-radius: 50px;
  padding: 3px 10px;
  color: rgb(74 222 128);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.status.completed-status {
  background-color: #2563eb33;
  border: 1px solid #3b82f64d;
  border-radius: 50px;
  padding: 3px 10px;
  color: rgb(96 165 250);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.status.pending-status {
  background-color: #ca8a0433;
  border: 1px solid #eab3084d;
  border-radius: 50px;
  padding: 3px 10px;
  color: rgb(250 204 21);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.status svg {
  width: 18px;
  height: 18px;
}

.signals_trading .signal_card .signal_body {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 15px;
}

.signals_trading .signal_card .signal_body .entry {
  flex: 1;
  background-color: #16a34a33;
  border: 1px solid #22c55e4d;
  border-radius: 8px;
  padding: 16px;
}

.signals_trading .signal_card .signal_body .entry .label {
  color: rgb(74 222 128);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

.signals_trading .signal_card .signal_body .entry .label svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.signals_trading .signal_card .signal_body .entry .price {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 4px;
}

.signals_trading .signal_card .signal_body .entry .small_text {
  color: rgb(148 163 184);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 0px;
}

.livetradingsignal_mainsec .signals_trading {
  margin-bottom: 24px;
}

.signals_trading .signal_card .signal_body .target {
  flex: 1;
  background-color: rgb(51 65 85);
  border: 1px solid rgb(71 85 105);
  border-radius: 8px;
  padding: 16px;
}

.signals_trading .signal_card .signal_body .target .label {
  color: rgb(96 165 250);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

.signals_trading .signal_card .signal_body .target .label svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.signals_trading .signal_card .signal_body .target .price {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 4px;
}

.signals_trading .signal_card .signal_body .target .profit {
  color: rgb(74 222 128);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 0px;
}

.signals_trading .signal_card .footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.signals_trading .signal_card .footer .stop_loss {
  color: rgb(148 163 184);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 0px;
}

.signals_trading .signal_card .footer .stop_loss span {
  color: rgb(248 113 113);
}

.signals_trading .signal_card .footer .confidence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.signals_trading .signal_card .footer .confidence p {
  color: rgb(148 163 184);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 0px;
}

.signals_trading .signal_card .footer .confidence .progressbar {
  background-color: rgb(51 65 85);
  width: 64px;
  height: 8px;
  overflow: hidden;
  border-radius: 50px;
  margin-left: 5px;
}

.signals_trading .signal_card .footer .confidence .progressbar .progress {
  height: 8px;
  background-color: rgb(74 222 128);
}

.signals_trading .signal_card .footer .confidence .percentage {
  color: rgb(74 222 128);
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  margin-left: 5px;
}

.getpremium_signals {
  background-color: rgb(15, 23, 42);
  border: 1px solid rgb(51 65 85);
  border-radius: 0;
  padding: 50px 0px;
  text-align: center;
  margin: 0px auto;
}

.getpremium_signals .contntbox h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 15px;
}

.getpremium_signals .contntbox .btn_mainsec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.whychoose_mainsec {
  background-color: rgb(15 23 42);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.whychoose_mainsec .toptitlebox {
  text-align: center;
  margin-bottom: 50px;
}

.whychoose_mainsec .toptitlebox h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  margin-bottom: 10px;
}

.whychoose_mainsec .toptitlebox p {
  font-size: 16px;
}

.whychoose_contntbox {
  background-color: rgb(30 41 59);
  border: 1px solid rgb(71 85 105);
  border-radius: 16px;
  padding: 20px;
  min-height: 245px;
  margin-bottom: 24px;
}

.whychoose_contntbox .iconbox {
  width: 50px;
  height: 50px;
  background-color: #354664;
  border-radius: 6px;
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.whychoose_contntbox .iconbox svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.whychoose_contntbox .iconbox img {
  width: 32px;
  height: auto;
}

.whychoose_contntbox .contntbox h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 10px;
}

.whychoose_contntbox .contntbox p {
  color: rgb(148 163 184);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}

.yellow_bg {
  background-image: linear-gradient(to right, #eab308, #f97316);
}

.green_bg {
  background-image: linear-gradient(to right, #22c55e, #14b8a6);
}

.bluepurple_bg {
  background-image: linear-gradient(to right, #3b82f6, #a855f7);
}

.red_bg {
  background-image: linear-gradient(to right, #ef4444, #ec4899);
}

.blue_bg {
  background-image: linear-gradient(to right, #6366f1, #3b82f6);
}

.purple_bg {
  background-image: linear-gradient(to right, #a855f7, #6366f1);
}

.greenblue_bg {
  background-image: linear-gradient(to right, #22c55e, #3b82f6);
}

.bluegreen_bg {
  background-image: linear-gradient(to right, #06b6d4, #14b8a6);
}

.ourperformance_sec {
  background-image: linear-gradient(to right,rgba(22, 163, 74, 0.2), rgba(37, 99, 235, 0.2));
  border: 1px solid #22c55e4d;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
}

.ourperformance_sec .titlebox h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 10px;
}

.ourperformance_sec .titlebox p {
  font-size: 16px;
  color: rgb(203 213 225);
}

.greentxt {
  color: rgb(74 222 128) !important;
}

.bluetxt {
  color: rgb(96 165 250) !important;
}

.purpletxt {
  color: rgb(192 132 252) !important;
}

.yellowtxt {
  color: rgb(250 204 21) !important;
}

.ourperformance_sec .traders_infobox {
  gap: 215px;
}

.ourperformance_sec .traders_infobox .boxsec .icontxt .numbertxt {
  font-size: 34px;
}

.feargreedindex_mainsec {
  background-color: rgb(15, 23, 42);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.feargreedindex_mainsec .title_mainsec h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  text-align: center;
  margin-bottom: 50px;
}

.metergraph {
  display: flex;
  align-items: center;
  position: relative;
  width: 320px;
  margin: 0px auto;
  margin-bottom: 22px;
}

.feargreedindex_mainsec .contntbox {
  padding-top: 50px;
  padding-right: 30px;
}

.feargreedindex_mainsec .contntbox h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 20px;
}

.feargreedindex_mainsec .feargreedbox {
  background-color: rgb(30 41 59);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.feargreedindex_mainsec .feargreedbox button {
  cursor: auto !important;
}

.liquidation_mainsec {
  background-color: rgb(30, 41, 59);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.liquidation_mainsec .title_mainsec h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  text-align: center;
  margin-bottom: 50px;
}

.liquidation_mainsec .liquidationheatmapbox {
  background-color: rgb(14, 22, 40);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.liquidationheatmapbox .tophead_sec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.liquidationheatmapbox .title_box h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0px;
}

.liquidation_mainsec {
  background-color: rgb(30, 41, 59);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.liquidation_mainsec .title_mainsec h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  text-align: center;
  margin-bottom: 50px;
}

.liquidationheatmapbox {
  background-color: rgb(30, 41, 59);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 25px;
  position: relative;
}

.liquidationheatmapbox .tophead_sec .controls_btnsec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.liquidationheatmapbox .tophead_sec .controls_btnsec select {
  background-color: #0f172a;
  border: 1px solid rgb(51 65 85);
  border-radius: 6px;
  padding: 6px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.liquidationheatmapbox .tophead_sec .controls_btnsec button {
  background-color: #0f172a;
  border: 1px solid rgb(51 65 85);
  border-radius: 6px;
  padding: 6px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.dominance_mainsec {
  background-color: rgb(30, 41, 59);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.dominance_innerbox .dominance_mainbox {
  background-color: rgb(15, 23, 42);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 25px;
  position: relative;
}

.dominance_mainsec .title_mainsec {
  text-align: center;
  margin-bottom: 40px;
}

.dominance_mainsec .title_mainsec h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  text-align: center;
  margin-bottom: 10px;
}

.dominance_mainbox .dominancechart_box {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 15px;
  margin-bottom: 0px;
}

.dominancechart_box .dominancebox {
  background-color: rgb(30, 41, 59);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 25px;
  position: relative;
  width: 100%;
}

.dominancechart_box .dominancebox h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 20px;
}

.dominancechart_box .dominancebox .dominanceinfo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 6px;
}

.dominancechart_box .dominancebox .dominanceinfo span {
  color: rgb(151, 166, 186);
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}

.dominancechart_box .dominancechart {
  background-color: rgb(30, 41, 59);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 25px;
  position: relative;
  width: 100%;
  min-height: 414px;
}

.dominancechart_box .dominancechart h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 20px;
}

.dominance_valuebox {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.dominance_valuebox .values_box {
  background-color: rgb(30, 41, 59);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 25px;
  position: relative;
  width: 48.6%;
  min-height: 205px;
}

.dominance_valuebox .values_box h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 20px;
}

.dominance_valuebox .values_box p {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 7px;
  color: rgb(151, 166, 186);
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}

.marketprice_mainsec {
  position: relative;
}

.marketprice_mainsec .coinbox {
  background-color: #0f172a;
  border: 1px solid rgb(51 65 85);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  min-height: 275px;
}

.marketprice_mainsec .marketprice_volume {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.marketprice_mainsec .marketprice_volume > .row {
  width: 100%;
  margin: 0px;
}

.marketprice_mainsec .marketprice_volume > .row .col-sm-12.col-md-6.col-lg-12.col-xl-12 {
  padding-left: 0px;
  padding-right: 0px;
}

.marketprice_mainsec .marketprice_volume > .row .col-sm-12.col-md-6.col-lg-6.col-xl-6 {
  padding-left: 0px;
  padding-right: 10px;
}

.marketprice_mainsec .marketprice_volume > .row .col-sm-12.col-md-6.col-lg-6.col-xl-6:last-child {
  padding-right: 0px;
  padding-left: 10px;
}

.marketprice_mainsec .marketcap.coinbox {
  min-height: 200px;
  width: 100%;
  margin-bottom: 0px;
}

.marketprice_mainsec .marketcap.coinbox .price_graphbox .pricebox {
  margin-bottom: 15px;
}

.marketprice_mainsec .coinbox .titlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

.marketprice_mainsec .coinbox .titlebox h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 0px;
}

.marketprice_mainsec .coinbox .titlebox a {
  color: rgb(151, 166, 186);
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}

.marketprice_mainsec .coinbox .titlebox a:hover {
  color: #16a34a;
}

.marketprice_mainsec .coinbox ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
}

.marketprice_mainsec .coinbox ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.marketprice_mainsec .coinbox ul li:last-child {
  margin-bottom: 0px;
}

.marketprice_mainsec .coinbox .coinname {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}

.marketprice_mainsec .coinbox .coinname img {
  width: 30px;
  height: auto;
  margin-right: 5px;
}

.marketprice_mainsec .coinbox .coinname span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}

.coinbox .pricebox h2 {
  color: rgb(151, 166, 186);
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.downcoin {
  color: red !important;
}

.upcoin {
  color: green !important;
}

.coinbox .pricebox h2 .updown_txt i {
  margin-right: 6px;
}

.marketprice_mainsec .marketcap.coinbox .pricebox h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.marketprice_mainsec .marketcap.coinbox .price_graphbox {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
}

.marketprice_mainsec .marketcap.coinbox .price_graphbox .graphimg img {
  width: 172px;
  height: auto;
}

.analysis_mainsec {
  background-color: rgb(15, 23, 42);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.analysis_mainsec .contntsec {
  background-image: linear-gradient(to right,rgba(22, 163, 74, 0.2), rgba(37, 99, 235, 0.2));
  border: 1px solid #22c55e4d;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  width: 90%;
  margin: 0px auto;
}

.analysis_mainsec .contntsec h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  margin-bottom: 20px;
}

.analysis_mainsec .contntsec p {
  color: rgb(194, 205, 220);
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
}

.coinlist_mainsec {
  background-color: rgb(30, 41, 59);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.coinlist_mainsec .toptitlebox {
  margin-bottom: 50px;
  text-align: center;
}

.coinlist_mainsec .toptitlebox h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  margin-bottom: 15px;
}

.coinlist_mainsec .toptitlebox p {
  font-size: 16px;
}

.coinlist_mainsec .btn_mainsec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.coininfo_boxsec .category_listbox ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 0px;
  padding-left: 0px;
  margin-bottom: 20px;
  list-style: none;
}

.coininfo_boxsec .category_listbox ul li {
  position: relative;
  border-right: 2px solid #2e3c53;
}

.coininfo_boxsec .category_listbox ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  padding: 10px 20px;
  background-color: #0e1628;
  display: inline-block;
}

.coininfo_boxsec .category_listbox ul li a:hover {
  background-color: #16a34a;
}

.coininfo_boxsec .category_listbox ul li.active a {
  background-color: #16a34a;
}

.otherpage_banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 300px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.otherpage_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .90;
  background: linear-gradient(90deg, #06391a 30.54%, rgba(44, 49, 56, 0) 81.77%);
  width: 100%;
  height: 100%;
}

.otherpage_banner .toptitlebox {
  position: relative;
  z-index: 9;
}

.otherpage_banner .breadcrumb_mainsec ul li {
  color: rgb(151, 166, 186);
}

.otherpage_banner .breadcrumb_mainsec ul li a {
  color: #fff;
}

.otherpage_banner .breadcrumb_mainsec ul li a:hover {
  color: #16a34a;
}

.otherpage_banner .toptitlebox .titlesec h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  margin-bottom: 0px;
}

.blog_mainsec {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.blog_mainsec .toptitlebox {
  margin-bottom: 30px;
}

.blog_mainsec .toptitlebox .titlesec h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 43px;
  margin-bottom: 10px;
}

.blog_mainsec .toptitlebox .titlesec p {
  font-size: 16px;
}

.articaldetails_mainsec {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.breadcrumb_mainsec ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding-left: 0px;
  gap: 35px;
  row-gap: 3px;
  position: relative;
}

.breadcrumb_mainsec ul li {
  position: relative;
}

.breadcrumb_mainsec ul li {
  position: relative;
  color: rgb(151, 166, 186);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}

.breadcrumb_mainsec ul li::after {
  content: "››";
  color: rgb(151, 166, 186);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -2px;
  position: absolute;
  top: 0px;
  right: -21px;
}

.breadcrumb_mainsec ul li:last-child::after {
  content: "";
}

.breadcrumb_mainsec ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}

.breadcrumb_mainsec ul li a:hover {
  color: #16a34a;
}

.detailspage_contnt .categorybox {
  margin-bottom: 10px;
}

.categorybox .categorytxt span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  background-color: #16a34a;
  border-radius: 5px;
  padding: 1px 10px;
}

.articaldetails_mainsec .detailspage_contnt .imgbox {
  margin-bottom: 20px;
}

.articaldetails_mainsec .detailspage_contnt .imgbox img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.author_info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 99;
  margin-bottom: 35px;
}

.author_info .iconbox i {
  color: #16a34a;
  font-size: 20px;
  margin-right: 10px;
}

.author_info .iconbox span {
  color: rgb(203 213 225);
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box > div {
  color: #7c859f;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box h2 strong {
  font-weight: 600;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 20px;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box p {
  margin-bottom: 25px;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box p a {
  color: rgb(203 213 225);
  text-decoration: underline !important;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box p a:hover {
  color: #16a34a;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box ul {
  padding-left: 15px;
  margin-bottom: 20px;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box ul li {
  color: rgb(203 213 225);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box ul li a {
  color: rgb(203 213 225);
  text-decoration: underline !important;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box ul li a:hover {
  color: #16a34a;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box ul li > strong {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  display: block;
  margin-bottom: 10px;
}

.articaldetails_mainsec .detailspage_contnt .contnt_box img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
}

.share_social_sec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}

.share_social_sec .titletxt {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.share_social_sec ul {
  padding-left: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
}

.share_social_sec ul li a {
  width: 40px;
  height: 40px;
  background-color: #0f172a;
  border-radius: 8px;
  color: rgb(151, 166, 186);
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.share_social_sec ul li a:hover {
  background-color: #0f172a;
  color: #16a34a;
}

.artical_sidebar {
  padding-left: 30px;
  margin-top: 38px;
}

.artical_sidebar .searchbox {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
  box-shadow: 0px 3px 15px -1px rgba(0, 0, 0, 0.13);
  margin-bottom: 20px;
}

.artical_sidebar .category_box {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
  box-shadow: 0px 3px 15px -1px rgba(0, 0, 0, 0.13);
  margin-bottom: 20px;
}

.artical_sidebar h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 20px;
}

.artical_sidebar .category_box ul {
  padding-left: 15px;
  margin-bottom: 0px;
  list-style: none;
}

.artical_sidebar .category_box ul li {
  color: #6d799b;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}

.artical_sidebar .category_box ul li::before {
  content: "";
  background-image: url("../img//right-double-arrow.png");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: -15px;
}

.artical_sidebar .latest_newsbox {
  background-color: #0f172a;
  border: 1px solid rgb(51 65 85);
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
  margin-bottom: 20px;
}

.artical_sidebar .latest_newsbox .articals_mainbox {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(30 41 59);
  padding-bottom: 20px;
}

.artical_sidebar .latest_newsbox .articals_mainbox:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_imgbox {
  width: 85px;
  height: 85px;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_imgbox img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox {
  padding-top: 0px;
  padding-left: 15px;
  width: 70%;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox .artical_contnt h3 {
  line-height: 23px;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox .artical_contnt h3 a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 10px;
  display: inline-block;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox .artical_contnt h3 a:hover {
  color: #16a34a;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox .artical_info {
  position: static;
  padding: 0px;
  margin-bottom: 0px;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox .artical_info .time_txt {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  background-color: #16a34a;
  border-radius: 5px;
  padding: 1px 10px;
}

.pagination_box button {
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: #fff;
  border: 1px solid #ddd !important;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  vertical-align: middle;
}

.pagination_box button:hover {
  background-color: #f97316;
  color: #fff;
  border: 1px solid #f97316 !important;
}

.pagination_box button.text-white {
  background-color: #f97316;
  border: 1px solid #f97316 !important;
  color: #fff !important;
}

.topnews_mainsec {
  padding-top: 0px;
  padding-bottom: 50px;
  position: relative;
}

.topnews_mainsec > .container-fluid {
  padding: 0px;
}

.topnews_mainbox {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.topnews_mainsec .topnewsbox {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  padding: 40px;
  min-height: 452px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  position: relative;
  width: 30%;
}

.topnews_mainsec .topnewsbox.center_bigbox {
  width: 40%;
}

.topnews_mainsec .topnewsbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .90;
  background: linear-gradient(90deg, #000000eb 50%, #0000 100%);
  width: 100%;
  height: 100%;
}

.topnews_mainsec .topnewsbox .contntbox {
  width: 90%;
  position: relative;
  z-index: 9;
}

.topnews_mainsec .topnewsbox .contntbox h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 10px;
}

.topnews_mainsec .topnewsbox .contntbox .sortdes {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.topnews_mainsec .topnewsbox .contntbox p {
  color: rgb(203 213 225);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0px;
}

.topnews_mainsec .topnewsbox .contntbox .txtbtn .btn_style {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline !important;
}

.topnews_mainsec .topnewsbox .contntbox .txtbtn .btn_style:hover {
  color: #16a34a;
}

.news_boxsec {
  padding-bottom: 40px;
  position: relative;
}

.news_mainsec.blog_page .otherpage_banner .toptitlebox {
  display: block;
}

.news_boxsec .toptitlebox .titlesec {
  margin-bottom: 30px;
}

.news_boxsec .toptitlebox .titlesec h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 43px;
  margin-bottom: 10px;
}

.news_boxsec .toptitlebox .titlesec p {
  font-size: 16px;
}

.news_mainsec .articals_mainsec {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 0px;
  margin: 0px -10px;
}

.news_mainsec .articals_mainsec .articals_mainbox {
  width: 33.33%;
  padding: 0px 10px;
}

.news_mainsec .toptitlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.news_mainsec .toptitlebox .view-toggle {
  width: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
}

.news_mainsec .toptitlebox .view-toggle button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0px;
  padding: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.news_mainsec .toptitlebox .view-toggle button.active {
  background-color: #16a34a;
  border: 1px solid #16a34a;
}

.news_mainsec .toptitlebox .view-toggle button i {
  color: #fff;
  font-size: 20px;
}

.news_mainsec .articals_mainsec .articals_mainbox.list {
  width: 100%;
  min-height: auto;
}

.news_mainsec .articals_mainsec .articals_mainbox.list .articals_innerbox {
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: 0px;
}

.news_mainsec .articals_mainsec .articals_mainbox.list .articals_contntbox .artical_contnt h3 a {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

.news_mainsec .articals_mainsec .articals_mainbox.list .articals_imgbox {
  width: 30%;
  height: 235px;
}

.news_mainsec .articals_mainsec .articals_mainbox.list .articals_contntbox {
  width: 70%;
}

.news_mainsec .articals_mainsec .articals_mainbox.list .articals_contntbox .artical_contnt .article_description {
  font-size: 15px;
  min-height: auto;
  -webkit-line-clamp: 2;
}

.news_mainsec .news_boxsec .btn_mainsec.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.blog_mainsec .btn_mainsec.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.coindetails_mainsec {
  padding-top: 20px;
  padding-bottom: 40px;
  position: relative;
}

.coinprice_sidebar {
  background-color: rgb(15, 23, 42);
  border: 1px solid rgb(51, 65, 85);
  border-radius: 16px;
  overflow: hidden;
  padding: 25px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
}

.coinprice_sidebar > div {
  width: 100%;
}

.coinprice_sidebar .coin_infobox {
  margin-bottom: 20px;
}

.coinprice_sidebar .coin_infobox .cryptoname {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}

.coinprice_sidebar .coin_infobox .cryptoname img {
  width: 25px;
  height: auto;
  margin-right: 8px;
}

.coinprice_sidebar .coin_infobox .cryptoname .coinname {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.coinprice_sidebar .coin_infobox .cryptoname .coinname .cointxt {
  color: #16a34a;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.coinprice_sidebar .coin_infobox .pricebox h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.coinprice_sidebar .coin_infobox .pricebox h2 .updown_txt {
  color: red;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.coinprice_sidebar .coin_infobox .pricebox h2 .updown_txt i {
  font-size: 18px;
}

.coinprice_sidebar .coin_infobox .pricebox .btcprice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.coinprice_sidebar .coin_infobox .pricebox .btcprice span {
  color: #6d799b;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.coinprice_sidebar .coin_infobox .pricebox .btcprice .priceup_txt {
  color: green;
}

.coinprice_sidebar .coin_infobox .pricebox .btcprice .priceup_txt span {
  color: green;
  margin-left: 6px;
}

.coinprice_sidebar .coin_infobox .pricebox .btcprice .priceup_txt i {
  vertical-align: bottom;
}

.coinprice_sidebar .coinmarket_info {
  margin-bottom: 40px;
}

.coinprice_sidebar .coinmarket_info ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.coinprice_sidebar .coinmarket_info ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgb(30, 41, 59);
  padding: 15px 0px;
}

.coinprice_sidebar .coinmarket_info ul li:first-child {
  border-top: 1px solid rgb(30, 41, 59);
}

.coinprice_sidebar .coinmarket_info ul li span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.coinprice_sidebar .coinmarket_info ul li .title_txt {
  color: #6d799b;
}

.coinprice_sidebar .titlebox h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}

.coinprice_sidebar .btc_converter .btcinput_box {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 6px;
  position: relative;
}

.coinprice_sidebar .btc_converter .btcinput_box .inputbox {
  border-bottom: 1px solid #dedede;
  position: relative;
}

.coinprice_sidebar .btc_converter .btcinput_box .inputbox:last-child {
  border-bottom: none;
}

.coinprice_sidebar .btc_converter .btcinput_box .inputbox input {
  background-color: #fff;
  border: none;
  width: 100%;
  padding: 10px 55px 10px 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  box-shadow: none;
}

.coinprice_sidebar .btc_converter .btcinput_box .inputbox .txt {
  position: absolute;
  top: 11px;
  right: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.coinprice_sidebar .btc_converter .btcinput_box .inputbox .select_input {
  position: absolute;
  top: 11px;
  right: 10px;
}

.coinprice_sidebar .btc_converter .btcinput_box .inputbox .select_input select {
  background-color: transparent;
  border: none;
  padding: 0px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.btc_historicalprice_sec .priceinfo ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.btc_historicalprice_sec .priceinfo ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgb(30, 41, 59);
  padding: 15px 0px;
}

.btc_historicalprice_sec .priceinfo ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.btc_historicalprice_sec .priceinfo ul li span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.btc_historicalprice_sec .priceinfo ul li .title_txt {
  color: #6d799b;
}

.btc_historicalprice_sec .priceinfo ul li span h2 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
}

.btc_historicalprice_sec .priceinfo ul li span h2 .updown_txt {
  color: red;
}

.btc_historicalprice_sec .priceinfo ul li span p {
  font-size: 14px;
}

.tabbtn_mainsec {
  margin-bottom: 20px;
}

.tabbtn_mainsec ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #ececec;
}

.tabbtn_mainsec ul li {
  margin-bottom: -1px;
}

.tabbtn_mainsec ul li a {
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  padding: 8px 15px;
  display: inline-block;
  cursor: pointer;
}

.tabbtn_mainsec ul li a:hover {
  color: #16a34a !important;
}

.tabbtn_mainsec ul li.active a {
  border-bottom: 3px solid #16a34a;
  color: #16a34a !important;
  font-weight: 600;
}

.coinprice_change {
  padding-top: 25px;
  padding-bottom: 25px;
}

.coinprice_change .table {
  border: 1px solid rgb(51 65 85);
  margin-bottom: 0px;
}

.coinprice_change .table thead tr th {
  color: rgb(203 213 225);
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  background-color: rgb(30, 41, 59);
  border-right: 1px solid rgb(51 65 85);
  padding: 10px 15px;
  text-align: center !important;
}

.coinprice_change .table tbody tr td {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  padding: 10px 15px;
  text-align: center;
  border-right: 1px solid rgb(30 41 59);
  background-color: #0e1628;
}

.downcoin {
  color: red !important;
}

.upcoin {
  color: green !important;
}

.about_mainsec {
  padding-top: 20px;
  padding-bottom: 20px;
}

.about_mainsec .contntbox h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 10px;
}

.about_mainsec .contntbox h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 10px;
}

.about_mainsec .contntbox p {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.bitcoin_markets_info {
  padding-top: 40px;
  padding-bottom: 20px;
}

.bitcoin_markets_info .titlebox {
  margin-bottom: 20px;
}

.bitcoin_markets_info .titlebox h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 10px;
}

.bitcoin_markets_info .table .cryptonamebtn {
  width: 230px;
}

.bitcoin_markets_info .table .cryptonamebtn .cextxt {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}

.bitcoin_markets_info .table tbody tr td:last-child {
  text-align: center;
}

.bitcoin_markets_info .table tbody tr td .trustscore.green i {
  color: green;
  font-size: 14px;
}

.bitcoin_markets_info .table tbody tr td .trustscore.red i {
  color: red;
  font-size: 14px;
}

.bitcoin_markets_info .table .cryptonamebtn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bitcoin_markets_info .table .cryptonamebtn .logoname {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.bitcoin_markets_info .table .cryptonamebtn .logoname img {
  width: 24px;
  height: auto;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec {
  padding-top: 40px;
  padding-bottom: 20px;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox {
  background-color: rgb(14, 22, 40);
  border: 1px solid rgb(51 65 85);
  border-radius: .75rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 0px;
  min-height: 455px;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox .articals_contntbox {
  padding: 20px;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox .articals_contntbox .artical_contnt h3 a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  display: inline-block;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox .articals_contntbox .artical_contnt h3 a:hover {
  color: rgb(74 222 128);
}

.relatedcoin_mainsec {
  padding-top: 40px;
  padding-bottom: 20px;
}

.relatedcoin_mainsec .titlebox h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 20px;
}

.coindetails_mainsec .articals_mainsec .title_mainsec h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 20px;
}

.relatedcoin_mainsec .relatedcoin_boxsec {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  row-gap: 15px;
  column-gap: 15px;
}

.relatedcoin_boxsec .relatedcoin_box {
  width: 19%;
  min-height: 270px;
  background-color: rgb(14, 22, 40);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}

.relatedcoin_boxsec .relatedcoin_box .imgbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.relatedcoin_boxsec .relatedcoin_box .imgbox img {
  width: 30px;
  height: auto;
}

.relatedcoin_boxsec .relatedcoin_box .imgbox .starbox i {
  color: #ee7724;
  font-size: 20px;
}

.relatedcoin_boxsec .relatedcoin_box .namebox {
  margin-bottom: 20px;
}

.relatedcoin_boxsec .relatedcoin_box .namebox h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 0px;
}

.relatedcoin_boxsec .relatedcoin_box .pricupdown {
  margin-bottom: 15px;
}

.relatedcoin_boxsec .relatedcoin_box .pricupdown h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 0px;
}

.relatedcoin_boxsec .relatedcoin_box .pricupdown h2 .upcoin {
  font-size: 18px;
}

.pricupdown h2 i {
  font-size: 14px;
  padding: 0px 6px;
}

.downcoin i {
  font-size: 14px;
  padding: 0px 6px;
}

.upcoin i {
  font-size: 14px;
  padding: 0px 6px;
}

.relatedcoin_boxsec .relatedcoin_box .sparkline_img img {
  width: 100%;
  height: auto;
}

.articals_mainsec .btn_mainsec {
  margin-top: 20px;
  text-align: center;
}

.price_overview .dashboard {
  background-color: rgb(15, 23, 42);
  border: 1px solid rgb(51, 65, 85);
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
  width: 100%;
}

.price_overview .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
}

.price_overview .tab {
  color: #fff;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: none;
  flex-shrink: 0;
  font-weight: 500;
}

.price_overview .tab.active {
  background-color: #00C853;
  color: white;
  border-color: #00C853;
}

.price_overview .chart-container {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  height: 335px;
}

.price_overview .chart-container img {
  width: 100%;
  height: auto;
}

.price_overview .time-scales {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  width: 100%;
}

.markets-table-container .table {
  border: 1px solid rgb(51, 65, 85);
  margin-bottom: 0px;
}

.markets-table-container .table thead tr th {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  background-color: rgb(30, 41, 59);
  border-right: 1px solid rgb(51, 65, 85);
  padding: 10px 15px;
  text-align: right;
}

.markets-table-container .table tbody tr td {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  padding: 20px 20px;
  text-align: right;
  border-right: 1px solid rgb(30 41 59);
  background-color: #0e1628;
}

.markets-table-container .table tbody tr td a {
  color: #fff;
}

.markets-table-container .table tbody tr td a:hover {
  color: #16a34a;
}

.markets-table-container .table tbody tr td .verified i {
  font-size: 14px;
  margin-left: 8px;
}

.table thead tr th:first-child, 
.table thead tr th:nth-child(2), 
.table thead tr th:nth-child(3) {
  text-align: left;
}

.table tbody tr td:first-child, 
.table tbody tr td:nth-child(2), 
.table tbody tr td:nth-child(3) {
  text-align: left;
}

.markets-table-container .pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.markets-table-container .pagination-container .page-numbers {
  display: flex;
  gap: 0px;
}

.markets-table-container .pagination-container .page-numbers .pagination-button {
  padding: 5px 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  cursor: pointer;
  border-radius: 0px;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
}

.markets-table-container .pagination-container .page-numbers .pagination-button:hover {
  border: 1px solid #16a34a;
  background: #16a34a !important;
  color: #fff;
}

.markets-table-container .pagination-container .page-numbers .pagination-button.active {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}

.markets-table-container .pagination-container .pagination-button:hover:not(:disabled) {
  background: #1b4c3e;
}

.markets-table-container .pagination-container .pagination-button:disabled {
  color: #aaa;
  cursor: not-allowed;
}

.markets-table-container .pagination-container .pagination-button:hover:disabled {
  background-color: transparent;
  border: 1px solid #ddd;
  color: #aaa;
}

.markets-table-container .pagination-container .pagination-button {
  padding: 5px 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  cursor: pointer;
  border-radius: 0px;
  transition: all 0.3s;
  height: 40px;
  width: auto;
}

.markets-table-container .pagination-container .pagination-button:hover {
  border: 1px solid #16a34a;
  background: #16a34a;
  color: #fff;
}

.markets-table-container .pagination-container .page-ellipsis {
  padding: 5px 10px;
  color: #fff;
}

.markets-table-container .pagination-container .page-info {
  color: #fff;
  font-size: 14px;
}

.articals_mainbox {
  position: relative;
  margin-bottom: 25px;
}

.articals_mainbox .articals_imgbox {
  width: 100%;
  height: 265px;
  overflow: hidden;
}

.articals_mainbox .articals_imgbox img {
  width: 100%;
  height: 100%;
  transition: 0.6s ease-in-out;
  object-fit: cover;
}

.articals_mainbox:hover .articals_imgbox img {
  transform: scale(1.1);
}

.articals_mainbox .articals_contntbox {
  padding-top: 10px;
  padding-bottom: 10px;
}

.articals_mainbox .articals_contntbox .artical_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  position: absolute;
  top: 10px;
  left: 0px;
  z-index: 99;
  width: auto;
  padding: 0px 10px;
}

.articals_mainbox .articals_contntbox .artical_info span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}

.articals_mainbox .articals_contntbox .artical_contnt h3 {
  line-height: 27px;
  margin-bottom: 15px;
}

.articals_mainbox .articals_contntbox .artical_contnt h3 a {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
}

.articals_mainbox .articals_contntbox .artical_contnt h3 a:hover {
  color: #f97316;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .trendingtxt {
  background-color: #16a34a;
  border-radius: 5px;
  padding: 1px 10px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .trendingtxt span {
  padding: 0px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info .trendingtxt span {
  padding: 0px;
  color: #fff;
}

.news_mainsec.livecryptoprices_mainsec .articals_mainbox {
  margin-bottom: 24px;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox .artical_info .datetimebox .datetime {
  background-color: #16a34a;
  border-radius: 5px;
  padding: 2px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox .artical_info .datetimebox .datetime svg {
  color: #fff;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox .artical_info .datetimebox .datetime .datetxt {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
}

.relatedcoin_boxsec .relatedcoin_box {
  width: 23.40%;
  min-height: 255px;
}

#coin_list_table_wrapper .dt-layout-row:nth-child(3) {
  display: none;
}


.plans_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
 
.plans_mainsec .toptitle_sec {
  text-align: center;
  margin-bottom: 40px;
}
 
.plans_mainsec .toptitle_sec h1 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 10px;
}
 
.plans_mainsec .pricing_card {
  background-color: rgb(15, 23, 42);
  border: 1px solid rgb(51 65 85);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  min-height: 500px;
  position: relative;
}
 
.plans_mainsec .pricing_card .top_pricebox {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  min-height: 145px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}
 
.plans_mainsec .pricing_card .top_pricebox .titlebox {
  width: 60%;
}
 
.plans_mainsec .pricing_card .top_pricebox .titlebox h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 37px;
  margin-bottom: 5px;
}
 
.plans_mainsec .pricing_card .top_pricebox .pricebox {
  width: 40%;
  padding-left: 20px;
}
 
.plans_mainsec .pricing_card .top_pricebox .pricebox .pricetxt {
  color: #16a34a;
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  margin-bottom: 0px;
  display: block;
}
 
.plans_mainsec .pricing_card .top_pricebox .pricebox .pricetxt span {
  color: #16a34a;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}
 
.plans_mainsec .pricing_card .top_pricebox .pricebox .cutprice {
  color: rgb(151, 166, 186);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  text-decoration: line-through;
}
 
.plans_mainsec .pricing_card .contntbox {
  margin-bottom: 30px;
}
 
.plans_mainsec .pricing_card .contntbox ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
}
 
.plans_mainsec .pricing_card .contntbox ul li {
  margin-bottom: 20px;
}
 
.plans_mainsec .pricing_card .contntbox ul li h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 3px;
}
 
.plans_mainsec .pricing_card .btn_mainsec .btn_style {
  width: 100%;
  text-align: center;
  justify-content: center;
}
 
.plans_mainsec .pricing_card.bestdeal {
  border: 2px solid #16a34a;
}
 
.plans_mainsec .pricing_card.bestdeal .bestdealbox {
  position: absolute;
  top: -15px;
  left: 30px;
  z-index: 9;
  background-color: #16a34a;
  border-radius: 4px;
  padding: 2px 10px;
}
 
.plans_mainsec .pricing_card.bestdeal .bestdealbox span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}

.plans_mainsec .price_contnt {
  text-align: center;
  background-color: rgb(15, 23, 42);
  border: 1px solid rgb(51 65 85);
  border-radius: 16px;
  padding: 25px;
  padding-bottom: 40px;
  position: relative;
  width: 70% !important;
  margin: 0px auto;
}
 
.plans_mainsec .price_contnt h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 10px;
}

.plans_mainsec .price_contnt h2 {
  color: #16a34a;
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.plans_mainsec .price_contnt h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.plans_mainsec .price_contnt ul {
  width: 70%;
  margin: 0px auto;
  margin-bottom: 20px;
  text-align: left;
}

.plans_mainsec .price_contnt ul li {
  color: rgb(151, 166, 186);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 8px;
}

.plans_mainsec .price_contnt ul li strong {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.plans_mainsec .price_contnt p {
  font-size: 15px;
}

.termsservice_mainsec {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.termsservice_mainsec .contntbox h1 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 43px;
  margin-bottom: 15px;
}

.termsservice_mainsec .contntbox h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 37px;
  margin-bottom: 15px;
  margin-top: 40px;
}

.termsservice_mainsec .contntbox h2:first-child {
  margin-top: 0px;
}

.termsservice_mainsec .contntbox h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 15px;
  margin-top: 40px;
}

.termsservice_mainsec .contntbox p {
  color: rgb(203 213 225);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}

.termsservice_mainsec .contntbox ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.termsservice_mainsec .contntbox ul li {
  color: rgb(203 213 225);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 15px;
}

.termsservice_mainsec .contntbox ul li ul {
  margin-top: 10px;
}

.contact_mainsec {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.form_mainsec .form-group {
  margin-bottom: 15px;
}

.form_mainsec .form-group .form-label {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 5px;
}

.form_mainsec .form-group .form-control {
  background-color: #0e1628;
  border: 1px solid rgb(51 65 85);
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  padding: 8px 20px;
  box-shadow: none;
  outline: none;
  min-height: 45px;
}

.form_mainsec .form-group .form-control::placeholder {
  color: #fff;
  opacity: 0.2;
}

.form_mainsec .btn_mainsec {
  margin-top: 10px;
}

.contact_mainsec .contnt_box {
  padding-top: 5px;
  padding-left: 50px;
}

.contact_mainsec .contnt_box .title_box {
  margin-bottom: 25px;
}

.contact_mainsec .contnt_box .title_box h5 {
  color: #e74400;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 5px;
}

.contact_mainsec .contnt_box .title_box h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 0px;
}

.contact_mainsec .contnt_box .info_box ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
}

.contact_mainsec .contnt_box .info_box ul li {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.contact_mainsec .contnt_box .info_box ul li:last-child {
  align-items: start;
}

.contact_mainsec .contnt_box .info_box .iconbox {
  width: 40px;
  height: 40px;
  background-color: #16a34a;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.contact_mainsec .contnt_box .info_box .iconbox img {
  width: 20px;
  height: auto;
}

.contact_mainsec .contnt_box .info_box .icontxt {
  width: 60%;
}

.contact_mainsec .contnt_box .info_box .icontxt p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.contact_mainsec .contnt_box .info_box .icontxt a {
  color: #fff;
  text-decoration: underline !important;
}

.contact_mainsec .contnt_box .info_box .icontxt a:hover {
  color: #16a34a;
}

.thankyou_msg {
  margin-top: 20px;
}

.thankyou_msg b {
  color: #16a34a;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 5px;
  display: block;
}

.thankyou_msg p {
  color: rgb(151, 166, 186);
}

.thankyou_msg p a {
  color: rgb(151, 166, 186);
  text-decoration: underline !important;
}

.thankyou_msg p a:hover {
  color: #16a34a;
}

.faq_mainsec {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.faq_mainsec .contntbox p {
  color: rgb(203 213 225);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 15px;
}

.faq_mainsec .contntbox p a {
  color: #fff;
  text-decoration: underline !important;
}

.faq_mainsec .contntbox p a:hover {
  color: #16a34a;
}

.faq_boxsec .accordion .accordion-item {
  background-color: rgb(30, 41, 59);
  border: 1px solid rgb(51 65 85);
  margin-bottom: 6px;
}

.faq_boxsec .accordion .accordion-item .accordion-header .accordion-button {
  background-color: rgb(15, 23, 42);
  border-bottom: 1px solid rgb(51 65 85);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 20px;
  outline: none;
  box-shadow: none;
}

.faq_boxsec .accordion .accordion-item .accordion-header .accordion-button::after {
  filter: brightness(10);
}

.riskdisclosure_mainsec .contntbox p strong:first-child {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.popup {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 500px;
  background: rgb(15, 23, 42);
  border: 1px solid rgb(51 65 85);
  border-radius: 8px;
  z-index: 1000;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.popup-header span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
 
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.searchbox .popup .popup-header button {
  background-color: #16a34a;
  border: 1px solid #16a34a;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 30px;
  height: 30px;
}

.searchbox .popup .popup-header button:hover {
  background-color: #0c652d;
  border: 1px solid #0c652d;
  color: #fff;
}
 
.results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.result-item {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 10px;
  cursor: pointer;
  border-radius: 8px;
  background: #1c2739;
  transition: background 0.2s;
}

.result-item:hover {
  background-color: #16a34a;
}

.popup .results .result-item span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.popup-search-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgb(51 65 85);
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background-color: #1c2739;
  color: #fff;
}

.popup-search-input:focus {
  border-color: #999;
}



/* SkeletonCard.css */
 
.skeleton {
  background-color: #eee;
  border-radius: 4px;
  margin-bottom: 0px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #eeeeee 0%,
    #dddddd 20%,
    #eeeeee 40%,
    #eeeeee 100%
  );
  background-repeat: no-repeat;
  background-size: 1000px 100%;
}
 
.skeleton-thumbnail {
  height: 150px;
  width: 100%;
  margin-bottom: 5px;
}
 
.skeleton-title {
  height: 20px;
  width: 100%;
  margin-bottom: 5px;
}
 
.skeleton-text {
  height: 14px;
  width: 75%;
  margin-bottom: 5px;
}

.skeleton-small-text {
  height: 14px;
  width: 30%;
  margin-bottom: 5px;
}
 
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.topbanner_mainsec .skeleton-card.news_mainsec {
  padding: 0px;
  box-shadow: none;
}

.skeleton-card .topbanner_mainsec .topnews_mainsec .news_mainsec .contntbox .skeleton-title {
  margin-bottom: 15px;
}

.skeleton-card .topbanner_mainsec .topnews_mainsec .news_mainsec .contntbox .skeleton-text {
  width: 100%;
  margin-bottom: 5px;
}

.skeleton-card .topbanner_mainsec .topnews_mainsec .news_mainsec .contntbox .skeleton-small-text {
  width: 25%;
  margin-top: 15px;
}

.skeleton-card .topbanner_mainsec .topnews_mainsec .news_mainsec .imgbox .skeleton-thumbnail {
  height: 100%;
}

.skeleton-card .topbanner_mainsec .topnews_mainsec .side_newsbox .small_newsbox .contntbox .skeleton-title {
  margin-bottom: 10px;
}

.skeleton-card .marketprice_mainsec .coinbox ul li .skeleton-title {
  width: 45%;
}

.skeleton-card .marketprice_mainsec .coinbox ul li .skeleton-text {
  width: 30%;
}

.skeleton-card .marketprice_mainsec .marketcap.coinbox .price_graphbox .pricebox {
  width: 40%;
}

.skeleton-card .marketprice_mainsec .marketcap.coinbox .price_graphbox .graphimg {
  width: 40%;
}

.skeleton-card .marketprice_mainsec .marketcap.coinbox .price_graphbox .graphimg .skeleton-thumbnail {
  height: 65px;
}

.skeleton-card .marketprice_mainsec .tranding_coins.coinbox {
  min-height: 324px;
}

.skeleton-card .crypto_price_table {
  margin-top: 10px;
}

.topbanner_mainsec .side_newsbox .skeleton-card {
  background-color: transparent;
  padding: 0px;
  box-shadow: none;
}

.marketprice_mainsec .coinbox .skeleton-card {
  background-color: transparent;
  padding: 0px;
  box-shadow: none;
}

.marketprice_mainsec .coinbox .skeleton-card .titlebox .skeleton-title {
  width: 45%;
}

.marketprice_mainsec .coinbox .skeleton-card .titlebox .skeleton-text {
  width: 25%;
}

.marketprice_mainsec .coinbox .skeleton-card ul li .coinname {
  width: 45%;
}

.marketprice_mainsec .coinbox .skeleton-card ul li .pricebox {
  width: 45%;
}

.marketprice_mainsec .coinbox .skeleton-card ul li .pricebox .skeleton-text {
  float: right;
}

.marketprice_mainsec .coinbox .skeleton-card .price_graphbox .pricebox {
  width: 45%;
}

.marketprice_mainsec .coinbox .skeleton-card .price_graphbox .graphimg {
  width: 45%;
}

.marketprice_mainsec .coinbox .skeleton-card .price_graphbox .graphimg .skeleton-thumbnail {
  height: 55px;
}

.launchpad_mainsec .toptitle_sec .skeleton-card .skeleton-title {
  width: 45%;
  margin: 15px auto;
}

.launchpad_mainsec .toptitle_sec .skeleton-card .skeleton.skeleton-text {
  width: 98%;
  margin: 4px auto;
}

.launchpad_mainsec .available_airdrops_box .skeleton-card .title_box .skeleton-title {
  width: 25%;
  margin-bottom: 15px;
}

.available_airdrops_box .search_airdrops .search_box .skeleton-thumbnail {
  height: 42px;
}

.launchpad_mainsec .available_airdrops_box .skeleton-card .search_airdrops .btn_box {
  width: 23%;
}

.launchpad_mainsec .available_airdrops_box .skeleton-card .search_airdrops .btn_box .skeleton-title {
  width: 48%;
  height: 42px;
}

.airdrops_mainsec .skeleton-card .airdrops_boxsec {
  min-height: 350px;
}

.airdrops_mainsec .skeleton-card .airdrops_boxsec .imgbox .skeleton-thumbnail {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.airdrops_mainsec .skeleton-card .airdrops_boxsec .contntbox .titlebox .skeleton-title {
  width: 45%;
}

.airdrops_mainsec .skeleton-card .airdrops_boxsec .contntbox .titlebox .statusbox {
  width: 35%;
}

.airdrops_mainsec .skeleton-card .airdrops_boxsec .contntbox .titlebox .statusbox .skeleton-text {
  float: right;
}

.airdrops_mainsec .skeleton-card .airdrops_boxsec .contntbox .date_value_sec .boxsec .skeleton-small-text {
  width: 100%;
  margin-bottom: 8px;
}

.toprecent_newsbox .toprecent_slider .skeleton-card .newsbox {
  position: relative;
}

.toprecent_newsbox .toprecent_slider .skeleton-card .newsbox > .imgbox {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.toprecent_newsbox .toprecent_slider .skeleton-card .newsbox > .imgbox .skeleton-thumbnail {
  height: 100%;
}

.toprecent_newsbox .toprecent_slider .skeleton-card .newsbox .contntbox::after {
  content: none;
}

.toprecent_newsbox .toprecent_slider .skeleton-card .newsbox .contntbox .contnt_secbox .categorybox .skeleton-small-text {
  width: 10%;
  background-color: #dbdbdb;
  background-image: linear-gradient( to right, #d0d0d0 0%, #e9e9e9 20%, #d4d4d4 40%, #e3e3e3 100% );
}

.toprecent_newsbox .toprecent_slider .skeleton-card .newsbox .contntbox .contnt_secbox .author_info .skeleton-text {
  width: 20%;
  background-color: #dbdbdb;
  background-image: linear-gradient( to right, #d0d0d0 0%, #e9e9e9 20%, #d4d4d4 40%, #e3e3e3 100% );
}

.toprecent_newsbox .toprecent_slider .skeleton-card .newsbox .contntbox .contnt_secbox .titlebox .skeleton-title {
  background-color: #dbdbdb;
  background-image: linear-gradient( to right, #d0d0d0 0%, #e9e9e9 20%, #d4d4d4 40%, #e3e3e3 100% );
}

.articals_mainsec.news_mainsec .skeleton-card .title_mainsec {
  margin-bottom: 30px;
}

.articals_mainsec.news_mainsec .skeleton-card .title_mainsec .skeleton-title {
  width: 25%;
}

.articals_mainsec.news_mainsec .skeleton-card .optionbox .skeleton-text {
  width: 30%;
}

.news_mainsec .skeleton-card .articals_mainbox .articals_contntbox .artical_contnt {
  margin-bottom: 10px;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .imgbox {
  height: 200px;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .skeleton-thumbnail {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .titlebox .skeleton-title {
  width: 25%;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .titlebox .status_sharebox {
  width: 40%;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .titlebox .status_sharebox .statusbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 15px;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .contntsec .skeleton-title {
  width: 15%;
  margin-bottom: 15px;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .contntsec .skeleton-text {
  width: 100%;
  margin-bottom: 5px;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .date_value_sec .skeleton-small-text {
  width: 50%;
  margin-bottom: 8px;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .high_low_data .boxsec {
  width: 25%;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .high_low_data .boxsec span .skeleton-title {
  margin-bottom: 5px;
}

.skeleton-card .airdrops_mainsec .airdrops_boxsec .contntbox .btn_mainsec .skeleton-thumbnail {
  width: 180px;
  height: 40px;
  border-radius: 5px;
  float: right;
  margin-bottom: 25px;
}

.skeleton-card .coindetails_mainsec .breadcrumb_mainsec ul {
  gap: 10px;
}

.skeleton-card .coindetails_mainsec .breadcrumb_mainsec ul .skeleton-small-text {
  width: 10%;
}

.skeleton-card .coindetails_mainsec .coinprice_sidebar .btc_converter .titlebox {
  margin-bottom: 20px;
}

.skeleton-card .coindetails_mainsec .coinprice_sidebar .btc_converter .btcinput_box .inputbox .skeleton-thumbnail {
  height: 40px;
}

.skeleton-card .coindetails_mainsec .coinprice_sidebar .btc_historicalprice_sec .priceinfo ul li .skeleton-text {
  width: 50%;
}

.skeleton-card .coindetails_mainsec .tabbtn_mainsec ul {
  padding-bottom: 10px;
}

.skeleton-card .coindetails_mainsec .tabbtn_mainsec ul .skeleton-small-text {
  width: 10%;
  margin-right: 8px;
}

.skeleton-card .coindetails_mainsec .price_overview .skeleton-thumbnail {
  height: 300px;
}

.skeleton-card .coindetails_mainsec .coinprice_change .table .skeleton-thumbnail {
  height: 13px;
}

.skeleton-card .coindetails_mainsec .about_mainsec .contntbox .skeleton-title {
  width: 20%;
  margin-bottom: 15px;
}

.skeleton-card .coindetails_mainsec .about_mainsec .contntbox .skeleton-text {
  width: 30%;
  margin-bottom: 10px;
}

.skeleton-card .coindetails_mainsec .about_mainsec .contntbox .skeleton-small-text {
  width: 100%;
  margin-bottom: 5px;
}

.skeleton-card .coindetails_mainsec .bitcoin_markets_info .titlebox .skeleton-title {
  width: 20%;
  margin-bottom: 15px;
}

.skeleton-card .coindetails_mainsec .bitcoin_markets_info .titlebox .skeleton-text {
  width: 15%;
  margin-bottom: 10px;
}

.skeleton-card .coindetails_mainsec .bitcoin_markets_info .table .skeleton-thumbnail {
  height: 15px;
}

.skeleton-card .coindetails_mainsec .articals_mainsec .title_mainsec .skeleton-title {
  width: 20%;
  margin-bottom: 10px;
}

.skeleton-card .coindetails_mainsec .articals_mainsec .articals_mainbox .articals_imgbox .skeleton-thumbnail {
  height: 300px;
}

.skeleton-card .coindetails_mainsec .articals_mainsec .articals_mainbox .articals_contntbox .artical_contnt .skeleton-title {
  margin-bottom: 10px;
}

.skeleton-card .coindetails_mainsec .articals_mainsec .articals_mainbox .articals_contntbox .artical_contnt .skeleton-text {
  margin-bottom: 5px;
}

.skeleton-card .detailspage_contnt .breadcrumb_mainsec ul {
  gap: 10px;
}

.skeleton-card .detailspage_contnt .breadcrumb_mainsec ul .skeleton-small-text {
  width: 15%;
}

.skeleton-card .detailspage_contnt .categorybox {
  margin-bottom: 15px;
}

.skeleton-card .detailspage_contnt .categorybox .skeleton-small-text {
  width: 12%;
}

.skeleton-card .detailspage_contnt .imgbox .skeleton-thumbnail {
  height: 500px;
}

.skeleton-card .detailspage_contnt .author_info .iconbox {
  width: 100%;
}

.skeleton-card .detailspage_contnt .author_info .iconbox .skeleton-small-text {
  width: 20%;
}

.skeleton-card .detailspage_contnt .contnt_box .skeleton-title {
  width: 100%;
  margin-bottom: 15px;
}

.skeleton-card .detailspage_contnt .contnt_box .skeleton-text {
  margin-bottom: 5px;
  width: 100%;
}

.skeleton-card .detailspage_contnt .share_social_sec .skeleton-title {
  width: 15%;
}

.skeleton-card .detailspage_contnt .share_social_sec ul .skeleton-thumbnail {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-card .articaldetails_mainsec .artical_sidebar .latest_newsbox .title_box .skeleton-title {
  width: 50%;
  margin-bottom: 25px;
}

.skeleton-card .articaldetails_mainsec .artical_sidebar .latest_newsbox .articals_sec .articals_mainbox .articals_contntbox .artical_contnt {
  margin-bottom: 10px;
}

.skeleton-card .articaldetails_mainsec .artical_sidebar .latest_newsbox .articals_sec .articals_mainbox .articals_contntbox .artical_info .skeleton-small-text {
  width: 50%;
}

.skeleton-card .news_mainsec .articals_mainbox .articals_imgbox .skeleton.skeleton-thumbnail {
  height: 100%;
}

.skeleton-card .news_boxsec .toptitlebox .titlesec {
  display: block;
  width: 50%;
}

.skeleton-card .traders_infobox {
  gap: 70px;
}

.skeleton-card .traders_infobox .boxsec {
  width: 20%;
}

.skeleton-card .traders_infobox .boxsec .skeleton.skeleton-text {
  width: 100%;
}

.skeleton-card .signaldashboard_mainbox .boxsec .namebuy_box .datebox {
  width: 25%;
  justify-content: end;
  display: flex;
}

.livecryptoprices_mainsec .toptitlebox .titlesec {
  width: 50%;
}

.getpremium_signals .contntbox .skeleton.skeleton-title {
  width: 60%;
  margin: 0px auto;
  margin-bottom: 5px;
}

.getpremium_signals .contntbox .skeleton.skeleton-text {
  width: 50%;
  margin: 0px auto;
  margin-bottom: 5px;
}

.getpremium_signals .contntbox .btn_mainsec .skeleton.skeleton-small-text {
  width: 15%;
}

.skeleton-card .traders_infobox .boxsec .skeleton.skeleton-small-text {
  margin: 0px auto;
}

.skeleton-card .ourperformance_sec .titlebox .skeleton.skeleton-title {
  width: 35%;
  margin: 0px auto;
  margin-bottom: 5px;
}

.skeleton-card .ourperformance_sec .titlebox .skeleton.skeleton-text {
  width: 20%;
  margin: 0px auto;
}

.skeleton-card .livesignaldash_box {
  background-color: #4a546270;
}

.skeleton-card .signaldashboard_mainbox .boxsec {
  background-color: #ededed38;
  border: 1px solid #ededed38;
}

.skeleton-card .signaldashboard_mainbox .boxsec.bluebox {
  background-color: #ededed38;
  border: 1px solid #ededed38;
}

.skeleton-card .signaldashboard_mainbox .boxsec.redbox {
  background-color: #ededed38;
  border: 1px solid #ededed38;
}

.skeleton-card .coinlist_mainsec .toptitlebox .titlesec .skeleton.skeleton-title {
  width: 30%;
  margin: 0px auto;
  margin-bottom: 5px;
}

.skeleton-card .coinlist_mainsec .toptitlebox .titlesec .skeleton.skeleton-text {
  width: 50%;
  margin: 0px auto;
}

.skeleton-card .coininfo_boxsec .category_listbox ul li {
  position: relative;
  border-right: none;
  width: 6%;
}

.termsservice_mainsec .contntbox p a {
  color: rgb(203 213 225);
  text-decoration: underline !important;
}

.termsservice_mainsec .contntbox p a:hover {
  color: #16a34a;
}

.hideapp {
  display: none !important;
}

.showapp {
  display: block !important;
}

.market-spinner {
  position: relative;
  color: #16a34a;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 45px;
}

.market-spinner .ring { 
  animation: spin 1.1s linear infinite; opacity:.9; 
}

.market-spinner .icon {
  position: absolute;
  width: 55px;
  height: 55px;
}

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

.loader_mainbox {
  width: 100%;
  height: 100%;
  background-color: #1e293b;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.loader_mainbox .loader_mainsec {
  width: 215px;
  margin: 0px auto;
}

.text-loader {
  display: flex;
  gap: 4px;
  font-size: 2rem;
  font-weight: bold;
  color: #16a34a;
}

.text-loader span {
  opacity: 0.7;
  animation: fade 1.3s infinite;
}

.text-loader span:nth-child(1) { animation-delay: 0s; }
.text-loader span:nth-child(2) { animation-delay: 0.3s; }
.text-loader span:nth-child(3) { animation-delay: 0.4s; }
.text-loader span:nth-child(4) { animation-delay: 0.5s; }
.text-loader span:nth-child(5) { animation-delay: 0.6s; }
.text-loader span:nth-child(6) { animation-delay: 0.7s; }
.text-loader span:nth-child(7) { animation-delay: 0.8s; }
.text-loader span:nth-child(8) { animation-delay: 0.9s; }
.text-loader span:nth-child(9) { animation-delay: 0.10s; }
 
@keyframes fade {
  0%, 80%, 100% { opacity: 0.7; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-4px); }
}


/* ================= Responsive Css Start ================= */

@media only screen and (max-width: 767px) {
.header_mainsec .navbar .navbar-brand {
  width: 60%;
}

.header_mainsec .navbar .navbar-brand img {
  width: 170px;
}

.header_mainsec .navbar-toggler {
  padding: 0px;
  outline: none;
  box-shadow: none !important;
  position: relative;
  z-index: 9;
}

.header_mainsec .navbar-toggler .navbar-toggler-icon {
  filter: brightness(100);
}

.header_mainsec .navbar .navbar-collapse .navbar-nav {
  background-color: #303e55;
  border-radius: 0px 0px 10px 10px;
  padding: 10px;
}

.header_mainsec .navbar .navbar-nav .nav-item .nav-link {
  padding: 5px 15px;
}

.header_mainsec .navbar .navbar-collapse {
  position: absolute;
  top: 57px;
  left: 0px;
  z-index: 999;
  width: 100%;
}

.header_mainsec .rightbox {
  width: 100%;
  position: absolute;
  top: 9px;
  right: 20px;
  padding-right: 35px;
}

.home_bannersec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.home_bannersec .contntbox {
  padding-right: 0px;
}

.home_bannersec .contntbox .titlecontntbox {
  margin-top: 0px;
}

.home_bannersec .contntbox .titlecontntbox h1 {
  font-size: 40px;
  line-height: 50px;
}

.home_bannersec .contntbox .titlecontntbox .btn_mainsec .btn_style {
  margin-bottom: 10px;
  width: 100%;
  justify-content: center;
}

.traders_infobox {
  margin-top: 40px;
  gap: 30px;
  margin-bottom: 30px;
}

.traders_infobox .boxsec {
  width: 40%;
}

.livecryptoprices_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.livecryptoprices_mainsec .toptitlebox .titlesec {
  margin-bottom: 20px;
  width: 100%;
}

.news_mainsec.livecryptoprices_mainsec .toptitlebox .titlesec {
  margin-bottom: 20px;
}

.table_mainsec .table tbody tr td .coinnamebox {
  width: 200px;
}

.livetradingsignal_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.livetradingsignal_mainsec .toptitlebox {
  margin-bottom: 30px;
}

.signals_trading .signal_card .symbol_info {
  margin-bottom: 25px;
  gap: 15px;
}

.signals_trading .signal_card .footer {
  gap: 8px;
}

.livetradingsignal_mainsec .getpremium_signals {
  width: 100%;
  margin-top: 15px;
}

.feargreedindex_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.dominance_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.dominancechart_box .dominancechart {
  min-height: auto;
}

.dominance_innerbox .dominance_mainbox {
  margin-bottom: 20px;
}

.dominance_valuebox {
  gap: 16px;
}

.dominance_valuebox .values_box {
  width: 100%;
  min-height: auto;
}

.dominance_valuebox .values_box p {
  gap: 8px;
}

.marketprice_mainsec .marketprice_volume > .row .col-sm-12.col-md-6.col-lg-6.col-xl-6 {
  padding-left: 0px;
  padding-right: 0px;
}

.marketprice_mainsec .marketprice_volume > .row .col-sm-12.col-md-6.col-lg-6.col-xl-6:last-child {
  padding-right: 0px;
  padding-left: 0px;
}

.marketprice_mainsec .marketprice_volume > .row .col-sm-12.col-md-6.col-lg-6.col-xl-6:last-child .marketcap.coinbox {
  margin-bottom: 0px;
}

.marketprice_mainsec .marketcap.coinbox {
  margin-bottom: 20px;
}

.analysis_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.analysis_mainsec .contntsec {
  width: 100%;
}

.getpremium_signals {
  width: 100%;
  padding: 50px 25px;
}

.news_mainsec .articals_mainbox {
  min-height: auto;
}

.news_mainsec > .container > .row > .col-sm-12.col-md-6.col-lg-4.col-xl-4:last-child .articals_mainbox {
  margin-bottom: 0px;
}

.news_mainsec .articals_mainbox .articals_imgbox {
  width: 100%;
  height: auto;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info {
  gap: 10px;
}

.news_mainsec .col-sm-12.col-md-4.col-lg-4.col-xl-4:last-child .articals_mainbox {
  margin-bottom: 0px;
}

.whychoose_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.whychoose_mainsec .toptitlebox {
  margin-bottom: 30px;
}

.whychoose_mainsec .toptitlebox h2 {
  font-size: 30px;
  line-height: 37px;
}

.ourperformance_sec {
  margin-top: 15px;
}

.ourperformance_sec .traders_infobox {
  gap: 50px;
}

.footer_mainsec {
  padding-bottom: 15px;
}

.footer_mainsec .about_contnt {
  margin-bottom: 30px;
}

.footer_mainsec .menu_mainsec {
  padding-left: 0px;
  margin-bottom: 30px;
}

.footer_mainsec .row :last-child.col-sm-12.col-md-3.col-lg-3.col-xl-3 .menu_mainsec {
  margin-bottom: 0px;
}

.copyright_mainsec .copyright_sec {
  padding-top: 20px;
  padding-bottom: 10px;
}

.plans_mainsec .price_contnt {
  width: 100% !important;
}

.plans_mainsec .price_contnt ul {
  width: 100%;
  padding-left: 10px;
}

.coinlist_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.coininfo_boxsec .category_listbox ul li {
  width: 100%;
}

.coininfo_boxsec .category_listbox ul li a {
  display: block;
}

.news_mainsec .toptitlebox .titlesec {
  margin-bottom: 0px;
}

.news_mainsec .toptitlebox .view-toggle {
  width: 100%;
  display: none;
}

.news_mainsec .articals_mainsec .articals_mainbox {
  width: 100%;
}

.blog_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.articaldetails_mainsec {
  padding-top: 40px;
  padding-bottom: 40px;
}

.artical_sidebar {
  padding-left: 0px;
}

.artical_sidebar .latest_newsbox {
  margin-bottom: 0px;
}

.topnews_mainsec .topnewsbox {
  padding: 30px;
  width: 100%;
  min-height: 400px;
}

.topnews_mainsec {
  padding-bottom: 30px;
}

.topnews_mainsec .topnewsbox.center_bigbox {
  width: 100%;
}

.topnews_mainsec .topnewsbox .contntbox {
  width: 100%;
}

.marketprice_mainsec .marketcap.coinbox .price_graphbox .graphimg img {
  width: 100%;
  height: auto;
}

.markets-table-container .pagination-container {
  gap: 6px;
}

.relatedcoin_boxsec .relatedcoin_box {
  width: 100%;
}

.coinprice_sidebar {
  margin-bottom: 25px;
}

.searchbox .popup {
  right: -15px;
  width: 97%;
}

.contact_mainsec > .container > .row {
  flex-direction: column-reverse;
}

.contact_mainsec .contnt_box {
  padding-top: 0px;
  padding-left: 0px;
  padding-bottom: 25px;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox {
  margin-bottom: 20px;
}

.coindetails_mainsec .relatedcoin_mainsec {
  padding-top: 10px;
  padding-bottom: 20px;
}
}

@media only screen and (min-width: 320px) and (max-width: 359px)  {
.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox {
  width: 60%;
}
}

@media only screen and (min-width: 360px) and (max-width: 399px)  {
.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox {
  width: 68%;
}
}

@media only screen and (min-width: 410px) and (max-width: 450px)  {
.traders_infobox .boxsec {
  width: 27%;
}
}

@media only screen and (min-width: 768px) and (max-width: 1024px)  {
.header_mainsec .navbar .navbar-brand img {
  width: 210px;
}

.header_mainsec .navbar-toggler {
  padding: 0px;
  outline: none;
  box-shadow: none;
  position: absolute;
  right: 20px;
}

.header_mainsec .navbar-toggler .navbar-toggler-icon {
  filter: brightness(100);
}

.header_mainsec .navbar .navbar-collapse .navbar-nav {
  background-color: #303e55;
  border-radius: 6px;
  padding: 10px;
}

.header_mainsec .navbar .navbar-nav .nav-item .nav-link {
  padding: 5px 15px;
}

.header_mainsec .navbar .navbar-collapse {
  position: absolute;
  top: 50px;
  left: 0px;
  z-index: 999;
  width: 100%;
}

.header_mainsec .rightbox {
  width: 50%;
  padding-right: 40px;
}

.home_bannersec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.home_bannersec > .container > .row {
  align-items: start;
}

.home_bannersec .contntbox {
  padding-right: 0px;
}

.home_bannersec .contntbox .titlecontntbox h1 {
  font-size: 36px;
  line-height: 46px;
}

.home_bannersec .contntbox .titlecontntbox .btn_mainsec .btn_style {
  margin-bottom: 10px;
  width: 100%;
  justify-content: center;
}

.traders_infobox {
  margin-top: 30px;
  gap: 30px;
}

.livecryptoprices_mainsec .toptitlebox .titlesec h2 {
  font-size: 36px;
  line-height: 46px;
}

.table_mainsec .table tbody tr td .coinnamebox {
  width: 200px;
}

.livetradingsignal_mainsec .toptitlebox h2 {
  font-size: 36px;
  line-height: 46px;
}

.signals_trading .signal_card .footer {
  gap: 10px;
}

.news_mainsec .articals_mainbox {
  min-height: 420px;
}

.news_mainsec .articals_mainsec .articals_mainbox {
  width: 48.3%;
}

.news_mainsec .articals_mainbox .articals_imgbox {
  width: 100%;
  height: 200px;
}

.news_mainsec .articals_mainbox .articals_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whychoose_mainsec .toptitlebox h2 {
  font-size: 36px;
  line-height: 46px;
}

.whychoose_contntbox {
  min-height: 270px;
}

.ourperformance_sec .traders_infobox {
  gap: 70px;
}

.livetradingsignal_mainsec .getpremium_signals {
  width: 70%;
}

.footer_mainsec .about_contnt .logobox img {
  width: 180px;
  height: auto;
}

.social_media ul li a {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.artical_contnt .article_description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dominancechart_box .dominancechart {
  width: 100%;
  min-height: auto;
}

.dominance_valuebox {
  gap: 16px;
}

.dominance_valuebox .values_box {
  width: 100%;
  min-height: auto;
}

.marketprice_mainsec .marketcap.coinbox .price_graphbox .graphimg img {
  width: 100%;
  height: auto;
}

.marketprice_mainsec .coinbox .coinname {
  width: 50%;
}

.marketprice_mainsec .coinbox ul li .pricebox {
  width: 46%;
}

.coinbox .pricebox h2 {
  gap: 0px;
  justify-content: end;
}

.marketprice_mainsec .marketcap.coinbox .pricebox h2 {
  font-size: 16px;
  justify-content: start;
}

.getpremium_signals {
  width: 100%;
  padding: 50px 25px;
}

.analysis_mainsec .contntsec {
  width: 100%;
}

.coininfo_boxsec .category_listbox ul {
  row-gap: 5px;
}

.artical_sidebar {
  padding-left: 10px;
  margin-top: 5px;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_imgbox {
  width: 100%;
  height: 100px;
}

.artical_sidebar .latest_newsbox .articals_mainbox .articals_contntbox {
  width: 100%;
  padding-left: 0px;
  padding-top: 8px;
}

.topnews_mainsec .topnewsbox {
  padding: 25px;
  width: 33.33%;
}

.topnews_mainsec .topnewsbox.center_bigbox {
  width: 33.33%;
}

.topnews_mainsec .topnewsbox .contntbox h2 {
  font-size: 20px;
  line-height: 28px;
}

.topnews_mainsec .topnewsbox .contntbox p {
  font-size: 15px;
  line-height: 24px;
}

.tabbtn_mainsec ul li a {
  font-size: 13px;
  line-height: 23px;
  padding: 8px 10px;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox {
  margin-bottom: 20px;
}

.plans_mainsec .price_contnt {
  width: 85% !important;
}

.plans_mainsec .price_contnt ul {
  width: 100%;
}

.relatedcoin_boxsec .relatedcoin_box {
  width: 31.9%;
}

.coindetails_mainsec .articals_mainbox .articals_imgbox {
  height: 210px;
}

.coindetails_mainsec .pageinfo_mainsec .articals_mainsec .articals_mainbox .artical_info .datetimebox .datetime .datetxt {
  font-size: 12px;
}

.social_media ul li a {
  width: 32px;
  height: 32px;
  font-size: 16px;
}
}

@media only screen and (min-width: 1024px) and (max-width: 1250px) {
.header_mainsec .navbar .navbar-collapse .navbar-nav {
  background-color: transparent;
  border-radius: 0px;
  padding: 0px;
}

.header_mainsec .navbar .navbar-collapse {
  position: static;
  top: 50px;
  left: 0px;
  z-index: 999;
  width: auto;
}

.header_mainsec .rightbox {
  width: 15%;
  padding-right: 0px;
}

.traders_infobox {
  margin-top: 40px;
  gap: 70px;
}

.marketprice_mainsec .marketcap.coinbox {
  min-height: 275px;
}

.news_mainsec .articals_mainbox {
  min-height: 440px;
}

.news_mainsec .articals_mainbox .articals_contntbox .artical_info {
  gap: 6px;
}

.ourperformance_sec .traders_infobox {
  gap: 125px;
}

.coininfo_boxsec .category_listbox ul li a {
  font-size: 14px;
  padding: 10px 15px;
}

.news_mainsec .articals_mainsec .articals_mainbox {
  width: 31.63%;
}
}

@media only screen and (min-width: 1600px) and (max-width: 2500px)  {
.container {
  max-width: 1500px !important;
  padding: 0px 20px !important;
}
  
.news_mainsec .articals_mainbox {
  min-height: 520px;
}

.whychoose_contntbox {
  min-height: 220px;
}

.marketprice_mainsec .coinbox {
  min-height: 290px;
}

.blog_mainsec .articals_mainbox {
  min-height: 460px;
}

.relatedcoin_mainsec .relatedcoin_boxsec {
  row-gap: 18px;
  column-gap: 18px;
}
}

/* ================= Responsive Css End ================= */
























