@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css");
.font-black {
  color: black !important;
}

.font-white {
  color: white !important;
}

.font-blue {
  color: #40BADC;
}

.font-altgreen {
  color: #00A425;
}

.font-lightgreen {
  color: #00ca2e;
}

.font-yellow {
  color: #F7D117;
}

.font-orange {
  color: #F9AD90;
}

.font-grey {
  color: #E6E6E6;
}

.font-darkergrey {
  color: #B2B2B2;
}

.font-altgrey {
  color: #9B9B9B;
}

.bg-black {
  background-color: black;
}

.bg-white {
  background-color: white;
}

.bg-grey {
  background-color: #E6E6E6;
}

.bg-lightgrey {
  background-color: #F5F5F5;
}

.bg-lightblue {
  background-color: #CCEBF1 !important;
}

.bg-blue {
  background-color: #40BADC;
}

.bg-babyblue {
  background-color: #AADDFF;
}

.bg-yellow {
  background-color: #F7D117;
}

.bg-orange {
  background-color: #F9AD90;
}

.bg-green {
  background-color: rgba(0, 130, 74, 0.6);
}

.bg-lightgreen {
  background-color: #00ca2e;
}

.bg-poor {
  background-color: #E58170;
}

.bg-acceptable {
  background-color: #F7D117;
}

.bg-good {
  background-color: #FEF6D0;
}

.bg-verygood {
  background-color: #CCEDD3;
}

.bg-excellent {
  background-color: #00A425;
}

td.bg-poor {
  background-color: #E58170;
}

td.bg-acceptable {
  background-color: #F7D117;
}

td.bg-good {
  background-color: #FEF6D0;
}

td.bg-verygood {
  background-color: #CCEDD3;
}

td.bg-excellent {
  background-color: #00A425;
}

td.bg-pink {
  background-color: #FFA8B9;
}

.bg-yellow-half {
  background: linear-gradient(180deg, #F7D117 35rem, #FFF 0%);
}
@media only screen and (max-width: 767px) {
  .bg-yellow-half {
    background: linear-gradient(180deg, #F7D117 45vh, #FFF 0%);
  }
}

.scrollbar-grey::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.scrollbar-grey::-webkit-scrollbar-track {
  background: #F5F5F5;
  border-radius: 10px;
}

.scrollbar-grey::-webkit-scrollbar-thumb {
  background: #D6D6D6;
  border-radius: 10px;
}

.scrollbar-grey::-webkit-scrollbar-thumb:hover {
  background: #B2B2B2;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.white-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.white-link:hover {
  color: black;
  text-decoration: none;
}

.black-link {
  color: black;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
.black-link:hover {
  color: #40BADC;
  text-decoration: none;
}

.blue-link {
  color: #40BADC;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
.blue-link:hover {
  color: #279EBA;
  text-decoration: none;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.btn-white {
  background: white;
  color: black;
  box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.075);
  transition: all 0.1s ease-in-out;
}
.btn-white:hover {
  background: #F5F5F5;
  color: black;
}

.btn-black {
  background: black;
  color: white;
  transition: all 0.1s ease-in-out;
}
.btn-black:hover {
  opacity: 0.7;
  background: black;
  color: white;
}

.btn-grey {
  background: #E6E6E6;
  color: black;
  transition: all 0.1s ease-in-out;
}
.btn-grey:hover {
  background: #B2B2B2;
  color: black;
}

.btn-darkgrey {
  background: #D6D6D6;
  color: white;
  transition: all 0.1s ease-in-out;
}
.btn-darkgrey:hover {
  opacity: 0.7;
  background: #E6E6E6;
  color: white;
}

.btn-blue {
  background: #40BADC;
  color: white;
  transition: all 0.1s ease-in-out;
}
.btn-blue:hover {
  background: #279EBA;
  color: white;
}

.btn-faintblue {
  background: rgba(140, 204, 217, 0.5);
  color: black;
  box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.075);
  transition: all 0.1s ease-in-out;
}
.btn-faintblue:hover {
  background: #CCEBF1;
  color: black;
}

.btn-green {
  background: #00824A;
  color: white;
  transition: all 0.1s ease-in-out;
}
.btn-green:hover {
  background: #008f51;
  color: white;
}

.btn-black-outline {
  background: white;
  box-shadow: inset 0px 0px 0px 4px black;
  color: black;
  transition: all 0.1s ease-in-out;
}
.btn-black-outline:hover {
  background: black;
  color: white;
}

.btn-group .btn {
  border-radius: 50px;
}

.btn-scoring {
  color: black;
  border: 2px solid black;
}
.btn-scoring:hover {
  background-color: #E6E6E6;
}

.btn-check:active + .btn-scoring,
.btn-check:checked + .btn-scoring,
.btn-scoring.active,
.btn-scoring.dropdown-toggle.show,
.btn-scoring:active {
  color: black;
  background-color: white;
}

.badge-lightblue {
  color: black;
  background-color: #CCEBF1;
  border: 1px solid #40BADC;
  padding: 0.5rem 4rem;
  border-radius: 50px;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #D6D6D6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(214, 214, 214, 0.5);
}

.form-select:focus {
  border-color: #D6D6D6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(214, 214, 214, 0.5);
}

.btn-blue.focus, .btn-blue:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(64, 186, 220, 0.5);
}

.btn.focus, .btn:focus, .btn-black.focus, .btn-black:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(112, 112, 112, 0.2509803922);
}

.btn-danger.focus, .btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

[type=button], [type=reset], [type=submit], button, ::-webkit-file-upload-button {
  -webkit-appearance: none !important;
}

.form-check-input:checked {
  background-color: #40BADC;
  border-color: #279EBA;
}

.form-check-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(204, 235, 241, 0.5);
}

