@charset "UTF-8";
/*
Description: Trainermarket 2022
Version: 1.0.0
Author: Hakan Kamci
Author URI: hkamci@gmail.com
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**/
.bg-black {
  background-color: #272727 !important;
}

.bg-black-80 {
  background-color: rgba(39, 39, 39, 0.8) !important;
}

.bg-black-60 {
  background-color: rgba(39, 39, 39, 0.6) !important;
}

.bg-black-40 {
  background-color: rgba(39, 39, 39, 0.4) !important;
}

.bg-black-20 {
  background-color: rgba(39, 39, 39, 0.2) !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-color-p {
  background-color: #FF8227 !important;
}

.bg-color-p-20 {
  background-color: rgba(255, 130, 39, 0.2) !important;
}

.bg-color-s {
  background-color: #22C577 !important;
}

.bg-light-gray {
  background-color: #f1f1f1 !important;
}

.bg-red {
  background-color: #F44336 !important;
}

.bg-green {
  background-color: #22C577 !important;
}

.bg-orange {
  background-color: #FF8227 !important;
}

.text-white {
  color: #fff !important;
}

.text-color-p {
  color: #FF8227 !important;
}

.text-color-s {
  color: #22C577 !important;
}

.text-black {
  color: #272727 !important;
}

.text-black-80 {
  color: rgba(39, 39, 39, 0.8) !important;
}

.text-black-60 {
  color: rgba(39, 39, 39, 0.6) !important;
}

.text-black-40 {
  color: rgba(39, 39, 39, 0.4) !important;
}

.text-black-20 {
  color: rgba(39, 39, 39, 0.2) !important;
}

.text-green {
  color: #22C577 !important;
}

.text-red {
  color: #F44336 !important;
}

.text-yellow {
  color: #FFC700 !important;
}

.text-orange {
  color: #FF8227 !important;
}

a {
  color: #FF8227;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:hover {
  color: #22C577;
}
a:focus {
  outline: 0;
}
a.link-p {
  color: #FF8227 !important;
}
a.link-p:hover {
  color: #22C577 !important;
}
a.link-s {
  color: #22C577 !important;
}
a.link-s:hover {
  color: #FF8227 !important;
}
a.link-red {
  color: #F44336 !important;
}
a.link-red:hover {
  color: #272727 !important;
}
a.link-black {
  color: #272727 !important;
}
a.link-black:hover {
  color: #FF8227 !important;
}
a.link-black-80 {
  color: rgba(39, 39, 39, 0.8) !important;
}
a.link-black-80:hover {
  color: #FF8227 !important;
}
a.link-black-60 {
  color: rgba(39, 39, 39, 0.6) !important;
}
a.link-black-60:hover {
  color: #FF8227 !important;
}
a.underlined {
  border-bottom: thin solid #fcd3d5;
  transition: all 0.3s ease-out;
}
a.underlined:hover {
  color: #FF8227;
}
a.link-white {
  color: #fff !important;
}
a.link-white:hover {
  color: #fff !important;
}
a.link-disabled {
  pointer-events: none;
  opacity: 0.25;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe, object, embed {
  max-width: 100%;
  display: block;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.br-5 {
  border-radius: 5px;
}

.tm-custom-scroll {
  scrollbar-color: rgba(39, 39, 39, 0.2) #FF8227;
  scrollbar-width: thin;
  overflow-y: auto;
}

.tm-custom-scroll::-webkit-scrollbar {
  height: 15px;
  width: 6px;
  border-radius: 100px;
}

.tm-custom-scroll::-webkit-scrollbar-track {
  background: rgba(39, 39, 39, 0.2);
}

.tm-custom-scroll::-webkit-scrollbar-thumb {
  background: rgba(39, 39, 39, 0.3);
  border-radius: 100px;
}

.tm-custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #FF8227;
}

/**/
.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.d-flex.row {
  flex-flow: row wrap;
}

.d-flex.col {
  flex-flow: column wrap;
}

.d-flex.column {
  flex-flow: column wrap;
}

.d-flex.align-center {
  align-items: center;
}

.d-flex.align-start {
  align-items: flex-start;
}

.d-flex.align-end {
  align-items: flex-end;
}

.d-flex.justify-center {
  justify-content: center;
}

.d-flex.justify-space {
  justify-content: space-between;
}

.d-flex.justify-around {
  justify-content: space-around;
}

.d-flex.justify-end {
  justify-content: flex-end;
}

.d-flex.justify-start {
  justify-content: flex-start;
}

.flex-grow-vert {
  flex: 1 0 auto;
}

.align-self-start {
  align-self: flex-start;
}

.flex-1 {
  flex: 1;
}

.flex-1-0-auto {
  flex: 1 0 auto;
}

.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.w-50 {
  width: 50% !important;
}
@media (max-width: 37.5em) {
  .w-50 {
    width: 100% !important;
  }
}

.w-25 {
  width: 50% !important;
}

.w-33 {
  width: 33% !important;
}

.h-100 {
  height: 100%;
}

.h-v100 {
  height: 100vh;
}

.min-height-100 {
  min-height: 100vh;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1000;
}

.va-top {
  vertical-align: top !important;
}

.va-middle {
  vertical-align: middle !important;
}

.va-bottom {
  vertical-align: bottom !important;
}

.bordered {
  border: 1px solid rgba(39, 39, 39, 0.2);
}

.border-t {
  border-top: 1px solid rgba(39, 39, 39, 0.2);
}

.border-b {
  border-bottom: 1px solid rgba(39, 39, 39, 0.2);
}

.border-l {
  border-left: 1px solid rgba(39, 39, 39, 0.2);
}

.border-r {
  border-right: 1px solid rgba(39, 39, 39, 0.2);
}

.border-0 {
  border: none !important;
}

.tm-grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  grid-gap: 20px;
}
@media (max-width: 37.5em) {
  .tm-grid-col-2 {
    grid-template-columns: minmax(100%, 1fr);
  }
}
.tm-grid-col-2.grid-40-60 {
  grid-template-columns: 40fr 60fr;
  grid-gap: 40px 20px;
}
@media (max-width: 64em) {
  .tm-grid-col-2.grid-40-60 {
    grid-template-columns: 1fr;
  }
}

.tm-grid-col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media (max-width: 80em) {
  .tm-grid-col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 64em) {
  .tm-grid-col-3 {
    grid-template-columns: 1fr;
  }
}

.tm-grid-col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media (max-width: 48em) {
  .tm-grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 37.5em) {
  .tm-grid-col-4 {
    grid-template-columns: 1fr;
  }
}


.tm-grid-col-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
/*@media (max-width: 80em) {*/
/*  .tm-grid-col-5 {*/
/*    grid-template-columns: 1fr;*/
/*  }*/
/*}*/
@media (max-width: 64em) {
  .tm-grid-col-5 {
    grid-template-columns: 1fr;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.btn {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 16px 24px;
  outline: 0;
  border: 0;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-out;
}
.btn.small {
  padding: 8px 16px;
  font-size: 14px;
}
.btn.color-p {
  background-color: #FF8227;
  color: #fff;
}
.btn.color-p:hover {
  background-color: #22C577;
}
.btn.color-s {
  background-color: #22C577;
  color: #fff;
}
.btn.color-s:hover {
  background-color: #FF8227;
}
.btn.color-s-10 {
  background-color: rgba(34, 197, 119, 0.1);
  color: #22C577;
}
.btn.color-s-10:hover {
  color: #fff;
  background-color: #22C577;
}
.btn.color-black {
  background-color: #272727;
  color: #fff;
}
.btn.color-black:hover {
  background-color: #FF8227;
  color: #fff;
}
.btn.color-white {
  background-color: #fff;
  color: #272727;
}
.btn.color-white:hover {
  background-color: rgba(39, 39, 39, 0.2);
  color: #272727;
}
.btn.color-red {
  background-color: #F44336;
  color: #fff;
}
.btn.color-red:hover {
  background-color: rgba(39, 39, 39, 0.2);
  color: #272727;
}
.btn.disabled {
  cursor: default;
  opacity: 0.5;
}

.btn-block {
  display: flex !important;
  justify-content: center;
  width: 100%;
}

.btn-w-icon {
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
}
.btn-w-icon .btn-icon {
  margin-left: 4px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-border {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 14px 22px 15px;
  outline: 0;
  border: 1.5px solid #272727;
  border-radius: 4px;
  background: transparent;
  font-weight: 700;
  transition: all 0.3s ease-out;
}
.btn-border.small {
  font-size: 14px;
  padding: 8px 10px;
}
.btn-border.color-p {
  border-color: #FF8227;
  color: #FF8227;
}
.btn-border.color-p:hover {
  border-color: #FF8227;
  background-color: #FF8227;
  color: #fff;
}
.btn-border.color-s {
  border-color: #22C577;
  color: #22C577;
}
.btn-border.color-s:hover {
  background-color: #22C577;
  color: #fff;
  border-color: #22C577;
}
.btn-border.color-black-20 {
  border-color: rgba(39, 39, 39, 0.2);
  color: #272727;
}
.btn-border.color-black-20:hover {
  background-color: rgba(39, 39, 39, 0.6);
  color: #fff;
  border-color: rgba(39, 39, 39, 0.6);
}
.btn-border.disabled {
  cursor: default;
  opacity: 0.5;
}
.btn-border.disabled.color-p:hover {
  background-color: initial;
  color: #FF8227;
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-disabled.color-p:hover {
  background-color: #FF8227;
  color: #272727;
}
.btn-disabled.color-p:hover {
  color: #fff;
  background: #FF8227;
}

button:disabled,
button[disabled] {
  opacity: 0.5;
  cursor: not-allowed !important;
}
button:disabled.color-p:hover,
button[disabled].color-p:hover {
  color: #fff;
  background: #FF8227;
}

.trainermarket-toast {
  padding: 20px;
  font-weight: 600;
  position: fixed;
  top: 40px;
  right: 10px;
  z-index: 10000;
  border-radius: 8px;
  width: 206px;
  background-color: #ffa812;
}
.trainermarket-toast.green {
  background-color: #22C577;
  color: #fff;
}
.trainermarket-toast.red {
  background-color: #F44336;
  color: #fff;
}
.trainermarket-toast.orange {
  background-color: #FF8227;
  color: #fff;
}
.trainermarket-toast.center-toast {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.cursor-pointer {
  cursor: pointer;
}

.m-auto {
  margin: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-2 {
  margin-left: 2px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.ml-14 {
  margin-left: 14px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.ml-18 {
  margin-left: 18px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-64 {
  margin-left: 64px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-96 {
  margin-left: 96px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-14 {
  margin-top: 14px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-96 {
  margin-top: 96px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-96 {
  margin-bottom: 96px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.mr-14 {
  margin-right: 14px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mr-18 {
  margin-right: 18px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-64 {
  margin-right: 64px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-96 {
  margin-right: 96px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-2 {
  padding-left: 2px !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.pl-6 {
  padding-left: 6px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.pl-14 {
  padding-left: 14px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pl-18 {
  padding-left: 18px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-64 {
  padding-left: 64px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-96 {
  padding-left: 96px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-2 {
  padding-top: 2px !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pt-6 {
  padding-top: 6px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pt-14 {
  padding-top: 14px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pt-18 {
  padding-top: 18px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-96 {
  padding-top: 96px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pb-6 {
  padding-bottom: 6px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pb-14 {
  padding-bottom: 14px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pb-18 {
  padding-bottom: 18px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-64 {
  padding-bottom: 64px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-96 {
  padding-bottom: 96px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-2 {
  padding-right: 2px !important;
}

.pr-4 {
  padding-right: 4px !important;
}

.pr-6 {
  padding-right: 6px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.pr-14 {
  padding-right: 14px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.pr-18 {
  padding-right: 18px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-64 {
  padding-right: 64px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-96 {
  padding-right: 96px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.p-0 {
  padding: 0px !important;
}

.p-2 {
  padding: 2px !important;
}

.p-4 {
  padding: 4px !important;
}

.p-6 {
  padding: 6px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-12 {
  padding: 12px !important;
}

.p-14 {
  padding: 14px !important;
}

.p-16 {
  padding: 16px !important;
}

.p-18 {
  padding: 18px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-24 {
  padding: 24px !important;
}

.p-32 {
  padding: 32px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-48 {
  padding: 48px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-64 {
  padding: 64px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-96 {
  padding: 96px !important;
}

.p-100 {
  padding: 100px !important;
}

.m-0 {
  margin: 0px !important;
}

.m-2 {
  margin: 2px !important;
}

.m-4 {
  margin: 4px !important;
}

.m-6 {
  margin: 6px !important;
}

.m-8 {
  margin: 8px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-12 {
  margin: 12px !important;
}

.m-14 {
  margin: 14px !important;
}

.m-16 {
  margin: 16px !important;
}

.m-18 {
  margin: 18px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-24 {
  margin: 24px !important;
}

.m-32 {
  margin: 32px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-48 {
  margin: 48px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-64 {
  margin: 64px !important;
}

.m-80 {
  margin: 80px !important;
}

.m-96 {
  margin: 96px !important;
}

.m-100 {
  margin: 100px !important;
}

.hr {
  margin: 2em 0;
  height: 1px;
  width: 100%;
  background: rgba(39, 39, 39, 0.2);
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
html.html-no-scroll {
  overflow-y: hidden;
  overscroll-behavior: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background: #FCFCFC;
  color: #272727;
  line-height: 1.5;
}
body.body-no-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Montserrat", serif;
  line-height: 1.3;
}

h1,
.h1 {
  font-size: 2.488rem;
}

h2,
.h2 {
  font-size: 2.074rem;
}

h3,
.h3 {
  font-size: 1.728rem;
}

h4,
.h4 {
  font-size: 1.44rem;
}

h5,
.h5 {
  font-size: 1.2rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p:not(:last-child) {
  margin-bottom: 1.5rem;
}

i {
  font-style: italic;
}

b {
  font-weight: bold;
}

blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 20px;
  max-width: calc(100% - 54px);
  line-height: 1.4;
  position: relative;
  margin: 0;
  padding: 0 0 0 46px;
  margin: 32px 0;
  z-index: 1;
}
blockquote:before {
  content: "“";
  position: absolute;
  left: 0;
  top: -16px;
  z-index: 0;
  color: #22C577;
  font-size: 100px;
  line-height: 1;
  font-family: "Montserrat", serif;
  font-style: normal;
  width: 50px;
  height: 50px;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-700 {
  font-weight: 700 !important;
}

.bold,
strong {
  font-weight: 600;
}

.bolder {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-not-uppercase {
  text-transform: initial !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-line-through {
  text-decoration: line-through !important;
}

.cursor-default {
  cursor: default !important;
}

ul.unordered {
  list-style: disc;
  list-style-position: inside;
}
ul.unordered li {
  margin-bottom: 10px;
}

ol.ordered {
  list-style: decimal;
  list-style-position: inside;
}
ol.ordered li {
  margin-bottom: 20px;
}

.text-12 {
  font-size: 12px !important;
}

.text-13 {
  font-size: 13px !important;
}

.text-14 {
  font-size: 14px !important;
}

.text-16 {
  font-size: 16px !important;
}

.text-18 {
  font-size: 18px !important;
}

.text-20 {
  font-size: 20px !important;
}

.text-24 {
  font-size: 24px !important;
}

.text-32 {
  font-size: 32px !important;
}

.text-48 {
  font-size: 48px !important;
}

@media (max-width: 48em) {
  .text-18 {
    font-size: 16px !important;
  }
  .text-48 {
    font-size: 28px !important;
  }
}
.text-bold-space {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-404 {
  font-size: 18rem;
  font-weight: 400;
  color: #FF8227;
}
@media (max-width: 48em) {
  .text-404 {
    font-size: 10rem;
  }
}

.lh-1 {
  line-height: 1;
}

.lh-1-3 {
  line-height: 1.3;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.op-50 {
  opacity: 0.5;
}

.font-body {
  font-family: "Montserrat", sans-serif;
}

.font-header {
  font-family: "Montserrat", serif;
}

.text-white-space-nowrap {
  white-space: nowrap;
}

@media (max-width: 37.5em) {
  .text-32 {
    font-size: 24px !important;
  }
  .mb-32 {
    margin-bottom: 24px !important;
  }
  .mt-48 {
    margin-top: 24px !important;
  }
}
.form-label {
  display: block;
  line-height: 1;
  user-select: none;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgba(39, 39, 39, 0.6);
  margin-left: 14px;
}

@media (max-width: 48em) {
  .form-label {
    font-size: 14px;
  }
}

fieldset {
  position: relative;
}
fieldset .form-input.with-icon-link {
  width: calc(100% - 24px);
}

.form-input-icon-link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #FF8227;
  font-size: 14px;
}
.form-input-icon-link svg {
  width: 20px;
}

/**
  * Component Element
  */
.form-input,
.form-textarea,
.form-select {
  background-color: #F1F1F1;
  border: 1px solid #f1f1f1;
  border-radius: 6px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #272727;
  outline: none;
  outline-style: none;
  padding: 14px;
  position: relative;
  appearance: none;
  transition: all 0.3s ease-out;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #FF8227;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(255, 130, 39, 0.2);
}
.form-input.w-border,
.form-textarea.w-border,
.form-select.w-border {
  border: 1px solid #22C577;
}
.form-input.error,
.form-textarea.error,
.form-select.error {
  border: 1px solid #F44336;
}
.form-input.small,
.form-textarea.small,
.form-select.small {
  padding: 10px 20px 10px 10px;
  font-size: 14px;
}

.form-input.activation-code {
  width: 80px;
  font-size: 42px;
  text-align: center;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 50%;
  padding-right: 30px;
  padding: 14px 30px 14px 12px;
  font-weight: 400;
}

.select2-container--default .select2-selection--multiple {
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  position: relative;
  padding: 12px 14px 13px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #FF8227 1px;
  outline: 0;
  box-shadow: 0px 4px 10px rgba(255, 130, 39, 0.2);
  background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #FF8227;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  font-size: 14px;
  padding: 6px 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  left: 1px;
  top: 3px;
}

.form-textarea {
  font-size: 16px;
  min-height: 140px;
  line-height: 1.6;
}

.file-upload {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.file-upload .file-upload__label {
  display: block;
  padding: 6px 20px;
  color: rgba(39, 39, 39, 0.2);
  border: 5px solid;
  border-radius: 4px;
  transition: background 0.3s;
}
.file-upload .file-upload__label svg {
  width: 60px;
  height: 60px;
}
.file-upload .file-upload__input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-upload .file-upload__input input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  opacity: 0;
}
.file-upload.disabled {
  opacity: 0.5;
  cursor: default;
}
.file-upload.disabled .file-upload__label:hover {
  cursor: default;
  color: #FF8227;
  background: #22C577;
}

.form-checkbox-outer,
.form-radio-outer {
  display: flex;
  align-items: center;
}

.form-radio,
.form-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  color: #666;
  height: 24px;
  width: 24px;
  border-radius: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  outline: none;
  transition: all 0.3s ease-out;
}
.form-radio:checked::before,
.form-checkbox:checked::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "⅃";
  transform: translate(-50%, -50%) rotate(40deg);
}
.form-radio:hover,
.form-checkbox:hover {
  border-color: #22C577;
}
.form-radio:checked,
.form-checkbox:checked {
  background-color: #FF8227;
  border-color: #FF8227;
  color: #fff;
  z-index: 2;
}
.form-radio:disabled:not(:checked),
.form-checkbox:disabled:not(:checked) {
  background-color: #f1f1f1;
  pointer-events: none;
}
.form-radio.small,
.form-checkbox.small {
  width: 20px !important;
  height: 20px !important;
}
.form-radio.small:before,
.form-checkbox.small:before {
  font-size: 12px !important;
}

.form-radio {
  border: 2px solid #FF8227;
  border-radius: 50%;
  top: 0;
  transition: all 0.3s ease-out;
}
.form-radio:before {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}
.form-radio:checked {
  background-color: transparent;
  border-color: #FF8227;
  color: #fff;
  z-index: 2;
  transition: all 0.3s ease-out;
}
.form-radio:checked:before {
  content: "";
  background: #FF8227;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-checkbox {
  border-radius: 3px;
}

.error-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #F44336;
  margin-top: 0.25rem;
}

button {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
button:focus {
  outline: 0;
}

input[switch] {
  display: none;
}

input[switch]:checked + label {
  background-color: lightblue;
}

input[switch=bool]:checked + label {
  background-color: #22C577;
}

input[switch] + label {
  width: 60px;
  height: 28px;
  background-color: #ddd;
  border-radius: 2rem;
  padding: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}

input[switch=bool] + label {
  background: #D9D9D9;
}

input[switch] + label:before {
  text-transform: uppercase;
  display: block;
  position: absolute;
  right: 0.2166666667rem;
  margin: 0.2166666667rem;
  top: 0;
  text-align: center;
  min-width: 1.6666666667rem;
  overflow: hidden;
  transition: all 0.1s ease-in-out;
}

input[switch=bool] + label:before {
  color: #666 !important;
}

input[switch]:checked + label:before {
  color: #fff;
  content: attr(data-on-label);
  right: auto;
  left: 0.2166666667rem;
}

input[switch=bool]:checked + label:before {
  color: #fff !important;
}

input[switch] + label:after {
  content: "";
  position: absolute;
  left: 4px;
  background-color: #f7f7f7;
  box-shadow: none;
  border-radius: 2rem;
  height: 20px;
  width: 20px;
  transition: all 0.1s ease-in-out;
}

input[switch]:checked + label:after {
  left: 35px;
  background-color: #f7f7f7;
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1000;
  padding: 1rem;
  box-sizing: border-box;
  background-color: rgba(39, 39, 39, 0.85);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 900px;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  padding: 40px 20px 20px 20px;
  border-radius: 16px;
  text-align: left;
}
.modal.column {
  flex-flow: column wrap;
}
.modal-400 {
  max-width: 400px;
}
.modal-600 {
  max-width: 600px;
}

@media (max-width: 48em) {
  .modal .pl-48, .modal .pl-60 {
    padding-left: 0 !important;
  }
  .modal .pr-48, .modal .pr-60 {
    padding-right: 0 !important;
  }
  .modal .color-red.pl-60 {
    padding-left: 0 !important;
  }
  .modal .color-red.pr-60 {
    padding-right: 0 !important;
  }
  .modal .d-flex a {
    flex: 1;
    justify-content: center;
    padding-inline: 0;
  }
}

.modal a.close-modal {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 48px;
  height: 48px;
  text-indent: -9999px;
}
.modal a.close-modal:after {
  content: "×";
  position: absolute;
  top: 0;
  right: 0;
  text-indent: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #272727;
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 52px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 52px;
  padding-left: 14px;
}

.select2-container--default .select2-selection--single {
  background-color: #F1F1F1;
  border: 1px solid #f1f1f1;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  outline: none;
  border: 1px solid #FF8227;
  padding: 8px;
  border-radius: 6px;
}

.tm-calendar {
  width: 1100px;
}
.tm-calendar.w-800 {
  width: 800px;
}
.tm-calendar.w-800 .tm-calendar-content th,
.tm-calendar.w-800 .tm-calendar-content td {
  width: 100px !important;
}
.tm-calendar.w-800 .tm-calendar-content-outer {
  max-width: 800px;
  overflow-y: auto;
}
@media (max-width: 64em) {
  .tm-calendar {
    width: 100%;
  }
  .tm-calendar.w-800 {
    width: 100%;
  }
  .tm-calendar.w-800 .tm-calendar-content-outer {
    max-width: 100%;
  }
}

.tm-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.tm-calendar-header-left, .tm-calendar-header-right {
  display: flex;
  align-items: center;
}
.tm-calendar-header-left a, .tm-calendar-header-right a {
  display: flex;
  align-items: center;
}
.tm-calendar-header-left a {
  background-color: #F1F1F1;
  color: #272727;
  border-radius: 50%;
  padding: 10px;
}
.tm-calendar-header .add-new-course:hover {
  background-color: #22C577;
  border-color: #22C577;
}
@media (max-width: 64em) {
  .tm-calendar-header {
    flex-flow: column wrap;
  }
  .tm-calendar-header-left {
    margin-bottom: 1rem;
  }
}
@media (max-width: 48em) {
  .tm-calendar-header-right {
    flex-flow: column wrap;
  }
  .tm-calendar-header-right .add-new-course {
    margin: 0 0 16px !important;
  }
}

.tm-calendar-content {
  width: 100%;
  table-layout: fixed;
}
.tm-calendar-content th,
.tm-calendar-content td {
  font-size: 14px;
  padding: 8px;
  border: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-calendar-content td {
  height: 150px;
  color: #272727;
}
.tm-calendar-content td.day-disabled {
  color: rgba(39, 39, 39, 0.4);
  background-image: url("data:image/svg+xml,<svg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'><g fill='%23f9f9fa' fill-opacity='1' fill-rule='evenodd'><path d='M0 40L40 0H20L0 20M40 40V20L20 40'/></g></svg>");
  cursor: not-allowed;
}
.tm-calendar-content td a {
  color: #272727;
  display: block;
  width: 100%;
  height: 100%;
}
.tm-calendar-content.daily td {
  height: auto;
  vertical-align: middle;
  font-weight: 600;
  line-height: 1.2;
}
.tm-calendar-content.daily .daily-blue {
  background-color: rgba(0, 171, 241, 0.15);
  color: #00ABF1;
  padding: 4px;
}
.tm-calendar-content.daily .daily-blue a {
  color: #00ABF1;
}
.tm-calendar-content.daily .daily-red {
  background-color: rgba(244, 67, 54, 0.15);
  color: #F44336;
  padding: 4px;
}
.tm-calendar-content.daily .daily-red a {
  color: #F44336;
}
.tm-calendar-content.daily .daily-gray {
  background-color: rgba(39, 39, 39, 0.15);
  color: #272727;
  padding: 4px;
}
.tm-calendar-content.daily .daily-gray a {
  color: #272727;
}
.tm-calendar-content.daily .daily-green {
  background-color: rgba(34, 197, 119, 0.15);
  color: #22C577;
  padding: 4px;
}
.tm-calendar-content.daily .daily-green a {
  color: #22C577;
}
.tm-calendar-content.daily .daily-orange {
  background-color: rgba(255, 130, 39, 0.15);
  color: #FF8227;
  padding: 4px;
}
.tm-calendar-content.daily .daily-orange a {
  color: #FF8227;
}
.tm-calendar-content.daily .daily-purple {
  background-color: rgba(160, 38, 255, 0.15);
  color: #A026FF;
  padding: 4px;
}
.tm-calendar-content.daily .daily-purple a {
  color: #A026FF;
}

.tm-select-monthly-daily {
  display: flex;
  align-items: center;
  background-color: #F1F1F1;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 4px;
  padding: 8px;
}
.tm-select-monthly-daily a {
  color: #272727;
  padding: 7px 30px;
  border-radius: 5px;
}
.tm-select-monthly-daily a.active {
  background-color: #fff;
}

.tm-calendar-day-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.tm-calendar-day-detail-top .tm-calendar-day-plus-events {
  background-color: #F1F1F1;
  color: #272727;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.tm-calendar-day-coursel-detail {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  padding: 4px;
  border-radius: 5px;
  max-width: 150px;
  background-color: rgba(0, 171, 241, 0.15);
  color: #00ABF1;
}
.tm-calendar-day-coursel-detail.orange {
  background-color: rgba(255, 130, 39, 0.15);
  color: #FF8227;
}
.tm-calendar-day-coursel-detail.green {
  background-color: rgba(34, 197, 119, 0.15);
  color: #22C577;
}

.tm-calendar-sticky-left {
  position: sticky;
  left: 0;
  background-color: #fff;
  border: 1px solid rgba(39, 39, 39, 0.2);
  z-index: 1;
}

@media (max-width: 64em) {
  .tm-course-calendar {
    width: 100%;
    overflow-x: auto;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.tm-header {
  background-color: #fff;
  border-bottom: 1px solid rgba(39, 39, 39, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}
.tm-header-wrapper {
  height: 120px;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tm-header-wrapper-right, .tm-header-wrapper-left {
  display: flex;
  align-items: center;
  position: relative;
}
.tm-header-wrapper-right {
  justify-content: flex-end;
}
.tm-header-wrapper .tm-user {
  height: 64px;
  width: 64px;
  position: relative;
}
.tm-header-wrapper .tm-user img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(39, 39, 39, 0.2);
  object-fit: cover;
}
.tm-header-wrapper .tm-top-nav-right-link:not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 80em) {
  .tm-header {
    display: none;
  }
  .tm-header-wrapper {
    height: 80px;
    padding: 0 16px;
  }
  .tm-header-wrapper-left img {
    width: 80px;
  }
  .tm-header-wrapper .pl-48 {
    padding-left: 24px !important;
  }
  .tm-header-wrapper .pr-48 {
    padding-right: 24px !important;
  }
  .tm-header.tm-saloon-init {
    display: block;
  }
  .tm-header.tm-saloon-init .tm-top-nav-right-link {
    padding: 10px 24px;
  }
}

.tm-header-search {
  position: relative;
  width: 500px;
}
.tm-header-search svg {
  position: absolute;
  top: 15px;
  left: 24px;
  z-index: 1;
  opacity: 0.5;
}
.tm-header-search input {
  height: 54px;
  background-color: #fff;
  border: 1px solid rgba(39, 39, 39, 0.2);
  width: 500px;
  padding: 0 90px 0 56px;
  transition: all 0.3s ease-out;
}
.tm-header-search input:focus {
  border-color: rgba(255, 130, 39, 0.3);
  box-shadow: 0px 4px 10px rgba(255, 130, 39, 0.2);
}
.tm-header-search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 54px;
}

.tm-user-menu {
  position: absolute;
  right: 0;
  top: 70px;
  z-index: 2;
  width: 280px;
  background-color: #fff;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 6px;
  padding: 15px 30px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.tm-user-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.tm-user-menu a {
  display: block;
  padding: 15px 0;
  color: #272727;
}
.tm-user-menu a:hover {
  color: #FF8227;
}
.tm-user-menu a.tm-settings {
  border-top: 1px solid rgba(39, 39, 39, 0.2);
  border-bottom: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-user-menu .tm-lang {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tm-user-menu .tm-lang a {
  display: inline-block;
}

.tm-header-create-course {
  background-color: #fff;
  border-bottom: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-header-create-course .tm-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
}
.tm-header-create-course .tm-wrapper ul {
  display: flex;
  flex-flow: row nowrap;
  margin: auto;
  overflow: auto;
}
.tm-header-create-course .tm-wrapper li:not(:last-child) {
  margin-right: 24px;
}
.tm-header-create-course .tm-wrapper li {
  flex-shrink: 0;
}
.tm-header-create-course .tm-wrapper a {
  display: flex;
  flex-flow: row wrap;
  flex-shrink: 0;
  align-items: center;
  height: 60px;
  padding: 0 10px;
  position: relative;
  color: rgba(39, 39, 39, 0.6);
}
.tm-header-create-course .tm-wrapper a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
}
.tm-header-create-course .tm-wrapper a.active {
  font-weight: 500;
}
.tm-header-create-course .tm-wrapper a.active:after {
  background-color: #22C577;
}
.tm-header-create-course .tm-wrapper a.active .no {
  background-color: #22C577;
  flex-shrink: 0;
}
.tm-header-create-course .tm-wrapper a.active .text {
  flex-shrink: 0;
}
.tm-header-create-course .tm-wrapper .no {
  background-color: rgba(39, 39, 39, 0.2);
  color: #fff;
  font-weight: 500;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.tm-main-nav {
  background-color: #f1f1f1;
  width: 100%;
  padding: 20px;
  margin-top: 121px;
}
.tm-main-nav nav {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  height: 24px;
  overflow: hidden;
}
.tm-main-nav li {
  margin: 0 15px;
  display: inline-block;
}
.tm-main-nav a {
  color: #272727;
}
.tm-main-nav a:hover {
  color: #FF8227;
}
.tm-main-nav .slick-list {
  margin: 0 40px;
}
.tm-main-nav .slick-prev,
.tm-main-nav .slick-next {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  background: #f1f1f1;
  z-index: 1;
}
.tm-main-nav .slick-prev {
  left: 0;
}
.tm-main-nav .slick-next {
  right: 0;
}
.tm-main-nav .slick-prev:before {
  content: "<";
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #272727;
  font-size: 24px;
  transform: scaleY(1.75);
}
.tm-main-nav .slick-next:before {
  font-family: Georgia, "Times New Roman", Times, serif;
  content: ">";
  color: #272727;
  font-size: 24px;
  transform: scaleY(1.5);
}
@media (max-width: 48em) {
  .tm-main-nav {
    padding: 20px 0;
  }
  .tm-main-nav li {
    margin: 0 12px;
  }
}

.tm-footer {
  background-color: #f1f1f1;
  padding: 40px;
  margin-top: 40px;
}
.tm-footer .tm-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 48em) {
  .tm-footer {
    padding: 32px 20px;
  }
  .tm-footer .tm-wrapper {
    padding: 0;
    grid-template-columns: 1fr;
  }
}

.tm-header-mobile {
  display: none;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}
.tm-header-mobile .tf-hamb {
  filter: invert(53%) sepia(69%) saturate(481%) hue-rotate(99deg) brightness(104%) contrast(89%);
}
@media (max-width: 80em) {
  .tm-header-mobile {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 3;
  }

  .tm-main-nav{
    margin-top: 80px
  }
}

.tm-mobile-hamb-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100vw;
  z-index: 100;
  background-color: #fff;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  font-size: 0.875rem;
  transition: all 0.3s ease-out;
}
.tm-mobile-hamb-menu header {
  display: flex;
  justify-content: flex-end;
}
.tm-mobile-hamb-menu header img {
  opacity: 0.75;
}
.tm-mobile-hamb-menu.show {
  right: 0;
  box-shadow: 0 0 1000em 1000em rgba(0, 0, 0, 0.3);
}
.tm-mobile-hamb-menu .tm-header-search {
  width: auto;
  margin: 20px auto;
}
.tm-mobile-hamb-menu .tm-header-search input {
  width: 100%;
  max-width: 350px;
}

.tm-mobile-user-info {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  margin: 24px auto;
}

.tm-user-menu-mobile a {
  display: block;
  margin: 4px 0;
  padding: 16px 0;
  color: rgba(39, 39, 39, 0.8);
  border-bottom: 1px solid rgba(39, 39, 39, 0.2);
  text-align: right;
}
.tm-user-menu-mobile .tm-lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 4px 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-user-menu-mobile .tm-lang-select {
  display: flex;
  align-items: center;
}
.tm-user-menu-mobile .tm-lang a {
  border-bottom: 0;
  margin: 0;
  padding: 0;
}
.tm-user-menu-mobile .tm-lang span {
  margin-right: 16px;
}

.tm-crate-course-content {
  margin: 80px auto 0;
  padding: 0 20px;
  max-width: 1160px;
}
.tm-crate-course-content-w-box {
  background-color: #fff;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 37.5em) {
  .tm-crate-course-content {
    margin: 24px auto;
  }
  .tm-crate-course-content .course-top-actions {
    flex-flow: column-reverse wrap;
  }
  .tm-crate-course-content .course-top-actions div:nth-child(1) a {
    flex-flow: row wrap;
    margin-bottom: 20px;
  }
  .tm-crate-course-content .course-top-actions div:nth-child(2) {
    display: flex;
    flex-flow: column-reverse;
    width: 100%;
  }
  .tm-crate-course-content .course-top-actions div:nth-child(2) a {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .tm-crate-course-content .tm-multi-packages {
    flex-flow: column wrap;
    margin-top: 0 !important;
    align-items: start;
  }
  .tm-crate-course-content .tm-multi-packages .d-flex.align-center {
    flex-flow: row wrap;
    margin-top: 10px;
  }
  .tm-crate-course-content .tm-multi-packages .d-flex.align-center span {
    width: auto;
  }
  .tm-crate-course-content .tm-multi-packages .d-flex.align-center .ml-16.mt-4 {
    flex: 1;
  }
}

.tm-uploaded-cover-img {
  position: relative;
}
.tm-uploaded-cover-img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.tm-uploaded-cover-img .tm-remove-img {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  padding: 8px;
}

.tm-create-course-packages-table {
  width: 100%;
  border: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-create-course-packages-table th,
.tm-create-course-packages-table td {
  padding: 16px;
  border-right: 1px solid rgba(39, 39, 39, 0.2);
  vertical-align: middle;
}
.tm-create-course-packages-table .form-label {
  display: none;
}
@media (max-width: 48em) {
  .tm-create-course-packages-table th {
    display: none;
  }
  .tm-create-course-packages-table .form-label {
    display: block;
  }
}
.tm-create-course-packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-right: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-create-course-packages-grid.multiple {
  grid-template-columns: repeat(4, 1fr);
}
.tm-create-course-packages-grid .column {
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-right: 0;
  display: grid;
  grid-template-rows: 1fr 1fr 2fr 1fr 1fr;
}
.tm-create-course-packages-grid .column div {
  padding: 16px;
}
.tm-create-course-packages-grid .titles {
  font-weight: bold;
  text-align: right;
}
.tm-create-course-packages-grid label.form-label {
  display: none;
}
@media (max-width: 48em) {
  .tm-create-course-packages-grid, .tm-create-course-packages-grid.multiple {
    grid-template-columns: 1fr;
    gap: 20px;
    border-right: 0;
    margin-top: 20px;
  }
  .tm-create-course-packages-grid .column {
    border: 1px solid rgba(39, 39, 39, 0.2);
  }
  .tm-create-course-packages-grid .titles {
    display: none;
  }
  .tm-create-course-packages-grid label.form-label {
    display: block;
  }
}

.tm-course-detail-outer {
  width: 100%;
  max-width: 1160px;
  margin: 152px auto auto auto;
  padding: 0 20px;
}
@media (max-width: 64em) {
  .tm-course-detail-outer {
    margin: 112px 16px 16px 16px;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding: 0;
  }
  .tm-course-detail-header > .tm-course-detail-header-actions{
    flex-direction: column;
    align-items: flex-start;
  }
  .tm-course-detail-header-action{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

.tm-course-tag {
  background-color: rgba(39, 39, 39, 0.6);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
}

.tm-stars {
  background: url(../img/tm-stars-empty.svg) no-repeat top left;
  background-size: cover;
  width: 100px;
  height: 20px;
  position: relative;
  margin-right: 6px;
}
.tm-stars-active {
  background: url(../img/tm-stars-filled.svg) no-repeat top left;
  background-size: cover;
  width: 0;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.tm-course-detail-content {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.tm-course-detail-content-left {
  width: calc(100% - 355px);
  min-width: 800px;
}
.tm-course-detail-content-right {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  width: 335px;
  margin-left: 20px;
}
@media (max-width: 64em) {
  .tm-course-detail-content {
    flex-flow: column wrap;
  }
  .tm-course-detail-content-left {
    width: 100%;
    min-width: 100%;
  }
  .tm-course-detail-content-right {
    width: 100%;
    margin: 0;
    position: relative;
    padding-bottom: 2rem;
  }
}

.tm-studio-card {
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 5px;
  padding: 24px 16px;
  position: relative;
}
.tm-studio-card .tm-avatar-studio {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-studio-card .tm-save-ad {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  color: rgba(39, 39, 39, 0.8);
  display: flex;
  align-items: center;
}
.tm-studio-card .tm-save-ad svg {
  margin-left: 8px;
}

.tm-course-photo-gallery-big img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.tm-course-photo-gallery-big .slick-next {
  right: 25px;
}
.tm-course-photo-gallery-big .slick-prev {
  left: 25px;
}
.tm-course-photo-gallery-big .slick-next,
.tm-course-photo-gallery-big .slick-prev {
  z-index: 1;
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 20px #333);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 100%;
}
.tm-course-photo-gallery-big .slick-next:before,
.tm-course-photo-gallery-big .slick-prev:before {
  font-size: 30px;
}

.your-class-arrow {
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  z-index: 999 !important;
  opacity: 1 !important;
  transform: translateY(-50%);
  transition: none !important;
  float: none !important;
}
.your-class-arrow button {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  background-color: rgba(39, 39, 39, 0.5);
  color: #fff;
  border: 0;
  outline: 0;
}
.your-class-arrow button.tm-btn-next {
  right: 20px !important;
  left: auto !important;
}
.your-class-arrow button.tm-btn-prev {
  left: 20px !important;
}

.tm-course-photo-gallery-thumbs .slick-slide {
  opacity: 0.35;
}
.tm-course-photo-gallery-thumbs .slick-slide.slick-current {
  opacity: 1;
}

.tm-course-instructors .img {
  aspect-ratio: 16/9;
  position: relative;
}
.tm-course-instructors .img img {
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tm-course-requirements .req-line {
  padding: 16px;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 5px;
  margin-bottom: 16px;
}

.tm-course-packages-table {
  table-layout: fixed;
  border: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-course-packages-table th,
.tm-course-packages-table td {
  padding: 20px;
  width: 33.3333%;
  border-left: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-course-packages-table tfoot td {
  vertical-align: bottom;
}
.tm-course-packages-table .mobile-show {
  display: none;
}
@media (max-width: 64em) {
  .tm-course-packages-table {
    table-layout: auto;
  }
  .tm-course-packages-table .mobile-show {
    display: block;
  }
  .tm-course-packages-table thead, .tm-course-packages-table tfoot {
    display: none;
  }
  .tm-course-packages-table td {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(39, 39, 39, 0.2);
  }
}
.tm-course-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tm-course-packages-grid .column {
  display: grid;
  grid-template-rows: 80px auto 180px;
  padding: 20px;
  border: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-course-packages-grid .column:nth-child(2) {
  border-left: 1px solid rgba(39, 39, 39, 0.2);
  border-right: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-course-packages-grid div {
  padding: 10px 0;
}
.tm-course-packages-grid div span {
  display: block;
}
.tm-course-packages-grid .bottom {
  display: flex;
  align-items: center;
  flex-flow: column wrap;
  justify-content: end;
  align-self: self-end;
}
@media (max-width: 48em) {
  .tm-course-packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tm-course-packages-grid .column {
    grid-template-rows: 1fr;
  }
  .tm-course-packages-grid .column:nth-child(2) {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(39, 39, 39, 0.2);
    border-bottom: 1px solid rgba(39, 39, 39, 0.2);
  }
}
.tm-show-mobile {
  display: none;
}
@media (max-width: 37.5em) {
  .tm-show-mobile {
    display: block;
  }
}

.tm-course-comments-filters li:not(:last-child) {
  margin-bottom: 6px;
}
.tm-course-comments-filters a {
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
}
.tm-course-comments-filters a.selected {
  background-color: rgba(39, 39, 39, 0.12);
  border-radius: 5px;
}
.tm-course-comments-filters a .star {
  width: 60px;
  color: #272727;
  margin-right: 8px;
}
.tm-course-comments-filters a .bar {
  background-color: #f1f1f1;
  width: 250px;
  height: 14px;
  border-radius: 20px;
  position: relative;
}
.tm-course-comments-filters a .bar .filled {
  width: 0;
  height: 14px;
  background-color: #FFC700;
  border-radius: 20px;
}
.tm-course-comments-filters a .comment-count {
  color: rgba(39, 39, 39, 0.8);
  margin-left: 8px;
}

@media (max-width: 37.5em) {
  .tm-course-comments-filters a {
    width: 100%;
  }
  .tm-course-comments-filters a .bar {
    flex: 1;
  }
}

.tm-course-comment-details {
  display: flex;
  flex-flow: column wrap;
}
.tm-course-comment-details li {
  margin: 0 0 24px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.tm-course-comment-details li .avatar {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  object-fit: cover;
}
.tm-course-comment-details li .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.tm-course-comment-details li .comment-details {
  width: calc(100% - 52px);
}
.tm-course-comment-details li .answer {
  margin: 24px 0 0 56px;
}
.tm-course-comment-details li .answer li {
  margin: 0;
}
.tm-course-comment-details .comment-details-header {
  display: flex;
  align-items: flex-start;
  margin: 6px 0 8px;
}
.tm-studio-home-outer, .tm-my-cart {
  margin-top: 140px;
}
.tm-home-search, .tm-header-create-course {
  margin-top: 120px
}
.tm-studio-home-outer .tm-wrapper {
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.tm-studio-home-outer .tm-studio-home-content-right {
  width: 335px;
  margin-right: 20px;
  position: sticky;
  top: 20px;
}
.tm-studio-home-outer .tm-studio-home-content-left {
  width: calc(100% - 355px);
}
@media (max-width: 80em) {
  .tm-studio-home-outer, .tm-my-cart, .tm-crate-course-content {
    margin-top: 100px;
  }
  .tm-home-search, .tm-header-create-course {
    margin-top: 80px;
  }
}
@media (max-width: 48em) {
  .tm-studio-home-outer .tm-studio-home-content-right,
  .tm-studio-home-outer .tm-studio-home-content-left {
    width: 100%;
    margin-right: 0;
    position: relative;
    top: 0;
  }
}
.tm-update-docs {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid #F44336;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.tm-update-docs .left svg {
  width: 54px;
  height: 54px;
}
.tm-update-docs .right {
  width: calc(100% - 70px);
}

.tm-white-box {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(39, 39, 39, 0.2);
  padding: 20px;
}

.tm-course-comment-send {
  display: flex;
  margin: 32px 0;
}
.tm-course-comment-send figure {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}
.tm-course-comment-send figure img {
  min-width: 40px;
  min-height: 40px;
  object-fit: cover;
  border-radius: 50%;
}
.tm-course-comment-send-form {
  width: 100%;
}
.tm-course-comment-send-form-bottom {
  margin: 10px 0 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.tm-course-comment-send-form-bottom div:nth-child(2) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.tm-course-comment-send textarea {
  min-height: 50px;
}
@media (max-width: 37.5em) {
  .tm-course-comment-send-form-bottom div:nth-child(2) {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 48em) {
  .tm-purchases {
    margin-top: 20px;
  }
  .tm-purchases .d-flex {
    flex-flow: column wrap;
  }
  .tm-purchases .left,
  .tm-purchases .right {
    width: 100%;
  }
  .tm-purchases .right .d-flex {
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}
.sign-in-up-outer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100vh;
  width: 100%;
  padding: 0;
}
.sign-in-up-outer .sign-in-up-left {
  background-color: rgba(255, 130, 39, 0.15);
  display: flex;
  flex-flow: column wrap;
  padding: 80px;
}
.sign-in-up-outer .sign-in-up-left h2 {
  font-weight: bold;
  font-size: 2.4vw;
  color: #FF8227;
  margin-bottom: 30px;
}
.sign-in-up-outer .sign-in-up-left img {
  max-height: calc(100vh - 400px);
  max-width: calc(50vw - 160px);
}
.sign-in-up-outer .sign-in-up-right {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.sign-in-up-outer .sign-in-up-right .social-sign-in {
  display: flex;
  align-items: center;
}
.sign-in-up-outer .sign-in-up-right .line-or {
  position: relative;
  text-align: center;
  width: 50%;
}
.sign-in-up-outer .sign-in-up-right .line-or span {
  font-size: 14px;
  background-color: #fff;
  padding: 0 30px;
  margin: 0 30px;
  color: rgba(39, 39, 39, 0.6);
  z-index: 2;
  display: inline-block;
}
.sign-in-up-outer .sign-in-up-right .line-or:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
  height: 1px;
  background-color: rgba(39, 39, 39, 0.2);
}
@media (max-width: 52em) {
  .sign-in-up-outer {
    grid-template-columns: 1fr;
  }
  .sign-in-up-outer .sign-in-up-left {
    display: none;
  }
  .sign-in-up-outer .sign-in-up-right .w-50 {
    width: 100% !important;
  }
  .sign-in-up-outer .sign-in-up-right .line-or {
    width: 100%;
  }
  .sign-in-up-outer .sign-in-up-right .pl-48 {
    padding-left: 24px !important;
  }
  .sign-in-up-outer .sign-in-up-right .pr-48 {
    padding-right: 24px !important;
  }
  .sign-in-up-outer .sign-in-up-right .form-input.activation-code {
    width: 50px;
    font-size: 24px;
  }
}

.social-sign-up-options {
  padding: 4px;
  border-radius: 5px;
  border: 2px solid rgba(255, 130, 39, 0.40);
  background: #FFF;
}
@media (max-width: 48em) {
  .social-sign-up-options{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .social-sign-up-options .pl-48 {
    padding-left: 20px !important;
  }
  .social-sign-up-options .pr-48 {
    padding-right: 20px !important;
  }
}

.tm-course-init-top {
  background-color: rgba(255, 130, 39, 0.1);
  padding: 36px;
  text-align: center;
}
.tm-course-init-top h1 {
  font-weight: 700;
  color: #FF8227;
  margin-bottom: 16px;
  line-height: 1;
}
@media (max-width: 48em) {
  .tm-course-init-top h1 {
    font-size: 1.5rem;
  }
}

.tm-course-init-content,
.tm-user-init-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.tm-course-init-content-box,
.tm-user-init-content-box {
  padding: 20px;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 5px;
  text-align: center;
}
.tm-course-init-content h2,
.tm-user-init-content h2 {
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 48em) {
  .tm-course-init-content,
  .tm-user-init-content {
    padding: 0 1rem;
  }
  .tm-course-init-content.w-50,
  .tm-user-init-content.w-50 {
    width: 100% !important;
  }
  .tm-course-init-content-box .w-75,
  .tm-user-init-content-box .w-75 {
    width: 100% !important;
  }
  .tm-course-init-content-box.mb-32,
  .tm-user-init-content-box.mb-32 {
    margin-bottom: 32px !important;
  }
  .tm-course-init-content .fitgit-sport-cats,
  .tm-user-init-content .fitgit-sport-cats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 48em) {
  .fitgit-course-type.tm-grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.tm-multi-select {
  border-radius: 5px;
  border: 1px solid rgba(39, 39, 39, 0.6);
  color: rgba(39, 39, 39, 0.8);
  padding: 34px;
  text-align: right;
  position: relative;
  height: 90px;
  transition: all 0.3s ease-out;
}
.tm-multi-select:hover {
  color: #272727;
}
.tm-multi-select .icon {
  position: absolute;
  top: 16px;
  left: 24px;
  filter: invert(59%) sepia(73%) saturate(0%) hue-rotate(140deg) brightness(104%) contrast(77%);
  transition: all 0.3s ease-out;
}
.tm-multi-select .icon img {
  height: 56px;
}
.tm-multi-select.small {
  padding: 16px;
  height: auto;
  font-size: 14px;
  text-align: left;
}
.tm-multi-select.centered {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  height: auto;
}
.tm-multi-select.selected {
  font-weight: 600;
  border-color: #FF8227;
  color: #FF8227;
  box-shadow: 0px 4px 20px rgba(255, 130, 39, 0.25);
}
.tm-multi-select.selected .icon {
  filter: invert(54%) sepia(92%) saturate(1314%) hue-rotate(341deg) brightness(102%) contrast(101%);
}
@media (max-width: 48em) {
  .tm-multi-select {
    padding: 16px 20px;
    font-size: 14px;
    height: auto;
  }
  .tm-multi-select .icon {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .tm-multi-select .icon img {
    height: 32px;
  }
  .tm-multi-select.centered {
    padding: 20px;
  }
}

.tm-wrapper {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 20px;
}
.tm-wrapper.tm-wrapper-full {
  max-width: 100%;
}
.tm-wrapper.w-800 {
  max-width: 800px;
}

.trainermarket-breadcrumb {
  margin: 1rem 0;
}
.trainermarket-breadcrumb li {
  display: inline-block;
  position: relative;
  font-size: 0.875rem;
}
.trainermarket-breadcrumb li:not(:last-child):after {
  content: "›";
  line-height: 1;
  font-size: 1.25rem;
  display: inline-block;
  margin: 0 1.25rem;
}
@media (max-width: 37.5em) {
  .trainermarket-breadcrumb li {
    font-size: 14px;
  }
  .trainermarket-breadcrumb li:not(:last-child):after {
    display: inline-block;
    margin: 0 0.5rem;
  }
}

.trainermarket-pagination {
  text-align: center;
}
.trainermarket-pagination li {
  display: inline-block;
  margin: 0 2px;
}
.trainermarket-pagination a {
  width: 32px;
  height: 32px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background-color: #FF8227;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease-out;
}
.trainermarket-pagination a:hover {
  background-color: #fff;
  color: #FF8227;
}
.trainermarket-pagination a.active {
  background-color: #22C577;
  color: #fff;
}

.tm-user-welcome {
  padding: 32px 0;
}
.tm-user-welcome .tm-wrapper {
  display: flex;
}
.tm-user-welcome-left {
  width: 33%;
  padding: 36px 16px 16px;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 8px;
  margin-right: 20px;
  position: relative;
}
.tm-user-welcome-left-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  color: rgba(39, 39, 39, 0.4);
  display: block;
  width: 20px;
  height: 20px;
}
.tm-user-welcome-left-close svg {
  width: 20px;
  height: 20px;
}
.tm-user-welcome-right {
  width: 66%;
  padding: 24px;
  background-color: rgba(255, 130, 39, 0.1);
  border-radius: 8px;
}

@media (max-width: 64em) {
  .tm-user-welcome .tm-header-search, .tm-user-welcome input {
    width: 100%;
  }
}
@media (max-width: 48em) {
  .tm-user-welcome .tm-wrapper {
    flex-flow: column wrap;
    gap: 20px;
  }
  .tm-user-welcome-left, .tm-user-welcome-right {
    width: 100%;
    margin: 0;
  }
  .tm-user-welcome-right .left, .tm-user-welcome-right .right {
    width: 100%;
  }
}

.tm-card-grid-section {
  padding: 32px 0;
}
.tm-card-grid-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.tm-card-grid-section-header h2 {
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 64em) {
  .tm-card-grid-section-header {
    margin-bottom: 16px;
  }
  .tm-card-grid-section-header h2 {
    font-size: 24px;
  }
}
.tm-course-card {
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 5px;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease-out;
}
.tm-course-card:hover {
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.2));
}
.tm-course-card.add-new {
  min-height: 280px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  color: #22C577;
  font-size: 20px;
  border: 2px dashed #22C577;
}
.tm-course-card.add-new.instructor {
  min-height: 216px;
}
.tm-course-card.add-new svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.tm-course-card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.tm-course-card figure img {
  border-radius: 5px 5px 0 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tm-course-card .distance,
.tm-course-card .course-type {
  background-color: rgba(39, 39, 39, 0.8);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}
.tm-course-card .course-type {
  top: auto;
  bottom: 0;
  right: 0;
  padding: 8px 16px;
}
.tm-course-card .discount {
  position: absolute;
  padding: 8px;
  color: #fff;
  background-color: #FF8227;
  width: 100%;
  transform: rotate(-45deg) translate(0, 0);
  top: 10%;
  left: -38%;
  text-align: center;
}
.tm-course-card-content {
  background-color: #fff;
  padding: 12px;
  border-radius: 0 0 5px 5px;
}
.tm-course-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(39, 39, 39, 0.2);
  margin-right: 10px;
  object-fit: cover;
}
.tm-course-card .top,
.tm-course-card .bottom {
  display: flex;
  margin-bottom: 20px;
}
.tm-course-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #272727;
}
.tm-course-card h4 {
  font-size: 14px;
  color: rgba(39, 39, 39, 0.6);
}
.tm-course-card .bottom {
  margin-bottom: 0;
  align-items: center;
  justify-content: space-between;
}
.tm-course-card .bottom-left,
.tm-course-card .bottom-right {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.tm-course-card.saloon figure {
  background-color: #fff;
}
.tm-course-card.saloon figure img {
  position: relative;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  margin: 50px auto 10px;
}
.tm-course-card.saloon .top {
  color: #272727;
  font-size: 18px;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: center;
}
.tm-course-card.saloon .bottom {
  color: rgba(39, 39, 39, 0.8);
  display: flex;
  align-items: center;
}

.tm-course-card-more-menu-link {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 20;
  width: 32px;
  height: 32px;
  background-color: rgba(39, 39, 39, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.tm-course-card-more-menu-link:hover {
  color: #fff;
}

.tm-course-card-more-menu {
  position: absolute;
  top: 40px;
  right: 8px;
  z-index: 21;
  background-color: #fff;
  border: 1px solid #FF8227;
  border-radius: 5px;
  padding: 16px;
  min-width: 200px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
.tm-course-card-more-menu.show {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.tm-course-card-more-menu li:not(:last-child) {
  margin-bottom: 16px;
}
.tm-course-card-more-menu a {
  color: rgba(39, 39, 39, 0.8);
  display: block;
}
.tm-course-card-more-menu .delete {
  color: #F44336;
}

.tm-card-sports-section {
  background-color: rgba(255, 130, 39, 0.1);
  padding: 60px 0;
  position: relative;
}
.tm-card-sports-section .tm-sports-grid-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.tm-card-sports-section .tm-sports-grid-arrow.right {
  left: auto;
  right: 0;
}

@media (max-width: 48em) {
  .tm-card-sports-section .tm-sports-grid-arrow {
    display: none;
  }
}

.tm-sports-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 0 32px;
}
.tm-sports-grid a {
  background-color: #fff;
  position: relative;
  border-radius: 5px;
  color: #FF8227;
  font-size: 24px;
  font-weight: 500;
  height: 150px;
  padding: 20px;
  line-height: 1.2;
  transition: all 0.3s ease-out;
}
.tm-sports-grid a .icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  filter: invert(54%) sepia(92%) saturate(1314%) hue-rotate(341deg) brightness(102%) contrast(101%);
}
.tm-sports-grid a:hover {
  background-color: #FF8227;
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(255, 130, 39, 0.5);
}
.tm-sports-grid a:hover .icon {
  filter: invert(100%) sepia(0%) saturate(7488%) hue-rotate(206deg) brightness(101%) contrast(103%);
}
@media (max-width: 48em) {
  .tm-sports-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.tm-news-link {
  display: flex;
  flex-flow: row wrap;
  background-color: #fff;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 5px;
  font-size: 14px;
  color: rgba(39, 39, 39, 0.8);
  transition: all 0.3s ease-out;
}
.tm-news-link:hover {
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.2));
  color: #272727;
}
.tm-news figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 40%;
}
.tm-news figure img {
  border-radius: 5px 0 0 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tm-news figure .tag {
  background-color: rgba(39, 39, 39, 0.8);
  color: #fff;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8px 16px;
}
.tm-news .text {
  width: 60%;
  padding: 16px;
  overflow-wrap: break-word;
}
@media (max-width: 48em) {
  .tm-news figure, .tm-news .text {
    width: 100%;
  }
}
.tm-home-search {
  background-color: rgba(255, 130, 39, 0.1);
  padding: 48px 20px;
}
.tm-home-search .tm-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.tm-home-search .tm-grid-col-2 {
  align-items: center;
}
@media (max-width: 48em) {
  .tm-home-search {
    padding: 24px 0;
  }
  .tm-home-search .mb-32 {
    margin-bottom: 24px !important;
  }
  .tm-home-search .tm-grid-col-2 {
    grid-template-columns: 1fr;
  }
  .tm-home-search .tm-grid-col-2 .right {
    display: none;
  }
  .tm-home-search .tm-header-search,
  .tm-home-search .tm-header-search input {
    width: 100%;
  }
  .tm-home-search .tm-header-search input {
    padding-left: 48px;
  }
  .tm-home-search .tm-header-search svg {
    left: 17px;
  }
  .tm-home-search .text-14.text-black-60.mr-16 {
    width: 100%;
    margin-bottom: 8px;
  }
}

.tm-home-what {
  padding: 48px 20px;
  margin-bottom: 32px;
}
.tm-home-what .tm-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.tm-home-what h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
}
.tm-home-what .tm-home-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.tm-home-what .tm-home-what-grid-box {
  background-color: #fff;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 4px;
  text-align: left;
  position: relative;
}
.tm-home-what .tm-home-what-grid-box header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  transition: all 0.3s ease-out;
}
.tm-home-what .tm-home-what-grid-box .icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.tm-home-what .tm-home-what-grid-box .title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 61px;
}
.tm-home-what .tm-home-what-grid-box .content {
  border-top: 1px solid rgba(39, 39, 39, 0.2);
  margin: 0 24px;
  padding-top: 24px;
  padding-bottom: 66px;
}
.tm-home-what .tm-home-what-grid-box strong {
  font-size: 20px;
  line-height: 24.38px;
  margin-bottom: 24px;
  display: block;
}
.tm-home-what .tm-home-what-grid-box p {
  color: rgba(39, 39, 39, 0.8);
}
.tm-home-what .tm-home-what-grid-box:hover header .icon-wrapper img {
  filter: invert(93%) sepia(96%) saturate(56%) hue-rotate(83deg) brightness(116%) contrast(101%);
}
.tm-home-what .tm-home-what-grid-box:hover header .title {
  color: #FFFFFF;
}
.tm-home-what .tm-home-what-grid-box:hover.box-1 header {
  background-color: #FF8227;
}
.tm-home-what .tm-home-what-grid-box:hover.box-1 .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}
.tm-home-what .tm-home-what-grid-box:hover.box-2 header {
  background-color: #3FBDF1;
}
.tm-home-what .tm-home-what-grid-box:hover.box-2 .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}
.tm-home-what .tm-home-what-grid-box:hover.box-3 header {
  background-color: #FFB800;
}
.tm-home-what .tm-home-what-grid-box:hover.box-3 .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}
.tm-home-what .tm-home-what-grid-box:hover.box-4 header {
  background-color: #F576A6;
}
.tm-home-what .tm-home-what-grid-box:hover.box-4 .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}
.tm-home-what .tm-home-what-grid-box:hover.box-5 header {
  background-color: #22C577;
}
.tm-home-what .tm-home-what-grid-box:hover.box-5 .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}
.tm-home-what .tm-home-what-grid .box-1 .title {
  color: #FF8227;
}
.tm-home-what .tm-home-what-grid .box-1 .icon-wrapper {
  background: rgba(255, 130, 39, 0.2);
}
.tm-home-what .tm-home-what-grid .box-1 .icon-wrapper img {
  filter: invert(52%) sepia(92%) saturate(1038%) hue-rotate(342deg) brightness(104%) contrast(101%);
}
.tm-home-what .tm-home-what-grid .box-2 .title {
  color: #3FBDF1;
}
.tm-home-what .tm-home-what-grid .box-2 .icon-wrapper {
  background: rgba(63, 189, 241, 0.2);
}
.tm-home-what .tm-home-what-grid .box-2 .icon-wrapper img {
  filter: invert(70%) sepia(77%) saturate(1952%) hue-rotate(166deg) brightness(95%) contrast(99%);
}
.tm-home-what .tm-home-what-grid .box-3 .title {
  color: #FFB800;
}
.tm-home-what .tm-home-what-grid .box-3 .icon-wrapper {
  background: rgba(255, 184, 0, 0.2);
}
.tm-home-what .tm-home-what-grid .box-3 .icon-wrapper img {
  filter: invert(66%) sepia(86%) saturate(1288%) hue-rotate(360deg) brightness(103%) contrast(104%);
}
.tm-home-what .tm-home-what-grid .box-4 .title {
  color: #F576A6;
}
.tm-home-what .tm-home-what-grid .box-4 .icon-wrapper {
  background: rgba(245, 118, 166, 0.2);
}
.tm-home-what .tm-home-what-grid .box-4 .icon-wrapper img {
  filter: invert(73%) sepia(28%) saturate(3335%) hue-rotate(295deg) brightness(96%) contrast(100%);
}
.tm-home-what .tm-home-what-grid .box-5 {
  grid-column: span 2;
}
.tm-home-what .tm-home-what-grid .box-5 header {
  width: 46%;
}
.tm-home-what .tm-home-what-grid .box-5 .content {
  width: calc(46% - 48px);
}
.tm-home-what .tm-home-what-grid .box-5 .title {
  color: #22C577;
}
.tm-home-what .tm-home-what-grid .box-5 .icon-wrapper {
  background: rgba(34, 197, 119, 0.2);
}
.tm-home-what .tm-home-what-grid .box-5 .icon-wrapper img {
  filter: invert(70%) sepia(15%) saturate(3774%) hue-rotate(97deg) brightness(93%) contrast(73%);
}
.tm-home-what .tm-home-what-grid .big-image {
  position: absolute;
  right: 0px;
  top: 0px;
}
@media (max-width: 64em) {
  .tm-home-what {
    padding: 24px 20px;
  }
  .tm-home-what .tm-wrapper {
    padding: 0;
  }
  .tm-home-what h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .tm-home-what .tm-home-what-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tm-home-what .tm-home-what-grid-box header {
    align-items: center;
  }
  .tm-home-what .tm-home-what-grid-box .title {
    margin-top: 0;
  }
  .tm-home-what .tm-home-what-grid .box-1 {
    order: -1;
  }
  .tm-home-what .tm-home-what-grid .box-5 {
    grid-column: span 1;
    order: 0;
  }
  .tm-home-what .tm-home-what-grid .box-5 header {
    width: 100%;
  }
  .tm-home-what .tm-home-what-grid .box-5 .content {
    width: calc(100% - 48px);
  }
  .tm-home-what .tm-home-what-grid .box-2 {
    order: 3;
  }
  .tm-home-what .tm-home-what-grid .box-3 {
    order: 4;
  }
  .tm-home-what .tm-home-what-grid .box-4 {
    order: 5;
  }
  .tm-home-what .tm-home-what-grid .big-image {
    position: relative;
    top: 0;
    right: 0;
    padding: 24px;
  }
}

.tm-home-why {
  margin-bottom: 80px;
}
.tm-home-why .tm-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
}
.tm-home-why .tm-wrapper .left img {
  display: inline-block;
}
.tm-home-why .tm-wrapper .right {
  flex: 1;
}
.tm-home-why .tm-wrapper h2 {
  font-size: 42px;
  line-height: 1;
  margin: 0 0 16px;
}
.tm-home-why .tm-wrapper .desc {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 60px;
}
.tm-home-why .tm-wrapper p {
  font-size: 18px;
}
.tm-home-why .tm-wrapper li {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  margin-bottom: 48px;
}
.tm-home-why .tm-wrapper li span {
  flex: 1;
  margin: 0 0 24px 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 18px;
  font-weight: 500;
}
.tm-home-why .tm-wrapper li:last-child span {
  border-bottom: 0;
}
.tm-home-why .tm-wrapper .img-wrapper {
  width: 48px;
  display: flex;
  justify-content: flex-end;
}
.tm-home-why .tm-wrapper strong {
  position: relative;
  display: inline-block;
}
.tm-home-why .tm-wrapper strong:before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 8px;
}
.tm-home-why .tm-wrapper strong.color-1:before {
  background: rgba(255, 130, 39, 0.4);
}
.tm-home-why .tm-wrapper strong.color-2:before {
  background: rgba(0, 171, 241, 0.4);
}
.tm-home-why .tm-wrapper strong.color-3:before {
  background: rgba(245, 118, 166, 0.4);
}
.tm-home-why .tm-wrapper strong.color-4:before {
  background: rgba(34, 197, 119, 0.4);
}
@media (max-width: 48em) {
  .tm-home-why {
    margin-bottom: 20px;
  }
  .tm-home-why .tm-wrapper .left {
    display: none;
  }
  .tm-home-why .tm-wrapper li {
    margin-bottom: 32px;
  }
  .tm-home-why .tm-wrapper li span {
    font-size: 16px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.tm-home-nearest-courses .tm-home-nearest-courses-filters {
  margin-bottom: 32px;
}
@media (max-width: 48em) {
  .tm-home-nearest-courses h2 {
    font-size: 20px;
  }
  .tm-home-nearest-courses .tm-grid-col-2.first {
    grid-template-columns: 1fr;
  }
  .tm-home-nearest-courses .tm-grid-col-4 {
    grid-template-columns: 1fr;
  }
}

.tm-home-find-nearest-course {
  padding: 50px 20px 0;
  min-height: 600px;
  background: url(../img/on-kayit-bg.jpg) no-repeat center center;
}
.tm-home-find-nearest-course h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.tm-search-filters {
  padding: 16px 0 8px;
  background: rgba(255, 130, 39, 0.1);
  border-radius: 5px;
  display: flex;
  flex: 0 0 auto;
  width: 49%;
  justify-content: space-evenly;
}

.tm-search-filters.green-bg{
  background: rgba(34, 197, 119, 0.1)
}


.tm-search-filters a {
  background-color: #fff;
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 5px;
  color: rgba(39, 39, 39, 0.8);
  padding: 8px 10px;
  margin: 0 8px 8px 0;
  display: inline-block;
}
.tm-search-filters a.selected {
  background-color: #FF8227;
  border-color: #FF8227;
  color: #fff;
}
.green-bg a.selected {
  background-color: #22c577;
  border-color: #22c577;
  color: #fff;
}

.tm-search-results header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 37.5em) {
  .tm-search-results header {
    flex-flow: column wrap;
  }
  .tm-search-results header .left,
  .tm-search-results header .right {
    width: 100%;
  }
  .tm-search-results header .left {
    margin-bottom: 8px;
  }
  .tm-search-filters {
    margin-bottom: 10px;
    width: 100%;
  }
  .tm-search-filters a{
    margin: 0 5px;
  }
}
.tm-my-cart-inner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}
.tm-my-cart .right {
  position: sticky;
  top: 20px;
}
.tm-my-cart .box {
  border: 1px solid rgba(39, 39, 39, 0.2);
  border-radius: 5px;
  padding: 20px;
}
.tm-my-cart .form-checkbox {
  width: 32px;
  height: 32px;
}
.tm-my-cart .form-checkbox:before {
  font-size: 18px;
}
@media (max-width: 48em) {
  .tm-my-cart h1 {
    margin-bottom: 16px !important;
    font-size: 24px !important;
  }
  .tm-my-cart-inner {
    grid-template-columns: minmax(100%, 1fr);
  }
  .tm-my-cart .tm-purchase-summary {
    order: -1;
    position: relative;
    top: 0;
  }
}

.tm-my-cart-courses-table {
  width: 100%;
  border: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-my-cart-courses-table thead {
  background-color: #f1f1f1;
}
.tm-my-cart-courses-table tr {
  border-bottom: 1px solid rgba(39, 39, 39, 0.2);
}
.tm-my-cart-courses-table th {
  padding: 12px;
}
.tm-my-cart-courses-table td {
  padding: 32px 12px;
  vertical-align: middle;
}
@media (max-width: 37.5em) {
  .tm-my-cart-courses-table thead {
    display: none;
  }
  .tm-my-cart-courses-table tr:not(.tm-purchase-detail) {
    display: block;
    padding: 20px;
  }
  .tm-my-cart-courses-table tr:not(.tm-purchase-detail) .tm-purchase-detail-table {
    display: none;
  }
  .tm-my-cart-courses-table .tm-purchase-detail-table [data-th] {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .tm-my-cart-courses-table .tm-purchase-detail-table [data-th]:before {
    content: attr(data-th);
  }
  .tm-my-cart-courses-table [data-th-top]:before {
    content: attr(data-th-top);
    color: rgba(39, 39, 39, 0.6);
  }
  .tm-my-cart-courses-table td {
    padding: 0 0 10px;
    display: block;
  }
  .tm-my-cart-courses-table td .text-right, .tm-my-cart-courses-table td.text-right, .tm-my-cart-courses-table td.text-center {
    text-align: left !important;
  }
  .tm-my-cart-courses-table td .tm-my-courses-open-more-menu-link {
    display: none;
  }
  .tm-my-cart-courses-table td ul {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 0;
    border: 0;
    font-size: 16px;
  }
  .tm-my-cart-courses-table td .tm-my-courses-open-more-menu ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .tm-my-cart-courses-table td .d-flex.justify-end {
    justify-content: flex-start;
  }
  .tm-my-cart-courses-table td.w-75 {
    width: 100% !important;
  }
  .tm-my-cart-courses-table.tm-course-join-list tr {
    display: table-row;
  }
  .tm-my-cart-courses-table.tm-course-join-list td {
    display: table-cell;
    padding: 10px;
    text-align: left;
  }
  .tm-my-cart-courses-table.tm-course-join-list td:nth-child(3) {
    text-align: right;
  }
  .tm-my-cart-courses-table.tm-course-join-list td .d-flex.justify-end {
    justify-content: flex-end;
  }
}

.tm-agreement-box {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
}
.tm-agreement-box-text {
  max-height: 140px;
  overflow-y: auto;
}
.tm-purchase-summary {
  position: relative;
}
.tm-purchase-summary.selected {
  background-color: rgba(255, 130, 39, 0.1);
}
.tm-purchase-summary.selected .tm-open-row-detail svg {
  transform: rotate(180deg);
  filter: invert(68%) sepia(53%) saturate(3990%) hue-rotate(341deg) brightness(101%) contrast(101%);
}
.tm-purchase-summary.selected .text-18.font-700 {
  color: #FF8227;
}
@media (max-width: 37.5em) {
  .tm-purchase-summary .tm-open-row-detail {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
.tm-purchase-detail {
  display: none;
}
@media (max-width: 37.5em) {
  .tm-purchase-detail {
    display: none;
  }
}
.tm-purchase-detail.show {
  display: table-row;
}
@media (max-width: 37.5em) {
  .tm-purchase-detail.show .tm-purchase-detail-table {
    display: table;
  }
}
.tm-my-profile {
  margin-top: 48px;
}
@media (max-width: 48em) {
  .tm-my-profile {
    margin: 24px auto;
  }
}

.tm-my-profile-grid {
  display: grid;
  grid-template-columns: 3fr 4fr 5fr;
  gap: 20px;
}
.tm-my-profile-grid .tm-user-avatar {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  margin: 0 auto 24px;
  object-fit: cover;
}
@media (max-width: 64em) {
  .tm-my-profile-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 48em) {
  .tm-my-profile-grid {
    grid-template-columns: 1fr;
  }
}

.tm-my-courses-open-more-menu {
  position: relative;
}
.tm-my-courses-open-more-menu ul {
  position: absolute;
  top: 24px;
  right: 0;
  z-index: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #FF8227;
  white-space: nowrap;
  text-align: left;
  font-size: 18px;
  transition: all 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.tm-my-courses-open-more-menu ul.show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.tm-my-courses-open-more-menu ul li:not(:last-child) {
  margin-bottom: 20px;
}

.tm-star-rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
}

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

.tm-star-rating > input {
  display: none;
}

.tm-star-rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  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;
}

.tm-star-rating > input:checked ~ label,
.tm-star-rating > 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='%23FFC700' 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");
}

.tm-star-rating > input:not(:checked) ~ label:hover,
.tm-star-rating > 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='%23FFC700' 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");
}

.tm-loading {
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  border-radius: 12px;
  z-index: 1000;
}

.tm-loading-circle {
  width: 48px;
  height: 48px;
  margin: 20px auto;
  border: 4px rgba(34, 197, 119, 0.25) solid;
  border-top: 4px #22c577 solid;
  border-radius: 50%;
  -webkit-animation: spCircRot 0.6s infinite linear;
  animation: spCircRot 0.6s infinite linear;
}

@keyframes spCircRot {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.page-404-outer {
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}
.page-404-outer h1 {
  font-size: 10vw;
  font-weight: 600;
  color: #FF8227;
  line-height: 1;
}
@media (max-width: 37.5em) {
  .tm-settings .d-flex {
    gap: 10px;
  }
  .tm-settings a.pl-64 {
    padding-left: 32px !important;
  }
  .tm-settings a.pr-64 {
    padding-right: 32px !important;
  }
}

.whatsapp-link{
  position: sticky;
  bottom: 0;
  right: 0;
  margin-left: auto;
  z-index: 3;
  margin-right: 3%;
  width: fit-content;
}
