/* Hover Transistion */
/* Custom scroll Bar */
/* Custom Table scroll Bar */
/* Custom scroll Bar Inner */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(202, 202, 202, 0.58);
  z-index: 1400;
  display: none;
}

.main-header ul {
  padding: 0;
}
.main-header ul li {
  list-style: none;
  padding: 0;
}
.main-header .navBarContact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.main-header .topbar_list {
  gap: 10px;
}
.main-header .topbar_list li {
  position: relative;
}
.main-header .cart_number {
  position: relative;
  cursor: pointer;
}
.main-header .cart_number a,
.main-header .cart_number button,
.main-header .profile_icon > button {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1.5px solid #e8e9ec;
}
@media all and (max-width: 767px) {
  .main-header .cart_number a,
.main-header .cart_number button,
.main-header .profile_icon > button {
    transition: 0.5s;
    width: 40px;
    height: 40px;
  }
}
.main-header .cart_number a:hover .header_list_icon path,
.main-header .cart_number button:hover .header_list_icon path,
.main-header .profile_icon > button:hover .header_list_icon path {
  stroke: #29abe2;
}
.main-header .cart_number::before {
  content: attr(data-number);
  position: absolute;
  right: 7px;
  top: 6px;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  background: #f2994a;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  min-width: 18px;
  min-height: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 767px) {
  .main-header .cart_number::before {
    transition: 0.5s;
    top: 0;
    right: 4px;
  }
}
.main-header .profile_icon:hover {
  opacity: 1 !important;
}
.main-header .profile_icon .profile_dropdwon {
  position: absolute;
  top: 65px;
  right: 0;
  z-index: 40;
  background: #ffffff;
  border: 1.5px solid #f4f4f4;
  box-sizing: border-box;
  width: 245px;
  padding: 16px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .main-header .profile_icon .profile_dropdwon {
    transition: 0.5s;
    right: 0;
    top: auto;
    bottom: -20px;
  }
}
@media all and (max-width: 767px) {
  .main-header .profile_icon .profile_dropdwon {
    transition: 0.5s;
    left: -130px;
  }
}
.main-header .profile_icon .profile_dropdwon.profile_dropdown_active {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 991px) {
  .main-header .profile_icon .profile_dropdwon.profile_dropdown_active {
    transition: 0.5s;
    right: 0;
    top: auto;
    bottom: -20px;
  }
}
@media all and (max-width: 767px) {
  .main-header .profile_icon .profile_dropdwon.profile_dropdown_active {
    transition: 0.5s;
    left: -130px;
  }
}
.main-header .profile_icon .profile_dropdwon li {
  padding: 12px 0;
}
.main-header .profile_icon .profile_dropdwon li:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
.main-header .profile_icon .profile_dropdwon li:hover path {
  stroke: #2c97c5;
}
.main-header .profile_icon .profile_dropdwon li:hover span {
  color: rgba(66, 76, 96, 0.785);
}
.main-header .profile_icon .profile_dropdwon li a,
.main-header .profile_icon .profile_dropdwon li button {
  display: flex;
  align-items: center;
  border: none;
}
.main-header .profile_icon .profile_dropdwon span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #424c60;
  margin-left: 12px;
}
.main-header .cart_product_area {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 100;
  width: 340px;
  background: #ffffff;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 15px 15px;
  padding: 10px 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media (min-width: 991px) and (max-width: 1199px) {
  .main-header .cart_product_area {
    transition: 0.5s;
    right: auto;
    left: 0;
  }
}
@media all and (max-width: 991px) {
  .main-header .cart_product_area {
    transition: 0.5s;
    top: auto;
    right: -100px;
    bottom: -20px;
    margin-right: 0;
  }
}
@media all and (max-width: 767px) {
  .main-header .cart_product_area {
    transition: 0.5s;
    right: -177px;
  }
}
@media all and (max-width: 350px) {
  .main-header .cart_product_area {
    transition: 0.5s;
    width: 250px;
  }
}
.main-header .cart_product_area .cart_product_item_wrapper {
  max-height: 300px;
  overflow-y: scroll;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.main-header .cart_product_area .cart_product_item_wrapper::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.main-header .cart_product_area .cart_product_item_wrapper::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.main-header .cart_product_area .cart_product_item_wrapper::-webkit-scrollbar-thumb {
  background: #29abe2;
  border-radius: 5px;
}
.main-header .cart_product_area .cart_product_item_wrapper::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: -webkit-grab;
  cursor: grab;
}
.main-header .cart_product_area .cart_product_item {
  gap: 10px 30px;
  padding: 10px 0;
  margin-right: 20px;
  border-bottom: 1px solid #cdd0d5;
}
@media all and (max-width: 350px) {
  .main-header .cart_product_area .cart_product_item {
    transition: 0.5s;
    gap: 10px 10px;
  }
}
.main-header .cart_product_area .cart_product_grid {
  display: grid;
  grid-template-columns: minmax(0, 65px) minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}
.main-header .cart_product_area .cart_img a {
  display: block;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.main-header .cart_product_area .cart_img img {
  width: 65px;
  height: 65px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-header .cart_product_area .cart_content h3,
.main-header .cart_product_area .cart_content h4,
.main-header .cart_product_area .cart_content h5 {
  margin: 0;
}
.main-header .cart_product_area .cart_content a {
  display: block;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.main-header .cart_product_area .cart_content h3 a {
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  color: #13192b;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}
.main-header .cart_product_area .cart_content h3 a:hover {
  opacity: 0.9;
}
.main-header .cart_product_area .cart_content h5 a {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  color: #6b7280;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}
.main-header .cart_product_area .cart_content h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #13192b;
}
.main-header .cart_product_area .delete_btn {
  max-width: 20px;
  margin-right: 16px;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.main-header .cart_product_area .delete_btn:hover path {
  stroke: #f2994a;
}
.main-header .cart_product_area .cart_button_area {
  padding-right: 16px;
}
.main-header .cart_product_area .cart_page_link {
  margin-right: 20px;
  margin-top: 20px;
}
.main-header .cart_product_area .cart_page_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 40px !important;
  background: #29abe2 !important;
  border-radius: 10px !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #ffffff;
  border-radius: 0 !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
}
.main-header .cart_product_area .cart_page_link a:hover {
  background: #2c97c5 !important;
}
.main-header .cart_dropdown_active {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 991px) {
  .main-header .cart_dropdown_active {
    transition: 0.5s;
    top: auto !important;
    right: -100px;
    bottom: -20px;
    margin-right: 0;
  }
}
@media all and (max-width: 767px) {
  .main-header .cart_dropdown_active {
    transition: 0.5s;
    right: -177px;
  }
}

.sign_up_wrapper {
  margin-top: 100px;
}
.sign_up_wrapper .sign_up_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 450px);
  gap: 24px 100px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sign_up_wrapper .sign_up_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px 20px;
  }
}
@media all and (max-width: 767px) {
  .sign_up_wrapper .sign_up_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.sign_up_wrapper .sign_up_form_area {
  padding: 32px 35px;
  background: #fbfbfb;
  border-radius: 30px;
}

.forget_password_wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
  background: #fbfbfb;
}
.forget_password_wrapper .forget_form_area {
  background: #ffffff;
  border-radius: 30px;
  padding: 30px 60px;
  width: 570px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 575px) {
  .forget_password_wrapper .forget_form_area {
    transition: 0.5s;
    padding: 20px;
  }
}
.forget_password_wrapper .form_title_area h3 {
  font-weight: 600 !important;
  font-size: 32px !important;
  line-height: 160% !important;
  color: #424c60;
  margin-bottom: 8px;
}
@media all and (max-width: 575px) {
  .forget_password_wrapper .form_title_area h3 {
    transition: 0.5s;
    font-size: 26px !important;
  }
}
@media all and (min-width: 576px) {
  .forget_password_wrapper .form_title_area h5 {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding: 0 8%;
  }
}

.successfull_wrapper {
  margin-top: 60px;
}
.successfull_wrapper .successfull_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}
@media all and (max-width: 767px) {
  .successfull_wrapper .successfull_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.successfull_wrapper .successfull_content {
  margin-top: 80px;
}
@media all and (max-width: 767px) {
  .successfull_wrapper .successfull_content {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.successfull_wrapper .successfull_content h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 20px;
}
@media all and (max-width: 991px) {
  .successfull_wrapper .successfull_content h2 {
    transition: 0.5s;
    font-size: 35px;
    line-height: 130%;
  }
}
.successfull_wrapper .successfull_content p {
  color: #424c60;
}
@media all and (max-width: 767px) {
  .successfull_wrapper .successful_img {
    transition: 0.5s;
    grid-row: 1/2;
  }
}
.successfull_wrapper .successfull_button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 25px;
  margin-top: 40px;
}
@media all and (max-width: 991px) {
  .successfull_wrapper .successfull_button {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.successfull_wrapper .successfull_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  width: 100%;
  height: 62px;
}
.successfull_wrapper .successfull_button .success_home_btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #ffffff;
  background: #74c247;
}
.successfull_wrapper .successfull_button .success_home_btn:hover {
  background: rgba(116, 194, 71, 0.842);
}
.successfull_wrapper .successfull_button .success_shipping_btn {
  border: 1.5px solid #e65c6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #e65c6a;
}
.successfull_wrapper .successfull_button .success_shipping_btn:hover {
  background-color: #fbfbfb;
}

.notification_wrapper .notification_content_wrapper {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  .notification_wrapper .notification_content_wrapper {
    transition: 0.5s;
    width: 90%;
  }
}
.notification_wrapper .notification_title {
  margin-top: 30px;
  margin-bottom: 20px;
}
.notification_wrapper .notification_title .cart_title {
  margin: 0;
}
.notification_wrapper .notification_title button {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #e65c6a;
}
.notification_wrapper .notification_title button:hover {
  color: rgba(230, 92, 106, 0.849);
}
.notification_wrapper .notification_list_area li {
  padding: 20px 0;
  border-top: 1.5px solid #e8e9ec;
}
.notification_wrapper .notification_list_area .notification_list {
  display: grid;
  grid-template-columns: minmax(0, 48px) minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}
.notification_wrapper .notification_list_area .notification_img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
}
.notification_wrapper .notification_list_area .notification_img:hover {
  opacity: 0.8;
}

.category_product_title h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  color: #13192b;
}
.category_product_title h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #6b7280;
  margin-top: 4px;
}
.category_product_title h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #6b7280;
}
.category_product_title .mobile_product_list_icon {
  cursor: pointer;
  display: none;
}
@media all and (max-width: 767px) {
  .category_product_title .mobile_product_list_icon {
    transition: 0.5s;
    display: block;
  }
}
.category_product_title select {
  min-width: 150px;
  height: 35px;
  border: 1px solid #2c97c5;
  border-radius: 5px;
  padding: 0 5px;
  outline: none;
}
.category_product_title .nice-select {
  min-width: 200px;
  background: #f7f7f7;
  margin-bottom: 0;
}

