@font-face {
  font-family: 'Jaldi';
  src: url('/public/font/Jaldi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jaldi';
  src: url('/public/font/Jaldi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* ExtraLight 200 */
@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

/* Light 300 */
@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Regular 400 */
@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Medium 500 */
@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* SemiBold 600 */
@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Bold 700 */
@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ExtraBold 800 */
@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Black 900 */
@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/public/font/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root{
  --app-primary: #22223B;
  --app-secondary: #C9ADA7;
}

body {
  background: linear-gradient(112deg, #F4F1EF 46.3%, #FFF 124.03%);
  font-family: "Helvetica Neue", sans-serif;
  color: #2C3E50;
}

body h2{
  color: #787878;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.goffeelogo {
  display: block;
  margin: 0 auto;
  max-height: 80px;
}

.navbar {
  background: var(--app-primary) !important;
  padding: 10px 0;
  height: 70px;
  flex-shrink: 0;
}

.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex !important;
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  justify-content: space-around !important;
}

.nav-link {
  color: var(--app-secondary) !important;
  font-family: 'Poppins';
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.3s ease;
}

.nav-link:hover {
  font-weight: 700;
}

.nav-link.active {
  color: var(--app-secondary) !important;
  font-weight: 700;
}

.custom-dropdown,
.custom-dropdown .dropdown-toggle {
  color: var(--app-secondary) !important;
  max-width: 315px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-item.active{
  background-color: var(--app-primary) !important;
}
.dropdown-item:hover{
  background-color: #34495E !important;
  color: #FFF !important;
}

.table-custom th, 
.table-custom tr {
  text-align: center;
}

.table-custom td {
  vertical-align: middle;
}

.custom-btn {
  background: #22223B;
  border-radius: 6px;
  color: #F2E9E4;
  text-align: center;
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #4A4E69;
}

.card-option {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.card-option:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1; 
}

.btn{
  font-family: 'Jaldi' !important;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 22px !important;
  margin-top: auto !important;
}
.btn-primary,.btn-outline-primary,.btn-secondary {
  border-radius: 9px !important;
}
.btn-primary{
  background-color: var(--app-primary) !important;
  border: none !important;
  transition: background 0.3s ease !important;
}
.btn-primary:hover, .btn-outline-primary.active:hover {
    background-color: #34495E !important;
}
.btn-outline-primary{
  border-color: var(--app-primary) !important;
  color: var(--app-primary) !important;
  transition: background 0.3s ease !important;
  font-family: Poppins !important;
  font-size: 16px !important;
  line-height: normal;
}
.btn-outline-primary:hover {
    background-color: #9A8C98 !important;
}
.btn.active{
  background-color: var(--app-primary) !important;
  color: #FFF !important;
}

.btn-secondary{
  border: none !important;
  background: var(--app-secondary) !important;
  color: #22223B !important;
  transition: background 0.3s ease !important;
}
.btn-secondary:hover {
    background-color: #9A8C98 !important;
}

.btn-group > button{
  background: var(--app-secondary) !important;
  color: #22223B !important;
}
.btn-group > button:hover {
    background-color: #9A8C98 !important;
}
.btn-group > button.menu-active{
  background-color: var(--app-primary) !important;
  color: #FFF !important;
}
.btn-group > button.menu-active:hover{
  background-color: #34495E !important;
}

.imgintable img {
    max-width: 100px;
    max-height: 60px;
}

.imgintable.icontable img {
  mix-blend-mode: difference;
}

.snippetsc {
    height: 30em; /* Approximately 10 rows */
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}
form img {
    max-height: 200px !important;
}
/*======== New Styles ========*/
body.body-login{
  background: linear-gradient(112deg, #F4F1EF 46.3%, #FFF 124.03%);
  position: relative;
}

.header-decoration{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(90deg, #22223B 45.66%, #42427E 151.71%);
}

h1.title-login{
  text-align: center;
  color: #22223B;
  font-family: 'Poppins';
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

h1.title-login strong{
  font-weight: 600;
}

.login-container{
  background: linear-gradient(112deg, #F4F1EF 46.3%, #FFF 124.03%);
  height: calc(100vh - 30px);
}

.login-form{
  min-height: 340px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

.login-lable{
  color: #22223B;
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

input.login-input{
  border-radius: 6px;
  border: 1px solid #22223B;
  background: #F5F2F0;
}

h1.main-title{
  color: #787878;
  font-family: 'Poppins';
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.grid-mansory{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.row[data-masonry] > .col {
  padding: 0 10px;
}

.card.card-option{
  padding: 0;
  background: none;
  border: none;
}

.home-card-header{
  padding: 25px 15px 25px 20px;
  color: #FFF;
  border-radius: 30px 0;
  background: #22223B;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.home-card-header h5, h6{
  color: #F2E9E4;
  font-family: 'Poppins';
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.home-card-header p{
  color: #F2E9E4;
  font-family: 'Poppins';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

ul.list-properties{
  list-style: none;
  padding: 0;
}

li.list-property{
  display: flex;
  align-items: center;
  border-radius: 24px;
  background: #FFF;
  padding: 18px 18px;
  margin: 15px 0;
  height: 110px;
}

.li-img-content{
  width: 60px;
  height: auto;
  margin-right: 15px;
  margin-top: -30px;
}

.li-text-content{
  color: #22223B;
  font-family: 'Poppins';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}

.li-text-content a{
  text-decoration: none;
  color: #22223B;
  font-family: 'Poppins';
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.li-text-content hr{
  margin: 3px 0 10px;
  background-color: #C9ADA7;
}

.button-card-container{
  margin-top: -25px;
  height: 115px;
  background: linear-gradient(180deg, #22223B 40.8%, #42427E 110.46%);
  border-bottom-right-radius: 30px;
  position: relative;
  margin-bottom: 10px;
}

.card-btn{
  display: inline-block;
  width: 240px;
  height: 40px;
  border-radius: 12px;
  background: #C9ADA7;
  color: #22223B;
  text-align: center;
  text-decoration: none;
  font-family: 'Poppins';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  position: absolute;
  bottom: 30px;
  right: 25px;
}

.table-section{
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

table.table-custom{
  border-collapse: separate;
  border-spacing: 0;
  border-width: 0;
  color: #22223B;
  font-family: Jaldi;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 10px;
}
table.table-custom > tbody > tr > td {
  border-bottom: 1px solid #E2E2E2;
}
table.table-custom > tbody > tr:last-child > td  {
  border-bottom-width: 0 ;
}

thead.table-secondary {
  --bs-table-bg: #22223B;
  --bs-table-color: #fff;
  --bs-table-border-color: none;
  font-family: 'Jaldi';
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
}

thead.table-secondary th:first-child {
  border-top-left-radius: 10px;
}

thead.table-secondary th:last-child {
  border-top-right-radius: 10px;
}

thead.table-secondary th{
  border-width: 0;
  vertical-align: middle;
}

tbody td{
  border-style: none;
}

tbody tr:last-child{
  padding-bottom: 10px;
}

table.table-custom a.btn.btn-secondary{
  font-size: 18px !important;
  padding: 1px 20px !important;
  border-radius: 6px !important;
}

/* Pagination */
.pagination{
  align-items: center;
}

a.custom-page.page-link{
  margin-left: 10px !important;
  width: 33px;
  height: 33px;
  border: 1px solid #22223B;
  color: #22223B;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  padding-bottom: 8px;
}

a.custom-page.page-link:hover {
  border: 1px solid #22223B;
  color: #FFF;
  background-color: #22223B;
}

/* forms */
.custom-form {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
  max-width: 1200px;
}

.custom-form h2{
  height: 70px;
  border-radius: 10px 10px 0 0;
  background: #22223B;
  color: #FFF;
  font-family: 'Jaldi';
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px;
}

.custom-form legend.second-legend{
  background: none;
  color: #22223B;
  line-height: normal;
  height: auto;
}

.custom-form label{
  color: #22223B;
  font-family: 'Jaldi';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: .2rem !important;
}

.custom-form input, .custom-form select{
  border-radius: 6px;
  border: 1px solid #838383;
  margin-bottom: 8px;
}

.custom-form .form-check-input[type=checkbox]{
  margin-top: 8px;
}

.card .custom-card-form{
  padding: 0 !important;
}
#version{
  color: #acacac;
  font-size: small;
}

#go-top{
  position: fixed;
  bottom: 1em;
  right: 1em;
  padding: 7px;
}
.empty{
  padding: 15px;
  text-align: center;
  font-size: 1.25rem;
  color: var(--bs-secondary-color);
  border-radius: 10px;
}


@media (min-width: 1900px) {

  .goffeelogo {
    max-height: 95px;
  }

  .login-form{
    min-height: 400px;
  }
  .header-decoration{
    height: 58px;
  }
  .navbar{
    height: 90px;
  }
  .nav-link {
    font-size: 16px !important;
  }
  h1{
    font-size: 36px;
  }
  h1.main-title {
    font-size: 32px;
  }

  .btn{
    font-size: 20px !important;
  }

  .home-card-header h5, h6, p{
    font-size: 20px !important;
  }
  .button-card-container {
    height: 135px;
  }
  .card-btn{
    height: 40px;
    font-size: 20px;
    bottom: 35px;
    right: 40px;
  }
  .li-text-content a {
    font-size: 22px;
  }
  .imgintable img {
    max-height: 67px;
  }
  .custom-form h2 {
    height: 80px;
    font-size: 30px;
  }
}