.alert-custom{
    /*width:100%;*/
    margin:0;
}

body {
    font-size: 14px;
    overflow-x: hidden;
    color: #2b2b2b;
    font-family: 'Roboto', sans-serif;
}

.alert{
    
    z-index: 999999 !important;
}


.alert-success {
    background-color: rgba(81, 187, 37, 0.8);
    border-color: rgba(81, 187, 37, 0.9);
    color: #51bb25e6;
}


.alert-notifiy {
    background-color: #f8d62b;
    border-color: #f8d62b;
    color: #f8d62b;
}


.alert-danger {
  background-color: rgba(220, 53, 69, 0.8);
  border-color: rgba(220, 53, 69, 0.9);
  color: #dc3545e6; 
    
    
}


.data_loader{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
    background: #ffffff;
    border-radius: 15px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.show_loader{
    opacity: 0.8;
    visibility: visible;
    
}

.loader-box {
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s color, .3s border, .3s transform, .3s opacity;
    transition: .3s color, .3s border, .3s transform, .3s opacity;
}



.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid var(--default-color);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--default-color) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.logo{
    width: 47%;
}

.logo svg{
    width: 5rem;
}

.icon_menu{
    width: 40px;
}

.no-button{
    border: none;
    background: none;
}


.status_active{
    color: white;
    background-color: #43d539 !important;
    border-color: #43d539 !important;
}


.status_pending{
    color: white;
    background-color: #ffe630f7 !important;
    border-color: #ffe630f7 !important;
}

.status_inactive{
    color: white;
    background-color: #9e9e9e !important;
    border-color: #9e9e9e !important;
}


.massive-upload{
    width: 100%;
    height: 50px;
    background: #f8f8f8;
    -webkit-appearance: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    opacity: 0;
    
}


.dropzone_zone {
    left: 5%;
    height: 50px;
    position: absolute;
    width: 90%;
    border: 4px dotted #ccc;
}