.pagination_list {
  margin-top: 40px;
}
@media all and (max-width: 575px) {
  .pagination_list {
    transition: 0.5s;
    justify-content: center;
  }
}
.pagination_list a,
.pagination_list button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 39px;
  background: #e8e9ec;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #424c60;
  padding: 0 6px;
}
.pagination_list a:not(.pagination_list a.active_pagination,
.pagination_list button.active_pagination):hover,
.pagination_list button:not(.pagination_list a.active_pagination,
.pagination_list button.active_pagination):hover {
  background: #cfcfcf;
}
.pagination_list .active_pagination a {
  color: white;
  background: #74c247;
}

.profile_content_title_area {
  position: relative;
  padding-bottom: 20px;
}
.profile_content_title_area::before {
  content: " ";
  position: absolute;
  left: -35px;
  bottom: 0;
  width: calc(100% + 85px);
  height: 1.5px;
  background-color: #e8e9ec;
}
@media all and (max-width: 575px) {
  .profile_content_title_area::before {
    transition: 0.5s;
    left: -20px;
    width: calc(100% + 50px);
  }
}
.profile_content_title_area h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 160%;
  color: #424c60;
}
.profile_content_title_area h3 span {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: #74c247;
}

.profile_account_wrapper {
  margin-top: 40px;
}
.profile_account_wrapper ul {
  padding: 0;
}
.profile_account_wrapper ul li {
  list-style: none;
}
.profile_account_wrapper h1,
.profile_account_wrapper h3,
.profile_account_wrapper h4,
.profile_account_wrapper h4,
.profile_account_wrapper h5,
.profile_account_wrapper h6 {
  margin: 0;
}
.profile_account_wrapper .profile_title_area {
  margin-bottom: 30px;
}
.profile_account_wrapper #profileSidebarIcon {
  display: none;
}
@media all and (max-width: 991px) {
  .profile_account_wrapper #profileSidebarIcon {
    transition: 0.5s;
    display: block;
  }
}
.profile_account_wrapper .profile_title_area button img {
  width: 20px;
  height: 24px;
}
.profile_account_wrapper .profile_sidebar_grid_area {
  display: grid;
  grid-template-columns: minmax(0, 275px) minmax(0, 1fr);
  align-items: start;
  gap: 20px 50px;
}
@media all and (max-width: 991px) {
  .profile_account_wrapper .profile_sidebar_grid_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.profile_account_wrapper .profile_sidebar_area {
  background: #fbfbfb;
}
@media all and (max-width: 991px) {
  .profile_account_wrapper .profile_sidebar_area {
    transition: 0.5s;
    position: fixed;
    top: 0;
    left: -100%;
    width: 50vw;
    height: 100vh;
    background: #eaeaea;
    z-index: 999999999;
    overflow-y: auto;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
    overflow-y: auto;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
  .profile_account_wrapper .profile_sidebar_area::-webkit-scrollbar {
    width: 5px;
  }
  .profile_account_wrapper .profile_sidebar_area::-webkit-scrollbar-track {
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
    width: 5px;
  }
  .profile_account_wrapper .profile_sidebar_area::-webkit-scrollbar-thumb {
    background: #f84f4f;
    border-radius: 5px;
    width: 5px;
  }
  .profile_account_wrapper .profile_sidebar_area::-webkit-scrollbar-thumb:hover {
    background: #74c247;
    cursor: -webkit-grab;
    cursor: grab;
  }
}
@media all and (max-width: 575px) {
  .profile_account_wrapper .profile_sidebar_area {
    transition: 0.5s;
    width: 80vw;
  }
}
.profile_account_wrapper .profile_user_area {
  padding: 24px;
  gap: 10px 20px;
}
.profile_account_wrapper .profile_user_area h4,
.profile_account_wrapper .profile_user_area h5 {
  margin: 0;
}
.profile_account_wrapper .profile_user_area img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.profile_account_wrapper .profile_user_area h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #424c60;
}
.profile_account_wrapper .profile_user_area h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: #13192b;
}
.profile_account_wrapper .profile_user_area h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #74c247;
}
.profile_account_wrapper .user_profile_menu_list {
  margin-top: 20px;
  padding-bottom: 20px;
}
.profile_account_wrapper .user_profile_menu_list li:not(:last-child) a {
  border-bottom: 1.5px solid #e8e9ec;
}
.profile_account_wrapper .user_profile_menu_list li a {
  display: flex;
  gap: 14px;
  padding: 20px 28px;
}
.profile_account_wrapper .user_profile_menu_list li a:hover {
  background-color: rgba(225, 225, 225, 0.598);
}
.profile_account_wrapper .user_profile_menu_list li a span {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #424c60;
}
.profile_account_wrapper .user_profile_menu_list .be_sellar {
  color: white;
  background: #74c247;
  width: 75%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 0;
  margin-top: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.profile_account_wrapper .user_profile_menu_list .be_sellar:hover {
  background: rgba(116, 194, 71, 0.911);
}
.profile_account_wrapper .active_user_menu a {
  background: #e65c6a;
}
.profile_account_wrapper .active_user_menu a:hover {
  background: #e65c6a !important;
}
.profile_account_wrapper .active_user_menu path {
  stroke: white;
}
.profile_account_wrapper .active_user_menu span {
  color: white !important;
}
.profile_account_wrapper .profile_content_wrapper {
  padding: 28px 50px 35px 35px;
  background: #fbfbfb;
}
@media all and (max-width: 575px) {
  .profile_account_wrapper .profile_content_wrapper {
    transition: 0.5s;
    padding: 28px 30px 35px 20px;
  }
}
.profile_account_wrapper .profile_content_profile {
  padding-top: 24px;
}
.profile_account_wrapper .user_img_area label {
  position: absolute;
  right: -9px;
  bottom: 8px;
  cursor: pointer;
}
.profile_account_wrapper .user_img_area .user_file_input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.profile_account_wrapper .user_profile_button button {
  display: flex;
  align-items: center;
  -webkit-animation: fadeEffect 1s;
          animation: fadeEffect 1s;
}
.profile_account_wrapper .user_profile_button button:hover {
  opacity: 0.8;
}
.profile_account_wrapper .user_profile_button button span {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #e65c6a;
}
.profile_account_wrapper .user_profile_button button .change_text {
  margin-left: 14px;
}
.profile_account_wrapper .user_profile_button .save_changes_button,
.profile_account_wrapper .user_profile_button .discard_changes_button {
  padding: 7px 20px;
  background-color: #74c247;
  display: none;
}
.profile_account_wrapper .user_profile_button .save_changes_button span,
.profile_account_wrapper .user_profile_button .discard_changes_button span {
  color: white;
}
.profile_account_wrapper .user_profile_button .discard_changes_button {
  background-color: #424c60;
}
.profile_account_wrapper .profile_account_input_area {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr);
}
@media all and (max-width: 767px) {
  .profile_account_wrapper .profile_account_input_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.profile_account_wrapper .gender_radion_button_area {
  gap: 8px 34px;
}
.profile_account_wrapper .profile_sidebar_active {
  left: 0;
}
.profile_account_wrapper .profile_sidebar_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(202, 202, 202, 0.58);
  z-index: 1400;
  display: none;
}

