/* color  */
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Mulish', sans-serif;
  background: #e7edff65;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  max-height: 50%;
  height: 50%;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 5px;
}

.container {
  width: 85%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}

a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Mulish', sans-serif;
}

button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Mulish', sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: 'Mulish', sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

textarea {
  resize: none;
  font-family: 'Mulish', sans-serif;
}

.shimmer {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.158);
  display: none;
}

.sidemenu {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 50;
  height: 100vh;
  background: white;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 480px) {
  .sidemenu {
    width: 80%;
  }
}

.sidemenu .sidemenuHead {
  width: 100%;
  height: 60px;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 5px #eee;
          box-shadow: 0 0 5px #eee;
}

.sidemenu .sidemenuHead .sidemenuClose {
  font-size: 16px;
  font-weight: 600;
}

.sidemenu .sidemenuHead .sidemenuClose i {
  font-size: 18px;
  margin-right: 5px;
}

.sidemenu .sidemenuBody {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidemenu .sidemenuBody ul {
  width: 100%;
  padding: 20px 0px;
}

.sidemenu .sidemenuBody ul li {
  list-style: none;
}

.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #9E9E9E;
}

.sidemenu .sidemenuBody ul li .active {
  color: #7231F5;
  font-weight: 600;
}

.sidemenuActive {
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.041);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.041);
  height: 70px;
  z-index: 10;
}

@media (max-width: 768px) {
  nav {
    height: 60px;
  }
}

nav .navLogo {
  height: 70px;
  width: 200px;
  float: left;
  text-decoration: none;
}

@media (max-width: 768px) {
  nav .navLogo {
    height: 60px;
  }
}

nav .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

nav .navLink {
  float: right;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  nav .navLink {
    display: none;
  }
}

nav .navLink ul li {
  list-style: none;
  float: left;
}

nav .navLink ul li a {
  text-decoration: none;
  margin-left: 50px;
  font-size: 14px;
  color: #263238;
}

nav .navLink ul li .profile {
  background: #E1E4FC;
  color: #364FF5;
  padding: 8px 20px;
  border-radius: 5px;
}

nav .navBar {
  display: none;
}

@media (max-width: 768px) {
  nav .navBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 70px;
    float: right;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav .navBar .navBarBox {
    width: 25px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav .navBar .navBarBox span {
    background: black;
    width: 100%;
    height: 2px;
    margin-top: 2px;
  }
}

@media (max-width: 768px) {
  nav .navBar {
    height: 60px;
  }
}

#loginSection {
  width: 100%;
  padding: 50px 15%;
  margin-top: 70px;
}

@media (max-width: 768px) {
  #loginSection {
    padding: 50px 5%;
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  #loginSection {
    padding: 0;
  }
}

#loginSection .login {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.075);
  min-height: calc(100vh - 170px);
}

@media (max-width: 768px) {
  #loginSection .login {
    height: auto;
  }
}

@media (max-width: 480px) {
  #loginSection .login {
    height: calc(100vh - 60px);
    border-radius: 0;
  }
}

#loginSection .login .loginThumbnail {
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #loginSection .login .loginThumbnail {
    width: 40%;
  }
}

@media (max-width: 480px) {
  #loginSection .login .loginThumbnail {
    display: none;
  }
}

#loginSection .login .loginThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#loginSection .login .loginForm {
  width: 50%;
  background: white;
  padding: 80px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  #loginSection .login .loginForm {
    padding: 50px;
    width: 60%;
  }
}

@media (max-width: 480px) {
  #loginSection .login .loginForm {
    width: 100%;
    padding: 30px;
  }
}

#loginSection .login .loginForm h1 {
  font-size: 2.5em;
  font-weight: 600;
}

@media (max-width: 480px) {
  #loginSection .login .loginForm h1 {
    font-size: 2em;
  }
}

#loginSection .login .loginForm form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

#loginSection .login .loginForm form .formGroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}

#loginSection .login .loginForm form .formGroup label {
  font-size: 12px;
  font-weight: 600;
}

#loginSection .login .loginForm form .formGroup input {
  width: 100%;
  height: 45px;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
  outline: navajowhite;
  font-weight: 600;
  font-size: 12px;
  caret-color: #364FF5;
}

#loginSection .login .loginForm form .formGroup input::-webkit-input-placeholder {
  color: #bdbdbd;
  font-weight: 400;
}

#loginSection .login .loginForm form .formGroup input:-ms-input-placeholder {
  color: #bdbdbd;
  font-weight: 400;
}

#loginSection .login .loginForm form .formGroup input::-ms-input-placeholder {
  color: #bdbdbd;
  font-weight: 400;
}

#loginSection .login .loginForm form .formGroup input::placeholder {
  color: #bdbdbd;
  font-weight: 400;
}

