@charset "UTF-8";
@font-face {
  font-family: MaterialFontIcon;
  src: url(../fonts/materialdesignicons-webfont.ttf);
}
@font-face {
  font-family: Dana-Fanum;
  src: url(../fonts/dana-fanum-regular.woff);
}
@font-face {
  font-family: Dana;
  src: url(../fonts/dana-regular.woff) format("woff");
}
* {
  font-family: Dana-Fanum;
}

html,
body {
  background: #f1f3f9;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #8898aa #cfd8dc;
  overflow-y: scroll;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: #cfd8dc;
  border-radius: 6px;
}
body::-webkit-scrollbar-thumb {
  background-color: #8898aa;
  border-radius: 6px;
}

.logo {
  width: -moz-max-content;
  width: max-content;
  margin-top: 41px;
  margin-right: 48px;
  margin-left: 48px;
  margin-bottom: 24px;
  font-size: 25px;
  font-family: Dana;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.32;
  letter-spacing: -0.28px;
}
.logo span {
  display: block;
}

.blur {
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  z-index: 999999999;
}

.pageCover {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
  z-index: 99;
}

.content-body {
  display: flex;
}
.content-body .sidebar-menu {
  background: #ffffff;
  height: 100%;
  width: 20%;
  position: fixed;
  transition: width 1s;
  overflow: hidden;
}
.content-body .sidebar-menu.mobileMode {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 80%;
}
.content-body .sidebar-menu.close {
  overflow-x: hidden;
  width: 0;
}
.content-body .sidebar-menu .sidebar-menu-full {
  width: 275px;
}
.content-body .sidebar-menu .search-box {
  width: 98%;
  height: 32px;
  padding-right: 5px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  border: solid 1px #808080;
  background-color: #ffffff;
  margin: 0 1%;
}
.content-body .sidebar-menu ul {
  width: 98%;
  margin: 10px 1% 0 1%;
  padding: 0;
  list-style: none;
}
.content-body .sidebar-menu ul.scrollable {
  scrollbar-width: thin;
  scrollbar-color: #8898aa #cfd8dc;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 75vh;
}
.content-body .sidebar-menu ul.scrollable::-webkit-scrollbar {
  width: 8px;
}
.content-body .sidebar-menu ul.scrollable::-webkit-scrollbar-track {
  background: #cfd8dc;
  border-radius: 6px;
}
.content-body .sidebar-menu ul.scrollable::-webkit-scrollbar-thumb {
  background-color: #8898aa;
  border-radius: 6px;
}
.content-body .sidebar-menu ul li {
  border-radius: 5px;
  padding: 20px 20px;
  font-size: 15px;
  font-family: Dana;
  font-weight: normal;
  padding-bottom: 10px;
  cursor: pointer;
  width: 100%;
}
.content-body .sidebar-menu ul li div {
  width: -moz-max-content;
  width: max-content;
}
.content-body .sidebar-menu ul li.active {
  background-color: #f1f3f9;
  cursor: pointer;
}
.content-body .sidebar-menu ul li .menu-item-icon {
  font-size: 24px;
  cursor: pointer;
}
.content-body .sidebar-menu ul li label {
  font-weight: normal;
  cursor: pointer;
}
.content-body .main-content {
  width: 80%;
  margin-right: 20%;
  min-height: 100%;
  transition: 1s;
}
.content-body .main-content.fullWidth {
  width: 100%;
  margin-right: 0;
}
.content-body header {
  background: #841983;
  width: 80%;
  position: fixed;
  height: 70px;
  z-index: 50;
  transition: 1s;
}
.content-body header.fullWidth {
  width: 100%;
}
.content-body header.active {
  box-shadow: 0 1px 3px #710470;
}
.content-body header .header-left {
  float: left;
  display: flex;
  margin: 15px 0 0 30px;
}
.content-body header .header-left .header-action-icons {
  line-height: 40px;
  height: 40px;
  display: inline-block;
}
.content-body header .header-left .header-action-icons i {
  font-size: 28px;
  color: #ffffff;
  margin-left: 12px;
  cursor: pointer;
}
.content-body header .header-left div.user-profile-display {
  display: inline-block;
  color: #ffffff;
  cursor: pointer;
}
.content-body header .header-left div.user-profile-display img {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  margin-right: 12px;
}
.content-body header .header-right {
  float: right;
  margin: 0 10px 0 0;
  color: #ffffff;
}
.content-body header .header-right > div {
  height: 30px;
  margin-right: 25px;
  margin-top: 15px;
}
.content-body header .header-right i {
  font-size: 24px;
}
.content-body header .header-right ul {
  display: inline-block;
  padding-right: 5px;
}
.content-body header .header-right ul li {
  display: inline-block;
  list-style-type: disc;
  font-family: Dana;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
}
.content-body header .header-right ul li:before {
  content: "–";
  margin-left: 5px;
}
.content-body header .header-right ul li:first-child::before {
  content: none;
}

.position-r {
  position: relative;
}

.position-a {
  position: absolute;
}

.remove-border {
  border: 0;
  outline: 0;
}

.DivisionLine::after {
  border: 1px solid #f5f6f7;
  margin-bottom: 12px;
  opacity: 0.7;
  content: "";
  height: 0;
  display: block;
  margin-top: 20px;
}

.static-textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 130px;
}

.w-423 {
  width: 432px;
}

.tk-margin-top-zero {
  margin-top: 0 !important;
}

.tk-margin-right-zero {
  margin-right: 0 !important;
}

.tk-margin-left-zero {
  margin-left: 0 !important;
}

.left-zero {
  left: 0;
}

.tk-margin-bottom-zero {
  margin-bottom: 0 !important;
}

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