.order_product_item_area .order_product_item {
  position: relative;
  padding: 24px 0;
  border-bottom: 1.5px solid #e8e9ec;
}
.order_product_item_area .order_number_status_title {
  gap: 7px 30px;
}
.order_product_item_area .order_status_title_area h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #74c247;
}
.order_product_item_area .order_status_title_area .order_status {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #ffffff;
  padding: 7px 20px;
  display: inline-block;
  border-radius: 5px;
}
.order_product_item_area .order_status_title_area .order_status:hover {
  opacity: 0.8;
}
.order_product_item_area .order_status_title_area .order_status_proccess {
  background: #f2994a;
}
.order_product_item_area .order_status_title_area .order_shipping {
  background: #2d9cdb;
}
.order_product_item_area .order_status_title_area .order_delivery {
  background: #27ae60;
}
.order_product_item_area .order_status_title_area .order_cencle {
  background: #eb5757;
}
.order_product_item_area .order_product_area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 155px);
  gap: 16px;
}
@media all and (max-width: 767px) {
  .order_product_item_area .order_product_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.order_product_item_area .order_product_details_area {
  display: grid;
  grid-template-columns: minmax(0, 106px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin-top: 16px;
}
.order_product_item_area .order_product_details_area .order_product_img {
  width: 106px;
  height: 106px;
  border-radius: 15px;
}
.order_product_item_area .order_product_content h3 a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #424c60;
}
.order_product_item_area .order_product_content h3 a:hover {
  opacity: 0.8;
}
.order_product_item_area .order_product_content h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #6b7280;
}
.order_product_item_area .order_product_content h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: #13192b;
  margin-top: 8px;
}
@media all and (min-width: 768px) {
  .order_product_item_area .order_product_content h5,
.order_product_item_area .order_product_content h4 {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    width: 65%;
  }
}
.order_product_item_area .order_date_area {
  align-self: flex-end;
  text-align: right;
}
@media all and (min-width: 768px) {
  .order_product_item_area .order_date_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    position: absolute;
    right: 0;
  }
}
.order_product_item_area .order_date_area h4,
.order_product_item_area .order_date_area h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #6b7280;
}
.order_product_item_area .order_date_area h5 {
  font-weight: 500;
}
.order_product_item_area .order_more_button {
  position: relative;
}
.order_product_item_area .order_more_button button {
  position: relative;
  z-index: 50;
}
.order_product_item_area .order_more_button #orderMoreButton {
  max-width: 30px;
}
.order_product_item_area .order_wishlist_product_item .order_product_content {
  width: 94%;
}
.order_product_item_area .order_add_cart_button {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #ffffff;
  background: #74c247;
  border-radius: 10px;
  padding: 8px 20px;
}
.order_product_item_area .order_add_cart_button:hover {
  opacity: 0.9;
}
.order_product_item_area .delete_button {
  position: absolute;
  right: 0;
  top: 44px;
}
@media all and (max-width: 767px) {
  .order_product_item_area .delete_button {
    transition: 0.5s;
    right: auto;
    left: 0;
    top: auto;
    bottom: 30px;
  }
}
.order_product_item_area .delete_button:hover path {
  stroke: #27ae60;
}
.order_product_item_area .quotation_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 10px;
}
.order_product_item_area .quotation_list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  color: #424c60;
}
.order_product_item_area .quotation_list li span {
  font-weight: 400;
  color: #6b7280;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .order_product_item_area .course-grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.order_product_item_area .order_product_area {
  grid-template-columns: minmax(0, 1fr);
}
.order_product_item_area .review_star_icon {
  margin: 8px 0;
}
.order_product_item_area .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #dee2e6;
  border-width: 1px;
}

