/*global*/
html, body {
    height: 100%;
}
body {
    font-family: 'Roboto', sans-serif;
    background: #E5E5E5;
}

.preview-delete-icon {
    position: absolute;
    top: 10px; /* adjust as needed */
    right: 10px; /* adjust as needed */
    background-color: grey; /* grey background */
    color: white; /* white text */
    padding: 14px;
    border-radius: 7px; /* makes it circular */
    text-decoration: none; /* removes underline from the link */
    cursor: pointer; /* indicates it's clickable */
    font-size: 12px; /* adjust size as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; /* adjust size as needed */
    height: 20px; /* adjust size as needed */
}

.preview-delete-icon:hover {
    background-color: lightcoral; /* black color on hover */
}

    .image-container {
        position: relative;
        display: inline-block; /* Allows the container to fit the content */
    }
    .close-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #ffffff;
        color: #ff0000; /* Red color for the 'X' */
        border-radius: 50%; /* Optional: for rounded corners */
        padding: 0 5px; /* Some padding to make it look nicer */
        cursor: pointer; /* Change mouse cursor on hover */
        line-height: 1; /* Keep the 'X' vertically centered */
    }
    .close-icon:hover {
        background-color: #f1f1f1; /* Optional: slightly different background on hover */
    }
.my-custom-button {
    /*margin-left: 5px;
    /*background-color: red; /* or your initial color */
    /*color: white; /* if your text is white */
    /* other properties */
    transition: background-color 0.4s;
}

.my-custom-button:hover, .my-custom-button:focus {
    /*filter: brightness(80%); /* or darken(red, 10%) for a darker red; you can use specific color codes for accuracy */
    color: white; /* optional: if you want the text color to change on hover */
    background-color: #B0000F;
}