.no-border {
  border: 0px solid #E6E6E6 !important;
}

.black-border {
  border: 2px solid black !important;
}

.lightgrey-border {
  border: 1px solid #E6E6E6 !important;
}

.border-dark {
  border-color: black !important;
}

.border-top-dark {
  border-width: 5px 0 0 0;
  border-color: black;
  border-style: solid;
}

.border-left-dark {
  border-width: 0 0 0 5px;
  border-color: black;
  border-style: solid;
}

.border-all-dark {
  border: 5px solid black !important;
}

.border-top-yellow {
  border-width: 5px 0 0 0;
  border-color: #F7D117;
  border-style: solid;
}

.border-bottom-yellow {
  border-bottom: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: #F7D117;
  border-style: solid;
}

.br-10 {
  border-radius: 10px;
}

.br-20 {
  border-radius: 20px;
}

.br-top-10 {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.br-top-20 {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.br-bottom-10 {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.box-shadow {
  box-shadow: 0 5px 10px 0px rgba(9, 9, 16, 0.2);
}

.min-height-100 {
  min-height: 100vh;
}

.cursor-pointer {
  cursor: pointer;
}

.no-click {
  pointer-events: none;
}

.bolded-border,
.form-control,
.form-select,
.select2-container--default .select2-selection--multiple {
  border: 4px solid black !important;
}

.alert-secondary {
  background: #F5F5F5;
}

.alert-success-custom {
  background: rgba(0, 164, 37, 0.1019607843);
  color: #00ca2e;
  border: 1px solid #00ca2e;
}

.alert-danger-custom {
  background: rgba(220, 53, 70, 0.1019607843);
  color: #dc3545;
  border: 1px solid #dc3545;
}

.custom-tabs a.nav-link {
  font-size: 12px;
  margin: 0.5rem;
  background: #F5F5F5;
  color: black;
  border-radius: 10px;
}
.custom-tabs a.nav-link.active {
  background: white;
  color: black;
  box-shadow: 0 5px 10px 0px rgba(9, 9, 16, 0.2);
}

.breadcrumb {
  color: black !important;
  margin: 0;
}
.breadcrumb .breadcrumb-item.active {
  color: black !important;
}
.breadcrumb .breadcrumb-item::before {
  color: black !important;
}

.swal-modal {
  border-radius: 20px;
  padding: 1.5rem 0;
}

.swal-title {
  color: black;
  font-weight: 400;
}

.swal-text {
  color: black;
  text-align: center;
}

.swal-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.swal-button {
  font-size: 16px;
  font-weight: 500;
}

.swal-button--cancel {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

::-moz-placeholder {
  color: lightgrey;
  opacity: 1;
  font-style: italic;
  font-size: 12px;
}

::placeholder {
  color: lightgrey;
  opacity: 1;
  font-style: italic;
  font-size: 12px;
}

:-ms-input-placeholder {
  color: lightgrey;
  font-style: italic;
  font-size: 12px;
}

::-ms-input-placeholder {
  color: lightgrey;
  font-style: italic;
  font-size: 12px;
}

/*Input date opens on click*/
.input-date-container input {
  box-sizing: border-box;
  position: relative;
  width: 100%;
}
.input-date-container input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  background: transparent;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
}

.max-content {
  min-width: -moz-max-content;
  min-width: max-content;
}

.font-sm {
  font-size: calc(100% + 1vw);
  font-weight: 600;
}

.font-md {
  font-size: calc(100% + 1.5vw);
  font-weight: 600;
}

.font-lg {
  font-size: calc(100% + 2vw);
  font-weight: 600;
}

.nowrap {
  white-space: nowrap;
}

img.icons-15px {
  width: 15px;
  height: 15px;
}
img.icons-20px {
  width: 20px;
  height: 20px;
}
img.icons-25px {
  width: 25px;
  height: 25px;
}
img.icons-30px {
  width: 30px;
  height: 30px;
}
img.icons-40px {
  width: 40px;
  height: 40px;
}

.icon-black {
  filter: invert(100%);
}

.title {
  font-weight: bolder;
}

.underline-title {
  border-bottom: 4px solid black;
  display: inline-block;
  margin-bottom: 1rem;
}

.underline-yellow {
  border-bottom: 4px solid #F7D117;
  display: inline-block;
}

.label {
  font-weight: bold;
  margin: 0px;
  margin-bottom: 5px;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fw-md-bold {
  font-weight: 600;
}

.navbar-toggler {
  color: black !important;
  border: 0;
}

.navbarx {
  background: #fff;
  border: none;
  border-radius: 0;
  margin-bottom: 40px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
@media print {
  .navbarx {
    display: none;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .navbarx {
    display: none;
  }
}
.navbarx li.nav-item.active {
  background: #45CFD8;
}
.navbarx li.nav-item.active.active a.nav-link {
  color: white;
}
.navbarx li.nav-item.active.active a.nav-link > img {
  filter: invert(100%);
}
.navbarx a.dropdown-item.active, .navbarx a.dropdown-item:active {
  color: white;
  background: #45CFD8;
  text-decoration: none;
}

.wrapper {
  margin-top: 56px;
  width: 100%;
  overflow-x: hidden;
}
@media print {
  .wrapper {
    margin-top: 0;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .wrapper {
    margin-top: 0;
  }
}

#sidebar {
  min-width: 150px;
  max-width: 150px;
  background: black;
  color: #fff;
  transition: all 0.3s;
}
@media print {
  #sidebar {
    display: none;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  #sidebar {
    display: none;
  }
}
#sidebar.active {
  margin-left: -150px;
}
#sidebar.logo {
  display: block;
  width: 300px;
  height: auto;
  margin: 0 auto;
}
#sidebar.logo span {
  display: block;
}
#sidebar ul.components {
  padding: 0;
}
#sidebar ul li {
  font-size: 12px;
  transition: all 0.3s ease;
}
#sidebar ul li > ul {
  margin-left: 10px;
}
#sidebar ul li > ul li {
  font-size: 10px;
}
#sidebar ul li a {
  padding: 16px 30px;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  text-align: center;
}
#sidebar ul li a img {
  width: 30px;
  height: auto;
  margin-bottom: 5px;
}
#sidebar ul li a p {
  margin-bottom: 0;
}
#sidebar ul li a:hover {
  color: white;
}
#sidebar ul li.active {
  color: white !important;
  background: transparent;
  border-left: 5px solid #F7D117;
}
#sidebar ul li.active img {
  filter: invert(10%) sepia(12%) saturate(6865%) hue-rotate(347deg) brightness(103%) contrast(94%);
}
#sidebar ul li.active > a {
  margin-left: -5px;
}
#sidebar ul li:hover {
  transform: translate3d(5px, 0, 0);
}