.order_details_info_area .order_details_item_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px 70px;
  margin-top: 20px;
}
@media all and (max-width: 1199px) {
  .order_details_info_area .order_details_item_grid {
    transition: 0.5s;
    gap: 20px 30px;
  }
}
.order_details_info_area .order_item_content {
  display: grid;
  grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
  gap: 2px 24px;
}
@media all and (max-width: 1199px) {
  .order_details_info_area .order_item_content {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.order_details_info_area .order_item_content h4,
.order_details_info_area .order_item_content h5,
.order_details_info_area .order_item_content h5 a {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #13192b;
}
.order_details_info_area .order_item_content h5,
.order_details_info_area .order_item_content h5 a {
  color: #6b7280;
}
.order_details_info_area .order_item_content h5 a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order_details_info_area .order_item_content h5 a:hover {
  opacity: 0.8;
}

.order_details_product_price_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 270px);
  align-items: start;
  gap: 24px;
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .order_details_product_price_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}

.order_details_product_table {
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  overflow: auto;
}
.order_details_product_table::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.order_details_product_table::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.order_details_product_table::-webkit-scrollbar-thumb {
  background: #f84f4f;
  border-radius: 5px;
}
.order_details_product_table::-webkit-scrollbar-thumb:hover {
  background: #74c247;
  cursor: -webkit-grab;
  cursor: grab;
}
.order_details_product_table table {
  margin-top: 10px;
}
.order_details_product_table h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #13192b;
}
.order_details_product_table h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #424c60;
}
.order_details_product_table h5 a {
  display: block;
  width: 130px;
  margin: 0 auto;
}
.order_details_product_table .order_details_product {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}
.order_details_product_table td {
  text-align: center;
  padding: 5px 10px;
}
.order_details_product_table h5.proccess {
  color: #219653;
}