.header-divider {
            /* Adjusting the gradient to keep the red longer */
        background: linear-gradient(to bottom, grey 60%, white 100%);
        
        /* Padding around the text */
        padding: 10px;

        /* Centers the text horizontally */
        text-align: center;

        /* Rounded corners at the bottom */
        border-radius: 0 0 5px 5px;

        /* Space below the divider */
        margin-bottom: 20px;

        /* Text styling */
        color: white;  /* Keeping text color black for contrast */
        font-family: 'Arial', sans-serif;
        font-size: 1.2em;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-weight: bold;
        margin: 0;
        line-height: 2.0;

        /* Adding a shadow to the text for better visibility */
        text-shadow: 2px 2px 4px #000000;  /* This adds a dark shadow to the text */
        
        /* Adding opacity */
        opacity: 0.7; /* Adjust as needed to achieve your preferred level of transparency */


        /* Adding backdrop filter for the blurry effect */
        backdrop-filter: blur(10px); /* This creates the blurry effect */
        }

        .asset-container {
        /* Black border */
        border: 2px solid #007000;

        /* Horizontal gradient from grey to white */
        background: linear-gradient(to right, #007000 0%, white 20%);


        /* Adding opacity */
        opacity: 1; /* Adjust as needed to achieve your preferred level of transparency */

        /* Padding for the content inside the container */
        padding: 10px;

        /* Optional: if you want rounded corners */
        border-radius: 0px;

        /* Optional: Providing some space to avoid elements sticking together */
        margin: 10px 0;
    }
.modal-content {
    box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, 0.2);
}
.modal-content input {
    border: none;
    border-bottom: 1px solid #000000;
    line-height: 36px;
    width: 100%;
}
input:focus {
    outline: none;
}
.search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}
.search-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}
.search-input::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}
.search-modal-content {
    padding: 35px;
    background: #eee;
    border-radius: 5px;
}
.s-data-image-box {
    max-height: 135px;
    overflow: hidden;
}
.s-data-image-box img {
    width: 100%;
    height: auto;
}
.s-item-box {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}
.search-items {
    font-size: 14px;
}
.search-result-close {
    position: absolute;
    color: #000;
    font-weight: bold;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
/*nav*/
nav {
    background: linear-gradient(180deg, #000000 0%, #252525 100%);
    width: 290px;
    position: fixed;
    padding: 20px 0 50px 0px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    overflow: auto;
}
nav ul {
    padding: 0;
    margin: 50px 0 0;
}
nav ul li {
    list-style: none;
    line-height: 52px;
    padding-left: 50px;
    position: relative;
}
nav ul li.active::before {
    content: "";
    width: 7px;
    background: #E30614;
    position: absolute;
    left: 0;
    height: 100%;
}
nav img {
    margin-left: 50px;
}
.add-category-btn {
    background: #E30614;
    color: #E9E9E9;
    line-height: 36px;
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
    display: block;
}
.copyright {
    font-weight: normal;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #242424;
    text-align: center;
    padding-bottom: 10px;
}
nav a {
    color: #fff;
    text-decoration: none;
}
.breadcrumb-text, nav .active a, nav li a:hover {
    color: #E30614;
}
.breadcrumb-text {
    font-size: 20px;
}
/*nav*/
/*comments*/
.comments-box {
    background: linear-gradient(180deg, #000000 0%, #252525 100%);
    width: 360px;
    position: fixed;
    right: 0;
    top: 0;
    padding: 0 15px 15px 15px;
    color: #fff;
    font-size: 14px;
    overflow: auto;
    transition: all 0.75s ease-in-out;
    z-index: 1;
}
.comments-header {
    border-bottom: 1px solid #E30614;
    padding-top: 15px;
}
.comment-title {
    font-size: 22px;
}
.comment-number {
    background: #E30614;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    text-align: center;
    line-height: 23px;
}
.comments-textarea textarea {
    width: 100%;
    border-radius: 13px;
    height: 200px;
    padding: 15px;
}
.comments-textarea {
    position: relative;
}
.comments-textarea input[type=submit] {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #828282;
    border-radius: 8px;
    color: #fff;
    padding: 5px 50px;
    font-size: 12px;
    font-weight: 500;
}
.at-box input {
    width: 100%;
    padding: 14px 15px;
    border-radius: 13px;
}
.all-comment-box {
    background: rgba(81, 81, 81, 0.8);
    border-radius: 13px;
}
.comment-item-logo {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
}
.client-comment {
    background: #C4C4C4;
}
.agency-comment {
    background: #BAC8DE;
}
.answer-box {
    background: rgba(38, 38, 38, 0.8);
    border-radius: 13px;
    padding: 20px;
}
.answer-box .comment-item-data {
    border: none;
}
.comment-item-box {
    padding: 20px 20px 0 20px;
}
.comment-item-data {
    padding-bottom: 20px;
    border-bottom: 1px solid #FFFFFF;
    position: relative;
}
.comment-item-data .reply-btn {
    background-color: transparent;
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
}
.no-answer .comment-item-data {
    border: none;
}
.sticky {
    position: sticky;
    top: 0;
    background: #000;
    z-index: 9;
}
.comments-line {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, #252525 100%);
    color: #fff;
    text-orientation: upright;
    z-index: 9;
    writing-mode: vertical-rl;
    font-size: 22px;
    padding: 25px 5px;
    cursor: pointer;
}
.comments-line.hide {
    display: none;
}
/*.comments-close::before {position: absolute; right: 0; top: 0; z-index: 2;}*/
.comments-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    z-index: 99;
    cursor: pointer;
}
.comments-close::before, .comments-close::after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 25px;
    width: 2px;
    background-color: #fff;
}
.comments-close::before {
    transform: rotate(45deg);
}
.comments-close::after {
    transform: rotate(-45deg);
}
@media screen and (max-width: 1600px) {
    .comments-box {
        right: -360px;
    }
}
@media screen and (min-width: 1600px) {
    .comments-line, .comments-close {
        display: none;
    }
    .comments-box {
        right: 0 !important;
    }
}
.mentions-input-box div.mentions {
    display: none;
}
/*comments*/
.green-check {
    background: #14b900;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 15px;
}
.green-check span {
    display: inline-block;
    height: 15px;
    width: 8px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
}
.ui-autocomplete {
    z-index: 9999;
}
/*global*/
/*login*/
section.login {
    background: #212121;
    color: #fff;
}
.login .container {
    max-width: 800px !important;
}
.login-left {
    background: linear-gradient(180deg, #F0212F 0%, #A50000 100%);
    padding: 160px 0;
}
.login-right {
    background: linear-gradient(0deg, #1B1B1B 0%, #252525 100%);
    padding: 40px;
}
.login-right form {
    margin-top: 70px;
}
.login-right input {
    background: transparent;
    width: 100%;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 50px;
    color: #fff;
}
.login-right input[type=submit] {
    background: #fff;
    color: #C20E1A;
    border-radius: 50px;
    max-width: 130px;
    line-height: 30px;
    margin-bottom: 0;
}
.login-right input[type=checkbox] {
    width: auto;
    margin: 0 20px 0 0;
}
.login-right a {
    color: #fff;
    text-decoration: none;
}
.login-title {
    font-size: 22px;
    line-height: 34px;
    display: inline-block;
    border-bottom: 4px solid #C20E1A;
}
#changepassword form, #forgottpassword form {
    padding: 0 40px;
}
#changepassword .modal-content, #privacypolicy .modal-content, #forgottpassword .modal-content {
    padding: 35px 50px 35px;
}
#changepassword .modal-title, #privacypolicy .modal-title, #forgottpassword .modal-title {
    font-weight: bold;
    font-size: 18px;
}
#changepassword input, #forgottpassword input {
    margin-top: 30px;
}
#changepassword input[type=submit], #privacypolicy input[type=submit], #privacypolicy input[type=checkbox], #addcategoryModal input[type=submit], #addcategoryModal input[type=checkbox], #forgottpassword input[type=submit] {
    width: auto;
    margin: 0;
    line-height: 1.5;
}
nav .copyright {
    font-weight: normal;
    position: fixed;
    bottom: 0;
    width: 290px;
    background: #242424;
    text-align: center;
    padding-bottom: 10px;
}
/*login*/
/*header-line*/
#createuserModal .modal-title {
    font-weight: bold;
    font-size: 18px;
}
#createuserModal .modal-content input[type=submit] {
    width: auto;
}
#createuserModal .modal-content {
    padding: 35px 50px 35px;
}
#createuserModal select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../img/baumit-ipack/select-down.svg');
    background-position: 98% center;
    background-repeat: no-repeat;
    outline: none;
    padding-right: 25px;
}
.search-box label {
    cursor: pointer;
}
.search-box input {
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    width: 90%;
    padding: 5px 15px;
}
.search-submit-btn {
    color: #fff;
}
/*header-line*/
/*frame*/
.frame-header {
    background: #E30614;
    height: 50px;
}
.frame-heder-box {
    width: calc(100% - 290px);
    margin-left: 290px;
    padding: 0 85px;
}
.frame-header label {
    color: #fff;
    width: 100%;
}
.user-menu > ul > li > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
}
.user-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.user-menu > ul > li {
    margin-top: 8px;
}
.user-menu ul > li {
    float: left;
    position: relative;
}
.user-menu a {
    display: block;
    padding: 10px 20px;
    line-height: 1.2em;
    color: #fff;
    text-decoration: none;
}
.user-menu > ul > li a {
    padding: 0px 20px;
    line-height: 42px;
}
.user-menu li ul {
    position: absolute;
    left: 0;
    top: 36px;
    z-index: 1;
}
.user-menu li ul li {
    overflow: hidden;
    height: 0;
    -webkit-transition: height 200ms ease-in;
    -moz-transition: height 200ms ease-in;
    -o-transition: height 200ms ease-in;
    transition: height 200ms ease-in;
}
.user-menu ul > li:hover ul li {
    height: 50px;
}
.user-menu li ul {
    background: #E30614;
    width: 175px;
}
.frame-bg {
    background: #E9E9E9;
    min-height: 100%;
}
.frame-logo-box {
    margin-top: 140px;
    position: relative;
}
.frame-header .container, .frame-content .container {
    /*max-width: 1100px;*/
}
@media screen and (min-width: 992px) {
    .frame-content .col-lg {
        max-width: 168px;
    }
}
@media screen and (min-width: 1200px) {
    .frame-content .col-lg {
        max-width: 204px;
    }
}
@media screen and (min-width: 1401px) {
    .frame-content .col-lg {
        max-width: 240px;
    }
}
.frame-item {
    background: #fff;
    border-radius: 10px;
    text-transform: uppercase;
    position: relative;
}
.frame-item::before {
    content: "";
    position: absolute;
    border-radius: 10px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2); /* Adjust color and opacity as needed */
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; /* Important: this allows clicks to go through */
    z-index: 2; /* Adjust if necessary based on your stack order */
}

