@import url('https://fonts.googleapis.com/css2?family=Abel&family=Arsenal+SC:ital,wght@0,400;0,700;1,400;1,700&display=swap');


/*==Font-setup==*/
*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Abel", sans-serif;
    font-size: 16px;
    color: #000;
    background: #FFF4E2;
}

a,
a:hover {
  text-decoration: none;
  transition: 0.2s all ease;
}

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

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

/*==Basic-setup==*/
.scrolltotop {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #FF8500;
  text-align: center;
  position: fixed;
  right: 20px;
  bottom: 5px;
  transition: 0.2s all ease;
}

.scrolltotop:hover {
  background: #AAD961;
}

.scrolltotop i {
  color: #ffff;
  font-size: 20px;
}

.container {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

/*==container-setup==*/
.topbar-main {
  display: grid;
  grid-template-columns: 60% auto;
  align-items: center;
  background: rgb(250, 238, 188);
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 10px 8px;
  margin-top: 7px;
}

.topbar-left ul {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.topbar-left ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.topbar-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 5px;
}

.topbar-right ul li {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.topbar-right ul li:nth-of-type(2) {
  width: 58px;
}


.topbar-right ul li img {
  width: 16px;
  display: block;
}

.main-logo {
  display: grid;
  grid-template-columns: 45% auto;
  align-items: center;
  margin: 8px 0 16px 0;
}

.main-logo-left img {
  max-width: 252px;
}

.main-logo-right {
  text-align: center;
  background: #E2FFFF;
  border-radius: 5px;
  border: 1px solid #000000;
}

.main-logo-right h2 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 35px;
  color: #000000;
  padding: 22px;
}

/*=header-section==*/
.header-area {
  width: 100%;
  z-index: 10000;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: goDown 0.6s ease-in-out forwards;
  background: rgb(250, 238, 188);
  padding: 15px 0;
}

@keyframes goDown {
  0%{
    top: -60px;
  }
  100% {
    transform: translateY(0);
  }
}

.header-main {
  display: grid;
  grid-template-columns: 62% 19% auto;
  align-items: center;
  background: #C8FFDD;
  border-radius: 5px;
  border-top: 1px solid #000000;
  border-left: 3px solid #000000;
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  padding: 0 12px;
}

.main-menu nav ul {
   display: flex;
   align-items: center;
}

.main-menu nav ul li {
   position: relative;
}

.main-menu nav ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  padding: 17px 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 3px;
}

.main-menu nav i {
  padding-left: 3px;
  font-size: 16px;
}

.main-menu nav ul li ul {
   display: none;
   position: absolute;
   top: 100%;
   left: 0;
   background-color: #E2FFFF;
   min-width: 240px;
   flex-direction: column;
   z-index: 1000;
   border: 1px solid #13D1AB;
   border-radius:0 0 5px 5px;
   border-top: 3px solid #13D1AB;
   margin-right: 5px;
   align-items: initial;
}

.main-menu nav ul li:hover>ul {
   display: flex;
}

/* nested dropdown */
.main-menu nav ul li ul li ul {
   top: 4px;
   left: 100%;
   border-radius: 5px;
   border-top: 1px solid #13D1AB;
   margin-right: 0;
   align-items: initial;
}

.main-menu nav ul li ul li a {
   font-family: "Abel", sans-serif;
   font-weight: 400;
   font-size: 17px;
   color: #000000;
   padding: 5px 18px 5px 6px;
   border-top: 0.25px solid #13D1AB !important;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.main-menu nav ul li ul li:first-child  a {
  border-top: 0;
}

.main-menu nav ul li ul li:hover>ul {
   display: flex;
}

.menu-btn {
  width: 30px;
  cursor: pointer;
  margin-left: auto;
  display: none;
}

.menu-btn span {
  height: 3px;
  background: red;
  margin-top: 4px;
  display: block;
}

.mobil-brand img {
  max-width: 100px;
}

.sidebar-menu {
  position: fixed;
  top: 66px;
  left: -260px;
  max-width: 260px;
  width: 100%;
  background: #E2FFFF;
  border-radius: 5px;
  border: 1px solid #000000;
  overflow-y: auto;
  transition: left 0.4s ease;
  z-index: 10000;
  display: none;
}

.sidebar-menu.active {
  left: 5px;
}

.menu-header {
  padding: 6px 6px 13px 6px;
}

.close-icon {
 display: block;
 text-align: right;
 cursor: pointer;
}

.close-icon img {
  width: 18px;
  height: 18px;
}

.menu-wrap {
  margin-top: 21px;
}

.menu-item a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  display: block;
  cursor: pointer;
  padding: 5px 7px;
  border-top: 0.25px solid #000000;
}

.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #FFF6FC;
}

.dropdown {
    display: inline-block;
    transition: transform 0.3s ease;
    transform: rotate(-90deg); 
}

.dropdown.rotate {
    transform: rotate(0deg); 
}

.mobil-login-btn {
  max-width: 207px;
  margin: auto;
}

.mobil-login-btn ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  column-gap: 9px;
}

.mobil-login-btn ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #000000;
  background: linear-gradient(to right,#F8DA62,#C8FFDD);
  padding: 6px 0;
  column-gap: 2px;

}

.mobil-login-btn ul li a img {
  display: block;
  max-width: 24px;
}

.mobil-login-btn ul li a:hover {
  opacity: 0.8;
}

.header-desk-btn ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 9px;
}

.header-desk-btn ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #000000;
  background: linear-gradient(to right,#F8DA62,#C8FFDD);
  padding: 6px 4px;
  column-gap: 2px;
  width: 116px;
}


.header-desk-btn  ul li a img {
  display: block;
  max-width: 24px;
}

.header-desk-btn  ul li a:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.mobil-logo {
  display: none;
}

.mobil-logo img {
  max-width: 170px;
}

.header-left {
  text-align: center;
  position: relative;
}

.search-box {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -67px;
  z-index: 1100;
}

.search-box.active {
  display: block;
}

.search-icon {
  cursor: pointer;
  font-size: 24px;
  color: #333;
}

.search-wrap {
   border: 1px solid #000000;
  background: #E2FFFF;
  border-radius: 5px;
}

.search-box input {
  font-family: "Abel", sans-serif;
  font-size: 16px;
  color: #000000;
  width: 100%;
  outline: none;
  padding: 12px 30px 12px 4px;
  background: none;
  border: none;
} 

.search-box input::placeholder {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.search-wrap {
  position: relative;
}

.search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  background: none;
}

