/* cards  / lists */


:root {

    /* fonts and body */
    --font-family-base: "Poppins", sans-serif;
    --font-family-heading: "Barlow Semi Condensed", sans-serif;
    --font-weight: 200;
    --text-color: #737791;
    --font-size-base: 1rem;
    --label-color: #5e5e5e;

    /* Backgrounds */
    --background-color: #f0f2f5;

    /* Primary theme */
    --primary-color: #106382;
    --primary-hover: #172F2D;


    --primary1: #14526F;
    --primary1-light: #C6DEE9;

    --primary2: #1F3231;
    --primary2-light: #CCE1DF;

    --primary3: #4EABA7;
    --primary3-light: #BFE8E6;

    --primary4: #4DD5E7;
    --primary4-light: #DBF8FC;

    --primary5: #85AFBD;
    --primary5-light: #E0EFF4;

    --primary6: #A3A3A3;
    --primary6-light: #EBEFF1;

    /* Primary Button Colors */
    --primary-btn-bg-gradient: linear-gradient(
        263deg,
        #1495B6 -2.24%,
        #172F2D -2.24%,
        #1495B6 51.33%,
        rgba(1, 164, 155, 0.55) 95.79%,
        #01A49B 104.89%,
        #14526F 104.89%
    );
    
    --primary-btn-hover-bg-gradient: linear-gradient(
        263deg,
        #14526F -2.24%,
        #01A49B -2.24%,
        #1495B6 51.33%,
        rgba(1, 164, 155, 0.75) 95.79%,
        #1495B6 104.89%,
        #172F2D 104.89%
    );

    --primary-btn-text-color: #fff;
    --primary-btn-hover-text-color: #fff;


    /* Primary theme */
    --secondary-color: #00BED6;

    --secondary: #14526F;
    --secondary1-light: #C6DEE9;

    --secondary2: #C8A155;
    --secondary2-light: #FFF4DE;

    --secondary3: #3CD856;
    --secondary3-light: #DCFCE7;

    --secondary4: #FF5759;
    --secondary4-light: #FFE8E8;

    --secondary5: #00BED6;
    --secondary5-light: #D9F5F9;

    --secondary6: #BF83FF;
    --secondary6-light: #F3E8FF;



    /* Secondary Button Colors */
    --secondary-btn-text-color: #fb8c00;
    --secondary-btn-bg-color: #f57c00;
    --secondary-btn-hover-text-color: #fb8c00;
    --secondary-btn-hover-bg-color: #f57c00;

    /* Secondary Theme */
    

    /* Success theme */
    --success-color: #43a047;
    --success-hover: #388e3c;
    --success-text-color: #fff;

    /* Warning theme */
    --warning-color: red;
    --warning-hover: #0097a7;
    --warning-text-color: #fff;

    /* Link colors */
    --link-color: #007bff;
    --link-hover-color: #0056b3;

    /* Border radius, shadows, etc (optional) */
    --btn-border-radius: 4px;
    --btn-padding: 6px 12px;


    /* Heading font sizes */
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.5rem;
    --h5-font-size: 1.25rem;
    --h6-font-size: 1rem;

    /* Heading colors (optional) */
    --heading-color: #333;
    --h1-color: var(--heading-color);
    --h2-color: var(--heading-color);
    --h3-color: var(--heading-color);
    --h4-color: var(--heading-color);
    --h5-color: var(--heading-color);
    --h6-color: var(--heading-color);


    --font-size-h1: calc(var(--font-size-base) * 2.5);
    --font-size-h2: calc(var(--font-size-base) * 2);
    --font-size-h3: calc(var(--font-size-base) * 1.75);
    --font-size-h4: calc(var(--font-size-base) * 1.5);
    --font-size-h5: calc(var(--font-size-base) * 1.25);
    --font-size-h6: calc(var(--font-size-base) * 1);

    /* === Inputs === */
    --input-bg: #fff;
    --input-border: #ccc;
    --input-border-focus: #007bff;
    --input-radius: 4px;
    --input-padding: 8px 12px;
    --input-font-size: 14px;
    --input-text-color: #333;

}
a{
    color: var(--primary-color);
}
a:hover{
    color: var(--primary-hover);
}
.font-md{
    font-size: 0.9rem;
}
.text-secondary{
    color: var(--secondary-color) !important;
}
.text-primary{
    color: var(--primary-color) !important;
}
.bg-primary1-light{
    background: var(--primary1-light);
}
.bg-primary1{
    background: var(--primary1);
}
.text-primary1{
    color: var(--primary1);
}