#loginSection .login .loginForm form .formGroup input:focus {
  border: 1px solid #364FF5;
}

#loginSection .login .loginForm form .formGroup .passwordBox {
  position: relative;
}

#loginSection .login .loginForm form .formGroup .passwordBox .eye {
  position: absolute;
  right: 10px;
  top: 32%;
  cursor: pointer;
}

#loginSection .login .loginForm form .formGroup .errorPsd {
  width: 100%;
  background: rgba(255, 0, 0, 0.13);
  border-radius: 5px;
  padding: 8px 10px;
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

#loginSection .login .loginForm form .forgotPsd {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 15px;
}

#loginSection .login .loginForm form .forgotPsd a {
  text-decoration: none;
  text-align: right;
  font-size: 12px;
  color: #008C4D;
}

#loginSection .login .loginForm form button {
  width: 100%;
  background: #364FF5;
  color: white;
  font-size: 14px;
  outline: none;
  border-radius: 5px;
  margin-top: 20px;
  padding: 12px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #364FF5;
}

#loginSection .login .loginForm form button:hover {
  background: white;
  color: #364FF5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#loginSection .login .loginForm form .or {
  width: 100%;
  margin: 40px 0px;
  padding: 0px 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#loginSection .login .loginForm form .or span {
  width: 40%;
  height: 1px;
  background: #eee;
}

#loginSection .login .loginForm form .or h6 {
  color: #526069;
}

#loginSection .login .loginForm form .SecondaryBtn {
  text-decoration: none;
  border: 1px solid #364FF5;
  color: #364FF5;
  font-size: 14px;
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#loginSection .login .loginForm form .SecondaryBtn:hover {
  background: #364FF5;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#profileDetails {
  width: 100%;
  float: left;
  margin-top: 90px;
  padding-bottom: 50px;
}

#profileDetails .profileDetailsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#profileDetails .profileDetailsMain .profileDetailsHead {
  width: 100%;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 300px;
  position: relative;
  z-index: 0;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead {
    padding: 0px 20px;
    height: auto;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: url(../images/profileBg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead::after {
    height: 150px;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileThumbnail {
  width: 150px;
  height: 150px;
  border-radius: 40px;
  overflow: hidden;
  border: 5px solid #f5f7ff;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileThumbnail {
    width: 100%;
    margin-top: 50px;
    height: 200px;
    border-radius: 20px;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileDetails {
  width: calc(100% - 170px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileDetails {
    width: 100%;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileDetails h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 5px;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileDetails h2 {
    margin-top: 10px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileDetails p {
  font-size: 12px;
  color: #76838F;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileDetails p {
    text-align: center;
    margin-top: 3px;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox2 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox2 a {
  text-decoration: none;
  font-size: 14px;
  background: #008C4D;
  color: white;
  padding: 12px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox2 a {
    margin-bottom: 0;
  }
}

#profileDetails .profileDetailsMain .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox2 a i {
  margin-right: 10px;
}

#profileDetails .profileDetailsMain .profileDetailsBody {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox {
  width: 100%;
  background: white;
  border-radius: 10px;
  margin-top: 40px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.041);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.041);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox h1 {
  font-size: 20px;
  font-weight: 600;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #F3F7F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin::after {
  content: '';
  height: 0;
  width: 30%;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox label {
  font-size: 14px;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox p {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  background: #FAFAFA;
  padding: 10px 15px;
  border-radius: 5px;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox a {
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  margin-top: 5px;
  color: #364FF5;
  background: #E1E4FC;
  padding: 10px 15px;
  border-radius: 5px;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 p {
  height: 100px;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .dummyprofileDetailsBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  height: 0;
}

#profileDetails .profileDetailsMain .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .errorMsg {
  width: 100%;
  background: rgba(255, 0, 0, 0.13);
  border-radius: 5px;
  padding: 8px 10px;
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

#profileDetails .profileDetailsMain .profileDetailsBody .elseDesign {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px;
}

#profileDetails .profileDetailsMain .profileDetailsBody .elseDesign img {
  width: 200px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#profileDetails .profileDetailsMain .profileDetailsBody .elseDesign p {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  color: #424242;
}

#profileDetails .profileDetailsMain .profileDetailsBody .elseDesign span {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.5;
  color: #9E9E9E;
}

#studentDashboard {
  width: 100%;
  margin-top: 70px;
}

#studentDashboard .studentDashboardMain {
  width: 100%;
}

#studentDashboard .studentDashboardMain .studentDashboardSidemenu {
  width: 20%;
  background: white;
  padding: 20px 0px;
  position: fixed;
  z-index: 9;
  height: calc(100vh - 70px);
}

@media (max-width: 768px) {
  #studentDashboard .studentDashboardMain .studentDashboardSidemenu {
    display: none;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardSidemenu ul {
  width: 100%;
}

#studentDashboard .studentDashboardMain .studentDashboardSidemenu ul li {
  list-style: none;
}

#studentDashboard .studentDashboardMain .studentDashboardSidemenu ul li a {
  text-decoration: none;
  padding: 14px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #76838F;
}

#studentDashboard .studentDashboardMain .studentDashboardSidemenu ul li a:hover {
  background: #FAFAFA;
}

#studentDashboard .studentDashboardMain .studentDashboardSidemenu ul li .active {
  background: #7231F5;
  color: white;
  font-weight: 600;
}

#studentDashboard .studentDashboardMain .studentDashboardSidemenu ul li .active:hover {
  background: #8349F5;
}