.mobil-searchbar input {
  width: 100%;
  outline: none;
  padding: 9px 28px 9px 4px;
  background: none;
  border: none;
  background: #E2FFFF;
  border: 0.25px solid #000000;
  border-radius: 3px;
}

.mobil-searchbar input::placeholder {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.search-submit button {
  background: none;
  border: none;
  cursor: pointer;
}

.mobil-searchbar {
  display: none;
}

/*==hero-section==*/
.hero-main {
  display: grid;
  grid-template-columns: 61% auto;
  column-gap: 9px;
  margin-top: 27px;
}

.main-content1 {
    position: relative;
}

.main-content1 .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

.main-content1 .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  margin: 10px 7px;
  background: transparent;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  border: 2px solid  #5B2B81!important;
  display: none;
}

.main-content1 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: red;
}

.main-content1 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content1 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content1 .owl-theme .custom-nav {
    position: absolute;
    top: 85%;
    left: 18px;
    right: 18px;
    margin: 0;
}
.main-content1 .owl-theme .custom-nav .owl-prev, .main-content1 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
    margin: 17px 0px 0 17px;
    padding: 0;
}

.main-content1 .owl-theme .custom-nav .owl-prev img, .main-content1 .owl-theme .custom-nav .owl-next img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: 0.2s all ease;
}

.main-content1 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content1 .owl-theme .custom-nav .owl-prev img:hover {
    box-shadow: 2px 0px 0px 0px #000
}

.main-content1 .owl-theme .custom-nav .owl-next img:hover {
    box-shadow: -2px 0 0 0 #000;
}

.main-content1 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.slider-item {
  border: 1px solid #000000;
  border-radius: 10px;
}

.slider-item img {
  border-radius: 10px;
  border: 1px solid #000;
}

.slider-item {
  position: relative;
}

.sldier-cnt-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 23px 66px 23px;
}

.slider-inner {
  margin-top: auto;
}

.slider-btn a {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  background: #C8FFDD;
  border-radius: 35px;
  padding: 4px 27px;
  display: inline-block;
  border: 1px solid #000000;
  border-bottom-width: 3px;
  border-right-width: 3px;
  text-transform: uppercase;
}

.sldier-cnt-wrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF4E2;
  border: 1px solid #000000;
  border-radius: 5px;
  column-gap: 3px;
  padding: 4px 1px;
  max-width: 362px;
  margin: auto;
  margin-top: 10px;
}

.sldier-cnt-wrap ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
}

.sldier-cnt-wrap ul li img {
  width: 28px !important;
  height: 28px;
  border-radius: 50%;
  display: block;
  border: 1px solid #000;
}

.sldier-cnt-wrap h2 {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}

.sldier-cnt-wrap h2 a {
  border: 1px solid #000000;
  border-radius: 35px;
  background: rgb(250, 238, 188);
  padding: 5px 10px;
  display: block;
  max-width: 558px;
  margin: auto;
  text-align: center;
  color: #000000;
}

.sldier-cnt-wrap h2 a:hover {
  box-shadow: 3px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
  color: #FA5454;
}

.hero-item-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 8px;
  row-gap: 10px;
}

.hero-item {
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 7px;
  transition: 0.2s all ease;
}

.hero-item:hover {
  box-shadow: 5px 5px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.hero-img {
  position: relative;
}

.bincoin-btn {
  position: absolute;
  left: 5px;
  bottom: 11px;
}

.bincoin-btn a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  border-radius: 25px;
  border: 1px solid #000000;
  text-transform: uppercase;
  background: rgb(250, 238, 188);
  padding: 4px 23px;
  border-bottom-width: 3px;
  border-right-width: 3px;
  display: inline-block;
}

.hero-img img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #000000;
}

.hero-cnt {
  padding-right: 12px;
}

.hero-cnt h2 {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-top: 6px;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  position: relative;
}

.hero-cnt h2 a {
  color: #000000;
}

.hero-cnt h2 a:hover {
  color: #FA5454;
}

.hero-cnt ul {
  display: flex;
  align-items: center;
  column-gap: 3px;
  margin-top: 12px;
}

.hero-cnt ul li img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: block;
  border: 1px solid #000;
}

.hero-cnt ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #000000;
  text-transform: uppercase;
}

.details-btn a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  display: flex;
  align-items: center;
  column-gap: 6px;
  justify-content: flex-end;
 
  width: 113px;
}

.details-btn a:hover {
  color: #FA5454;
}

.details-btn1 {
   margin-top: 10px;
}

.details-btn1 a {
  margin-left: auto;
}

.details-btn a img {
  max-width: 20px;
  display: block;
}

.details-btn a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
  box-shadow: 2px 0px 0px 0px #000;
  transition: 0.2s all ease;
}

.details-btn a:hover span {
  box-shadow: -2px 0 0 0 #000;
  transform: rotate(29deg);
}

/* braking-news */
.breaking-news {
  display: grid;
  grid-template-columns: 60% auto;
  align-items: center;
  background: rgb(250, 238, 188);
  border-radius: 5px;
  padding: 5px 6px;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid #000000;  
}

.brak-inner {
  display: flex;
  align-items: center;
  column-gap: 7px;
}

.breaking-label {
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: #d4f8d4;
  border: 1px solid #000000;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 13px;
}

.breaking-text {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #000000;
}

.breaking-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  align-items: center;
}

.breaking-buttons button {
  background: none;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.breaking-buttons button img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: 0.2s all ease;
}

.img-prev1 img:hover {
  box-shadow: 3px 1px 0px 0px #000
}

.img-prev2 img:hover {
  box-shadow: -2px 0 0 0 #000;
}

/*==latest-section==*/
.latest-area {
  padding-bottom: 21px;
}

.latest-main {
  display: grid;
  grid-template-columns: 71.5% auto;
  margin-top: 20px;
  column-gap: 21px;
}

.latest-toper {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  column-gap: 35px;
}

.latest-toper span {
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: #d4f8d4;
  border: 1px solid #000000;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 13px;
  position: relative;
  z-index: 2;

}

.latest-toper-left {
  position: relative;
}

.latest-toper-left::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #000000;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.latest-toper-right h2 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #000000;
  text-transform: uppercase;
  background: #E2FFFF;
  border-radius: 5px;
  border: 1px solid #000000;
  text-align: center;
  padding: 11px;
}

.latest-box-wrap {
  display: grid;
  grid-template-columns: 31% auto;
  align-items: center;
  column-gap: 36px;
  background: #C8FFDD;
  border-radius: 10px;
  border: 1px solid #000000;
  padding: 20px 22px 20px 17px;
  margin-top: 16px;
  transition: 0.2s all ease;
}