.frame-item:hover::before {
    opacity: 1;
}

.frame-item > div {
    height: 70px;
    font-size: 12px;
}
.frame-item img {
    width: 100%;
    height: auto;
}
.cat-img-box {
    display: block;
    height: 140px;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
@media screen and (min-width: 992px) {
    .col-lg {
        flex: 1 0 0% !important;
    }
}
.add-category {
    background: #E30614;
    box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 25%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    text-align: center;
    line-height: 50px;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
}
#image-holder img {
    width: 100%;
    height: auto;
    max-height: 300px;
}
#addcategoryModal .modal-content, #addproductModal .modal-content {
    padding: 35px 50px 35px;
}
#addcategoryModal .modal-title, #addproductModal .modal-title {
    font-weight: bold;
    font-size: 18px;
}
.category-file-upload-box label, .product-file-upload-box label {
    background: #EFEFEF;
    border-radius: 10px;
    width: 170px;
    height: 170px;
    font-weight: 300;
    font-size: 48px;
    color: rgba(39, 39, 39, 0.4);
    text-align: center;
    line-height: 165px;
    cursor: pointer;
}
.frame-item a span {
    color: #000;
}
.frame-item a {
    text-decoration: none;
    text-align: center;
}
.frame-item a:hover {
    text-decoration: underline;
}
/*frame*/
/*tile*/
.tiles {
    width: calc(100% - 290px);
    margin-left: 290px;
    padding-bottom: 50px;
}
.tile-title {
    font-weight: 300;
    font-size: 55px;
    color: #1F1F1F;
}
.tile-add-category {
    background: #E30614;
    box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 25%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}