@media (max-width: 991.98px) {
  #sidebar {
    margin-left: -150px;
  }
  #sidebar.active {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  #sidebarCollapse span {
    display: none;
  }
}
#contentx {
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
}
@media print {
  #contentx {
    background: white !important;
  }
}
@media print {
  #contentx > .container {
    max-width: 100% !important;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  #contentx > .container {
    display: none;
  }
}

.b-right-grey {
  border-right: 1px solid #E6E6E6;
}

.chat-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.chat-container .chat-section p {
  margin: 0;
}
.chat-container .chat-section #chat-window {
  overflow-y: scroll;
  height: 70vh;
  border-bottom: 1px solid #E6E6E6;
}
.chat-container .chat-room {
  height: 70vh;
  overflow-y: scroll;
}
.chat-container .chat-room .row > .col-md-12 {
  border-bottom: 1px solid #E6E6E6;
}
.chat-container .chat-room a.chat-item {
  width: 100% !important;
  height: 100% !important;
  color: black;
  transition: all 0.05s ease-in-out;
}
.chat-container .chat-room a.chat-item:hover {
  background: black;
  color: white;
}
.chat-container .chat-room a.chat-item._active {
  background: black;
  color: white;
}
.chat-container .chat-room a.chat-item._active .badge {
  background: white !important;
  color: black !important;
}
.chat-container .chat-room a.chat-item .excerpt {
  display: block;
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-container .chat-room a.chat-item .chat-dp {
  width: 50px;
  margin-right: 1rem;
  margin-left: 1rem;
}
.chat-container .chat-room a.chat-item .chat-dp.no-pfp {
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background-color: #F7D117;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-container .chat-room a.chat-item .chat-dp.no-pfp .initials {
  font-size: 12px;
  font-weight: bolder;
  color: white;
}

.multi-dp-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}
.multi-dp-container[img-for=chat-room] img {
  width: 30px;
}
.multi-dp-container[img-for=chat-window] img {
  width: 50px;
  height: 50px;
}
.multi-dp-container img {
  border: 2px solid white;
}
.multi-dp-container :not(:nth-child(1)) {
  margin-right: -10%;
}

