:root {
   --clr-primary: #005eb8;
}

@font-face {
  font-family: "OpenSans";
  font-weight: normal;
  src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "OpenSans";
  font-weight: bold;
  src: url(../fonts/OpenSans-Bold.ttf) format("truetype");
}

@font-face {
  font-display: block;
  font-family: bootstrap-icons;
  src: url("../fonts/bootstrap-icons.woff2?e34853135f9e39acf64315236852cd5a") format("woff2")
}

body {
  font-family: OpenSans, sans-serif;
  background-color: #ececec;
  margin: 0px;
}

a {
  text-decoration: none !important;
}

.clr-primary {
  color: var(--clr-primary);
}

.clr-primary-border-top {
  border-top: .2rem solid var(--clr-primary);
}

.main-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  background-color: var(--clr-primary);
  color: #fff;
  font-weight: bold;
  font-size: .9rem;
  border: .15rem solid var(--clr-primary);
  cursor: pointer;
  border-radius: .5rem;
  transition: color .3s ease, background .3s ease;
}

.main-menu-item:hover {
  background-color: #fff;
  color: var(--clr-primary);
}

.main-menu-item-box.active > .main-menu-item:hover {
  color: #fff;
}

.main-menu-item-box.active > .main-menu-item {
  background-color: #000;
  border: .15rem solid #000;
}

.yes-no-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  background-color: #fff;
  border: .15rem solid var(--clr-primary);
  border-radius: .5rem;
  padding-inline-start: 1rem;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ddd;
}

::-webkit-scrollbar-thumb {
  background: #666;
}

/* .modal-dialog.modalShareholder {
  max-width: 1000px !important;
}

.modalShareholderContent {
  width: 966px;
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.modalShareholderList {
  display: flex;
  margin-bottom: 10px;
}

.modalShareholderListName {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.modalShareholderListShares {
  flex: initial;
  width: 115px;
  text-align: right;
  font-weight: bold;
} */

.working-box {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 2000;
}

.working-sub-box {
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../img/working.svg);
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 15px;
}

#message-box {
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 500px;
  min-height: 130px;
  max-height: 550px;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  padding: 30px;
}

#message-box.success {
  background-color: #effaf4;
  color: #37c871;
  border: 1px solid #37c871;
}

#message-box.error {
  background-color: #ffeaea;
  color: #ff0000;
  border: 1px solid #ff0000;
}

.message-shareholder {
  font-size: 14px;
  margin-top: 10px;
}

.btn {
  font-weight: bold;
}

.btn-xs {
  padding: 0.1rem 0.3rem;
  font-size: 0.8rem;
  line-height: 1.5;
  border-radius: .25rem;
}

.btn-purple,
.badge-purple {
  color: #fff;
  background-color: #7030a0;
}

.btn-purple:hover {
  background-color: #5f2889;
  color: #fff;
}

.btn-outline-purple {
  color: #7030a0;
  border-color: #7030a0;
}

.btn-orange,
.badge-orange {
  color: #fff;
  background-color: #ed6b47;
}

.btn-orange:hover {
  background-color: #e84516;
  color: #fff;
}

.modal-open .modal {
  overflow-y: hidden !important;
}

.modal-content {
  box-shadow: 0 0 8rem 2rem rgba(0, 0, 0, 0.3);
  border-radius: .6rem !important;
}

.modal-header {
  background-color: var(--clr-primary);
  color: #fff;
  padding: .6rem 1rem !important;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4) !important;
  border-top-left-radius: .5rem !important;
  border-top-right-radius: .5rem !important;
}

.modal-header>.close {
  color: #fff !important;
  opacity: 1;
}

.btn-close {
   background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
   opacity: 1;
}

.modal-footer {
  padding: 0 1rem 1rem 1rem !important;
  border-top: 3px solid rgba(255, 255, 255, 0.2) !important;
}