.latest-box-wrap:hover {
  box-shadow: 5px 5px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.latest-box-img img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #000000;
}

.latest-box-cnt h3 {
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  text-transform: uppercase;
  margin-top: 19px;
}

.latest-box-cnt h3 a {
  color: #000000;
  transition: 0.2s all ease;
}

.latest-box-cnt h3 a:hover {
  color: #FA5454;
}

.latest-box-cnt p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #000000;
  margin-top: 19px;
}

.profile-item1 {
  margin-top: 32px;
}

.profile-item ul {
  display: flex;
  align-items: center;
  column-gap: 3px;
}

.profile-item ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
}

.profile-item ul li img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: block;
  border: 1px solid #000000;
}

.details-btn2 {
  max-width: 491px;
  margin-top: 40px;
}

.bincoin-btn20 a {
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: rgb(250, 238, 188);
  padding: 6px 10px;
  border: 1px solid #000000;
  border-radius: 35px;
  display: inline-block;
  transition: 0.2s all ease;
}

.bincoin-btn20 a:hover {
  box-shadow: 3px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.advertise-box a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 35px;
  color: #000000;
  text-transform: uppercase;
  background: #E2FFFF;
  border-radius: 5px;
  border: 1px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 280px;
}

.details-btn2 a {
  margin-left: auto;
}

.popular-title {
  text-align: center;
  background: rgb(250, 238, 188);
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 11px;
  margin-top: 14px;
}

.popular-title h4 {
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  text-transform: uppercase;
}

.popular-news-box {
  background: #C8FFDD;
  border-radius: 5px;
  border: 1px solid #000000;
  padding: 6px;
  margin-top: 19px;
}

.popular-news-item {
  display: grid;
  grid-template-columns: 35% auto;
  column-gap: 7px;
  align-items: center;
  border-bottom: 1px solid #000000;
  padding: 6px 0;
}

.popular-news-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.popular-news-item:first-child {
  padding-top: 0;
}

.popular-news-colmn1 img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #000;
}

.popular-news-colmn2 h2 {
  font-weight: 700;
  font-size: 15px;
}

.popular-news-colmn2 h2 a {
   color: #000000;
   transition: 0.2s all ease;
}

.popular-news-colmn2 h2 a:hover {
  color: #FA5454;
}

.profile-item2 {
  margin-top: 13px;
}

.profile-item2 ul li {
  font-size: 10px;
}

.follow-box {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  background: #C8FFDD;
  border-radius: 5px;
  border: 1px solid #000000;
  column-gap: 14px;
  padding: 8px 11px;
  margin-top: 19px;
  row-gap: 7px;
}

.follow-item a {
  background: #CDFCFC;
  display: block;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 3px;
  transition: 0.2s all ease;
}

.follow-item a:hover {
  opacity: 0.7;
}

.follow-item2 a {
  background: #CDFCFC;
}

.follow-item ul {
  display: flex;
  align-items: center;
  column-gap: 3px;
}

.follow-item ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.follow-item ul li img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
}

.recommended-box {
  background: #C8FFDD;
  border-radius: 5px;
  border: 1px solid #000000;
  padding: 11px;
  margin-top: 19px;
}

.sldier-cnt-wrap2 {
  padding: 14px 9px 31px 9px;
}

.recomm-img img {
  width: 100%;
  border: none;
  vertical-align: bottom;
  border: 1px solid #000;
}

.sldier-cnt-wrap2 h2 a {
  font-size: 17px;
  text-align: left;
  border-radius: 5px;
}

.sldier-cnt-wrap2 ul li {
  font-size: 14px;
}

.slider-item20 {
  margin-bottom: 10px;
}

.tags-box {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 7px;
  margin-top: 19px;
  column-gap: 6px;
  row-gap: 5px;
}

.tags-item a {
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  text-transform: uppercase;
  display: block;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 5px;
  background: #CDFCFC;
  padding: 5px;
}

.tags-item a:hover {
  background: #FDE1F4;
}

.votting-box {
  background: #C8FFDD;
  padding: 9px 11px 25px 11px;
  border-radius: 5px;
  border: 1px solid #000000;
  margin-top: 19px;
}

.subway-item {
  border-bottom: 1px solid #000000;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.votting-title h2 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  background: #E2FFFF;
  border-radius: 5px;
  border: 1px solid #000000;
  text-align: center;
  padding: 5px;
}

.votting-btn-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-top: 13px;
}

.votting-btn-wrap ul li:nth-of-type(1) a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: #52FFCE;
  border: 1px solid #000000;
  border-radius: 5px;
  display: inline-block;
  padding: 4px 12px;
  text-transform: uppercase;
}

.votting-btn-wrap ul li:nth-of-type(2) a {
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.votting-raio-item {
  max-width: 90px;
  margin: auto;
  margin-top: 11px;
}

.votting-raio-item label {
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  text-transform: uppercase;
}

.votting-radio [type="radio"]:checked,
.votting-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.votting-radio [type="radio"]:checked+.inner,
.votting-radio [type="radio"]:not(:checked)+.inner {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}

.votting-radio [type="radio"]:checked+.inner::before,
.votting-radio [type="radio"]:not(:checked)+.inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}


.votting-radio [type="radio"]:checked+.inner::after,
.votting-radio [type="radio"]:not(:checked)+.inner::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #000000;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.votting-radio [type="radio"]:not(:checked)+.inner::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.votting-radio [type="radio"]:checked+.inner::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.advertise-box2 {
  margin-top: 19px;
}

.persel-box {
  margin-top: 11px;
  background: #C8FFDD;
  border-radius: 5px;
  border: 1px solid #000000;
  padding: 8px 10px;
}

.persel-item-wrap {
  display: grid;
  grid-template-columns: 70% auto;
  align-items: center;
  border-bottom: 1px solid #000000;
  padding: 7px 0;
  justify-content: space-between;
}

.persel-item-wrap:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.persel-item-left ul {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.persel-item-left ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
}

.persel-item-left ul li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  /*! border: 1px solid #000; */
}

.persel-item-right a {
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: #FFF4C8;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 5px 24px;
  display: inline-block;
}

.persel-item-right a:hover {
  box-shadow: 3px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.load-btn {
  text-align: center;
  margin-top: 21px;
  max-width: 210px;
  margin: auto;
  margin-top: 21px;
}

.load-btn img {
  display: block;
  width: 16px;
}

.load-btn a {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 35px;
  padding: 12px;
}

.load-btn a:hover {
  box-shadow: 3px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.subscribe-main {
  background: #C8FFDD;
  border-radius: 5px;
  border: 1px solid #000000;
  padding: 20px 15px;
}

.subscribe-main h2 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #000000;
  text-align: center;
}

.subscribe-main p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  text-align: center;
}

