@charset "UTF-8";
/*#region ----------------- X) General */
@import url(../css/fontface.css);
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: IRANYEKAN !important;
  font-weight: 400;
  direction: rtl;
  margin: 0;
  background-color: #fff;
  text-align: right;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
strong,
span,
p {
  font-family: IRANYEKAN !important;
}

h1 {
  font-weight: 800;
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.75rem;
  font-weight: 800;
}

h4 {
  font-size: 1.5rem;
  font-weight: 800;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
  font-weight: 400;
}

b,
strong {
  font-weight: bolder;
}

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

nav {
  display: block;
}

a {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background-color: #7a49e3;
  color: white;
}

::selection {
  background-color: #7a49e3;
  color: white;
}

.fi {
  display: inline-block;
}

/*#endregion -------------- X) General */
/*#region ----------------- Animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- Buttons */
.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 20rem;
  font-size: 16px;
  border: 1px solid transparent;
  position: relative;
  display: inline-block;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn .fi {
  font-size: 22px;
}

.icon-left {
  padding-left: 3.2rem;
}
.icon-left .fi {
  position: absolute;
  top: 12px;
  left: 20px;
}

.icon-right {
  padding-right: 3.2rem;
}
.icon-right .fi {
  position: absolute;
  top: 12px;
  right: 20px;
}

.btn-primary {
  border-color: #7a49e3;
  background-color: #7a49e3;
  color: white;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #6026de;
  border-color: #6026de;
}

.btn-secondary {
  border-color: #53b176;
  background-color: #53b176;
  color: white;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #449763;
  border-color: #449763;
}

.btn-primary-outline {
  border-color: #7a49e3;
  background-color: transparent;
  color: #7a49e3;
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background-color: rgba(122, 73, 227, 0.12);
  color: #7a49e3;
  border-color: #7a49e3;
}

.btn-secondary-outline {
  border-color: #64748b;
  background-color: transparent;
  color: #64748b;
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
  background-color: rgba(100, 116, 139, 0.12);
  color: #64748b;
  border-color: #64748b;
}

.btn-collapse {
  border: none;
  background-color: white;
  width: 100%;
  height: 50px;
  text-align: right;
  padding: 0 10px;
  position: relative;
}
.btn-collapse .title {
  font-size: 16px;
  font-weight: 400;
  color: #1e293b;
}
.btn-collapse .title .fi {
  position: relative;
  top: 4px;
  margin-left: 5px;
  color: #7a49e3;
  font-size: 20px;
  line-height: 0;
}
.btn-collapse .icon {
  font-size: 24px;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  transition: all 0.2s ease;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-collapse .icon::before {
  content: "\f627";
  font-family: uicons-regular-straight;
}
.btn-collapse:hover {
  color: #7a49e3;
  transition: all 0.2s ease;
}
.btn-collapse.collapsed .icon::before {
  content: "\f4ee";
}

/*#endregion -------------- Buttons */
/*#region ----------------- Navbar */
.myNavbar {
  position: relative;
  z-index: 1010;
  width: 100%;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.myNavbar .header-inner {
  display: grid;
  grid-template-columns: 180px auto auto;
  align-items: center;
}
.myNavbar .nav-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.myNavbar .nav-logo a img,
.myNavbar .nav-logo a svg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.myNavbar .nav-category {
  padding-right: 40px;
}
.myNavbar .nav-category .menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.myNavbar .nav-category .menu-item {
  position: relative;
}
.myNavbar .nav-category .menu-item:hover .sub-menu-list {
  display: block;
}
.myNavbar .nav-category .menu-item.have_child {
  margin-left: 10px;
}
.myNavbar .nav-category .menu-item.have_child::after {
  content: "ﵠ";
  font-family: uicons-regular-straight;
  position: absolute;
  left: 0;
  top: 30px;
  font-size: 16px;
}
.myNavbar .nav-category .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #1e293b;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.myNavbar .nav-category .link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 3px;
  background-color: #7a49e3;
  transition: all 0.2s ease-in-out;
}
.myNavbar .nav-category .link .fi {
  margin-left: 10px;
  font-size: 22px;
  color: #1e293b;
  display: flex;
}
.myNavbar .nav-category .link:hover {
  color: #7a49e3;
}
.myNavbar .nav-category .link:hover::before {
  width: 100%;
}
.myNavbar .nav-category .link:hover .fi {
  color: #7a49e3;
}
.myNavbar .nav-category .sub-menu-list {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.myNavbar .nav-category .sub-menu-item {
  min-width: 250px;
  position: relative;
}
.myNavbar .nav-category .sub-menu-item a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #1e293b;
  position: relative;
}
.myNavbar .nav-category .sub-menu-item a .fi {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}
.myNavbar .nav-category .sub-menu-item a:hover {
  color: #7a49e3;
}
.myNavbar .nav-category .sub-menu-item a:hover .fi {
  color: #7a49e3;
}
.myNavbar .nav-category .sub-menu-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 90%;
  top: 0;
  min-width: 250px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease-in-out;
}
.myNavbar .nav-category .sub-menu-item:hover ul {
  visibility: visible;
  opacity: 1;
  right: 100%;
}
.myNavbar .nav-category .mobile-menu {
  display: none;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: flex-start;
}
.myNavbar .nav-category .btn-mobile-menu {
  background-color: transparent;
  color: #1e293b;
  width: 48px;
  height: 48px;
  font-size: 28px;
  padding: 0;
  border: none;
}
.myNavbar .nav-category .btn-mobile-menu .fi {
  position: relative;
  top: 6px;
}
.myNavbar .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.myNavbar .nav-actions .item {
  margin-left: 25px;
  height: 100%;
  position: relative;
}
.myNavbar .nav-actions .item:last-child {
  margin-left: 0;
}
.myNavbar .nav-actions .item.nav-basket .badge {
  position: absolute;
  bottom: 37px;
  right: -5px;
  background-color: #7a49e3;
}
.myNavbar .nav-actions .btn-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  padding: 0;
  border: none;
  height: 100%;
}
.myNavbar .nav-actions .btn-nav .fi {
  font-size: 24px;
  color: #1e293b;
  display: flex;
}
.myNavbar .nav-actions .btn-nav .text {
  font-size: 13px;
  color: #64748b;
  margin-top: 10px;
}
.myNavbar .nav-actions .btn-nav:hover .fi {
  color: #7a49e3;
}
.myNavbar .nav-actions .btn-nav.signin {
  position: relative;
}
.myNavbar .nav-actions .btn-nav.signin::before {
  content: "ﵠ";
  font-family: uicons-regular-straight;
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 16px;
}
.myNavbar .nav-actions .nav-userprofile:hover .user-menuList {
  display: block;
  animation: swipeupsmall 0.2s ease-in-out;
}
.myNavbar .nav-actions .user-menuList {
  display: none;
  position: absolute;
  top: 100%;
  left: -15px;
  min-width: 200px;
  background-color: white;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.myNavbar .nav-actions .user-menuList ul {
  padding: 10px 0;
}
.myNavbar .nav-actions .user-menuList ul li a {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  color: #1e293b;
}
.myNavbar .nav-actions .user-menuList ul li .fi {
  margin-left: 15px;
  font-size: 20px;
  color: #94a3b8;
}
.myNavbar .nav-actions .user-menuList ul li:hover a {
  color: #7a49e3;
  background-color: #f6f8fa;
}
.myNavbar .nav-actions .user-menuList ul li:hover .fi {
  color: #7a49e3;
}
.myNavbar .nav-actions .user-menuList hr {
  margin: 0.5rem 0;
}

#desktop-search-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1090;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  animation: scaleIn 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
#desktop-search-content .search-inner {
  padding: 3rem 15px 15px 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#desktop-search-content .search-inner form {
  display: grid;
  grid-template-columns: auto 40px;
  align-items: center;
  position: relative;
}
#desktop-search-content .search-inner .search-input {
  align-items: center;
  position: relative;
  width: 650px;
  margin: 0 auto;
}
#desktop-search-content .search-inner .search-input input {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 50px;
  background-color: white;
  font-size: 16px;
  font-weight: 400;
  color: #1e293b;
  padding: 5px 15px 5px 150px;
}
#desktop-search-content .search-inner .search-input .btn-clear {
  border-radius: 50%;
  background-color: #94a3b8;
  border: none;
  position: absolute;
  top: 5px;
  left: 95px;
  width: 40px;
  height: 40px;
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
}
#desktop-search-content .search-inner .search-input .btn-clear .fi {
  font-size: 20px;
}
#desktop-search-content .search-inner .search-input .btn-clear.active {
  display: flex;
}
#desktop-search-content .search-inner .search-input .btn-search-result {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  height: 100%;
  padding: 3px 20px;
  background-color: #7a49e3;
  color: white;
  border: 3px solid white;
  border-radius: 50px;
}
#desktop-search-content .search-inner .list-result {
  width: 650px;
  margin: 1.5rem auto 0 auto;
  overflow-y: auto;
  scrollbar-color: rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.2);
  scrollbar-width: thin;
}
#desktop-search-content .search-inner .list-result::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
}
#desktop-search-content .search-inner .list-result::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
}
#desktop-search-content .search-inner .list-result .tags {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
#desktop-search-content .search-inner .list-result .tags li a {
  display: block;
  padding: 5px 10px;
  margin: 0 0 15px 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  color: white;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.2);
}
#desktop-search-content .search-inner .list-result .tags li a:hover {
  background-color: #7a49e3;
}
#desktop-search-content .btn-arrow-back {
  position: absolute;
  left: 30px;
  top: 30px;
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
#desktop-search-content .btn-arrow-back .fi {
  font-size: 20px;
  position: relative;
  display: flex;
}
#desktop-search-content.active {
  display: block;
}

#sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  height: 100vh;
  width: 300px;
  z-index: 2002;
  background: #fff;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