.bg-primary2-light{
    background: var(--primary2-light);
}
.bg-primary2{
    background: var(--primary2);
}
.text-primary2{
    color: var(--primary2);
}

.bg-primary3-light{
    background: var(--primary3-light);
}
.bg-primary3{
    background: var(--primary3);
}
.text-primary3{
    color: var(--primary3);
}

.bg-primary4-light{
    background: var(--primary4-light);
}
.bg-primary4{
    background: var(--primary4);
}
.text-primary4{
    color: var(--primary4);
}

.bg-primary5-light{
    background: var(--primary5-light);
}
.bg-primary5{
    background: var(--primary5);
}
.text-primary5{
    color: var(--primary5);
}

.bg-primary6-light{
    background: var(--primary6-light);
}
.bg-primary6{
    background: var(--primary6);
}
.text-primary6{
    color: var(--primary6);
}


.bg-secondary2-light{
    background: var(--secondary2-light);
}
.bg-secondary2{
    background: var(--secondary2);
}
.text-secondary2{
    color: var(--secondary2);
}

.bg-secondary3-light{
    background: var(--secondary3-light);
}
.bg-secondary3{
    background: var(--secondary3);
}
.text-secondary3{
    color: var(--secondary3);
}

.bg-secondary4-light{
    background: var(--secondary4-light);
}
.bg-secondary4{
    background: var(--secondary4);
}
.text-secondary4{
    color: var(--secondary4);
}

.bg-secondary5-light{
    background: var(--secondary5-light);
}
.bg-secondary5{
    background: var(--secondary5);
}
.text-secondary5{
    color: var(--secondary5);
}

.bg-secondary6-light{
    background: var(--secondary6-light);
}
.bg-secondary6{
    background: var(--secondary6);
}
.text-secondary6{
    color: var(--secondary6);
}

.form-control-label{
    color: var(--label-color);
    font-weight: 400;
}
.fw-medium{
font-weight: 400;
}

.text-warning{
    color: var(--warning-color);
}
.text-success{
    color: var(--success-color);
}
html {
    font-size: 14px; /* 1rem = 16px */
}
body {
    font-size: var(--font-size-base);
    font-weight: 200 !important;
    color: var(--text-color);
    font-family: var(--font-family-base);
    
}

h1 , h2 , h3, h4, h5, h6 ,
.h1, .h2, .h3 ,.h4 , .h5 , .h6{
    font-family: var(--font-family-heading);    
}

h1, .h1 {
    font-size: var(--font-size-h1);
}

h2, .h2 {
    font-size: var(--font-size-h2);
}

h3, .h3 {
    font-size: var(--font-size-h3);
}

h4, .h4 {
    font-size: var(--font-size-h4);
}

h5, .h5 {
    font-size: var(--font-size-h5);
}

h6, .h6 {
    font-size: var(--font-size-h6);
}
p{
    font-size: var(--font-size-base);
}
.main-header{
    background: white;
}
.content-wrapper {
    background-color: #f0f2f5;
}

span.right {
    margin-right: 30px;
    text-align: center;
}

li.nav-item {
    line-height: 1.0 !important;
}