.subscribe-gmail {
  max-width: 595px;
  margin: auto;
  margin-top: 30px;
  transition: 0.2s all ease;
}

.subscribe-gmail:hover {
  box-shadow: 5px 3px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.subscribe-gmail {
  display: grid;
  grid-template-columns: auto 163px;
  border: 1px solid #000000;
  border-radius: 5px;
}

.subscribe-left input {
  font-family: "Abel", sans-serif;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  padding: 14px 10px;
  border-radius: 5px 0 0 5px;
}

.subscribe-left input::placeholder {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
}

.subscribe-right button {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  width: 100%;
  border: none;
  background: rgb(250, 238, 188);
  height: 100%;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  border-left: 1px solid #000000;
}

.subscribe-right button img {
  padding-left: 6px;
}

.footer-area {
  padding-bottom: 15px;
}

.footer-advertise-wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 50px;
  margin-top: 18px;
}

.footer-advertise a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #000000;
  display: block;
  text-align: center;
  background: #E2FFFF;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 27px 15px;
}

.footer-advertise-wrap2 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 12px;
  margin-top: 13px;
}

.footer-advertise2 a {
  padding: 11px 15px;
}

.footer-btm-wrapper {
  background: rgb(250, 238, 188);
  border: 1px solid #000000;
  margin-top: 16px;
  border-radius: 5px;
}

.footer-btm-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  padding: 10px 18px 10px 0;
}

.foter-btm-left {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
}

.footer-inner10 ul {
  display: flex;
  align-items: center;
  column-gap: 12px;
  justify-content: flex-end;
}

.footer-inner10 ul li img {
  max-width: 168px;
  transition: 0.2s all ease;
}

.footer-inner10 ul li img:hover {
  opacity: 0.7;
}

.foter-btm-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 5px;
}

.foter-btm-right ul li a {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.footer-logo img {
  max-width: 186px;
}

.copyright-main {
  background: #C8FFDD;
  border-top: 1px solid #000000;
  border-radius: 0 0 5px 5px;
  padding: 5px;
}

.copyright-main p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  text-align: center;
}

/*==catagory-page-start==*/

.catagory-top-btn {
  max-width: 394px;
  margin: auto;
  margin-top: 16px;
}

.catagory-top-btn a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  text-transform: uppercase;
  display: block;
  background: #53FFCE;
  border-radius: 25px;
  text-align: center;
  border: 1px solid #000000;
  border-bottom-width: 3px;
  border-right-width: 3px;
  padding: 8px;
}

.latest-box-wrap20 {
  margin-top: 0;
}

.pagination-main ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 8px;
  margin-top: 32px;
}

.pagination-main ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #000000;
  background: #52FFCE;
  border: 1px solid #000000;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 35px;
}

.pagination-main ul li a:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

/*==artical-details==*/
.printer-main {
  border: 1px solid #000000;
  border-radius: 5px;
  background: #C8FFDD;
  padding: 11px 10px 21px 10px;
}

.printer-item1 h2 a {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  background: #C8FFDD;
  border-radius: 5px;
  padding: 9px;
  border: 1px solid #000000;
  text-align: center;
  display: block;
}

.printer-item1 h2 a:hover {
  color: #FA5454;
}

.printer-item1 p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 11px;
}

.profile-item3 {
  margin-top: 28px;
}

.printer-item1-social ul {
  display: flex;
  align-items: center;
  margin-top: 23px;
  column-gap: 10px;
}

.printer-item1-social ul li a {
  background: #FFF4C8;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  padding: 7.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  transition: 0.2s all ease;
}

.printer-item1-social ul li a:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.printer-main-img img {
  width: 100%;
  border-radius: 5px;
  margin-top: 17px;
  border: 1px solid #000;
}

.printer-advertise {
  max-width: 728px;
  margin: auto;
}

.printer-advertise a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 35px;
  color: #000000;
  text-transform: uppercase;
  background: #E2FFFF;
  border: 1px solid #000000;
  border-radius: 5px;
  display: block;
  text-align: center;
  padding: 22px;
  margin-top: 17px;
}

.printer-main p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 18px;
}

.printer-main  h4 {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin-top: 15px;
}

.printer-item3-inner {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
  margin-top: 10px;
}

.printer-item3-inner img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #000;
}

.blockqute-main {
  background: #C8FFDD;
  border-radius: 5px;
  border: 1px solid #FA5454;
  border-left-width: 5px;
  padding: 20px 18px;
  margin-top: 8px;
}

.blockqute-main p {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-top: 10px;
}

.blockqute-main ul {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-top: 10px;
}

.blockqute-main ul li {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}

.blockqute-main ul li span {
  display: block;
  width: 66px;
  height: 2px;
  background: #000000;
}

.artical-tag-main ul {
  display: flex;
  align-items: center;
  column-gap: 3px;
  margin-top: 19px;
}

.artical-tag-main ul li a {
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  background: #FFF4C8;
  border-radius: 5px;
  border: 1px solid #000000;
  display: inline-block;
  padding: 5px 6px;
  text-transform: uppercase;
}

.artical-tag-main ul li a:hover {
  background: #C8FFDD;
}

.artical-tag-main ul li:nth-of-type(1) {
  font-family: "Abel", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-right: 3px;
}

.next-previous-artical ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 21px;
}

.next-previous-artical ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.next-previous-artical ul li a:hover {
  color: #FA5454;
}

.next-previous-artical ul li a img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.2s all ease;
}

.next-previous-artical ul li a:hover img {
  box-shadow: -2px 0 0 0 #000;
}

.next-previous-artical ul li:nth-of-type(1) a:hover img {
  box-shadow: 2px 2px 0px 0px #000;
}

.reaction-main {
  margin-top: 42px;
}

.reaction-btn {
  max-width: 316px;
  margin: auto;
  text-align: center;
}

.reaction-btn a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  border-radius: 25px;
  border: 1px solid #000000;
  background: #C8FFDD;
  display: block;
  padding: 8px;
  text-transform: uppercase;
  border-bottom-width: 3px;
  border-right-width: 3px;
}

.reaction-main ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  column-gap: 30px;
}

.reaction-main ul li {
  position: relative;
}

.reaction-main ul li img {
  max-width: 44px;
}