.order_details_ammout_area li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px 12px;
  margin-top: 20px;
}
.order_details_ammout_area h3,
.order_details_ammout_area h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #424c60;
}
.order_details_ammout_area h4 {
  font-weight: 500;
  color: #13192b;
}
.order_details_ammout_area .order_summery_divider {
  position: relative;
  padding-top: 16px;
}
.order_details_ammout_area .order_summery_divider::before {
  content: " ";
  position: absolute;
  left: -20px;
  bottom: 0;
  width: calc(100% + 40px);
  height: 1.5px;
  background-color: #e8e9ec;
}
.order_details_ammout_area .total_ammout_area {
  margin-top: 12px;
}

.payment_info_area {
  margin-top: 35px;
}
.payment_info_area .modal_payment_button {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #ffffff;
  background: #74c247;
  border-radius: 15px;
  padding: 11px 30px;
}
.payment_info_area .modal_payment_button:hover {
  background: rgba(116, 194, 71, 0.79);
}
.payment_info_area .payment_card_info {
  margin-top: 24px;
}
.payment_info_area .payment_card_info h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #424c60;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #e8e9ec;
}
.payment_info_area .payment_card_list_item {
  padding: 18px 0;
  border-bottom: 1.5px solid #e8e9ec;
}
.payment_info_area .payment_card_list_item button:hover path {
  stroke: #27ae60;
}
.payment_info_area .card_icon_name_title {
  gap: 10px 40px;
}
.payment_info_area .card_icon_name_title h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.1em;
  color: #13192b;
}

