/* Modal */
.modal-backdrop.show {
    display: none;
}

#chooseYourRole .modal-dialog {
    max-width: 1260px;
}

#chooseYourRole .modal-content {
    border-radius: 0;
    max-height: 80vh;
    box-shadow: 0px 4px 4px 0px #00000040;
}

#chooseYourRole .modal-content .modal-header {
    color: #FFF;
    background: var(--rc-color-primary-700);
    height: 85px;
    border-radius: 0;
}

#chooseYourRole .modal-content .modal-header h6 {
    font-size: 35px;
    line-height: 56px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

#chooseYourRole .modal-content .modal-body .role-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 40px 40px 55px;
}

#chooseYourRole .modal-content .modal-body .role-wrapper > div {
    text-align: center;
}

#chooseYourRole .modal-content .modal-body .role-wrapper .img-wrap {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    #chooseYourRole .modal-content .modal-body .role-wrapper {
        flex-direction: column;
    }
    
    #chooseYourRole .modal-content .modal-body .role-wrapper .img-wrap {
        margin-bottom: 20px;
    }
}