.reaction-main ul li span {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -7px;
  right: -20px;
  background: #564C4C;
  border-radius: 35px;
  height: 22px;
  width: 33px;
  text-align: center;
}

.printer-advertise2 a {
  margin-top: 24px;
}

.alex-item-main {
  background: #FFF4C8;
  border-radius: 5px;
  border: 1px solid #000000;
  margin-top: 86px;
  text-align: center;
  padding: 18px 50px;
}

.alex-item-main h4 {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  margin-top: 5px;
}

.alex-item-main p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 2px;
}

.alex-social ul {
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
  margin-top: 19px;
}

.alex-social ul li a {
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.alex-social ul li a:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.alex-img {
  position: relative;
  margin-top: -87px;
}

.alex-img img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  border: 1px solid #000;
}

.comment-item-wrap {
  margin-top: 24px;
}

.comment-box textarea {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  width: 100%;
  outline: none;
  border: 1px solid #000000;
  border-radius: 5px;
  background: #FFF4FB;
  padding: 10px 6px;
  margin-top: 15px;
}

.comment-box textarea::placeholder {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.comment-badge {
  font-family: "Abel", sans-serif;
  background: #C8FFDD;
  border: 1px solid #000000;
  max-width: 150px;
  border-radius: 5px;
  padding: 5px;
  text-transform: uppercase;
}

.comment-submit button {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 15px;
  padding: 7px 29px;
  border-radius: 2px;
  border: 1px solid #000000;
  background: #FA5454;
  margin-top: 22px;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.2s all ease;
}

.comment-submit button:hover {
  box-shadow: 3px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.comment-badge2 {
  background: #FDE1F4;
  border-bottom-width: 3px;
  border-right-width: 3px;
}

.comment-badge3 {
  background: #FFF4C8;
  text-align: center;
}

.total-commetn-wrap {
  margin-top: 20px;
}

.total-comment-box {
  display: grid;
  grid-template-columns: 49px auto;
  column-gap: 5px;
  background: #FFF4C8;
  padding: 12px 10px 17px 10px;
  margin-top: 14px;
  border: 1px solid #000000;
  border-radius: 5px;
}

.total-comment-box2 {
  padding: 0;
  border: 0;
  background: none;
}

.total-profil {
  background: #C8FFDD;
  width: 49px;
  height: 42px;
  border-radius: 5px;
  border: 1px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.total-profil img {
  max-width: 35px;
}

.user-comment {
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 10px 7px;
  margin-top: 10px;
}

.user-comment p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
}

.react-main ul {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-top: 11px;
}

.react-main ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  display: flex;
  align-items: center;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 4px 5px;
  text-align: center;
  width: 99px;
  justify-content: center;
}

.react-main ul li a:hover {
  opacity: 0.8;
}

.react-main ul li a img {
  display: block;
  margin-right: 3px;
}

.react-main ul li:nth-of-type(1) a {
  width: 150px;
}

.related-post-wrap {
  margin-top: 24px;
}

.related-post-flex {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 18px;
  column-gap: 18px;
  row-gap: 18px;
}

/*==ragister-main==*/
.ragister-area {
  padding-bottom: 61px;
}

.ragister-main {
  max-width: 450px;
  width: 100%;
  margin: auto;
}

.ragister-main-box {
  background: #C8F4F0;
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 13px 17px;
  margin-top: 17px;
}

.ragister-top {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 5px;
}

.ragister-top-item ul {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.ragister-top-item a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  display: block;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 5px 4px;
  background: #DBD7FF;
}

.ragister-top-item a img {
  width: 30px;
  display: block;
}

.ragister-top-item2 a {
  background: #FAFFD3;
}

.ragister-inner-item {
  max-width: 205px;
  margin: auto;
  margin-top: 6px;
}

.ragister-top-item3 a {
  background: #E2FFFF;
}

.ragister-or {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  background: #FFF4C8;
  border: 1px solid #000000;
  text-align: center;
  border-radius: 5px;
  padding: 4px;
  margin-top: 15px;
}

.ragister-input-main {
  margin-top: 16px;
}

.ragister-input-wrap {
  display: grid;
  grid-template-columns: 45px auto;
  border: 1px solid #000000;
  border-radius: 5px;
  background: #C8FFDD;
  margin-top: 8px;
}

.ragister-input-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #52FFCE;
  border-radius: 5px 0 0 5px;
}

.ragister-input-right input {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  padding: 11px 10px;
  background: none;
}

.ragister-input-right input::placeholder {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.ragister-btm-wrap {
  background: #52FFCE;
  border: 1px solid #000000;
  padding: 5px;
  border-radius: 5px;
  margin-top: 11px;
}

.ragister-btm-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.ragister-btm-wrap ul li:nth-of-type(1) a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.ragister-btm-wrap ul li:nth-of-type(2) a {
  font-family: "Abel", sans-serif;
  padding: 4px 22px;
  display: inline-block;
  color: #000000;
  background: #FDE1F4;
  border: 1px solid #000000;
  border-radius: 5px;
}

.ragister-btm-wrap ul li:nth-of-type(2) a:hover {
  background: #FF7373;
}

.submit-ragister-main {
  margin-top: 20px;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  column-gap: 8px;
  justify-content: center;
}

.submit-checkbox input[type=checkbox] {
    appearance: none;
    height: 20px;
    width: 20px;
    background: #FFF4C8;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000000;
}

.submit-checkbox input[type=checkbox]::after {
    content: "\f00c";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    color: #000000;
    display: none;
}

.submit-checkbox input[type=checkbox]:checked {
    background: #52FFCE;
}

.submit-checkbox input[type=checkbox]:checked::after {
    display: block;
}

.submit-checkbox label {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
}

.ragister-submit {
  text-align: center;
  margin-top: 20px;
} 

.ragister-submit button {
  text-transform: uppercase;
  padding: 9px 47px;
  border-radius: 2px;
  border: 1px solid #000000;
  text-align: center;
  background: #FF7373;
  cursor: pointer;
  transition: 0.2s all ease;
}

.ragister-submit button:hover {
  box-shadow: 3px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.ragister-btm-wrap2 {
  background: #FF9595;
}

.ragister-btm-wrap2 ul li:nth-of-type(2) a:hover {
  background: #53FFCE;
}

.ragister-input-main2 {
  margin-top: 0;
}

.ragister-message textarea {
   font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 7px 6px;
  background: #FFF4C8;
  margin-top: 13px;
  outline: none;
}

.ragister-message textarea::placeholder {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

/*==best-casino-page==*/
.best-casino-main {
  background: rgb(250, 238, 188);
  border: 1px solid #000000;
  padding: 11px 10px;
  border-radius: 10px;
}

.best-casino-topper h2 a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  text-align: center;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 9px;
  display: block;
}

.best-casino-topper h2 a:hover {
  color: #FA5454;
}

.best-casino-topper p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 11px;
}

.best-casino-box-wrap {
  display: grid;
  grid-template-columns: 21% auto 19%;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  align-items: center;
  margin-top: 10px;
  transition: 0.2s all ease;
}

.best-casino-box-wrap:hover {
  box-shadow: 5px 5px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.best-casino-box-wrap2 {
  background: #FFF4C8;
  margin-top: 15px;
}

.pand-box-wrap {
  padding: 8px 0 10px 12px;
}

.panda-box-top ul {
  display: flex;
  align-items: center;
  column-gap: 6px;
}

.panda-box-top ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 20px;
}

.panda-box-top ul li a {
  color: #000000;
  transition: 0.2s all ease;
}

.panda-box-top ul li a:hover {
  color: #FA5454;
}

.panda-box-top ul li:nth-of-type(1) {
  width: 40px;
  background: #53FFCE;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0 0 0;
  border: 1px solid #000000;
  border-left: 0;
  border-top: 0;
}

.panda-box {
  background: #FFABAB;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 25px 7px;
}

.panda-box ul {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.panda-box ul li img {
  max-width: 100%;
  display: block;
}

.best-casino-item2 {
  padding-left: 54px;
}

.best-casino-item2 ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 8px;
}

.best-casino-item2 ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  display: flex;
  align-items: center;
  column-gap: 6px;
}