@media all and (min-width: 768px) {
  .change_passowrd_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.order_status_area {
  margin-bottom: 100px;
}
@media all and (max-width: 767px) {
  .order_status_area {
    transition: 0.5s;
    margin-bottom: 50px;
  }
}
.order_status_area .order_step_list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
.order_status_area .order_step_list li {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #424c60;
  text-align: center;
  padding-top: 20px;
}
@media all and (max-width: 1199px) {
  .order_status_area .order_step_list li {
    transition: 0.5s;
    font-size: 12px;
    line-height: 130%;
  }
}
.order_status_area .order_step_list li:not(:first-child)::before {
  content: " ";
  position: absolute;
  top: 0;
  left: calc(-50% - 15px);
  width: 100%;
  height: 4px;
  background-color: #e8e9ec;
}
.order_status_area .order_step_list li::after {
  content: " ";
  position: absolute;
  top: -10px;
  left: calc(50% - 15px);
  width: 24px;
  height: 24px;
  z-index: 5;
  background-color: #e8e9ec;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.order_status_area .order_step_list .active_step::before, .order_status_area .order_step_list .active_step::after {
  background-color: #219653 !important;
}
.order_status_area .step_content_card {
  position: relative;
  padding: 25px 20px;
  background: #e8e9ec;
  border: 1px solid #bdbdbd;
  margin-top: 40px;
  display: none;
}
.order_status_area .step_content_card::before {
  content: " ";
  position: absolute;
  top: -8px;
  width: 15px;
  height: 15px;
  background: #e8e9ec;
  border-top: 1px solid #bdbdbd;
  border-left: 1px solid #bdbdbd;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.order_status_area .step_content_card p {
  font-weight: 400;
  font-size: 13px;
  line-height: 160%;
  color: #13192b;
}
.order_status_area .step_content_card .order_step_date {
  font-weight: 500;
  color: #6b7280;
  margin-right: 12px;
}
.order_status_area .pending_content_card::before {
  left: 60px;
}
@media all and (max-width: 767px) {
  .order_status_area .pending_content_card::before {
    transition: 0.5s;
    left: 30px;
  }
}
.order_status_area .process_content_card::before {
  left: 36%;
}
.order_status_area .shipping_content_card::before {
  left: 62%;
}
.order_status_area .delivery_content_card::before {
  content: " ";
  left: auto;
  right: 65px;
}
@media all and (max-width: 767px) {
  .order_status_area .delivery_content_card::before {
    transition: 0.5s;
    right: 35px;
  }
}

.form_area .form_title_area h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: #13192b;
}
.form_area .form_title_area h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #424c60;
}
.form_area .input_row {
  position: relative;
  margin-top: 16px;
}
.form_area .input_row input,
.form_area .input_row textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e8e9ec;
  border-radius: 15px;
  padding-left: 16px;
  font-size: 16px;
  color: #13192b;
  padding-right: 16px;
}
.form_area .input_row input {
  height: 50px;
}
.form_area .input_row .card_icon {
  position: absolute;
  top: 46px;
  right: 10px;
}
.form_area .input_row .file_upload_label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  width: 100%;
  height: 50px;
  cursor: pointer;
  background: #13192b;
}
.form_area .input_row .file_upload_label:hover {
  opacity: 0.8;
}
.form_area .input_row .attachment_des {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #9ba2ab;
}
.form_area .input_row .attachment_file_area img {
  max-height: 300px;
}
.form_area .input_row textarea {
  padding-top: 10px;
}
.form_area label {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #424c60;
  margin-bottom: 6px;
  display: block;
}
.form_area .sign_up_button {
  margin-top: 24px;
}
.form_area .sign_up_button button {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #ffffff;
  width: 100%;
  height: 50px;
  background: #74c247;
  border-radius: 5px;
}
.form_area .sign_up_button button:hover {
  opacity: 0.9;
}
.form_area .nice-select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e8e9ec;
  border-radius: 15px;
  padding-left: 16px;
  font-size: 16px;
  color: #13192b;
  height: 50px;
  line-height: 50px;
}

