/* invite a friend modal */

#invite-friend-modal.modal {
    background-color: rgba(82, 82, 85, 0.6);
}

.invite-friend-modal-content {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.invite-friend-modal-body {
    padding: 70px 50px;
}

.invite-friend-modal-title {
    font-family: "Open Sans",
        sans-serif;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    text-align: left;
    color: #020b56;
}

.invite-friend-modal-desc {
    font-family: "Open Sans",
        sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: left;
    color: #020b56;
}

#referral-url__span {
    word-break: break-word;
    font-family: "Open Sans",
        sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #4adede;
    border-bottom: solid 1px #cbcbcb;
    padding-bottom: 10px;
}

.copy-btn {
    width: 300px;
    height: 80px;
    border-radius: 40px;
    border: 0px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    -webkit-box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    background-color: #4adede;
    display: inline-block;
    margin-top: 60px;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.18;
    letter-spacing: normal;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}

.copy-btn:hover {
    outline: 0;
    box-shadow: none;
    text-decoration: underline;
    color: #fff;
}

@media (max-width: 998px) {

    body.modal-open {
        height: 100vh;
        overflow-y: hidden;
    }

    #invite-friend-modal.modal {
        background-color: transparent;
    }

    .modal-backdrop {
        background-color: transparent;
    }

    .modal_dialog {
        margin: 50px 0 0 0;
    }

    .invite-friend-modal-content {
        width: 100vw;
        height: calc(100vh - 50px);
    }

    .modal_header-mobile {
        height: 80px;
        border: none;
        position: relative;
    }

    .close-container_mobile {
        position: absolute;
        top: 45px;
        left: 30px;
        cursor: pointer;
    }

    .modal_body-mobile {
        height: 100%;
        padding: 50px 35px;
    }

    .invite-friend-modal-title {
        font-family: "Open Sans";
        font-size: 18px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.33;
        letter-spacing: normal;
        text-align: center;
        color: #042c5c;
        text-transform: capitalize;
    }

    .invite-friend-modal-desc {
        font-family: "Open Sans";
        font-size: 14px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.36;
        letter-spacing: normal;
        text-align: center;
        color: #020b56;
    }

    .copy-btn {
        width: 224px;
        height: 48px;
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        font-family: "SF UI Text", sans-serif;
        font-size: 16px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.19;
        letter-spacing: 0.4px;
        text-align: center;
        border-radius: 24px;
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        -ms-border-radius: 24px;
        -o-border-radius: 24px;
        text-transform: uppercase;
        transition: scale 0.3s ease;
        -webkit-transition: scale 0.3s ease;
        -moz-transition: scale 0.3s ease;
        -ms-transition: scale 0.3s ease;
        -o-transition: scale 0.3s ease;
        color: #fff;
        background-color: #4adede;
        border: 2px solid #4adede;
    }

    .copy-btn:active,
    .copy-btn:hover {
        filter: brightness(0.96);
        -webkit-filter: brightness(0.96);
        transform: scale(1.01);
        -webkit-transform: scale(1.01);
        -moz-transform: scale(1.01);
        -ms-transform: scale(1.01);
        -o-transform: scale(1.01);
    }

}