/* set font family */
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Regular.woff') format('woff'),
    url('../fonts/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'OpenSans-bold';
  src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Objektiv';
  src: url('../fonts/ObjektivVF_WghtItal.ttf') format('truetype');
}

@font-face {
  font-family: 'PublicSans';
  src: url('../fonts/PublicSans-Regular.ttf') format('truetype');
}

html,
body {
  font-family: 'OpenSans', sans-serif;
  background-color: #f4f6f8;
}

.row {
  --bs-gutter-x: 0;
}

/* set content 100% css ----------- */
.contentSetMaxWidth {
  width: 100%;
}

/* button size and colors change */
.btn {
  width: fit-content;
  padding: 0 16px;
  height: 48px;
  text-transform: none;
}

.btn-dark {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  border-radius: 8px;
  background-color: #212B36;
}

.btn-dark,
.btn-dark:focus,
.btn-dark:hover {
  box-shadow: none !important;
  border: 0 currentColor;
}

.btn-dark:hover {
  background-color: #454f5b;
}

.btn-light {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  border-radius: 8px;
  color: #212B36;
  background-color: transparent;
}

.btn-light,
.btn-light:focus,
.btn-light:hover {
  box-shadow: none !important;
  border-color: #919EAB52;
}

.btn-light:hover {
  background-color: #212b3614;
  border-color: #212B36;
}

/* side left css ----------- */
/* left side content */
.leftContainer{
  height: 100%;
  min-height: 100vh;
}

.leftContent{
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* logo style */
.logo {
  width: 200px;
  height: 60px;
  margin-top: 36px;
  margin-left: 24px;
  margin-bottom: 48px;
  aspect-ratio: 3/2;
  object-fit: contain;
}

/* card styles */
.card {
  margin: auto 36px;
  color: #000;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12);
  opacity: 1;
  margin-bottom: 36px;
  border: 0;
}

.card-body {
  padding: 24px 24px 6px;
}

.card-title {
  font-size: 24px;
  line-height: 24px;
  /* line-height: 36px; */
  font-weight: 700;
  letter-spacing: 0;
  font-family: 'OpenSans-bold';
  margin-bottom: 16px;
}

.card-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.card-text a{
  text-decoration: none;
  color: #1877F2;
}

.btnSet{
  font-size: 0;
}

.appBtn {
  margin: 0 16px 16px 0;
}

/* alert styels */
.infoDiv {
  color: #006c9c;
  border: 1px solid #00b8d929;
  padding: 6px 16px;
  font-size: 14px;
  background-color: #00b8d914;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  box-shadow: none;
  border-radius: 8px;
}

.infoImg {
  margin-right: 12px;
  padding: 7px 0px;
  display: flex;
  font-size: 22px;
  color: #00b8d9;
  align-items: flex-start;
}

.infoTxt {
  padding: 8px 0px;
  min-width: 0px;
  overflow: auto;
}

.infoTxt span{
  font-weight: bold;
}

/* footer style - start */
.footer-div {
  font-size: 10px;
  width: calc(100%-24px);
  color: #637381;
  height: 25px;
  /* align-items: end; */
  margin-top: auto;
  margin-left: 24px;
}

/* screens smaller than 1000px size - (Tab) */
@media screen and (max-width: 1000px) {
  .leftDiv {
      width: 100vw;
  }
  .rightDiv{
      display: none;
  }
}

/* screens smaller than 600px size - (Phone) */
@media screen and (max-width: 600px) {
  .logo{
    width: 140px;
    margin:auto;
    margin-top: 48px;
    margin-bottom: 36px;
  }
  .card-body{
    margin-bottom: 8px;
    padding: 10px 10px 6px;
  }
  .card{
    margin: auto 10px 24px 10px;
  }
  .card-title{
    font-size: 20px;
  }
  .card-text{
    font-size: 14px;
  }
  .info-div{
    display: block !important;
  }
  .btn{
    padding: 5px 16px;
    height: fit-content;
  }
}