.dp__qualifio {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    overflow-y: scroll;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30000;
    box-sizing: border-box;
    padding: 20px;
}

.dp__qualifio--overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.dp__qualifio--wrapper {
    display: inline-block;
    position: relative;
    max-width: 1420px;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.dp__qualifio--close {
    width: 38px;
    height: 38px;
    cursor: pointer;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    font-size: 0;
    top: 20px;
    right: 20px;
}

.dp__qualifio--close:hover {
    background-color: #fff;
}

.dp__qualifio--close::before {
    content: " ";
    background-image: url(img/cross.svg);
    width: 10px;
    height: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    transform: rotate(0deg);
}

.dp__qualifio--close:hover::before {
    filter: invert(1);
    transform: rotate(180deg);
}