html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

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

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.ca-container {
  background: #ffffff;
  box-shadow: 0px -3px 12px rgba(0, 0, 0, 0.06);
  border-radius: 20px 20px 0px 0px;
  position: fixed;
  height: 96vh;
  max-height: 760px;
  bottom: 0;
  width: 100%;
  left: 0;
}

.ca-body {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 65vh;
  padding-top: 30px;
}

.ca-calendar-section {
  width: 1000px;
}
.ca-calendar-section .ca-vstack {
  display: flex;
  height: 340px;
  overflow-y: scroll;
}
.ca-calendar-section .ca-calendar-header {
  background: white;
  height: 50px;
  display: flex;
  padding-right: 18px;
}
.ca-calendar-section .ca-calendar {
  height: 900px;
  width: 100%;
  border: 1px solid #e5eaed;
  background: white;
  display: flex;
  flex-direction: row;
}

.ca-header-item {
  width: calc(100% / 7);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-header-item h4 {
  font-weight: 400;
  font-size: 16px;
  color: #4a5464;
  text-align: center;
}

.ca-day {
  display: flex;
  flex-direction: column;
  height: 220%;
  width: calc(100% / 7);
}

.ca-session-item {
  display: none;
  height: calc(100% / 3);
}
.ca-session-item h4 {
  text-align: right;
  padding-right: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #646e80;
}

.ca-view-calendar a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  /* Primary */
  text-decoration: none;
  color: white;
}

.ca-info-top {
  font-weight: 500;
  font-size: 20px;
  color: #4f4f4f;
  text-align: center;
}

.ca-slot {
  height: calc(100% / 50);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5eaed;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  background: rgba(229, 234, 237, 0.4);
  color: #8a96ab;
}

.ca-slot-zero {
  height: calc(100% / 50);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5eaed;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  background: white;
  color: #8a96ab;
}

.ca-slot-available {
  height: calc(100% / 50);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5eaed;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #04aadb;
}
.ca-slot-available:hover {
  background: #04aadb;
  color: white;
  cursor: pointer;
}

.ca-slot-selected {
  height: calc(100% / 50);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5eaed;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  background: #04aadb;
  color: white;
  cursor: pointer;
}