.chat-dp-info {
  width: 50px;
  height: 50px;
}

.chat-cont {
  width: 50px;
  margin-right: 8px;
}

.chat-send-block {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.chat-receive-block {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
}

.chat-send {
  display: inline-block;
  border-radius: 20px 20px 0px 20px;
  padding: 1rem;
  background: #fff0ac;
  color: black;
}

.chat-receive {
  display: inline-block;
  border-radius: 20px 20px 20px 0px;
  padding: 1rem;
  background: #F5F5F5;
  color: black;
}
.chat-receive .recepient {
  font-weight: bold;
}

.chat-time {
  margin-top: 0.5rem;
  display: inline-block;
  font-size: 14px;
  color: #6c757d !important;
}

.app__messenger {
  left: 0px !important;
  width: 100% !important;
  z-index: 1 !important;
}

::-moz-selection {
  color: black;
  background: #F7D117;
}

::-webkit-selection {
  color: black;
  background: #F7D117;
}

::selection {
  color: black;
  background: #F7D117;
}

html {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100%;
  color: black;
}

@media print {
  .print-btn {
    display: none;
  }
  body {
    margin: 0;
    display: table;
    table-layout: fixed;
  }
}
@page {
  size: auto; /* auto is the initial value */
  margin: 5mm 5mm 5mm 5mm; /* this affects the margin in the printer settings */
}
@media (min-width: 992px) {
  #login-left-col #heading-row {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}
@media (min-width: 992px) {
  #login-left-col #quick-login-row .swiper-wrapper {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}
#login-left-col #quick-login-row .card .card-img-top {
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  #login-left-col #quick-login-row .card-body {
    padding: 0.5rem 1rem;
  }
}
#login-left-col #quick-login-row .add-account-icon {
  width: 3rem;
}
#login-left-col #quick-login-row .tooltip-text {
  position: absolute;
  right: 35px;
  top: 1.2rem;
  visibility: hidden;
  opacity: 0;
  background: black;
  padding: 0rem 0.6rem;
  border-radius: 5px;
  font-size: 0.875em;
  transition: opacity 0.2s, visibility 0.2s;
}
#login-left-col #quick-login-row .remove-profile {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
}
#login-left-col #quick-login-row .remove-profile img {
  transition: transform 0.2s;
}
#login-left-col #quick-login-row .remove-profile .tooltip-text {
  transition: all 0.3s;
}
#login-left-col #quick-login-row .remove-profile:hover img {
  transform: scale(1.2);
}
#login-left-col #quick-login-row .remove-profile:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
#login-left-col #quick-login-row .remove-profile:focus {
  background-color: #F5F5F5;
}

.toggle-pw {
  position: absolute;
  width: 1.5rem;
  height: 100%;
  right: 5%;
}