.best-casino-item2 h4 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  text-decoration: underline;
}

.best-casino-item2 ul li img {
  display: block;
}

.best-casino-item3 {
  text-align: center;
  padding-right: 19px;
}

.best-casino-item3 a {
  background: #53FFCE;
  border: 1px solid #000000;
  padding: 10px 25px;
  display: inline-block;
  border-radius: 5px;
  color: #000000;
  text-transform: uppercase;
}

.best-casino-item3 a:hover {
  box-shadow: 3px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.best-casino-item3 h3 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-top: 5px;
}

.best-casino-item3 img {
  max-width: 90px;
  margin-top: 3px;
}

/*==coin-marketcap-page==*/

.marketcap-area {

}

.marketcap-main {
  display: grid;
  grid-template-columns: 24% 40% auto;
  column-gap: 14px;
  margin-top: 17px;
}

.marketcap-item-wrap {
  display: grid;
  grid-template-columns: 30% auto;
  align-items: center;
  background: rgb(250, 238, 188);
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 7px 12px;
  margin-top: 10px;
}

.marketcap-item-wrap:first-child {
  margin-top: 0;
}

.money-text {
  text-align: right;
}

.money-text h4 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.marketcap-item {
  background: #E6FFF0;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 10px;
}

.marketcap-item2 {
  padding: 0;
}

.marketcap-item2-top {
  display: grid;
  grid-template-columns: 60% auto;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px 12px 5px;
}

.marketcap-item2-left {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  max-width: 154px;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 3px;
  padding: 4px 5px;
}

.marketcap-item2-left ul {
  display: flex;
  align-items: center;
  column-gap: 9px;
}

.marketcap-item2-left ul li img {
  display: block;
}

.marketcap-item2-right a {
  background: #C8FFDD;
  padding: 7px 13px;
  border: 1px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.marketcap-item2-inner {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  background: rgb(250, 238, 188);
  padding: 13px 65px 13px 7px;
  border-bottom: 1px solid #000000;
}

.marketcap-item2-inner:last-child {
  border-bottom: 0;
  border-radius: 0 0 5px 5px;
}

.item2-inner-right ul {
  display: flex;
  align-items: center;
  column-gap: 8px;
  justify-content: flex-end;
}

.item2-inner-right ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
}

.item2-inner-right ul li:nth-of-type(3) {
  color: #13D1AB;
}

.table-btn-wrap1 ul {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 16px;
}

.table-btn-wrap1 ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 8px 5px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  text-transform: uppercase;
  width: 159px;
}

.table-btn-wrap2 ul {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 15px;
}

.table-btn-wrap2 ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  column-gap: 2px;
  padding: 8px 11px 8px 5px;
  background: #ffffff;
  text-transform: uppercase;
  height: 34px;
}

.table-btn-wrap2 ul li a img {
  display: block;
  padding-right: 5px;
}

.table-btn-wrap2 ul li:nth-of-type(6) a img {
  padding-left: 5px;
  padding-right: 0;
}

.table-btn-wrap2 ul li:nth-of-type(1) a {
  background: #52FFCE;
  width: 159px;
}

.marketcap-table-area {
  padding-bottom: 75px;
}

.marketcap-table-main {
  background: #E2FFFF;
  margin-top: 12px;
  border: 1px solid #000000;
  border-radius: 5px;
}

.marketcap-table-main table {
  width: 100%;
  border-collapse: collapse;
}

.marketcap-table-main table td {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  padding: 16px 0;
  border-bottom: 0.25px solid #000000;
}

.marketcap-table-main table td h4 {
  font-weight: 400;
}

.marketcap-table-main table tr th {
  background: #53FFCE;
  border-right: 1px solid #000000;
  text-align: center;
  text-transform: uppercase;
  padding: 16px 0;
}

.marketcap-table-main table tr:nth-of-type(1) th:first-child {
  border-radius: 5px 0 0 0;
}

.marketcap-table-main table tr:nth-of-type(1) th:last-child {
  border-right: 0;
  border-radius: 0 5px 0 0;
}

.marketcap-table-main table td h4 {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.marketcap-table-main table td h4 img {
  display: block;
}

.marketcap-table-main table td:nth-of-type(1) {
  min-width: 72px;
  padding-left: 17px;
}

.marketcap-table-main table td:nth-of-type(2) {
  min-width: 300px;
}

.marketcap-table-main table td:nth-of-type(3) {
  min-width: 150px;
  text-align: center;
}

.marketcap-table-main table td:nth-of-type(4),
.marketcap-table-main table td:nth-of-type(5),
.marketcap-table-main table td:nth-of-type(6) {
  min-width: 83px;
}

.marketcap-table-main table td:nth-of-type(7),
.marketcap-table-main table td:nth-of-type(8) {
  min-width: 142px;
  text-align: center;
}

.marketcap-table-main table td:nth-of-type(9) {
  padding-right: 17px;
  text-align: center;
}

.marketcap-table-main table td:nth-of-type(1) span {
  width: 28px;
  height: 28px;
  background: #FFF4C8;
  border: 1px solid #000000;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marketcap-table-main table tr:last-child td {
  border-bottom: 0;
}

.marketcap-table-main table td b {
  font-weight: 400;
  color: #EF4408;
}

.marketcap-pagination {
  max-width: 206px;
  margin-left: auto;
  border: 1px solid #000000;
  border-radius: 5px;
  margin-top: 29px;
}

.marketcap-pagination ul {
  display: flex;
}

.marketcap-pagination ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  column-gap: 8px;
  background: #C8FFDD;
  height: 100%;
  border-right: 1px solid #000000;
}