.m-b-15 {
  margin-bottom: 15px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-r--20 {
  margin-right: -20px;
}

.m-r-70 {
  margin-right: 70px;
}

.m-l-120 {
  margin-left: 120px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-l-110 {
  margin-left: 110px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.m-t-15 {
  margin-top: -15px;
}

.tk-margin-right-17 {
  margin-right: 17%;
}

.tk-margin-right-10 {
  margin-right: 10px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-l-45 {
  margin-left: 45px;
}

.tk-margin-left-80 {
  margin-left: 80px;
}

.tk-margin-left-40 {
  margin-left: 40px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-l-157 {
  margin-left: 157px;
}

.m-r-60 {
  margin-right: 60px;
}

.m-l-60 {
  margin-left: 60px;
}

.m-l-46 {
  margin-left: 46px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-r-137 {
  margin-right: 137px;
}

.m-r-150 {
  margin-right: 150px;
}

.m-r-172 {
  margin-right: 172px;
}

.m-r-242 {
  margin-right: 242px;
}

.m-r-285 {
  margin-right: 285px;
}

.m-r-415 {
  margin-right: 415px;
}

.m-t-200 {
  margin-top: 200px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-t-50 {
  margin-top: 50px;
}

.tk-margin-top-50 {
  margin-top: 50%;
}

.tk-margin-bottom-50 {
  margin-bottom: 50px !important;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-25 {
  margin-top: 25px;
}

.tk-margin-left-28 {
  margin-left: 28px;
}

.m-t-10 {
  margin-top: 10px;
}

.main-label-panel {
  height: 19px;
  font-family: Dana;
  font-size: 13px;
  line-height: 1.92;
  text-align: right;
  color: #000000;
}

.alert-success {
  height: 45px;
  border-radius: 5px;
  margin-top: 10px;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success label {
  position: absolute;
  padding: 13px 16px 0 0;
}

.tk-label {
  font-size: 15px;
  line-height: 1.67;
  text-align: left;
  color: #ffffff;
}

.success {
  background-color: #28a745;
}

.danger {
  background-color: #dc3545;
}

.warning {
  background-color: #fcb449;
}

/******* Theme-KIT ************/
.tk-card-small {
  width: 30%;
  background: #fff;
}

.tk-input-Search-SideBar-Icon span i {
  margin-top: 99px;
}
.tk-input-Search-SideBar-Icon span .input-Search {
  width: 98%;
  height: 32px;
  padding-right: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  border: solid 1px #808080;
  background-color: #ffffff;
  margin: 0 1%;
}

.tk-display-flex {
  display: flex;
}

.search-box-Grid {
  position: relative;
  outline: none;
  border: 0px solid;
  background-color: #f1f3f9;
  font-size: 14px;
  width: 192px;
  border-bottom: 1px solid;
  border-color: #8898aa;
  margin-left: 0px;
}

.tk-bottom-replay-ticket {
  margin: auto;
  margin-top: 20px;
  width: 131px;
}

.drop-down {
  position: relative;
  display: inline-block;
  width: inherit;
}
.drop-down .multiSelect-card {
  border: 1px solid #7764e4;
}
.drop-down .multiSelect-card .tk-autocomplete ul {
  padding-left: 0px;
}
.drop-down .multiSelect-card .tk-autocomplete ul li {
  background: #dedede;
  padding: 3px 6px 0px 6px;
  margin: 5px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
}
.drop-down .multiSelect-card .tk-autocomplete ul li:hover {
  transition-duration: 1s;
  background-color: #aca8a8;
}

.tk-input-text-AutoComplete .ShowDivContent {
  position: unset;
}
.tk-input-text-AutoComplete.position {
  position: relative;
}
.tk-input-text-AutoComplete i {
  position: absolute;
  font-size: x-large;
  padding: 10px 8px 0 0;
  color: #7764e4;
}
.tk-input-text-AutoComplete input {
  color: #7764e4;
}
.tk-input-text-AutoComplete input::-moz-placeholder {
  color: #7764e4;
}
.tk-input-text-AutoComplete input::placeholder {
  color: #7764e4;
}
.tk-input-text-AutoComplete input[type=text]:focus + .drop-down-content {
  display: block;
}

.drop-down-content-Mobail {
  bottom: 32px;
}

.drop-down-content {
  display: none;
  position: absolute;
  z-index: 46;
  width: 100%;
  padding-top: 5px;
}
.drop-down-content ul {
  border: 1px solid #7764e4;
  border-radius: 5px;
  padding: 0px;
  max-height: 180px;
  width: 100%;
  overflow: auto;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.drop-down-content ul li {
  width: 100%;
  padding: 5px;
  display: block;
}

.Lable-text {
  color: white;
}

.drop-down-content:hover {
  display: block;
}

.li-active {
  background-color: #eceff2;
  border-radius: 5px;
}

.tk-card-hover :hover {
  background-color: #eceff2;
  transition: 1s;
  cursor: pointer;
  color: black !important;
}

.backgroundColor :hover {
  background-color: #dedede;
  transition: 1s;
  border-radius: 10px;
}

.backgroundColor.white {
  background-color: white;
}
.backgroundColor.warning {
  background-color: rgba(252, 252, 77, 0.755);
}
.backgroundColor.danger {
  background-color: rgba(252, 67, 67, 0.755);
}
.backgroundColor.black {
  background-color: black;
  color: white;
}
.backgroundColor.black :hover {
  color: black !important;
}

.tk-card-scrollbar {
  width: 30%;
  height: 150px;
  padding: 8px;
}

.tk-icon.padding-right {
  padding-right: 7px;
}
.tk-icon.darkwhite {
  color: #8898aa;
}
.tk-icon.dark {
  color: #000000;
}

.tk-formcontrol-input-default {
  border: 0;
  border-bottom: 1px solid;
}

.tk-formcontrol-input-icon {
  width: 24px;
  height: 24px;
  font-family: MaterialFontIcon;
  opacity: 0.8;
  font-size: 24px;
  line-height: 0.83;
  text-align: center;
  position: absolute;
  top: 39px;
  right: 12px;
}
.tk-formcontrol-input-icon:hover {
  color: #172b4d;
}

.th-height-input {
  height: 30px;
}

.tk-formcontrol-input-icon-note:focus {
  color: #841983;
}
.tk-formcontrol-input-icon-note:focus:focus {
  color: #841983;
}

.tk-formcontrol-input-number {
  width: 100%;
  border: 0;
  border-bottom: 2px solid;
}

.tk-formcontrol-input-text {
  width: 100%;
  padding: 10px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(23, 23, 23, 0.18);
  background-color: #f7fafc;
  direction: rtl;
  text-align: right;
  border: 0;
}
.tk-formcontrol-input-text.disableFeature {
  opacity: 0.5;
}
.tk-formcontrol-input-text.dangerMode {
  border: 1px solid red;
}
.tk-formcontrol-input-text.SuccessMode {
  border: 1px solid #2dce98;
}

.tk-formcontrol-input-text:hover {
  background-color: #ffffff;
}

.tk-formcontrol-input-text:focus {
  background-color: #ffffff;
  border: 1px solid #7764e4;
}

textarea:focus,
input:focus {
  outline: none;
}

.tk-formcontrol-input-text:disabled {
  background-color: #f7fafc;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.6;
}

.tk-formcontrol-input-text-note:focus {
  border: 1px solid #841983;
}

.tk-formcontrol-input-text-success:focus {
  border: 1px solid #2dce98;
}

.tk-formcontrol-input-text-danger:focus {
  border: 1px solid #f53c56;
}

.tk-formcontrol-textarea {
  width: 100%;
  height: 88px;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(23, 23, 23, 0.18);
  background-color: #f7fafc;
  resize: none;
  border: 0;
  outline: none;
  padding: 10px;
  color: #7764e4;
}
.tk-formcontrol-textarea:focus {
  border: solid 1px #7764e4;
  color: #7764e4;
}
.tk-formcontrol-textarea::-moz-placeholder {
  color: #7764e4;
}
.tk-formcontrol-textarea::placeholder {
  color: #7764e4;
}

.botoon-section {
  margin-right: -5px;
}

.tk-input-text-formcontroll:hover {
  background-color: rgba(241, 243, 249, 0.4);
  color: white;
}

.tk-input-text-formcontroll::-moz-placeholder {
  color: white;
}

.tk-input-text-formcontroll::placeholder {
  color: white;
}

.tk-input-text-formcontroll {
  background-color: rgba(241, 243, 249, 0.4);
  border: 1px solid;
  border-color: white;
  color: white;
}

.tk-input-text-formcontroll:focus {
  background-color: rgba(241, 243, 249, 0.4);
  color: white;
}

.tk-margin {
  margin: 5px;
}
.tk-margin.tk-margin-all {
  margin: 35px;
}
.tk-margin.tk-margin-top {
  margin-top: -30px;
  margin-right: -4px;
}
.tk-margin.tk-position-box {
  margin-top: -20px;
  width: 38%;
  margin-left: 0px;
}

.height-box {
  height: 470px;
}

.tk-input-text-outlined {
  background-color: unset;
  border: 0px;
  width: 25%;
  border-bottom: solid 1px white;
  color: white;
  font-size: 12px;
  padding-right: 28px;
}

.tk-input-text-outlined::-moz-placeholder {
  color: white;
}

.tk-input-text-outlined::placeholder {
  color: white;
}

.input-outlined-DarkBlue {
  border-bottom: solid 1px #172b4d !important;
  padding-right: 0px;
  color: #172b4d;
}

.input-outlined-DarkBlue::-moz-placeholder {
  color: #172b4d !important;
}

.input-outlined-DarkBlue::placeholder {
  color: #172b4d !important;
}

.input-outlined-DarkBlue:focus {
  color: #172b4d !important;
}

.tk-button {
  padding: 10px 15px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  background-color: #841983;
  color: #ffffff;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.tk-button:hover {
  background-color: #841983;
  opacity: 0.8;
}
.tk-button:focus {
  background-color: #841983;
  opacity: 0.8;
}
.tk-button:active {
  background-color: #6353c2;
}
.tk-button:disabled {
  opacity: 0.6;
}
.tk-button.warning {
  background-color: #fcb449;
}
.tk-button.warning:hover {
  background-color: #fcb449;
  opacity: 0.8;
}
.tk-button.warning:focus {
  background-color: #fcb449;
  opacity: 0.8;
}
.tk-button.warning:active {
  background-color: #f7990c;
}
.tk-button.warning:disabled {
  opacity: 0.6;
}
.tk-button.info {
  background-color: #11cdef;
}
.tk-button.info:hover {
  background-color: #11cdef;
  opacity: 0.8;
}
.tk-button.info:focus {
  background-color: #11cdef;
  opacity: 0.8;
}
.tk-button.info:active {
  background-color: #19adc7;
}
.tk-button.info:disabled {
  opacity: 0.6;
}
.tk-button.success {
  background-color: #28a745;
}
.tk-button.success:hover {
  background-color: #28a745;
  opacity: 0.8;
}
.tk-button.success:focus {
  background-color: #28a745;
  opacity: 0.8;
}
.tk-button.success:active {
  background-color: #117e2a;
}
.tk-button.success:disabled {
  opacity: 0.6;
}
.tk-button.danger {
  background-color: #dc3545;
}
.tk-button.danger:hover {
  background-color: #dc3545;
  opacity: 0.8;
}
.tk-button.danger:focus {
  background-color: #dc3545;
  opacity: 0.8;
}
.tk-button.danger:active {
  background-color: #bb1b2b;
}
.tk-button.danger:disabled {
  opacity: 0.6;
}
.tk-button.secondary {
  background-color: #6c757d;
}
.tk-button.secondary:hover {
  background-color: #6c757d;
  opacity: 0.8;
}
.tk-button.secondary:focus {
  background-color: #6c757d;
  opacity: 0.8;
}
.tk-button.secondary:active {
  background-color: #5e656b;
}
.tk-button.secondary:disabled {
  opacity: 0.6;
}
.tk-button.primary {
  background-color: #007bff;
}
.tk-button.primary:hover {
  background-color: #007bff;
  opacity: 0.8;
}
.tk-button.primary:focus {
  background-color: #007bff;
  opacity: 0.8;
}
.tk-button.primary:active {
  background-color: #0c69cc;
}
.tk-button.primary:disabled {
  opacity: 0.6;
}
.tk-button.PURBLE2 {
  background-color: #7764e4;
}
.tk-button.PURBLE2:hover {
  background-color: #8673f5;
  opacity: 0.8;
}
.tk-button.PURBLE2:focus {
  background-color: #8673f5;
  opacity: 0.8;
}
.tk-button.PURBLE2:active {
  background-color: #5f4ebe;
}
.tk-button.PURBLE2:disabled {
  opacity: 0.6;
}
.tk-button.pruble {
  background-color: #841983;
}
.tk-button.pruble:hover {
  background-color: #8575df;
  opacity: 0.8;
}
.tk-button.pruble:focus {
  background-color: #8575df;
  opacity: 0.8;
}
.tk-button.pruble:active {
  background-color: #841983;
}
.tk-button.pruble:disabled {
  background-color: #7764e4;
  opacity: 0.6;
}
.tk-button.muted {
  background-color: #6c757d;
}
.tk-button.muted:hover {
  background-color: #6c757d;
  opacity: 0.8;
}
.tk-button.muted:focus {
  background-color: #6c757d;
  opacity: 0.8;
}
.tk-button.muted:active {
  background-color: #505f6d;
}
.tk-button.muted:disabled {
  opacity: 0.6;
}
.tk-button.outlined {
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  background-color: #ffffff;
  border: solid 1px #dbdbdb;
  color: #841983;
}
.tk-button.outlined:hover {
  background-color: rgba(119, 100, 228, 0.32);
  color: #ffffff;
}
.tk-button.outlined:focus {
  background-color: rgba(119, 100, 228, 0.32);
  color: #ffffff;
}
.tk-button.outlined:active {
  background-color: #413582;
}
.tk-button.outlined:disabled {
  background-color: #ffffff;
  opacity: 0.6;
  color: #841983;
}
.tk-button.outlined.warning {
  border: solid 1px #fcb449;
  color: #fcb449;
}
.tk-button.outlined.warning:hover {
  color: #ffffff;
  background-color: #fcb449;
  opacity: 0.8;
}
.tk-button.outlined.warning:focus {
  color: #ffffff;
  background-color: #fcb449;
  opacity: 0.8;
}
.tk-button.outlined.warning:active {
  color: #ffffff;
  background-color: #f7990c;
}
.tk-button.outlined.warning:disabled {
  background-color: #ffffff;
  color: #fcb449;
  opacity: 0.6;
}
.tk-button.outlined.info {
  border: solid 1px #11cdef;
  color: #11cdef;
}
.tk-button.outlined.info:hover {
  color: #ffffff;
  background-color: #11cdef;
  opacity: 0.8;
}
.tk-button.outlined.info:focus {
  color: #ffffff;
  background-color: #11cdef;
  opacity: 0.8;
}
.tk-button.outlined.info:active {
  color: #ffffff;
  background-color: #19adc7;
}
.tk-button.outlined.info:disabled {
  background-color: #ffffff;
  color: #11cdef;
  opacity: 0.6;
}
.tk-button.outlined.success {
  border: solid 1px #28a745;
  color: #28a745;
}
.tk-button.outlined.success:hover {
  color: #ffffff;
  background-color: #28a745;
  opacity: 0.8;
}
.tk-button.outlined.success:focus {
  color: #ffffff;
  background-color: #28a745;
  opacity: 0.8;
}
.tk-button.outlined.success:active {
  color: #ffffff;
  background-color: #117e2a;
}
.tk-button.outlined.success:disabled {
  background-color: #ffffff;
  color: #28a745;
  opacity: 0.6;
}
.tk-button.outlined.danger {
  border: solid 1px #dc3545;
  color: #dc3545;
}
.tk-button.outlined.danger:hover {
  color: #ffffff;
  background-color: #dc3545;
  opacity: 0.8;
}
.tk-button.outlined.danger:focus {
  color: #ffffff;
  background-color: #dc3545;
  opacity: 0.8;
}
.tk-button.outlined.danger:active {
  color: #ffffff;
  background-color: #bb1b2b;
}
.tk-button.outlined.danger:disabled {
  background-color: #ffffff;
  color: #dc3545;
  opacity: 0.6;
}
.tk-button.outlined.secondary {
  border: solid 1px #6c757d;
  color: #6c757d;
}
.tk-button.outlined.secondary:hover {
  color: #ffffff;
  background-color: #6c757d;
  opacity: 0.8;
}
.tk-button.outlined.secondary:focus {
  color: #ffffff;
  background-color: #6c757d;
  opacity: 0.8;
}
.tk-button.outlined.secondary:active {
  color: #ffffff;
  background-color: #5e656b;
}
.tk-button.outlined.secondary:disabled {
  color: #6c757d;
  background-color: #ffffff;
  opacity: 0.6;
}
.tk-button.outlined.primary {
  border: solid 1px #007bff;
  color: #007bff;
}
.tk-button.outlined.primary:hover {
  color: #ffffff;
  background-color: #007bff;
  opacity: 0.8;
}
.tk-button.outlined.primary:focus {
  color: #ffffff;
  background-color: #007bff;
  opacity: 0.8;
}
.tk-button.outlined.primary:active {
  color: #ffffff;
  background-color: #0c69cc;
}
.tk-button.outlined.primary:disabled {
  color: #007bff;
  background-color: #ffffff;
  opacity: 0.6;
}
.tk-button.outlined.pruble {
  border: solid 1px #841983;
  color: #841983;
}
.tk-button.outlined.pruble:hover {
  color: #ffffff;
  background-color: #841983;
  opacity: 0.9;
}
.tk-button.outlined.pruble:focus {
  color: #ffffff;
  background-color: #841983;
  opacity: 0.9;
}
.tk-button.outlined.pruble:active {
  color: #ffffff;
  background-color: #841983;
}
.tk-button.outlined.pruble:disabled {
  color: #8575df;
  background-color: #ffffff;
  opacity: 0.6;
}
.tk-button.outlined.PURBLE2 {
  border: solid 1px #7764e4;
  color: #7764e4;
}
.tk-button.outlined.PURBLE2:hover {
  color: #ffffff;
  background-color: #7764e4;
  opacity: 0.9;
}
.tk-button.outlined.PURBLE2:focus {
  color: #ffffff;
  background-color: #7764e4;
  opacity: 0.9;
}
.tk-button.outlined.PURBLE2:active {
  color: #ffffff;
  background-color: #7764e4;
}
.tk-button.outlined.PURBLE2:disabled {
  color: #8575df;
  background-color: #ffffff;
  opacity: 0.6;
}
.tk-button.outlined.muted {
  border: solid 1px #6c757d;
  color: #6c757d;
}
.tk-button.outlined.muted:hover {
  color: #ffffff;
  background-color: #6c757d;
  opacity: 0.8;
}
.tk-button.outlined.muted:focus {
  color: #ffffff;
  background-color: #6c757d;
  opacity: 0.8;
}
.tk-button.outlined.muted:active {
  color: #ffffff;
  background-color: #505f6d;
}
.tk-button.outlined.muted:disabled {
  background-color: #ffffff;
  color: #6c757d;
  opacity: 0.6;
}

.tk-formcontrol-PageButton-Pagination {
  display: inline-block;
  font-size: 13px;
  text-align: center;
  color: #8898aa;
  font-family: Dana-Fanum;
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  border: solid 1px rgba(136, 152, 170, 0.5);
  border-radius: 100%;
  background-color: #ffffff;
  outline: 0;
  width: 40px;
  height: 40px;
}

.tk-formcontrol-ChevronsButton-Pagination {
  font-family: MaterialFontIcon;
  display: inline-block;
  font-size: 13px;
  width: 40px;
  height: 40px;
  border: solid 1px rgba(136, 152, 170, 0.5);
  border-radius: 100%;
  color: #8898aa;
  background-color: #ffffff;
  outline: 0;
}

.tk-formcontrol-ChevronsButton-Pagination:hover {
  background-color: #f6f9fc;
}

.tk-formcontrol-ChevronsButton-Pagination:focus {
  background-color: #f6f9fc;
}

.tk-formcontrol-ChevronsButton-Pagination:active {
  background-color: #8898aa;
  color: #ffffff;
}

.tk-formcontrol-PageButton-Pagination:hover {
  background-color: #f7fafc;
}

.tk-formcontrol-PageButton-Pagination:focus {
  background-color: #f7fafc;
}

.tk-formcontrol-PageButton-Pagination:active {
  color: #ffffff;
  background-color: #841983;
}

.tk-formcontrol-Scrollbar {
  width: 8px;
  height: 152px;
  border-radius: 4px;
  background-color: #8898aa;
  overflow-y: auto;
  white-space: nowrap;
  opacity: 0.7;
}

.tk-formcontrol-Scrollbar:hover {
  opacity: 0.8;
}

.tk-formcontrol-Scrollbar:focus {
  opacity: 0.8;
}

.tk-formcontrol-Scrollbar:active {
  opacity: 1;
}

.tk-formcontrol-button-tabbbar {
  width: 164px;
  height: 56px;
  background-color: #ffffff;
  border: 0;
  outline: 0;
}

.tk-formcontrol-button-tabbbar:hover {
  background-color: #fcfeff;
}

.tk-formcontrol-button-tabbbar:focus {
  background-color: #fcfeff;
}

.tk-formcontrol-button-tabbbar:active {
  background-color: #ffffff;
  border-bottom: 1px solid #841983;
}

.tak-formcontrol-Editable-label {
  width: 100%;
  height: 27px;
  font-family: Dana-Fanum;
  line-height: 1.11;
  text-align: right;
  color: #172b4d;
  background-color: #ffffff;
  border: 0;
  outline: 0;
}

.tak-formcontrol-Editable-label i {
  width: 18px;
  height: 18px;
  font-size: 18px;
  color: #8898aa;
  font-family: MaterialFontIcon;
  float: left;
}

.tak-formcontrol-Editable-label:hover i {
  color: #172b4d;
}

.tak-formcontrol-Editable-label:focus i {
  color: #172b4d;
}

.Profile-Image {
  width: 100%;
  background-size: contain;
  height: 320px;
  background-repeat: no-repeat;
  position: fixed;
}

.tk-formcontrol-LinkAble {
  width: 35px;
  height: 23px;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: Dana;
  font-size: 15px;
  line-height: 1.33;
  text-align: left;
  color: #51439e;
}

.tk-formcontrol-LinkAble:hover {
  color: #841983;
}

.tk-formcontrol-LinkAble:focus {
  color: #841983;
}

.tk-formmcontrol-Linkable:active {
  color: #51439e;
}

.tk-formmcontrol-Linkable:disabled {
  opacity: 0.6;
}

.text-center {
  text-align: center;
}
.text-center.webkit-center {
  text-align: -webkit-center;
}

.div-align {
  margin: 0 auto;
  display: block;
  width: 400px;
  text-align: center;
}

.tk-flag {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 24px;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
}

.submit-Report-div {
  position: fixed;
  bottom: 0px;
  margin-bottom: 0px;
}

.tk-position {
  position: absolute;
}

.tk-position-fixed {
  position: fixed;
}

.tk-top-55 {
  top: 55px;
}

.PWA-Icon-Section {
  width: 27%;
  border-radius: 40px 10px 10px 40px;
  display: flex;
}

.tk-card {
  background-color: #ffffff;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.tk-card.PWA-card {
  position: absolute;
  bottom: 0px;
  margin-bottom: 0px;
}
.tk-card.statistics {
  min-height: 120px;
}
.tk-card.statistics.CourseCardView {
  min-height: 95px;
}
.tk-card.statistics .tk-flag {
  float: right;
  margin: 20px 20px 0 0;
}
.tk-card.statistics .values {
  float: left;
  text-align: left;
  margin-left: 20px;
  margin-top: 20px;
}
.tk-card.statistics .title {
  font-size: 11px;
  color: #8898aa;
}
.tk-card.statistics .value {
  font-size: 18px;
  color: #4d4f5c;
  font-family: Dana-Fanum;
}
.tk-card.statistics .subtitle {
  margin-top: 15px;
  font-size: 13px;
  color: #4d4f5c;
}
.tk-card.statistics .subvalue {
  font-size: 13px;
  color: #2dce98;
  font-family: Dana-Fanum;
}
.tk-card.disableFeature {
  opacity: 0.5;
}
.tk-card .images-section {
  width: 96px;
  height: 96px;
  border-radius: 120px;
  margin-top: -24px;
  margin-right: -32px;
}
.tk-card .text-section {
  margin-top: -66px;
  margin-right: 86px;
}
.tk-card .text-section .title {
  display: block;
  margin-top: 20px;
  color: black;
}
.tk-card .text-section .subtitle {
  color: #8898aa;
  font-size: 11px;
}
.tk-card.editable-info {
  display: flex;
}
.tk-card.editable-info .info-section {
  width: 80%;
  padding: 20px 15px 20px 0;
}
.tk-card.editable-info .info-section .title {
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.tk-card.editable-info .info-section .subtitle {
  display: block;
  color: #8898aa;
  font-size: 11px;
  width: -moz-max-content;
  width: max-content;
}
.tk-card.editable-info .edit-section {
  width: 20%;
  height: 20px;
  margin: auto;
}
.tk-card.editable-info.icon .icon-section {
  width: 27%;
  border-radius: 40px 10px 10px 40px;
  display: flex;
}
.tk-card.editable-info.icon .icon-section span {
  height: 20px;
  display: block;
  width: 100%;
  margin: auto;
  text-align: center;
  color: #ffffff;
}
.tk-card.editable-info.icon .info-section {
  width: 50%;
}
.tk-card.editable-info.icon .edit-section {
  width: 23%;
}
.tk-card.detail-section {
  min-height: 317px;
}
.tk-card.detail-section-student {
  min-height: 287px;
}
.tk-card.Card-height {
  min-height: 232px;
  margin-top: 35px;
}
.tk-card.Card-height-student {
  min-height: 230px;
  margin-top: 35px;
}
.tk-card.roundProgressCard {
  display: flex;
  min-height: 86px;
  padding: 10px 15px;
}
.tk-card.roundProgressCard .caption-progress {
  width: 70%;
}
.tk-card.roundProgressCard .caption-progress .progress-title {
  font-family: Dana;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: normal;
  text-align: right;
  padding: 15px 0 0 0;
}
.tk-card.roundProgressCard .caption-progress .progress-subtitle {
  color: #2dce98;
  font-family: Dana;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: right;
  padding: 5px 0;
}
.tk-card.roundProgressCard .caption-progress .progress-subtitle span {
  font-size: 18px;
}
.tk-card.roundProgressCard .round-progress {
  width: 30%;
}
.tk-card.roundProgressCard.pink .caption-progress .progress-subtitle {
  color: #ff5992;
}
.tk-card.roundProgressCard.blue .caption-progress .progress-subtitle {
  color: #11cdef;
}
.tk-card.roundProgressCard.orange .caption-progress .progress-subtitle {
  color: #fcb449;
}
.tk-card .btn-block {
  width: 100%;
}

.tk-responsive-assistantmodal {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.tk-padding-datapicker {
  padding: 16px 27px 0 13px;
}

.margin-bottom-zero {
  margin-bottom: 0px;
}

.tk-margin-top {
  margin-top: 20px;
}

.editable-student {
  width: 135%;
  height: -moz-fit-content;
  height: fit-content;
}

.input-height {
  height: 0px;
}

.tk-text-align-center {
  text-align: center;
}

.title-Login {
  font-weight: bold;
  font-size: 24px;
}

.modal-footer ::after {
  border: 1px solid #8898aa;
  margin-bottom: 12px;
  opacity: 0.2;
  content: "";
  height: 0;
  display: block;
  margin-top: 20px;
}

.tk-text-align.align-center {
  text-align: center;
}
.tk-text-align.align-right {
  text-align: right;
}
.tk-text-align.align-left {
  text-align: left;
}

.ticket-notepad {
  width: -moz-max-content;
  width: max-content;
  float: left !important;
  margin-left: -50px !important;
  font-size: x-large;
}
.ticket-notepad a span.notification {
  width: 10px;
  height: 10px;
  background-color: #7765e4;
  display: block;
  position: absolute;
  border-radius: 50px;
  margin: -27px 23px 0 0;
}

.tk-textbox-icon {
  top: 16px;
  position: absolute;
  color: white;
  height: 24px;
}
.tk-textbox-icon.background-color {
  background-color: unset;
  border: unset;
  padding-right: 30px;
}
.tk-textbox-icon.border {
  border-bottom: 1px solid;
}
.tk-textbox-icon.border.border-color {
  border-color: white;
}
.tk-textbox-icon.icon {
  font-size: 24px;
}
.tk-textbox-icon input ::-moz-placeholder {
  color: white;
  background-color: white;
}
.tk-textbox-icon input ::placeholder {
  color: white;
  background-color: white;
}

.tk-textBox-default {
  background-color: unset;
  border-radius: 0px;
  border: 0px;
  border-bottom: 1px solid black;
  box-shadow: none;
  background: unset;
}
.tk-textBox-default :focus {
  background-color: unset;
}
.tk-textBox-default :hover {
  background-color: unset;
}

/******* Theme-KIT ************/
.bound {
  background-color: #841983;
  width: 100%;
  margin-top: 70px;
  height: 264px;
}
.bound .bd-header label {
  font-family: Dana;
  font-size: 25px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  color: #ffffff;
}

.boxUser {
  background-color: white;
  height: 240px;
  border-radius: 10px;
}

.Passwordbox {
  background-color: white;
  height: 180px;
  border-radius: 10px;
}

.Textbox-User {
  margin-top: -25px;
  margin-right: 73px;
}

.Avatar {
  margin-top: 20px;
  width: 230px;
  height: 230px;
}
.Avatar img {
  width: 100%;
  height: 100%;
  border-radius: 120px;
  box-shadow: 0 3px 6px 0 rgba(23, 23, 23, 0.18);
  border: 2px solid;
  border-color: white;
}

.student-action-minheght {
  max-height: 500px;
}
.student-action-minheght .uk-overflow-container {
  height: 500px !important;
}

.div-senter {
  padding-right: 50px;
  padding-top: 28px;
}

.textcolor {
  color: white;
}

.selectionTitle {
  font-size: 18px !important;
  padding-right: 22px !important;
}

.responsive-input-width {
  width: 30%;
}

.Div-style {
  background-color: white;
  border-radius: 10px;
}

.tk-padding-large-left {
  padding-left: 28px;
}

.tk-padding-left-12 {
  padding-left: 12px;
}

.tk-padding-8 {
  padding: 8px;
}

.tk-padding-10 {
  padding: 10px;
}

.tk-padding-top-10 {
  padding-top: 10px;
}

.tk-padding-small-left {
  padding-left: 10px;
}

.tk-padding-small-right {
  padding-right: 10px;
}

.student-exam-box {
  min-height: 365px;
}

.p-r-22 {
  padding-right: 22px;
}

.p-r-50 {
  padding-right: 50px;
}

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

.tk-padding-right-66 {
  padding-right: 66px;
}

.tk-padding-right-6 {
  padding-right: 6px;
}

.tk-padding-left-6 {
  padding-left: 6px;
}

.tk-padding-right-26 {
  padding-right: 26px;
}

.tk-margin-right-26 {
  margin-right: 26%;
}

.p-t-85 {
  padding-top: 85px;
}

.p-t-70 {
  padding-top: 70px;
}

.p-r-115 {
  padding-right: 115px;
}

.margin-top-40 {
  margin-top: -40px;
}

.height-405 {
  height: 405px;
}

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

.margin-top-15 {
  margin-top: -15px;
}

.margin-top15 {
  margin-top: 15px;
}

.cover-telegram {
  margin-top: -53px;
  text-align: center;
}

.img-book {
  background-image: url(../images/ListBG-orange.svg);
  background-size: cover;
}

.img-sign-text {
  background-image: url(../images/itemBlue-avatar@3x.png);
  background-size: cover;
}

.tk-disable-table {
  background-color: #e9e9e9;
  margin: 0px;
  width: 100%;
  text-align: center;
  height: 50px;
}

.boungimg {
  border-radius: 10px;
  background-size: cover;
}
.boungimg.disableFeature {
  opacity: 0.5;
}
.boungimg.image {
  background-image: url("/assets/images/Bound.svg");
  background-position: right;
  height: 192px;
  background-size: cover;
}
.boungimg.image1 {
  background-image: url("/assets/images/bound3.svg");
  padding: 18px 24px 0 135px;
  font-size: 21px;
  line-height: 37px;
  background-size: cover;
  height: 50%;
}
.boungimg.image2 {
  background-image: url("/assets/images/bound1.svg");
  padding: 40px 31px 0 170px;
  font-size: 25px;
  line-height: 45px;
  margin-top: 10px;
  background-size: cover;
  height: 50%;
}
.boungimg.image3 {
  background-image: url("/assets/images/boundsection.svg");
  background-size: cover;
  background-position: top;
  font-size: 18px;
  margin-top: 10px;
  height: 215px;
}
.boungimg.image4 {
  background-image: url("/assets/images/boundsection2.svg");
  background-size: cover;
  background-position: top;
  font-size: 18px;
  margin-top: 10px;
  height: 215px;
}

.images-section-SubmitReport {
  background: url("/assets/images/avatar@3x.png");
  width: 64px;
}

.Submit-Report-titel label {
  font-size: 18px;
}

.bound-text {
  padding-top: 50px;
}
.bound-text .block {
  display: block;
}
.bound-text .margin-top {
  margin-top: 10px;
}

.Login-StudentPage {
  height: 325px;
  width: 100%;
}
.Login-StudentPage div.Login-card {
  margin-top: 10%;
}

.bound-fixed {
  background-color: #fb9905;
  margin-top: 0px;
  width: 100%;
  position: fixed;
  z-index: 100;
}

.NotificationCountText {
  background-color: rgba(17, 205, 239, 0.3);
  width: 62px;
  height: 23px;
  border-radius: 12px;
  border: solid 2px rgba(17, 205, 239, 0.5);
  text-align: center;
}

.boungtext1 {
  margin-right: 228px;
  font-size: x-large;
}

.boungtext2 {
  margin-right: 233px;
}

.grid-style {
  margin-left: 0px;
}

.arrow-up {
  margin-top: -9px;
  margin-right: 10px;
}

.arrow-down {
  margin-bottom: -13px;
  margin-right: -12px;
}

.padding-grid {
  padding-left: inherit;
}

.panel-logo {
  width: 96px;
  height: 96px;
  border-radius: 120px;
  margin-top: -20px;
  margin-right: -28px;
}

.tk-btn-danger {
  width: auto;
  height: 48px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
  color: #dc3545;
  border-color: #dc3545;
  background-color: #ffffff;
  border: 0;
  outline: 0;
}

.tk-padding-right {
  padding-right: 18px;
}
.tk-padding-right.padding-large {
  padding-right: 50px;
}
.tk-padding-right.disbale-padding {
  padding-right: 0px;
}
.tk-padding-right.double-padding {
  padding-right: 10%;
}

.pwa-menu-responsive {
  max-width: 330px;
  margin: auto;
}

.width-64 {
  width: 64px;
}

.width-365 {
  width: 365px;
}

.tk-margin-right-6 {
  margin-right: -6px;
}

.tk-margin-right-115 {
  margin-right: -115px;
}

.tk-fomt-size-18 {
  font-size: 18px;
}

.tk-margin-left-17 {
  margin-left: -17px;
}

.tk-padding-top {
  padding-top: 18px;
}

.tk-padding-top-12 {
  padding-top: 12px;
}

.tk-space-top {
  padding-top: 5px;
  margin-top: 5px;
}

.tk-space-botton {
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.tk-padding-right-4 {
  padding-right: 4px;
}

.tk-padding-left-4 {
  padding-left: 4px;
}

.tk-padding-right-40 {
  padding-right: 40px;
}

.tk-padding-right-10 {
  padding-right: 10px;
}

.tk-padding-bottom-4 {
  padding-bottom: 4px;
}

.tk-bottom-center {
  margin: auto;
  width: 46%;
  margin-top: 18px;
}

.tk-margin-top-14 {
  margin-top: -14px;
}

.tk-padding-left-20 {
  padding-left: 20px;
}

.tk-padding-right-20 {
  padding-right: 20px;
}

.tk-padding-top-8 {
  padding-top: 8px;
}

.tk-padding-top-9 {
  padding-top: 9px;
}

.tk-padding-top-22 {
  padding-top: 22px;
}

.tk-space-left {
  padding-left: 5px;
}

.tk-space-right {
  padding-right: 5px;
}

.tk-padding-left {
  padding-left: 18px;
}
.tk-padding-left.padding-large {
  padding-left: 50px;
}

.disable-input {
  border: 0;
  opacity: 0.5;
  margin: 0;
}

.tk-padding-bottom {
  padding-bottom: 18px;
}
.tk-padding-bottom.padding-large-botoom {
  padding-bottom: 50px;
}

.tk-padding-large-bottom {
  padding-bottom: 35px;
}

.tk-padding-right-90 {
  padding-right: 90px;
}

.tk-overflow {
  overflow: auto;
}
.tk-overflow.height-80 {
  height: 80vh;
}
.tk-overflow.height-66 {
  height: 66vh;
}
.tk-overflow.height-90 {
  height: 90vh;
}

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

.Profile-Menu label {
  display: block;
  font-size: 14px;
  line-height: 35px;
}
.Profile-Menu.font-color {
  color: #51439e;
}

.tk-text-bold {
  font-weight: bold;
}

.padding-bottom-zero {
  padding-bottom: 0px;
}

.tk-Tab-Bar ul {
  overflow: auto;
  max-width: 75%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.tk-Tab-Bar ul li:first-child {
  border-radius: 0 10px 0 0;
}
.tk-Tab-Bar ul li:last-child {
  border-radius: 10px 0 0 0;
}
.tk-Tab-Bar li {
  float: right;
}
.tk-Tab-Bar li p {
  margin: 0px;
  width: -moz-max-content;
  width: max-content;
}
.tk-Tab-Bar li:hover {
  background-color: #e9e9e9;
  cursor: pointer;
}
.tk-Tab-Bar li:hover p {
  transition: transform 0.2s;
  /* IE 9 */
  /* Safari 3-8 */
  transform: scale(1.15);
}
.tk-Tab-Bar.margin-zero {
  margin-right: 0;
  margin-bottom: 0;
}
.tk-Tab-Bar .child {
  margin: 0;
  width: -moz-max-content;
  width: max-content;
  background-color: white;
}
.tk-Tab-Bar .tk-border {
  border-bottom: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
}

.active-Panel {
  background-color: #f1f3f9 !important;
}

.tk-bookmark {
  cursor: pointer;
  font-size: 28px;
}

.autosize textarea {
  height: auto;
  resize: none;
}

.satisfaction-icon-color {
  background-color: rgba(52, 168, 81, 0.4);
  opacity: 1;
}

.Assessment .opacity {
  opacity: 0.5;
}
.Assessment .margin-bottom-30 {
  margin-bottom: 30px;
}
.Assessment .satisfaction-icon {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
}
.Assessment .satisfaction-icon div {
  padding: 4px 0px 0px 2px;
}
.Assessment .satisfaction-icon div.red {
  color: red;
}
.Assessment .satisfaction-icon div.light-green {
  color: green;
}
.Assessment .satisfaction-icon div span {
  padding: 5px;
}
.Assessment .padding-top-6 {
  padding-top: 6px;
}
.Assessment .subtitle {
  font-size: 12px;
  padding-right: 5px;
}

.tk-margin {
  margin-top: 18px;
  margin-left: 18px;
  margin-right: 18px;
  margin-bottom: 18px;
}

.tk-padding {
  padding-top: 18px;
  padding-right: 18px;
  padding-left: 18px;
  padding-bottom: 18px;
}
.tk-padding.padding-left {
  padding-left: 30px;
}
.tk-padding.padding-right {
  padding-right: 30px;
}
.tk-padding.padding-bottom-zero {
  padding-bottom: 0px;
}
.tk-padding.padding-bottom-85 {
  padding-bottom: 85px;
}
.tk-padding.padding-bottom-175 {
  padding-bottom: 175px;
}
.tk-padding.padding-top {
  padding-top: 50px;
}
.tk-padding.padding-zero {
  padding-top: 0px;
}
.tk-padding.padding-left-zero {
  padding-left: 0px;
}
.tk-padding.space-top {
  padding-top: 6px;
}
.tk-padding.top {
  padding-top: 40px;
}

.periodDate-directive .title {
  color: white;
}

.tk-padding-bottom55 {
  padding-bottom: 55px;
}

.Close-card-PeriodDate {
  top: 50px;
  transition: 1s;
}

.open-card-PeriodDate {
  top: 390px;
  transition: 1s;
}

.tk-text-muted {
  display: block;
  color: #8898aa;
  font-size: 11px;
  width: -moz-max-content;
  width: max-content;
}

.tk-align-left {
  text-align: left;
}
.tk-align-left.margin {
  margin-left: 18px;
}
.tk-align-left .btn-small {
  font-size: x-small;
}

.btn-small {
  font-size: x-small;
}

.tk-bound-header {
  padding-top: 18px;
  padding-right: 18px;
  padding-left: 18px;
  font-size: medium;
}

.tk-margin-submitReport {
  padding: 39px 18px 0 30px;
}

.tk-margin-imageSubmitReport {
  margin: -20px -15px 0 0;
  width: 64px;
  height: 64px;
}

.tk-padding-center {
  padding-top: 28px;
  padding-right: 18px;
  padding-left: 50px;
}
.tk-padding-center.disable-padding-left {
  padding-left: 0px;
}

.tk-disable-li {
  opacity: 0.5;
}

.data-none {
  background-color: #dedede;
  min-height: 200px;
  border-radius: 0 0 10px 10px;
}

.tk-titre {
  padding-top: 28px;
}
.tk-titre.notspace {
  padding-top: 0px;
  padding-bottom: 0px;
}
.tk-titre.padding-bottom-0 {
  padding-bottom: 0px;
}
.tk-titre > label {
  padding-right: 18px;
}
.tk-titre:after {
  border: 1px solid #8898aa;
  opacity: 0.2;
  content: "";
  width: 100%;
  height: 0;
  display: block;
  margin-top: 20px;
}
.tk-titre.border-less:after {
  border: unset !important;
}

.tk-footer {
  position: relative;
  height: 55px;
}
.tk-footer div {
  position: absolute;
  left: 20px;
}

.tk-footer::before {
  border: 1px solid #8898aa;
  margin-bottom: 12px;
  opacity: 0.2;
  content: "";
  height: 0;
  display: block;
  margin-top: 20px;
}

.tk-input-lenght {
  font-size: 10px;
  color: red;
  padding-top: 5px;
}

.tk-titre > label {
  font-family: Dana;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.11;
  text-align: right;
  color: #172b4d;
}

.tk-margin-left {
  margin-left: 15px;
}

.m-l-50 {
  margin-left: 50px;
}

.m-l-4 {
  margin-left: 4%;
}

.tk-margin-right {
  margin-right: 15px;
}

.tk-table-height {
  height: 40px;
}

.tk-padding-large-reft {
  padding-left: 28px;
}

.tk-padding-large-right {
  padding-right: 28px;
}
.tk-padding-large-right.double-padding {
  padding-right: 130px;
}

.label-round {
  border-radius: 100px;
  border: solid 1px rgba(136, 152, 170, 0.7);
  background-color: rgba(195, 203, 212, 0.7);
}
.label-round div {
  padding-top: 2px;
}
.label-round div label {
  padding: 0 4px 0 4px;
  color: black;
  font-size: large;
}

.btn-round {
  width: 28px;
  border-radius: 100px;
  height: 28px;
  padding: 0;
}
.btn-round.color {
  background-color: rgba(195, 203, 212, 0.7);
  color: black;
}
.btn-round.color.font-large {
  font-size: x-large;
}

.PickerDate.CountTest {
  width: 185px;
  margin: auto;
}
.PickerDate.center {
  width: 185px;
  margin: auto;
}
.PickerDate .title {
  font-size: 15px;
  padding-top: 5px;
  padding-left: 10px;
}
.PickerDate .subtitle {
  padding-top: 10px;
}
.PickerDate .subtitle label {
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
}

.tk-padding0right-85 {
  padding-right: 85px;
}

.tk-padding-x-large-right {
  padding-right: 50px;
}

.tk-padding-x-large-left {
  padding-left: 50px;
}

.tk-padding-x-large-top {
  padding-top: 50px;
}

.tk-padding-large-top {
  padding-top: 28px;
}
.tk-padding-large-top.double-padding {
  padding-top: 60px;
}

.custom-Table thead tr th {
  text-align: right !important;
}

.table {
  border-collapse: collapse;
  width: 100%;
}
.table tr:nth-child(even) {
  background-color: #f7fafc;
}
.table tr:nth-child(even) td.fixed-column {
  background-color: #f7fafc;
}
.table tr {
  height: 40px;
}
.table td {
  height: 56px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: right;
}
.table td:first-child {
  padding-right: 20px;
}
.table tr:hover {
  background-color: #ddd;
}
.table tr:hover td.fixed-column {
  background-color: #ddd;
}
.table th {
  background-color: #f1f3f9;
  padding-right: 10px;
  padding-left: 12px;
}
.table th:first-child {
  padding-right: 20px;
  padding-left: 20px;
  width: 75px;
  text-align: right;
}

.faq-Page {
  padding-bottom: 20px;
}
.faq-Page div.titre {
  color: white;
  font-size: 25px;
  padding: 30px 21px 0 18px;
}
.faq-Page .faq-search {
  margin-top: -16px;
  margin-bottom: 30px;
}
.faq-Page .faq-search span {
  color: white;
  float: left;
  padding-right: 58%;
  margin-top: -1px;
  position: absolute;
  font-size: 17px;
}
.faq-Page .categoryList {
  padding-bottom: 10px;
  padding-top: 18px;
  font-size: 22px;
}
.faq-Page .categoryList label {
  color: #44587b;
}
.faq-Page .categoryList.white label {
  color: white;
}
.faq-Page .faq-card {
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  background-color: white;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}
.faq-Page .faq-card div.header {
  width: 100%;
  padding: 10px 0 10px 0;
  display: inline-flex;
}
.faq-Page .faq-card div.header .faq-icon {
  background-color: #8898aa;
  width: 40px;
  height: 40px;
  padding: 9px;
  padding-bottom: 12px;
  border-radius: 50px;
}
.faq-Page .faq-card div.header .faq-icon span {
  font-size: x-large;
  color: white;
}
.faq-Page .faq-card div.header .faq-Category {
  padding-top: 12px;
}
.faq-Page .faq-card div.header .faq-Category label {
  padding-right: 16px;
  font-size: 15px;
}
.faq-Page .faq-card div.answer {
  margin-top: 32px;
  padding-bottom: 10px;
}
.faq-Page .faq-card div.answer .answer-icon {
  background-color: #7764e4;
  width: 40px;
  height: 40px;
  padding: 9px;
  padding-bottom: 12px;
  border-radius: 50px;
}
.faq-Page .faq-card div.answer .answer-icon i {
  font-size: x-large;
  color: white;
}
.faq-Page .faq-card div.answer .answer-icon::before {
  height: 40px;
  margin: 0 auto;
  margin-top: -50px;
  border: 1px dashed #808080;
  width: 0;
  content: "";
  margin-bottom: 8px;
  display: block;
}
.faq-Page .faq-card div.answer .answer-title {
  padding-bottom: 6px;
  padding-top: 10px;
}

.margin-Profile-Bottom {
  margin: 5px -9px 0 -10px;
}

.padding-small-bottom {
  padding-bottom: 10px;
}

.scroll {
  height: 207px;
  overflow-y: scroll;
}

.date-picker-bottom {
  background-color: unset;
  border: solid 1px #fff;
}

.btn-outline {
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  background-color: unset;
  border: 1px solid #dbdbdb;
}
.btn-outline:hover {
  background-color: rgba(119, 100, 228, 0.32);
}
.btn-outline:focus {
  background-color: rgba(119, 100, 228, 0.32);
}
.btn-outline:active {
  background-color: #413582;
}
.btn-outline:disabled {
  background-color: #ffffff;
  opacity: 0.6;
}

.tk-padding-svg.flower-pot {
  padding: 0 346px 0 0;
}
.tk-padding-svg.multipliedby-large {
  margin: -415px 70% 0 0;
}
.tk-padding-svg.multipliedby-small {
  margin: 199px 321px 0 0;
}

.tk-float-left {
  float: left;
}

.tk-float-right {
  float: right;
}

.min-height-chart {
  min-height: 345px;
}

.input-size.small {
  width: 10%;
}
.input-size.width-15 {
  width: 15%;
}
.input-size.w-18 {
  width: 18%;
}
.input-size.medium {
  width: 25%;
}
.input-size.w-30 {
  width: 30%;
}
.input-size.width-35 {
  width: 35%;
}
.input-size.width-42 {
  width: 42%;
}
.input-size.large {
  width: 50%;
}
.input-size.size-60 {
  width: 60%;
}
.input-size.ST {
  width: 70%;
}
.input-size.x-large {
  width: 75%;
}
.input-size.width-79 {
  width: 79%;
}
.input-size.xx-large {
  width: 100%;
}
.input-size.width-150 {
  width: 150px;
}

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

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

.tk-size.xx-small {
  font-size: xx-small;
}
.tk-size.x-small {
  font-size: x-small;
}
.tk-size.small {
  font-size: small;
}
.tk-size.medium {
  font-size: medium;
}
.tk-size.large {
  font-size: large;
}
.tk-size.x-large {
  font-size: x-large;
}
.tk-size.xx-large {
  font-size: xx-large;
}
.tk-size.Coustom-size-100px {
  font-size: 100px;
}
.tk-size.font-size-24 {
  font-size: 24px;
}
.tk-size.font-size-13 {
  font-size: 13px;
}
.tk-size.font-size-11 {
  font-size: 11px;
}
.tk-size.font-size-18 {
  font-size: 18px;
  font-weight: bold;
}
.tk-size.font-size-16 {
  font-size: 16px;
}

.tk-margin-myPerfomance {
  margin-top: 25vh;
}

.disabled-button {
  opacity: 0.5;
}

.tk-title {
  padding-right: 18px;
  padding-top: 38px;
}

.btn-radius {
  border-radius: 50px;
}
.btn-radius.margin {
  margin-top: 8px;
  margin-left: 8px;
}
.btn-radius.font-style {
  line-height: 0;
  height: 32px;
}

.tk-margin-botton-studentPanel .select {
  margin: 0 22px 0 0;
}
.tk-margin-botton-studentPanel .unselect {
  margin: 0 255px 0 0;
}

.responsive-pageTitle {
  font-size: large;
}

.responsive-PageIcon {
  font-size: xx-large;
}

.tk-padding-right-33 {
  padding-right: 33px;
}

.tk-padding-right-170 {
  padding-right: 170px;
}

.margin-left-5 {
  margin-left: -5px;
}

.tk-margin-left-zero {
  margin-left: 0px;
}

.submit-botton {
  width: 70%;
}

.span-unselect {
  background: #007bff;
  color: white;
  width: 45px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  font-size: x-large;
  padding-top: 8px;
}

.multi-button {
  display: inline-flex;
  float: left;
  padding-left: 10%;
  padding-top: 7px;
}

.panel-menu {
  display: flex;
  align-items: center;
}
.panel-menu .icon {
  width: 70px;
  height: 70px;
  border-radius: 110px;
  text-align: center;
  line-height: 70px;
  margin-right: 15px;
  position: unset !important;
}
.panel-menu .boby {
  width: 50%;
}
.panel-menu .boby .title {
  font-size: medium;
  color: black;
  display: block;
  padding-right: 8px;
  padding-top: 10px;
}
.panel-menu .boby .subtitle {
  display: flex;
  font-size: small;
  color: #43425d;
}
.panel-menu .boby .subtitle .Circle {
  border-radius: 100px;
  margin-right: 8px;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  margin-left: 12px;
}
.panel-menu .buttom {
  width: 20%;
  margin-left: 8px;
}
.panel-menu .buttom a {
  float: left;
}
.panel-menu .buttom .align {
  margin-top: 11px;
  margin-right: -13px;
  font-size: x-small;
}

.font-color.red {
  color: red !important;
}
.font-color.black {
  color: black !important;
}
.font-color.light-green {
  color: #2dce98;
}
.font-color.coal {
  color: #444 !important;
}
.font-color.Gray {
  color: #757575;
}

.bg-color.blueberry {
  background-color: #51439e;
}
.bg-color.orange {
  background-color: #fb9905;
}
.bg-color.green {
  background-color: #2dce98;
}
.bg-color.blue {
  background-color: #4cdef5;
}
.bg-color.pink {
  background-color: #4cdef5;
}
.bg-color.yellow {
  background-color: #fcde49;
}
.bg-color.red {
  background-color: #f53c56;
}
.bg-color.gray {
  background-color: #8898aa;
}
.bg-color.lite-gray {
  background-color: #8898aa !important;
  color: white;
}

.tk-inline-block {
  display: inline-block;
}

.tk-inline {
  display: flex;
}
.tk-inline.margin {
  margin-right: -18px;
  margin-left: -20px;
}

.w-70 {
  width: 70px;
}

.w-100 {
  width: 100%;
}

.w-150 {
  width: 150%;
}

.w-180 {
  width: 180px;
}

.w-200 {
  width: 200px;
}

.tk-btn-center {
  padding-top: 50px;
  margin-right: 117px;
  padding-bottom: 20px;
}

.tk-textarea {
  max-width: 540px;
  min-width: 540px;
  min-height: 105px;
}

.tk-margin-lr8 {
  margin-left: 8px;
  margin-right: 8px;
}

.tk-margin-right-5 {
  margin-right: 5px;
}

.tk-margin-large-top {
  padding-top: 50px;
}
.tk-margin-large-top .center {
  margin-top: -9px;
  margin-right: 40px;
}

.change-Picture {
  background-color: #ffffff;
  border-radius: 100px;
  width: 46px;
  height: 46px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  top: 150px;
  right: -10px;
  z-index: 2;
  position: absolute;
}

.m-r-10 {
  margin-right: 10px;
}

.User-Photo {
  z-index: 1;
  position: relative;
}

.edit-profile-photo {
  width: 50px;
  height: 50px;
  margin: -49px 18px;
  border-radius: 50%;
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  background-color: rgba(255, 255, 255, 0.8901960784);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.edit-profile-photo i {
  font-size: 25px;
}
.edit-profile-photo .dropdown-edit-profile {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  top: 53px;
  left: 25px;
}
.edit-profile-photo .dropdown-edit-profile ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  line-height: initial;
}
.edit-profile-photo .dropdown-edit-profile ul li {
  width: 100%;
  padding: 10px 20px;
  border-radius: 5px;
}
.edit-profile-photo .dropdown-edit-profile ul li:hover {
  background-color: #ddd;
  opacity: 0.9;
}
.edit-profile-photo a {
  text-decoration: none;
  color: #626365;
}

.tk-min-width {
  min-width: 35%;
}
.tk-min-width.min-width {
  min-width: 80%;
}

.tk-button-max-width {
  max-width: 80%;
}

.max-width {
  max-width: 100%;
}

.min-width {
  min-width: 100%;
}

.min-Height {
  min-height: 130px;
}

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

.date-picker-box hr {
  box-sizing: content-box;
  height: 0;
  margin: 0 0 10px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

.tk-width-fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.tk-max-width {
  width: 160%;
}
.tk-max-width.max-width {
  width: 100%;
}
.tk-max-width.img-width {
  width: 38%;
}

.Course-div div:hover {
  transition: background 1s ease;
  background: #dedede;
}

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

.display-none {
  display: none;
}

.tk-display-block {
  display: block;
}
.tk-display-block.title {
  font-size: 18px;
}
.tk-display-block.subtitle {
  font-size: 13px;
  color: #8898aa;
  margin-top: 5px;
}

.tk-btn-margin {
  margin-top: 10px;
}

.tk-margin-top-255 {
  margin-top: -253px;
}

.dana-fa-num {
  font-family: Dana-Fanum !important;
}

.space.top {
  margin-top: 10px;
}
.space.left {
  margin-left: 5px;
}
.space.left.right {
  margin-right: 5px;
}
.space.bottom {
  padding-bottom: 10px;
}
.space.right {
  margin-right: 10px;
}
.space.right.x-right {
  margin-right: 26px;
}

.tk-margin-top-32 {
  margin-top: -32px;
}

.tk-margin-top-10 {
  margin-top: 10px;
}

.tk-margin-top-95 {
  margin-top: -95px;
}

.tk-margin-top-85 {
  margin-top: -85px;
}

.tk-padding-top-60 {
  padding-top: 60px;
}

.color-bluebarry {
  color: #51439e;
}

.PWA-Menu.padding {
  margin: 10px;
  width: -webkit-fill-available;
}
.PWA-Menu.btn-round {
  width: 64px;
  height: 64px;
  border: 7px solid;
  border-color: #f1f3f9;
  font-size: 40px;
  line-height: 1.5;
}

.color-gray {
  color: rgba(166, 179, 191, 0.7098039216);
}

.margin-top-zero {
  margin-top: 0px;
}

.tk-link-active {
  text-decoration: none;
  color: #fb9905;
}

.tk-height.height1 {
  min-height: 330px;
}
.tk-height.height-56 {
  height: 56px;
}
.tk-height.height30 {
  height: 30px;
}

.fixed-column {
  background-color: white;
  right: 0;
  position: sticky;
  z-index: 45;
}

@supports (-webkit-overflow-scrolling: touch) {
  .fixed-column {
    position: unset;
  }
}
.tk-text-aling.center {
  text-align: center;
}

.tk-User-box {
  padding-right: 85px;
  margin-top: -45px;
}

.tk-hr {
  margin-right: -20px;
  width: 110%;
}

.dropdown-header-img {
  margin-top: 20px;
}
.dropdown-header-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0px 2px 0 #575757;
  border: 3px solid #ffffff;
}

.tk-content-dropdown {
  background-color: #ffffff;
  width: 328px;
  position: fixed;
  left: 5%;
  z-index: 100;
  top: 70px;
  min-height: 300px;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  padding-bottom: 40px;
  opacity: 1;
  transition: 0.5s;
}
.tk-content-dropdown .tk-content-dropdown-header span {
  display: block;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: right;
  color: #172b4d;
}
.tk-content-dropdown .tk-content-dropdown-header span.dropdown-header-text {
  padding: 8px 10px;
  font-family: Dana;
  font-size: 15px;
  line-height: 0.92;
  text-align: center;
  color: #172b4d;
}
.tk-content-dropdown .tk-content-dropdown-header button {
  width: 124px;
  height: 40px;
  font-family: Dana;
  font-size: 15px;
  line-height: 1.33;
  text-align: center;
  color: #ffffff;
}
.tk-content-dropdown .tk-content-dropdown-header .background-img {
  max-width: 100%;
  max-height: 50px;
}
.tk-content-dropdown .tk-content-dropdown-header .background-img img {
  display: block;
  width: 100%;
  border-radius: 7px 7px 0 0;
  max-height: 50px;
}
.tk-content-dropdown .tk-content-dropdown-header:after {
  border: 1px solid #8898aa;
  opacity: 0.2;
  content: "";
  width: 100%;
  height: 0;
  display: block;
}
.tk-content-dropdown.tab-mode .tk-content-dropdown-header:after {
  display: none;
}
.tk-content-dropdown.tab-mode > ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.tk-content-dropdown.tab-mode > ul li {
  display: inline-block;
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
  padding: 5px 0;
  font-size: 14px;
}
.tk-content-dropdown.tab-mode > ul li:first-child {
  border-left: 1px solid #e4e4e4;
}
.tk-content-dropdown.tab-mode > ul li.active {
  color: #841983;
  border-bottom: 1px solid #841983;
}
.tk-content-dropdown.tab-mode > ul li.disableFeature {
  opacity: 0.5;
}
.tk-content-dropdown.help-dropdown {
  left: 2%;
}
.tk-content-dropdown.help-dropdown .tk-content-dropdown-body {
  height: 220px;
  padding-top: 50px;
}
.tk-content-dropdown.help-dropdown .tk-content-dropdown-body i {
  font-size: 64px;
  color: #172b4d;
  display: block;
}
.tk-content-dropdown.notify-dropdown {
  left: 6%;
}
.tk-content-dropdown.notify-dropdown .tk-content-dropdown-body {
  max-height: 280px;
  padding-top: 10px;
  overflow-y: auto;
}
.tk-content-dropdown .tk-content-dropdown-body {
  text-align: center;
  width: 100%;
}
.tk-content-dropdown .tk-content-dropdown-body b {
  margin: 30px 0 0 0;
  display: block;
}
.tk-content-dropdown .tk-content-dropdown-body span {
  display: block;
  font-size: 13px;
  color: #44587b;
  width: 50%;
  margin: 10px auto;
}
.tk-content-dropdown .tk-content-dropdown-body label {
  display: block;
  opacity: 0.6;
  font-family: Dana;
  font-size: 13px;
  line-height: 1.09;
  color: black;
  padding-top: 5px;
}
.tk-content-dropdown .tk-content-dropdown-body button {
  width: 256px;
  height: 40px;
}

.tk-NotePad-dropdown {
  width: 400px;
  position: absolute;
  left: -7%;
  z-index: 49;
  top: 30px;
  max-height: 335px;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(44, 40, 40, 0.11);
  opacity: 1;
  transition: 0.5s;
}
.tk-NotePad-dropdown .tk-NotePad-titre {
  padding-top: 12px;
}
.tk-NotePad-dropdown .tk-NotePad-titre label {
  padding-right: 18px;
}
.tk-NotePad-dropdown .tk-NotePad-titre::after {
  border: 1px solid #8898aa;
  padding: 0;
  opacity: 0.2;
  content: "";
  width: 100%;
  height: 0;
  display: block;
  margin-top: 12px;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-body {
  padding: 10px 18px 18px 18px;
  max-height: 228px;
  overflow: auto;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-body .tk-NotePad {
  text-align: right;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-body .tk-NotePad .subtitle {
  margin: 0 !important;
  width: 100%;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-body .tk-NotePad .decsription {
  background-color: #eceff2;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 16px;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-body .tk-NotePad .action {
  float: left;
  font-size: 18px;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-body .tk-NotePad .action span {
  cursor: pointer;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-body .tk-NotePad .action span:hover {
  color: #8673f5;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-footer::before {
  border: 1px solid #8898aa;
  opacity: 0.2;
  content: "";
  width: 100%;
  height: 0;
  display: block;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-footer textarea {
  min-width: 88%;
  max-width: 88%;
  min-height: 40px;
  max-height: 40px;
  border-radius: 5px;
  padding: 8px;
  border: 1px solid #8898aa;
  width: 100%;
  float: left;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-footer span {
  cursor: pointer;
  margin-top: 10px;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-footer span i {
  padding-left: 10px;
  font-size: 26px;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-footer span i:hover {
  color: #7764e4;
  transition: 1s;
}
.tk-NotePad-dropdown .tk-NotePad-dropdown-footer div {
  padding: 10px 10px 5px 10px;
}

.FeedBack-PopUp.tk-dir {
  direction: ltr;
}
.FeedBack-PopUp.title {
  font-size: 18px;
  font-weight: 500;
}
.FeedBack-PopUp .width-Emoji {
  width: 150px;
  height: auto;
}

.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 85%;
  height: 9px;
  border-radius: 5px;
  background: #eceff2;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #51439e;
  cursor: pointer;
}

.slider::-webkit-progress-bar {
  background: #51439e;
  background-color: #51439e;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #51439e;
  cursor: pointer;
}

.tk-timeline {
  width: 100%;
  display: block;
  padding: 0;
}
.tk-timeline li {
  list-style: none;
  width: 100%;
  display: flex;
  min-height: 80px;
}
.tk-timeline li .time-flag {
  width: 20%;
}
.tk-timeline li .time-flag:after {
  height: 100%;
  margin: 0 auto;
  border: 1px dashed #808080;
  width: 0;
  content: "";
  display: block;
}
.tk-timeline li .time-flag .time-icon {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 40px;
  margin: 0 auto;
}
.tk-timeline li .time-flag .time-icon i {
  font-size: 22px;
  color: #ffffff;
}
.tk-timeline li .time-flag .time-icon i:after {
  height: 40px;
  margin: 0 auto;
  margin-top: -6px;
  border: 1px dashed #808080;
  width: 0;
  content: "";
  display: block;
}
.tk-timeline li:last-child .time-flag:after {
  display: none;
}
.tk-timeline li .time-content {
  width: 80%;
  padding: 5px 0 5px 20px;
  text-align: right;
}
.tk-timeline li .time-content .time-content-header {
  display: flex;
}
.tk-timeline li .time-content .time-content-header .time-content-title {
  font-size: 11px;
  text-align: right;
  width: 50%;
  display: block;
}
.tk-timeline li .time-content .time-content-header .time-content-time {
  font-size: 11px;
  width: 50%;
  text-align: left;
  display: block;
  font-family: Dana-Fanum;
}
.tk-timeline li .time-content .time-content-header .time-content-time.darkwhite {
  color: #8898aa;
}
.tk-timeline li .time-content .time-content-main {
  display: block;
  width: 100%;
}

.blue {
  background-color: #4cdef5;
}

.pruble {
  background-color: #7764e4;
}

.green {
  background-color: #2dce98;
}

.pink {
  background-color: #4cdef5;
}

.yellow {
  background-color: #fcde49;
}

.radius-border {
  border-radius: 20px;
}

.modal-section {
  padding-right: 3%;
  padding-left: 3%;
}
.modal-section .w-auto {
  width: auto;
}

label.oldLeader {
  position: relative;
  outline: none;
}

label.oldLeader:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  bottom: 10px;
  left: 0;
  background: black;
  visibility: hidden;
  border-radius: 5px;
  transform: scaleX(0);
  transition: 1s linear;
}

label.tk-text-decoration:before {
  visibility: visible;
  transform: scaleX(1);
}

.div-center {
  display: table;
  margin: 0 350px auto;
}
.div-center.margin-auto {
  margin: auto;
}

.tk-padding-left-10 {
  padding-left: 10px;
}

.tk-padding-right-10 {
  padding-right: 10px;
}

.tk-padding-right-12 {
  padding-right: 12px;
}

.btn-aling-left {
  float: left;
  margin-left: 65px;
  margin-top: -25px;
}

.tk-clear {
  clear: both;
}

.tk-NotFoundData {
  text-align: center;
  background: #e9e9e9;
  height: 56px;
  padding-top: 18px;
}

.tk-userPlan {
  height: 195px !important;
  max-height: 195px;
}
.tk-userPlan .tk-userPlan-scroller {
  overflow: auto;
  min-height: 125px;
}
.tk-userPlan .tk-planCard {
  display: inline-flex !important;
  width: -moz-max-content;
  width: max-content;
}
.tk-userPlan .tk-plan {
  padding: 15px;
  text-align: center;
}
.tk-userPlan .tk-planImage {
  width: 65px;
  border-radius: 50px;
  height: 65px;
}
.tk-userPlan .tk-planTitle {
  display: block;
}
.tk-userPlan .tk-planRemainingDays {
  display: block;
  color: #155724;
  font-size: 12px;
}
.tk-userPlan .tk-Reference {
  padding: 15px;
  text-align: center;
}
.tk-userPlan .tk-Reference-Image {
  width: 65px;
  border-radius: 50px;
  height: 65px;
}
.tk-userPlan .tk-Reference-Titel {
  display: block;
}
.tk-userPlan .tk-Scholarship {
  padding: 15px;
  font-size: 84px;
  position: relative;
  cursor: pointer;
}
.tk-userPlan .tk-Scholarship-Icon {
  top: 42px;
  position: absolute;
  padding-left: 13px;
  color: #bfbfbf;
}

.uk-modal-title {
  font-family: Dana;
}

.uk-modal-dialog {
  border-radius: 10px;
  padding: 0;
}

.uk-modal-header {
  padding: 20px;
  padding-bottom: 0;
}

.uk-modal-body {
  padding: 20px;
}

.uk-modal-footer {
  padding: 20px;
  padding-top: 0;
}

.tk-card-header-section {
  background-color: #eceff2;
  border-radius: 10px 10px 0 0;
  padding: 10px;
}

.tk-card-section-text {
  width: 150px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-align: right;
}
.tk-card-section-text.darkwhite {
  color: #8898aa;
}
.tk-card-section-text.dark {
  color: #000000;
}

.tk-font.dana {
  font-family: Dana;
}
.tk-font.dana-fanum {
  font-family: Dana-fanum;
}
.tk-font.bold {
  font-weight: bold !important;
}
.tk-font.button-size {
  font-size: 18px;
}
.tk-font.size-11 {
  font-size: 11px;
}
.tk-font.size-18 {
  font-size: 18px;
}
.tk-font.size-20 {
  font-size: 20px;
}

.tk-Replay-Icon {
  margin-top: -4px;
  margin-left: 7px;
}

.tk-ticket-panel.float-left {
  float: left;
}
.tk-ticket-panel .tk-ticket-text {
  width: 174px;
  margin: auto;
  float: left;
  margin-top: 10px;
}
.tk-ticket-panel .tk-view-file {
  margin-right: 25px;
  margin-top: 10px;
}

.tk-timeline-attachment {
  width: 224px;
  height: auto;
  border-radius: 5px;
  background-color: #f7fafc;
}

.uk-text .uk-text-muted .uk-button {
  font-family: Dana-fanum;
}

.tk-link {
  text-decoration: none;
  cursor: pointer;
}

.theme-settings {
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 100px;
  width: 240px;
  height: 300px;
  border-radius: 0 0 10px 0;
  box-shadow: 0 1px 3px #b1b1b1;
  transition: width 1s;
}
.theme-settings.ng-hide:not(.ng-hide-animate) {
  display: block !important;
  width: 0;
}
.theme-settings .theme-settings-switcher {
  position: absolute;
  right: -40px;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  box-shadow: 0 1px 3px #b1b1b1;
}
.theme-settings .theme-settings-switcher i {
  font-size: 25px;
}
.theme-settings .theme-settings-content {
  width: 240px;
  padding: 10px;
}

.text-BGcardview {
  padding: 16px 28px 0 65%;
  font-size: 100%;
  line-height: 35px;
}

.image-BGcardview1 {
  background: url("/assets/images/CardViewBG1.svg");
  background-size: cover;
  width: 100%;
  height: 128px;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.image-arrowDown {
  background: url("/assets/images/arrowDown.jpeg");
  background-size: cover;
  width: 19%;
  height: 75px;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin: auto;
  margin-left: 50%;
}

.image-BGcardview2 {
  background: url("/assets/images/CardViewBG2.svg");
  background-size: cover;
  width: 100%;
  height: 128px;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.image-BGcardview3 {
  background: url("/assets/images/CardViewBG3.svg");
  background-size: cover;
  width: 100%;
  height: 128px;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.image-work-Performace.image1 {
  background: url("/assets/images/item3-avatar@3x.png");
  background-size: cover;
}

.tk-card-image {
  width: 100%;
  height: 218px;
  min-width: 354px;
  min-height: 218px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
}
.tk-card-image .tk-card-image-title {
  font-weight: bold;
  padding: 50px 20px 0 0;
  font-size: 25px;
}
.tk-card-image .tk-card-image-subtitle {
  font-size: 15px;
  padding: 10px 20px 0 0;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: right;
}
.tk-card-image.image1 {
  background: url("/assets/images/GozareshKar.jpg");
  background-size: cover;
}
.tk-card-image.image2 {
  background-image: url("/assets/images/bound5.svg");
  background-size: cover;
}
.tk-card-image.image3 {
  background-image: url("/assets/images/bound6.svg");
  background-size: cover;
}
.tk-card-image.image4 {
  background-image: url("/assets/images/bound7.svg");
  background-size: cover;
}
.tk-card-image.image5 {
  background-image: url("/assets/images/sendFromWarehouse.svg");
  background-size: cover;
}
.tk-card-image.image6 {
  background-image: url("/assets/images/TimeApp.jpg");
  background-size: cover;
  position: relative;
}
.tk-card-image .app-title {
  padding: 0;
  position: absolute;
  left: 15%;
  top: 30%;
}
.tk-card-image .app-subtitle {
  padding: 0;
  position: absolute;
  top: 45%;
  left: 10%;
}

.lock-textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.product-AuthorImage {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.align-image {
  display: flex;
  justify-content: center;
}

.tk-space-around {
  display: flex;
  justify-content: space-around;
}

.tk-space-between {
  display: flex;
  justify-content: space-between;
}

.tk-supporter-ticket-view {
  padding: 8px 18px 0;
  overflow: hidden;
}

.sampel-Teach-Card {
  border-radius: 10px;
  border: 1px solid #8898aa;
  padding: 18px;
  margin-bottom: 18px;
}

.submitReportimage {
  background-image: url("/assets/images/backdrop-back-layer@3x.png");
  background-attachment: fixed;
  height: 100vh;
  background-size: cover;
  width: 100%;
}

.border-radius {
  border-radius: 10px !important;
}

.card-hover :hover {
  background-color: #dddcdc;
  transition: 1s;
  border-radius: 10px;
}

.border-radius-table {
  border-radius: 10px 0 10px 10px;
}

.border-radius-zero {
  border-radius: 0;
}

.tk-clearfix {
  clear: both;
}

.isLoading {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  z-index: 999999999;
}

.inline-loading {
  display: block;
  margin: 0 auto;
  max-width: 64px;
  max-height: 64px;
}

/* =============================================== Grid Styles ===============================================*/
.uk-table thead tr.header-texts th {
  background-color: #78c249;
  color: white;
  /*font-size: 0.8em;*/
}

.uk-table thead tr.header-texts th .tablesorter-header-inner {
  color: white;
  text-align: right;
}

.uk-table thead tr.header-texts th .tablesorter-header-inner:after {
  color: white;
}

.table-filter {
  background-color: #96d46e;
}

.container {
  display: block;
  position: relative;
  margin-bottom: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.container input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  color: #fcb449;
  border: 2px solid;
  border-radius: 7px;
}

.container:hover input ~ .checkmark {
  background-color: white;
  color: #fcb449;
}

.container input:checked ~ .checkmark {
  background-color: #fcb449;
  color: #fcb449;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.container-primary {
  display: block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.container-primary input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark-primary {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  color: #7764e4;
  border: 2px solid;
  border-radius: 7px;
  z-index: 2;
}

.container-primary:hover input ~ .checkmark-primary {
  background-color: white;
  color: #7764e4;
}

.container-primary input:checked ~ .checkmark-primary {
  color: #7764e4;
}

.checkmark-primary:after {
  content: "";
  position: absolute;
  display: none;
}

.container-primary input:checked ~ .checkmark-primary:after {
  display: block;
}

.container-primary .checkmark-primary:after {
  left: 7px;
  top: 2px;
  width: 7px;
  height: 14px;
  border: solid #7764e4;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.container-primary label.title {
  padding-right: 38px;
  padding-top: 3px;
  position: absolute;
}

.container-primary .title {
  position: absolute;
  z-index: 1;
  padding: 5px 38px 0 0;
}

.container-Radio {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding-bottom: 10px;
}
.container-Radio label.title {
  padding-right: 38px;
  font-size: 14px;
}

.container-Radio input {
  position: absolute;
  opacity: 0;
  display: none;
  cursor: pointer;
}

.checkmark-Radio {
  position: absolute;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 50%;
  border: 3px solid #7764e4;
}

.container-Radio:hover input ~ .checkmark-Radio {
  background-color: white;
}

.container-Radio input:checked ~ .checkmark-Radio {
  border: 5px solid #7764e4;
}

.checkmark-Radio:after {
  content: "";
  position: absolute;
  display: none;
}

.container-Radio input:checked ~ .checkmark-Radio:after {
  display: block;
}

.container-Radio .checkmark-Radio:after {
  top: -2px;
  left: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7764e4;
  border: 4px solid white;
}

.product-box {
  height: 300px;
  overflow: auto;
}

.Product .header div {
  background-color: #f1f3f9;
  margin-bottom: 0px;
  padding-bottom: 2px;
}
.Product .header div div {
  position: relative;
}
.Product .header div div div.dropdown-icon {
  width: 24px;
  height: 24px;
  background-color: white;
  border: 2px solid blue;
  border-radius: 6px;
}
.Product .header div div div.dropdown-icon i {
  font-size: 20px;
  color: blue;
}
.Product .header div div div.title {
  padding-top: 4px;
  padding-right: 10px;
  width: auto;
}
.Product .header div div div.select-icon {
  width: 24px;
  height: 24px;
  background-color: white;
  border: 2px solid blue;
  border-radius: 6px;
  position: absolute;
  left: 5px;
}
.Product .header div div div.select-icon i {
  font-size: 20px;
  color: blue;
}
.Product .package div.packageRow {
  background-color: white;
  margin-top: 0px;
  margin-bottom: 0px;
}
.Product .package div.packageRow div.row {
  padding: 4px 0px 4px 4px;
  display: inline-flex;
}
.Product .package div.packageRow div.row div.col-2 {
  width: auto;
}
.Product .package div.packageRow div.row div.select-icon {
  width: 24px;
  height: 24px;
  background-color: white;
  border: 2px solid blue;
  border-radius: 6px;
}
.Product .package div.packageRow div.row div.select-icon i {
  font-size: 20px;
  color: blue;
}
.Product .package div.packageRow div.row div.package-title {
  padding-top: 4px;
  padding-right: 10px;
}
.Product .package div.packageRow:hover {
  background-color: #ddd;
}
.Product .package div.packageRow:nth-child(even) {
  background-color: #f1f3f9;
}
.Product .package div.packageRow:nth-child(even) div:hover {
  background-color: #ddd;
}

.faq-dropDown {
  display: none;
  position: absolute;
  width: 100%;
}
.faq-dropDown div.tk-card {
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  max-height: 207px;
  overflow: auto;
  border: 1px solid #7764e4;
  border-radius: 5px;
  margin-top: 5px;
}
.faq-dropDown div.tk-card div.title {
  padding: 5px;
  text-align: center;
}
.faq-dropDown div.tk-card ul {
  padding: 0;
  margin-bottom: 0px;
}
.faq-dropDown div.tk-card ul li {
  display: block;
  padding-top: 5px;
  padding-right: 8px;
  padding-bottom: 5px;
}
.faq-dropDown div.tk-card ul li span.mdi {
  font-size: 16px;
  padding-left: 8px;
}
.faq-dropDown div.tk-card ul li:hover {
  background-color: #eceff2;
  border-radius: 5px;
}

.switch-badge {
  position: relative;
  display: inline-flex;
}

.switch-badge-title {
  padding: 5px 0 0 13px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 34px;
  z-index: 10;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-badge {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  z-index: 10;
}

.slider-badge:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 6px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  z-index: 10;
}

input:checked + .slider-badge {
  background-color: #4ed55c;
}

input + .slider-badge .off {
  opacity: 1;
}
input + .slider-badge .on {
  opacity: 0;
}

input:checked + .slider-badge .on {
  opacity: 1;
}
input:checked + .slider-badge .off {
  opacity: 0;
}

input:checked + .slider-badge:before {
  transform: translateX(53px);
}

input:checked + .standard:before {
  transform: translateX(33px);
}

.slider-badge.round {
  border-radius: 34px;
  z-index: 10;
}

.slider-badge.round:before {
  border-radius: 50%;
  z-index: 10;
}

.slider-badge label {
  z-index: 1;
  position: absolute;
}

.slider-badge .off {
  right: 10px;
  top: 8px;
  font-size: 12px;
}

.slider-badge .on {
  left: 10px;
  top: 8px;
  font-size: 12px;
}

#progress {
  width: 500px;
  position: relative;
  background-color: #c5c5c5;
  border-radius: 10px;
  direction: ltr !important;
}

#percent {
  color: black;
}

#bar {
  height: 20px;
  background-color: #dcdcdc;
  width: 40%;
  border-radius: 10px;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 1;
  z-index: 1;
}

.custom-file-uploader {
  width: auto !important;
  border: dashed 2px #c2cdda;
  border-radius: 10px;
  background: none !important;
}

.notify-Error {
  color: red;
  font-size: 12px;
}

.bottom-fixed {
  bottom: 10px;
  position: fixed;
  width: 88%;
}

.table-filter input {
  font-size: 0.85em;
  width: 140px !important;
  float: right;
}

.planning-grid-table tr:nth-child(odd) {
  background: #a3cc71;
}

.planning-grid-table tr:nth-child(even) {
  background: #b0d484;
}

a.page-size-btn {
  display: inline-block;
  vertical-align: top;
  background-color: #7764e4;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  color: #ffffff;
}

a.page-size-btn img {
  width: 22px;
}

.table-size-cnt {
  padding-right: 10px;
  float: right;
}

.table-size-cnt:hover a.page-size-btn {
  background-color: #7764e4;
}

.table-size-cnt:hover .table-pagesize {
  left: 0px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.table-pagesize {
  display: inline-block;
  vertical-align: top;
  position: relative;
  left: 50px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  transition: all 0.4s;
}

.table-pagesize a {
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: gray;
  border: 1px solid #7764e4;
  background-color: white;
  margin: 0px;
  border-radius: 10px;
}

.table-pagesize a:hover {
  background-color: #d2f1fb;
}

.table-pagesize a.selected {
  background-color: #7764e4;
  color: white;
  border: 1px solid #7764e4;
}

input.tablesorter-filter {
  /*height: 30px !important;
    background-color: white !important;
    min-height: unset !important;
    font-size: 0.8em !important;
    border-radius: 3px !important;
    padding-right: 8px !important;
    box-shadow: rgba(0,0,0,0.3) 0px 0px 2px;*/
  padding: 0;
  height: 30px;
  position: relative;
  left: 0;
  outline: none;
  border: 1px solid #cdcdcd;
  border-color: rgba(0, 0, 0, 0.15);
  background-color: white;
  font-size: 16px;
  width: 180px;
  /*استفاده شده در MenuLinks*/
}

/* =============================================== Grid Styles ===============================================*/
.tk-pagination {
  float: left;
}
.tk-pagination li {
  border-radius: 100%;
  width: 35px;
  height: 35px;
  border: solid 1px rgba(136, 152, 170, 0.5) !important;
  display: inline-block;
  color: #000000 !important;
  margin-right: 5px;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
}
.tk-pagination li a {
  text-decoration: none;
  color: #8898aa;
  font-family: Dana-Fanum;
}
.tk-pagination li.tk-active {
  background-color: #7764e4;
}
.tk-pagination li.tk-active a {
  color: #ffffff;
}

.mjx-c24 {
  display: none;
}

.preview-notify {
  padding: 0.75rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  margin: auto;
  z-index: 10;
  text-align: justify;
  box-shadow: 0 2px 4px 0 rgba(23, 23, 23, 0.5);
}
.preview-notify.notify-danger {
  color: #fff;
  background-color: #ba5e5e;
}
.preview-notify.notify-success {
  color: #fff;
  background-color: #5fba7d;
}
.preview-notify.notify-warning {
  color: #fff;
  background-color: #c1c13e;
}
.preview-notify .noticed {
  font-size: small;
  color: white !important;
  text-decoration: underline;
}
.preview-notify .noticed:hover {
  color: #007bff !important;
  background-color: transparent;
}
.preview-notify .noticed:checked {
  color: #007bff !important;
  background-color: transparent;
}

.tk-hr-card::before {
  border: 1px solid #8898aa;
  margin-bottom: 12px;
  opacity: 0.2;
  content: "";
  height: 0;
  display: block;
  margin-top: 5px;
}

.no-x-m {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.full-width {
  width: 100%;
}

.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex.justify-between {
  justify-content: space-between;
}
.flex.justify-around {
  justify-content: space-around;
}

.padding-l-sm {
  padding-left: 8px;
}

.padding-y-sm {
  padding-top: 12px;
  padding-bottom: 12px;
}

.padding-x-md {
  padding-left: 16px;
  padding-right: 10px;
}

.padding-t-sm {
  padding-top: 12px;
}

.border-bottom {
  border-bottom: 1px solid rgba(44, 40, 40, 0.1098039216);
}

.padding-bottom-less {
  padding-bottom: 0 !important;
}

.statistics-row-item {
  font-size: 12px;
}
.statistics-row-item .statistics-row-item-subtitle {
  color: #8898aa;
}
.statistics-row-item .statistics-row-item-title {
  color: #4d4f5c;
}

.content-body header .header-right .menu-switcher {
  font-size: 45px;
  float: left;
  margin: 26px 5px;
  cursor: pointer;
}
.content-body header .header-right .menu-switcher i {
  font-size: 40px;
}/*# sourceMappingURL=main-style.css.map */