.pop-up-container {
    display: flex;
    width: 496px;
    height: 780px;
    /*background: #000;*/
    /*border: 1px solid #FFFFFF80;*/
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
}
.pop-up-container.short {
    height: 400px;
}
#sectors-assets-pop-up .header {
    width: 100%;
    height: 40px;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    position: relative;
}
#sectors-assets-pop-up .header h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
}

#sectors-assets-pop-up .close-button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3636E340;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    position: absolute;
    right: 8px;
}

#sectors-assets-pop-up .close-button:hover {
    background: #3636E360;
}


#sectors-assets-pop-up .sectors-breaks-container {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
}
#sectors-assets-pop-up .sectors-breaks-container p {
    font-weight: 500;
    font-size: 20px;
    line-height: 19px;
    color: #FFFFFF;
}
#sectors-assets-pop-up .sectors-breaks-container .checkbox-container img.active-stage { display: none }
#sectors-assets-pop-up .sectors-breaks-container.active .checkbox-container img.active-stage { display: block }
#sectors-assets-pop-up .sectors-breaks-container.active .checkbox-container img.inactive-stage { display: none }



#sectors-assets-pop-up .sector-depth {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    margin-bottom: 16px;
}
#sectors-assets-pop-up .sector-depth.disabled {  display: none}
#sectors-assets-pop-up .sector-depth p {
    font-weight: 500;
    font-size: 20px;
    line-height: 19px;
    color: #FFFFFF;
}
#sectors-assets-pop-up .sector-depth .input-wrapper {
    display: flex;
    gap: 4px;
}
#sectors-assets-pop-up .sector-depth input {
    width: 34px;
    height: 28px;
    text-align: center;
    border-radius: 4px;
    background: #030303;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
/*#sectors-assets-pop-up .sector-depth .button-wrapper {*/
/*    width: 24px;*/
/*    height: 28px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*}*/
#sectors-assets-pop-up .sector-depth button {
    width: 28px;
    height: 28px;
    background: #3636E340;
    border: none;
    outline: none;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


#sectors-assets-pop-up .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: calc(100% - 40px - 16px);
    /*padding-right: 16px;*/
}
#sectors-assets-pop-up .content.disabled {display: none }

#sectors-assets-pop-up .content::-webkit-scrollbar {
    width: 5px
}
#sectors-assets-pop-up .content::-webkit-scrollbar-track {
    background: #14141C
}

#sectors-assets-pop-up .content::-webkit-scrollbar-thumb {
    background: #Fff;
    border-radius: 5px;
}

#sectors-assets-pop-up .content .item {
    background: #030303;
    width: 100%;
    height: 40px;
    min-height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 12px;
    cursor: pointer;
}
#sectors-assets-pop-up .content .item .left-side {
    display: flex;
    gap: 12px;
    align-items: center;
}
#sectors-assets-pop-up .content .item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
#sectors-assets-pop-up .content .item .icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#sectors-assets-pop-up .content .item p {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}
#sectors-assets-pop-up .content .item .checkbox-container img.active-stage { display: none }
#sectors-assets-pop-up .content .item.active .checkbox-container img.active-stage { display: block }
#sectors-assets-pop-up .content .item.active .checkbox-container img.inactive-stage { display: none }
