body {
  font-family: "Roboto", sans-serif; }

.color-red {
  color: #0ca2d3 ; }

.mci-alert-orange {
  background-color: #fff1e2;
  border: 1px solid #ffcb97;
  padding: 25px;
  border-radius: 25px; }
  .mci-alert-orange p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #ffcb97; }

.mci-alert-red {
  background-color: #fce5e5;
  border: 1px solid #f27b7c;
  border-radius: 25px; }
  .mci-alert-red .mci-alert-header {
    display: flex;
    align-items: center;
    padding: 20px 20px 10px 20px;
    font-size: 16px;
    color: #0ca2d3 ; }
    .mci-alert-red .mci-alert-header i {
      font-size: 30px;
      color: #0ca2d3 ;
      margin-right: 10px;
      font-weight: 500; }
  .mci-alert-red .mci-alert-body {
    padding: 10px 20px; }
    .mci-alert-red .mci-alert-body p {
      margin: 0;
      font-size: 14px;
      font-weight: 400;
      color: #000; }
  .mci-alert-red .mci-alert-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 20px 20px 20px; }
    .mci-alert-red .mci-alert-footer button {
      background-color: #0ca2d3 ;
      border: 1px solid #0ca2d3 ;
      color: #fff;
      border-radius: 150px;
      padding: 7px 30px;
      font-size: 14px;
      font-weight: 400; }

.mci-form .mci-inputGroup input {
  width: 100%;
  background-color: #f1efef;
  border: 1px solid #f1efef;
  border-radius: 100px !important;
  padding: 0 15px;
  height: 45px; }
.mci-form .mci-inputSubmit button {
  border-radius: 100px;
  border: 1px solid transparent;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  text-transform: uppercase; }

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
    #wrapper #mci-sidebar {
        z-index: 1000;
        position: fixed;
        left: 300px;
        width: 0;
        height: 78%;
        margin-left: -300px;
        overflow-y: auto;
        /*background: #022c4b;*/
        background:white;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }
    #wrapper.toggled #mci-sidebar {
        /*width: 80%;*/
        /*width: 25%;*/
        width: 26%;
    }
    @media screen and (max-width: 400px) {
        #wrapper.toggled #mci-sidebar {
            /* width: 100%;*/
            /*width: 25%;*/
            width: 33%;
            min-width: 100%;
        } }
#wrapper .sidebar-nav {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
   /* padding: 0 20px;*/
    padding: 0 5px 0 0;
}
    #wrapper .sidebar-nav li {
        text-indent: 10px;
        /*line-height: 45px;*/
        /*line-height: 25px;*/
        line-height: 18px;

        border-bottom: 1px solid #fff;
        width: 100%;
    }

      #wrapper .sidebar-nav li div.sidebar-itemNav {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        #wrapper .sidebar-nav li a {
            display: block;
            text-decoration: none;
            /*color: #fff;*/
            color: #0B1215;
            text-transform: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            position: relative;
            z-index: 1;
        }
        #wrapper .sidebar-nav li a i {
          font-size: 25px;
          color: #fff; }
        #wrapper .sidebar-nav li a img {
          width: 27px;
          margin-left: 10px; }
            #wrapper .sidebar-nav li a:hover {
                border-radius: 50px;
                text-decoration: none;
                /*color: #fff;*/
                color: #0B1215;
                /* background: rgba(255, 255, 255, 0.2);*/
                /*background: #449dcb;*/
                background-color:lightblue;
            }
        #wrapper .sidebar-nav li a:active, #wrapper .sidebar-nav li a:focus {
          text-decoration: none; }
        #wrapper .sidebar-nav li a span {
          flex-shrink: 0;
          display: flex;
          align-items: center; }
          #wrapper .sidebar-nav li a span i {
            font-size: 25px;
            color: #fff; }
        #wrapper .sidebar-nav li a span.arrow-icon {
          -webkit-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease;
          transform: rotate(0deg); }
      #wrapper .sidebar-nav li ul {
        display: block;
        width: 100%;
        list-style: none;
        padding-left: 30px;
        height: 0;
        opacity: 0;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        #wrapper .sidebar-nav li ul li a {
            color: #0B1215;
            font-size: 14px;
            font-weight: 400;
        }
        #wrapper .sidebar-nav li.active {
            background-color: white;
        }
        #wrapper .sidebar-nav li.active .sidebar-itemNav span.arrow-icon {
          -webkit-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease;
          transform: rotate(90deg); }
            #wrapper .sidebar-nav li.active ul {
                /*height: 74px;*/
                height: auto !important;
                overflow: hidden;
                opacity: 1;
                -webkit-transition: all 3s ease;
                -moz-transition: all 3s ease;
                -o-transition: all 3s ease;
                transition: all 3s ease;
            }
          #wrapper .sidebar-nav li.active ul li:last-child {
            border-bottom: 0px solid transparent; }
    #wrapper .sidebar-nav > .sidebar-brand {
      height: 65px;
      font-size: 30px;
      display: flex;
      justify-content: flex-end;
      align-items: center; }
      #wrapper .sidebar-nav > .sidebar-brand a {
        color: #fff;
        display: flex;
        justify-content: flex-end; }
        #wrapper .sidebar-nav > .sidebar-brand a:hover {
          color: #000;
          background: none; }