.eye-icon {
  position: absolute;
  top: 35%;
  background-image: url("../img/icons/ic_registration_eye.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.eye-icon-show {
  position: absolute;
  top: 30%;
  background-image: url("../img/icons/ic_registration_eyeShow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

#register-form .phone-input-group span {
  padding: 0.75rem 0.75rem;
  border: 4px solid black;
  border-right: none;
}
#register-form .phone-input-group input {
  padding: 0.75rem 0.75rem;
  border-left: none;
}

.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("../img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../img/flags@2x.png");
  }
}
.tabbed-bordered-top ul > li > a {
  padding: 16px 0px;
  border-top: 6px solid white;
}
@media only screen and (max-width: 991px) {
  .tabbed-bordered-top ul > li > a {
    text-align: left;
  }
}
.tabbed-bordered-top ul > li > a.active {
  border-top: 6px solid black;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .tabbed-bordered-top ul > li > a.active {
    border-top: 0px solid black !important;
    border-left: 6px solid black;
    padding-left: 20px;
  }
}
@media print {
  .tabbed-bordered-top {
    display: none;
  }
}

.banner-cover {
  position: relative;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
}
@media only screen and (max-width: 767px) {
  .banner-cover {
    height: 50vh;
  }
}
.banner-cover img {
  width: 200px;
}
.banner-cover a.upload-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 12px;
}

.preview-area {
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leftmenu {
  border-right: 1px solid lightgrey;
}
@media only screen and (max-width: 767px) {
  .leftmenu {
    border-right: 0px solid lightgrey !important;
  }
}
.leftmenu .leftmenu-text {
  background: #E6E6E6;
  font-size: 12px;
  border-radius: 10px 0px 0px 10px;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
}

.underline-effect {
  position: relative;
  color: #40BADC;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
.underline-effect:hover {
  color: #279EBA;
  text-decoration: none;
}
.underline-effect::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  border-bottom: 2px solid #279EBA;
  left: 0;
  transition: all ease-in-out 0.2s;
}
.underline-effect:hover::after {
  width: 100%;
}

td.details-control > .more:hover {
  cursor: pointer !important;
}

.img-container {
  position: relative;
}
.img-container input#upload_img {
  display: none;
}
.img-container i.upload-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  padding: 0.8rem;
  border: white solid 4px;
  border-radius: 50px;
  background-color: black;
  cursor: pointer;
  z-index: 1;
}
.img-container i.upload-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 767px) {
  .img-container i.upload-btn {
    right: 55px;
  }
}

@media print {
  .quicklinks {
    display: none;
  }
}
.quicklinks ul {
  display: flex;
  justify-content: space-evenly;
}
@media only screen and (max-width: 767px) {
  .quicklinks ul {
    flex-direction: column;
  }
}
.quicklinks ul > li {
  margin-bottom: 1rem;
}
.quicklinks ul > li.active a {
  filter: invert(100%);
  background: white;
  font-weight: 600;
  box-shadow: 0 5px 10px 0px rgba(9, 9, 16, 0.2);
}
.quicklinks ul > li a {
  background: white;
  padding: 1.6rem 3.2rem;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .quicklinks ul > li a {
    padding: 1.6rem 2rem;
  }
}
.quicklinks ul > li a:hover {
  box-shadow: 0 5px 10px 0px rgba(9, 9, 16, 0.2);
}

.goal-box {
  border-width: 4px 1px 1px 1px;
  border-color: black;
  border-style: solid;
  padding: 1rem;
  font-size: 14px;
  min-height: 90%;
}
@media only screen and (max-width: 767px) {
  .goal-box {
    min-height: 0;
  }
}

