.modal-myhunter {
    display: none;
    position: fixed;
    z-index: 1001;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    
}

.modal-myhunter-body {
    width: 80%;
    max-width: 590px;
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 0.5rem;
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translate(-50%, 0);
}

.modal-myhunter-body.extended {
    width: 80%;
    max-width: 1140px;
    padding: 24px;
    top: 50px;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
}

.modal-myhunter-body.squared {
    border-radius: 0;
}

.modal-myhunter-container {
    padding: 24px;
}

.close-modal {
    color: #3B69FF;
    font-size: 50px;
    font-weight: 200;
    display: inline-block;
    line-height: 0.5;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-myhunter-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 24px;
}

.modal-myhunter-body.modal-cdb-body {
    top: 25%;
    width: 800px;
    max-height: 568px;
    overflow: hidden;
}


@media (max-width: 900px) {
    .modal-myhunter-body.extended {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .modal-myhunter-body {
        width: 100%;
    }
}