.container {
    text-transform: capitalize;
}
.multiselect__input, .multiselect__single{
    white-space: nowrap;
}
.custom__select_dropdown {
    position: relative;
}
.custom__select_dropdown .border_select {
    display: none;
    background-color: transparent;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
}
.custom__select_dropdown input {
    /* width: 100%; */
    margin-bottom: 0;
}
.custom__select_dropdown ul {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #656664;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100000;
    max-height: 500px;
    overflow-y: auto;
}
.custom__select_dropdown.dropdown .border_select {
    display: block;
}
.custom__select_dropdown.dropdown ul {
    display: block;
}
.custom__select_dropdown ul li {
    padding: 10px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
}
.custom__select_dropdown ul li:hover {
    background-color: #ca69d1;
}
.custom__select_dropdown ul li span {
    margin-left: 10px;
    font-weight: 700;
}
.custom__select_dropdown ul li i {
    opacity: 0;
}
.custom__select_dropdown ul li.selected {
    background-color: #ca69d1;
}
.custom__select_dropdown ul li.selected i {
    opacity: 1;
}

.fvn-popup .content i.far {
    font-size: 28px;
    margin-right: 20px;
    cursor: pointer;
}

.custom__resume .switch a {
    color: #728dce;
    margin-left: 10px;
}
.custom__resume .switch a:hover {
    color: blue;
}
.custom__resume .switch a.active {
    color: blue;
}
.custom__resume .switch .notification {
    color: #999;
    font-style: italic;
}

.custom__resume .file {
    display: flex;
    align-items: center;
}
.custom__resume .file i{
    font-size: 60px;
}
.custom__resume .file span {
    margin-left: 20px;
}