.cc_sidebar__container {
    height: 100dvh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    justify-content: end;
    opacity: 1;
    transition: opacity 0.5s;
    z-index: 0;
    display: none;
}
.cc_sidebar__container.open {
    display: flex;
    opacity: 1;
    /* z-index: 100; */
    z-index: 1051;
}
.cc_sidebar__wrapper {
    height: 100%;
    min-width: 400px;
    background: white;
    opacity: 1;
    transition: 0.75s;
    position: relative;
}
.cc_sidebar__title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid #BABBBD;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cc_sidebar__title svg {
    color: #000;
    width: 24px;
    cursor: pointer;
}
.cc_sidebar__wrapper .load_block {
    width: 90%;
    height: 208px;
    margin: 16px auto;
    background-color: #ffffff;
    border-radius: 2px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
}
.cc_sidebar__wrapper .load_block__element:nth-child(1) {
    top: 16px;
    height: 50px;
    width: 100%;
}
.cc_sidebar__wrapper .load_block__element:nth-child(2) {
    top: 36px;
    height: 125px;
    width: 100%;
}

.cc_sidebar__wrapper .load_block__element:nth-child(3) {
    top: 58px;
    height: 25px;
    width: 100%;
}
.cc_sidebar__wrapper .load_block__element:nth-child(4) {
    top: 68px;
    height: 25px;
    width: 100%;
}
.cc_sidebar__wrapper .load_block__element--gradient {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: loading;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);
    background-size: 1000px 640px;
    position: relative;
}
.cc_sidebar__sucess-message {
    position: fixed;
    right: 17px;
    background: #BDE4C7;
    color: #121417;
    padding: 16px;
    border-radius: 4px;
    width: 330px;
    z-index: 1051;
    top: 15px;
    box-shadow: 0px 1px 3px 0px #0000004D, 0px 4px 8px 3px #00000026;
}
.cc_sidebar__sucess-message::before {
    content: '';
    width: 0%;
    display: block;
    height: 3px;
    position: absolute;
    bottom: 0;
    background: #a2c3a9;
    left: 0;
}
.cc_sidebar__sucess-message.fading-notification::before { 
    animation: fading-notification;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    animation-timing-function: linear
}
.cc_sidebar__sucess-message-title {
    font-size: 16px;
    font-weight: 600;
    width: 263px;
}
.cc_sidebar__sucess-message-text {
    font-size: 14px;
    margin-top: 5px;
    width: 263px;
}
.cc_sidebar__sucess-message-close {
    width: 20px;
    position: absolute;
    top: 16px;
    right: 11px;
    cursor: pointer;
}

/* --- */

.view_more_details__heading {
    font-size: 16px;
    font-weight: 600;
    color: #121417;
    margin-bottom: 16px;
}
.view_more_details__content {
    font-size: 13px;
    font-weight: 400;
    color: #121417;
    margin-bottom: 16px;
}
.cc_sidebar__title {
    margin-bottom: 16px;
}

.view_more_details__feature {
    display: flex;
}
.view_more_details__feature-name {
    min-width: 100px;
}
.cc_sidebar__view_details {
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
}
.cc_sidebar__view_details svg {
    width: 24px;
}
.cc_sidebar__view_details span {
    font-size: 16px;
}

.cc_sidebar__block {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cc_sidebar__content {
    flex: 1;
    height: 100%;
}

/* quickview */

.cc_sidebar__quickview {
   width: 45vw;
}

/* */

@keyframes fading-notification {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}

@keyframes loading {
    0% {
        background-position: -468px 0
    }
    100% {
        background-position: 468px 0
    }
}
  

@media (max-width: 992px)
{
    .cc_sidebar__wrapper .load_block {
        height: 100%;
        width: 100%;
        padding: 15px 20px;
        margin-top: 0px;
    }
    .cc_sidebar__wrapper {
        width: 100%;
        min-width: unset;
        background: none;
    }
    .cc_sidebar__block {
        background: white;
    }
}


  