.bg-primary {
    background: linear-gradient(60deg, #ffa726, #fb8c00);
}

.bg-success {
    background: linear-gradient(60deg,#66bb6a,#43a047)
}

.bg-gray{
    background: linear-gradient(60deg, #6f6f6f, #7f7f7f)
}

.bg-light-gray{
    background: linear-gradient(60deg, #9c9c9c, #b1b1b1)
}

.bg-warning {
    background: linear-gradient(60deg,#26c6da,#00acc1);
}

.card-header {
    font-size:1.125rem;
    font-weight: 400 !important;
    color: #555 ;
    background-color: inherit;
    border-bottom: inherit;
    text-transform: uppercase;
    line-height: 45px;
}

.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}

.border-bottom-dashed{
    border-bottom: 1px dashed #e4e4e4;
}

.btn-primary , .channel-managment-add-categories .btn-secondary {
    background:var(--primary-btn-bg-gradient);
    color: #fff !important;
    border-radius: .25rem;
    border: none;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    font-family: var(--font-family-heading);
}
.btn-primary:hover,
.channel-managment-add-categories .btn-secondary:hover {
    background: var(--primary-btn-hover-bg-gradient) ;
    color: #fff !important;
    opacity: 0.9; /* optional subtle effect */
   
    transition: all 0.3s ease;
}
.btn-outline-primary , .btn-outline-primary.btn:not(:disabled):not(.disabled) {
    position: relative;
    background: #fff;
    color: #1495B6;
    border-radius: .25rem;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-heading);
    z-index: 1;
    border: none;
    overflow: hidden; /* keep rounded corners */
    text-transform: uppercase;

}
.btn-outline-primary.small , .btn-outline-primary.small.btn:not(:disabled):not(.disabled){
    padding: 6px 9px;
    font-size: 11px;
}
.btn-outline-primary.rounded{
    border-radius: 20px !important;
}
.btn-outline-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: inherit;
    background: linear-gradient(
        263deg,
        #1495B6,
        #172F2D,
        #01A49B,
        #14526F
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;

}
.btn-outline-primary:hover , .btn-outline-primary.small.btn:not(:disabled):not(.disabled):hover , .channel-managment-add-categories .btn-secondary:hover {
    background: linear-gradient(
        263deg,
        #1495B6,
        #172F2D,
        #01A49B,
        #14526F
    );
    color: #fff;
}
/* .btn-outline-primary:hover {
    background: linear-gradient(
        263deg,
        #1495B6,
        #172F2D,
        #01A49B,
        #14526F
    );
    color: #fff;
} */

.btn-secondary{
    background:linear-gradient(60deg,#26c6da,#00acc1);
    color: #fff !important;
    border-radius: .25rem;
    border-color: #26c6da !important;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.btn-succes{
    background: linear-gradient(60deg, #26c6da, #00acc1);
    color: #fff !important;
    border-radius: .25rem;
    border-color: #26c6da !important;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

button {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

.btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active {
    background: var(--primary-btn-bg-gradient);
    color: #fff !important;
    border-color: var(--primary-btn-bg-gradient);
    text-transform: uppercase;
    /* padding: 10px; */
    margin-left: 0;
    outline: none;
}

span.current {
    font-weight: bold;
    margin: 5px;
}

span.page, span.next, span.last, span.first, span.previous {
    margin: 5px;
}
.table-bordered td, .table-bordered th{
    border: 1px solid #dcdcdc;
}
th {
    font-weight: 500;
    text-transform: uppercase;
}
.table thead th{
    border-bottom: none;
}


.fa-times-circle, .fa-plus-circle{
    margin-right: 7px;
}


.icon-wrapper {
    height: 27px;
    width: 27px;
    display: inline-flex;
    align-items: center;
    border: 1px solid;
    border-radius: 30px;
    justify-content: center;
    border: none;
}
.statics_overview_wrapper .icon-wrapper i{
    font-size: 20px;
    color: white;
}
.statics_overview_wrapper .summary-inner{
    margin-bottom: 0;
    height: 100%;
}
.icon-wrapper i{
    font-size: 13px;
}
.icon-wrapper.edit{
    border-color: var(--success-color);
}
.icon-wrapper.edit i{
    color: var(--success-color);
}
.icon-wrapper.delete{
    border-color: var(--warning-color);
}
.icon-wrapper.delete i{
    color: var(--warning-color);
}
.active{
    border-radius: 5px;
    display: inline-flex;
}

.visible	{
    border-radius: 5px;
    display: inline-flex;
}

.col-form-label {
    text-transform: uppercase;
    padding-top:1px;
}

input.form-check-input {
    margin-left: -20px;
    margin-top: 5px;
    /* margin-right: 20px; */
}

.form-check-label {
    /* margin-bottom: 0; */
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 2px;
}

.form-disabled-no-bg{
    background-color: white !important;
    border: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
    background-color:  #fb8c00;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #00acc1;
    border-color: #00acc1;
}

.form-textarea{
    min-height: 150px;
}
.form-group{
    margin-bottom: 19px;
}
.form-control-label{
    margin-bottom: 2px;
    font-size: 1rem;
}
.h5, h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 30px;
}

p.switch {
    display: contents;
    font-size: 12px;
    font-weight: 400;
}

.breadcrumb {
    background-color: inherit;
    padding-top:10px;
    padding-bottom: inherit;
    font-weight: 400;
    padding-left: 0px;
    font-size: 1.2rem;
    font-family: var(--font-family-heading);
}

.breadcrumb a{
    color: var(--primary4);
}

a {
    color: #6f6f6f;

}

td.cat {
    text-transform: uppercase;
}

.child, td.child {
    background-color: inherit !important;
    padding-left:30px;
    font-weight: bold;
}

.grandchild, td.grandchild {
    background-color:inherit !important;
    padding-left:60px;
}

.table-responsive {
    background-color: #fff;
}

p.title {
    margin-left: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.group {
    border: solid 1px #00acc1;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

hr {
    margin-top: 5px;
    margin-bottom: 5px;
    border: 0;
    border-top: 1px solid #43a047;
}

.bold.margin {
    margin-left: 15px;
}

.bold {
    text-transform: uppercase;
}

.table-bordered.csv {
    background-color: #dce6e6;
    border: 5px solid #43a047;
}

span.separator {
    margin-left: 5px;
}

input.template-checkbox.form-check-input:after {
    width:30px;
    height:30px;
    background-color: lime;
}

.menu-active-title i {
    color: #dce6e6;
}



.white-underlined {
    color: #fff;
    text-decoration: underline;
}

.page-item.active .page-link {
    background-color: #7f7f7f;
    border-color: #7f7f7f;
}
.page-link {
    color: #7f7f7f;
}

img.print-logo {
    margin-top: 10px;
}

.print-header {
    font-size: 1.125rem;
    font-weight: 400 !important;
    color: #555;
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

i.fa.fa-fw.fa-user-plus, i.fa.fa-fw.fa-id-badge, i.fa.fa-fw.fa.fa-users, i.fa.fa-fw.fa-gift {
    font-size: 50px;
    margin-top: 30px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.h2.margin {
    margin-top: 10px;
}

/* 360 statistics page */
.statistics-wrapper {
    margin-bottom: 30px;
}
.statistics-wrapper .card-body-icon{
    position: absolute;
    z-index: 0;
    top: 0;
    right: auto;
    font-size: 5rem;
    /* transform: rotate(15deg); */
    bottom: 0;
    left: 20px;
    margin: auto;
    display: flex;
    align-items: center;
}

.statistics-wrapper .card-body-icon i{
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    opacity: 0.9;
}

.statistics-wrapper .content{
    margin-left: 70px;
    text-align: right;
}

.statistics-wrapper .content .h2{
    margin-bottom: 0;
    font-weight: 700;
}

.statistics-wrapper .content .h6{
    margin-bottom: 0;
    font-weight: 400;
    text-decoration: underline;
    font-style: italic;
    color: #555;
}
.statistics-wrapper  .card{
    background: white !important;
    border: none;
    box-shadow: 2px 3px 7px 0px rgba(0, 0, 0, 0.05);
    color: #fb8c00 !important ;
}
.image-content-wrapper{
    background: white !important;
    border: none;
    box-shadow: 2px 3px 7px 0px rgba(0, 0, 0, 0.05);
}
.statistics_overview_wrapper {
    border: none;
    background: no-repeat;
    margin-bottom: 30px;
}
.statistics_overview_wrapper .card-body{
    padding: 0;
}
.statistics_screens_wrapper {
    margin-bottom: 0;
    border-top: 2px double #ccc;
    padding-top: 30px;
}
/* .statistics_card-header{
    background: #e69402;
    padding: 13px 13px;
    font-weight: 500 !important;
    margin-bottom: 5px;
    color: white;
    font-size: 15px;
    height: auto;
    min-height: unset;
    line-height: 1.6;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    text-transform: uppercase;
} */

.statistics_overview_wrapper .canvas_wrapper{
    background: white;
    padding: 10px;
    margin-bottom: 5px;
}
.statistics_screens_wrapper{
    margin-bottom: 40px;
}



.image-content-wrapper .image-wrapper img{
    width: 100%;
}


.coe-thumbnail-wrapper .form-control-file , .custom-file-input {
    padding: .375rem 10px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    cursor: pointer;
    width: 100%;
    color: #495057;
    opacity: 1;
    height: auto;
    font-size: 12px;
}

/* .custom-file-input:hover {
  border-color: #4a90e2;
} */

form[name="coe_media_link"] .form-group {
    margin-bottom:24px;
}
form[name="coe_collections_link"]{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
form[name="coe_media_link"] .form-control-label , form[name="channel_vendors_edit"] .form-control-label
,form[name="channel_vendors"] .form-control-label , form[name="vendor_search"] .form-control-label  ,
.date-wrapper .col-form-legend  , form[name="banner"] , .form-group legend.form-control-label {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
}
.vendor-checkbox input.form-check-input{
    margin-left: 0;
    margin-top: 0;
    left: 0;
    top:3px;
}
.vendor-checkbox .form-check-label{
    margin:0;
}

/* Hide the native checkbox */
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

/* Checkbox checked state */
.custom-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Checkmark (✓) when checked */
.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 0;
    left: 4px;
    font-size: 13px;
    color: white;
    line-height: 1;
    left: 2px;
    line-height: 15px;
}

.vendor-checkbox .form-check{
    padding-left: 0;
}
.catalog-summary-wrapper .col{
    width: 200px;
    flex-grow: 0;
    flex-basis: initial;
}   

.summary-inner {
    padding: 13px;
    border-radius: 12px;
    margin: 0 0 15px;
}

.summary-inner  .icon-wrapper {
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 13px;
}
.summary-text{
    font-size: 1.2;
}
.text-underline{
    text-decoration: underline  ;
}
.catalog-summary-wrapper-no-margin{
    margin-bottom: 20px;
}
.catalog-summary-wrapper-no-margin .dashboard-content-wrapper{
    height: 100%;
    margin-bottom: 0;
}


.dashboard-content-wrapper{
    background: white;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 2px 3px 3px 0px rgb(48 37 37 / 14%);
}
.custom-select-wrapper {
    position: relative;
    width: 100%; /* or your desired width */
    max-width: 300px;
  }
  
  .custom-select {
    appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: none;
  height: auto !important;
  padding: 6px 25px 6px 10px; /* right padding for icon */
  font-size: 14px;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.4' d='M9.01732 13.2298L12.8073 8.17977H18.4173C19.3773 8.17977 19.8573 9.33977 19.1773 10.0198L13.9973 15.1998C13.1673 16.0298 11.8173 16.0298 10.9873 15.1998L9.01732 13.2298Z' fill='%2301A49B'/%3E%3Cpath d='M6.57859 8.17998H12.8086L9.01859 13.23L5.80859 10.02C5.13859 9.33998 5.61859 8.17998 6.57859 8.17998Z' fill='%2314526F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 20px 20px;
  text-align: right;
  }
  .custom-select:focus{
    box-shadow: none !important;
  }
  
  /* Custom dropdown icon */
  .custom-select-wrapper::after {
    content: '';
    background: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat center;
    width: 16px;
    height: 16px;
  }
  .user-wrapper{
    display: flex;
    align-items: center;
  }
  .user-image {
    height: 40px;
    width: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 7px;
    padding: 2px;
}
  .user-image img{
    max-width: 100%;
  }
  .user-wrapper .edit-feature {
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.2;
}
.user-wrapper .edit-feature span{
    color: var(--text-color);
    font-weight: 300;
}

.arrow-wrapper small{
    display: flex;
    align-items: center;
}

.arrow-wrapper small svg{
    margin-right: 5px;
}

.form-select{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.select-form-wrappper{
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
}

.catalog-summary-wrapper thead tr{
    color: white;
    background: #3ca3bb;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    overflow: hidden;
    font-family: var(--font-family-heading);
}

.catalog-summary-wrapper .table{
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 7px;
    overflow: hidden; 
}
.catalog-summary-wrapper .table tr:first-child th:first-child {
    border-top-left-radius: 7px;
  }
  .catalog-summary-wrapper .table tr:first-child th:last-child {
    border-top-right-radius: 7px;
  }
  .catalog-summary-wrapper .table tr:last-child td:first-child {
    border-bottom-left-radius: 7px;
  }
  .catalog-summary-wrapper .table tr:last-child td:last-child {
    border-bottom-right-radius: 7px;
  }
.checkbox-wrapper{
    display: flex;
    align-items: center;
}
.checkbox-wrapper .form-check-label , form[name="coe_collections_link"] .form-check-label , .checkbox-custom-form .form-check-label  {
    /* margin-bottom: 0; */
    margin-right: 10px;
    margin-left: 0;
    margin-top: 0;
}
.checkbox-wrapper  input.form-check-input  ,  form[name="coe_collections_link"] input.form-check-input , .checkbox-custom-form input.form-check-input  {
    margin-left: 0;
    margin-top: 4px;
    position: relative;
    accent-color: var(--primary-color);
}
.checkbox-wrapper .form-check ,  form[name="coe_collections_link"]  .form-check  , .checkbox-custom-form  .form-check {
    position: relative;
    display: block;
    padding-left: 0;
}

.catalog-summary-wrapper .pagination{
    margin-bottom: 0;
    margin-top: 20px;
    justify-content: flex-end;
}
.catalog-summary-wrapper .pagination .page-item:first-child .page-link{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.catalog-summary-wrapper .pagination  .page-item:last-child .page-link{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.catalog-summary-wrapper .pagination  .page-link {
    padding: 4px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.catalog-summary-wrapper .pagination ul.li.disabled, .catalog-summary-wrapper .pagination ul.li.active, .catalog-summary-wrapper .pagination li{
    margin:0 ;
}
.catalog-summary-wrapper .pagination .page-item.active .page-link{
    background-color: var(--primary-color);
}

.custom-form-wrapper #product , .custom-form-wrapper #projects_edit , .custom-form-wrapper #project_promo_page ,
.custom-form-wrapper #vendor_video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.custom-form-wrapper #product .form-group , .custom-form-wrapper #projects_edit .form-group , 
.custom-form-wrapper #project_promo_page  .form-group , .custom-form-wrapper #vendor_video  .form-group{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.custom-form-wrapper #product .form-group textarea , .form-group textarea , .tox-tinymce{
    min-height: 160px;
    display: block;
    width: 100%;
    border: 1px solid #ced4da !important;
    padding: .375rem .75rem;
    color: #495057 ;
    border-radius: 0.25rem !important;
}

.form-date-wrapper .form-inline{
    width: 100%;
    display: flex;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    overflow: hidden;
}
.form-date-wrapper .form-inline select{
border-right: 1px solid #ced4da;
    border-radius: 0;
    text-align: left;
    padding: .375rem .75rem;
    width: 33.33%;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
}
.form-date-wrapper .form-inline select:last-child{
    border-right: 0;
}

.form-group  .banner-wrapper{
    border: 1px solid #ced4da;
    border-radius: .25rem;
    
}

.radio-button-payment-wrapper .checkbox-wrapper{
    flex-direction: column;
    align-items: start;
}
.radio-button-payment-wrapper .checkbox-wrapper hr{
    margin-top: 11px;
    margin-bottom: 12px;
    border: 0;
    border-top: 1px dashed #dddddd;
    display: block;
    /* height: 10px; */
    clear: both;
    width: 100%;
}   

.radio-button-payment-wrapper .group {
    border: solid 1px #578b92;
    padding: 15px;
    margin-bottom:20px;
}

.radio-button-payment-wrapper .col-3{
    padding-right: 10px;
    padding-left: 10px;
}

.enable-icon-wrapper i{
    font-size: 16px;
    color: var(--warning-color);
}

.disable-icon-wrapper i{
    font-size: 16px;
    color: var(--success-color);
}
.box-iso{
    --c:#4be6ff;
    position:relative;
    display:inline-block;
    padding:24px 32px;
    color:#fff;
    background:var(--c);
    border-radius:10px;
    box-shadow: 0 16px 24px rgba(0,0,0,.25);
  }
  .box-iso::before, .box-iso::after{
    content:"";
    position:absolute; z-index:-1; border-radius:10px;
    background: var(--c);
  }
  .box-iso::before{                 /* right side */
    inset: 8px -8px -8px 60%;
    filter: brightness(.85);
    transform: skewY(-8deg);
    box-shadow: 8px 12px 18px rgba(0,0,0,.18) inset;
    height: 93%;
  }
  .box-iso::after{                  /* bottom side */
    inset: 60% 8px -8px 8px;
    filter: brightness(.75);
    transform: skewX(-8deg);
    box-shadow: 8px 12px 18px rgba(0,0,0,.22) inset;
    width: 93%;
  }
    .login-input-wrapper{
        background: #f5f5f5;
    }
    .login-input-wrapper {
        background: #ebebeb;
        padding: 11px;
        border-radius: 5px;
    }
    .login-input-wrapper input ,  .login-input-wrapper input:focus{
        border: none !important;
        outline: none;
        background: none !important;
        padding: 0 !important;
    }
    .login-input-wrapper label{
        color: var(--text-color);
    }

    .channel-managment-add-categories textarea#project_category_content_content{
        display: none;

    }

    .channel-managment-add-categories #project_category_content_content{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }