* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Raleway;
  display: grid;
  grid-template-columns: 20% 80%;
  grid-auto-rows: 100px 100vh;
  grid-template-areas: "aside header" "aside main";
  background-color: var(--color_light_gray);
}

:root {
  --color_white: #fff;
  --color_black: #1a2029;
  --color_gray: #14161d;
  --color_gray-300: #d1d5db;
  --color_light_gray: #f8f8f8;
  --color_dark_gray: #31353f;
  --color_light_purple: #8c77ed;
  --color_blue: #3a6ff8;
  --color_green: #1ecb4f;
  --color_text_green: #1ecb4f;
  --color_bg_green: #1ecb4f;
  --color_50AF95: #50af95;
  --color_light_red: #f46d22;
  --color_353E4D: #353e4d;
  --color_F5B300: #f5b300;
  --color_1E2A41: #1e2a41;
  --color_B6BFC8: #b6bfc8;
  --color_1B2028: #1b2028;
  --color_9E9E9E: #9e9e9e;
  --color_black_to_white: #1a2029;
  --color_bg_gray: #14161d;
  --color_bg_201F21: #201f21;
  --color_text_E4E4E4: #e4e4e4;
}

/* colors dark */
:root[data-theme="dark"] {
  --color_gray: #fff;
}
:root[data-theme="dark"] .section_info_bitcoin,
:root[data-theme="dark"] .buttons_operation {
  background-color: var(--color_bg_gray);
}

:root[data-theme="dark"] .toggle_darkmode .active_darkmode {
  background-color: var(--color_bg_gray);
}

:root[data-theme="dark"] .toggle_darkmode button span {
  color: var(--color_9E9E9E);
}
:root[data-theme="dark"] .burger_menu svg path {
  fill: var(--color_white);
}
:root[data-theme="dark"] .toggle_darkmode button:first-child svg path {
  fill: var(--color_9E9E9E);
}
:root[data-theme="dark"] .box_shadow {
  background-color: var(--color_1B2028);
}

:root[data-theme="dark"] body {
  background-color: var(--color_bg_gray);
}
:root[data-theme="dark"] aside {
  background-color: var(--color_1B2028);
}
:root[data-theme="dark"] .navgation_sidbar li a span,
:root[data-theme="dark"] .search_box_header input {
  color: var(--color_9E9E9E);
}
:root[data-theme="dark"] .navgation_sidbar li a svg path,
:root[data-theme="dark"] .search_box_header button svg path,
:root[data-theme="dark"] .message_user button svg path {
  fill: var(--color_9E9E9E);
}
:root[data-theme="dark"] aside .logo span,
:root[data-theme="dark"] header .title_header h5,
:root[data-theme="dark"] .full_name_user span {
  color: var(--color_white);
}

:root[data-theme="dark"] .header_letf_content_main span {
  color: var(--color_9E9E9E);
}
:root[data-theme="dark"] .header_letf_content_main div h6 {
  color: var(--color_white);
}
:root[data-theme="dark"] .header_letf_content_main div svg path {
  fill: var(--color_9E9E9E);
}

h1 {
  color: var(--color_white);
}

