/* Donation Model Style */
.fade.registration-type-model.in {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.registration-type-model__dialog {
    max-width: 500px;
    width: 100%;
}

.registration-type-model__dialog-body {
    /*max-height: 490px;*/
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.registration-type-model__btn-close {
    align-self: end;
    cursor: pointer;
}

.registration-type-model__title {
    color: #1E0A3B;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 55px;
    padding-top: 13px;
}

.registration-type-model__types {
    padding-top: 20px;
    display: flex;
    flex-flow: row;
    gap: 45px;
    flex-wrap: wrap;
    justify-content: center;
}

.registration-type-model__types svg:hover path {
    fill: var(--primary-color);
    cursor: pointer;
}

.registration-type-model__types svg:hover path:first-child, .registration-type-model__choice--active path:first-child {
    fill: #ffffff;
    cursor: pointer;
}

.registration-type-model__choice--active {
    color: var(--primary-color);
}

.registration-type-model__choice--active path {
    fill: var(--primary-color);
    cursor: pointer;
}

.registration-type-model__choice {
    display: flex;
    justify-content: center;
    flex-flow: column;
    gap: 10px;
    cursor: pointer;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .registration-type-model__choice {
        min-width: 130px;
    }
}

.registration-type-model__choice:hover {
    color: var(--primary-color);
}

.registration-type-model__footer {
    margin-top: 35px;
}

.registration-type-model__continue-btn {
    margin-top: 45px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    width: 144px;
    height: 36px;
    border-radius: 18px;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    justify-content: center;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.registration-type-model__continue-btn:hover {
    text-decoration: none;
    background: rgba(111, 190, 74, 0.8);
    color: #FFF;
}

.registration-type-model__continue-btn:focus {
    outline: none !important;
}

.join-team-option-name {
    font-family: montserrat-r;
    font-size: 14px;
    font-weight: 500;
    line-height: 17.07px;
    text-align: left;
}

.join-team-option-desc {
    font-family: montserrat-r;
    font-size: 13px;
    font-weight: 600;
    line-height: 15.85px;
    text-align: left;
    color: var(--primary-color) !important;
}

.back-to-prev-modal {
    font: 16px montserrat-r;
    color: #1c4477;
    margin-top: 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.back-to-prev-modal a {
    color: #1c4477;
    text-decoration: none;
}

.back-to-prev-modal span {
    width: 24px;
    height: 24px;
    background: #1c4477;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 7px;
}

.w-100 {
    width: 100% !important;
}