.marketcap-pagination ul li:nth-of-type(1) a {
 border-radius: 5px 0 0 5px;
 width: 54px;
}

.marketcap-pagination ul li:nth-of-type(2) a {
 width: 88px;
 background: #53FFCE;
  border-right: 1px solid #000000;
}

.marketcap-pagination ul li:nth-of-type(3) a {
  width: 62px;
  border-radius: 0 5px 5px 0;
  background: #ffffff;
}

.coin-details-area {
  padding-bottom: 50px;
}

.coin-details-main {
  display: grid;
  grid-template-columns: 25% auto;
  column-gap: 30px;
  margin-top: 43px;
  align-items: start;
}

.coin-details-left {
  background: #E6FFF0;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 10px;
}

.coin-details-btn ul {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.coin-details-btn ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  display: flex;
  align-items: center;
  column-gap: 4px;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 7px 15px 7px 4px;
}

.coin-details-btn ul li a img {
  display: block;
}

.coin-details-btn ul li:nth-of-type(3) {
  width: 216px;
}

.coin-details-pg {
  border: 1px solid #000000;
  border-radius: 5px;
  background: #ffffff;
  padding: 6px 9px;
  margin-top: 16px;
}

.coin-details-pg p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
}

.coin-details-pg p span {
  color: #13D1AB;
}

.coin-rank-wrap ul {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-top: 12px;
}

.coin-rank-wrap ul li span {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  text-transform: uppercase;
  display: block;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
}

.coin-rank-wrap ul li:nth-of-type(1) {
  width: 96px;
}

.coin-rank-wrap ul li:nth-of-type(2) {
  width: 188px;
}

.coin-grap-img img {
  width: 100%;
  border-radius: 5px;
  margin-top: 13px;
  border: 1px solid #000;
}

.btc-convert-box {
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  margin-top: 10px;
}

.btc-convert-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px;
}

.btc-convert-box ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.btc-convert-box ul:nth-of-type(1) {
  border-bottom: 1px solid #000000;
}

.btc-convert-badge {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  max-width: 209px;
  background: #E2FFFF;
  padding: 5px;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 5px;
  margin-top: 13px;
}

/*==profile-admin-page==*/

.profile-admin-area {
  padding-bottom: 106px;
}

.profile-admin-box {
  max-width: 550px;
  margin: auto;
  margin-top: 28px;
}

.profile-fram {
  position: relative;
}

.profile-fram img {
  width: 100%;
  border-radius: 5px;
  border: 5px solid #FA5454;
}

.profile-fram2 {
  position: relative;
  width: 150px;
  height: 150px;
  margin: auto;
  margin-top: -80px;
}

.profile-fram2 img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #FA5454;
}

.camara-item {
  background: #C8FFDD;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 3px;
  bottom: 9px;
  border: 1px solid #000000;
  cursor: pointer;
}

.camara-item2 {
  bottom: initial;
  top: 9px;
  right: 10px;
}

.camara-item img {
  width: 24px !important;
  height: initial !important;
  position: initial !important;
  border-radius: initial;
  border: 0;
}

.profile-admin-btn ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 15px;
  margin-top: 16px;
}

.profile-admin-btn ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  display: flex;
  align-items: center;
  column-gap: 3px;
  justify-content: center;
  background: #FDE1F4;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 8px;
}

.profile-admin-btn ul li a:hover {
  box-shadow: 3px 3px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.profile-admin-btnul li a img {
  display: block;
}

.profile-admin-btn ul li:nth-of-type(2) a {
  background: #FFF4C8;
}

.profile-admin-social ul {
  display: flex;
  justify-content: space-between;
  column-gap: 4px;
  margin-top: 23px;
}

.profile-admin-social ul li a {
  background: #FFF4C8;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 5px;
  display: block;
}

.profile-admin-social ul li a:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.profile-admin-social ul li a img {
  display: block;
  width: 30px;
}

.profile-admin-social ul li a:hover {
  opacity: 0.8;
}

.profile-admin-pg {
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 8px 10px;
  margin-top: 16px;
}

.profile-admin-pg p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.profile-admin-main {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 21px;
  column-gap: 18px;
  row-gap: 18px;
}

.profile-admin-area2 {
  padding-bottom: 46px;
}

.login-profile-wrap {
  display: grid;
  grid-template-columns: 205px auto;
  column-gap: 205px;
  margin-top: 33px;
}

.profile-admin-main30 {
  margin-top: 0;
  grid-template-columns: repeat(3,1fr);
}

.profile-admin-area50 {
  padding-bottom: 29px;
}

.login-profile-wrap2 {
  column-gap: 160px;
}

.login-profile-left {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding-left: 24px;
}

.post-btn-wrap {
  max-width: 180px;
}

.post-btn-item a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: rgb(250, 238, 188);
  display: block;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 8px 26px;
  position: relative;
}

.post-btn-item a:hover {
  box-shadow: 3px 3px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.post-btn-img {
  position: absolute;
  left: -26px;
  top: -7px;
}

.profile-admin-box2 {
  margin: 0;
}

.team-area {
  padding: 37px 0 68px 0;
}

.team-main {
  max-width: 1215px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 25px;
  row-gap: 20px;
}

.team-img img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #000;
}

.team-social ul {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.team-social ul li a {
  background: #FFF4C8;
  border: 1px solid #000000;
  border-radius: 5px;
  display: block;
  padding: 5px;
}

.team-social ul li a:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.team-social ul li a img {
  display: block;
  width: 30px;
}

.team-btn-wrap ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 13px;
}

.team-img {
  position: relative;
}

.team-btn-wrap {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 15px;
  padding: 0 14px;
}

.team-btn-wrap ul li a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: #52FFCE;
  border: 1px solid #000000;
  display: block;
  text-align: center;
  border-radius: 3px;
  padding: 5px;
}