/* The custom_radio_button_area */
.custom_radio_button_area {
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Create a custom radio button */
}
.custom_radio_button_area input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.custom_radio_button_area .radio_text {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #6b7280;
}
.custom_radio_button_area .checkmark {
  position: absolute;
  top: 50%;
  left: 5px;
  height: 24px;
  width: 24px;
  background: #e8e9ec;
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.custom_radio_button_area:hover input ~ .checkmark {
  background-color: #ccc;
}
.custom_radio_button_area input:checked ~ .checkmark {
  background: #74c247;
}
.custom_radio_button_area .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom_radio_button_area input:checked ~ .checkmark:after {
  display: block;
}
.custom_radio_button_area .checkmark:after {
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
}

.custom_checkbox_area {
  margin-top: 12px;
  /* The checkbox_wrapper */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.custom_checkbox_area .checkbox_wrapper {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #424c60;
}
.custom_checkbox_area .checkbox_wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom_checkbox_area .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border-radius: 5px;
  border: 1.5px solid #9ba2ab;
  background-color: transparent;
}
.custom_checkbox_area .checkbox_wrapper:hover input ~ .checkmark {
  background-color: rgb(236, 236, 236);
}
.custom_checkbox_area .checkbox_wrapper input:checked ~ .checkmark {
  background-color: #e65c6a;
  border-color: #e65c6a;
}
.custom_checkbox_area .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom_checkbox_area .checkbox_wrapper input:checked ~ .checkmark:after {
  display: block;
}
.custom_checkbox_area .checkbox_wrapper .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.custom_checkbox_area .forget_password {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #e65c6a;
}
.custom_checkbox_area .forget_password:hover {
  opacity: 0.8;
}

.already_account {
  margin-top: 24px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #424c60;
}
.already_account a {
  display: inline-block;
  margin-left: 5px;
  font-weight: 500;
  color: #e65c6a;
  text-decoration: underline;
}
.already_account a:hover {
  opacity: 0.8;
}

.sign_up_wrapper {
  margin-top: 100px;
}
.sign_up_wrapper .sign_up_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 450px);
  gap: 24px 100px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sign_up_wrapper .sign_up_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px 20px;
  }
}
@media all and (max-width: 767px) {
  .sign_up_wrapper .sign_up_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.sign_up_wrapper .sign_up_form_area {
  padding: 32px 35px;
  background: #fbfbfb;
  border-radius: 30px;
}

.forget_password_wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
  background: #fbfbfb;
}
.forget_password_wrapper .forget_form_area {
  background: #ffffff;
  border-radius: 30px;
  padding: 30px 60px;
  width: 570px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 575px) {
  .forget_password_wrapper .forget_form_area {
    transition: 0.5s;
    padding: 20px;
  }
}
.forget_password_wrapper .form_title_area h3 {
  font-weight: 600 !important;
  font-size: 32px !important;
  line-height: 160% !important;
  color: #424c60;
  margin-bottom: 8px;
}
@media all and (max-width: 575px) {
  .forget_password_wrapper .form_title_area h3 {
    transition: 0.5s;
    font-size: 26px !important;
  }
}
@media all and (min-width: 576px) {
  .forget_password_wrapper .form_title_area h5 {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding: 0 8%;
  }
}