#sidebar-menu.active {
  right: 0;
  visibility: visible;
}
#sidebar-menu .sidebar-header {
  padding: 15px;
  position: relative;
  flex-shrink: 0;
}
#sidebar-menu .sidebar-header .btn-close-menu {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 45px;
  height: 45px;
  color: #64748b;
  background-color: transparent;
  border: none;
  padding: 0;
}
#sidebar-menu .sidebar-header .btn-close-menu .fi {
  font-size: 24px;
}
#sidebar-menu .sidebar-header .btn-close-menu:hover {
  color: #7a49e3;
}
#sidebar-menu .mobile-links {
  overflow-y: auto;
  flex: 1 1 auto;
}
#sidebar-menu .category-list {
  margin-top: 30px;
}
#sidebar-menu .category-list .item a {
  padding: 10px 20px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  position: relative;
  transition: all 0.2s ease;
}
#sidebar-menu .category-list .item a .fi {
  position: absolute;
  left: 20px;
  color: #53b176;
}
#sidebar-menu .category-list .item a:hover {
  background-color: #f6f8fa;
  transition: all 0.2s ease;
}
#sidebar-menu .collapse-item {
  position: relative;
}
#sidebar-menu .collapse-item .btn-collapse {
  padding-right: 20px;
}
#sidebar-menu .collapse-item .card {
  padding: 15px 15px 15px 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background-color: rgba(0, 0, 0, 0.02);
}
#sidebar-menu .collapse-item .card ul li:hover .name {
  color: #7a49e3;
}
#sidebar-menu .collapse-item .card ul li a {
  display: block;
  padding: 6px 0;
}
#sidebar-menu .collapse-item .card ul li .name {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
}
#sidebar-menu .collapse-item .card ul li .desc {
  margin-right: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
}
#sidebar-menu .collapse-item .card ul li .fi {
  font-size: 18px;
  position: relative;
  top: 5px;
}
#sidebar-menu .social-icons {
  flex-shrink: 0;
  padding: 15px 10px 60px 10px;
}
#sidebar-menu .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#sidebar-menu .social-icons ul li {
  margin: 8px;
}
#sidebar-menu .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #7a49e3;
  color: white;
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
#sidebar-menu .social-icons ul li a:hover {
  background-color: #7a49e3;
  color: white;
}

.overlay-back {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2001;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.overlay-back.active {
  display: block;
  opacity: 1;
}

@keyframes scaleIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .myNavbar .header-inner {
    grid-template-columns: 1fr 160px 1fr;
    grid-template-areas: "menu logo actions";
    padding: 10px 0;
  }
  .myNavbar .nav-logo {
    text-align: center;
    grid-area: logo;
  }
  .myNavbar .nav-category {
    grid-area: menu;
    padding-right: 0;
  }
  .myNavbar .nav-category .menu-list {
    display: none;
  }
  .myNavbar .nav-category .mobile-menu {
    display: flex;
  }
  .myNavbar .nav-actions {
    align-items: center;
    grid-area: actions;
  }
  .myNavbar .nav-actions .item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 20px;
  }
  .myNavbar .nav-actions .item.nav-basket .badge {
    bottom: 20px;
  }
  .myNavbar .nav-actions .btn-nav {
    width: 36px;
    height: 36px;
  }
  .myNavbar .nav-actions .btn-nav .text {
    display: none;
  }
  .myNavbar .nav-actions .btn-nav.signin::before {
    left: -9px;
    top: 11px;
  }
  .myNavbar .nav-actions .user-menuList {
    left: 0;
  }
  #desktop-search-content .search-inner .search-input {
    width: 100%;
  }
  #desktop-search-content .search-inner .list-result {
    width: 100%;
  }
  #desktop-search-content .btn-arrow-back {
    left: 10px;
  }
}
@media (max-width: 768px) {
  .myNavbar {
    position: fixed;
    top: 0;
    right: 0;
  }
  .myNavbar .nav-actions .item {
    margin: 0;
  }
  .myNavbar .nav-actions .btn-nav.search-desktop, .myNavbar .nav-actions .btn-nav.user-action, .myNavbar .nav-actions .btn-nav.signin {
    display: none;
  }
  .myNavbar .nav-actions .item.nav-userprofile {
    margin: 0;
  }
}
@media (max-width: 350px) {
  #sidebar-menu {
    width: 100%;
    right: -350px;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Sidebar Cart */
#side-basket {
  width: 320px;
  position: fixed;
  top: 0;
  left: -100%;
  max-height: 100%;
  height: 100%;
  z-index: 2002;
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
#side-basket.active {
  left: 0;
}
#side-basket .basket-header {
  text-align: center;
  padding: 20px 0;
  font-weight: 400;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 50;
  flex-shrink: 0;
}
#side-basket .basket-header .order-numbers {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}
#side-basket .basket-list-item {
  padding: 10px;
  overflow-y: auto;
  background-color: white;
  flex: 1 1 auto;
}
#side-basket .basket-list-item .item {
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 0;
}
#side-basket .basket-list-item .item:last-child {
  border-bottom: none;
}
#side-basket .basket-list-item .item .item-inner {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: center;
}
#side-basket .basket-list-item .item .product-image a {
  display: block;
}
#side-basket .basket-list-item .item .product-image img {
  width: 100%;
}
#side-basket .basket-list-item .item .product-info {
  padding-right: 10px;
}
#side-basket .basket-list-item .item .product-info a {
  display: block;
}
#side-basket .basket-list-item .item .product-info .name {
  font-size: 13px;
  font-weight: 400;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: normal;
  margin-bottom: 0.6rem;
}
#side-basket .basket-list-item .item .product-info .name:hover {
  color: #7a49e3;
}
#side-basket .basket-list-item .item .product-info .data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#side-basket .basket-list-item .item .product-info .price .number {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}
#side-basket .basket-list-item .item .product-info .price .number .toman {
  font-size: 12px;
  font-weight: 400;
  margin-right: 5px;
  color: #64748b;
}
#side-basket .basket-list-item .item .product-info .btn-delete {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ef4444;
  padding: 5px;
  font-size: 12px;
  color: #ef4444;
  background-color: white;
}
#side-basket .basket-list-item .item .product-info .btn-delete:hover {
  background-color: #ef4444;
  color: white;
}
#side-basket .basket-pays {
  padding: 10px;
  z-index: 50px;
  background-color: white;
  flex-shrink: 0;
  box-shadow: 0 -10px 20px -8px rgba(0, 0, 0, 0.05);
}
#side-basket .basket-pays .goto-cart {
  width: 100%;
  display: block;
  position: relative;
  color: white;
  background: #7a49e3;
  border-radius: 10px;
  padding: 12px;
}
#side-basket .basket-pays .goto-cart .count-price {
  position: absolute;
  left: 5px;
  top: 5px;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  background-color: white;
  color: #7a49e3;
}
#side-basket .basket-pays .goto-cart .btn-text {
  font-size: 14px;
  font-weight: 400;
}
#side-basket #dismiss-basket {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #64748b;
  padding: 0;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #d9d9d9;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
}
#side-basket #dismiss-basket .fi {
  font-size: 18px;
}
#side-basket #dismiss-basket:hover {
  background-color: #ef4444;
  color: white;
  border-color: #ef4444;
}

.basket-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2001;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.basket-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 350px) {
  #side-basket {
    width: 100%;
  }
}
/*#endregion -------------- Sidebar Cart */
/*#region ----------------- Modal */
.modal-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
}
.modal-title .fi {
  font-size: 24px;
  color: #64748b;
  margin-left: 20px;
  display: flex;
}

.modal-body .title {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  text-align: center;
  margin: 1rem 0 2rem 0;
}

/*#endregion -------------- Modal */
/*#region ----------------- Login */
.login-section .alert-msg {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.login-section .alert-msg.error {
  color: #ef4444;
}
.login-section .alert-msg.success {
  color: #00b854;
}
.login-section .btns-action {
  text-align: center;
}
.login-section .btns-action .btn {
  min-width: 120px;
}

.time-countdown {
  text-align: center;
  margin-bottom: 30px;
}
.time-countdown .time-show {
  font-size: 18px;
  margin-bottom: 0;
  text-align: center;
}
.time-countdown .btn-link {
  background-color: transparent;
  font-size: 16px;
  border: none;
  color: #7a49e3;
  margin: 0 auto;
}

/*#endregion -------------- Login */
/*#region ----------------- Forms */
.inputgroup {
  position: relative;
  margin-bottom: 1.2rem;
}
.inputgroup label {
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  display: block;
  margin-bottom: 7px;
}
.inputgroup .input {
  width: 100%;
  height: 44px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 3px 50px 3px 15px;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  text-align: right;
}
.inputgroup .input:hover {
  border-color: #94a3b8;
}
.inputgroup .input:focus {
  border-color: #7a49e3;
}
.inputgroup .input:focus ~ .icon {
  color: #7a49e3;
}
.inputgroup .icon {
  position: absolute;
  right: 0;
  top: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}
.inputgroup .icon i {
  font-size: 22px;
  display: flex;
}
.inputgroup .msg-alert {
  font-size: 12px;
  font-weight: 400;
  padding: 0;
  margin: 5px 0;
}
.inputgroup .msg-alert.error {
  color: #ef4444;
}
.inputgroup .msg-alert.success {
  color: #00b854;
}
.inputgroup.center .input {
  text-align: center;
  padding: 3px 15px 3px 15px;
}
.inputgroup.big-font .input {
  font-size: 18px;
}
.inputgroup.simple {
  margin-bottom: 1.2rem;
}
.inputgroup.simple .icon {
  top: 0;
}
.inputgroup.simple .icon i {
  top: 0;
}
.inputgroup.nopadding .input {
  padding: 3px 15px 3px 15px;
}

.form-check .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #1e293b;
  cursor: pointer;
}
.form-check .form-check-input {
  cursor: pointer;
}
.form-check .form-check-input:checked {
  background-color: #7a49e3;
  border-color: #7a49e3;
  box-shadow: none;
}
.form-check .form-check-input:hover, .form-check .form-check-input:focus {
  box-shadow: none;
}
.form-check.margin-top {
  margin-top: 35px;
}

.textarea-group .textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  font-weight: 400;
  color: #1e293b;
  transition: all 0.2s ease-in-out;
}
.textarea-group .textarea:hover {
  border-color: #94a3b8;
}
.textarea-group .textarea:focus {
  border-color: #7a49e3;
}

.select-group {
  position: relative;
  margin-bottom: 1.2rem;
}
.select-group label {
  font-size: 13px;
  font-weight: 400;
  color: #1e293b;
  display: block;
  margin-bottom: 8px;
}
.select-group .form-select {
  height: 44px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 10px;
}
.select-group .form-select:hover {
  box-shadow: none;
  border-color: #94a3b8;
}
.select-group .form-select:focus {
  box-shadow: none;
  border-color: #7a49e3;
}

/*#endregion -------------- Forms */
/*#region ----------------- Hero */
.home-hero-swiper {
  margin: 30px 0 50px 0;
}

.swiper-index .swiper-slide .item a {
  display: block;
}
.swiper-index .swiper-slide .item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.swiper-index .swiper-button-next,
.swiper-index .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.swiper-index .swiper-button-next::after,
.swiper-index .swiper-button-prev::after {
  content: "";
  color: white;
  font-family: uicons-regular-straight !important;
  font-size: 22px;
}
.swiper-index .swiper-button-prev {
  top: unset;
  bottom: 20px !important;
  right: 20px !important;
}
.swiper-index .swiper-button-prev::after {
  content: "ﵡ" !important;
}
.swiper-index .swiper-button-next {
  top: unset;
  left: unset;
  bottom: 20px !important;
  right: 74px !important;
}
.swiper-index .swiper-button-next::after {
  content: "ﵢ" !important;
}
.swiper-index .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.swiper-index .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}
.swiper-index:hover .swiper-button-next,
.swiper-index:hover .swiper-button-prev {
  opacity: 1;
}