.gap-assessment-sidebar .left-side {
  border-right: 1px lightgrey solid;
}
@media only screen and (max-width: 767px) {
  .gap-assessment-sidebar .left-side {
    border-right: 0px solid lightgrey !important;
  }
}
.gap-assessment-sidebar .left-side ul li {
  margin-bottom: 1rem;
  text-align: right;
  padding-right: 20px;
}
.gap-assessment-sidebar .left-side ul li.active {
  border-right: 6px solid black;
}
.gap-assessment-sidebar .left-side ul li.active a {
  color: black !important;
  font-weight: 600;
}
.gap-assessment-sidebar .left-side ul li a {
  color: grey;
  font-size: 12px;
  white-space: nowrap;
}
.gap-assessment-sidebar .right-side .guidelines-table.table > :not(caption) > * > * {
  border-bottom-width: 2px !important;
}
.gap-assessment-sidebar .right-side .guidelines-table.table-bordered > :not(caption) > * > * {
  border-width: 0 2px;
}
@media only screen and (max-width: 460px) {
  .gap-assessment-sidebar .right-side table.guidelines-table {
    width: 100%;
    border: none;
    backface-visibility: hidden;
  }
  .gap-assessment-sidebar .right-side table.guidelines-table thead,
  .gap-assessment-sidebar .right-side table.guidelines-table tbody {
    vertical-align: top;
  }
  .gap-assessment-sidebar .right-side table.guidelines-table thead,
  .gap-assessment-sidebar .right-side table.guidelines-table tbody,
  .gap-assessment-sidebar .right-side table.guidelines-table tr {
    display: table-cell;
  }
  .gap-assessment-sidebar .right-side table.guidelines-table thead {
    width: 100px;
  }
  .gap-assessment-sidebar .right-side table.guidelines-table tbody {
    width: 100%;
  }
  .gap-assessment-sidebar .right-side table.guidelines-table th,
  .gap-assessment-sidebar .right-side table.guidelines-table td {
    display: block;
    border-bottom: 1px solid black;
  }
  .gap-assessment-sidebar .right-side table.guidelines-table th:last-child,
  .gap-assessment-sidebar .right-side table.guidelines-table td:last-child {
    border-bottom: 0;
  }
  .gap-assessment-sidebar .right-side table.guidelines-table th {
    width: 100px;
  }
  .gap-assessment-sidebar .right-side table.guidelines-table td {
    width: 200px;
  }
}
.gap-assessment-sidebar .right-side input[type=radio].bg-poor:checked + label {
  background-color: #E58170;
  box-shadow: 0 0 0 0.2rem rgba(112, 112, 112, 0.2509803922);
}
.gap-assessment-sidebar .right-side input[type=radio].bg-acceptable:checked + label {
  background-color: #F7D117;
  box-shadow: 0 0 0 0.2rem rgba(112, 112, 112, 0.2509803922);
}
.gap-assessment-sidebar .right-side input[type=radio].bg-good:checked + label {
  background-color: #FEF6D0;
  box-shadow: 0 0 0 0.2rem rgba(112, 112, 112, 0.2509803922);
}
.gap-assessment-sidebar .right-side input[type=radio].bg-verygood:checked + label {
  background-color: #CCEDD3;
  box-shadow: 0 0 0 0.2rem rgba(112, 112, 112, 0.2509803922);
}
.gap-assessment-sidebar .right-side input[type=radio].bg-excellent:checked + label {
  background-color: #00A425;
  box-shadow: 0 0 0 0.2rem rgba(112, 112, 112, 0.2509803922);
}
.gap-assessment-sidebar .right-side input[type=radio],
.gap-assessment-sidebar .right-side input[type=radio].active {
  box-shadow: 0 0 0 0.2rem rgba(112, 112, 112, 0.2509803922);
}

section.offset[id]::before {
  content: "";
  display: block;
  height: 96px;
  margin-top: -96px;
  visibility: hidden;
}

.gap-summary-table,
.course-tracker-summary-table {
  margin-bottom: 0;
  font-size: 14px;
}
.gap-summary-table thead th,
.course-tracker-summary-table thead th {
  vertical-align: middle;
}
.gap-summary-table tbody td.cap-area,
.course-tracker-summary-table tbody td.cap-area {
  text-align: left;
}
.gap-summary-table tbody td, .gap-summary-table tbody th,
.course-tracker-summary-table tbody td,
.course-tracker-summary-table tbody th {
  vertical-align: middle;
}
.gap-summary-table tbody td,
.course-tracker-summary-table tbody td {
  text-align: center;
}

.heatmap-container {
  overflow-x: scroll;
}

.scroll-zone {
  width: 60rem;
}

.heatmap-l1 {
  position: sticky;
  left: 0;
  background: white;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 14rem;
  max-width: 14rem;
  height: 4.2rem;
  padding: 0 1rem;
}
.heatmap-l1 h6 {
  font-size: 14px;
}

.heatmap-l2 {
  width: 46rem;
  padding: 0 1rem;
}

.card-size-md {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: black;
  font-size: 12px;
  width: 100%;
  height: 3rem;
  border: solid white 3.5px;
  padding: 5px 10px;
}
.card-size-md span {
  font-weight: 600;
}

.course-tracker-summary-section section {
  height: 100%;
}