@font-face {
  font-family: Raleway;
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Raleway/Raleway-Black.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Raleway/Raleway-Bold.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Raleway/Raleway-SemiBold.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Raleway/Raleway-Medium.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Raleway/Raleway-Regular.woff") format("woff");
}
@font-face {
  font-family: Raleway;
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Raleway/Raleway-Light.woff") format("woff");
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.box_shadow {
  background-color: var(--color_white);
}
header {
  grid-area: header;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  gap: 10px;
}
aside {
  grid-area: aside;
  position: fixed;
  width: 20%;
  height: 100%;
  border-right: 2px solid rgba(0, 0, 0, 0.12);
  padding: 32px;
  overflow-y: auto;
}

main {
  grid-area: main;
  padding: 8px;
}

aside .logo {
  display: flex;
  align-items: center;
  gap: 7px;
}

aside .logo span {
  font-size: 21px;
  font-weight: 700;
}
.navgation_sidbar {
  margin-top: 2.7rem;
}
.navgation_sidbar li {
  margin-bottom: 32px;
}
.navgation_sidbar li:nth-child(5) {
  margin-bottom: 20rem;
}
.navgation_sidbar li a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navgation_sidbar li a span {
  color: var(--color_black);
  font-size: 14px;
  font-weight: 600;
}

.active_link_sidbar {
  background-color: #44a0e281;
  padding: 12px;
  height: 50px;
  border-radius: 10px;
}
.active_link_sidbar * {
  color: var(--color_white) !important;
}
.active_link_sidbar svg path {
  fill: var(--color_white) !important;
}
.toggle_darkmode {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4rem;
}
.toggle_darkmode button {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.toggle_darkmode .active_darkmode {
  background-color: var(--color_white);
  padding: 10px 15px;
  border-radius: 4px;
}
.title_header h5 {
  color: var(--color_black);
  font-size: 32px;
  font-weight: 700;
}
.search_box_header {
  width: 52%;
  height: 44px;
  border-radius: 8px;
  padding: 0 20px;
  position: relative;
}
.search_box_header input {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 14px;
  font-weight: 400;
}
.search_box_header button {
  position: absolute;
  right: 20px;
  top: 22%;
  background-color: transparent;
  border: none;
}
header .user_action {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
header .user_action .message_user button {
  border: none;
  padding: 10px;
}
header .user_info {
  display: flex;
  gap: 15px;
}
header .user_info .full_name_user {
  margin-top: 5px;
  cursor: pointer;
}
.full_name_user span:last-child {
  position: relative;
  top: 5px;
}
.burger_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid var(--color_gray-300);
  border-radius: 12px;
}
.search_box_main {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.search_box_main form {
  width: 100%;
  margin-bottom: 20px;
}

.d_block {
  display: block !important;
}
.bg_cover {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  display: none;
}
.container_main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.9rem;
  padding-bottom: 0.5rem;
}

.header_letf_content_main span {
  color: var(--color_black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.header_letf_content_main div {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 8px 0;
}
.header_letf_content_main div h6 {
  color: var(--color_gray);
  font-size: 32px;
  font-weight: 600;
}

.border_raduis_20 {
  border-radius: 20px;
}

.section_coins {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.9rem;
}
.card_coin {
  padding: 32px 19px;
}
.d_flex {
  display: flex;
}
.justify_content_between {
  justify-content: space-between;
}

.align_items_center {
  align-items: center;
}

.color_1ECB4F {
  color: var(--color_green);
}
.color_F46D22 {
  color: var(--color_light_red);
}

.row_portfolio:not(:last-child) {
  margin-bottom: 30px;
}
.info_row_portfolio {
  gap: 20px;
}
.text_portfolio h6 {
  color: var(--color_gray);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}
.text_portfolio span {
  color: var(--color_gray);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
}
.flex_dir_column {
  flex-direction: column;
}
.action_row_portfolio span:first-child {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 7px;
}
.action_row_portfolio span:last-child {
  color: var(--color_gray);
  font-size: 14px;
  font-weight: 600;
}
.align_items_end {
  align-items: end;
}
.message_list_user {
  width: 150px;
  z-index: 100;
  position: absolute;
  top: 96px;
  right: 185px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all ease-in-out 250ms;
  box-shadow: 5px 5px 20px 0 rgba(218, 188, 255, 0.2);
}
.message_list_user.active_notif {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.message_list_user li {
  padding: 10px;
}
.list_account_user {
  position: absolute;
  z-index: 100;
  top: 95px;
  right: 15px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
  border-radius: 13px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all ease-in-out 250ms;
}
.list_account_user.active_account {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.search_user {
  position: relative;
  height: 50px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--color_light_gray);
}
.search_user input {
  height: 100%;
  width: 100%;
  padding-left: 15px;
  font-size: 17px;
  font-weight: 400;
  color: var(--color_B6BFC8);
}
.search_user input,
.search_user button {
  border: none;
  background-color: transparent;
}
.search_user button {
  position: absolute;
  left: 6px;
}
.account_user {
  padding: 10px 20px;
}
.account_user,
.info_user_account {
  gap: 10px;
}
.info_user_account img,
.img_user_info img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 100%;
}
.account_text_user h6 {
  color: var(--color_gray);
  font-size: 17px;
  font-weight: 500;
}
.account_text_user span {
  font-size: 14px;
  font-weight: 400;
  color: var(--color_black);
  opacity: 0.6;
}

@import url("https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap");

* {
  user-select: none;
}
.flex_togg {
  display: flex;
}

.name p {
  color: rgb(119, 9, 192);
  font-weight: bold;
  margin-top: 5px;
}
.play {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  text-align: center;
  color: #000;
  border: none;
  background: rgb(217, 0, 255);
  margin: 1rem;
}
.play:hover {
  background: rgb(217, 80, 255);
}
.fa-play,
.fa-pause {
  font-size: 2.5em;
}
.fa-play {
  margin-left: 7px;
}
.back,
.next {
  background: none;
  border: none;
}
.fa-forward,
.fa-backward {
  color: white;
  font-size: 2em;
}
.control {
  justify-content: center;
  align-items: center;
}
.sm-wa {
  height: 40px;
  width: 40px;
  background: none;
  border: none;
}
.fab {
  font-size: 25px;
  color: silver;
}
.pro {
  width: 75%;
  position: relative;
  cursor: pointer;
  background: silver;
  height: 5px;
  border-radius: 2.5px;
}
.bar {
  background: indigo;
  position: absolute;
  cursor: pointer;
  width: 0%;
  height: 100%;
  border-radius: 2.5px;
}
.start_str,
.end_str {
  color: silver;
  text-align: center;
  font-size: 0.83rem;
  font-family: Arial, Helvetica, sans-serif;
}
.strtime {
  width: 75%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.roller {
  height: 180px;
  width: 180px;
  border-radius: 50%;
  position: relative;
}
.roller span {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: linear-gradient(
    60deg,
    yellow,
    rgb(255, 0, 85),
    purple,
    indigo,
    violet
  );
}

.anime {
  animation: animate 1.5s linear infinite;
}
.roller span:nth-child(1) {
  filter: blur(50px);
}
.roller span:nth-child(2) {
  filter: blur(10px);
}
.roller span:nth-child(3) {
  filter: blur(15px);
}
.roller span:nth-child(4) {
  filter: blur(100px);
}
.roller img {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 100% 100%;
  filter: contrast(125%);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

#playlist {
  display: flex;
  position: relative;
  top: 0%;
  right: 0%;
  margin: 0;
}

.top-bar {
  display: flex;
  top: 0%;
  left: 0%;
  width: 95%;
  margin: 0%;
  justify-content: space-between;
}
#playlist button {
  background: none;
  color: white;
  border: none;
  font-size: 1.6rem;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 420px) {
  .main {
    width: 400px;
  }
}
@media screen and (max-width: 420px) {
  .main {
    width: 90vw;
  }
}

.like-btn {
  background: none;
  border: 2px solid white;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.like-btn i {
  color: white;
  transition: color 0.3s ease;
}

.like-btn.liked {
  background: #e76f51;
  border-color: #e76f51;
}

.like-btn.liked i {
  color: white;
}

.letf_content_main {
  position: relative;
}
.main_ahang {
  color: white;
  background: linear-gradient(45deg, rgb(34, 0, 58), rgb(0, 0, 17));
  padding: 10px 0 30px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 700px;
  border-radius: 15px;
  overflow: hidden;
}

.text_header_card_coin h6 {
  cursor: pointer;
}

.row_portfolio.active {
  border: 2px solid #f46d22;
  border-radius: 10px;
  background-color: rgba(244, 109, 34, 0.1);
}

.valedmusic {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