.mci-container header {
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    /*background-color: #fff;*/
    /*background-color: #f9f9fb;*/
    /*    background-color: #eeeeee;
*/ background-color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    /*height: 65px;*/
    /*height: 80px;*/
    height: 80px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9;
}
  .mci-container header .mci-logo {
    display: flex;
    align-items: center; }
    .mci-container header .mci-logo a {
      margin-right: 15px;
      padding: 0; 

    }
      .mci-container header .mci-logo a:hover {
        color: #0ca2d3 ; }
      .mci-container header .mci-logo a i {
        font-size: 30px;
        padding: 0; }
        .mci-container header .mci-logo a img {
            /*width: 65px;*/
            /*width: 8%;*/
            width: 20%;
            height: auto;
        }
  .mci-container header nav {
    display: flex;
    align-items: center; }
    .mci-container header nav a, .mci-container header nav button {
      text-decoration: none;
      color: #0ca2d3 ;
      position: relative;
      background-color: transparent;
      border: 0px solid transparent; }
      .mci-container header nav a i, .mci-container header nav button i {
        font-size: 30px; }
      .mci-container header nav a span, .mci-container header nav button span {
        background-color: #000;
        border-radius: 200px;
        width: 15px;
        height: 15px;
        position: absolute;
        top: 0;
        right: -5px;
        color: #fff;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center; }
      .mci-container header nav a:hover, .mci-container header nav button:hover {
        color: #000; }
        .mci-container header nav a:hover span, .mci-container header nav button:hover span {
          background-color: #0ca2d3 ; }

.mci-search {
  height: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: -160%;
  z-index: 10; }
  .mci-search.toggle {
    height: auto;
    margin-top: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .mci-search .mci-search-header {
    height: 65px;
    background-color: #0ca2d3 ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; }
    .mci-search .mci-search-header h3 {
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
      color: #fff;
      margin: 0; }
    .mci-search .mci-search-header button {
      background-color: transparent;
      border: 0 solid transparent;
      font-size: 30px;
      color: #fff; }
      .mci-search .mci-search-header button:hover {
        color: #000; }
  .mci-search .mci-search-body {
    padding: 20px; }

main .mci-page-title {
  padding: 20px; }
  main .mci-page-title h4 {
    font-size: 15px;
    font-weight: 400;
    color: #000; }
main .mci-listClaims {
  padding: 0 20px; }
  main .mci-listClaims .mci-listClaims-item {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: relative;
    margin: 15px 0 35px 0; }
    main .mci-listClaims .mci-listClaims-item .item-number {
      position: absolute;
      top: -12px;
      left: 30px;
      background-color: #0ca2d3 ;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 400;
      padding: 3px 15px;
      color: #fff; }
    main .mci-listClaims .mci-listClaims-item .mci-listClaims-content {
      display: flex;
      align-items: stretch; }
      main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content {
        width: 60%;
        flex-shrink: 0;
        padding: 20px; }
        main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content h3 {
          font-size: 16px;
          color: #0ca2d3 ;
          font-weight: 500;
          text-transform: uppercase;
          margin: 20px 0 5px 0; }
        main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content .item-dates {
          display: flex;
          justify-content: space-between; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content .item-dates h6 {
            font-size: 14px;
            font-weight: 500;
            color: #9e9c9c; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content .item-dates p {
            font-size: 13px;
            color: #000;
            margin: 0; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content .item-dates h4 {
            font-size: 14px;
            font-weight: 400;
            color: #9f9f9f; }
        main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content .item-actions {
          display: flex;
          align-items: center; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content .item-actions a {
            font-size: 13px;
            font-weight: 400;
            color: #000;
            margin-right: 15px;
            text-decoration: none; }
            main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .left-content .item-actions a img {
              height: 18px;
              width: auto;
              margin-right: 5px; }
      main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        justify-content: space-between; }
        main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content .payment-item {
          background-color: #0ca2d3 ;
          text-align: center;
          padding: 5px 0;
          color: #fff;
          height: 32%; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content .payment-item p {
            font-size: 14px;
            font-weight: 400;
            margin: 0;
            color: #fff; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content .payment-item p {
            margin: 0; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content .payment-item:first-child {
            border-radius: 0 25px 0 0; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content .payment-item:last-child {
            border-radius: 0 0 25px 0; }
        main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content .payment-status {
          padding: 15px 0;
          text-align: center; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content .payment-status h6 {
            font-size: 14px;
            font-weight: 400;
            margin: 0;
            color: #0ca2d3 ; }
        main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content.members {
          display: flex;
          justify-content: center;
          align-items: flex-end;
          padding: 20px; }
          main .mci-listClaims .mci-listClaims-item .mci-listClaims-content .right-content.members h4 {
            font-size: 14px;
            font-weight: 600;
            color: #000; }
    main .mci-listClaims .mci-listClaims-item .members .mci-listClaims-content .left-content {
      width: 60%; }
    main .mci-listClaims .mci-listClaims-item .members .mci-listClaims-content .right-content {
      width: 40%; }

#mci-login {
  position: relative;
  height: 100vh;
  padding: 25px;
  width: 100%;
  overflow-x: hidden; }
  #mci-login:before {
    content: "";
    width: 100%;
    height: 80%;
    background-color: #0ca2d3 ;
    border-radius: 0 0 68px 68px;
    position: absolute;
    top: 0;
    left: 0%; }
  #mci-login > p {
    font-size: 13px;
    text-decoration: none;
    color: #c6c6c6;
    text-align: center;
    margin-top: 30px;
    margin-top: 20px; }
    #mci-login > p a {
      text-decoration: none;
      color: #0ca2d3 ; }
  #mci-login .mci-loginHeader {
    position: relative; }
    #mci-login .mci-loginHeader a {
      font-size: 30px;
      text-decoration: none;
      color: #fff; }
      #mci-login .mci-loginHeader a:hover {
        color: #000; }
  #mci-login .mci-loginContainer {
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 35px;
    width: 100%;
    margin-top: 15%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: center;
    padding: 25px 15px; }
    #mci-login .mci-loginContainer .mci-logo {
      width: 100px;
      height: auto;
      margin: 0 auto; }
    #mci-login .mci-loginContainer h2 {
      font-size: 22px;
      font-weight: 700;
      color: #000;
      margin-top: 20px;
      margin-bottom: 10px; }
    #mci-login .mci-loginContainer .inputGroup {
      width: 100%;
      margin-top: 20px; }
      #mci-login .mci-loginContainer .inputGroup label {
        width: 100%;
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #000;
        text-align: left;
        margin-left: 10px;
        margin-bottom: 5px; }
      #mci-login .mci-loginContainer .inputGroup input {
        width: 100%;
        border: 1px solid #c6c6c6;
        border-radius: 80px;
        height: 45px;
        text-align: left;
        padding: 0 15px; }
    #mci-login .mci-loginContainer a {
      font-size: 13px;
      text-decoration: none;
      color: #c6c6c6; }
    #mci-login .mci-loginContainer button.submit {
      background-color: #0ca2d3 ;
      width: 100%;
      border-radius: 80px;
      height: 45px;
      color: #fff;
      text-transform: uppercase;
      border: 1px solid #0ca2d3 ; }

.notification_popup {
  position: absolute;
  top: 64px;
  right: 23px;
  user-select: none;
  background: #fff;
  width: 88%;
  max-width: 300px;
  height: 0;
  display: none;
  border-radius: 10px;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.125), -10px -10px 35px rgba(0, 0, 0, 0.125);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .notification_popup:before {
    content: "";
    position: absolute;
    top: -19px;
    right: 15px;
    border: 10px solid;
    border-color: transparent transparent #fff transparent; }
  .notification_popup ul {
    list-style: none;
    margin: 0;
    padding: 20px; }
    .notification_popup ul li {
      padding: 6px 0; }
      .notification_popup ul li .notification-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #c6c6c6;
        padding-bottom: 10px; }
        .notification_popup ul li .notification-item .notif-img {
          flex-shrink: 0;
          display: flex;
          align-items: center;
          justify-content: center; }
          .notification_popup ul li .notification-item .notif-img .circle {
            background-color: #0ca2d3 ;
            border-radius: 100%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center; }
            .notification_popup ul li .notification-item .notif-img .circle i {
              font-size: 20px;
              color: #fff;
              line-height: 50px; }
        .notification_popup ul li .notification-item .notif-content {
          width: calc(100% - 50px);
          flex-shrink: 0; }
          .notification_popup ul li .notification-item .notif-content a {
            font-size: 15px;
            font-weight: 600;
            color: #0ca2d3 ;
            margin-bottom: 5px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            width: 200px;
            text-decoration: none;
            display: block; }
            .notification_popup ul li .notification-item .notif-content a:hover {
              text-decoration: underline; }
          .notification_popup ul li .notification-item .notif-content p {
            font-size: 13px;
            font-weight: 400;
            color: #414141;
            margin: 0; }
      .notification_popup ul li.show_all {
        text-align: center;
        padding-top: 18px; }
        .notification_popup ul li.show_all a {
          font-size: 15px;
          font-weight: 700;
          color: #000; }
          .notification_popup ul li.show_all a:hover {
            color: #0ca2d3 ; }

nav.active .notification_popup {
  display: block;
  height: auto; }

.mci-dashboard .mci-user {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 70px 0; }
  .mci-dashboard .mci-user .mci-avatar {
    border: 9px solid #f49ea1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px; }
    .mci-dashboard .mci-user .mci-avatar span {
      font-size: 25px;
      font-weight: 700;
      color: #0ca2d3 ; }
  .mci-dashboard .mci-user h3 {
    font-size: 22px;
    color: #0ca2d3 ;
    font-weight: 700;
    margin-top: 10px; }
  .mci-dashboard .mci-user p {
    font-size: 13px;
    font-weight: 400;
    color: #000; }
.mci-dashboard .mci-dashNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap; }
  .mci-dashboard .mci-dashNav ul li {
    width: 28%;
    min-height: 110px;
    margin: 15px 0; }
    @media screen and (max-width: 375px) {
      .mci-dashboard .mci-dashNav ul li {
        width: 44%; } }
.mci-dashboard .mci-dashNav ul li a {
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100%;
    min-height: 60px;
    display: block;
    height: 100%;
    color: #1d5cac;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
    .mci-dashboard .mci-dashNav ul li a:hover {
        background-color: #1d5cac;
        color: #fff;
    }
      .mci-dashboard .mci-dashNav ul li a i {
        font-size: 25px; }
        .mci-dashboard .mci-dashNav ul li a i.fa-icon {
          margin-bottom: 8px; }
      .mci-dashboard .mci-dashNav ul li a img {
        width: 32px;
        height: auto;
        margin-bottom: 9px; }
      .mci-dashboard .mci-dashNav ul li a span {
        display: block;
        text-align: center;
        line-height: 18px;
        font-size: 14px; }
.mci-dashboard .mci-planDetails {
  padding: 0 20px; }
  .mci-dashboard .mci-planDetails .text-right {
    text-align: right !important; }
  .mci-dashboard .mci-planDetails table {
    width: 100%; }
    .mci-dashboard .mci-planDetails table thead tr {
      border-bottom: 1px solid #ededed; }
    .mci-dashboard .mci-planDetails table thead th {
      font-size: 14px;
      font-weight: 600;
      color: #000;
      padding: 10px 0; }
    .mci-dashboard .mci-planDetails table tbody tr {
      border-bottom: 1px solid #ededed; }
      .mci-dashboard .mci-planDetails table tbody tr td {
        font-size: 14px;
        font-weight: 600;
        color: #000;
        padding: 10px 0; }
        .mci-dashboard .mci-planDetails table tbody tr td.title {
          font-weight: 400; }
      .mci-dashboard .mci-planDetails table tbody tr.total {
        background-color: #fce6e6; }
        .mci-dashboard .mci-planDetails table tbody tr.total td {
          color: #0ca2d3 ;
          padding: 10px; }
          .mci-dashboard .mci-planDetails table tbody tr.total td.title {
            font-weight: 600; }

@media screen and (max-width: 575px) {
  .mci-confirmation-modal .modal-dialog {
    margin: 20px; } }
.mci-confirmation-modal .modal-dialog .modal-content {
  border-radius: 20px;
  border: 0px solid transparent; }
  .mci-confirmation-modal .modal-dialog .modal-content .mci-confirmation {
    text-align: center; }
    .mci-confirmation-modal .modal-dialog .modal-content .mci-confirmation i {
      font-size: 100px;
      color: #0ca2d3 ;
      margin-bottom: 10px;
      line-height: 105px; }
    .mci-confirmation-modal .modal-dialog .modal-content .mci-confirmation h2 {
      font-weight: 700;
      color: #0ca2d3 ; }
    .mci-confirmation-modal .modal-dialog .modal-content .mci-confirmation p {
      font-size: 15px;
      font-weight: 500;
      color: #000;
      margin-top: 15px; }
    .mci-confirmation-modal .modal-dialog .modal-content .mci-confirmation button {
      background-color: #0ca2d3 ;
      color: #fff;
      border-radius: 120px;
      border: 1px solid #0ca2d3 ;
      padding: 4px 30px; }

.mci-providers {
  padding: 0 20px; }
  .mci-providers .mci-providers-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-left: 6px solid #0ca2d3 ;
    margin-bottom: 25px; }
    .mci-providers .mci-providers-item .mci-providers-left h2 {
      font-size: 17px;
      color: #000;
      font-weight: 600; }
    .mci-providers .mci-providers-item .mci-providers-left p {
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      margin-bottom: 5px;
      line-height: 23px; }
      .mci-providers .mci-providers-item .mci-providers-left p i {
        font-size: 21px;
        color: #0ca2d3 ;
        margin-right: 8px; }
      .mci-providers .mci-providers-item .mci-providers-left p.address {
        color: #949494; }
      .mci-providers .mci-providers-item .mci-providers-left p.phone {
        color: #000;
        font-weight: 300; }
    .mci-providers .mci-providers-item .mci-providers-right h3 {
      font-size: 16px;
      font-weight: 600;
      color: #0ca2d3 ; }

.mci-profile {
  background-color: #0ca2d3 ;
  background-image: url(../images/bg-profile.png);
  background-size: 100%;
  min-height: 100vh; }
  .mci-profile .mci-profileHeader {
    height: 65px;
    padding: 0 20px;
    display: flex;
    align-items: center; }
    .mci-profile .mci-profileHeader a {
      font-size: 30px;
      color: #fff;
      text-decoration: none; }
  .mci-profile .mci-profileContainer {
    margin-top: 100px;
    background-color: #fff;
    width: 100%;
    border-radius: 20px 20px 0 0;
    height: 100%;
    padding-top: 20px; }
    .mci-profile .mci-profileContainer h1 {
      font-size: 40px;
      font-weight: 800;
      color: #0ca2d3 ;
      text-align: center;
      margin: 0 0 20px 0; }
    .mci-profile .mci-profileContainer .mci-user-infos h3 {
      font-size: 18px;
      font-weight: 600;
      color: #0ca2d3 ;
      text-align: center; }
    .mci-profile .mci-profileContainer .mci-user-infos p {
      font-size: 14px;
      font-weight: 400;
      color: #4e4e4e;
      margin-bottom: 5px;
      text-align: center; }
      .mci-profile .mci-profileContainer .mci-user-infos p.email {
        color: #000; }
      .mci-profile .mci-profileContainer .mci-user-infos p.country {
        color: #000;
        font-size: 15px;
        font-weight: 500; }
    .mci-profile .mci-profileContainer .mci-user-password {
      margin-top: 30px; }
      .mci-profile .mci-profileContainer .mci-user-password .mci-userPassword-header {
        background-color: #0ca2d3 ;
        padding: 10px; }
        .mci-profile .mci-profileContainer .mci-user-password .mci-userPassword-header h4 {
          font-size: 16px;
          color: #fff;
          margin: 0; }

.mci-uploads {
  padding: 20px; }
  .mci-uploads .mci-uploads-card {
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px dotted #a3a3a3;
    border-radius: 5px; }
    .mci-uploads .mci-uploads-card .mci-uploads-icon i {
      font-size: 75px;
      color: #0ca2d3 ;
      line-height: 65px; }
    .mci-uploads .mci-uploads-card .btn-upload {
      background-color: #ece9e9;
      color: #0ca2d3 ;
      border-radius: 120px;
      border: 1px solid #ece9e9;
      padding: 6px 30px;
      cursor: pointer; }
    .mci-uploads .mci-uploads-card p {
      margin-top: 10px;
      margin-bottom: 20px;
      font-size: 12px;
      color: #a3a3a3; }
      .mci-uploads .mci-uploads-card p#fileName {
        color: #0ca2d3 ;
        font-size: 14px; }
    .mci-uploads .mci-uploads-card input {
      height: 100%;
      width: 100%;
      background-color: #e2e2e2;
      border: none;
      outline: none;
      padding: 12px 20px;
      border-radius: 4px;
      position: absolute;
      top: 0;
      left: 0; }
  .mci-uploads .mci-uploads-submit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px; }
    .mci-uploads .mci-uploads-submit button {
      background-color: #0ca2d3 ;
      color: #fff;
      border-radius: 120px;
      border: 1px solid #0ca2d3 ;
      padding: 4px 30px; }
  .mci-uploads .hr {
    width: 100%;
    height: 1px;
    border: 1px solid #dddddd;
    margin: 20px 0; }
  .mci-uploads .mci-uploads-files {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap; }
    .mci-uploads .mci-uploads-files .mci-uploadsFile-item {
      width: 40%;
      flex-shrink: 0;
      text-align: center;
      background-color: #fff;
      border-radius: 15px;
      padding: 15px;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
      margin-bottom: 25px; }
      .mci-uploads .mci-uploads-files .mci-uploadsFile-item h3 {
        font-size: 14px;
        font-weight: 500;
        color: #000;
        margin-bottom: 0px; }
      .mci-uploads .mci-uploads-files .mci-uploadsFile-item img {
        width: 50px;
        height: auto;
        margin: 20px 0; }
      .mci-uploads .mci-uploads-files .mci-uploadsFile-item button {
        background-color: #0ca2d3 ;
        color: #fff;
        border-radius: 120px;
        border: 1px solid #0ca2d3 ;
        padding: 4px 30px; }

/*# sourceMappingURL=mci.css.map */