@media (max-width: 768px) {
  .home-hero-swiper {
    margin-top: 90px;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Caegory */
.category-home .seciton-inner {
  width: 800px;
  margin: 0 auto;
}

.card-category {
  text-align: center;
  margin: 10px 0;
}
.card-category a {
  display: block;
  background-color: #f6f8fa;
  border-radius: 15px;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
}
.card-category .thumb {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px auto;
}
.card-category .thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-category h1 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-category:hover a {
  background-color: white;
  box-shadow: 0 5px 25px rgba(100, 116, 139, 0.2);
}

@media (max-width: 992px) {
  .category-home .seciton-inner {
    width: 100%;
  }
  .card-category {
    margin: 10px 0;
  }
  .card-category .thumb {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .card-category {
    margin: 5px 0;
  }
  .card-category .thumb {
    width: 50px;
    height: 50px;
  }
  .card-category h1 {
    font-size: 13px;
  }
}
/*#endregion -------------- Caegory */
/*#region ----------------- Mobile Bottom Navbar */
.mobile-bottom-navbar {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  display: none;
}
.mobile-bottom-navbar .navbar-inner {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  align-items: center;
}
.mobile-bottom-navbar .item {
  padding: 5px 0;
  border-bottom: 3px solid transparent;
}
.mobile-bottom-navbar .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mobile-bottom-navbar .item .icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #64748b;
}
.mobile-bottom-navbar .item .icon .fi {
  display: inline-flex;
}
.mobile-bottom-navbar .item h6 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mobile-bottom-navbar .item.active {
  border-bottom-color: #7a49e3;
}
.mobile-bottom-navbar .item.active .icon {
  color: #7a49e3;
}
.mobile-bottom-navbar .item.active h6 {
  font-weight: 600;
  color: #7a49e3;
}

@media (max-width: 768px) {
  .mobile-bottom-navbar {
    display: block;
  }
}
@media (max-width: 575px) {
  .mobile-bottom-navbar .item .icon {
    font-size: 22px;
  }
  .mobile-bottom-navbar .item h6 {
    font-size: 13px;
  }
}
/*#endregion -------------- Mobile Bottom Navbar */
/*#region ----------------- Page Title */
.page-title {
  margin-bottom: 1.5rem;
  text-align: center;
}
.page-title .title-inner {
  width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-title h1 {
  display: inline-block;
  color: #1e293b;
  position: relative;
  font-size: 22px;
  margin-bottom: 0;
}
.page-title .btn-seemore {
  font-size: 16px;
  font-weight: 600;
  color: #7a49e3;
}
.page-title .btn-seemore .fi {
  margin-right: 5px;
  font-size: 18px;
  position: relative;
  top: 6px;
  display: inline-block;
}
.page-title.align-right .title-inner {
  width: 100%;
  text-align: right;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .page-title .title-inner {
    width: 100%;
  }
  .page-title h1 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .page-title h1 {
    font-size: 20px;
  }
  .page-title .btn-seemore {
    font-size: 14px;
  }
}
/*#endregion -------------- Page Title */
/*#region ----------------- Courses List */
#products-section {
  margin-top: 30px;
}
#products-section .section-inner {
  margin-bottom: 4rem;
}
#products-section .section-inner .myrow {
  display: grid;
  grid-template-columns: 300px auto;
}
#products-section .section-inner .myrow .products-main {
  padding-right: 25px;
}
#products-section .section-inner .myrow .products-main .main-inner {
  margin-top: 1rem;
}
#products-section .sort-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#products-section .sort-content .sort-title {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
#products-section .sort-content .sort-title .fi {
  font-size: 20px;
  position: relative;
  margin-left: 10px;
  line-height: 0;
  color: #64748b;
}
#products-section .sort-content ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 20px;
}
#products-section .sort-content ul li {
  margin-left: 10px;
}
#products-section .sort-content ul li a {
  border-radius: 5px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  padding: 3px 5px;
}
#products-section .sort-content ul li.active a {
  background-color: #7a49e3;
  color: white;
}
#products-section .sort-content .btn-sort,
#products-section .sort-content .btn-advanced-search {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  background-color: #f6f8fa;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 8px 40px 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  position: relative;
}
#products-section .sort-content .btn-sort .fi,
#products-section .sort-content .btn-advanced-search .fi {
  font-size: 20px;
  line-height: 0;
  position: absolute;
  top: 7px;
  right: 10px;
  color: #64748b;
}
#products-section .products-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
#products-section .products-list .card-course {
  flex: 0 0 33.33%;
  width: 33.33%;
  padding-left: 20px;
  margin-bottom: 20px;
}
#products-section .products-list .card-sound {
  flex: 1 0 100%;
  width: 100%;
}
#products-section .apply-filter {
  border: 1px solid #d9d9d9;
  padding: 20px 15px;
  flex-shrink: 0;
  border-radius: 0 0 5px 15px;
}
#products-section .apply-filter .btn {
  width: 100%;
  padding: 0.5rem 1rem;
}

.side-box {
  background-color: white;
  padding: 20px 15px 10px;
  border: 1px solid #d9d9d9;
  border-bottom: none;
}
.side-box:first-child {
  border-radius: 10px 10px 0 0;
}
.side-box:last-child {
  border-radius: 0;
}
.side-box .box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.side-box .box-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0;
}
.side-box .box-header .close-sidebar {
  width: 34px;
  height: 34px;
  display: none;
  cursor: pointer;
  background-color: #fff;
  color: #64748b;
  border: none;
  font-size: 16px;
  padding: 9px;
  border-radius: 50%;
}
.side-box .box-header .close-sidebar:hover, .side-box .box-header .close-sidebar:focus {
  background-color: #ef4444;
  color: white;
}
.side-box .box-body {
  margin-top: 20px;
}
.side-box .box-body.min-height {
  max-height: 300px;
  overflow-y: auto;
}
.side-box .box-body .title {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  margin: 15px 0;
}
.side-box.side-collapse {
  padding: 15px 10px;
}
.side-box.side-collapse .btn-collapse {
  padding: 0;
  height: 30px;
  background-color: white;
}
.side-box.side-collapse .btn-collapse .title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}
.side-box.side-collapse .btn-collapse .icon {
  left: 0;
  top: 0;
  transform: rotate(-90deg);
}
.side-box.side-collapse .btn-collapse .icon::before {
  display: none;
}
.side-box.side-collapse .btn-collapse.collapsed .icon {
  transform: rotate(0);
}
.side-box .item-collapse ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  display: block;
  padding: 5px 32px 5px 5px;
  transition: all 0.2s ease-in-out;
}
.side-box .item-collapse ul li a:hover {
  color: #7a49e3;
  padding-right: 40px;
}
.side-box .range-price-filter {
  padding: 0 15px 10px 30px;
  margin-top: 2rem;
}
.side-box .range-value-inner {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}
.side-box .range-value-inner .min-range,
.side-box .range-value-inner .max-range {
  text-align: center;
}
.side-box .range-value-inner .min-range span,
.side-box .range-value-inner .max-range span {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}
.side-box .range-value-inner .min-range .price-number,
.side-box .range-value-inner .max-range .price-number {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #64748b;
  background-color: #f6f8fa;
  padding: 3px 0;
  margin: 3px 0;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
}
.side-box .range-value-inner .min-range {
  padding-left: 10px;
}
.side-box .range-value-inner .max-range {
  padding-right: 10px;
}
.side-box .list-links {
  margin-top: 1rem;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-color: #fff;
  scrollbar-width: thin;
}
.side-box .list-links::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: #fff;
}
.side-box .list-links::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgb(192, 192, 192);
}
.side-box .list-links li a {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  display: block;
  padding: 5px 10px;
}
.side-box .form-switch {
  margin: 8px 0;
}
.side-box .form-switch .form-check-input {
  border-color: #d9d9d9;
}
.side-box .form-switch .form-check-input:hover, .side-box .form-switch .form-check-input:focus {
  box-shadow: none;
  border-color: #d9d9d9;
}
.side-box .form-switch .form-check-input:checked {
  background-color: #7a49e3;
  border-color: #7a49e3;
}
.side-box .form-switch .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #1e293b;
  cursor: pointer;
}
.side-box .form-check {
  margin: 12px 0;
}
.side-box .box-search {
  position: relative;
}
.side-box .box-search .input {
  width: 100%;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px 5px 35px;
  height: 33px;
}
.side-box .box-search .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 33px;
  height: 33px;
  color: #64748b;
  position: absolute;
  left: 0;
  top: 0;
}
.side-box .box-search .icon .fi {
  display: flex;
}
.side-box .list-of-checkbox {
  margin-top: 20px;
}
.side-box .btn-category {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 5px 0;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  border: none;
  background-color: transparent;
}
.side-box .btn-category .icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
  margin-left: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.side-box .btn-category .icon:before {
  content: "\f686";
  font-family: uicons-regular-straight;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: red;
}
.side-box .btn-category.collapsed .icon::before {
  content: "\f748";
}
.side-box .category-item .list-of-checkbox {
  padding-right: 30px;
}
.side-box .category-item .form-check .form-check-label {
  color: #64748b;
}

.mainlist-title {
  color: #1e293b;
  font-size: 18px;
  font-weight: 600;
  display: none;
  margin-bottom: 15px;
}

.side-filter-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1049;
  display: none;
}
.side-filter-overlay.active {
  display: block;
}

.course-swiper-section {
  margin: 80px 0;
}
.course-swiper-section .section-inner {
  position: relative;
}

.swiper-courses {
  position: unset !important;
}
.swiper-courses .swiper-wrapper {
  padding: 10px 0 20px 0;
}
.swiper-courses .swiper-button-next,
.swiper-courses .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-courses .swiper-button-next::after,
.swiper-courses .swiper-button-prev::after {
  font-size: 22px;
  color: #64748b;
}
.swiper-courses .swiper-button-next {
  left: -20px !important;
}
.swiper-courses .swiper-button-prev {
  right: -20px !important;
}

