/* comments  */

@supports (container-type: inline-size) {
    .mvp-reel-wrap{
        container: mvp_reel_user_player_query / inline-size;
    }
}

.mvp-reel-skin-default .mvp-reel-comment-wrap{
    position: absolute;
    left: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 20px 40px 20px 20px;
    box-sizing: border-box;
    max-height: 100%;
    transition: all 0.3s ease-out;
    bottom:100%;
    border-top:1px solid transparent;
}
.mvp-reel-skin-default .mvp-reel-comment-wrap-visible{
    transform: translateY(100%);
}
.mvp-reel-skin-insta .mvp-reel-comment-wrap{
    position: absolute;
    left: 0;
    z-index: 15;
    width: 100%;
    max-height: 50%;
    height: 100%;
    background-color: #fff;
    padding: 20px 40px 20px 20px;
    box-sizing: border-box;
    transition: all 0.3s ease-out;
    top:100%;
}
@container mvp_reel_user_player_query (max-width: 500px){ 
    .mvp-reel-skin-insta .mvp-reel-comment-wrap{
        max-height: 100%;
    }
}
.mvp-reel-skin-insta .mvp-reel-comment-wrap-visible{
    transform: translateY(-100%);
}
.mvp-reel-comment-inner{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mvp-reel-comment-header-wrap{
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.mvp-reel-comment-header{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.mvp-reel-comment-header-title{
    padding: 0;
    margin: 10px;
    font-weight: bold;
}
.mvp-reel-comment-header-count{

}
.mvp-reel-comment-header-sort{
    margin-right: 20px;
    position: relative;
}
button.mvp-reel-comment-sort{
    cursor: pointer;
    width: 40px;
    height: 40px;
}
button.mvp-reel-comment-sort svg{
    position: absolute;
    top: 50%;
    left: 50%;
    height: 14px;
    transform: translate(-50%, -50%);
    fill:currentColor;
    max-width: none;
}
.mvp-reel-comment-menu{
    position: absolute;
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 22%);
    box-sizing: border-box;
    max-width: 300px;
    display: none;
    color: #333;
    font-size: 16px;
    padding: 15px;
    top: 50px;
    right: 0;
    z-index: 10;
}
.mvp-reel-comment-menu-item{
    font-size: 16px;
    white-space: nowrap;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mvp-reel-comment-menu-item-selected{
    background-color: #eee;
}
@media (hover: hover) {
    .mvp-reel-comment-menu-item:hover{
        background-color: #eee;
    }
}
.mvp-reel-comment-menu-visible{
    display: block;
}
.mvp-reel-comment-menu-visible-bottom{
    top:auto;
    bottom: calc(100% + 8px);
}

.mvp-reel-comment-content{
    margin-top: 10px;
    color: #888;
    white-space: pre-line;
    flex:1;
    padding: 10px;
    position: relative;
    overflow-y: auto;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.mvp-reel-comment-content-inner{
   
}
.mvp-reel-comment-add-field{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
}
.mvp-reel-main-comment-add-field{
    padding: 20px 10px 10px 10px;
}
.mvp-reel-main-comment-add-field .mvp-reel-comment-loader-wrap{
    margin-top: 15px;
}
.mvp-reel-comment-avatar-wrap{
    display: flex;
    overflow: hidden;
    justify-content: center;
    flex-shrink: 0;
    align-items: center;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}
.mvp-reel-comment-avatar{
    display: block;
    width: 100%;
    height: 100%;
}
input.mvp-reel-comment-input,
input.mvp-reel-comment-edit-input{
    background: rgba(0,0,0,0);
    border-radius: 3px;
    border:0;
    border-bottom: 1px solid #ccc;
    height: 35px;
    padding: 0 0 0 5px;
    margin: 0;
    box-shadow: none;
    line-height: 1;
    box-sizing: border-box;
}
.mvp-reel-comment-input-wrap{
    display: flex;
    flex-direction: column;
    flex:1;
    margin-left: 10px;
}
.mvp-reel-comment-action-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.mvp-reel-comment-error{
    font-size: 13px;
    color: red;
    display: none;
    margin: 0;
    padding: 0;
}
button.mvp-reel-btn-comment-cancel-btn,
button.mvp-reel-btn-comment-submit-btn{
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
}
button.mvp-reel-btn-comment-cancel-btn{
    margin-left: auto;
    transition: color .3s;
}
button.mvp-reel-btn-comment-submit-btn{
    background-color: #2175e3;
    color: #eee;
}
@media (hover: hover) {
    button.mvp-reel-btn-comment-cancel-btn:hover{
        background-color: #eee;
    }
    button.mvp-reel-btn-comment-submit-btn:hover{
        opacity: 0.8;
    }
}
/* edit comment */

.mvp-reel-comment-edit-wrap{
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 10px;
}
.mvp-reel-comment-edit-wrap-hidden{
    display: none;
}
.mvp-reel-btn-comment-edit-submit-disabled{
    pointer-events: none;
    opacity: 0.5;
}





/*.comment reply  */

.mvp-reel-comment-item-reply-to-username{
    color: #599dd3;
    margin-right: 5px;
    font-weight: bold;
}
.mvp-reel-comment-reply-field{
    display: none;
    align-items: flex-start;
    padding: 0 40px 0 50px;
    margin-top: 5px;
}
.mvp-reel-comment-reply-field .mvp-reel-comment-avatar-wrap{
    width: 30px;
    height: 30px;
}
.mvp-reel-comment-reply-field-visible{
    display: flex;
}

.mvp-reel-comment-reply-container{
    padding: 0 0 0 50px;
    display: none;
}
.mvp-reel-comment-reply-container-visible{
    display: block;
}
button.mvp-reel-comment-reply-container-toggle{
    padding: 5px 12px 5px 5px;
    border-radius: 12px;
    cursor: pointer;
    color: #599dd3;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: bold;
}
@media (hover: hover) {
    button.mvp-reel-comment-reply-container-toggle:hover{
        background-color: #eee;
    }
}
.mvp-reel-comment-reply-container-toggle-icon{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mvp-reel-comment-reply-container-toggle-icon svg{
    height: 15px;
    fill:currentColor;
    max-width: none;
}
.mvp-reel-comment-reply-container-num-replies{
    display: inline-flex;
    margin-right: 4px;
}
.mvp-reel-comment-reply-comments-holder{
    display: none;
}
.mvp-reel-comment-reply-comments-holder .mvp-reel-comment-item{
    margin-top: 5px;
}
.mvp-reel-comment-reply-comments-holder-visible{
    display: block;
}
button.mvp-reel-comment-reply-container-show-more-replies{
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    color: #599dd3;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: bold;
}
button.mvp-reel-comment-reply-container-show-more-replies-hidden{
    display: none;
}
button.mvp-reel-comment-reply-container-show-more-replies svg{
    height: 15px;
    fill:currentColor;
    max-width: none;
}
.mvp-reel-comment-reply-container-show-more-replies-icon{
    margin-right: 10px;
    transform: rotate(270deg) scale(-1, 1);
}
@media (hover: hover) {
    button.mvp-reel-comment-reply-container-show-more-replies:hover{
        background-color: #eee;
    }
}

/* like dislike  */

.mvp-reel-comment-item-vote-wrap{
    display: flex;
    flex-direction: row;
}
button.mvp-reel-comment-item-vote{
    padding: 15px;
    border-radius: 100%;
    cursor: pointer;
    color: #333;
    display: flex;
    flex-direction: row;
    align-items: center;
}
button.mvp-reel-comment-item-vote svg{
    height: 15px;
    fill:currentColor;
    max-width: none;
}
.mvp-reel-comment-item-vote-btn{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.mvp-reel-comment-item-vote-btn-dislike{
    
}
.mvp-reel-comment-item-like{
}
.mvp-reel-comment-item-dislike{

}
.mvp-reel-comment-item-like-counter{
    margin: 0 10px;
    font-size: 14px;
}
button.mvp-reel-comment-item-reply{
    border-radius: 12px;
    padding: 5px 10px;
    cursor: pointer;
}
@media (hover: hover) {
    button.mvp-reel-comment-item-vote:hover{
        background-color: #eee;
    }
    button.mvp-reel-comment-item-reply:hover{
        background-color: #eee;
    }
}

.mvp-reel-comment-edit-loader-wrap,
.mvp-reel-comment-loader-wrap,
.mvp-reel-comment-content-loader{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #fff;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.mvp-reel-comment-content-loader{
    margin-top: 50px;
}
.mvp-reel-comment-loader-wrap-visible{
    opacity: 1;
    pointer-events: auto;
}
.mvp-reel-comment-loader-text{
    font-size: 18px;
}
.mvp-reel-comment-loader {
    width: 30px;
    height: 30px;
    border: 4px solid #ccc;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: mvp_reel_comment_loader_rotation 1s linear infinite;
}
@keyframes mvp_reel_comment_loader_rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
.mvp-reel-comment-action-hidden{
    display: none;
}

/* comment front page  */
.mvp-reel-comment-item-container{
    margin-bottom: 10px;
}
.mvp-reel-comment-item{
    display: flex;
    flex-direction: column;
    color: #333;
    width: 100%;
}
.mvp-reel-comment-item-display-wrap{
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}
.mvp-reel-comment-item-avatar{
    display: flex;
    overflow: hidden;
    justify-content: center;
    flex-shrink: 0;
    align-items: center;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    margin-top: 5px;
}
.mvp-reel-comment-item-holder{
    width: 100%;
}
.mvp-reel-comment-item-reported{
    pointer-events: none;
    opacity: 0.5;
    margin-bottom: 25px;
}
.mvp-reel-comment-item-main.mvp-reel-comment-item-reported{
    margin-bottom: 5px;
}
.mvp-reel-comment-item-reported .mvp-reel-comment-item-holder{
    display: flex;
    align-items: center;
}
.mvp-reel-comment-item-avatar-img{
    display: block;
    width: 100%;
    height: 100%;
}
.mvp-reel-comment-item-data-wrap{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.mvp-reel-comment-item-data-pinned-header{
    font-size: 13px;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    display: inline-flex;
    border-radius: 4px;
    background: #528dbc;
    padding: 1px 3px;
    margin: 0;
    gap:3px;
}
.mvp-reel-comment-item-data-pinned-icon{
    margin-right: 3px;
    margin-left: 3px;
}
.mvp-reel-comment-item-data-pinned-icon svg{
    display: block;
    height: 11px;
    fill: currentColor;
}
.mvp-reel-comment-item-data-pinned-text{
    
}
.mvp-reel-comment-item-data{
    display: flex;
    flex-direction: column;
    flex:1;
}
.mvp-reel-comment-item-data-user{
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-size: 14px;
    margin-bottom: 4px;
}
.mvp-reel-comment-item-user{
    text-decoration: none;
    font-weight: bold;
}
.mvp-reel-comment-item-data-date{

}
.mvp-reel-comment-item-data-edited{

}
.mvp-reel-comment-item-content{
    font-size: 14px;
    margin: 0;
    padding: 0;
}

/* comment action */

.mvp-reel-comment-action-menu-wrap{
    position: relative;
    width: 40px;
    flex-shrink: 0;
    margin-left: 10px;
}
button.mvp-reel-comment-action-btn{
    color: #333;
    width: 40px;
    height: 100%;
    float: left;
    position: relative;
    cursor: pointer;
}
button.mvp-reel-comment-action-btn svg{
    position: absolute;
    top: 50%;
    left: 50%;
    height: 14px;
    transform: translate(-50%, -50%);
    fill:currentColor;
    max-width: none;
}

/* report popup  */
.mvp-reel-report-popup-wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483646!important;
    opacity:0;
    display: none;
    transition: opacity .3s ease-out;
    direction: ltr!important;
    line-height: normal;
}
.mvp-reel-report-popup{
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll; 
    max-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 50px 0;
    background-color: rgba(0,0,0,0.35);
}
 .mvp-reel-report-popup-inner{
    position: relative;
    box-sizing: border-box;
    left: 50%;
    max-width: 720px;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}
.mvp-reel-report-popup-content{
    position: relative;
    box-shadow: 0 0 8px rgb(0 0 0 / 22%);
    background: #fff;
    padding: 30px;
    box-sizing: border-box;
}
.mvp-reel-report-header{
    font-size: 18px;
    font-weight: bold;
}
.mvp-reel-report-description{
    font-size: 16px; 
}
.mvp-reel-comment-menu-item svg{
    fill:currentColor;
    transition: all .1s ease-out;
    height: 16px;
    max-width: none;
}
button.mvp-reel-report-submit-btn{
    padding: 8px 30px;
    border-radius: 12px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 20px 0;
    background-color: #575757;
    color: #eee;
}
.mvp-reel-report-submit-btn-disabled{
    opacity: 0.5;
    pointer-events: none;
}
@media (hover: hover) {
    button.mvp-reel-report-submit-btn:hover{
        opacity: 0.8;
    }
}
button.mvp-reel-report-close{
    cursor: pointer;
    position: absolute;
    width: 46px;
    height: 46px;
    top: 0;
    right: 0; 
}
button.mvp-reel-report-close svg{
    color: rgba(0, 0, 0);
}
.mvp-reel-report-reason-item{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 20px;
}
.mvp-reel-report-popup-submit-msg-wrap{
    position: relative;
    padding: 30px;
    box-sizing: border-box;
    display: none;
    font-size: 18px;
}
.mvp-reel-report-popup-submit-msg-ok{
    display: none;
}
.mvp-reel-report-popup-submit-msg-fail{
    color: red;
}
.mvp-reel-comment-report-loader-wrap{
    position: absolute;
    left: 0;
    top:0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.mvp-reel-comment-report-loader-wrap-visible{
    display: flex;
}
.mvp-reel-comment-report-loader{
    width: 30px;
    height: 30px;
    border: 4px solid #ccc;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: mvp_reel_comment_report_loader_rotation 1s linear infinite;
}
@keyframes mvp_reel_comment_report_loader_rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

/* delete comment popup */

.mvp-reel-user-action-popup-wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483646!important;
    opacity:0;
    display: none;
    transition: opacity .3s ease-out;
    direction: ltr!important;
    line-height: normal;
}
.mvp-reel-user-action-popup{
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll; 
    max-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 50px 0;
    background-color: rgba(0,0,0,0.35);
}
 .mvp-reel-user-action-popup-inner{
    position: relative;
    box-sizing: border-box;
    left: 50%;
    max-width: 500px;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}
.mvp-reel-user-action-popup-content{
    position: relative;
    box-shadow: 0 0 8px rgb(0 0 0 / 22%);
    background: #fff;
    padding: 30px;
    box-sizing: border-box;
}
.mvp-reel-user-action-header{
    font-size: 18px;
    font-weight: bold;
    padding: 0;
}
.mvp-reel-user-action-description{
    font-size: 16px; 
}
.mvp-reel-user-popup-action-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px; 
}
button.mvp-reel-user-popup-action-btn{
    padding: 8px 30px;
    border-radius: 12px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 0;
    color: #eee;
}
button.mvp-reel-user-popup-action-btn-cancel{
    background-color: #999;
}
button.mvp-reel-user-popup-action-btn-submit{
    background-color: #2196F3;
}
@media (hover: hover) {
    button.mvp-reel-user-popup-action-btn:hover{
        opacity: 0.8;
    }
}
.mvp-reel-comment-delete-msg{
    padding: 10px 15px;
    margin: 0;
    color: #333;
    font-size: 14px;
    background-color: #656565;
    color: #e7e7e7;
    pointer-events: none;
    position: fixed;
    top: 100%;
    left: 5px;
    box-shadow: 0 0 8px rgb(0 0 0 / 22%);
    transition: all 0.3s ease-out;
    z-index: 99999999999;
}
.mvp-reel-comment-delete-msg-visible{
    transform: translateY(calc(-100% - 5px));
}



/*sign in popup  */
.mvp-reel-signin-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background: rgba(0,0,0,0.1);
    display: none;
}
.mvp-reel-signin-wrap{
    position: fixed;
    z-index: 99999999;
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 22%);
    box-sizing: border-box;
    max-height: calc(100% - 20px);
    max-width: 300px;
    opacity: 0;
    display: none;
    color: #333;
    font-size: 16px;
    padding: 20px 30px;
}
.mvp-reel-signin-text{
    white-space: nowrap;
}
button.mvp-reel-signin-login{
    color: #065fd4;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-left: -12px;
}
@media (hover: hover) {
    button.mvp-reel-signin-login:hover{
        background-color: rgb(233,233,233);
    }
}


/* user lock  */
.mvp-reel-content-lock-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: #0000007a;
    opacity: 0;
    transition: opacity .5s;
    width: 100%;
    height: 100%;
}
.mvp-reel-content-lock-wrap-visible{
    opacity: 1;
}
button.mvp-reel-content-lock-icon{
    width: 120px;
    height: 120px;
    color: #ddd;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
button.mvp-reel-content-lock-icon svg{
    height: 30px;
    fill: currentColor;
    transition: all ease-out .3s;
    max-width: none;
}
@media (hover: hover) {
    button.mvp-reel-content-lock-icon:hover svg{
        transform: scale(1.5);
    }
}
.mvp-reel-user-upgrade-holder{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 9999999;
}
.mvp-reel-user-upgrade-holder-inner{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.mvp-reel-user-upgrade-data{
    position: relative;
    max-width: 700px;
    max-height: 70%;
    overflow: auto;
    scrollbar-width: thin;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.mvp-reel-user-upgrade-inner{
    position: relative;
    padding: 30px 40px 30px 30px;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 1.2;
    direction: ltr;
}
.mvp-reel-user-upgrade-header{
    margin-top: 0;
}
.mvp-reel-user-upgrade-actions{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: row;
}
button.mvp-reel-user-upgrade-cancel{
    color: rgb(101, 101, 101);
    background-color: rgb(243, 243, 243);
    padding: 10px;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 16px;
}
.mvp-reel-user-upgrade-continue{
    background-color: #03A9F4;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 16px;
    text-decoration: none;
}
@media (hover: hover) {
    button.mvp-reel-user-upgrade-cancel:hover,
    .mvp-reel-user-upgrade-continue:hover{
        opacity: 0.8;
    }
}    

/* login popup */

.mvp-reel-login-form-wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483646 !important;
    opacity: 0;
    display: none;
    transition: opacity .3s ease-out;
    direction: ltr !important;
    line-height: normal;
}
.mvp-reel-login-form{
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.35);
}
.mvp-reel-login-form-inner{
    position: relative;
    box-sizing: border-box;
    left: 50%;
    max-width: 720px;
    transform: translate(-50%);
}
.mvp-reel-login-form-content{
    position: relative;
    box-shadow: 0 0 8px rgb(0 0 0 / 22%);
    background: #fff;
    padding: 30px;
    box-sizing: border-box;
}
.mvp-reel-login-form-header{
    font-size: 2em;
}
.mvp-reel-login-form-data{
    display: flex;
    flex-direction: column;
}
.mvp-reel-login-form-status{
    display: none;
}
.mvp-reel-login-form-action{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    align-items: center;
    gap: 30px;
    justify-content: flex-start;
}
.mvp-reel-login-form-label{
    color: #999;
    margin: 10px 0;
    padding: 0;
}
input.mvp-reel-login-form-action-btn,
a.mvp-reel-login-form-action-btn{
    padding: 10px 10px;
    text-align: center;
    align-items: center;
    border-radius: 3px;
    font-size: 16px;
    transition: opacity 0.3s ease-out;
    text-decoration: none !important;
    border: 0;
    line-height: normal;
    margin: 0;
}
a.mvp-reel-login-form-action-btn2{
    background: #fff;
    color: #f44336;
}
input.mvp-reel-login-form-submit{
    background-color: #575757;
    color: #eee;
}
@media (hover: hover) {
    input.mvp-reel-login-form-action-btn:hover,
    a.mvp-reel-login-form-action-btn:hover{
        opacity: 0.7;
        background: #fff;
        color: #555;
    }
    a.mvp-reel-login-form-action-btn2:hover{
        color: #f44336;
        opacity: 0.7;
    }
    input.mvp-reel-login-form-submit:hover{
        background-color: #575757;
        color: #eee;
    }
}
button.mvp-reel-login-form-close{
    position: absolute!important;
    right:0!important;
    top:0!important;
    background: none!important;
    z-index: 333;
    height: 40px!important;
    width: 40px!important;
}
.mvp-reel-login-form button.mvp-reel-login-form-close svg{
    height: 18px;
}
.mvp-reel-login-form-submit-msg-wrap{
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    display: none;
    font-size: 18px;
}
.mvp-reel-login-form-submit-msg-ok{
    display: none;
    color: #333;
}
.mvp-reel-login-form-submit-msg-fail{
   color: #333;
}

.mvp-reel-report-loader-wrap{
    position: absolute;
    left: 0;
    top:0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.mvp-reel-report-loader-wrap-visible{
    display: flex;
}
.mvp-reel-report-loader{
    width: 30px;
    height: 30px;
    border: 4px solid #ccc;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: mvp_reel_report_loader_rotation 1s linear infinite;
}
@keyframes mvp_reel_report_loader_rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

