.iwp-hide {
    display: none !important;
}
/* SCROLLBAR */
.iwp-public-topics-modal-backdrop *::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.iwp-public-topics-modal-backdrop *::-webkit-scrollbar-track {
    background-color: var(--iwp-color-light-grey);
    border-radius: 10px;
}
.iwp-public-topics-modal-backdrop *::-webkit-scrollbar-thumb {
    background-color: var(--iwp-color-blue);
    border-radius: 10px;
}
.iwp-public-topics-modal-backdrop *::-webkit-scrollbar-thumb:hover {
    background-color: var(--iwp-color-blue-hover);
}

/* MODAL */
.iwp-public-topics-modal-backdrop * {
    box-sizing: border-box;
}
.iwp-public-topics-modal-backdrop {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(50, 50, 50, 0.9);
    z-index: 10000;
    font-family: var(--iwp-font-family-regular);
    color: var(--iwp-color-blue);
}
.iwp-public-topics-modal {
    position: relative;
    margin: 100px auto 0 auto;
    max-width: 650px;
    background-color: white;
    padding: 30px;
    width: 100%;
    border-radius: 4px;
}
.iwp-public-topics-modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    line-height: 22px;
}
.iwp-public-topics-modal-close-icon {
    cursor: pointer;
}
.iwp-public-topics-modal-close-icon:before {
    content: url('../images/close-icon.svg');
}
.iwp-public-topics-modal-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}
.iwp-public-topics-modal-body-title {
    font-size: 30px;
    line-height: 32px;
    font-family: var(--iwp-font-family-bold);
    margin-bottom: 10px;
    margin-top: 35px;
}
.iwp-public-topics-modal-body-description {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 40px;
}
.iwp-public-topics-modal-body-description b {
    font-weight: normal;
    font-family: var(--iwp-font-family-bold);
}
.iwp-public-topics-modal-list {
    max-height: 325px;
    overflow: hidden auto;
    list-style: none;
    margin: 0;
    padding: 0 25px 0 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
}
.iwp-public-topics-modal-list-item {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    margin: 6px 0;
}
.iwp-public-topics-modal-list-item.selected {
    /*background-color: #00bb2d;*/
    /*border-color: #00bb2d;*/
}
.iwp-public-topics-modal-list-item-check {
    width: 28px;
    min-width: 28px;
    height: 28px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    margin-right: 20px;
}
.iwp-public-topics-modal-list-item.selected .iwp-public-topics-modal-list-item-check {
    background-image: url("../images/tick-icon.png");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: center center;
}
.iwp-public-topics-modal-list-item-label {
    font-size: 18px;
    line-height: 28px;
}
.iwp-public-topics-modal-footer {
    max-width: 400px;
    margin: 15px auto 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.iwp-public-topics-modal-btn {
    font-size: 16px;
    line-height: 14px;
    padding: 14px 25px;
    border-radius: 4px;
    border: none;
    font-family: var(--iwp-font-family-bold);
    cursor: pointer;
    width: 100%;
    color: white;
}
.iwp-public-topics-modal-footer-tip {
    width: 100%;
    font-size: 12px;
    line-height: 17px;
    color: #707070;
    text-align: center;
    margin-top: 20px;
}