.change-card{
    padding: 20px;
    border-radius: 14px;
    background-color: #141A20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.change-card + .change-card{
    margin-top: 8px;
}

.change-card__img{
    margin-right: 16px;
    min-width: 44px;
}

.change-card__group-img{
    display: flex;
    align-items: center;
}

.change-card__text-group{
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.change-card__text-title{
    font-size: 14px;
    font-weight: 500;
    color: #E8EEF4;
    margin-bottom: 9px;
}

.change-card__text{
    font-size: 14px;
    color: #777E84;
}

.modal__subtitle{
    color: #777E84;
    font-size: 14px;
    font-weight: 500;
}

.drag-drop-photo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    border: 1px dashed #28313A;
    padding: 20px;
    width: 100%;
}

.drag-drop-photo__group-text{
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.drag-drop-photo__text-title{
    color: #E8EEF4;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 9px;
}

.drag-drop-photo__text{
    color: #777E84;
    font-size: 14px;
}

/* ======================= */

.rate {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.rate:not(:checked) > input {
    display: none;
}
.rate:not(:checked) > label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '';
    background-image: url('../img/icon-rating-star.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    
}
.rate > input:checked ~ label:before {
    /* color: #ffc700;     */
    background-image: url('../img/icon-rating-star-checked.svg');
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label:before {
    background-image: url('../img/icon-rating-star-checked.svg');
    transition: all 0.15s linear;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

.location-img-wrap{
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    border-radius: 14px;
    justify-content: center;
}

.location-logo{
    position: absolute;
    display: flex;
}

.location__your-logo{
    position: absolute;
    border-radius: 480px;
    border: 13px solid rgba(205, 255, 238, 0.08);
    --size: 30%;
    aspect-ratio: 1/1;
    width: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location__your-logo svg{
    width: 100%;
    height: 100%;
}

.location-logo svg{
    width: 100%;
}

.modal__footer-group-btns{
    display: flex;
}

.pick-checkbox .modal__footer{
    padding-top: 16px;
    padding-bottom: 16px;
}

.pick-checkbox .modal__header{
    padding-bottom: 32px;
}

.tab-item{
    width: max-content;
}

.tab-link{
    font-size: 14px;
    color: #777E84;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 360px;
    border: 2px solid transparent;
    height: 36px;
}

.tab-item.active-tab .tab-link{
    background-color: #0A0E12;
    border: 2px solid #FF5C00;
    color: #E8EEF4;
}

.tab-item + .tab-item{
    margin-left: 8px;
}

.tabs-item{
    display: none;
}

.tabs-item.active-tab{
    display: block;
}

.tabs-list{
    display: flex;
    align-items: center;
}

.tabs-header{
    margin-bottom: 22px;
}

.projectors-tabs .tabs-list{
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
}

.projectors-tabs .tab-item{
    padding-left: 4px;
    padding-right: 4px;
}

.projectors-tabs .tab-item + .tab-item{
    margin-left: 0;
}

.pick-checkbox__list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
    gap: 26px;
}

.pick-checkbox__item{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px;
    cursor: pointer;
}

.pick-checkbox__item-img{
    display: flex;
    align-items: center;
    border-radius: 12px;
    justify-content: center;
    /* background-color: #141A20; */
    /* min-height: 166px; */
    padding: 5px;
}

.interior-checkbox .pick-checkbox__item-img{
    height: auto;
}

.module-check input{
    display: none;
}

.module-check{
    position: relative;
}
.module-check__check-wrap{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.module-check__check{
    position: absolute;
    left: 16px;
    top: 16px;
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 360px;
}

.module-check input:checked ~ .module-check__check-wrap .module-check__check{
    background: radial-gradient(50% 50% at 50% 0%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.00) 100%), #FF5C00;
    background-image: url(../img/icon-module-check__check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
}

.module-check input:checked ~ .module-check__check-wrap{
    border: 1px solid #FF5C00;
    border-radius: 16px;
}

.interior-checkbox .pick-checkbox__item-img{
    background-color: transparent;
}

.interior-checkbox .pick-checkbox__item-img img{
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.pick-checkbox .pick-checkbox__list{
    max-height: 450px;
    overflow: auto;
}


.recommended_gobos{
	grid-column: 1/-1;
	border-bottom: 1px solid #FF5C0087;
	padding-bottom: 26px;
}

.recommended_gobos_list{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
	gap: 26px;
}

.rec_title{
	margin-bottom: 20px;
}

.pick-checkbox__item-img-bg{
    display: flex;
/*    background-color: #141A20;*/
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 166px;
    border-radius: 12px;
}

.section-projector-step{
    position: fixed;
    top: 0;
    background: transparent;
    width: 100%;
    border-bottom: 1px solid #1A222B;
    background-color: #0A0E12;
    z-index: 50;
}

.projector-step-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: relative;
}

.projector-step__list{
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.projector-step__item{
    display: flex;
    align-items: center;
}

.projector-step__item-step{
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 360px;
    background-color: #141A20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #606871;
    font-size: 15px;
    font-weight: 500;
    margin-right: 12px;
    border: 1px solid #141A20;
}

.projector-step__text-step{
    color: #606871;
    font-size: 15px;
    font-weight: 500;
}


.section-projector-step .btn{
    white-space: nowrap;
}

.projector-step__item.active .projector-step__item-step{
    border: 1px solid #FF5C00;
    color: #E8EEF4;
    background-color: transparent;
}

.projector-step__item.active .projector-step__text-step{
    color: #E8EEF4;
}


.projector-step__caret-right {
    display: block;
    color: #1A222B;
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 16px;
}

.projector-step__item.active .projector-step__caret-right{
    color: #606871;
}
.projector-step__item + .projector-step__item::before {
    content: '';
}

.upload-photo{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
}

.upload-photo img{
    width: 100%;
}

.upload-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    background-color: #141A20;
    padding: 24px;
    max-height: 407px;
    height: 100%;
}

.projectors-tabs .tabs-header{
    margin-bottom: 60px;
    padding: 12px 0;
    border-top: 1px solid #1A222B;
    border-bottom: 1px solid #1A222B;
}

.projectors-tabs__container{
    /* max-width: 930px; */
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.reviews-list-stars{
    display: flex;
    align-items: center;
}

.reviews-item-star{
    display: flex;
}

.reviews-item{
    padding: 20px;
    border-radius: 10px;
    background: #141A20;
}

.reviews-item + .reviews-item {
    margin-top: 12px;
}

.reviews-item__body-text{
    color: #777E84;
    font-size: 17px;
    font-weight: 400;
}

.reviews-item__group-name{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-item__name{
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #E8EEF4;
    margin-bottom: 16px;
}

.reviews-item__date{
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #777E84;
    margin-bottom: 16px;
}

.reviews-item__body{
    margin-bottom: 24px;
}

.reviews-item__body-text{
    color: #777E84;
    font-size: 17px;
}

.reviews-item__header{
    margin-bottom: 32px;
}

.reviews-item__footer{
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    justify-content: space-between;
}

.reviews-item__footer-img{
    border-radius: 8px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.reviews-item__footer-img img{
    width: 100%;
    height: 100%;
}

.reviews-item__footer-img + .reviews-item__footer-img{
    margin-left: 8px;
}

.reviews-item__footer-imgs{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.reviews-item__footer-likes{
    display: flex;
    align-items: center;
}

.like-btn{
    background-color: transparent;
    display: flex;
    align-items: center;
}

.like-icon{
    display: flex;
}

.like-btn + .like-btn{
    margin-left: 16px;
}

.like-counter{
    color: #777E84;
    font-size: 15px;
    min-width: 24px;
    text-align: center;
}

.features-text{
    font-size: 17px;
    color: #777E84;
}

.projectors-tabs .table--row tbody tr td{
    width: 50px;
    min-width: 50px;
}

.projectors-tabs  .table--row thead th{
    text-align: end;
}

.list-disc,
.list-auto {
    padding-left: 20px;
}

.list-disc li{
    list-style: disc;
    color: #777E84;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 5px;
}

.list-auto li{
    list-style: auto;
    color: #777E84;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 5px;
}

.ff-ibm-plex-mono{
    font-family: 'IBM Plex Mono', monospace;
}

.extra-item.extra-item-icon{
    background-color: #141A20;
    border: none;
    padding: 0 14px 0 8px;
}

.extra-item-icon__icon{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.status-check{
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 360px;
    border: 1px solid #252F38;
    margin-left: 9px;
}

.extra-item-icon.checked .status-check{
    background-color: #FF5C00;
    background-image: url(../img/black-check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    border-color: #FF5C00;
}

.extra-item-icon.checked .preload{
    display: none;
}

.extra-item__group-status{
    display: flex;
    align-items: center;
}



/* ==============14.13.2024=================== */

.post-page__container .card-color-gobos{
    padding: 30px 50px;
    background-color: #F3F3F3;
    border-radius: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #0b1215;
}

.post-page__container  .blog-page .card-color-gobos h2{
    color: #0b1215;
}

.post-page__container  .blog-page .card-info h2{
    color: #ff5c00;
}

.post-page__container .card-color-gobos:hover{
    background-color: #FFEEE5;
}

.post-page__container .color-gobos-text-item + .color-gobos-text-item::before{
    content: '';
    display: block;
    width: 25%;
    margin: 15px auto;
    background-color: #b4b4b4;
    height: 1px;
}

.post-page__container .card-info{
    background-color: #FFDECC;
    padding: 20px 30px;
    border-radius: 32px;
    color: #0b1215;
}
.post-page__container .card-info__title{
    color: #ff5c00;
}

.post-page__container .blog-page-gobo-projector img{
    max-height: none;
    object-fit: contain;
    border-radius: 36px;
    height: 100%;
}

.post-page__container .group-svg-block{
    fill: #fff;
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-right: -30px;
}

.post-page__container .group-svg-item{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
}

.post-page__container .blog-page-gobo-projector svg{
    fill: #fff;
}

.post-page__container .blog-page h1{
    font-size: 42px;
    line-height: 48px;
    color: #fff;
}

.post-page__container .blog-page h2{
    font-size: 26px;
    line-height: 32px;
    color: #fff
}

.select2-container--default .select2-results>.select2-results__options{
    font-size: 14px;
}

.stock-gobo-popup .modal__body{
    min-height: 566px;
    justify-content: flex-start;
}



.tabs-list.infinite {
    display: flex;
    align-items: center;
    overflow: auto;
    flex-wrap: nowrap;
}

.tabs-list.infinite li a {
    white-space: nowrap;
}

.tabs-list.infinite::-webkit-scrollbar {
    display: initial;
    width: 10px;
    height: 6px;
}

.tabs-list.infinite::-webkit-scrollbar-thumb {
    background: #FF5C00;
    border-radius: 5px;
}

.tabs-list.infinite > li{
    margin-bottom: 5px;
}

.tabs-list.infinite {
    margin-bottom: 5px;
}

.border-top{
    border-top: 1px solid #FF5C00;
}

.productslider-add .product-price-wrapper{
    margin-bottom: 10px;
}

.productslider-add .product-price-wrapper .price{
    font-size: 20px;
}


/* =====14.06.24========= */

.filter-itemr-register .page-sidebar-filter-item__head{
    padding: 7px 0px;
}

.filter-itemr-register  .page-sidebar-filter-item__content .check-item{
    padding: 0;
}

.filter-itemr-register .page-sidebar-filter-item__head{
    color: var(--secondary);
}

.or-line.full-line.or-line::after,
.or-line.full-line.or-line::before{
    width: 50%;
}