.checkout_wrapper .course__buy {
  margin-top: 30px;
}
.checkout_wrapper .course__buy h2 {
  padding-bottom: 25px;
}
.checkout_wrapper .course__buy .main__content {
  background-color: #f3f3f3;
}
.checkout_wrapper .course__buy .main__content .inner__content {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 25px;
}
.checkout_wrapper .content {
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: 0.3s;
}
.checkout_wrapper .content h6 {
  text-align: center;
  font-size: 17px;
  padding: 7px 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.checkout_wrapper .content img {
  width: 100%;
  height: 195px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.checkout_wrapper .content img.blog__image {
  height: 250px;
}
.checkout_wrapper .content .bottom {
  border-top: 1px solid #ddd;
  padding: 8px 10px 8px 10px;
}
.checkout_wrapper .content .bottom p {
  text-align: left;
}
.checkout_wrapper .content .bottom .key__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.checkout_wrapper .content:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.checkout_wrapper .payment__method--select {
  margin-top: 30px;
}
.checkout_wrapper .payment__method--select h1 {
  padding-bottom: 25px;
}
.checkout_wrapper .payment__method--select .payment__content {
  background-color: #f3f3f3;
  padding: 30px 50px 30px 50px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .checkout_wrapper .payment__method--select .payment__content {
    transition: 0.5s;
    padding: 15px;
  }
}
.checkout_wrapper .payment__method--select .payment__content input {
  width: 32px;
  height: 32px;
  border-radius: 50% !important;
  margin-top: 2.5em;
}
@media (min-width: 320px) and (max-width: 767px) {
  .checkout_wrapper .payment__method--select .payment__content input {
    transition: 0.5s;
    width: 25px;
    height: 25px;
    margin-top: 2.5em;
  }
}
.checkout_wrapper .payment__method--select .payment__content label {
  margin-left: 18px;
}
.checkout_wrapper .payment__method--select .buy__now {
  text-align: center;
  margin-top: 30px;
}
.checkout_wrapper .payment__method--select .buy__now button {
  background: #45c881;
  border-radius: 6px;
  padding: 10px 25px;
  color: #fff;
  font-size: 18px;
  transition: 0.5s;
}
.checkout_wrapper .payment__method--select .buy__now button:hover {
  background-color: #4cd489;
}

.course_details_wrapper button:focus {
  outline: none;
  box-shadow: none;
}
@media all and (max-width: 991px) {
  .course_details_wrapper .accordion_wrapper {
    transition: 0.5s;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    z-index: 20000000;
    padding-top: 30px;
    padding-bottom: 20px;
    background-color: white;
    overflow-y: auto;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
  .course_details_wrapper .accordion_wrapper::-webkit-scrollbar {
    width: 5px;
  }
  .course_details_wrapper .accordion_wrapper::-webkit-scrollbar-track {
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
    width: 5px;
  }
  .course_details_wrapper .accordion_wrapper::-webkit-scrollbar-thumb {
    background: #f84f4f;
    border-radius: 5px;
    width: 5px;
  }
  .course_details_wrapper .accordion_wrapper::-webkit-scrollbar-thumb:hover {
    background: #74c247;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .course_details_wrapper .accordion_wrapper.content_show {
    left: 0;
  }
}
.course_details_wrapper .btn-link {
  font-size: 18px;
  font-weight: 500;
  color: black;
  text-decoration: none;
}
.course_details_wrapper .course_title_list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.course_details_wrapper .course_title_list li {
  padding-bottom: 15px;
  border-bottom: 1px solid lightgray;
}
.course_details_wrapper .course_title_list li:not(:first-child) {
  margin-top: 15px;
}
.course_details_wrapper .course_title_list li button {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  width: 100%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.course_details_wrapper .course_title_list li button.play_active {
  padding-left: 12px;
}
.course_details_wrapper .course_title_list li span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: black;
  text-align: start;
}
.course_details_wrapper .course_video_area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}
.course_details_wrapper .course_video_area .course_video,
.course_details_wrapper .course_video_area iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.course_details_wrapper .video_toogle_icon {
  text-align: right;
  margin-bottom: 20px;
  display: none;
}
@media all and (max-width: 991px) {
  .course_details_wrapper .video_toogle_icon {
    transition: 0.5s;
    display: block;
  }
}
.course_details_wrapper .video_toogle_icon img {
  width: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .course-grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}/*# sourceMappingURL=sassStyle.css.map */