.ca-top {
  display: flex;
  height: 61px;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
}
.ca-top h2 {
  font-weight: 400;
  font-size: 22px;
  color: #4a5464;
}
@media (max-width: 600px) {
  .ca-top {
    flex-direction: column;
    height:0px;
    padding: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.ca-header {
  display: flex;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  background: #fafafc;
  width: 100%;
  height: 96px;
}
.ca-header h4 {
  font-size: 16px;
  font-weight: 400;
  color: #646e80;
}
.ca-header h4 span {
  color: #04aadb;
}
@media (max-width: 600px) {
  .ca-header {
    flex-direction: column;
    padding: 0;
    height: 140px;
    justify-content: space-around;
  }
  .ca-header h4 {
    font-size: 12px;
    max-width: 90vw;
    text-align: center;
  }
}

.ca-header-2 {
  display: flex;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  background: #fafafc;
  width: 100%;
  /*height: 96px;*/
}
.ca-header-2 h4 {
  font-size: 16px;
  font-weight: 400;
  color: #646e80;
}
.ca-header-2 h4 span {
  color: #04aadb;
}
@media (max-width: 600px) {
  .ca-header-2 {
    flex-direction: column;
    padding: 0;
    height: 20px;
    justify-content: center;
  }
  .ca-header-2 h4 {
    font-size: 12px;
    max-width: 90vw;
    text-align: center;
  }
}

.ca-input {
  background: #ffffff;
  border: 1.4px solid #e5eaed;
  box-sizing: border-box;
  border-radius: 4px;
  height: 45px;
  width: 277px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #828282;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .ca-input {
    height: 30px;
    font-size: 14px;
  }
}

.ca-input-zone {
  background: #ffffff;
  border: 1.4px solid #e5eaed;
  box-sizing: border-box;
  border-radius: 4px;
  height: 45px;
  width: 277px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #828282;
  justify-content: center;
}
@media (max-width: 600px) {
  .ca-input-zone {
    height: 30px;
    font-size: 14px;
  }
}

.ca-help {
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  /* Light Text */
  color: #9da6b5;
}

.ca-user-pic {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: grey;
  overflow: hidden;
}
@media (max-width: 600px) {
  .ca-user-pic {
    height: 40px;
    width: 40px;
  }
}

.ca-footer {
  display: flex;
  border-top: 1.4px solid #e5eaed;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 4px -4px 10px #ececef;
}
.ca-footer .ca-info-group {
  display: flex;
}
@media (max-width: 600px) {
  .ca-footer {
    flex-direction: column;
    padding: 0;
    height: 100px;
    padding-top: 12px;
  }
}

.ca-user-section {
  display: flex;
  margin-right: 58px;
}
@media (max-width: 600px) {
  .ca-user-section {
    margin-right: 20px;
  }

  .ca-teacher-info p {
    line-height: 20px !important;
  }

  .ca-user-info p {
    line-height: 20px !important;
  }
}

.ca-teacher-info {
  padding-left: 22px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
  color: #646e80;
}

.ca-user-info {
  border-left: 1px solid #e5eaed;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
  color: #646e80;
  width: auto !important;
}

.ca-button {
  flex: 1;
  display: flex;
  justify-content: center;
}
.ca-button a {
  /* Primary */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 10px 47px 10px 47px;
  text-decoration: none;
}
@media (max-width: 600px) {
  .ca-button {
    flex-direction: unset;
    padding: 0;
    width: 85%;
  }
  .ca-button a {
    width: 70vw;
    padding-top: 12px;
    padding-bottom: 12px;
    display: initial;
    height: fit-content;
  }
}
.ca-button .ca-next {
  /*background: rgb(255 85 75 / 30%);*/
  /*color: #ff554b;*/
  /*padding: 10px 71px 10px 71px;*/
  background: #ff554b;
  color: white;
}
.ca-button .ca-next:hover {
  background: #ff554b;
  color: white;
}

.ca-button .change_week {
/*  background:  rgb(255 85 75 / 30%);
  color: #ff554b;*/
  background: #ff554b;
  color: white;
  /*width: 153px !important;*/
  width: inherit !important;
  margin-left: 20px;

}
.ca-button .change_week:hover {
  cursor: pointer;
  background: #ff554b;
  color: white;
}

.ca-button .pre_week {
  margin-right: 5px;
  background: rgb(255 85 75 / 30%);
  color: #ff554b;
  /*padding: 0px 35px 0px 35px;*/
  padding: 10px 47px 10px 47px;
  /*width: 158px !important;*/
  width: inherit !important;
}
.ca-button .pre_week:hover {
  cursor: pointer;
  background: #ff554b;
  color: white;
}

.ca-button .ca-back {
  /*background: rgba(4, 170, 219, 0.2);*/
  background: #ff554b;
  /*color: #04aadb;*/
  color: white;
  text-align: center;
}
.ca-next{
  display: none;
}
.ca-button .ca-back:hover {
  /*background: #04aadb;*/
  color: white;
  background: #ff554b;
  
}

.ca-close-mobile {
  display: none;
}
@media (max-width: 600px) {
  .ca-close-mobile {
    display: flex;
  }
}

.ca-close-desktop {
  display: none;
  flex: 1;
}
@media (min-width: 600px) {
  .ca-close-desktop {
    display: flex;
    justify-content: flex-end;
  }
}

.ca-title {
  display: flex;
  flex: 1;
  align-items: center;
}
@media (max-width: 600px) {
  .ca-title {
    width: 100%;
    justify-content: space-around;
  }
}

.ca-arrow {
  display: flex;
  height: 45px;
  width: 45px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ca-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
}

.ca-meeting {
  display: flex;
  width: 435px;
  border-radius: 4px;
  border: 1.4px solid #e5eaed;
  align-items: center;
  margin-bottom: 40px;
}
.ca-meeting a {
  flex: 1;
  background: #ffffff;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  height: 45px;
  align-items: center;
  /* Gray 3 */
  color: #828282;
}
.ca-meeting a:first-child {
  border-right: 1.4px solid #e5eaed;
}
.ca-meeting a:last-child {
  border-left: 1.4px solid #e5eaed;
}
.ca-meeting a:hover {
  background: #ff554b;
  color: white;
}

.ca-input-meeting {
  display: flex;
  flex-direction: column;
}
.ca-input-meeting label {
  font-weight: 400;
  font-size: 16px;
  color: #828282;
  margin-bottom: 16px;
}
.ca-input-meeting input {
  background: #fafafc;
  /* Light Text */
  border: 1.4px solid #9da6b5;
  box-sizing: border-box;
  border-radius: 4px;
  height: 50px;
  /*width: 435px;*/
  /*width: -webkit-fill-available !important;*/
  /*margin-left: 0px !important;*/
  /*margin-left: 10px !important;*/
  margin-right: 15px !important;
  border-radius: 4px;
  padding-left: 20px;
  font-size: 16px;
}

.ca-align-main {
  align-items: center;
}

/*.ca-user-info p{
font-weight: bold;
font-size: 19px;
}*/
.ca-error{
  font-size: 16px!important;
  font-weight: 200!important;

}

.ca-meeting a{
  /*background: #ff554b!important;*/
}