#studentDashboard .studentDashboardMain .studentDashboardDody {
  width: 73%;
  padding: 20px 0px 50px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  float: right;
}

@media (max-width: 768px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody {
    width: 100%;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead {
  width: 100%;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 300px;
  position: relative;
  z-index: 0;
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead {
    height: auto;
    padding: 0px 20px;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: url(../images/profileBg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead::after {
    height: 150px;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead .profileHeadDetails {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileThumbnail {
  width: 150px;
  height: 150px;
  border-radius: 40px;
  overflow: hidden;
  border: 5px solid #f5f7ff;
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileThumbnail {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    margin-top: 50px;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsHead .profileHeadDetails .profileDetailsHeadBox1 .profileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox {
  width: 100%;
  background: white;
  border-radius: 10px;
  margin-top: 40px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.041);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.041);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox h1 {
  font-size: 20px;
  font-weight: 600;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #F3F7F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin::after {
  content: '';
  height: 0;
  width: 30%;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox label {
  font-size: 14px;
  color: #616161;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox input {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  outline: none;
  caret-color: #7231F5;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox input::-webkit-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox input:-ms-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox input::-ms-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox input::placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox input:focus {
  border: 1px solid #7231F5;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox select {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  outline: none;
  caret-color: #7231F5;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox select::-webkit-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox select:-ms-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox select::-ms-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox select::placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox select:focus {
  border: 1px solid #7231F5;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox a {
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  margin-top: 5px;
  color: #364FF5;
  background: #E1E4FC;
  padding: 10px 15px;
  border-radius: 5px;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload {
  display: block;
  text-align: center;
  font-size: 14px;
  overflow: hidden;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select {
  width: 100%;
  height: 45px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
  outline: none;
  display: block;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select:focus {
  border: 1px solid #7231F5;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select::-webkit-input-placeholder {
  color: #cfcdcd;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select:-ms-input-placeholder {
  color: #cfcdcd;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select::-ms-input-placeholder {
  color: #cfcdcd;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select::placeholder {
  color: #cfcdcd;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select .file-select-button {
  background: #dce4ec;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select .file-select-name {
  line-height: 1.5;
  display: inline-block;
  width: 100%;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select:hover {
  border-color: #34495e;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select:hover .file-select-button {
  background: #34495e;
  color: #FFFFFF;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload.active .file-select {
  border-color: #000;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload.active .file-select .file-select-button {
  background: #3fa46a;
  color: #FFFFFF;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload input[type=file] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  margin-top: 0;
  filter: alpha(opacity=0);
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox .file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 textarea {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  height: 100px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  outline: none;
  caret-color: #7231F5;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 textarea::-webkit-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 textarea:-ms-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 textarea::-ms-input-placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 textarea::placeholder {
  font-weight: 400;
  color: #9E9E9E;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBox2 textarea:focus {
  border: 1px solid #7231F5;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .dummyProfileDetailsBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  height: 0;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBtnSection {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  border-top: 1px solid #F3F7F9;
  margin-top: 40px;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBtnSection button {
  background: #7231F5;
  color: white;
  font-size: 14px;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .profileDetailsBtnSection button {
    width: 100%;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .or {
  width: 100%;
  margin: 40px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .or span {
  width: 40%;
  height: 1px;
  background: #eee;
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .or span {
    width: 30%;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .or h6 {
  color: #526069;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .or h6 {
    font-size: 14px;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .addMoreDocument {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .addMoreDocument a {
  text-decoration: none;
  background: #C2FADC;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 14px;
  color: #008C4D;
}

@media (max-width: 480px) {
  #studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .addMoreDocument a {
    width: 100%;
    text-align: center;
  }
}

#studentDashboard .studentDashboardMain .studentDashboardDody .profileDetailsBody .profileDetailsBodyBox .profileDetailsBodyBoxMin .errorMsg {
  width: 100%;
  background: rgba(255, 0, 0, 0.13);
  border-radius: 5px;
  padding: 20px 20px;
  color: red;
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
}
/*# sourceMappingURL=style.css.map */