.modal-body {
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-footer form {
  margin-bottom: 0px;
}

.noty_theme__metroui.noty_bar {
  border-radius: .4rem;
  box-shadow: 0 0 8rem 2rem rgba(0, 0, 0, 0.3);
}

.noty_body {
  text-align: center !important;
  font-size: 1.5rem !important;
  font-weight: bold;
}

.noty_buttons {
  text-align: center !important;
  padding: 0 0 1rem 0 !important;
}

.btn:disabled {
  background-color: #999;
  color: #fff;
  border: 1px solid #999;
}

.cursor-pointer {
  cursor: pointer;
}

.flex-1 {
  flex: 1;
  min-width: 0;
  min-height: 0;
}

.flex-2 {
  flex: 2;
  min-width: 0;
  min-height: 0;
}

.overflow-xy {
  overflow-x: hidden;
  overflow-y: auto;
}

.w-1-rem {
  width: 1rem;
}

.w-1-5-rem {
  width: 1.5rem;
}

.w-2-rem {
  width: 2rem;
}

.w-3-rem {
  width: 3rem;
}

.w-4-rem {
  width: 4rem;
}

.w-5-rem {
  width: 5rem;
}

.w-5-2-rem {
  width: 5.2rem;
}

.w-5-5-rem {
  width: 5.5rem;
}

.w-6-rem {
  width: 6rem;
}

.w-7-rem {
  width: 7rem;
}

.w-8-rem {
  width: 8rem;
}

.w-9-rem {
  width: 9rem;
}

.w-10-rem {
  width: 10rem;
}

.w-11-rem {
  width: 11rem;
}

.w-12-rem {
  width: 12rem;
}

.w-13-rem {
  width: 13rem;
}

.w-13-5-rem {
  width: 13.5rem;
}

.w-14-rem {
  width: 14rem;
}

.w-15-rem {
  width: 15rem;
}

.w-16-rem {
  width: 16rem;
}

.w-17-rem {
  width: 17rem;
}

.w-18-rem {
  width: 18rem;
}

.w-19-rem {
  width: 19rem;
}

.w-20-rem {
  width: 20rem;
}

.w-22-rem {
  width: 22rem;
}

.w-75-vw {
  width: 75vw;
}

.h-1-rem {
  height: 1rem;
}

.h-1-2-rem {
  height: 1.2rem;
}

.h-2-rem {
  height: 2rem;
}

.h-3-rem {
  height: 3rem;
}

.h-3-5-rem {
  height: 3.5rem;
}

.h-4-rem {
  height: 4rem;
}

.h-5-rem {
  height: 5rem;
}

.h-6-rem {
  height: 6rem;
}

.h-7-rem {
  height: 7rem;
}

.h-8-rem {
  height: 8rem;
}

.h-9-rem {
  height: 9rem;
}

.h-10-rem {
  height: 10rem;
}

.h-11-rem {
  height: 11rem;
}

.h-12-rem {
  height: 12rem;
}

.h-15-rem {
  height: 15rem;
}

.h-19-rem {
  height: 19rem;
}

.h-30-rem {
  height: 30rem;
}

.h-50-vh {
  height: 50vh;
}

.h-100-vh {
  height: 100vh;
}

.mw-1-rem {
  min-width: 1rem;
}

.mw-1-4-rem {
  min-width: 1.4rem;
}

.mw-2-rem {
  min-width: 2rem;
}

.mw-3-rem {
  min-width: 3rem;
}

.mw-3-5-rem {
  min-width: 3.5rem;
}

.mw-4-rem {
  min-width: 4rem;
}

.mw-5-rem {
  min-width: 5rem;
}

.mw-6-rem {
  min-width: 6rem;
}

.mw-7-rem {
  min-width: 7rem;
}

.mw-8-rem {
  min-width: 8rem;
}

.mw-9-rem {
  min-width: 9rem;
}

.mw-10-rem {
  min-width: 10rem;
}

.mw-11-rem {
  min-width: 11rem;
}

.mh-3-1-rem {
  min-height: 3.1rem;
}

.mh-6-rem {
  min-height: 6rem;
}

.mh-10-rem {
  min-height: 10rem;
}

.mh-15-rem {
  min-height: 15rem;
}

.mh-18-rem {
  min-height: 18rem;
}

.mh-30-rem {
  min-height: 30rem;
}

.mh-35-rem {
  min-height: 35rem;
}

.minh-100 {
  min-height: 100%;
}

.mxw-80 {
  max-width: 80%;
}

.mxw-90 {
  max-width: 90%;
}

.mxh-80-vh {
  max-height: 80vh;
}

.mxh-90 {
  max-height: 90%;
}

.opacity-disabled {
  filter: grayscale(100%) opacity(0.3);
}