@media only screen and (max-width: 767px) {
  section.chart-section {
    height: auto;
    overflow-x: scroll;
  }
  .chart-wrapper {
    position: relative;
    width: 800px;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .course-tracker-summary-table thead {
    white-space: nowrap;
  }
}

.grid-y-axis-container {
  width: 60px;
  min-width: 60px;
}

.grid-y-axis-title {
  position: relative;
  top: 200px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.value_impact {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #B2B2B2;
  font-size: 14px;
}

.grid-x-axis-title {
  text-align: center;
}

.urgency {
  width: 350px;
  text-align: center;
}

.overflow-x-scroll {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
}

.whole-grid {
  position: relative;
  width: 1110px;
  height: auto;
}

.grid-container-3x3 {
  display: grid;
  grid-template-columns: 350px 350px 350px;
  grid-template-rows: 200px 200px 200px;
  position: relative;
  top: 0;
  left: 0;
  width: 1050px;
  height: 600px;
  overflow-y: hidden;
}

.grid-item {
  position: relative;
  border: 1px solid #D6D6D6;
}

.card-size {
  display: inline-block;
  width: 240px;
  height: 40px;
  color: black;
  font-size: 12px;
  border-radius: 50rem;
  margin: 5px;
  padding: 0 15px;
  cursor: move;
  touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.card-size span {
  display: inline-flex;
  align-items: center;
  height: inherit;
  line-height: 1.3;
}

.drop-target {
  background-color: #F5F5F5;
}

.drag-drop {
  transform: translate(0px, 0px);
  transition: opacity 0.3s;
}

.drag-drop.can-drop {
  opacity: 0.7;
}

#dev-milestones-form .table-responsive {
  padding-top: 1.5rem;
}
#dev-milestones-form .switch-toggle input.checkbox {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}
#dev-milestones-form .switch-toggle label {
  cursor: pointer;
  text-indent: -9999px;
  width: 70px;
  max-width: 70px;
  height: 30px;
  background: #FFA8B9;
  display: block;
  border-radius: 100px;
  position: relative;
}
#dev-milestones-form .switch-toggle label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}
#dev-milestones-form .switch-toggle input.checkbox:checked + label,
#dev-milestones-form .switch-toggle input.checkbox:checked + input.checkbox + label {
  background: #CCEDD3;
}
#dev-milestones-form .switch-toggle input.checkbox + label:before,
#dev-milestones-form .switch-toggle input.checkbox + input.checkbox + label:before {
  content: "No";
  position: absolute;
  top: 5px;
  left: 35px;
  width: 26px;
  height: 26px;
  border-radius: 90px;
  transition: 0.3s;
  text-indent: 0;
  color: black;
}
#dev-milestones-form .switch-toggle input.checkbox:checked + label:before,
#dev-milestones-form .switch-toggle input.checkbox:checked + input.checkbox + label:before {
  content: "Yes";
  position: absolute;
  top: 5px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-radius: 90px;
  transition: 0.3s;
  text-indent: 0;
  color: black;
}
#dev-milestones-form .switch-toggle input.checkbox:checked + label:after,
#dev-milestones-form .switch-toggle input:checked + input + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.dev-milestones-table thead.col-headings th {
  background-color: #D6D6D6;
  border-bottom: none;
}
.dev-milestones-table tr.bg-grey {
  background-color: #E6E6E6;
}
.dev-milestones-table th,
.dev-milestones-table td {
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .feedback-section .add-session-btn {
    width: 100%;
  }
}
.feedback-section input[type=radio]:checked + label {
  background-color: rgba(140, 204, 217, 0.5);
}
.feedback-section .toggle-remarks {
  display: inline;
  cursor: pointer;
}
.feedback-section .rating .form-check {
  display: flex;
  justify-content: centre;
  align-items: centre;
  padding-left: 0;
}
.feedback-section .rating .form-check-inline {
  margin-right: 0;
}
.feedback-section .rating label {
  padding: 0.75rem;
  font-weight: 700;
}
.feedback-section .rating .form-check-inline,
.feedback-section .rating label {
  width: 100%;
}
.feedback-section .remarks-section {
  display: none;
}

.feedback-view label.btn {
  pointer-events: none;
}
.feedback-view label.disabled {
  background-color: #eaeaea;
  color: #5d5d5d;
}

#assign-coach-form .coaches-list {
  display: block;
  height: 280px;
  padding: 0.5rem 0.8rem;
  overflow-y: scroll;
}

.yellow-bg-class {
  background-color: #ffefa1;
}

#priorities-table {
  vertical-align: middle;
}
#priorities-table tbody tr {
  height: 58px;
}

#targets-table tbody tr {
  height: 58px;
}