.team-btn-wrap ul li a:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.team-btn-wrap ul li:nth-of-type(2) a {
  background: #E2FFFF;
}

.faq-area {
  padding: 30px 0 52px 0;
}

.faq-main {
  max-width: 1015px;
  margin: auto;
}

.ac {
  margin-top: 5px;
}

.ac-trigger {
  color: #000000;
  cursor: pointer;
  position: relative;
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 6px;
}

.ac-trigger h3 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  display: grid;
  grid-template-columns: 33px auto;
  align-items: center;
  column-gap: 5px;
}

.ac-trigger h3 span {
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF4C8;
  border: 1px solid #000000;
  border-radius: 5px;
}

.ac-trigger::after {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: url('images/plus.png') no-repeat;
  width: 35px;
  height: 35px;
}

.ac.is-active .ac-trigger::after {
   background: url('images/minus.png') no-repeat;
  width: 35px;
  height: 35px;
}

.ac-panel {
  overflow: hidden;
  transition: height 0.3s ease;
}

.ac-panel .ac-panel-cnt {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  padding: 12px 10px;
  background: #FFF4C8;
  border: 1px solid #000000;
  border-radius: 5px;
  margin-top: 5px;
}

.privacy-poicy-area {
  padding: 26px 0;
}

.privacy-poicy-main {
  max-width: 1025px;
  margin: auto;
  background: #C8FFDD;
  border-radius: 5px;
  border: 1px solid #000000;
  padding: 17px 14px;
}

.privacy-topper {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  max-width: 450px;
  margin: auto;
  background: #FFF4C8;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 6px;
  text-align: center;
}

.privacy-pg-title {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  background: #E2FFFF;
  max-width: 322px;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 4px 6px;
}

.privacy-pg-wrap {
  margin-top: 25px;
}

.privacy-pg-wrap p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  margin: 11px 0;
}

.profile-contact-box {
  background: #C8FFDD;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 10px 12px;
  margin-top: 10px;
}

.profile-contact-box2 {
  margin-top: 0;
}

.profile-contact-title {

  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  background: #FFF4C8;
  max-width: 187px;
  padding: 5px 8px;
  margin: 7px 0;
}

.profile-contact-title span {
  color: #2402FF;
}

.profile-contact-input input {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  width: 100%;
  border: 1px solid #000000;
  outline: none;
  border-radius: 5px;
  background: rgb(176, 250, 181);
  padding: 10px 8px;
}

.profile-contact-input input::placeholder {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
}

.profile-contact-input textarea {
  font-family: "Abel", sans-serif;
  font-size: 15px;
  width: 100%;
  border: 1px solid #000000;
  border-radius: 5px;
  outline: none;
  padding: 8px;
  background: rgb(250, 238, 188);
}

.profile-contact-input textarea::placeholder {
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
}

.profile-contact-submit button {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  background: #FA5454;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 8px 28px;
  margin-top: 13px;
  cursor: pointer;
  transition: 0.2s all ease;
  text-transform: uppercase;
}

.profile-contact-submit button:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.profile-contact-box .profile-contact-input {
  margin-bottom: 8px;
}

.delete-item {
  display: grid;
  grid-template-columns: 20px auto;
  column-gap: 5px;
  margin-top: 15px;
}

.delet-cricle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delete-item span {
  width: 10px;
  height: 10px;
  background: #000000;
  display: inline-block;
  border-radius: 50%;
}

.delete-item p {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.delet-cricle2 {
  display: none;
}

.votting-radio50 {
  display: flex;
  max-width: 180px;
  justify-content: space-between;
  margin-top: 12px;
}

.votting-raio-item50 {
  max-width: initial;
  margin: 0;
}

.profile-contact-input100 {
  margin-top: 12px;
}

.submit100 {
  margin-top: 10px;
}

.best-crypto-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
  margin-top: 17px;
  row-gap: 17px;
}

.best-crypto-item-wrap {
  background: #E2FFFF;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 8px;
  transition: 0.2s all ease;
}

.best-crypto-item-wrap:hover {
  box-shadow: 5px 5px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.best-crypto-topper {
  display: grid;
  grid-template-columns: 60% auto;
  justify-content: space-between;
  align-items: center;
}

.best-left-wrap {
  display: grid;
  grid-template-columns: 35px auto;
  align-items: center;
  column-gap: 4px;
}

.best-left-inner1 span {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  width: 35px;
  height: 35px;
  border-radius: 2px;
  border: 1px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #53FFCE;
}

.best-left-inner2 ul {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.best-left-inner2 ul li {
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    text-decoration: underline;
}

.best-left-inner2 ul img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  border: 1px solid #000;
}

.best-topper-right a {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
  background: #53FFCE;
  border: 1px solid #000000;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 42px;
}

.best-topper-right a:hover {
  box-shadow: 2px 2px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
}

.bestcrypto-list ul {
  margin-top: 11px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.bestcrypto-list ul li {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  display: flex;
  /*! align-items: center; */
  column-gap: 6px;
}

.bestcrypto-list ul li img {
  width: 23px;
  display: block;
}

.best-crypto-color {
  background: #FFF4C8;
}

/*===dropdown-css===*/

.menu-box10 {
    position: relative;
    display: inline-block;
}

.menu-btn10 {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-size: 15px;
  background: #E2FFFF;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px 7px 5px;
}

.menu-btn10 i {
    transition: .2s;
    font-size: 18px;
}

.menu-btn10.active10 i {
    transform: rotate(180deg);
}

.dropdown10 {
    position: absolute;
    top: 113%;
    left: 0;
    background: #fff;
    border: 1px solid #000;
    min-width: 160px;
    display: none;
    z-index: 999;
    border-radius: 5px;
}

.dropdown-item10 {
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 6px 12px !important;
    cursor: pointer;
    color: #000000;
    border: none;
    margin: 0;
    border-bottom: 1px solid #000;
    border-radius: 0 !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.dropdown-item10:hover {
  background: #C8FFDD;
}

.dropdown-item10:last-child {
  border-bottom: 0;
  border-radius: 0 0 5px 5px !important;
}

.dropdown-item10:first-child {
  border-radius: 5px 5px 0 0 !important;
}

.menu-btn20 {
  background: #C8FFDD;
}

.menu-btn20 img {
  display: block;
}

.dropdown20 a {
  background: none !important;
}

.dropdown20 a:hover {
  background: #FDE1F4 !important;
}

.tradingview-widget-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #000000;
  margin-top: 14px;
}

.tradingview_chart {
  border-radius: 5px;
}