.dropzone_zone h4{
    text-align: center;
    line-height: 2.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.file_name{
    margin: 1rem 0px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.file-content .folder .folder-box {
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background-color: #f6f7fb;
    margin: 0;
    display: inline-block;
    width: 100%;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.file-content .folder .folder-box .media {
    margin: 0;
}

.row .folder{
    display: grid;
    grid-template-columns: repeat(3, 32.4%);
    gap: 1rem;
    width: 100%;
    margin: 0;
    align-items: center;
}


.row .files{
    display: grid;
    gap: 1rem;
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
    grid-template-columns: repeat(3, 32.4%);
}

.remove_folder {
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
}

.remove_file {
    cursor: pointer;
}

.file-content .files .file-box {
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    padding: 1rem 1rem;
    background-color: #f6f7fb;
    display: inline-block;
    width: 100%;
    position: relative;
    gap: 1rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}

.zip_folder {
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
}

.zip_folder-c{
    position: absolute;
    cursor: pointer;
    border-radius: 0.25rem;
    top: 0.5rem;
    right: 0.5rem;
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download_file {
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
}

.download_folder {
    position: absolute;
    top: -0.5rem;
    right: 0rem;
    cursor: pointer;
}

.file_c{
    border-radius: 0.25rem;
    top: 0.5rem;
    right: 0.5rem;
    position: absolute;
    height: 1.2rem;
    width: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hide{
    display:none !important;
}


.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ffffff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
    box-shadow: 0 0 0 0.2rem rgb(248 248 248);
}

.form-control-2 {
    display: block;
    width: 100%;
    /* box-shadow: 0 0 20px rgb(8 21 66 / 5%); */
    border-radius: 15px;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form-control-2:focus {
    outline-color: transparent;
    border: 2px solid #ced4da;
}

.page-wrapper .sidebar-main-title h6 {
    color: #212121;
    margin-bottom: 5px;
    letter-spacing: 0.40px;
}

.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .sidebar-main .sidebar-links > li .sidebar-link.active {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    margin-bottom: 10px;
    background-color: var(--default-color);
}

.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .sidebar-main .sidebar-links > li .sidebar-link.active svg {
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .sidebar-main .sidebar-links > li .sidebar-link.active span {
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .sidebar-main .sidebar-links > li .sidebar-link.active .according-menu i {
    color: #fff;
}


.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .sidebar-main .sidebar-links > li:hover .sidebar-link:not(.active):hover .according-menu i {
    color: #212121;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .sidebar-main .sidebar-links > li:hover .sidebar-link:not(.active):hover span {
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .sidebar-main .sidebar-links > li:hover .sidebar-link:not(.active):hover svg {
    fill: rgba(115, 102, 255, 0.1);
    stroke: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.span-bg {
    font-size: 6rem;
    top: 16px !important;
    width: 150px !important;
    right: -40px !important;
    font-family: 'Roboto', sans-serif;
}



.bg-primary {
    background-color: var(--default-color) !important;
}

.bg-primary .media.static-top-widget .align-self-center {
    background-color: #28282800;
}

.bg-secondary {
    background-color: var(--default-color) !important;
}

.bg-secondary .media.static-top-widget .align-self-center {
    background-color: #2b2b2b00;
}
.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .sidebar-main .sidebar-links > li.sidebar-list:hover > a:hover {
    background-color: rgb(87 87 92);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--default-color) !important;
    border-color: var(--default-color) !important;
    text-transform: uppercase;
}


.post-menu{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}
.post-menu>li{
    margin: 0px 5px;
}

.post-edit{
    cursor:pointer;
}

.post{
   margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
  break-inside: avoid;   
}

.post-delete{
    cursor:pointer;
}


.no-read {
    position: absolute;
    right: 0;
    background: #cdcdcd;
    color: #2b2b2b;
    font-weight: bold;
    top: 0;
    padding: 5px 10px;
    border-top-right-radius: 15px;
}


.read {
    position: absolute;
    left: 0;
    background: #099300;
    top: 0;
    color: #fff;
    padding: 5px 10px;
    margin-bottom: 8rem;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;

}
.page-wrapper .page-header .header-wrapper .nav-right .notification-box svg {
    -webkit-animation: none;
    animation: none;
}

.tada{
    
-webkit-animation: tada 1.5s ease infinite !Important;
    animation: tada 1.5s ease infinite !Important;

}


.edit_folder{cursor: pointer;width: 1.2rem;height: 1.2rem;}


.file-manager .files .folder-box {
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background-color: #f6f7fb;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
    display: flex;
    position: relative;
    align-content: center;
    align-items: center;
}

.file-content .files .file-box .file-top {
    background-color: transparent;
    border: 0px;
    border-radius: 5px;
    font-size: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--default-color);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    gap: 1rem;
    border-radius: 0;
    -ms-flex-pack: center;
    height: auto;
    justify-content: center;
}

.row-head-subfolders {
    display: grid;
    align-items: center;
    gap: 1rem;
    grid-template-columns: 80% auto;
    align-content: center;
    margin-bottom: 1rem;
}

.row-head-subfolders h3{
    margin:0;
}

.row-head-subfolders .form-inline {
    width:100%;
}

.selected-folder{
    display: flex;
}

.item-breadcrum{
  cursor:pointer;
  font-size: 16px;
  color: #b6b6b6;
}

.item-breadcrum.active{
  color: #56565b;
}


.item-breadcrum:not(:last-child):after{
  content:'|';
  margin: 0 0.5rem;
}

.btn-add-folder {
    background: var(--default-color);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform:uppercase;
    justify-content: center;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
}

.file-bottom {max-width: 60%;}

.btn-add-folder svg{
    height:22px !important;
}

.media {
    padding: 1.5rem 1rem;
    width: 100%;
    gap: 1rem;
    
}

.folder-box .media{
    /* flex-direction: column; */
}

.file-manager .files h6 {
    margin-top: 0;
    margin-bottom: 0;
}

.profile_img {
    width: 2rem;
    height: 2rem;
}

.profile-media{
    padding:0;
}

.static-top-widget{
    padding:0;
}

.login-card .logo {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.login-card .logo img{
    
    width: 150px;
}

.action-folder{
    position: absolute;
    right: 0.5rem;
    display: grid;
    height: 100%;
    gap: 0;
    top: 0;
    grid-template-rows: auto;
    align-items: start;
    height: 100%;
    align-content: space-between;
    padding: .5rem 0px;
}

.img-head {
    width: 100%;
    background-image: url(/assets/images/dynamic_hero.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    padding-top: 3rem;
}

a:hover {
    text-decoration: none;
    color: #121212;
}


.page-wrapper .page-header .header-wrapper .nav-right .profile-dropdown li:hover a svg {
    stroke: #121212;
    -webkit-transition: stroke 0.3s ease;
    transition: stroke 0.3s ease;
}

.page-wrapper .page-header .header-wrapper .nav-right .profile-dropdown li:hover a svg path {
    stroke: #121212;
    -webkit-transition: stroke 0.3s ease;
    transition: stroke 0.3s ease;
}


.page-wrapper .page-header .header-wrapper .nav-right .profile-dropdown li:hover a span {
    color: #121212;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.alert-theme span + span + span {
  background-color: white;
  color: #121212;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 14px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 14px -3px rgba(0, 0, 0, 0.2);
  }
.alert-theme button {
    top: 33px !important;
    right: 30px !important;
    color: #121212;
}


.alert-theme .progress {
  margin-top: -2px !important;
  height: 2px; }
  .alert-theme .progress .progress-bar {
    background-color: #121212;
    }
    
.file-input{
    padding: 0;
    border: 0;
}

.tap-top {
    text-align: center;
    cursor: pointer;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    color: #fff;
    background: #121212;
    border: none;
    padding: 7px;
    -webkit-box-shadow: 0 0 10px #121212;
    box-shadow: 0 0 10px #121212;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cust-page{
}

.cust-page h3 {
    color: var(--primary-color);
    margin: 0px 0px 20px 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 50px !important;
    font-weight: bold;
    line-height: 1em;
    letter-spacing: 0;
}

.page-wrapper .page-body-wrapper .page-title .cust-page  .breadcrumb li {
    color: #C5C5C5;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0px 0px 0px 0px;
}

.page-wrapper .page-body-wrapper .page-title .cust-page .breadcrumb li {
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0px 0px 0px 0px;
}

.cust-page .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #C5C5C5;
    content: "/";
}
.page-wrapper .page-body-wrapper .page-title .cust-page .breadcrumb .breadcrumb-item a svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    vertical-align: text-top;
}

.page-wrapper .page-body-wrapper .page-title .cust-page .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 1rem;
}


.circolari{
    background-color: transparent;
    background-image: linear-gradient(180deg, #595d66 0%, #9e9e9e 100%);
    opacity: 0.83;
    mix-blend-mode: multiply;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    /*    background-color: transparent;*/
    /*background-image: linear-gradient(180deg, #21212117 0%, #212121 100%);*/
    /*opacity: 1;*/
    /*transition: background 0.3s, border-radius 0.3s, opacity 0.3s;*/
}

.download{
        background: #f7f7f7;
        opacity: 1;
        transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0px;
}


.page-title .row h3 span{
    color:#9e9e9e;
}


.black{
    color:#212121 !Important;
}

.show_file {
    cursor: pointer;
    right: 2.5rem;
}

.page-wrapper .sidebar-main-title > div {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    color: #56565b;
    padding-bottom: 0;
    border-bottom: 1px solid var(--default-color);
}

.page-wrapper .sidebar-main-title h6 {
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.40px;
}

.page-wrapper .sidebar-main-title p {
    color: #ffffff;
    font-size: 11px;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 1;
}


.choice-share{
    display: grid;
    gap: 1rem;
    grid-template-columns: auto;
    justify-content: start;
    margin-top: 0;
}

.sel-share{
    opacity:0.5;
    transition:0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: bold;
    gap: 1rem;
    text-transform: uppercase;
}

.sel-share.selected{
    opacity:1;
}

.sel-share img{
    width: 2rem;
    height: auto;
}


.groups{
    display:none;
    gap: 1rem;
    margin-top:1rem;
}

.groups.show {
    display: flex;
}

.users{
    display:none;
    gap: 1rem;
    margin-top:1rem;
}

.users.show {
    display: block;
}




.list-search {
    position: absolute;
    z-index: 1;
    max-height: 25vh;
    border: 1px solid #ced4da;
    width: 100%;
    display: flex;
    background: #fff;
}


#list-customers {
    position: relative;
    padding-bottom: 0;
    overflow-y: scroll;
    width: 100%;
    height: auto;
    max-height: 500px;
}

#list-customers > li {
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: 0.5s;
    font-weight: bold;
    text-transform: uppercase;
}

.relative{
    position:relative;
}

.page-wrapper .page-body-wrapper .page-title .breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
}

.page-wrapper .page-header .header-wrapper .nav-right.right-header ul li .profile-media .media-body p {
    font-size: 14px;

}

.page-wrapper .page-header .header-wrapper .nav-right.right-header ul li .profile-media .media-body span {
    font-size: 18px;
}

.btn {
    font-weight: bold;
}

.btn:hover{
        background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.login-card {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    background: url(../images/login/login_bg.jpg);
    background-position: center;
    padding: 30px 0;
    background: #f8f9fe;
}

.loader-box .loader-37 {
    border-right: 0.1em solid var(--default-color);
    border-radius: 100%;
    -webkit-animation: loader-37 800ms linear infinite;
    animation: loader-37 800ms linear infinite;
    }
    .loader-box .loader-37:before, .loader-box .loader-37:after {
      content: '';
      width: .8em;
      height: .8em;
      display: block;
      position: absolute;
      top: calc(50% - .4em);
      left: calc(50% - .4em);
      border-left: 0.08em solid var(--default-color);
      border-radius: 100%;
      animation: loader-37 400ms linear infinite reverse;
      }
    .loader-box .loader-37:after {
      width: .6em;
      height: .6em;
      top: calc(50% - .3em);
      left: calc(50% - .3em);
      border: 0;
      border-right: 0.05em solid var(--default-color);
      -webkit-animation: none;
      animation: none;
      }

@-webkit-keyframes loader-37 {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes loader-37 {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }
            
            
            
.orange{
    color:var(--default-color);
}

.open_folder{
    opacity:0.5;
    transition:0.2s;
}

.open_folder.active{
    opacity:1;
}


.selected-client {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.item-customer {
    background: #e5e5e5;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    text-transform: uppercase;
    width: fit-content;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}


.col-3 .card .card-body {
    padding: 2rem;
}

.filter-row{
    margin: 2rem 0;
    padding: 40px;
    background: #fff;
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
    box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
    align-items: flex-end;
}


.btn.filter{
        background: var(--default-color);
        padding: 0.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-transform: uppercase;
        justify-content: center;
        width: 100%;
}


.swal2-confirm {

    background-color: var(--default-color) !important;

}

.swal2-cancel {

    background-color: var(--primary-color) !important;
}

.swal2-default-outline:focus {
    box-shadow: 0 0 0 3px rgb(100 150 200 / 0%) !important;
}


.static-top-widget.column {
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

.static-top-widget.column .media-body {
    -ms-flex-item-align: start !important;
    align-self: start !important;
    padding-left: 0;
}

div.dataTables_wrapper div.dataTables_processing {

    display: none !important;
}

.letter_spacing_0{
    letter-spacing:0;
}

.top-perc {
    position: absolute;
    right: 0;
    font-size: 15px;
    top: 0;
    line-height: 10px;
    border-radius: 0.5rem;
    background: white;
    padding: 0.5rem;
    color: #56565b;
    font-weight: bold;
}

.top-perc .green{
    color: #00b700;
}

.top-perc .red{
    color: red;
}

.display_cards{
    display: flex;
    width: 100%;
    gap: 1rem;
    flex-direction: row;
}

.card {
    width:100%;
}

.display_cards .card .card-body {
    padding: 1rem 2rem;
}

.img-product-selected {
    min-height: 243px;
    background-size: contain;
    /* height: 100%; */
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}


.option_image{
    display: flex;
    align-content: center;
    flex-direction: row;
    position: relative;
    gap: 0.5rem;
}

.option_image.v_2{
    right: 0;
    top: 0;
    position: relative;
}

.add-img{
    color:#56565b;
    background: #f8f8f8;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}

/*.add-img:hover{*/
/*    box-shadow: 0 0 12px 1px #8f8f8fc2;*/
/*}*/

.select-img{
    color:#56565b;
    background: #fff;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}

/*.select-img:hover{*/
/*    box-shadow: 0 0 12px 1px #8f8f8fc2;*/
/*}*/

.select-img-2 {
    color: #56565b;
    background: #fff;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    z-index: 9;
    border-radius: 10px;
    cursor: pointer;
    background-image: none !important;
}

.add-img-2 {
    color: #56565b;
    background: #fff;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    background-image: none !important;
    z-index: 9;
}


.select-img-gallery {
    color:#56565b;
    background: #fff;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    background-image: none !important;
}

.add-img-gallery {
    color:#56565b;
    background: #fff;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    background-image: none !important;
}

.img-table {
    width: 5rem;
}

.col-box-media {
    flex: 0 0 auto;
    border-radius: 10px;
    padding: 10px;
    border: 0px solid #1f1f1f1f;
    height: 9.5rem;
    width: 12.5%;
}

.box-media{
    width: 100%;
    margin-bottom: 0.5rem;
    height: 100%;
    padding: 0rem;
    position: relative;
    cursor: pointer;
    border: 1px solid #56565b;
    transition: 0.2s;
    opacity: 0.7;
    height: 6rem;
    margin-bottom: 1rem;
}

.selected-box-image {opacity: 1;border: 5px solid var(--default-color);}

.information {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
}


.box-media.pdf {
    background: url(/assets/backend/img/pdf.svg);
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: center;
}

.box-media.mp4 {
    background: url(/assets/backend/img/mp4.svg);
    background-size: 8rem;
    background-repeat: no-repeat;
    background-position: center;
}

.box-media.zip {
    background: url(/assets/backend/img/zip.svg);
    background-size: 8rem;
    background-repeat: no-repeat;
    background-position: center;
}

.box-media.img {
    background-size: 10rem;
    background-repeat: no-repeat;
    background-color: #d6d6d6;
    background-position: center;
}

.grid-media{
    display:flex;
    gap:1rem;
}

.massive-upload {
    width: 100%;
    position: absolute;
    height: 100%;
    cursor: pointer !important;
    top: 0;
    left: 0;
    background: #f8f8f8;
    -webkit-appearance: none;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-content: center;
    opacity: 0;
    z-index: 9;
}

.upload-dropzone {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    flex-direction: row;
}

.upload-dropzone{
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    flex-direction: row;  
}

.upload-dropzone-item{
    background: white;
    margin: 1rem;
    min-height: 140px;
    padding: 10px;
    border-radius: 0px !Important;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position:relative;
}

.view-media{
    width:100%;
    padding: 1rem;
    background: #e3e3e3;
    display: flex;
    height: 25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.view-media > img{
    max-width: 100%;
    max-height: 100%;
}

.preview-video{
    width: 100%;
    height: auto;
    
}



.prev-media, .next-media{
    cursor:pointer;
    visibility:hidden;
    font-size:1.5rem;
}

.prev-media.show, .next-media.show{
    visibility:visible;
}

.buttons-media{
    margin-top: 2rem;
    float: right;
    display: flex;
    gap: 1rem;
}

.btn-secondary{
        background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.inline-langs{
    width: fit-content;
    gap: 0.5rem;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 31px;
    z-index: 9;
    top: 10px;
}

.inline-langs.v_2{
    height: fit-content;
    right: 0;
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: -1rem;
}

.sel-lang{
    text-transform: uppercase;
    border: 2px solid #ffffff00;
    display: flex;
    cursor: pointer;
    transition:0.2s;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    background: #ffffff;
    color: #2b2b2b;
    margin-bottom: 1rem;
}

.sel-lang:hover{
    border-color: #2b2b2b;
}


.v_2 .sel-lang {
    padding: 0.5rem 1rem;
}

.sel-lang.active{
    border-color: #2b2b2b;
}

.type-link{
    text-transform: uppercase;
    border: 2px solid;
    color: var(--primary-color);
    display: flex;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    transition:0.2s;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
}

.type-link.active{
    background-color: var(--primary-color);
    color:#fff;
    border-color: var(--primary-color);
}

.nav-post{
    position:sticky;
    margin: 2rem 0 0 0;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    z-index: 9;
}

.nav-post.right{
    justify-content: flex-end;
}

.tab-post{
    display:flex;
    gap:1rem;
    position: relative;
    z-index: 9;
    align-items: center;
}


.kanban-title-board .tab-post{
    background: #f8f8f8;
    padding: 20px 0 10px 5rem;
}

.tab-post span{
    background: #ffffff00;
    text-align:center;
    text-transform:uppercase;
    border-radius:10px;
    padding: 1rem 2rem;
    cursor:pointer;
    font-weight: bold;
    /*transition: 0.5s;*/
    /* -webkit-box-shadow: 0 0 20px rgba(8, 21, 66, 0.05); */
    /* box-shadow: 0 0 20px rgba(8, 21, 66, 0.05); */
}

/*.tab-post span.active{*/
/*    background:var(--primary-color);*/
/*    color:#fff;*/
/*}*/

.card-edit{
    display:none;
    border-top-left-radius: 0;
    top: -2px;
    -webkit-box-shadow: 0px 10px 20px rgba(8, 21, 66, 0.05);
    box-shadow: 0px 0 20px rgba(8, 21, 66, 0.05);
}

.card-edit:hover{
    -webkit-box-shadow: 0px 10px 20px rgba(8, 21, 66, 0.05);
    box-shadow: 0px 10px 20px rgba(8, 21, 66, 0.05);
}

.card-edit.show{
    display:block;
}


.inline-post-langs{
    width: fit-content;
    gap: 0.5rem;
    display: flex;
    justify-content: flex-end;
}






/**=====================
  3.24 Kanban CSS start
==========================**/
.jkanban-container .btn {
  margin-bottom: 10px;
}
.jkanban-container .note a {
  display: contents;
}

.kanban-board-header {
  height: auto;
  width: auto;
  position: relative;
  line-height: unset;
  background: #f8f8f8;
  border-bottom: 1px solid #ddd;
  padding: 0 30px 10px 30px !important;!i;!;!u;!ui;!uim;!ui;!;
}
.kanban-board-header.bg-info ~ .kanban-drag {
  background-color: rgba(22, 199, 249, 0.3) !important;
}
.kanban-board-header.bg-warning ~ .kanban-drag {
  background-color: rgba(255, 170, 5, 0.3) !important;
}
.kanban-board-header.bg-success ~ .kanban-drag {
  background-color: rgba(84, 186, 74, 0.3) !important;
}

.kanban-container {
  display: contents;
}

.kanban-board {
  margin-bottom: 30px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border-radius: 8px;
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  overflow: hidden;
  width: 100%;
}
.kanban-board .kanban-drag {
  background: #f8f8f8;
}

.kanban-item {
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}
.kanban-item .kanban-box .badge {
  line-height: 13px;
}
.kanban-item p {
  opacity: 0.7;
}
.kanban-item:last-child {
  margin-bottom: 0;
}
.kanban-item .list {
  display: inline-block;
  opacity: 0.4;
}
.kanban-item .list li {
  display: inline-block;
  font-size: 12px;
}
.kanban-item .list li i {
  margin-right: 10px;
}
.kanban-item .kanban-box {
  border: 1px solid #efefef;
  border-radius: 5px;
  padding: 20px;
  position: relative;
  display: block;
  color: inherit;
  background-color: #fff;
}
.kanban-item .kanban-box:hover {
  color: inherit;
}
.kanban-item .kanban-box + .kanban-box {
  margin-top: 20px;
}
.kanban-item .kanban-box .badge {
  font-weight: 400;
}
.kanban-item .kanban-box h6 {
  font-size: 15px;
  margin-top: 5px;
  font-weight: 500;
}
.kanban-item .kanban-box .dropdown {
  display: inline-block;
  right: 10px;
  position: absolute;
  top: 20px;
}
.kanban-item .kanban-box .dropdown .dropdown-item {
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  text-align: left;
}
.kanban-item .kanban-box .dropdown svg {
  height: 14px;
}
.kanban-item .kanban-box .d-flex {
  justify-content: space-between;
}
.kanban-item .kanban-box .dropdown-toggle:after {
  content: none;
}
.kanban-item .kanban-box .customers ul li + li {
  margin-left: -10px;
}
.kanban-item .kanban-box .date {
  font-size: 11px;
  opacity: 0.5;
}

footer {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 1199px) {
  .jkanban-container .btn {
    margin-bottom: 10px;
    margin-left: 20px;
  }
  .kanban-container .kanban-board {
    width: 320px !important;
  }
}
@media only screen and (max-width: 600px) {
  .kanban-board .kanban-drag,
  .kanban-container .kanban-item .kanban-box {
    padding: 10px 15px;
  }
  .kanban-container .kanban-board {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
}
@media only screen and (max-width: 480px) {
  .jkanban-container .card-body {
    padding: 20px 0 !important;
  }
  .kanban-board .kanban-drag,
  .kanban-container .kanban-item .kanban-box {
    padding: 10px 15px;
  }
  .kanban-container .kanban-board {
    width: 270px !important;
  }
}
/**=====================
   3.24 Kanban CSS ends
==========================**/


/*.delete-template{*/
/*        position: absolute;*/
/*    top: -4rem;*/
/*    right: 0rem;*/
/*    cursor: pointer;*/
/*    color:red;*/
/*}*/


.selected-cover{
    margin: 0;
    border-radius: 5px;
    margin-top: 1rem;
    display: flex;
    padding: 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.selected-cover h5{
    font-size: 16px;
}





.selected-grid{
    margin:0;
    border-radius: 5px;
    display: flex;
    padding: 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.selected-grid h5{
    font-size: 16px;
}





.selections{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    flex-direction: row-reverse;
}


.selection-parallax{
    cursor: pointer;
    width: fit-content;
    display: flex;
    transition: 0.5s;
    align-items: center;
    gap: 1rem;
    border-radius: 10px;
    padding: 1rem;
    flex-direction: row-reverse;
    font-weight: bold;
    background: #f8f8f8;
    border: 2px solid;
    color: #2b2b2b;
    border-color: #f8f8f8;
}

.selection-parallax:hover{
    border-color: #2b2b2b;
}





.button-backend{
    cursor: pointer;
    display: flex;
    transition: 0.2s;
    align-items: center;
    height: fit-content;
    gap: 1rem;
    border-radius: 10px;
    padding: 1rem;
    flex-direction: row-reverse;
    font-weight: bold;
    background: #f8f8f8;
    border: 2px solid;
    color: #2b2b2b;
    border-color: #f8f8f8;
    text-transform:uppercase;
    justify-content: space-between;
}



.button-backend:hover{
    border-color: #2b2b2b;
}

.button-backend.v_2{
    width: fit-content;
    padding: 0.375rem 1rem;
    background: #fff;
    color: #2b2b2b;
    gap: 1rem;
    justify-content: space-between;
}




/*.selection-parallax svg{*/
/*    width: auto;*/
/*    height: 1rem;*/
/*}*/

.selection-parallax.selected{
    border-color: #2b2b2b;
}

.button-backend.selected{
    border-color: #2b2b2b;
}


.selection-align{
    cursor: pointer;
    display: flex;
    opacity: 0.5;
    transition: 0.2s;
    align-items: center;
    gap: 1rem;
    font-size: 15px;
}

.selection-align svg{
    width: 2rem;
    height: auto;
}

.selection-align.selected{
    opacity: 1;
}

.image-content{
    position:relative;
    background-color: #ededed;
    border-radius: 0 0 5px 5px;
    padding: 1rem;
}


.input-sel{
    border-radius:0;
    border:0;
    position: relative;
    height: 7rem;
    padding: 0;
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 0;
    border-bottom: 0;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-icon{
    display: grid;
    grid-template-columns: auto auto auto auto;
    width: fit-content;
    top: 0;
    height: auto;
    left: 0;
    visibility:hidden;
    opacity:0;
    background: #3a3a3a;
    position: absolute;
    border: 0;
    padding: 0;
    justify-items: center;
    transition: 0.2s;
    align-items: start;
    overflow-y: scroll;
    height: 500px;
}

.select-icon.show{
   visibility:visible;
   opacity:1;
}






.info-resource{
    margin-top: 1rem;
    padding: 0 1rem;
}


.name-resource{
    font-size: 15px;
    margin:0;
}

.size-resource{
    text-transform:uppercase;
    font-weight: revert;
    margin-top: 1rem;
    font-size: 10px;
}

.share-resource{
    position:absolute;
    width: 2rem;
    height: 2rem;
    top: 2rem;
    z-index: 2;
    right: 4.5rem;
}

.share-resource img{
    width: 100%;
    height: auto;
}

.elements-list > div{
    display: grid;
    gap: 3rem;
    grid-template-columns: 20% auto auto;
    align-items: center;
    padding: 1rem;
    margin: 1rem 0;
    border-bottom: 5px double;
    background: #dbdbdb;
}


.elements-list > div textarea{
    margin:0;
}

.delete-listicon{
    display: flex;
    justify-content: center;
    cursor: pointer;
    color: red;
}


.input-sel.single{
    background-size: cover;
    height: 20rem;
    background-size: contain;
}

.upload-medias-popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: white;
    left: 0;
    padding: 40px;
    visibility:hidden;
    opacity:0;
}

.medias{
    display: flex;
    flex-direction: row;
    gap: 1rem 0;
    position: relative;
    margin: 0;
    flex-wrap: wrap;
}

.medias.popup{
    max-height: 78vh;
    overflow: scroll;
}

.kanban-container {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    width: 100% !important;
    gap: 0rem;
}

.kanban-board {
    margin-bottom: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
    width: 100%;
    background: #f8f8f8;
    margin: 0 0 40px 0 !important;!i;!;
}
.grid-gallery-kanban + .kanban-drag{
    display: grid;
        grid-template-columns: repeat(2, calc(50% - 0.5rem));
        gap: 1rem;
        width: 100%;
    }
    
    .uploaze-zone-kanban{
        grid-column: 1 / -1;
    }
    
    .kanban-item {
        background: transparent;
        padding: 0;
        margin-bottom: 0;
    }
    
    .dropzone.project {
        margin-right: auto;
        margin-left: auto;
        padding: 1.5rem 2rem;
        border: 2px dashed var(--theme-deafult);
        border-radius: 15px;
        -webkit-border-image: none;
        -o-border-image: none;
        border-image: none;
        background: rgb(255 255 255 / 0%);
        box-sizing: border-box;
        min-height: 70px;
        position: relative;
    }
    
    .dropzone.project i {
        font-size: 30px;
        color: #56565b;
    }
    
    .dropzone.project .dz-message {
        text-align: center;
        margin: 0;
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .upload-dropzone {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        flex-direction: row;
    }
    
    .upload-dropzone{
        display: flex;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        flex-direction: row;
        grid-template-columns: repeat(8, 1fr);
        gap: 1rem;
        overflow-y: scroll;
    }
    
    .upload-dropzone-item{
        background: white;
        margin: 0;
        min-height: 140px;
        padding: 10px;
        border-radius: 0px !Important;
        background-size: contain;
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        position:relative;
    }
    
    .delete-gallery {
        position: absolute;
        top: -0.5rem;
        right: -0.5rem;
        z-index: 3;
        color: #e50303;
        font-weight: bold;
        background-position: center;
        background-repeat: no-repeat;
        width: 1.5rem;
        height: 1.5rem;
        background-size: contain;
        cursor: pointer !important;
        background-image: url(/media/x_circle_fill.svg);
    }
    
    .delete-gallery > svg{
        width:100%;
        height:
        auto;
        cursor: pointer !important;
    }
    
    .upload-dropzone-item > .file_name {
        font-weight: 600;
        margin: 1rem;
        font-family: Roboto;
    }
    
    .img_thumb-upload {
        height: 100px;
        width: 100%;
        margin: 0;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        margin-bottom: 1rem;
    }
    
    
.sidebar-template{
    position: fixed;
    display: flex;
    right: 0;
    width: fit-content;
    background: var(--primary-color);
    top: 0;
    height: 100vh;
    z-index: 10;
    -webkit-box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
    box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
    align-items: center;
    transition: 0.5s;
    transform: translateX(100%);
    justify-content: center;
}

.sidebar-template.active{
    transform: translateX(0%);
}

.templates{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
}





.item-template:hover{
    border-color: #2b2b2b;
}

.choice-template{
    position: absolute;
    left: -3.5rem;
    color: #fff;
    background: var(--default-color);
    display: flex;
    padding: 1rem;
    cursor: pointer;
    display:none;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.choice-template.show{
    display: flex;
}

.page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .logo-wrapper, .page-wrapper.compact-wrapper .page-body-wrapper.sidebar-icon div.sidebar-wrapper .logo-icon-wrapper {
    -webkit-box-shadow: -9px 0 20px rgba(89, 102, 122, 0.1);
    padding: 18px 30px;
    box-shadow: -9px 0 20px rgba(89, 102, 122, 0.1);
}

.pubblish{
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 1rem 2rem;
    width: fit-content;
    float: right;
}

.miniature{
    height: 3rem;
    width: 3rem;
    min-height: 3rem;
    background-size: cover;
    border-radius: 10px;
}

.select-color {
    color: #56565b;
    background: #fff;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    z-index: 9;
}

.hide-color{
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

[data-content="template"] .card-footer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.tab-sections{
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.tab-sections p{
        margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.add-section{
    padding: 1rem;
    display: flex;
    cursor: pointer;
    text-transform: uppercase;
    gap: 1rem;
    color: #56565b;
    border-radius: 10px;
    font-weight: bold;
    background: #f8f8f8;
    width: 50%;
    height: 10vh;
    transition: 0.5s;
    align-items: center;
    justify-content: center;
}

.add-section.full{
    
    width: 100%;
}



/*css section templates*/


.delete-section {
    cursor: pointer;
    color: #56565b;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    z-index: 9;
}

.kanban-container {
    display: grid;
    grid-template-columns: 100%;
    width: 100% !important;
    gap: 0rem;
}

.kanban-drag{
    display: flex;
    gap:1rem;
}

.kanban-item{
    width:100%;
    
    
}
.kanban-box{
    display: flex !important;
    min-height: 150px;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.add-template-section{
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #f8f8f8;
}

.add-template-section svg{
}
.template_sec {
    position: relative;
    width: 100%;
    border-radius: 5px;
    background: #ededed;
}

.delete-template {
    cursor: pointer;
    display: flex;
}
.head-template-sec{
    font-weight: 500;
    margin: 0;
    padding: 0.5rem 1rem;
    display: flex;
    color: var(--primary-color);
    background: #ededed;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid var(--primary-color)38;
}

.templates {
    display: grid;
    gap: 1rem;
    grid-template-columns: auto auto auto;
    padding: 0;
}

.item-template {
    padding: 1rem;
    display: flex;
    cursor: pointer;
    text-transform: uppercase;
    gap: 1rem;
    border-radius: 10px;
    font-weight: bold;
    background: #f8f8f8;
    color: #2b2b2b;
    transition: 0.5s;
    align-items: center;
    border: 2px solid;
    border-color: #f8f8f8;
}

.templates {
    display: grid;
    gap: 1rem;
    padding: 0;
    flex-direction: row;
    flex-wrap: nowrap;
}

.content-section{
    width:100%;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    border-radius: 50px;
}

.gallery-content{
    margin-top: 0;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: auto auto;
    gap: 1rem;
    background: #d4d4d4;
    border-radius: 0 0 5px 5px;
    align-items: center;
    justify-content: space-between;
}


.kanban-board header .kanban-title-board {
    font-weight: 500;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.button-content{
    display: flex;
    padding: 1rem;
    gap: 1rem;
    background-color: #d4d4d4;
}

.sel-icon{
    width: 6rem;
    height: auto;
    background: #a3a3a357;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-right: 2px solid;
}

.sel-color{
    width: 3rem;
    height: auto;
    cursor: pointer;
    border-right: 2px solid;
    position:relative;
}


.sel-class{
    height: auto;
    cursor: pointer;
    position:relative;
    display: flex;
    align-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 1rem;
    width: 40%;
    justify-content: center;
    background-image: linear-gradient(rgb(255 255 255 / 60%), rgb(255 255 255 / 60%)), url(/media/bg_png.jpg);
    background-size: 250px;
    background-repeat: repeat;
}


.sel-bg{
    width: 3rem;
    height: auto;
    cursor: pointer;
    border-right: 2px solid;
    position:relative;
}

.sel-bd{
    width: 3rem;
    height: auto;
    cursor: pointer;
    position:relative;
}

.sel-link{
    display: flex;
    width: 100%;
    border-right: 0px solid;
    align-items: start;
    gap: 1rem;
    flex-direction: column;
    grid-template-columns: 80% auto;
    border-radius: 0 0 5px 0;
}

.sel-link .cont-input-button{
    width: 100%;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 0 0.2rem rgb(248 248 248);
    border-radius: 5px;
}

.sel-link-text{
    border: 0;
    padding: 0.5rem;
    border-radius: 5px;
    width: 100%;
   
}

.input-button{
     padding-left: 1rem;
     box-shadow: none !important;
     border-radius: 0 5px 5px 0px !important;
}




.choice-link{
    text-transform: uppercase;
    padding: 0.5rem 0.5rem;
    cursor: pointer;
    background-color: #dc712e;
    color: #fff;
    font-weight: bold;
    display: flex;
    text-align: center;
    align-content: center;
    justify-content: center;
    width: fit-content;
    align-items: center;
}


.edit-galleries{
    text-transform: uppercase;
    text-align: center;
    align-content: center;
    justify-content: center;
    cursor: pointer;
    display: flex;
    transition: 0.5s;
    align-items: center;
    gap: 1rem;
    border-radius: 10px;
    padding: 1rem;
    flex-direction: row-reverse;
    font-weight: bold;
    background: #f8f8f8;
    border: 2px solid;
    color: #2b2b2b;
    border-color: #f8f8f8;
    z-index: 2;
}

.edit-galleries:hover{
    border-color: #2b2b2b;
}


.buttons-navigation{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.up{
    cursor:pointer;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 10px;
    height: 2rem;
    text-transform: uppercase;
    padding: 0 1rem;
}

.down{
    cursor:pointer;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 10px;
    height: 2rem;
    text-transform: uppercase;
    padding: 0 1rem;
}
.video-content{
    background-color: #ededed;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
}

.iframe-content{
    background-color: #ededed;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
}


.banner-content{
    background-color: #ededed;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
}


.text-content{
    background-color: #ededed;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
}

.text-content div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 5px;
}

.cke_top {
  border-bottom: 1px solid #f7f7f7;
  background: #fefefe;
  padding: 6px 8px 2px;
  border-radius: 5px;
  white-space: normal;
}

.text-content .form-control {
    border-radius: 5px;
    border: 0;
}

.text-content .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ffffff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgb(0 123 255 / 25%);
    box-shadow: 0 0 0 0 rgb(248 248 248);
}


.grid-buttons{
    display: grid;
    gap: 1rem;
    flex-direction: column;
    flex-wrap: wrap;
    grid-template-columns: auto auto;
}

.item-select-type-button{
    cursor:pointer;
}

.item-select-type-button div{
    width:100%;
    -webkit-box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
    height: 100%;
    box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
}

.navs-popup{
    display: flex;
    gap: 2rem;
    align-content: center;
    align-items: center;
}

.img-category-selected {
    min-height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #00000057;
}


.category_parent {
    display:flex;
}

.category_parent > div {
    display:flex;
    align-items: center;
    opacity:0.5;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.category_parent > div.active {
    opacity:1;
}

.category_parent > div:not(:last-child):after {
    content: '|';
    margin: 0px 10px;
    color: #56565b;
    font-size: 20px;
}

.close_modal{
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #f8f8f8;
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-radius: 15px;
    outline: 0;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-height: 80vh;
    padding: 1rem;
}

.selection-colors{
    position: absolute;
    right: 7.2vw;
    transform: translateY(0);
    z-index: 7;
    background: #f8f8f8;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0px 8px 20px 0px rgb(68 67 67 / 12%);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.selection-colors.active{
    transform: translateY(4.7rem);
    opacity: 1;
    visibility: visible;
}


.color-selectable{
    padding: 1rem !Important;
    cursor:pointer !Important;
    /* border: 1px solid var(--primary-color); */
    color: #ffffff;
    border-radius: 5px;
}

.color-selectable.color-1{
    background-color:#56565b;
}

.color-selectable.color-2{
    background-color:#dc712e;
}

.color-selectable.color-3{
    background-color:#f0f0f0;
}

.color-selectable.color-4{
    background-color:#ffffff;
}

.banner-content .form-control{
        border-radius: 5px;
    border: 0;

}

.bg-info-text {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 1rem;
    gap: 1rem;
    display: grid;
    grid-template-columns: 70% auto;
}

.bg-seo-text {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 1rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}


.bg-nomination-text {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 1rem 0;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.form-control{
    border-radius: 5px;
    border: 0;
    height: 100%;
}

.nav-post .tab-post{gap: 1rem;}


.nav-post .tab-post span{
    opacity:0.5;
    border-radius: 0;
}

.nav-post .tab-post span.active {
    opacity: 1;
    border-radius: 10px 10px 0 0;
    background: #fff;
}
.bg-info-text div {
    border-radius: 5px;
}

.b-left-radius{
    border-top-left-radius:15px;
}

.text-uppercase{
    text-transform:uppercase;
}

.row-cards{
    position:relative;
    z-index:8;
}

.hide-dropzone{
    position:absolute;
    width: calc(100% - 2rem);
    height: calc(100% - 1.5rem);
    top: 1rem;
    left: 1rem;
    visibility: hidden;
    opacity: 0;
    background: #f8f8f89e;
    z-index: 10;
    transition:0.2s;
}

.hide-dropzone.visible{
    
    visibility: visible;
    opacity: 1;

}

.dropzone {
    margin-right: auto;
    margin-left: auto;
    padding: 50px;
    border: 2px dashed #2b2b2b;
    border-radius: 15px;
    -o-border-image: none;
    border-image: none;
    background: #2b2b2f1a;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100%;
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.grid-manage-media {
    display: grid;
    grid-template-columns: 71% auto;
    gap: 2rem;
    align-items: start;
}

.modal-xxl{
    max-width: 90vw;
}

.view-media.v_2{
    height:20vh;
}

.c-label{
    margin-top:1rem;
}

.input-b {
    -webkit-box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
    box-shadow: 0 0 0 0.2rem rgb(248 248 248);
    height: fit-content !important;
}

.images-gallery{
    gap: 1rem 1rem;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(8, 2rem);
    padding: 0;
    background-image: linear-gradient(rgb(255 255 255 / 60%), rgb(255 255 255 / 60%)), url(/media/bg_png.jpg);
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    margin-left: -10px;
    background-size: 250px;
    z-index: 1;
    padding-left: 2rem;
    align-items: center;
    padding-right: 1rem;
}

.miniature-gallery{
    width: 2rem;
    height: 2rem;
}
.info-media{
    overflow:scroll;
    max-height: 80vh;
    padding: 1rem;
    padding-bottom: 3rem;
}

.medias.gallery-media{
    max-height: 68vh;
}

.navs-media{
    padding:10px;
    display:flex;
    gap:1rem;
    height: fit-content;
    margin-bottom: 1rem;
}



.gallery-manage .kanban-container {
    display: grid;
    width: 100% !important;
    gap: 1rem;
    flex-wrap: wrap;
    grid-template-columns: repeat(6, 1fr);
    max-height: 65vh;
    overflow: scroll;
    padding: 0 10px 0 10px;
}


.gallery-manage .kanban-container .kanban-board{
    margin:0 !Important;
    cursor:pointer;
    border: 5px solid var(--default-color)00;
}

.gallery-manage .kanban-container .kanban-board .kanban-board-header {
    padding: 5px 10px  !important;
    display: flex;
    justify-content: flex-end;
    cursor: move;
}

.gallery-manage .kanban-container .kanban-board .kanban-board-header .kanban-title-board .tab-post {
    background: transparent;
    padding: 0;
}

.img-preview {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 !important;
    min-height: 100px;
}

.gallery-manage .kanban-container .kanban-board .kanban-item {
    user-select: none;
    pointer-events: none;
}

.delete-section-image{
    cursor: pointer;
    color: #56565b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    z-index: 5;
}
 
 
.gallery-manage .kanban-container .kanban-board.active {
   border-color: var(--default-color);
}


.gallery-manage .kanban-container .kanban-board .kanban-drag {
    min-height: 100px;
    padding: 10px;
}

* a {
    color: #2b2b2b;
    text-decoration: none;
    letter-spacing: 1px;
}

.p-20{
    padding:20px !important;
}

.dataTables_wrapper .dataTables_length {
    margin-bottom: 0;
}


div.table-responsive > div.dataTables_wrapper > div.row:first-child {
    margin: 0;
    background:#f8f8f8;
    padding:10px;
}

.dataTables_wrapper .dataTables_filter {
    margin-bottom: 0;
    margin-left: 0;
}

.action-buttons > a, .action-buttons > span{
    display:flex;
    align-items: center;
    align-content: center;
    border-radius: 10px;
    background-color: #f8f8f8;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    mix-blend-mode: multiply;
}

.rotate-icon > svg{
    transform:rotate(-90deg);
}

.inline-link-choice{
    margin-top: 1rem;
    width: 100%;
    display: grid;
    gap: 2rem;
    align-content: center;
    grid-template-columns: 2fr 0fr;
}

    .categories-tree {
        padding: 1rem;
        background: #fff;
    }
    
    .categories-tree h5{
        text-transform: uppercase;
        font-weight: bold;
        font-size:16px;
    }
    .category-item {
        padding: 2px 0;
    }
    
    .category-header {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .checkbox-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        flex: 1;
        margin: 0;
    }
    
    .category-name {
        font-size: 14px;
    }
    
    .toggle-btn {
        width: 20px;
        height: 20px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 12px;
        color: #666;
        transition: transform 0.2s;
    }
    
    .toggle-btn.active {
        transform: rotate(90deg);
    }
    
    .toggle-placeholder {
        width: 20px;
    }
    
    .children-container {
        transition: all 0.3s ease;
    }
    
    input[type="checkbox"] {
        cursor: pointer;
        border: 2px solid #2a2a2a;
        background: transparent;
        appearance: none;
        width: 1rem;
        height: 1rem;
        border-radius: 0.2rem;
    }
    
.page-wrapper .page-header {
    z-index: 99;
}

.no-border{
    border-radius:0;
}

.items-list{
    padding: 1rem;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    border-radius: 5px;
}

.items-list .item-list{
    display: flex;
    gap:1rem;
    background-color: #a3a3a357;
    padding: 1rem;
    border-radius: 5px;
    align-items: stretch;
    align-content: center;
}

.footer-list{
    display: flex;
    background-color: #ededed;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
    justify-content: flex-end;
}

.footer-list .button-backend{
    width:fit-content;
}



.item-list{
    
}

.icon-item-list{
    width: fit-content;
    background-color: #fff;
    height: fit-content;
    cursor: pointer;
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.content-list{
    width:100%;
}

.content-list div{
    display: flex;
    gap: 1rem;
    flex-direction: column;
    height: 100%;
}


.icon-item-list .image-choice{
    height:24px;
    width:24px;
    background-position:center;
    background-repeat: no-repeat;
}

.delete-item-list{
    cursor:pointer;
    padding: 0;
    display:flex;
    height: 100%;
    color: var(--primary-color);
    border-radius: 0;
    align-items: center;
}

.grid-iconimage{
        display: grid;
    grid-template-columns: repeat(2, 1fr);
        background: #ededed;
        border-radius: 0 0 5px 5px;
}

.buttons-grid{
    display: flex;
    gap: 1rem;
}

.management-gallery-content{
    display: flex;
}

.pretext-input{
    text-transform: uppercase;
    font-weight: bold;
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    text-wrap-mode: nowrap;
}

.pretext-input.full{
    width:100%;
}

.select-pages{
    text-transform: uppercase;
    font-weight: bold;
    font-size:14px;
    color: #2b2b2b;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/icons/plus.svg');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.select-pages:focus {
    color: #2b2b2b;
    
}

.select-pages option{
    text-transform: uppercase;
    font-weight: bold;
    font-size:14px;
        color: #2b2b2b;
}


.pages{
    position: absolute;
    padding: 1rem;
    top: 1.5rem;
    background: #fff;
    width: 100%;
    left: 0;
    overflow-y: scroll;
    height: 90px;
}

.sel-link-no-text {
    border: 0;
    padding: 0.5rem;
    border-radius: 5px;
    width: 100%;
}


.h5-b{
        text-transform: uppercase;
        font-weight: bold;
        font-size:16px;
        margin:0;
    }
    
.input-inline{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-top{
    gap:1rem;
}

.filter-categories{
    position:relative;
}

.v_filter{
    position: absolute;
    background: #fff;
    z-index: 9;
    top: 4rem;
    width: 100%;
    -webkit-box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
    box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
    transform: translateY(50%);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition:0.2s;
}

.v_filter.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.fake-select-categories {
    cursor: pointer;
    display: flex;
    transition: 0.2s;
    align-items: center;
    height: fit-content;
    gap: 1rem;
    border-radius: 10px;
    padding: 1rem;
    flex-direction: row-reverse;
    font-weight: bold;
    background: #f8f8f8;
    border: 2px solid;
    color: #2b2b2b;
    border-color: #f8f8f8;
    text-transform: uppercase;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.fake-select-categories svg{
    transition: 0.2s;
}

.fake-select-categories.open svg{
    transform:rotate(180deg);
}

.tab-post.v_2{
       justify-content: flex-end; 
}

.tab-post.v_2 .select-img {
    background: #f8f8f8;
   
}

.render-img{
    background-color: #ffffff;
    margin-top: 1rem;
}

.render-img .input-sel.single {
    background-size: contain !important;
}

.bg-menu-comp {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 1rem;
    gap: 1rem;
    display: grid;
    grid-template-columns: 40% auto;
}

.checkbox-item{
    padding: 0;
}

.checkbox-header {
    display: flex;
    align-items: center;
    gap: 4px;
}

.checkbox-name {
    font-size: 14px;
}

.sel-item-menu{
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.item-menu-choice{
    background:#fff;
    border: 2px solid;
    border-radius: 5px;
}

.header-item-menu{
    padding: 0.5rem 1rem;
    color: #2b2b2b;
    background: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 2px solid;
}

.header-item-menu p{
    margin:0;
}

.body-item-menu{
    padding:1rem;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.custom-url{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 0 0.2rem rgb(248 248 248);
    border-radius: 5px;
}

.footer-item-menu{
    padding: 0.5rem 1rem;
    display: flex;
}



/*menu sortable*/

.container-menu-element {padding: 1rem;background: #fff;border-radius: 5px;}

.menu-list{
    padding: 0;
}
.container-menu-element ul {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.container-menu-element ul.menu-list li {
  display: block;
}
.container-menu-element ul.menu-list > li .menu-item-header {
  background: #f8f8f8;
  display: block;
  font-size: 14px;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  border-color: #2b2b2b;
  border: 2px solid;
  font-weight: bold;
  z-index: 10;
  position: relative;
}
.container-menu-element ul.menu-list > li .menu-item-header:hover {
  cursor: move;
}
.container-menu-element ul.menu-list ul {
  margin-left: 20px;
  margin-top: 5px;
}
.container-menu-element ul.menu-list ul li a {
}
.container-menu-element li.menu-highlight {
  border: 1px dashed red !important;
  background: #f5f5f5;
}

.menu-dragdrop{
    border-color: #2b2b2b3b;
    border: 2px dashed;
    border-radius: 5px;
}






.form-group:last-child{
    margin-bottom:0;
}



/*.item-menu {*/
/*    background: #fff;*/
/*    border: 1px solid #ddd;*/
/*    margin-bottom: 10px;*/
/*    border-radius: 3px;*/
/*}*/

.menu-item-header {
    padding: 0;
    background: #fafafa;
    border-bottom: 1px solid #ddd;
}


.menu-item-title {
    display: flex;
    align-items: center;
    cursor: move;
    gap: 1rem;
}

.menu-item-title .handle {
    margin-right: 10px;
    color: #aaa;
}

.menu-item-title span {
    flex-grow: 1;
    font-weight: 500;
}

.menu-item-content{
    position:relative;
    z-index:8;
}

.menu-item-controls {
    display: flex;
    gap: 0.5rem;
    align-content: center;
    align-items: center;
}

.delete-item{
    display: flex;
    align-items: center;
}

.item-menu .card-body{
    /* border-color: #2b2b2b; */
    /* border-bottom: 2px solid; */
    border-radius: 5px;
    /* border-right: 2px solid; */
    /* border-left: 2px solid; */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-top: -5px;
    padding: 1rem;
    background: #f8f8f8;
    z-index: 8;
    margin-bottom: 0;
    box-shadow: none;
}


.btn-toggle {
    border-radius: 5px;
    flex-direction: row-reverse;
    font-weight: bold;
    background: #2b2b2b;
    border: 2px solid;
    color: #fff;
    display: flex;
    padding: 0;
}

.btn-toggle svg{
    transition:0.2s;
}

.btn-toggle:hover {
    background-color: #fff !important;
    color: #2b2b2b !important;
    border-color: #2b2b2b !important;
}

.open_item svg{
    transform:rotate(180deg);
}

.input-button:focus {
    outline-color: transparent;
    border: 0;
    outline: none !important;
}

.form-group.v_menu{
    margin-bottom: 0.5rem;
}




.form-group.v_menu .inline-input-menu{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background:#fff;
    justify-content: flex-start;
    box-shadow: 0 0 0 0.2rem rgb(248 248 248);
    border-radius: 5px;
}

.link-inline .inline-input-menu{
    width: 100%;
    position: relative;
    display: grid;
    align-items: center;
    background:#fff;
    justify-content: flex-start;
    box-shadow: 0 0 0 0.2rem rgb(248 248 248);
    border-radius: 5px;
    display: grid;
    grid-template-columns: auto 1fr;
}

.link-inline .inline-input-menu .form-control:focus{
    outline: none;
    box-shadow: none;
}

.border-s{
    border-color: #2b2b2b;
}


input:checked[type=checkbox] {
    background-size: 13px 13px;
    background-position: center;
    background-image: url(/icons/check_ff.svg);
    background-repeat: no-repeat;
}

.form-check-label{
    padding:0 !important;
}


.parallax-sel-primary{
    background: #fff;
    margin-top:1rem;
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    gap: 2rem;
}
.parallax-sel-primary .selections{
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin:0;
    flex-direction: column;
    padding: 0 10px;
    align-items: flex-start;
}

.parallax-sel-primary .category-header{
       padding: 0 10px;
   
}

.flex-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.flex-buttons .button-backend{
    border-color:#000;
}


.parallax-sel-primary .selections .selection-parallax {
    width: 100%;
        justify-content: center;
}

.width-100{
    width:100%;
}

.header-achievements {
    display: flex;
    justify-content: space-between;
}

.header-achievements .navs-media{
    padding:0;
    margin:0;
}



.achievements .info-media{
    max-height: fit-content;
   
}



.media-achievements{
    display: flex;
    flex-direction: row;
    gap: 1rem 0;
    position: relative;
    margin: 0;
    flex-wrap: wrap;
}


.media-achievements.gallery-media {
    max-height: fit-content;
}


.achievements .gallery-manage .kanban-container {
    max-height: fit-content;
}


/*configuration*/

.buttons-configuration{
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.button-config{
    cursor: pointer;
    width: 100%;
    display: flex;
    transition: 0.5s;
    align-items: center;
    gap: 2rem;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 1rem;
    font-weight: bold;
    background: #f8f8f8;
    color: #2b2b2b;
    border-color: #f8f8f8;
    border: 2px solid;
    justify-content: center;
}

.button-config.v-2{
    
    background: #2b2b2b;
    color: #f8f8f8;
    border: 2px solid;
}