/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
.layout-menu{
    box-shadow: 0 .25rem 1.125rem rgba(75,70,92,.2);
}
.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo svg {
  width: 38px;
  height: 20px;
}

.app-brand-text.demo {
  font-size: 1.25rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/
.myform-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 8px;
    padding: 0px 0;
    margin-bottom: 8px;
}
.ace {
    margin-left:20px;
}
.myform-col.colgap0 {
    grid-column-gap: 0px;
}
.myform-col.colgap10 {
    grid-column-gap: 10px;
}
.myform-col.colgap20 {
    grid-column-gap: 20px;
}
.myform-col.colgap30 {
    grid-column-gap: 30px;
}
.myform-col.colgap40 {
    grid-column-gap: 40px;
}
.myform-col.colgap50 {
    grid-column-gap: 50px;
}
.myform-col.colgap60 {
    grid-column-gap: 60px;
}
.myform-col.colgap70 {
    grid-column-gap: 70px;
}
.myform-col.colgap80 {
    grid-column-gap: 80px;
}
.myform-col.mycol-1 {
    grid-template-columns: repeat(1, 1fr);
}
.myform-col.mycol-2 {
    grid-template-columns: repeat(2, 1fr);
}
.myform-col.mycol-3 {
    grid-template-columns: repeat(3, 1fr);
}
.myform-col.mycol-5 {
    grid-template-columns: repeat(5, 1fr);
}
.myform-col.mycol-6 {
    grid-template-columns: repeat(6, 1fr);
}
.myform-col.mycol-7 {
    grid-template-columns: repeat(7, 1fr);
}
.myform-col.mycol-8 {
    grid-template-columns: repeat(8, 1fr);
}
.myform-col.mycol-9 {
    grid-template-columns: repeat(9, 1fr);
}
.myform-col .form-group.merge1-3 {
  grid-column: 1 / 3; /* span from grid column line 1 to 3 (i.e., span 2 columns) */
}
.myform-col .form-group.merge2-4 {
  grid-column: 2 / 4; /* span from grid column line 1 to 3 (i.e., span 2 columns) */
}
.myform-col .form-group.merge3-5 {
  grid-column: 3 / 5; /* span from grid column line 1 to 3 (i.e., span 2 columns) */
}
.myform-col.myinline .form-group{
    display:flex;
}
.myform-col .form-group{
    padding:0 0px;
    margin:0 !important;
    position:relative;
}
.myforms .form-control {
    height: 22px;
    border: 1px solid #999;
    font-size: 12px;
    line-height: 16px;
    padding: 1px 6px;
}
.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 300px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}
/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1.25rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1.25rem;
}