.border-left-grey {
  border-left: 1px solid #E6E6E6;
}
@media only screen and (max-width: 767px) {
  .border-left-grey {
    border-left: 0px solid #E6E6E6 !important;
    border-top: 1px solid #E6E6E6;
  }
}

.circle-img {
  display: inline-block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.circle {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.circle > img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-show {
  display: none;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .mobile-show {
    display: block;
  }
}

.mobile-hide {
  display: block;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .mobile-hide {
    display: none;
  }
}

.app-header h4 {
  width: -moz-max-content;
  width: max-content;
  padding: 0.75rem;
  margin-bottom: 0;
  background: white;
  border-top: solid 4px black;
}
.app-header p {
  padding: 0.75rem;
  color: white;
  background: black;
  width: -moz-max-content;
  width: max-content;
}

.app-links img {
  height: 100%;
  width: 100%;
  position: relative;
  vertical-align: middle;
}

/*BUSINESS GROWTH MODEL*/
.outer-vert-label {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: center;
  width: 70px;
}
.outer-vert-label .inner-vert-label {
  transform: rotate(-90deg);
  flex-wrap: nowrap;
  min-width: 554px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .outer-vert-label {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .outer-hori-label {
    display: none;
  }
}

.growth-model-box .sq {
  aspect-ratio: 1/1;
  border: 1px solid #F5F5F5;
  padding: 1rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .growth-model-box .sq .scrollable-area {
    overflow-y: scroll;
    /*margin-bottom: 2.5rem;*/
    height: 100%;
  }
}
.growth-model-box .sq .scrollable-area p {
  font-size: 10px;
  margin: 2px;
  /*background: $lightyellow;*/
  border-radius: 30px;
  padding: 10px 20px;
  display: inline-block;
}
.growth-model-box .sq .scrollable-area p a {
  color: black;
}
.growth-model-box .sq .add-button-float {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.growth-model-box .sq .label-sm-float {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .growth-model-box .sq .label-sm-float {
    display: block;
  }
}

/*END BUSINESS GROWTH MODEL*/
#model-canvas-section .card {
  cursor: pointer;
}
#model-canvas-section i.fas {
  margin-right: 3px;
}
#model-canvas-section .grid-wrapper {
  overflow-x: auto;
}
#model-canvas-section .grid-wrapper > .grid-container {
  min-width: 1200px;
  width: 1200px;
}
#model-canvas-section .card-body {
  padding: 0;
}
#model-canvas-section .header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 1rem 1rem;
  background-color: #FEF6D0;
}
#model-canvas-section .header p {
  margin-bottom: 0;
}
#model-canvas-section .scrollable {
  overflow-y: auto;
  font-size: 14px;
  padding: 1rem 1rem;
}
#model-canvas-section .scrollable ul, #model-canvas-section .scrollable ol {
  padding-left: 1.5rem;
}
#model-canvas-section .scrollable.small-box {
  height: 200px;
}
#model-canvas-section .scrollable.big-box {
  height: 600px;
}

.sample-box {
  min-height: 150px;
}

/*MOM*/
.mom-title-badge {
  background: #FEF6D0;
  border-radius: 20px;
  color: black;
  padding: 10px;
  font-weight: bold;
}

#calendar a {
  color: black;
}
#calendar .fc-toolbar-chunk {
  display: flex;
  align-items: center;
}
#calendar .fc-toolbar-title {
  display: inline;
  margin-right: 0.2rem;
}
#calendar .btn-group .btn {
  background-color: black;
  border-color: black;
}
#calendar .btn.disabled, #calendar .btn:disabled, #calendar fieldset:disabled .btn {
  opacity: 0.25;
}
#calendar .fc-prev-button {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#calendar .fc-next-button {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#calendar .fc-today-button {
  padding: 8px 30px;
  background-color: white;
  color: black;
  border-color: black;
}
#calendar .fc-create-button {
  margin-left: 30px;
  padding: 8px 48px;
  border-radius: 10px;
  border: none;
  background: #40BADC;
  color: white;
  transition: all 0.1s ease-in-out;
}
#calendar .fc-create-button:hover {
  background: #279EBA;
  color: white;
}
#calendar .fc-event {
  display: flex !important;
  align-items: center;
  font-weight: 300;
}
#calendar .fc-daygrid-event-dot {
  border-color: #40BADC;
  margin: 0 7px;
}

.response-tag {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 10px;
}/*# sourceMappingURL=style.css.map */