.selectList .modal {
    width: 90%;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 20px;
}

.selectList .modalContainer {
    display: block !important;
    height: 50vh;
}

.selectList .modalContainer.hide {
    display: none !important;
}

.selectList .modal {
    position: absolute;
    background-color: white;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-radius: 8px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.selectList .modal::-webkit-scrollbar {
    display: none;
}

.selectList .messageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.selectList .message {
    color: #0d4962;
    font-family: "Metropolis Bold";
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.14px;
    text-align: center;
}

.selectList .subMessage {
    color: #0d4962;
    font-family: "Metropolis Regular";
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.12px;
    text-align: center;
}

.selectList .flex-container {
    display: flex;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.selectList .list-item {
    font-family: "Metropolis Bold";
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.18px;
    text-align: left;
    color: #0d4962;
    word-break: break-word;
    outline: none;
    width: 100%;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    height: 25px;
    margin-left: 10px;
}

.selectList .hide {
    display: none;
}

.selectList .checkContainer {
    width: 40px;
    height: 40px;
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/misc/plus_icon_m_v1.png);
    background-size: 40px;
    cursor: pointer;
}

.selectList .selected .checkContainer {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/check_icon_black_accesibility_v1.png);
}

.selectList .list-image .thumbnail {
    width: 60px;
    height: 60px;
    background-size: contain;
    border-radius: 50%;
    margin-right: 10px;
}

.selectList .inputContainer .action-icon {
    width: 30px;
    height: 30px;
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/add_circle_light_BO_v1.svg);
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.selectList .searchInputContainer {
    display: flex;
    align-self: center;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #0d4962;
    background-color: white;
    width: 100%;
    height: 36px;
}

.selectList .searchIcon {
    background-image: url("http://d1gq9jzbezk7fw.cloudfront.net/d/en_US/gv/i/search_icon_back_office_v1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 26px;
    height: 23px;
    margin-inline: 15px 10px;
    transform: scaleX(-1);
}

.selectList .searchInput {
    height: 34px;
    width: 100%;
    border-radius: 8px;
    padding-left: 5px;
    border: none;
    background-color: white;
}

.selectList .searchInput,
.selectList .searchInput::placeholder {
    color: #333;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.16px;
    font-family: "Metropolis Regular";
}

.selectList .searchInput:focus {
    outline: none;
}

/* DARK MODE */
.dark .selectList .modal {
    background-color: #031821;
}

.dark .selectList .message,
.dark .selectList .subMessage,
.dark .selectList .list-item {
    color: rgba(255, 255, 255, 0.87);
}
.dark .selectList .checkContainer {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/plus_icon_DM_accessibility_m_v1.png);
}
.dark .selectList .selected .checkContainer {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/checked_icon_white_BO_v1.svg);
}
.dark .selectList .searchInputContainer {
    border: 1px solid #0d4962;
    background-color: #031821;
}
.dark .selectList .searchInput,
.dark .selectList .searchInput::placeholder {
    color: rgba(255, 255, 255, 0.87);
    background-color: #031821;
}
.dark .selectList .searchIcon {
    background-image: url("http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/search_icon_white_BO_v1.svg");
}
.dark .selectList .flex-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