.filter-section select {
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url(../img/baumit-ipack/select-down.svg);
    background-position: 98% center;
    background-repeat: no-repeat;
    outline: none;
    padding-right: 25px;
}
.filter-section select option {
    background: #ffffffe6;
}
.tile-item {
    background: #fff;
    padding: 15px;
    font-size: 14px;
    height: 100%;
    border-bottom: 8px solid #E30614;
    position: relative;
    overflow: hidden;  /* Ensure the blur doesn't go outside the tile */
    transition: background-color 0.3s ease;  /* optional: for a smooth color transition */

}

.tile-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0); /* initially fully transparent black */
    transition: background-color 0.3s ease-in-out; /* transition applies to background-color */
    z-index: 2; /* may need to adjust if you have other positioned elements */
    pointer-events: none;  /* makes this element ignore mouse events */
}

.tile-item:hover::before {
    background-color: rgba(0, 0, 0, 0.2); /* semi-transparent black when hovered */
}


.tile-item .item-img {
    max-height: 140px;
    overflow: hidden;
    height: inherit;
    text-align: center;
}
.tile-item img {
    width: auto;
    height: 100%;
}
.item-functions img {
    max-width: 25px;
}
.row-equal-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
.tile-item .item-name {
    font-weight: bold;
    font-size: 20px;
}
.tile-item .status.approved {
    color: #2EAC4A;
}
.tile-item .status.open {
    color: #E30614;
}
.edit-btn-box span {
    color: #E30614;
}
.item-functions img {
    cursor: pointer;
}
#tilePreviewModal .modal-image img {
    width: 100%;
}
#tilePreviewModal .modal-content {
    padding: 20px;
}
.preview-version-item {
    font-size: 14px;
}
.preview-version-image img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.preview-modal-functions label {
    cursor: pointer;
}
.preview-modal-functions input {
    display: none;
}
.preview-modal-functions img {
    width: 30px;
}
.preview-modal-functions button {
    background: #E30614;
    color: #fff;
    font-size: 14px;
    line-height: 25px;
}
.modal-dl-link {
    text-decoration: none;
    color: #000;
}
.dl-preview, .upload-preview {
    color: #fff;
    line-height: 37px;
    cursor: pointer;
}
.item-name > a, .edit-btn-box > a {
    text-decoration: none;
    color: #000;
}
.item-functions img.tile-editor-pen {
    max-width: 20px;
}
.appreved-text {
    color: #14b900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    font-size: 30px;
    z-index: 2;
    font-weight: 600;
}
.approved-img {
    opacity: 0.25;
}
/*tile*/
/*editor*/
.editor {
    width: calc(100% - 290px - 360px);
    margin-left: 290px;
    padding: 0 85px;
}
.editor .menu-item {
    font-size: 18px;
}
.editor-title {
    font-size: 35px;
    font-weight: 300;
    max-width: 45%;
}
.editor-preview-btn, .editor-sendNotify-btn {
    background: rgba(0, 0, 0, 0.6);
    height: 38px;
    color: #fff;
    line-height: 38px;
    font-size: 14px;
    cursor: pointer;
}
.editor-status-btn {
    background: #E30614;
    height: 38px;
    color: #fff;
    line-height: 38px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
}
.editor-box {
    background: #fff;
    border-radius: 10px;
}
.editor-header {
    background: #E30614;
    padding: 20px 40px;
    border-radius: 10px 10px 0px 0px;
}
.editor-header select {
    background-color: transparent;
    color: #fff;
}
.editor-header option {
    background: #E30614;
}
.editor-content {
    padding: 40px;
    position: relative;
}
.editor-content .nav a {
    text-decoration: none;
    color: #272727;
    font-weight: 700;
}
.editor-content .nav .active a {
    color: #E30614;
}
.editor-content .nav li a {
    border-bottom: 1px solid #E30614;
    width: 80%;
    display: block;
    line-height: 44px;
    position: relative;
}
.editor-content .nav li a::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #E30614;
    display: block;
    position: absolute;
    right: 0;
    top: 6px;
    -webkit-transform: translateY(0) translateX(14px) rotate(40deg);
}
.editor-item {
    height: 100%;
    min-height: 70px;
    overflow: hidden;
    /*max-height: 160px;*/
}
.editor-item div:last-child p {
    white-space: pre-wrap;
}
.editor-item-border {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    height: 100%;
}
.editor-content label {
    color: #E30614;
    font-weight: bold;
    font-size: 15px;
    max-width: 70%;
}
.editor-content select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../img/baumit-ipack/select-down.svg');
    background-position: 98% center;
    background-repeat: no-repeat;
    outline: none;
    width: 100%;
}
.editor-content p {
    margin: 0;
}
.editor-content input[type=checkbox] {
    background: #E9E9E9;
}
.btn-pen, .btn-pen-history {
    cursor: pointer;
}
.edit-popup-box, .edit-add-select-box {
    padding: 35px;
}
.edit-box-title {
    color: #E30614;
    font-weight: bold;
}
.red-save {
    background: #E30614;
    color: #fff;
    width: auto !important;
    line-height: 35px;
}
.modal-content input[type='checkbox'] {
    width: auto !important;
}
.edit-input-box button {
    font-weight: 300;
    font-size: 14px;
    line-height: 33px;
}
.edit-input-box input {
    font-weight: bold;
}
.edit-input-box textarea {
    min-height: 135px;
}
.history-created, .history-date {
    font-size: 12px;
}
.version-header {
    border-bottom: 1px solid #000000;
}
.history-text {
    font-size: 18px;
    color: #828282;
}
.history-dl-button {
    color: #fff;
}
.all-logo img, .all-stamp img {
    cursor: pointer;
}
.all-logo > div, .all-picto > div, .all-stamp > div {
    position: relative;
}
.all-logo > div.selected-logo-item::before, .all-picto > div.selected-picto-item::before, .all-stamp > div.selected-stamp-item::before {
    content: url('../img/baumit-ipack/logo-selected-check.svg');
    position: absolute;
    top: -15px;
    right: -5px;
    z-index: 2;
}
.selected-item-close {
    position: absolute;
    right: -13px;
    top: -13px;
    background: #000;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    color: #fff;
    text-align: center;
    line-height: 15px;
    font-size: 10px;
    cursor: pointer;
}
.editor-picto img {
    max-height: 38px;
    width: auto;
}
.all-picto img {
    max-height: 60px;
    width: auto;
    cursor: pointer;
}
.selected-picto img {
    max-height: 60px;
    width: auto;
}
.all-stamp img, .selected-stamp img {
    max-width: 55px;
    height: auto;
}
.editor-stamp img {
    max-width: 35px;
    height: auto;
}
.selected-picto-item, .selected-stamp-item, .selected-logo-item {
    pointer-events: none;
}
.select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}
/*.select {
     position: relative;
     display: flex;
     flex-direction: column;
     border-width: 0 2px 0 2px;
     border-style: solid;
     border-color: #394a6d;
}*/
.select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    color: #3b3b3b;
    height: 60px;
    line-height: 20px;
    background: #ffffff;
    cursor: pointer;
    /*border-width: 2px 0 2px 0;
     border-style: solid;
     border-color: #394a6d;*/
}
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
}
.select.open > .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.custom-option, .add-new-data {
    position: relative;
    display: block;
    padding: 0 15px 0 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.5s;
}
.custom-option:hover, .add-new-data:hover {
    cursor: pointer;
    background-color: rgb(227 6 20 / 50%);
    color: #fff;
}
.custom-option.selected {
    color: #ffffff;
    background-color: #E30614;
}
.arrow {
    position: relative;
    height: 9px;
    width: 11px;
    background-image: url(../img/baumit-ipack/select-down.svg);
}
.add-new-data {
    text-align: center;
    border-top: 1px solid #D3D3D3;
}
.editor-content select {
    display: none;
}
@media screen and (max-width: 1600px) {
    .editor {
        width: calc(100% - 290px);
    }
}
.editor-item p {
    position: relative;
}
.more-btns {
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9360119047619048) 30%, rgba(255, 255, 255, 1) 100%);
    padding: 0 0 0 20px;
}
.more-btns span {
    background: #C4C4C4;
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 3px;
}
.more-hidden {
    padding-bottom: 25px;
    display: inline;
}
.hidden, .hidden-status, .hidden-type {
    display: none !important;
}
.approved-select-input {
    height: 60px;
    line-height: 60px;
}
.yellowcage {
    border: solid 3px orange;
}
.creat-new-version-btn {
    color: #fff;
}
.creat-new-version-btn:hover {
    font-weight: bold;
}
.restore-btn {
    cursor: pointer;
    color: #fff;
    background: #E30614;
    border-radius: 25px;
    font-size: 12px;
    padding: 5px 15px;
}
.added-property-items {
    background: #E30614;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 30px;
}
#productSelectInput {
    border: 1px solid #C9C9C9;
    padding: 0 20px;
    border-radius: 30px;
}
.selected-products-items {
    background: rgba(227, 6, 20, 0.9);
    border-radius: 30px;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}
