:root {
  --primary-color: #0007a3;
  --secondary-color: #4e55f4;
  --placeholder-color: #939cc8;
  --content-color: #383d70;
  --background-light-color: #eaf1ff;
  --background-grey-color: #f7f7f7;
  --border-color: #d0dae8;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 14px;
  font-family: 'Roboto';
  color: var(--content-color);
  padding: 0;
  margin: 0;
}

.body_wrapper,
.content_wrapper {
  width: 100vw;
  min-height: 100vh;
  height: auto;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(
    from 181.49deg at 50% 50%,
    #fff7e7 -116.25deg,
    #e0f4ff 45deg,
    #fff7e7 243.75deg,
    #e0f4ff 405deg
  );
}

.card {
  background: #ffffff;
  box-shadow: 0px 20px 30px 5px rgba(0, 14, 85, 0.05);
  border-radius: 10px;
  padding: 16px 20px;
  width: 95%;
  margin-bottom: 20px;
}

.card .card-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: var(--placeholder-color);
}

.content {
  height: 90vh;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 800px;
}

.content h1 {
  align-self: flex-start;
}

.logo {
  margin-top: 5px;
}

.logo img {
  max-width: 85px;
}

.bottom-30 {
  margin-bottom: 30px;
}

.bottom-20 {
  margin-bottom: 20px !important;
}
.bottom-10 {
  margin-bottom: 10px !important;
}
.bottom-0 {
  margin-bottom: 0px !important;
}
.text {
  background: #ffffff;
  padding: 10px;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: 18px;
  margin-bottom: 10px;
}

.text::placeholder {
  color: var(--placeholder-color);
}

input[type='password'] {
  height: 36px;
}

a {
  color: var(--secondary-color);
  font-weight: 700;
}

a.btn {
  padding: 10px 30px;
  text-align: center;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
}

.btn-primary {
  background: var(--primary-color);
  color: #ffffff;
}

.btn-secondary {
  background: var(--secondary-color);
  color: #ffffff;
}

.btn-warning {
  background: #ffae12;
  color: #ffffff;
}

.btn.has_icon {
  min-width: 160px;
  position: relative;
}

.btn.has_icon::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 10px;
  width: 24px;
  height: 24px;
}

.icon_reload::before {
  background: url('/assets/images/icons/circle/reload.svg') no-repeat center center;
}

.flat {
  width: 100%;
}

.divider {
  border: 1px solid var(--border-color);
  width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
}

.card > .divider {
  width: calc(100% + 40px);
  margin-top: 10px;
  margin-bottom: 10px;
}

.modal-divider {
  margin-left: -20px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 111%;
  border: 1px solid var(--border-color);
}