.card-course .card-inner {
  display: block;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 5px;
  position: relative;
}
.card-course .thumb {
  position: relative;
}
.card-course .thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.card-course .thumb .time {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10rem;
  padding: 5px 10px;
  font-size: 13px;
  color: white;
}
.card-course .info {
  margin-top: 10px;
}
.card-course .info .course-name {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-course .info .teacher {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-course .price-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 10px 15px 15px;
}
.card-course .price-content .del {
  -webkit-text-decoration: line-through 1px solid #94a3b8;
          text-decoration: line-through 1px solid #94a3b8;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 10px;
}
.card-course .price-content .real {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0;
}
.card-course .price-content .toman {
  font-size: 14px;
  color: #1e293b;
  margin-right: 5px;
}
.card-course .btns-action {
  text-align: left;
  margin-top: 20px;
}
.card-course .btns-action .btn-link {
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #7a49e3;
  padding: 10px;
  text-decoration: none !important;
}
.card-course .btns-action .btn-link .fi {
  font-size: 20px;
  display: inline-flex;
  margin-right: 5px;
  position: relative;
  top: 6px;
}
.card-course.type-row {
  margin-bottom: 12px;
}
.card-course.type-row .card-inner {
  display: grid;
  grid-template-columns: 215px auto;
}
.card-course.type-row .info {
  padding-right: 10px;
}
.card-course.type-row .info .time {
  font-size: 14px;
  color: #64748b;
}
.card-course.type-row .info .time span {
  color: #1e293b;
}
.card-course.type-border {
  border: none;
}
.card-course.type-border .card-inner {
  box-shadow: none;
  border: 1px solid #d9d9d9;
}

.courses-sound-section {
  margin: 80px 0;
  padding: 80px 0;
  background-color: #f6f8fa;
}

.card-sound {
  margin: 10px 0;
}
.card-sound .card-inner {
  display: grid;
  grid-template-columns: 70px auto;
  background-color: white;
  padding: 5px;
  border-radius: 12px;
}
.card-sound .icon {
  background-color: #f6f8fa;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.card-sound .icon .btn-play {
  background-color: #53b176;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
}
.card-sound .icon .btn-play::before {
  font-family: uicons-solid-straight;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 22px;
}
.card-sound .icon .btn-play.play::before {
  content: "\f4fc";
}
.card-sound .icon .btn-play.pause::before {
  content: "\f57a";
}
.card-sound .icon .btn-play.load::before {
  content: "\f6a4";
  animation: rotate 3s infinite linear;
  top: 6px;
  right: 11px;
}
.card-sound .info {
  padding: 5px 10px 5px 5px;
}
.card-sound .info .name {
  font-size: 16px;
  font-weight: 600;
}
.card-sound .info .name a {
  display: block;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-sound .info .name:hover a {
  color: #7a49e3;
}
.card-sound .info .voice {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-sound .sound-wave .waveform-row {
  width: 100%;
}
.card-sound .price-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 10px 0 5px;
}
.card-sound .price-content .del {
  -webkit-text-decoration: line-through 1px solid #94a3b8;
          text-decoration: line-through 1px solid #94a3b8;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 10px;
}
.card-sound .price-content .real {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0;
}
.card-sound .price-content .toman {
  font-size: 14px;
  color: #1e293b;
  margin-right: 5px;
}
.card-sound.type-shadow .card-inner {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1199px) {
  #products-section .products-list .card-course {
    flex: 0 0 50%;
    width: 50%;
  }
}
@media (max-width: 992px) {
  #products-section {
    margin-top: 20px;
  }
  #products-section .container {
    padding: 0;
  }
  #products-section .sort-content ul,
  #products-section .sort-content .sort-title {
    display: none;
  }
  #products-section .sort-content .btn-sort,
  #products-section .sort-content .btn-advanced-search {
    display: block;
  }
  #products-section .section-inner .myrow {
    grid-template-columns: 100%;
  }
  #products-section .section-inner .myrow .products-side {
    position: fixed;
    right: -300px;
    top: 0;
    z-index: 1050;
    width: 300px;
    height: 100vh;
    background-color: white;
    transition: all 0.3s ease;
  }
  #products-section .section-inner .myrow .products-side.active {
    right: 0;
  }
  #products-section .section-inner .myrow .products-side .side-products {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  #products-section .section-inner .myrow .products-side .inner {
    overflow-y: auto;
    flex: 1 1 auto;
  }
  #products-section .section-inner .myrow .products-main {
    padding-right: 15px;
  }
  #products-section .products-list {
    margin-top: 1.3rem;
  }
  #products-section .products-list .card-course {
    flex: 0 0 33.33%;
    width: 33.33%;
  }
  #products-section .apply-filter {
    padding-bottom: 60px;
  }
  .side-box .box-header .close-sidebar {
    display: inline-block;
  }
  .mainlist-title {
    display: block;
  }
  .card-course .info .course-name {
    font-size: 14px;
  }
  .card-course .info .teacher {
    font-size: 13px;
  }
  .card-course .price-content {
    padding-top: 15px;
  }
  .card-course .price-content .del {
    font-size: 14px;
  }
  .card-course .price-content .real {
    font-size: 16px;
  }
  .card-course .price-content .toman {
    font-size: 13px;
  }
  .course-swiper-section,
  .courses-sound-section {
    margin: 60px 0;
  }
  .courses-sound-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  #products-section {
    margin-top: 80px;
  }
  #products-section .section-inner .myrow .products-main {
    padding-right: 5px;
  }
  #products-section .products-list .card-course {
    flex: 0 0 50%;
    width: 50%;
    padding-left: 10px;
  }
  .card-course .price-content {
    padding: 10px;
  }
  .course-swiper-section,
  .courses-sound-section {
    margin: 50px 0;
  }
  .courses-sound-section {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  #products-section .section-inner .myrow .products-main {
    padding-right: 5px;
  }
  .swiper-courses .swiper-button-next,
  .swiper-courses .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
  .swiper-courses .swiper-button-next::after,
  .swiper-courses .swiper-button-prev::after {
    font-size: 18px;
  }
  .swiper-courses .swiper-button-next {
    left: -5px !important;
  }
  .swiper-courses .swiper-button-prev {
    right: -5px !important;
  }
  .card-course .price-content {
    display: inline-block;
  }
}
@media (max-width: 350px) {
  #products-section .section-inner .myrow .products-side {
    width: 100%;
    right: -100%;
  }
  #products-section .products-list .card-course {
    flex: 0 0 100%;
    width: 100%;
    padding-left: 0;
  }
}
/*#endregion -------------- Courses List */
/*#region ----------------- Download */
.download-application {
  margin: 80px 0;
}
.download-application .section-inner {
  background-color: rgba(122, 73, 227, 0.1);
  padding: 50px 50px 0 50px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.download-application .section-inner::before {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 220px;
  height: 220px;
  background-image: url(../images/play.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.1;
}
.download-application .text-content {
  padding-bottom: 50px;
}
.download-application .text-content .page-title h1 {
  color: #7a49e3;
}
.download-application .text-content .desc p {
  text-align: justify;
  font-size: 16px;
  color: #1e293b;
}
.download-application .btn-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}
.download-application .btn-list li {
  margin: 5px 0 5px 5px;
}
.download-application .btn-list li a {
  display: block;
  width: 160px;
}
.download-application .btn-list li a img {
  width: 100%;
}
.download-application .image-content .img-inner {
  width: 60%;
  margin: 0 auto;
}
.download-application .image-content .img-inner img {
  width: 100%;
}

@media (max-width: 992px) {
  .download-application {
    margin: 60px 0;
  }
  .download-application .section-inner {
    padding: 40px 40px 0 40px;
  }
  .download-application .image-content .img-inner {
    width: 80%;
  }
  .download-application .btn-list {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .download-application {
    margin: 50px 0;
  }
  .download-application .section-inner {
    padding: 30px 30px 0 30px;
  }
}
/*#endregion -------------- Download */
/*#region ----------------- Footer */
.footer {
  background-color: #f6f8fa;
  border-radius: 0 80px 0 0;
}
.footer .social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer .social-icons ul {
  background-color: #7a49e3;
  border: 5px solid white;
  margin: -30px 0 0 0;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 60px;
}
.footer .social-icons ul li {
  text-align: center;
}
.footer .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 24px;
  color: white;
}
.footer .social-icons ul li a .fi {
  font-size: 24px;
  transition: all 0.2s ease-in-out;
  display: flex;
}
.footer .social-icons ul li a:hover .fi {
  transform: scale(1.2);
}
.footer .footer-inner {
  margin-top: 2rem;
}
.footer .box-links .title {
  font-size: 18px;
  font-weight: 800;
  color: #7a49e3;
}
.footer .box-links .desc {
  font-size: 14px;
  text-align: justify;
  padding-left: 15px;
  margin-top: 1.2rem;
  color: #64748b;
}
.footer .box-links .links {
  margin-top: 1.2rem;
}
.footer .box-links .links li {
  margin-top: 10px;
}
.footer .box-links .links li a {
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
}
.footer .box-links .links li a:hover {
  color: #7a49e3;
}
.footer .address-links {
  margin-top: 1.2rem;
}
.footer .address-links ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0;
}
.footer .address-links ul li a {
  display: inline-block;
  color: #1e293b;
}
.footer .address-links ul li a:hover {
  color: #7a49e3;
}
.footer .address-links ul li .fi {
  font-size: 22px;
  margin-left: 10px;
  color: #64748b;
  display: flex;
}
.footer .certificate {
  border-top: 1px solid #d9d9d9;
  padding-top: 1rem;
  margin-top: 1.5rem;
}
.footer .certificate ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .certificate ul li {
  margin: 10px;
}
.footer .certificate ul li a img {
  width: 100px;
  border: 2px solid white;
  border-radius: 10px;
}
.footer .copyright {
  background-color: #94a3b8;
  margin-top: 1rem;
  padding: 12px;
  text-align: center;
  color: white;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .footer .box-links {
    margin-bottom: 2rem;
  }
  .footer .certificate {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .footer {
    border-radius: 0 50px 0 0;
    margin-bottom: 90px;
  }
  .footer .social-icons ul {
    padding: 10px;
  }
  .footer .social-icons ul li a {
    width: 40px;
  }
  .footer .social-icons ul li a svg,
  .footer .social-icons ul li a img {
    width: 24px;
  }
}
@media (max-width: 575px) {
  .footer .certificate-links {
    margin-top: 1rem;
  }
  .footer .certificate-links ul li {
    margin: 2px;
  }
  .footer .certificate-links ul li img {
    width: 100px;
    border-radius: 5px;
  }
  .footer .certificate {
    padding-top: 1rem;
  }
  .footer .certificate ul li {
    margin: 5px;
  }
  .footer .certificate ul li a img {
    width: 60px;
    border-radius: 5px;
  }
  .footer .copyright {
    margin-top: 1rem;
    font-size: 9px;
    padding: 10px;
  }
}
/*#endregion -------------- Footer */
/*#region ----------------- Pagination */
.my-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.my-pagination .pagination {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.my-pagination .pagination .next .page-link,
.my-pagination .pagination .prev .page-link {
  width: auto;
}
.my-pagination .pagination .next .page-link .fi,
.my-pagination .pagination .prev .page-link .fi {
  position: relative;
  top: 2px;
}
.my-pagination .pagination .next span,
.my-pagination .pagination .prev span {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
}
.my-pagination .pagination .next .page-link {
  color: #1e293b;
  padding: 0 10px 0 15px;
}
.my-pagination .pagination .next .page-link .fi {
  margin-left: 5px;
  color: #64748b;
}
.my-pagination .pagination .prev .page-link {
  color: #1e293b;
  padding: 0 15px 0 10px;
}
.my-pagination .pagination .prev .page-link .fi {
  margin-right: 5px;
  color: #64748b;
}
.my-pagination .pagination .page-item.active .page-link {
  background-color: #7a49e3;
  color: white;
}
.my-pagination .pagination .page-link {
  background-color: white;
  border-radius: 10px;
  margin: 2px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  border: 1px solid #d9d9d9;
}
.my-pagination .pagination .page-link:hover {
  background-color: rgba(122, 73, 227, 0.2);
}
.my-pagination .pagination .page-link:focus {
  box-shadow: none;
}

/*#endregion -------------- Pagination */
/*#region ----------------- Product Details */
.product-details-section {
  margin: 0 0 7rem 0;
}
.product-details-section .course-bg-image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 340px;
  display: flex;
  align-items: end;
}
.product-details-section .course-bg-image::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}
.product-details-section .course-bg-image .container {
  position: relative;
  z-index: 10;
}
.product-details-section .course-bg-image .course-name {
  width: calc(100% - 400px);
  padding-left: 20px;
  padding-bottom: 20px;
}
.product-details-section .course-bg-image .course-name h2 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 34px;
}
.product-details-section .course-bg-image .course-name .information {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.product-details-section .course-bg-image .course-name .information ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.product-details-section .course-bg-image .course-name .information ul .item {
  color: white;
  opacity: 1;
  margin-left: 30px;
  font-size: 14px;
}
.product-details-section .course-bg-image .course-name .information ul .item:last-child {
  margin-left: 0;
}
.product-details-section .course-bg-image .course-name .information ul .item .fi {
  font-size: 16px;
  margin-left: 8px;
  position: relative;
  top: 3px;
  color: white;
  opacity: 0.8;
  display: inline-block;
}
.product-details-section .course-bg-image .course-name .information .add-bookmark {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.product-details-section .course-bg-image .course-name .information .btn-add-bookmark {
  width: 48px;
  height: 48px;
  padding: 3px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease-in-out;
}
.product-details-section .course-bg-image .course-name .information .btn-add-bookmark .icon {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details-section .course-bg-image .course-name .information .btn-add-bookmark .icon::before {
  content: "\f7a0";
  font-family: uicons-regular-straight;
  font-size: 22px;
  color: white;
}
.product-details-section .course-bg-image .course-name .information .btn-add-bookmark.active {
  background-color: #ef4444;
}
.product-details-section .course-bg-image .course-name .information .btn-add-bookmark.active .icon::before {
  content: "\f7a4";
  font-family: uicons-solid-straight;
}
.product-details-section .course-bg-image .course-name .information .btn-add-bookmark:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.product-details-section .course-bg-image .course-name .information .btn-primary {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 10px;
  border-color: rgba(255, 255, 255, 0.7);
}
.product-details-section .course-bg-image .course-name .information .btn-primary .fi {
  display: unset;
}
.product-details-section .course-bg-image .course-name .information .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.product-details-section .section-inner {
  display: grid;
  grid-template-columns: auto 400px;
  position: relative;
}
.product-details-section .main-info .info-inner {
  padding-left: 40px;
}
.product-details-section .video-preview video,
.product-details-section .video-preview iframe {
  width: 100% !important;
  border-radius: 15px !important;
}
.product-details-section .sub-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}
.product-details-section .sub-title .fi {
  margin-left: 15px;
  position: relative;
  top: 4px;
  font-size: 22px;
  color: #64748b;
}
.product-details-section .description {
  margin-top: 2.5rem;
}
.product-details-section .description p {
  font-size: 16px;
  text-align: justify;
}
.product-details-section .topics {
  margin-top: 2rem;
}
.product-details-section .collapses-gorup {
  margin-top: 1.5rem;
}
.product-details-section .collapses-gorup .collapse-item {
  margin-bottom: 10px;
}
.product-details-section .collapses-gorup .btn-primary {
  background: #f6f8fa;
  border: 1px solid #d9d9d9;
  border-radius: 12px 12px 0 0;
  display: grid;
  grid-template-columns: 48px auto;
  align-items: center;
  padding: 5px;
  height: 55px;
  width: 100%;
  text-align: right;
  font-size: 15px;
}
.product-details-section .collapses-gorup .btn-primary:hover, .product-details-section .collapses-gorup .btn-primary:focus {
  box-shadow: none !important;
}
.product-details-section .collapses-gorup .btn-primary .icon {
  width: 45px;
  height: 100%;
  position: relative;
  border-radius: 12px;
  background: rgba(16, 18, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details-section .collapses-gorup .btn-primary .icon::before {
  content: "\f626";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 22px;
  font-family: uicons-regular-straight;
  color: #64748b;
}
.product-details-section .collapses-gorup .btn-primary .name {
  padding-right: 20px;
  color: #1e293b;
  font-size: 16px;
}
.product-details-section .collapses-gorup .btn-primary.collapsed {
  border-radius: 12px;
}
.product-details-section .collapses-gorup .btn-primary.collapsed .icon::before {
  content: "\f4ed" !important;
}
.product-details-section .collapses-gorup .card {
  padding: 1rem 5rem 1rem 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 0 0 12px 12px;
  margin-top: -1px;
}
.product-details-section .collapses-gorup .card ul li {
  font-size: 16px;
  margin-top: 15px;
}
.product-details-section .collapses-gorup .card ul li:first-child {
  margin-top: 0;
}
.product-details-section .collapses-gorup .card ul li .fi {
  font-size: 14px;
  position: relative;
  top: 3px;
  margin-left: 10px;
  color: var(--textSilver);
}
.product-details-section .comments-section {
  margin-top: 2.5rem;
  box-shadow: none;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  padding: 20px;
}
.product-details-section .comments-section .sub-title {
  margin-bottom: 0;
}
.product-details-section .comments-section .comments-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-details-section .side-info {
  margin-top: -75px;
}
.product-details-section .side-info .info-inner {
  position: sticky;
  top: 30px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  padding: 20px;
  border-radius: 15px;
}
.product-details-section .price-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.product-details-section .price-content .real {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
}
.product-details-section .price-content .toman {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  margin-right: 10px;
}
.product-details-section .price-content .discount {
  font-size: 18px;
  font-weight: 500;
  text-decoration: line-through;
  color: #64748b;
}
.product-details-section .price-content .badge-off {
  background-color: #ef4444;
  display: inline-block;
  color: white;
  font-size: 16px;
  padding: 3px 8px 1px 8px;
  border-radius: 30px;
  margin-right: 15px;
}
.product-details-section .price-content .btn-primary {
  width: 100%;
  margin-top: 1.2rem;
}
.product-details-section .property {
  margin: 1rem 0;
}
.product-details-section .property ul {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  align-items: center;
}
.product-details-section .property li {
  padding: 5px;
}
.product-details-section .property li .prt-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(122, 73, 227, 0.1);
  padding: 15px 10px 10px 10px;
  border-radius: 10px;
}
.product-details-section .property li .icon {
  font-size: 28px;
  line-height: 0 !important;
  margin-bottom: 10px;
  color: #7a49e3;
}
.product-details-section .property li .text {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
}
.product-details-section .property li .text small {
  font-size: 13px;
  font-weight: 400;
  margin-right: 5px;
}
.product-details-section .course-info-list {
  margin-top: 2rem;
}
.product-details-section .course-info-list .sub-title {
  margin-bottom: 1rem;
}
.product-details-section .course-info-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 16px;
  position: relative;
}
.product-details-section .course-info-list ul li::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  width: 100%;
  height: 1px;
  border: 1px dashed #d9d9d9;
  z-index: -1;
}
.product-details-section .course-info-list ul .name {
  background-color: white;
  padding-left: 10px;
  color: #64748b;
}
.product-details-section .course-info-list ul .desc {
  background-color: white;
  padding-right: 10px;
  color: #1e293b;
  font-weight: 600;
}
.product-details-section .course-info-list ul a {
  color: #7a49e3;
}

@media (max-width: 1199px) {
  .product-details-section .section-inner {
    grid-template-columns: auto 300px;
  }
  .product-details-section .course-bg-image .course-name {
    width: calc(100% - 300px);
  }
  .product-details-section .property li .icon {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .product-details-section .property li .text {
    font-size: 15px;
  }
  .product-details-section .property li .text small {
    font-size: 11px;
  }
  .product-details-section .course-info-list ul li {
    font-size: 13px;
  }
  .product-details-section .course-info-list ul li::before {
    top: 20px;
  }
}
@media (max-width: 992px) {
  .product-details-section .section-inner {
    grid-template-columns: 100%;
  }
  .product-details-section .main-info {
    order: 2;
  }
  .product-details-section .main-info .info-inner {
    padding-left: 0;
  }
  .product-details-section .side-info {
    order: 1;
    margin-top: 20px;
  }
  .product-details-section .side-info .info-inner {
    box-shadow: none;
    border: 1px solid #d9d9d9;
  }
  .product-details-section .course-bg-image {
    min-height: 250px;
    height: auto;
  }
  .product-details-section .course-bg-image .course-name {
    width: 100%;
    right: 0;
    padding-left: 0;
  }
  .product-details-section .course-bg-image .course-name h2 {
    font-size: 20px;
  }
  .product-details-section .course-bg-image .course-name .information .btn-primary {
    padding: 0.5rem 2.8rem 0.5rem 1rem;
    font-size: 14px;
  }
  .product-details-section .course-bg-image .course-name .information .btn-primary.icon-right .fi {
    right: 10px;
    top: 7px;
  }
  .product-details-section .course-bg-image .course-name .information .btn-add-bookmark {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .product-details-section .course-info-list {
    margin-top: 0;
  }
  .product-details-section .course-info-list ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .product-details-section .course-info-list ul li {
    font-size: 14px;
    padding: 8px 20px;
    background-color: #f6f8fa;
    border: 1px solid #d9d9d9;
    border-radius: 10rem;
    margin: 5px 0 5px 10px;
  }
  .product-details-section .course-info-list ul li::before {
    display: none;
  }
  .product-details-section .course-info-list ul li .name,
  .product-details-section .course-info-list ul li .desc {
    background-color: transparent;
  }
  .product-details-section .course-info-list ul li .desc {
    padding-right: 0;
  }
  .product-details-section .price-content {
    margin-bottom: 20px;
  }
  .product-details-section .property {
    display: none;
  }
  .product-details-section .video-preview .video-inner {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-details-section {
    margin-top: 68px;
  }
  .product-details-section .course-bg-image {
    height: auto;
  }
  .product-details-section .course-bg-image .course-name {
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  .product-details-section .course-bg-image .course-name .information {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .product-details-section .course-bg-image .course-name {
    padding: 100px 20px 20px 20px;
  }
  .product-details-section .course-bg-image .course-name h2 {
    font-size: 18px;
  }
  .product-details-section .course-bg-image .course-name .information {
    flex-direction: column;
  }
  .product-details-section .course-bg-image .course-name .information ul,
  .product-details-section .course-bg-image .course-name .information .add-bookmark {
    width: 100%;
  }
  .product-details-section .course-bg-image .course-name .information ul {
    margin-bottom: 10px;
  }
  .product-details-section .course-info-list ul li {
    flex: 1 0 100%;
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    justify-content: flex-start;
    margin: 0;
  }
  .product-details-section .description p {
    font-size: 14px;
  }
  .product-details-section .video-preview .video-inner {
    width: 100%;
  }
  .product-details-section .collapses-gorup .btn-primary {
    height: 50px;
    font-size: 13px;
  }
  .product-details-section .collapses-gorup .btn-primary .icon {
    width: 40px;
  }
  .product-details-section .collapses-gorup .btn-primary .name {
    padding-right: 10px;
  }
  .product-details-section .collapses-gorup .card {
    padding-right: 4rem;
  }
  .product-details-section .collapses-gorup .card ul li {
    font-size: 13px;
  }
}
/*#endregion -------------- Product Details */
/*#region ----------------- Comments */
.comments-section {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
}
.comments-section .comments {
  padding: 0;
  margin: 2rem 0 0 0;
  list-style: none;
}
.comments-section .comments .comment .comment-wrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}
.comments-section .comments .comment .comment-wrap .comment-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.comments-section .comments .comment .comment-wrap .comment-info .commenter-thumb {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  overflow: hidden;
}
.comments-section .comments .comment .comment-wrap .comment-info .commenter-info {
  padding-right: 20px;
}
.comments-section .comments .comment .comment-wrap .comment-info .commenter-info span {
  display: block;
}
.comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.commenter-name {
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}
.comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.date {
  font-size: 13px;
  color: #94a3b8;
}
.comments-section .comments .comment .comment-wrap .comment-info .reply {
  margin-right: auto;
}
.comments-section .comments .comment .comment-wrap .comment-info .reply .reply-button {
  font-size: 13px;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  text-transform: uppercase;
  color: #1e293b;
  background: #f6f8fa;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 3px 10px;
}
.comments-section .comments .comment .comment-wrap .comment-info .reply .reply-button:hover {
  color: white;
  border-color: #7a49e3;
  background-color: #7a49e3;
}
.comments-section .comments .comment .comment-wrap .comment-info .reply .modal-body .comment-respond:before {
  height: 0;
  width: 0;
}
.comments-section .comments .comment .comment-wrap .comment-body {
  padding-top: 15px;
  color: #94a3b8;
}
.comments-section .comments .comment .comment-wrap .comment-body p {
  text-align: justify;
}
.comments-section .comments .comment .child-comment {
  margin: 30px 40px 10px 0;
}
.comments-section .comments .comment:last-child .comment-wrap {
  border-bottom: 0;
  padding-bottom: 0;
}
.comments-section .comments .comment:last-child .child-comment .comment:last-child .comment-wrap {
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  padding-bottom: 30px;
}
.comments-section .comments .comment.bg-grey {
  background-color: #f6f8fa;
  padding: 15px;
  border-radius: 10px;
}
.comments-section .comments .comment.bg-grey .child-comment {
  background-color: #e6ebf1;
  padding: 15px;
  margin: 20px 20px 0 0;
  border-radius: 10px;
}
.comments-section .comments .comment + .comment {
  margin-top: 30px;
}
.comments-section .view-all {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  -webkit-text-decoration: underline dashed #7a49e3;
          text-decoration: underline dashed #7a49e3;
}
.comments-section .view-all a {
  color: #7a49e3;
}

.comment-respond .form-check {
  margin: 1rem 0;
}
.comment-respond .buttons-group {
  text-align: left;
}

.rating-emoji-content {
  display: flex;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 160px;
  padding-bottom: 20px;
  width: 270px;
  margin: 0 auto;
  position: relative;
  background-color: white;
  border-radius: 20px;
}
.rating-emoji-content > input {
  display: none;
}
.rating-emoji-content > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: auto 5px 0 5px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}
.rating-emoji-content > input:checked ~ label,
.rating-emoji-content > input:checked ~ label ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}
.rating-emoji-content > input:not(:checked) ~ label:hover,
.rating-emoji-content > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating-1 {
  filter: grayscale(100%);
}

.emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.emoji-wrapper .emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}
.emoji-wrapper .emoji > img {
  margin: 15px 0;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.rating-input-5:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-100px);
}

.rating-input-4:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-200px);
}

