/*REFER FRIEND*/

.smania_refer_friend_response_response {

    font-size: 14px;
    text-align: center;
    padding: 50px;

}

.smania_refer_friend {

    cursor: pointer;

}

.smania_refer_friend_registered {

    display: none;

}

.smania_refer_center {

    display: flex;
    flex-direction: column!important;
    justify-content: center;
    align-items: center;

}

.smania_refer_friend_response {

    position: absolute;

}

#smania_refer_friend_form_form_fields_field-user_name.smania_refer_error,
#smania_refer_friend_form_form_fields_field-user_mail.smania_refer_error,
#smania_refer_friend_form_form_fields_field-friend_name.smania_refer_error,
#smania_refer_friend_form_form_fields_field-friend_mail.smania_refer_error {

    border-color: red!important;
    color: red!important;

}

.smania_refer_noscroll {

    overflow-y: hidden;

}

.smania_refer_friend_form_wrap {

    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.85);
    z-index: 90000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    backdrop-filter: blur(3px);

}

.smania_refer_friend_form_form {

    background-color: #005391;
    color: #fff;
    max-width: 700px;
    border-radius: 6px;
    padding-top: 20px;
    min-height: 0;
    overflow: auto;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    position: relative;

}

.smania_refer_friend_form_form_controls {

    position: absolute;
    right: 5px;
    top: 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #000;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    border-radius: 50%;

}

.smania_refer_friend_form_form_controls:hover {

    background-color: #333;

}

.smania_refer_friend_form_form_content {
    
    display: flex;
    flex-direction: row;
    
}

.smania_refer_friend_form_form_content > div {

    padding: 10px;
    flex-basis: 50%;

}

.smania_refer_friend_form_form_desc {

    padding-left: 20px!important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
}

.smania_refer_friend_form_form_fields {

    display: flex;
    flex-direction: column;
    justify-content: center;

}

.smania_refer_friend_form_form_fields {

    padding-right: 20px!important;

}

.smania_refer_friend_form_form_fields_fielddesc {

    font-size: 14px;
    margin-bottom: 5px;

}

.smania_refer_friend_form_form_fields_field {
    
    margin-bottom: 10px;
    
}

.smania_refer_friend_form_form_fields_field input {

    padding: 5px 10px;
    font-size: 14px;
    border-radius: 6px;
    width: 100%;
    border: 2px solid #005391!important;

}

.smania_refer_friend_form_form_fields_field input:focus {

    border-color: #5da1ba!important;

}

.smania_refer_friend_form_form_action {

    padding: 20px;
    text-align: center;

}

.smania_refer_friend_form_form_desc_1 {

    margin-bottom: 20px;

}

.smania_refer_friend_form_form_action_submit {
    
    border-radius: 6px;
    padding: 5px 10px;
    color: #005391;
    background-color: #FF9797;
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: 50%;
    margin: 0 auto;
    
}

.smania_refer_friend_form_form_action_submit:hover {

    background-color: #ffa497;

}

@media only screen and (max-width: 767px) {

    .smania_refer_friend_form_form_controls {

        position: fixed;
        right: 20px;
        top: 20px;
        background-color: rgba(0,0,0,.4);

    }

    .smania_refer_friend_form_form_action {

        padding: 10px;

    }

    .smania_refer_friend_form_form_action_submit {

        width: 100%;
        display: block;
        font-size: 14px;

    }

    .smania_refer_friend_form_form_fields {

        padding: 10px!important;
        padding-bottom: 0!important;

    }
    
    .smania_refer_friend_form_form_content {

        flex-direction: column;

    }

    .smania_refer_friend_form_form {

        margin: 5px;
        padding: 0!important;

    }

    .smania_refer_friend_form_form_desc {

        font-size: 12px!important;
        padding-left: 10px!important;

    }

    .smania_refer_friend_form_form_fields_field input {

        padding: 2px!important;

    }

    .smania_refer_friend_form_form_fields_fielddesc {

        font-size: 12px!important;
        text-align: center;

    }

    .smania_refer_friend_form_form_desc_1 {

        margin-bottom: 5px!important;
    
    }

}

/*END REFER FRIEND*/

/**
* ==============================================
* Dot Flashing
* ==============================================
*/

.dot-flashing-2 {

    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #0087DE;
    color: #0087DE;
    animation: dotFlashing2 1s infinite linear alternate;
    animation-delay: .5s;
    margin: 0 auto;
}

.dot-flashing-2::before, .dot-flashing-2::after {

    content: '';
    display: inline-block;
    position: absolute;
    top: 0;

}

.dot-flashing-2::before {

    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #0087DE;
    color: #0087DE;
    animation: dotFlashing2 1s infinite alternate;
    animation-delay: 0s;

}

.dot-flashing-2::after {

    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #0087DE;
    color: #0087DE;
    animation: dotFlashing2 1s infinite alternate;
    animation-delay: 1s;

}

@keyframes dotFlashing2 {

    0% {

        background-color: #0087DE;

    }

    50%,
    100% {

        background-color: #e6f5ff;

    }

}