.row {
  display: flex;
  flex-direction: row;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

h1 {
  font-size: 38px;
}
h2 {
  font-size: 30px;
  font-weight: normal;
}
h2 + p,
h3 + p {
  margin-top: 0;
}
h5 {
  font-size: 18px;
}

h3 {
  font-size: 20px;
  text-transform: uppercase;
}

p {
  margin: 10px 0;
}

.progressing {
  width: 100%;
  margin-bottom: 10px;
}

.progressing .progress_bar {
  width: 100%;
  background: var(--background-light-color);
  border-radius: 8px;
  margin-bottom: 10px;
  height: 15px;
}

.progressing .progress_bar .step {
  min-width: 15%;
  background: #4e55f4;
  box-shadow: 0px 2px 8px rgba(0, 25, 114, 0.3);
  border-radius: 8px;
  height: 100%;
}

.progressing .progress_current {
  color: var(--placeholder-color);
}

.clearfix {
  display: flex;
}

.time_block {
  font-size: 30px;
  line-height: 35px;
  width: 75px;
  height: 35px;
  margin-right: 10px;
  text-align: center;
  color: var(--secondary-color);
}

input,
select,
textarea,
button {
  outline: none;
  outline-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

*:focus {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.btn-list {
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 10px;
}

.btn-list .btn:first-child {
  margin-left: 0;
}

.btn-list .btn:last-child {
  margin-right: 0;
}

.btn-list .btn {
  margin: 0 15px 0 0;
}
.btn-list.column .btn {
  width: 100%;
  margin: 0 0 10px 0;
}
small {
  color: var(--placeholder-color);
}

.grey_card {
  width: calc(100% + 40px);
  padding: 20px;
  background-color: var(--background-grey-color);
}

.grey_card_2 {
  width: calc(100% + 28px);
  padding: 15px 14px;
  background-color: var(--background-grey-color);
  border-radius: 10px;
}

.white_chip {
  background: #fff;
  border-radius: 26px;
  padding: 13px 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.remaining {
  background: #fff;
  border-radius: 30px;
  align-content: space-between;
  width: calc(100% - 20px);
  display: flex;
  margin: 10px 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.remaining .btn-warning {
  border-radius: 50%;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 10px;
}

.remaining_hour {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.remaining_hour .red {
  margin: 0 10px;
  font-size: 30px;
}

.remaining_hour.current_class {
  gap: 20px;
  color: var(--secondary-color);
}

.remaining_hour .normal {
  color: var(--secondary-color);
  font-size: 30px;
}

.red {
  color: #ff0000;
}

.bg-white {
  background-color: #fff;
}

.padding-30 {
  padding: 30px;
}

.menu-back {
  color: var(--placeholder-color);
  font-size: 18px;
  font-weight: bold;
  display: block;
  height: 24px;
  text-decoration: none;
}

.menu-back::before {
  content: '';
  background: #fff url(/assets/images/arrow/left.svg) left center no-repeat;
  padding-left: 35px;
}

.menu_name {
  color: var(--content-color);
  font-size: 18px;
  font-weight: bold;
  line-height: 21px;
  text-align: left;
  text-transform: uppercase;
}

.bg-grey {
  background-color: var(--background-grey-color);
}

.menu_list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu_item a {
  border-top: solid 1px var(--border-color);
  display: block;
  color: var(--content-color);
  padding: 12px 30px;
  text-decoration: none;
  font-weight: normal;
}

.menu_item.view_profile a {
  font-weight: bold;
}

.menu_item.add_profile a span,
.nps a span {
  text-decoration: underline;
  font-weight: bold;
  color: var(--primary-color);
}

.menu-open {
  margin-right: 10px;
}

.available-dot,
.study-dot {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
}

.available-dot {
  background-color: var(--primary-color);
}

.study-dot {
  background-color: var(--secondary-color);
}

.dashboard-image {
  width: 100%;
  height: 365px;
  overflow-x: visible;
  overflow-y: hidden;
}

ul.activities {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.activities li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  background-color: var(--background-light-color);
  padding: 7px 18px;
  height: 30px;
  margin-bottom: 10px;
}

ul.activities li > span:nth-child(1) {
  color: var(--primary-color);
  font-weight: bold;
}

ul.activities li > span:nth-child(3) {
  display: flex;
  justify-content: space-between;
}

ul.activities li > span:nth-child(6)::before {
  content: '';
  background: transparent url(/assets/images/icons/more_small.svg) center center no-repeat;
  width: 3px;
  height: 15px;
  display: inline-flex;
}

.round-card {
  background-color: #fff;
  width: 95%;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  justify-content: space-between;
  box-shadow: 0px 5px 30px rgba(0, 5, 117, 0.1);
  border-radius: 30px;
  height: 60px;
  margin-bottom: 10px;
}

.bottom_menu a img:nth-child(2) {
  display: flex;
}

.bottom_menu a img:nth-child(1) {
  display: none;
}

.bottom_menu a.active img:nth-child(2) {
  display: none;
}

.bottom_menu a.active img:nth-child(1) {
  display: flex;
}

.incdule-html {
  width: 100%;
  display: flex;
  justify-content: center;
}

.primary {
  color: var(--primary-color);
}
.secondary{
  color: var(--secondary-color);
}

.payment_info,
.payment_remaining {
  color: var(--content-color);
  font-size: 18px;
  font-weight: bold;
}

.round-card {
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
}

.grey-bg {
  background: var(--background-grey-color);
  color: var(--content-color);
}

.payment_price {
  color: var(--primary-color);
  font-size: 30px;
  line-height: 35px;
  text-align: right;
  margin: 20px 0;
}

.slider-card.payment_card,
.card.payment_card {
  background-color: #fff;
  border: solid 1px var(--border-color);
  height: auto;
  width: 100%;
}

.slider-card.payment_type {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: auto;
  padding: 10px;
}

.payment_type img {
  margin-bottom: 10px;
}

.payment_type_container {
  height: 140px;
  width: 140px;
}

#include_bottom_menu {
  position: sticky;
  bottom: 0;
  z-index: 1;
}

.tab-container {
  width: 95%;
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  background: var(--background-light-color);
  border-radius: 22px;
  overflow: hidden;
}

.tab {
  font-size: 18px;
  font-weight: normal;
  color: var(--primary-color);
  height: 40px;
  padding: 8px 34px;
  text-transform: uppercase;
  border-radius: 20px;
  text-decoration: none;
}

.tab.tab-active {
  background-color: #fff;
  font-weight: bold;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.hero {
  margin-bottom: 20px;
  width: 100%;
}

.hero h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.lession-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.lession-tile {
  background-color: var(--background-grey-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 11px;
  margin-bottom: 10px;
}

.lession-tile > span:nth-child(1) {
  width: 25%;
}
.lession-tile > span:nth-child(2) {
  font-weight: bold;
  color: var(--content-color);
  width: 35%;
}
.lession-tile > span:nth-child(3) {
  width: 30%;
}
.lession-tile > span:nth-child(4) {
  width: 10%;
  display: flex;
  justify-content: flex-end;
}
.lession-tile > span:nth-child(4)::before {
  content: '';
  display: flex;
  width: 4px;
  height: 20px;
  background: transparent url(/assets/images/icons/more.svg) center center no-repeat;
}
.lession-tile > span > span {
  padding-left: 5px;
  display: inline-block;
}
.lession-tile.active > span:nth-child(2) > span,
.lession-tile.active > span:nth-child(3) > span {
  color: var(--secondary-color);
}
.lession-tile.active {
  background: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 25, 114, 0.3);
}
.lession-tile.active span:nth-child(5),
.lession-tile.active span:nth-child(6) {
  color: var(--secondary-color);
}

.modal {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.modal .modal-content {
  width: 95vw;
}

.modal .modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title h4 {
  font-size: 18px;
  margin: 0;
}

.hide {
  display: none;
}

.pac-input {
  position: relative;
}
.pac-input input {
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: 18px;
  height: 36px;
  width: 100%;
  padding: 10px 10px 10px 44px;
}
.pac-input::before {
  content: '';
  display: inline-flex;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 10px;
  top: 6px;
  background: transparent url(/assets/images/icons/location.svg) center center no-repeat;
}
.map {
  filter: drop-shadow(0px 5px 10px rgba(0, 25, 114, 0.2));
  border-radius: 5px;
  height: 200px;
  width: 100%;
}

.legends {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.legends .legend-item {
  display: flex;
  align-content: space-between;
  gap: 10px;
}
.legends .legend-item .legend-circle {
  width: 15px;
  height: 15px;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: 7.5px;
}

.round-box {
  border-radius: 20px;
  height: 40px;
  padding: 12px 10px;
}

.payment_card .round-box{
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.filter-class{
  align-content: space-between;
  justify-items: center;
  gap: 20px;
}

.padding-small{
  padding: 16px 10px;
}

.uppercase{
  text-transform: uppercase;
}