.rating-input-3:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-300px);
}

.rating-input-2:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-400px);
}

.rating-input-1:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-500px);
}

@keyframes opacityDiv {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes opacityDivUp {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@media (max-width: 768px) {
  .comments-section .comments-title h4 {
    font-size: 17px;
  }
  .comments-section .comments-title .btn-primary {
    padding: 0.5rem 1.1rem;
    font-size: 14px;
  }
  .comments-section .comments .comment .comment-wrap {
    padding-bottom: 0.7rem;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.commenter-name {
    font-size: 15px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.date {
    font-size: 12px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-thumb {
    width: 48px;
    height: 48px;
  }
  .comments-section .comments .comment .comment-wrap .comment-body p {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 557px) {
  .comments-section .comments-title h4 {
    font-size: 16px;
  }
  .comments-section .comments-title .btn-primary {
    padding: 0.4rem 1rem;
    font-size: 13px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info {
    padding-right: 10px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.commenter-name {
    font-size: 13px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.date {
    font-size: 11px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-thumb {
    width: 42px;
    height: 42px;
  }
  .comments-section .comments .comment .comment-wrap .comment-body p {
    font-size: 12px;
  }
  .comments-section .comments .comment .child-comment {
    margin: 20px 20px 5px 0;
  }
}
/*#endregion -------------- Comments */
/*#region ----------------- Star Rating */
.star-rating-content {
  width: 270px;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.star-rating-content .input-star {
  display: none;
}
.star-rating-content .input-star:checked ~ .label-star:before {
  content: "\f2f6";
  color: #fbbf24;
  transition: all 0.25s;
  font-family: uicons-solid-straight;
}
.star-rating-content .input-star.star-5:checked ~ .label-star:before {
  color: #fbbf24;
  text-shadow: 0 0 20px #fbbf24;
}
.star-rating-content .label-star {
  float: right;
  padding: 6px;
  font-size: 28px;
  color: #fbbf24;
  transition: all 0.2s;
}
.star-rating-content .label-star::before {
  content: "\f2f4";
  font-family: uicons-regular-straight;
}
.star-rating-content .label-star:hover {
  transform: rotate(-15deg) scale(1.3);
}

/*#endregion -------------- Star Rating */
/*#region ----------------- Page Element */
.empty-box {
  margin: 3rem 0;
  text-align: center;
}
.empty-box .thumb {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #f6f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #94a3b8;
}
.empty-box .thumb .fi {
  display: flex;
}
.empty-box h6 {
  margin: 15px 0;
  text-align: center;
  color: #64748b;
  font-weight: 500;
}
.empty-box.border {
  border-radius: 15px;
  padding: 2rem 1rem;
}

/*#endregion -------------- Page Element */
/*#region ----------------- User Profile */
.user-dashboard-section {
  margin: 30px 0 100px 0;
}
.user-dashboard-section .grid-layout {
  display: grid;
  grid-template-columns: 320px calc(100% - 320px);
}
.user-dashboard-section .grid-user-menu {
  transition: all 0.3s ease-in-out;
}
.user-dashboard-section .grid-user-menu .grid-inner {
  border-radius: 20px;
  position: sticky;
  top: 30px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.user-dashboard-section .grid-main {
  padding-right: 20px;
}
.user-dashboard-section .grid-main .grid-inner {
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.user-dashboard-section .user-header {
  padding: 10px;
}
.user-dashboard-section .user-header .header-inner {
  padding: 25px 15px;
  background-color: #7a49e3;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.user-dashboard-section .user-header .header-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/wave.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
.user-dashboard-section .user-header .user-name span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 10px;
}
.user-dashboard-section .user-header .user-name h6 {
  font-size: 18px;
  font-weight: 500;
  color: white;
}
.user-dashboard-section .user-header .wallet {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-dashboard-section .user-header .wallet h6 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.user-dashboard-section .user-header .wallet h5 {
  font-size: 18px;
  color: white;
  margin-bottom: 0;
}
.user-dashboard-section .user-header .wallet h5 span {
  font-size: 14px;
  font-weight: 400;
}
.user-dashboard-section .user-menu {
  padding: 0 15px 15px 15px;
  position: relative;
}
.user-dashboard-section .user-menu .btn-user-menu {
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px;
  position: relative;
  width: 100%;
  transition: all 0.2s ease-in;
}
.user-dashboard-section .user-menu .btn-user-menu .fi {
  font-size: 22px;
  margin-left: 10px;
  color: #94a3b8;
  transition: all 0.2s ease-in;
  display: inline-flex;
}
.user-dashboard-section .user-menu .btn-user-menu:hover {
  background-color: #f6f8fa;
  color: #7a49e3;
}
.user-dashboard-section .user-menu .btn-user-menu:hover .fi {
  color: #7a49e3;
}
.user-dashboard-section .user-menu .btn-user-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 100%;
  border-radius: 8px;
  background-color: transparent;
  transform: translateY(-50%);
}
.user-dashboard-section .user-menu .badge {
  color: white;
  padding: 3px 6px;
  border-radius: 50px;
  font-size: 14px;
  margin-right: 10px;
}
.user-dashboard-section .user-menu .badge.badge-success {
  background-color: #00b854;
}
.user-dashboard-section .user-menu .badge.badge-error {
  background-color: #ef4444;
}
.user-dashboard-section .user-menu .badge.badge-info {
  background-color: #60a5fa;
}
.user-dashboard-section .user-menu .badge.badge-warning {
  background-color: #fbbf24;
}
.user-dashboard-section .user-menu .menu-item {
  position: relative;
  margin: 5px 0;
}
.user-dashboard-section .user-menu .menu-item.active .btn-user-menu {
  color: #53b176 !important;
  background-color: rgba(83, 177, 118, 0.1);
  font-weight: 400;
}
.user-dashboard-section .user-menu .menu-item.active .btn-user-menu::before {
  background-color: #53b176;
}
.user-dashboard-section .user-menu .menu-item.active .btn-user-menu .fi {
  color: #53b176;
}
.user-dashboard-section .main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  margin-top: 0;
}
.user-dashboard-section .main-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
}
.user-dashboard-section .main-title h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: right;
  color: #1e293b;
}
.user-dashboard-section .main-title .buttons-group .btn {
  padding: 0.5rem 1rem;
  display: inline-block;
}
.user-dashboard-section .main-title .buttons-group .btn.icon-left {
  padding-left: 2.2rem;
}
.user-dashboard-section .main-title .buttons-group .btn.icon-left .fi {
  top: 10px;
  display: flex;
  left: 10px;
}
.user-dashboard-section .main-title .buttons-group .btn.icon-right {
  padding-right: 2.2rem;
}
.user-dashboard-section .main-title .buttons-group .btn.btn-primary-outline:hover {
  background-color: #53b176 !important;
  color: white;
  border-color: #53b176;
}
.user-dashboard-section .main-title .buttons-group .btn-primary-outline {
  border-color: #94a3b8;
  color: #64748b;
}
.user-dashboard-section .main-body {
  padding: 10px 20px 40px 20px;
}
.user-dashboard-section .btns-action-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-grow: 1;
  margin-top: 2rem;
}
.user-dashboard-section .btns-action-main .btn {
  margin: 5px;
}
.user-dashboard-section .wallet-info {
  background-color: #f6f8fa;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.user-dashboard-section .wallet-info .info-inner h2 {
  font-size: 16px;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 10px;
}
.user-dashboard-section .wallet-info .info-inner .price {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0;
}
.user-dashboard-section .wallet-info .info-inner .price span {
  font-size: 14px;
  font-weight: 400;
}
.user-dashboard-section .wallet-info .btns-wallet {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.user-dashboard-section .wallet-info .btns-wallet .btn {
  flex-grow: 1;
  margin: 5px;
  white-space: nowrap;
}

.btn-usermenu {
  background-color: white;
  display: none;
  grid-template-columns: 48px auto;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.btn-usermenu .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(122, 73, 227, 0.1);
  color: #7a49e3;
  border-radius: 50%;
  font-size: 24px;
  border: 1px solid #7a49e3;
}
.btn-usermenu .icon .fi {
  display: inline-flex;
}
.btn-usermenu .text {
  padding-right: 10px;
}
.btn-usermenu .text h4 {
  margin-bottom: 0;
  color: #1e293b;
  font-size: 16px;
}
.btn-usermenu .text p {
  margin-bottom: 0;
  font-size: 14px;
  color: #64748b;
}

.btn-closeprofileMenu {
  position: absolute;
  left: 15px;
  top: 18px;
  width: 40px;
  height: 40px;
  color: #64748b;
  background-color: transparent;
  border: none;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 50%;
  color: white;
  opacity: 0.7;
  z-index: 10;
}
.btn-closeprofileMenu:hover {
  opacity: 1;
}

.overlay-userMenu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1998;
  opacity: 0;
  transition: all 0.3s;
}
.overlay-userMenu.active {
  display: block;
  opacity: 1;
}

.cards-list .list-title {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 20px;
}
.cards-list .list-title span {
  margin: 0 5px;
  font-weight: 800;
  font-size: 20px;
}

.course-details-section .course-video-preview {
  width: 100%;
  margin-bottom: 30px;
}
.course-details-section .course-video-preview video,
.course-details-section .course-video-preview iframe {
  width: 100%;
  border-radius: 15px;
  margin: 0 auto;
}
.course-details-section .course-video-preview .information {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-details-section .course-video-preview .video-info .vid-name {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
}
.course-details-section .course-video-preview .video-info .vid-time {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
}
.course-details-section .course-video-preview .send-comment .btn-primary {
  padding: 0.65rem 1.2rem;
  font-size: 14px;
}
.course-details-section .course-video-preview .send-comment .btn-primary .fi {
  margin-left: 10px;
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.course-season-list .collapse-item {
  margin-bottom: 10px;
}
.course-season-list .collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px 12px 0 0;
  background-color: #f6f8fa;
  padding: 10px 20px;
  min-height: 59px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid #d9d9d9;
}
.course-season-list .collapse-header .info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.course-season-list .collapse-header .icon {
  text-align: left;
}
.course-season-list .collapse-header .icon .icon-inner {
  margin-right: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: all 0.2s ease;
  transform: rotate(-90deg);
  color: #64748b;
}
.course-season-list .collapse-header .icon .icon-inner .fi {
  font-size: 24px;
  line-height: 0;
  color: #94a3b8;
}
.course-season-list .collapse-header .name {
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  display: flex;
}
.course-season-list .collapse-header .name .fi {
  margin-left: 10px;
  font-size: 22px;
  line-height: 0 !important;
  color: #94a3b8;
}
.course-season-list .collapse-header .name span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-season-list .collapse-header .number {
  text-align: left;
  font-size: 13px;
  font-weight: 400;
  color: #1e293b;
  margin-left: 20px;
}
.course-season-list .collapse-header.collapsed {
  border-radius: 12px;
}
.course-season-list .collapse-header.collapsed .icon .icon-inner {
  transition: all 0.2s ease;
  transform: rotate(0);
}
.course-season-list .card {
  border: 1px solid #d9d9d9;
  margin-top: -1px;
  border-radius: 0 0 12px 12px;
}
.course-season-list .card p {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
}
.course-season-list .card .item {
  background-color: white;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-season-list .card .item:hover .sub-info {
  background-color: #f6f8fa;
}
.course-season-list .card .item .sub-info {
  flex-grow: 1;
  display: grid;
  grid-template-columns: auto 100px 34px;
  align-items: center;
  padding: 8px 20px 8px 8px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
}
.course-season-list .card .item .name {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-season-list .card .item .time {
  font-size: 13px;
  font-weight: 300;
  padding-left: 15px;
  text-align: left;
}
.course-season-list .card .item .icon {
  width: 34px;
  height: 34px;
  background-color: #7a49e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.course-season-list .card .item .icon .fi {
  display: flex;
}

.card-reserve {
  margin-bottom: 15px;
}
.card-reserve .card-inner {
  border: 1px solid #d9d9d9;
  display: grid;
  grid-template-columns: auto 180px;
  border-radius: 10px;
}
.card-reserve .c-info {
  padding: 15px;
}
.card-reserve .c-info .c-title {
  font-size: 16px;
  color: #1e293b;
  display: flex;
  align-items: center;
}
.card-reserve .c-info .c-title .fi {
  margin-left: 10px;
  font-size: 18px;
  color: #64748b;
}
.card-reserve .c-info ul {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-right: 30px;
}
.card-reserve .c-info ul li {
  flex: 1 0 50%;
  width: 50%;
  margin: 3px 0;
  color: #64748b;
  font-size: 14px;
}
.card-reserve .c-info ul li span {
  color: #1e293b;
  display: inline-block;
}
.card-reserve .c-info ul li span.success {
  background-color: #00b854;
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
}
.card-reserve .c-info ul li span.info {
  background-color: #60a5fa;
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
}
.card-reserve .c-info ul li span.error {
  background-color: #ef4444;
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
}
.card-reserve .c-info ul li span.warning {
  background-color: #fbbf24;
  color: #1e293b;
  padding: 4px 8px;
  border-radius: 8px;
}
.card-reserve .c-action {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid #d9d9d9;
}
.card-reserve .c-action .btn {
  width: 100%;
  margin: 5px 0;
  padding: 0.6rem 1rem;
  font-size: 14px;
}

.card-transaction {
  margin-bottom: 15px;
}
.card-transaction .card-inner {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 10px 15px;
}
.card-transaction .list-info {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-transaction .list-info li {
  flex: 1 0 50%;
  width: 50%;
  margin: 3px 0;
  color: #64748b;
  font-size: 14px;
}
.card-transaction .list-info li span {
  color: #1e293b;
  display: inline-block;
}
.card-transaction .list-info li span.success {
  background-color: #00b854;
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
}
.card-transaction .list-info li span.info {
  background-color: #60a5fa;
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
}
.card-transaction .list-info li span.error {
  background-color: #ef4444;
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
}
.card-transaction .list-info li span.warning {
  background-color: #fbbf24;
  color: #1e293b;
  padding: 4px 8px;
  border-radius: 8px;
}

@media (max-width: 1199px) {
  .user-dashboard-section .grid-layout {
    grid-template-columns: 280px calc(100% - 280px);
  }
  .user-dashboard-section .wallet-info {
    flex-direction: column;
  }
  .user-dashboard-section .wallet-info .info-inner {
    margin-bottom: 15px;
  }
  .card-reserve .c-info ul li {
    flex: 1 0 100%;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .user-dashboard-section .grid-layout {
    grid-template-columns: 100%;
  }
  .user-dashboard-section .grid-user-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    z-index: 1999;
  }
  .user-dashboard-section .grid-user-menu .grid-inner {
    position: relative;
    top: 0;
    z-index: 2000;
    height: 100%;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px 0 0 15px;
    border: none;
  }
  .user-dashboard-section .grid-user-menu.active {
    right: 0;
  }
  .user-dashboard-section .user-image {
    padding-top: 45px;
  }
  .user-dashboard-section .grid-main {
    padding: 0;
  }
  .user-dashboard-section .main-title {
    border-radius: 10px 10px 0 0;
  }
  .user-dashboard-section .main-body {
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 15px 10px;
  }
  .btn-closeprofileMenu,
  .btn-usermenu {
    display: flex;
  }
}
@media (max-width: 768px) {
  .user-dashboard-section {
    margin-top: 88px;
  }
  .cards-list .list-title {
    font-size: 16px;
  }
  .card-reserve .card-inner {
    grid-template-columns: 100%;
  }
  .card-reserve .c-info {
    padding: 10px;
  }
  .card-reserve .c-info .c-title {
    font-size: 14px;
  }
  .card-reserve .c-info ul li {
    font-size: 13px;
  }
  .card-reserve .c-action {
    border: none;
    border-top: 1px solid #d9d9d9;
    flex-direction: row;
    padding: 5px;
  }
  .card-reserve .c-action .btn {
    margin: 5px;
    white-space: nowrap;
    flex-grow: 1;
    padding: 0.5rem 1rem;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .user-dashboard-section .main-title {
    margin-bottom: 0;
  }
  .user-dashboard-section .main-title .buttons-group .btn {
    padding: 5px !important;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    min-width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .user-dashboard-section .main-title .buttons-group .btn::after {
    display: none;
  }
  .user-dashboard-section .main-title .buttons-group .btn .fi {
    font-size: 24px;
    margin: 0;
    position: unset;
  }
  .user-dashboard-section .main-title .buttons-group .btn span {
    display: none;
  }
  .user-dashboard-section .wallet-info .btns-action {
    flex: 1 0 100%;
    width: 100%;
  }
  .user-dashboard-section .wallet-info .btns-action .btn {
    display: block;
    margin: 10px 0;
    width: 100%;
  }
  .course-season-list .card {
    padding: 10px;
  }
  .course-season-list .card .item .sub-info {
    padding: 5px 15px 5px 5px;
  }
  .card-transaction .list-info li {
    flex: 1 0 100%;
    width: 100%;
  }
}
@media (max-width: 350px) {
  .user-dashboard-section .grid-user-menu {
    width: 100%;
    right: -400px;
  }
  .user-dashboard-section .grid-user-menu .grid-inner {
    border-radius: 0;
  }
  .card-reserve .c-action {
    flex-direction: column;
  }
}
/*#endregion -------------- User Profile */
/*#region ----------------- Cart */
.cart-section {
  margin: 30px 0 100px 0;
}
.cart-section .section-inner {
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  width: 800px;
  margin: 0 auto;
}

.empty-basket .empty-inner {
  background-color: #f6f8fa;
  border-radius: 15px;
  width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 1rem;
}
.empty-basket .icon .fi {
  font-size: 64px;
  color: #94a3b8;
}
.empty-basket h1 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1e293b;
}

.cart-header {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid #d9d9d9;
}
.cart-header h1 {
  font-size: 20px;
  margin-bottom: 0;
}
.cart-header h1 span {
  font-size: 16px;
  margin-right: 10px;
  font-weight: 600;
  color: #64748b;
}

.cart-body {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.card-basket {
  margin-bottom: 1rem;
}
.card-basket .card-inner {
  background-color: #f6f8fa;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 170px auto;
  padding: 10px;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
.card-basket .img-container {
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin: 0;
}
.card-basket .img-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-basket .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}
.card-basket .info {
  padding: 10px 15px 0 10px;
}
.card-basket .info .name h2 {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.card-basket .info .name h2 a {
  color: #1e293b;
}
.card-basket .info .name h2:hover a {
  color: #7a49e3;
}
.card-basket .info .name .teacher {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 0;
}
.card-basket .price-content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  margin-top: 10px;
}
.card-basket .price-content .real {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
}
.card-basket .price-content .toman {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  margin-right: 10px;
}
.card-basket .price-content .discount {
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
  color: #94a3b8;
}
.card-basket .price-content .badge-off {
  background-color: #ef4444;
  display: inline-block;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 8px 1px 8px;
  border-radius: 30px;
  margin-right: 15px;
}
.card-basket .price-content .btn-primary {
  width: 100%;
  margin-top: 1.2rem;
}
.card-basket .btn-delete {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(239, 68, 68, 0.5);
  color: white;
  border: 1px solid #ef4444;
  padding: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.card-basket .btn-delete .fi {
  font-size: 20px;
  position: relative;
  line-height: 0 !important;
}
.card-basket:hover .card-inner {
  border-color: #d9d9d9;
}

.cart-code {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
  padding: 1.5rem;
}
.cart-code h2 {
  color: #7a49e3;
  font-size: 16px;
  font-weight: 600;
}
.cart-code p {
  font-size: 14px;
  margin-bottom: 0;
}
.cart-code .input-group {
  width: 500px;
  margin: 20px auto 0 auto;
}
.cart-code .input-group .form-control {
  border-radius: 0 10rem 10rem 0;
}
.cart-code .input-group .form-control:hover, .cart-code .input-group .form-control:focus {
  box-shadow: none;
  border-color: #7a49e3;
}

.cart-footer {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-footer .paid {
  text-align: left;
}
.cart-footer .paid h5 {
  font-size: 14px;
  color: #64748b;
}
.cart-footer .paid h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  color: #1e293b;
}

@media (max-width: 992px) {
  .cart-section .section-inner {
    width: 100%;
  }
  .empty-basket .empty-inner {
    width: 100%;
  }
  .cart-header h1 {
    font-size: 18px;
  }
  .cart-header h1 span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .cart-section {
    margin-top: 20px;
  }
  .cart-header {
    padding: 1.5rem;
  }
  .cart-header h1 {
    font-size: 16px;
  }
  .cart-header h1 span {
    font-size: 13px;
  }
  .cart-body {
    padding: 1rem;
  }
  .cart-code {
    padding: 1rem;
  }
  .cart-code .input-group {
    width: 100%;
  }
  .cart-code .input-group .btn {
    padding: 0.5rem 1.2rem;
    font-size: 13px;
  }
  .cart-code .input-group .form-control {
    padding: 2px 10px;
  }
  .cart-code h2 {
    font-size: 14px;
  }
  .cart-footer {
    padding: 1rem;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cart-footer .paid {
    margin-bottom: 1rem;
    text-align: center;
  }
  .cart-footer .button-group {
    flex: 0 0 100%;
    width: 100%;
  }
  .cart-footer .button-group .btn {
    width: 100%;
  }
  .card-basket .card-inner {
    padding: 6px;
    grid-template-columns: 130px auto;
  }
  .card-basket .info .name h2 {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
  .card-basket .info .name .teacher {
    font-size: 12px;
  }
  .card-basket .price-content {
    margin-top: 5px;
  }
  .card-basket .price-content .discount {
    font-size: 13px;
  }
  .card-basket .price-content .badge-off {
    font-size: 12px;
  }
  .card-basket .price-content .real {
    font-size: 15px;
  }
  .card-basket .price-content .toman {
    font-size: 12px;
  }
  .card-basket .img-container {
    height: 100px;
  }
  .card-basket .btn-delete {
    transform: scale(1);
    opacity: 0.7;
    width: 34px;
    height: 34px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .card-basket .btn-delete .fi {
    font-size: 18px;
  }
  .card-basket:hover .btn-delete {
    opacity: 1;
  }
}
@media (max-width: 350px) {
  .card-basket .card-inner {
    padding: 10px;
    grid-template-columns: 100%;
  }
  .card-basket .img-container {
    display: none;
  }
  .card-basket .btn-delete {
    bottom: 7px;
    right: 7px;
    top: unset;
    background-color: white;
    color: #ef4444;
  }
  .card-basket .info {
    padding: 0;
  }
}
/*#endregion -------------- Cart */
/*#region ----------------- MasterPage */
.masterpage-section {
  margin: 0 0 120px 0;
}
.masterpage-section .description p {
  text-align: justify;
}

.master-title {
  text-align: center;
  margin: 3rem 0;
}
.master-title h2 {
  font-size: 24px;
  font-weight: 800;
}

.contact-us-section {
  display: grid;
  grid-template-columns: 50% 50%;
}
.contact-us-section .grid-contact {
  padding: 0 0 0 10px;
}
.contact-us-section .grid-form {
  padding: 0 10px 0 0;
}
.contact-us-section .contant-inner {
  background-color: white;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}
.contact-us-section .contant-inner h6 {
  font-size: 16px;
  color: #1e293b;
  line-height: 27px;
}
.contact-us-section .contact-list {
  margin: 40px 0 0 0;
  text-align: right;
}
.contact-us-section .contact-list li {
  margin: 15px 0;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 15px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: #1e293b;
  background: linear-gradient(90deg, rgba(122, 73, 227, 0.05) 0%, white 100%);
  border: 1px solid #d9d9d9;
}
.contact-us-section .contact-list li a {
  color: #1e293b;
}
.contact-us-section .contact-list li .fi {
  position: absolute;
  left: -3px;
  bottom: -10px;
  font-size: 48px;
  color: #94a3b8;
  transform: rotate(15deg);
  list-style: 0 !important;
  display: flex !important;
}
.contact-us-section .buttons-group {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .contact-us-section {
    grid-template-columns: 100%;
  }
  .contact-us-section .grid-contact {
    padding: 0 0 10px 0;
  }
  .contact-us-section .grid-form {
    padding: 10px 0 0 0;
  }
}
@media (max-width: 768px) {
  .masterpage-section {
    margin-top: 120px;
  }
}
@media (max-width: 575px) {
  .contact-us-section .buttons-group .btn {
    width: 100%;
  }
}
/*#endregion -------------- MasterPage */
/*#region ----------------- Transactions */
.payment-content .section-inner {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 650px;
  border: 1px solid #d9d9d9;
  margin: 40px auto 100px auto;
}
.payment-content.success .payment-header h2 {
  color: #00b854;
}
.payment-content.success .payment-header .thumb {
  background-image: url(../images/payment-success.svg);
}
.payment-content.error .payment-header h2 {
  color: #ef4444;
}
.payment-content.error .payment-header .thumb {
  background-image: url(../images/payment-error.svg);
}
.payment-content .payment-header {
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
}
.payment-content .payment-header h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: normal;
}
.payment-content .payment-header .thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background-size: 100%;
  margin-bottom: 1rem;
}
.payment-content .list {
  margin-top: 2rem;
}
.payment-content .list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
}
.payment-content .list li::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  border: 1px dashed #d9d9d9;
  z-index: -1;
}
.payment-content .list li span {
  font-size: 14px;
  display: block;
  background-color: white;
}
.payment-content .list li .title {
  font-weight: 400;
  color: #64748b;
  padding-left: 10px;
}
.payment-content .list li .desc {
  font-weight: 500;
  color: #1e293b;
  padding-right: 10px;
}
.payment-content .list li .error {
  color: #ef4444;
}
.payment-content .list li .success {
  color: #7a49e3;
}
.payment-content .list li .toman {
  margin-right: 3px;
}
.payment-content .button-group {
  margin-top: 2rem;
  text-align: center;
}
.payment-content .button-group .btn {
  min-width: 170px;
}

@media (max-width: 768px) {
  .payment-content .section-inner {
    margin-top: 110px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .payment-content .button-group .btn {
    width: 100%;
    margin: 5px 0;
  }
}
/*#endregion -------------- Transactions */
/*#region ----------------- Page Error */
.error-section {
  margin: 120px 0;
}
.error-section .error-inner {
  background-color: #f6f8fa;
  width: 700px;
  border-radius: 20px;
  margin: 0 auto;
  text-align: center;
  padding: 0 3rem 3rem 3rem;
  position: relative;
  z-index: 10;
}
.error-section .number {
  font-size: 120px;
  font-weight: 800;
  line-height: normal;
  text-shadow: -8px 0 #fff, 0 8px #fff, 8px 0 #fff, 0 -8px #fff;
  position: relative;
  top: -70px;
  color: #1e293b;
}
.error-section h2 {
  position: relative;
  top: -50px;
  font-size: 22px;
  font-weight: 600;
  color: #1e293b;
}
.error-section p {
  position: relative;
  top: -30px;
  font-size: 16px;
  color: #64748b;
}

@media (max-width: 992px) {
  .error-section {
    margin-top: 210px;
  }
  .error-section .number {
    font-size: 110px;
    top: -65px;
  }
}
@media (max-width: 768px) {
  .error-section .error-inner {
    width: 100%;
    padding: 0 2rem 2rem 2rem;
  }
  .error-section .number {
    font-size: 100px;
    top: -60px;
  }
  .error-section h2 {
    font-size: 18px;
  }
  .error-section p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .error-section {
    margin-top: 180px;
  }
  .error-section .error-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .error-section .number {
    font-size: 90px;
    top: -55px;
  }
  .error-section h2 {
    font-size: 16px;
  }
  .error-section p {
    font-size: 12px;
  }
}
/*#endregion -------------- Page Error */