.selected-products-close {
    background: #fff;
    width: 14px;
    height: 14px;
    text-align: center;
    line-height: 14px;
    font-weight: bold;
    font-size: 8px;
    display: inline-block;
    color: #E30614;
    border-radius: 50%;
    cursor: pointer;
}
.selected-products-ul {
    background: rgba(227, 6, 20, 0.9);
    padding: 10px 5px;
}
.selected-products-ul li span {
    padding: 0 !important;
    margin: 0 !important;
}
.selected-products-ul li {
    color: #fff;
    padding: 5px 15px;
    font-size: 16px !important;
    font-weight: bold;
}
.selected-products-ul .ui-state-active {
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: bold !important;
}
.category-photo {
    width: 205px;
}
#categorybreadcrumb {
    text-decoration: none;
    color: #212529;
}
#categorybreadcrumb :hover {
    text-decoration: underline;
}
.lang-select {
    position: absolute;
    right: 10px;
    top: 10px;
}
#language-selector {
    display: block;
    padding-right: 20px;
    padding-left: 5px;
}
#languagedesign3, #languagedescription3, #languagelegal-details3, #languagedesign2, #languagedescription2, #languagelegal-details2, #languagedesign6, #languagedescription6, #languagelegal-details6 {
    display: none;
}
.edit-btns img {
    max-width: 12px;
    height: auto;
}
.edit-btns > div {
    cursor: pointer;
}
.modal-content .edit-input-box > div, .nicEdit-main {
    width: 100% !important;
}
.nicEdit-main {
    padding: 10px 20px 10px 10px;
}
.asset-search-result, .cover-search-result, .barcode-search-result {
    min-height: 300px;
}
.add-asset-box .edit-box-title {
    color: #fff;
    background: #E30614;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}
.assigned-title {
    color: #000;
}
.add-asset-box .nav-link.active {
    background: #e30614;
    color: #fff;
}
.add-asset-box .nav-link {
    color: #000;
}
.search-form {
    font-size: 14px;
}
.asset-search-result img, .cover-search-result img, .barcode-search-result img, .assigned-elements img, .assigned-elements-cover img, .assigned-elements-barcode img {
    max-width: 100px;
    height: auto;
}
.asset-search-result > div, .barcode-search-result > div, .cover-search-result > div {
    cursor: pointer;
}
.assigned-elements > div, .assigned-elements-cover > div, .assigned-elements-barcode > div {
    position: relative;
    margin-bottom: 15px;
}
.assigned-elements-cover .assigned-item-close-cover, .assigned-elements .assigned-item-close, .assigned-elements-barcode .assigned-item-close-barcode{
    position: absolute;
    right: 0px; /* Position from the right, you might adjust this as per your design */
    top: 0px; /* Position from the top, adjusted to better fit a larger button */
    background: #808080; /* Grey background */
    border-radius: 4px; /* Reduced border-radius for a more 'square' shape. Set to '0' for a perfect square */
    width: 24px; /* Increased width */
    height: 24px; /* Increased height */
    color: #fff; /* White text color */
    text-align: center; /* Center the 'X' text horizontally */
    line-height: 24px; /* Center the 'X' text vertically, should be the same as height */
    font-size: 14px; /* Larger 'X' text */
    cursor: pointer; /* Cursor changes to a hand icon on hover */
    box-shadow: 0px 0px 5px #333; /* Optional: add a slight shadow for better aesthetics */

}
/*.assigned-elements .assigned-item-close, .assigned-elements-barcode .assigned-item-close-barcode {
    position: absolute;
    right: 10px;
    top: -13px;
    background: #000;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    color: #fff;
    text-align: center;
    line-height: 15px;
    font-size: 10px;
    cursor: pointer;
}*/
/*editor*/
#cke_18 {display:none;}
.editor-item-function i {font-size: 20px; cursor: pointer;
    vertical-align: sub;}

/*
.custom-link {
    display: inline-block;
}
.custom-link:hover {
    border: 2px solid #808080 !important; 
}
*/










