@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
html, body{
    background: url(../img/fon.jpg);
    background-size: cover;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
hr{
    height: 0;
    border: 1px solid #b5d2e1;
}
button{
    border: none;
    cursor: pointer;
    background: #74b5d5;
    color: #fff;
    border-radius: 15px;
    padding: 5px 14px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    transition: 0.3s;
}
button:hover{
    background: #5b90ab;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}
input, select, textarea{
    padding: 7px 5px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
textarea{
    width: 100%;
    min-height: 50px;
}
select{
    cursor: pointer;
}
input.checkbox{
    display: inline-block;
    width: 17px;
    height: 17px;
    vertical-align: top; 
    margin-top: 1px;
    cursor: pointer;
}
.text-center{
    text-align: center;
}
.media-menu{
    position: absolute;
    top: 5px;
    left: 13px;
    font-size: 34px;
    display: none;
}
.wrapper{
    width: calc(100% - 60px);
    margin: 50px auto 0 auto;
    min-height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid #fff;
    /*box-sizing: border-box;*/
    /*padding: 10px;*/
    display: flex;
    position: relative;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
    padding: 1px;
}
.header{
    position: absolute;
    top: -50px;
    left: 30px;
    width: calc(100% - 60px);
    height: 48px;
    line-height: 48px;
    display: flex;
    justify-content: space-between;
}
.logo{
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.header-panel{
    display: flex;
    align-items: center;
}
.header-panel a{
    text-decoration: none;
    cursor: pointer;
    text-decoration: 0.3s;
}
.exit{
    margin-left: 15px;
    font-size: 26px;
    color: #333;
}
.setting{
    color: #6c7da3;
}
.setting:hover{
    color: #3e475a;
}
.sidebar{
    width: 300px;
    background: rgba(86,176,246,0.15);
    border-radius: 15px 0 0 15px;
    padding: 10px;
    box-sizing: border-box;
}
.content{
    width: 100%;
    border-radius: 0 15px 15px 0;
    padding: 10px;
    box-sizing: border-box;
}
.menu{
    margin-top: 30px;
    padding-left: 0px;
}
.menu li{
    list-style-type: none;
    border-radius: 10px;
    overflow: auto;
}
.menu li:hover{
    background: rgba(0, 0, 0, 0.05);
}
.menu li a{
    font-size: 18px;
    display: block;
    text-decoration: none;
    padding: 7px 5px 7px 15px;
    color: #333;
}
.menu li ul{
    display: none;
    padding-left: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    margin: 5px;
}
.menu li ul li a{
    font-size: 16px;
    display: block;
    text-decoration: none;
    padding: 2px 5px 2px 15px;
}
.active{
    border-radius: 10px;
    background: #b5d2e1!important;
}
li.active ul{
    display: block;
}
.menu i{
    float: right;
    margin-top: 3px;
    margin-right: 5px;
}
.important{
    display: none;
    background: #ffb9b9;
    border-radius: 10px;
    padding: 5px 10px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}
.important h3{
    margin: 5px 0px;
}
.important a{
    color: #084d89;
    text-decoration: none;
    font-weight: bold;
}
.important a:hover{
    text-decoration: underline;
}
.important p{
    margin: 12px 0;
}
.important .fa-times{
    position: absolute;
    top: 5px;
    right: 7px;
    color: #b94b4b;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.important .fa-times:hover{
    color: #333;
}
.webinar-buttons{
    text-align: center;
    padding: 40px 0px;
}
.webinar-buttons a{
    display: inline-block;
    width: 230px;
    height: 60px;
    line-height: 60px;
    background: #498af2;
    margin: 20px;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.webinar-buttons a:hover{
    transform: translateY(-5px);
    background: #3975d5;
}
.webinar-buttons a:before{
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.webinar-buttons a:hover:before, .webinar-buttons a:focus:before, .webinar-buttons a:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}
.row-room{
    padding: 15px 10px 15px 10px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}
.name-room{
    font-weight: bold;
    font-size: 18px;
}
.buttons-room{
    margin: 10px 0;
    padding-left: 20px;
}
.buttons-room button{
    margin-right: 5px;
}
.out-room{
    background: #f78282;
}
.row-code-block{
    margin: 5px 0;
}
.code-block{
    display: flex;
    padding: 5px 0;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    border-top: 2px solid rgba(0,0,0,0.06);
}
.row-code-block div{
    display: inline-block;
    width: 200px;
    text-align: right;
    margin-right: 7px;
}
.code-block-right{
    width: 100px;
}
.online{
    width: 100px;
    height: 100px;
    background: #a1ef97;
    color: #1e4e17;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    padding-top: 27px;
    box-sizing: border-box;
}
.offline{
    width: 100px;
    height: 100px;
    background: #ccc;
    color: #333;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    padding-top: 40px;
    box-sizing: border-box;
}
.building-block{
    padding-top: 25px;
}
.button-standard{
    border-radius: 5px;
    padding: 10px 10px;
    background: #498af2;
    display: inline-block;
}
.button-standard:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.button-standard:hover{
    background: #3975d5;
}
.button-standard:hover:before, .button-standard:focus:before, .button-standard:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}
.delete-moderator{
    background: #f75252;
    padding: 10px 5px;
    border-radius: 5px;
}
.delete-moderator:hover{
    background: #bd2121;
}
.row-moderator{
    padding: 15px 10px 15px 10px;
    margin: 15px auto;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}
.add-moderator{
    margin: 5px 0 20px 0;
}
.add-date{
    display: block;
    margin: 5px auto 20px auto;
    font-size: 16px;
}
.add-date:hover{
    background: #3975d5;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.form{
    padding: 10px;
    margin: 10px 0px 30px 0;
}
.row-form label{
    display: block;
    font-size: 14px;
}
.archive{
    margin-left: 10px;
    background: #6f848f;
}
.archive:hover{
    background: #51626a;
}
.departure{
    margin-top: 10px;
    padding: 10px 0 0 0;
    font-weight: bold;
    font-size: 14px;
}
.departure span{
    color: #26af31;
    margin-left: 10px;
}
.message-block-right{
    width: 220px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}
.stat-message-right{
    margin-top: 4px;
    text-align: left;
    border-top: 1px solid #ccc;
}
.stat-message-right table{
    font-size: 12px;
    line-height: 90%;
    width: 100%;
}
.stat-message-right table tr td:last-child{
    text-align: right;
}
.status-message{
    border-top: 1px solid #ccc;
}
.used{
    float: right;
    margin-top: 7px;
}
.row-name-flag img{
    height: 15px;
    margin-left: 10px;
    box-shadow: 0 1px 2px #000;
}
.row-user-setting{
    margin-top: 15px;
}
.row-user-setting button{
    margin-right: 10px;
} 
.row-users{
    padding: 5px 10px 5px 10px;
    margin: 15px auto;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}
.form select{
    margin-right: 10px;
}
.no-res{
    text-align: center;
    color: red;
    font-size: 22px;
    padding: 20px 0;
}
.webhook .row-form{
    margin-bottom: 20px;
}
.check{
    width: 17px;
    height: 17px;
    display: inline-block;
    vertical-align: top;
    margin-top: 1px;
    cursor: pointer;
}
.webhook hr{
    margin-bottom: 20px;
}
.hidden-webhook{
    opacity: 0.4;
}
.hidden-webhook input{
    width: 250px;
}
.hidden-webhook ul li{
    list-style-type: none;
}
.hidden-webhook ul li i{
    font-weight: bold;
}
.hidden-webhook textarea{
    height: 200px;
}
input.button-standard{
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.title{
    text-align: center;
    margin-top: 0px;
}
.tabs>input[type="radio"] {
    display: none;
}
.tabs>input[type="radio"]:checked+label {
    background: #498af2;
    color: #fff;
}
.tabs>div {
    display: none;
    padding: 15px 10px 15px 10px;
    margin: 15px auto;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    border-top: 2px solid #498af2;
}
#tab-btn-1:checked~#content-1,
#tab-btn-2:checked~#content-2,
#tab-btn-3:checked~#content-3,
#tab-btn-4:checked~#content-4,
#tab-btn-5:checked~#content-5,
#tab-btn-6:checked~#content-6,
#tab-btn-7:checked~#content-7,
#tab-btn-8:checked~#content-8{
    display: block;
}
#tab-btn-moder-1:checked~#content-1,
#tab-btn-moder-2:checked~#content-2,
#tab-btn-moder-3:checked~#content-3,
#tab-btn-moder-4:checked~#content-4,
#tab-btn-moder-5:checked~#content-5,
#tab-btn-moder-6:checked~#content-6,
#tab-btn-moder-7:checked~#content-7,
#tab-btn-moder-8:checked~#content-8{
    display: block;
}
.tabs>label {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #eee;
    border: 1px solid transparent;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    margin-right: 6px;
    cursor: pointer;
    background: #d7ecf7;
    color: #000;
    position: relative;
}
.tabs>label:first-of-type {
    margin-left: 0;
}
.top-line{
    width: 2px;
    height: 20px;
    position: absolute;
    bottom: -18px;
    left: calc(50% - 1px);
    background: #498af2;
    display: none;
}
.tabs>input[type="radio"]:checked+label .top-line{
    display: block;
}
.normal-margin .row-form{
    margin:  15px 0;
}
.normal-margin .row-form input{
    width: 270px;
}
.normal-margin .row-form input.checkbox{
    display: inline-block;
    width: 17px;
    height: 17px;
    vertical-align: top; 
    margin-top: 1px;
    cursor: pointer;
}
.ml-30{
    margin-left: 30px;
}
.ml-60{
    margin-left: 60px;
}
.normal-margin .ml-30{
    margin-left: 30px;
}
.normal-margin .ml-60{
    margin-left: 60px;
}
.row-form-btn{
    display: flex;
    justify-content: space-between;
}
.row-form-btn .delete-moderator{
    width: 120px!important;
}
.center{
    text-align: center;
}
.row-form{
    margin: 10px 0;
}
.row-code-block select{
    padding: 1px 5px;
    margin:  0 5px;
}
.video-stat{
    margin: 10px 0;
}
.video-block-right{
    width: 150px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}
.video-stat span{
    background: #6c6c6c;
    color: #fff;
    border-radius: 10px;
    padding: 3px 10px;
}
.video-delete{
    text-align: center;
}
.media-form{
    display: none;
}
.media-form{
    padding: 15px 10px 15px 10px;
    margin: 15px auto;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
}
.media-form input{
    width: 100%;
}
.media-form .row-form-btn{
    margin-top: 30px;
}
.media-form .row-form-btn input{
    width: 150px;
    margin: 0 auto;
}
.media-form .row-form label{
    font-weight: bold;
}
table{
    width: 100%;
    text-align: left;
}
table th{
    padding: 10px 5px;
    background: #6f848f;
    color: #fff;
}
table th:first-child{
    border-radius: 10px 0 0 0;
}
table th:last-child{
    border-radius: 0 10px 0 0;
}
table td{
    background: rgba(0, 0, 0, 0.04);
    padding: 5px;
}
.blacklist-table tr td:last-child{
    text-align: center;
}
table tr:hover td{
    background: #fff;
}
.info-block{
    padding: 15px;
    background: #f7e897;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
}
.user-plan{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
}
.plan{
    width: 250px;
    margin-right: 50px;
    background: #fff;
    box-shadow: 0px 3px 8px rgb(0 0 0 / 27%);
    border-radius: 10px;
    border: 2px solid #d7f3fe;
    padding-bottom: 10px;
}
.name-plan{
    text-align: center;
    padding: 10px 0 10px 0;
    font-size: 22px;
}
.coast-plan{
    font-size: 40px;
    text-align: center;
    background: #498af2;
    padding: 15px 0;
    color: #fff;
    margin-bottom: 15px;
}
.blue-plan{
    border: 2px solid #498af2;
    background: rgba(73, 138, 242, 0.05);
}
.text-plan{
    display: flex;
    padding: 10px 10px;
    color: #726e6e;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0,0,0,0.06);
}
.plan .text-plan:last-child{
    border: none;
}
.value-plan{
    color: #333;
    font-size: 18px;
    font-weight: bold;
}
.infinity{
    font-size: 36px;
    line-height: 40%;
}
.info-plan h2{
    margin-top: 10px;
}
.info-plan-row{
    font-size: 18px;
    padding: 10px 0;
    display: flex;
    border-bottom: 2px solid rgba(0,0,0,0.06);
}
.info-plan-row div{
    width: 190px;
}
.theme{
    background: #6f848f;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.all-btn-user-plan{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.buy-plan button{
    font-size: 16px;
    background: #3ccd5b;
    padding: 8px 14px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 40%);
}
.buy-plan button:hover{
    background: #327a42;
}
.buy-plan{
    font-size: 34px;
    width: 200px;
    font-weight: bold;
    text-align: center;
    margin: 0 20px 0 20px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 10px;
}
.buy-plan span{
    font-size: 16px;
    font-weight: 400;
}
.green-plan{
    border: 2px solid #3ccd5b;
    background: rgba(60, 205, 91, 0.05);
}
.green-plan .coast-plan{
    background: #3ccd5b;
}
.green-plan .buy{
    background: #3ccd5b;
}
.green-plan .buy:hover{
    background: #31b74d;
}
.red-plan{
    border: 2px solid #fc477b;
    background: rgba(252,71,123, 0.05);
}
.red-plan .coast-plan{
    background: #fc477b;
}
.red-plan .buy{
    background: #fc477b;
}
.red-plan .buy:hover{
    background: #d33763;
}
.gold-plan{
    border: 2px solid #d7bd00;
    background: rgba(44,216,15, 0.05);
}
.gold-plan .coast-plan{
    background: #d7bd00;
}
.gold-plan .buy{
    background: #d7bd00;
}
.gold-plan .buy:hover{
    background: #b7a103;
}
.invoice{
    padding-bottom: 50px;
}
.invoice table a{
    border: none;
    cursor: pointer;
    background: #74b5d5;
    color: #fff;
    font-size: 14px;
    border-radius: 15px;
    padding: 3px 14px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    transition: 0.3s;
}
.invoice table a i{
    margin-left: 5px;
}
.invoice table a:hover{
    background: #5b90ab;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}
.buy{
    width: 200px;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
}
.chat{
    max-width: 95%;
    width: 700px;
    margin: 0 auto;
}
.body-chat{
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
    height: 40vh;
    overflow: auto;
}
.people-chat{
    text-align: right;
    padding-bottom: 5px;
}
.mess-date{
    font-size: 10px;
    font-weight: bold;
    color: #6f848f;
    padding-top: 5px;
}
.user-mess{
    max-width: 80%;
    border-radius: 10px;
    padding: 5px 10px;
    box-sizing: border-box;
}
.admin-mess{
    max-width: 80%;
    text-align: right;
    border-radius: 10px;
    background: #def2fd;
    padding: 5px 10px;
    box-sizing: border-box;
    float: right;
}
.admin-mess .mess-date{
    text-align: right;
}
.row-chat{
    overflow: auto;
    margin: 2px 0;
}
.footer-chat{
    padding: 10px 0;
    margin-bottom: 25px;
}
.mess-form{
    display: flex;
}
.mess-form textarea{
    margin-right: 10px;
}
.margin-theme{
    margin-top: 0px;
}
.partner-link{
    padding: 10px;
    font-size: 18px;
    margin-bottom: 20px;
}
.partner-link span{
    font-weight: bold;
    margin-left: 15px;
}
.partner-link button{
    margin-left: 15px;
}
.profile-form{
    width: 800px;
    max-width: 95%;
    margin: 0 auto 50px auto;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    border-top: 2px solid #498af2;
    padding: 10px;
}
.profile-form input, .profile-form select{
    width: 100%;
}
.profile-form input.checkbox{
    width: 17px;
}
.profile-form .row-form{
    margin: 15px 0;
}
.profile-form label button{
    margin-left: 10px;
}
.time-zone{
    background: rgba(0,0,0,0.08);
    padding: 5px 5px 1px 5px;
    border-radius: 10px;
}
.profile-form .row-form-btn{
    margin-top: 30px;
}
.profile-form .button-standard{
    width: 170px;
}
.popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    overflow: auto;
}
.body-popup{
    margin: 25px auto;
    width: 600px;
    max-width: 95%;
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 10px #000;
    border-radius: 10px;
}
.header-popup{
    text-align: center;
    padding: 7px 0;
    font-size: 18px;
    background: #6f848f;
    color: #fff;
    border-radius: 10px;
}
.content-popup form{
    margin-bottom: 0px;
}
.content-popup .normal-margin .row-form {
    margin: 15px 0 0 0;
    font-size: 14px;
}
.content-popup form .row-form input{
    width: 100%;
}
.content-popup form .row-form-btn input{
    width: 200px;
}
.closePopup{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.mini-title-form{
    margin: 0;
    text-align: center;
}
.content-popup .normal-margin .ml-30 {
    margin-left: 30px;
}
.content-popup .normal-margin .ml-60 {
    margin-left: 60px;
}
.content-popup .row-forms-small-line-height .row-form{
    margin-top: 5px;
    margin-bottom: 5px;
}
.white-sq{
    display: inline-block;
    vertical-align: top;
    width: 13px;
    height: 13px;
    background: #fff;
    border: 1px solid #333;
    margin-top: 2px;
    border-radius: 3px;
}
.black-sq{
    display: inline-block;
    vertical-align: top;
    width: 13px;
    height: 13px;
    background: #000;
    border: 1px solid #333;
    margin-top: 2px;
    border-radius: 3px;
}
.enter-img{
    display: block;
    width: 80px;
    height: 80px;
    margin:  5px auto 15px;
}
.enter-banner{
    display: block;
    height: 40px;
    width: 400px;
    object-fit: cover;
    max-width: 90%;
    margin: 5px auto;
}
.moder-avatar-img{
    display: block;
    margin: 5px auto;
    width: 16px;
    height: 16px;
    object-fit: cover;
}
.moder-big-avatar-img{
    display: block;
    margin: 5px auto 15px auto;
    width: 320px;
    height: 240px;
    object-fit: cover;
}
.delete-popup .header-popup {
    background: #e35454;
}
.delete-popup .content-popup{
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
}
.delete-popup .footer-popup{
    text-align: center;
}
.delete-popup .footer-popup button{
    min-width: 120px;
    margin: 10px;
    font-size: 16px;
}
.refuse{
    background: #74b5d5;
    padding: 10px 5px;
    border-radius: 5px;
}
.refuse:hover{
    background: #5b90ab;
}
.delete-button{
    background: #f75252;
    padding: 10px 5px;
    border-radius: 5px;
}
.delete-button:hover{
    background: #bd2121;
}
.non-margin{
    margin: 0px;
}
.row-form-btn{
    margin-top: 20px;
}
.content-popup .normal-margin .row-form-btn{
    margin-top: 20px;
}
.delete-account{
    background: #f75252;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 30px auto;
    display: block;
    font-size: 30px;
}
.delete-account:hover{
    background: #bd2121;
}
.filtr-message{
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    padding: 0 5px 5px 5px;
    margin-top: -5px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.filtr-message .row-form{
    width: 33.33%;
    padding: 0 3px 0 5px;
    box-sizing: border-box;
    border-right: 1px solid rgba(0,0,0,0.08);
}
.filtr-message .row-form:last-child{
    border: none;
}
.test-message-popup .content-popup {
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
}
.test-message-popup .footer-popup {
    text-align: center;
}
.test-message-popup .footer-popup button {
    min-width: 120px;
    margin: 10px;
    font-size: 16px;
}
.test-message-popup{
    overflow: hidden;
}
.indent{
    width: 100%;
    height: 20px;
    background: transparent;
}
.popup-table{
    margin: 15px auto;
}
.popup-table th{
    background: #498af2;
    font-weight: 400;
    color: #fff;
    padding: 6px 5px;
}
.popup-table td{
    font-size: 14px;
}
.flex-end{
    justify-content: end;
}
.row-form-btn button{
    font-size: 16px;
}
.video-popup video{
    width: 570px;
    max-width: 95%;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 37%);
}
.confirmation-popup .content-popup{
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
}
.confirmation-popup .footer-popup{
    text-align: center;
}
.confirmation-popup .footer-popup button{
    min-width: 120px;
    margin: 10px;
    font-size: 16px;
}
.red-button{
    background: #f75252;
    padding: 10px 5px;
    border-radius: 5px;
}
.red-button:hover {
    background: #bd2121;
}
.presentation-popup .body-popup{
    width: 1100px;
}
.main-slide{
    display: flex;
}
.main-slide img{
    width: 80%;
    height: 480px;
    object-fit: cover;
}
.left-arrow-presentation{
    width: 10%;
    text-align: center;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-arrow-presentation{
    width: 10%;
    font-size: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-panel{
    display: none;
}
.mini-slide-panel{
    width: 90%;
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
    overflow: hidden;
}
.main-slide i{
    opacity: 0.2;
    cursor: pointer;
    transition: 0.3s;
}
.main-slide i:hover{
    opacity: 0.5;
}
.slider-panel{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background: #f7f7f7;
    padding: 5px 0;
    border-radius: 10px;
}
.slider-panel i{
    opacity: 0.2;
    cursor: pointer;
    transition: 0.3s;
}
.slider-panel i:hover{
    opacity: 0.5;
}
.slider-panel .left-arrow-presentation{
    font-size: 34px;
    width: 5%;
    max-width: 50px;
}
.slider-panel .right-arrow-presentation{
    font-size: 34px;
    width: 5%;
    max-width: 50px;
}
.mini-slide{
    width: 90px;
    height: 60px;
    cursor: pointer;
    transition: 0.3s;
    margin: 0 5px;
    opacity: 0.6;
    position: relative;
    border: 1px solid #ccc;
}
.mini-slide:hover{
    opacity: 1;
}
.mini-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}
.active-slide{
    border: 2px solid #498af2;
    opacity: 1;
}
.element-mini-slide{
    display: none;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 2px 0;
    text-align: center;
    background: rgba(255,255,255,1);
    transition: 0.3s;
}
.element-mini-slide i{
    color: #000;
    cursor: pointer;
    font-size: 12px;
    margin: 1px 3px;
    opacity: 1;
    border-radius: 3px;
}
.mini-slide:hover .element-mini-slide{
    display: block;
}
.closePopupVideo{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.closePopupHTMLVideo, .closePopupHTMLAudio{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.video-youtube-popup iframe{
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 37%);
}
.video-content-popup figure{
    text-align: center;
}
figcaption{
    padding-bottom: 10px;
}
.img-popup .body-popup{
    width: 1000px;
    max-width: 90%;
}
.img-content-popup img{
    display: block;
    width: 90%;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 37%);
}
.answer-form{
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.answer-form i{
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.6;
}
.answer-form i:hover{
    opacity: 1;
}
.survey-row{
    margin-bottom: 20px!important;
}
.answer-resalt{
    width: 100%;
    background: #f2f2f2;
    color: #000;
    font-weight: bold;
    border-radius: 10px;
    margin: 10px 0;
}
.bar-result{
    background: #99cae3;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 7px 10px;
}
.bar-result span{
    float: right;
    margin-right: -5px;
}
.all-visits{
    margin-top: 30px;
    max-height: 60vh;
    overflow: auto;
    padding-right: 5px;
}
.name-user-visit{
    display: flex;
    justify-content: space-between;
    color: #930741;
    font-weight: bold;
    padding: 2px 2px 2px 5px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-sizing: border-box;
}
.date-visit, .text-chats{
    font-size: 14px;
    padding: 0 5px;
}
.name-user-visit button {
    padding: 4px 7px;
}
.row-visit{
    margin-bottom: 15px;
}
.all-visits::-webkit-scrollbar {
  width: 8px;
  background-color: #f9f9fd;
}

.all-visits::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #6f848f;
}

.all-visits::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
  border-radius: 8px;
  background-color: #f9f9fd;
}
.body-chat::-webkit-scrollbar {
  width: 8px;
  background-color: #f9f9fd;
}

.body-chat::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #6f848f;
}

.body-chat::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
  border-radius: 8px;
  background-color: #f9f9fd;
}
.info-stat-visit{
    margin: 10px 0 5px 0px;
    font-size: 16px;
}
.name-user-visit span{
    color: #498af2;
}
.date-message-sent{
    margin-top: 2px;
    font-size: 10px;
    padding-left: 5px;
    text-align: right;
}
.time-start-event input{
    width: 40px!important;
    margin-left: 10px;
    padding: 2px 3px;
    margin-right: 3px;
}
.amount {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-left: 10px;
    display: inline-block;
}
.amount span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #6f848f;
    cursor: pointer;
    line-height: 18px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.amount span:hover {
    background:#586d78;
}
.amount input {
    width:30px;
    text-align:center;
}
.amount input{
    width: 40px!important;
    display: inline-block;
}
.persent-bot input{
    width: 180px!important;
    box-shadow: none;
    margin: 0 10px;
}
.persent-bot{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
}
.text-persent{
    width: 150px;
}
.text-persent b{
    margin: 0 5px;
    color: #000;
}
.persent-bot div:first-child{
    text-align: right;
}
.active-avtowebinar{
    background: #a1ef97;
    color: #1e4e17;
}
#createForm .body-popup, #settingForm .body-popup{
    width: 1000px;
}
.new-form-create{
    display: flex;
}
.visual-display-form{
    width: 55%;
}
.standard-form-lending{
    width: 300px;
    margin:  20px auto;
    background: -webkit-linear-gradient(315deg, rgb(46, 52, 51), rgb(85 118 147));
    background: -moz-linear-gradient(315deg, rgb(46, 52, 51), rgb(85 118 147));
    background: linear-gradient(315deg, rgb(46, 52, 51), rgb(85 118 147));
    color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px;
    pointer-events: none;
}
.standard-form-lending .row-form{
    margin: 15px 0;
}
.standard-form-lending .row-form label{
    margin-bottom: 3px;
}
.standard-form-lending .row-form label i{
    width: 20px;
    text-align: center;
}
.standard-form-lending h3{
    margin-top: 0px;
    text-align: center;
}
.standard-form-lending .radio-row input{
    width: 17px!important;
    height: 17px;
    cursor: pointer;
    margin-right: 10px;
}
.radio-row {
    display: flex;
    align-items: center;
}
.bottom-text-form{
    text-align: center;
    margin: 25px 0;
    color: #b5d2e1; 
    font-weight: bold;
}
.standard-form-lending .row-form-btn .button-standard{
    width: 200px;
    margin: 0 auto;
    text-transform: uppercase;
    background: #2e3736;
    color: #fff;
    border: 1px solid #fff;
}
.standard-form-lending .row-form-btn .button-standard:hover{
    background: #3a9a9d;
}
.visual-display-form{
    margin: 10px;
    background: url(../img/png-fon.jpg) center center;
}
.text-setting-form{
    font-size: 16px;
    text-align: center;
}
.setting-form-popup{
    width: 45%;
}
.text-setting-form{
    background: #6f848f;
    color: #fff;
    padding: 3px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 0px;
}
.setting-form-popup .row-form input, .setting-form-popup .row-form select{
    font-size: 14px;
    padding: 3px 5px;
}
.setting-form-popup .row-form label{
    font-weight: bold;
}
.small-checkbox{
    font-size: 14px;
}
.small-checkbox input.checkbox{
    width: 15px!important;
    height: 15px!important;
}
.margin-top-5{
    margin-top: 5px;
}
.colm-checkbox{
    display: flex;
    flex-wrap: wrap;
}
.colm-checkbox .small-checkbox{
    width: 50%;
}
.colm-checkbox .small-select{
    width: 50%;
}
.width-form-setting{
    width: 40px!important;
}
input.color-panel{
    width: 30px!important;
    height: 25px!important;
    padding: 0px!important;
    border: none!important;
    background: transparent!important;
    box-shadow: none!important;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
input.transparence-bar{
    width: 200px!important;
    box-shadow: none!important;
    display: inline-block;
    vertical-align: middle;
}
.margin-left-5{
    margin-left: 5px;
}
.used-form{
    padding: 5px 10px;
    background: #a1ef97;
    color: #1e4e17;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 5px;
    width: 140px;
    text-align: center;
}
.no-used-form{
    padding: 5px 10px;
    background: #ccc;
    color: #333;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 5px;
    width: 140px;
    text-align: center;
}
#watchForm .visual-display-form{
    width: 100%;
}
.list-landing{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.style-landing{
    width: 45%;
    margin: 10px 5px;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.style-landing img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
#createLanding .body-popup, #settingLanding .body-popup{
    width: 500px;
}
.active-landing{
    border: 2px solid #498af2;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.style-landing:hover{
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.active-landing::after{
    content: "\2713";
    font-size: 80px;
    color: #498af2;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 170%;
    background: rgba(0,0,0,0.2);
}
.button-pass{
    border: none;
    cursor: pointer;
    background: #74b5d5;
    color: #fff;
    border-radius: 15px;
    padding: 5px 14px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    transition: 0.3s;
    margin-left: 5px;
}
.button-pass:hover{
    background: #5b90ab;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}
#changePassword .normal-margin{
    margin-top: 0px;
    padding-top: 0px;
}
#changePassword .row-form-btn{
    margin-top: 30px;
}
#changePassword .body-popup{
    width: 400px;
}
.buy-popup .content-popup {
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
}
.buy-popup .footer-popup button {
    min-width: 120px;
    margin: 10px;
    font-size: 16px;
}
.buy-popup{
    overflow: hidden;
}
.buy-popup .footer-popup {
    text-align: center;
}
#settingСalendar .body-popup{
    width: 700px;
}