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

.share-model__dialog {
    max-width: 420px;
    width: 100%;
}

.share-model__dialog-body {
    height: 650px;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

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

.share-model__share-box {
    width: 72px;
    padding-top: 15px;
    height: 72px;
    flex-shrink: 0;
    background: #EEEDF2;
    border-radius: 50%;
    padding-left: 12px;
}

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

.share-model__twitter {
    margin-top: 10px;
    width: 220px;
    height: 52px;
    background: black;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}

.share-model__twitter-text {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.share-model__twitter-text:focus,
.share-model__twitter-text:hover {
    color: #FFF;
    text-decoration: none;
}

.share-model__twitter-text span {
    font-weight: 700;
}

.share-model__facebook {
    margin-top: 20px;
    width: 220px;
    height: 52px;
    border-radius: 8px;
    background: #3C5A9A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}

.share-model__facebook-text {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.share-model__facebook-text:focus,
.share-model__facebook-text:hover {
    background: #3C5A9A;
    color: #FFF;
    text-decoration: none;
}

.share-model__facebook-text span {
    font-weight: 700;
}

.share-model__copy {
    margin-top: 20px;
    width: 220px;
    height: 52px;
    border-radius: 8px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}

.share-model__copy-text {
    color: #4D4D4D;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.share-model__footer {
    margin-top: 49px;
}
/* Linkedin */

.share-model__linkedin {
    margin-top: 20px;
    width: 220px;
    height: 52px;
    border-radius: 8px;
    background: #0274B3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}

.share-model__linkedin-text {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.share-model__linkedin-text:focus,
.share-model__linkedin-text:hover {
    background: #0274B3;
    color: #FFF;
    text-decoration: none;
}

.share-model__linkedin-text span {
    font-weight: 700;
}

/* SMS */

.share-model__sms {
    margin-top: 20px;
    width: 220px;
    height: 52px;
    border-radius: 8px;
    border: 2px solid;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    display: none;
}

.share-model__sms-text {
    color: #4D4D4D;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.share-model__sms-title {
    color: #4D4D4D;
    font-family: Poppins, montserrat-r, serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Email */

.share-model__email {
    margin-top: 20px;
    width: 220px;
    height: 52px;
    border-radius: 8px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}

.share-model__email-text {
    color: #4D4D4D;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.share-model__email-title {
    color: #4D4D4D;
    font-family: Poppins, montserrat-r, serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .share-model__sms {
        display: flex !important;
    }

    .share-model__dialog-body {
        height: 722px;
    }
}

/* Share Model Style */
