@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

/*
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif;
*/


* {
	margin: 0;
	padding: 0;
  box-sizing: border-box;
}
HTML, BODY {
	height: 100%;
}

BODY{
  margin: 0;
  padding: 0;
  background: #1d2329;
  color: #c7cfd9;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

BODY::-webkit-scrollbar-track{background-color: rgba(255,255,255,0.1); border-radius:5px; }
BODY::-webkit-scrollbar{width: 5px; background-color: rgba(255,255,255,0.1); border-radius:5px;}
BODY::-webkit-scrollbar-thumb{background-color: rgba(22,25,28,0.5); border-radius:5px;}

:active, :hover, :focus {
  outline: 0;
  outline-offset: 0;
}


a{
  color: #1371FF;
}



H1{
  margin: 0;
  padding: 0 0 15px 0;
  font-size: 24px;
  font-weight: 700;
}

.h1{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.h1_name{
  flex:1;
  font-size: 21px;
  color: #616a76;
  font-weight: 300;
}
.h1_name span{
  color: #ffffff;
}
.h1_buttons{
  display: flex;
  align-items: center;
  justify-content: end;
}
.h1_buttons a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #16191c;
  border-radius:100px;
  margin-left: 15px;
  transition:0.3s;
}
.h1_buttons img{
  width: 15px;
}
.h1_buttons svg{
  width: 15px;
  fill:#c7cfd9;
}
.h1_buttons a:hover{
  background: #1371FF;
}
.h1_buttons_active{
  background: #1371FF!important;
}



.page{
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-left: 100px;
}
.content{
  flex:1;
  background: #1d2329;
  padding: 30px 35px;
}
.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #171c21;
  padding: 7.5px 10px;
}
.pagination a{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e3237;
  margin: 7px 7px;
  padding: 0 7px;
  height: 27px;
  min-width: 27px;
  border-radius:5px;
  color: #c7cfd9;
  text-decoration: none;
  transition:0.5s;
}
.pagination a:hover{
  background: #1371FF;
}
.nav_active{
  background: #1371FF!important;
}
.pagination img{
  width: 13px;
}
.pagination svg{
    width: 13px;
    fill:#c7cfd9;
}
.back svg{
  transform: rotate(180deg);
}







.left_block{
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: #16191c;
  z-index: 100;
}
.menu{
  position: relative;
  z-index: 120;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #16191c;
}
.menu_top{
  height: 200px;
}
.menu_bottom{
  position: relative;
  height: calc(100% - 200px);
}
.menu_bottom::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 100%;
  top: 0px;
  left: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, #16191c 50%, rgba(22,25,28,0));
}
.menu_bottom::after {
  content: '';
  position: absolute;
  height: 20px;
  width: 100%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(to top, #16191c 50%, rgba(22,25,28,0));
}
.menu_flex_bottom_scroll::-webkit-scrollbar-track{background-color: rgba(255,255,255,0); border-radius:5px; }
.menu_flex_bottom_scroll::-webkit-scrollbar{width: 5px; background-color: rgba(255,255,255,0); border-radius:5px;}
.menu_flex_bottom_scroll::-webkit-scrollbar-thumb{background-color: rgba(13,14,16,0.7); border-radius:5px;}
.menu_flex_bottom_scroll{
  overflow-x: auto;
  padding: 18px 0;
  height: calc(100% - 36px);
}

.menu_two_flex{
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.menu_two_flex_top{
  flex:1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu .menu_link{
  cursor:pointer;
  padding: 20px 0;
  border-left:4px solid #16191c;
  border-right:4px solid #16191c;
  transition: 0.5s;
  text-decoration: none;
}


.menu .menu_link > div{
  display: block;
  text-align: center;
  text-decoration: none;
  color: #57626f;
  margin-top: 5px;
}
.menu .menu_link:not(.logout):hover{
  border-left:4px solid #1371FF;
  box-shadow: inset 19px 0px 8px -10px rgba(19, 113, 255, 0.25);
}
.menu .menu_link img{
  display: block;
  width: 27px;
  margin: 0 auto;
}
.menu .menu_link svg{
  display: block;
  width: 27px;
  margin: 0 auto;
  fill:#57626f;
  transition: 0.5s;
}

.menu .menu_link.logout svg{
  fill: #ab3636;
}
.menu .menu_link:hover svg{
  fill:#1371FF;
}
.menu .menu_link:hover div{
  color:#1371FF;
}
.menu_logo{padding: 10px 0!important;}
.menu_logo img{width: 70px!important;}

.menu_user{
  padding: 5px 0!important;
}
.menu_avatar, .menu_avatar_example{
  width: 55px;
  height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:500px;
  background: #181b1d;
  border:2px solid #393f46;
  transition: 0.5s;
}
.menu_avatar img{
  display: block;
  width: 100%!important;
  height: 100%!important;
  border-radius:500px;
}
.menu .menu_link:hover .menu_avatar{
  border:2px solid #1371FF;
}
.menu .menu_link:hover .menu_avatar_example{
  border:2px solid #1371FF;
}
.menu_link_active{
  border-left:4px solid #1371FF!important;
  box-shadow: inset 19px 0px 8px -10px rgba(19, 113, 255, 0.25)!important;
}
.menu_link_active svg{
  fill:#1371FF!important;
}

.menu_link_active div{
  color:#1371FF!important;
}
.menu_link_active .menu_avatar{
  border:2px solid #1371FF!important;
}
.menu_link_active .menu_avatar_example{
  border:2px solid #1371FF!important;
}

.menu_link_selected{
  border-left:4px solid #1371FF!important;
  box-shadow: inset 19px 0px 8px -10px rgba(19, 113, 255, 0.25)!important;
}
.menu_link_selected svg{
  fill:#1371FF!important;
}
.menu_link_selected div{
  color:#1371FF!important;
}
.menu_link_selected .menu_avatar{
  border:2px solid #1371FF!important;
}
.menu_link_selected .menu_avatar_example{
  border:2px solid #1371FF!important;
}

.menu_notification{
  background-image: url('../img/notification.svg?v2');
  background-position: center center;
  background-size: 70%;
  background-repeat: no-repeat;
}
.menu_notification_2{
  background-image: url('../img/notification.svg?v2');
  background-position: top right;
  background-size: 60%;
  background-repeat: no-repeat;
}



.menu_toggle{
  width: 250px;
  position: absolute;
  top:0;
  left: -10000px;
  z-index: 90;
  background: #111416;
  border-radius:0 5px 5px 0;
  color: #ffffff;
  animation-duration: 0.3s;
}
.menu_toggle::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 100%;
  top: 0px;
  left: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, #111416 40%, rgba(17,20,22,0));
}
.menu_toggle::after {
  content: '';
  position: absolute;
  height: 20px;
  width: 100%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(to top, #111416 40%, rgba(17,20,22,0));
}
.menu_toggle_active{
  left: 100px!important;
}
.menu_toggle_sub::-webkit-scrollbar-track{background-color: rgba(255,255,255,0); border-radius:5px; }
.menu_toggle_sub::-webkit-scrollbar{width: 5px; background-color: rgba(255,255,255,0); border-radius:5px;}
.menu_toggle_sub::-webkit-scrollbar-thumb{background-color: rgba(50,54,59,0.8); border-radius:5px;}
.menu_toggle_sub{
  position: relative;
  overflow-x: auto;
  padding: 15px 10px;
  height: calc(100% - 30px);
}

.sub_menu_link{
  display: flex;
  color: #c7cfd9;
  text-decoration: none;
  font-size: 15px;
  padding: 9px 15px;
  transition:0.5s;
}
.sub_menu_link:hover{
  background: #1371FF;
}
.sub_menu_link_active{
  background: #1371FF;
}
.sub_menu_name{flex:1;}
.sub_menu_count{
  background: #1371FF;
  color: #ffffff;
  border-radius:100px;
  padding: 3px 6px;
  font-size: 12px;
  transition: 0.3s;
}
.sub_menu_link_active .sub_menu_count{
  background: #ffffff;
  color: #1371FF;
}
.sub_menu_link:hover .sub_menu_count{
  background: #ffffff;
  color: #1371FF;
}

.betcore_info{
  padding: 5px 15px;
  color: #c7cfd9;
}
.betcore_info a{
  color: #1371FF;
}
.betcore_info_logo img{
  display: block;
  width: 80%;
  margin: 0 auto;
}
.betcore_info_text{
  margin-top: 15px;
}
.betcore_info_license{
  text-align: center;
  margin: 20px 0;
}
.betcore_info_new{
  padding: 5px 10px;
  background: #1371FF;
  border-radius:5px;
  margin-bottom: 15px;
}







.content_auth{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}
.content_auth::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.4;
  background-image: url('/img/bg_auth_4.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.content_auth_center{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  padding: 15px 0;
}
.content_auth_form{
  flex:1;
  width: calc(100% - 40px);
  padding: 20px 20px;
  background: #16191c;
  border-radius:3px;
}
.logo_auth{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.logo_auth img{
  display: block;
  width: 260px;
}
.content_auth_form_h{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
}
.content_auth_links{
  margin-top: 15px;
  color: #ffffff;
  font-size: 14px;
}
.content_auth_links a{
  color: #ffff00;
}
.auth_form_input{
  background: #1d2329;
  border:0;
  width: calc(100% - 30px);
  margin-bottom: 7px;
  padding: 12px 15px;
  color: #ffffff;
  border-radius:3px;
}
.auth_form_btn{
  cursor:pointer;
  padding: 12px 15px;
  background: #1371FF;
  color: #ffffff;
  text-align: center;
  border:0px;
  width:100%;
  border-radius:3px;
}
.content_auth_info{
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 20px;
}
.content_auth_info div{
  margin-bottom: 3px;
}


.auth_form_btns_flex{
  display: flex;
  align-items: center;
}
.auth_form_btns_btn{
  flex:1;
}
.auth_form_btns_lang{
  margin-left: 15px;
}

.auth_form_lang_img{
  border-radius:500px;
  width: 35px;
  opacity: 0.5;
  transition: 0.3s;
}
.auth_form_lang_img:hover{
  opacity: 1;
}
.auth_form_lang_img img{
  display: block;
  border-radius:500px;
  width: 100%;
}



.auth_form_lang_drop{
  position: relative;
}
.auth_form_lang_down{
  display: none;
  position: absolute;
  width: 265px;
  top: -290px;
  right: 0;
}
.auth_form_lang_down_act{
  display: block;
}
.auth_form_lang_down_content{
  background: rgba(13,14,16,0.8);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


.auth_form_langs_all{
  margin: 6.5px;
  border-radius:500px;
  width: 35px;
  opacity: 0.8;
  transition: 0.3s;
  border:2px solid rgba(0,0,0,0);
}
.auth_form_langs_all:hover{
  opacity: 1;
}
.auth_form_langs_all img{
  display: block;
  border-radius:500px;
  width: 100%;
}
.auth_form_lang_down_active{
  opacity: 1;
  border:2px solid #1371FF;
}


.develop{
  display: flex;
  padding: 15px;
  background: #16191c;
  align-items: center;
  justify-content: center;
  width: 400px;
  margin: 0 auto;
}
.develop_icon img{
  width: 60px;
}
.develop_icon svg{
  width: 60px;
  fill: #1371FF;
}
.develop_content{
  flex: 1;
  padding-left: 20px;
}




.nodata{
  display: flex;
  padding: 15px;
  background: #16191c;
  align-items: center;
  justify-content: center;
  width: 400px;
  margin: 0 auto;
}
.nodata_icon img{
  width: 60px;
}
.nodata_icon svg{
  width: 60px;
  fill: #1371FF;
}
.nodata_content{
  flex: 1;
  padding-left: 20px;
}



.blocker{
  z-index: 999;
  background-color: rgba(22,25,28,0.75);
}
.modal {
  padding: 20px;
  max-width: 350px;
  z-index: 1000;
  color: #616a76;
  border-radius:3px;
}
.modal_head{
  font-size: 21px;
  color: #616a76;
  font-weight: 300;
  margin-bottom: 15px;
}
.modal_desc{
  color: #616a76;
  font-weight: 300;
  margin-bottom: 15px;
}
.modal input{
  width: 100%;
  padding: 7px 15px;
  border:1px solid #616a76;
  margin-bottom: 7px;
  border-radius:3px;
}
.modal select{
  width: 100%;
  padding: 7px 15px;
  border:1px solid #616a76;
  margin-bottom: 7px;
  border-radius:3px;
}
.modal input[type='submit'],
.modal button{
  cursor: pointer;
  width: 100%;
  padding: 10px 15px;
  border:1px solid #1371FF;
  background: #1371FF;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0px;
  border-radius:3px;
}
.modal .link_btn{
  cursor: pointer;
  display: block;
  width: calc(100% - 32px);
  padding: 10px 15px;
  border:1px solid #1371FF;
  background: #1371FF;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  margin-bottom: 0px;
  border-radius:3px;
}

.modal .seperator{
  margin: 10px 0;
  height: 1px;
  background-color: #616a76;
}
.table{
  width: 100%;
}

.sport_img{
  display: block;
  width: 29px;
  height: 29px;
}

.table_edit_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  background: #16191c;
  padding: 15px;
}
.table_edit_wrap td{
  padding: 4px 0;
}
.table_edit_wrap td:nth-child(2n+1){
  padding-right: 75px;
}
.table_edit_wrap input{
  width: 250px;
  padding: 7px 15px;
  background: #293037;
  border:1px solid #293037;
  color: #ffffff;
  border-radius:3px;
}
.table_edit_wrap select{
  width: 280px;
  padding: 7px 15px;
  background: #293037;
  border:1px solid #293037;
  color: #ffffff;
  border-radius:3px;
}
.table_edit_wrap input[type='submit']{
  cursor: pointer;
  padding: 10px 15px;
  border:1px solid #1371FF;
  background: #1371FF;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
}
.table_header{
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}




.notifications{
  position: fixed;
  bottom: 0;
  left: 5%;
  width:90%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.notificationsMessage{
	display:none;
	cursor:pointer;
	background: #1371FF;
	color:#fff;
	padding:0;
	margin-bottom:10px;
}
.notificationsText{
	padding:10px;
}
.notificationsIndicator{
	height:5px;
}
.notificationsIndicator div{
	width:100%;
	height:100%;
	background:#124ea7;
}




.table{
	margin:0px;
}
.table th{
	background: #161a1f;
  padding: 10px 15px;
  text-align: center;
  border-bottom: 1px solid #111519;
  transition:0.3s;
}
.table tr{
  transition:0.3s;
}
.table td{
	background: #161a1f;
  padding: 10px 10px;
  text-align: center;
  /*border: 1px solid #dde0eb;*/
  transition:0.3s;
}
.table tr:nth-child(2n+1) td{
  background: #191e24;
}
.table tr:hover td{
  background: #111519;
}

.table_banner{
	display: block;
	width:250px;
}
.table_dops{
  font-size: 11px;
  color: #788a9c;
}









.object_settings{display: block; transition: 0.3s;}
.object_settings img{width: 18px;}
.object_settings svg{width: 18px; fill:#c7cfd9;}
.object_settings:hover svg{fill:#1371FF;}
.object_settings.edit svg{
  fill: #1371FF;
}

.object_dellete{display: block; transition: 0.3s;}
.object_dellete img{width: 20px;}
.object_dellete svg{width: 20px; fill:#c7cfd9;}
.object_dellete:hover svg{fill:#1371FF;}

.object_status{display: block; opacity:0.7; transition: 0.3s;}
.object_status img{width: 25px;}
.object_status svg{width: 25px; fill:#c7cfd9;}
.object_status:hover{opacity:1;}
.object_status:hover svg{opacity:1; fill:#fff;}
.object_status_active{opacity:1!important;}
.object_status_active svg{fill:#1371FF!important;}
.object_status_end{opacity:1!important;}
.object_status_end svg{fill:#fed700!important;}
.object_status_hand{opacity:1!important;}
.object_status_hand svg{fill:#cf2f51!important;}



.langTabs{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.langTabs a{
	display: flex;
	flex-direction: row;
	align-items: center;
	background: #16191c;
	border: 1px solid #16191c;
	color: #c7cfd9;
	text-decoration: none;
	border-radius: 3px;
	padding: 7px 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.langTabs a img{
	display: block;
	width: 25px;
	height: 25px;
	border-radius:5px;
	margin-right: 7px;
}
.ui-tabs-active a{
	border: 1px solid #1371FF;
	background: #1371FF;
	color: #c7cfd9;
}



.editor_wrap{
  margin-top: 15px;
  background: #293037;
}


.save_link{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1371FF;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  padding: 7px 15px;
  border-radius:3px;
  margin-top: 15px;
}
.save_link img{width: 20px; margin-right: 10px;}
.save_link svg{width: 20px; fill:#fff; margin-right: 10px;}

.center_flex{
  display: flex;
  justify-content: center;
  align-items: center;
}


.tabs_block{
  display: none;
}

.hidden{
  display: none;
}

.tabs{
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 5px;
}
.tabs .tab{
  flex: 1;
  text-align: center;
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid #dbdbdb; 
}
.tabs .tab.active{
  border-bottom: 2px solid #1371FF;
}





.checkbox {
  vertical-align: top;
  margin: 0;
  width: 14px;
  height: 14px;
}

.checkbox + label {
  cursor: pointer;
}

.checkbox:not(checked) {
  position: absolute;
  opacity: 0;
}
.checkbox:not(checked) + label {
  position: relative; /* будем позиционировать псевдочекбокс относительно label */
  padding: 0 0 0 47px; /* оставляем слева от label место под псевдочекбокс */
}

.checkbox:not(checked) + label:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 35px;
  height: 18px;
  border-radius: 13px;
  background: #353c44;
}
/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */
.checkbox:not(checked) + label:after {
  content: '';
  position: absolute;
  top: -1px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background: #FFF;
  transition: all .2s; /* анимация, чтобы чекбокс переключался плавно */
}
/* Меняем фон чекбокса, когда он включен. */
.checkbox:checked + label:before {
  background: #1371FF;
}
/* Сдвигаем переключатель чекбокса, когда он включен. */
.checkbox:checked + label:after {
  left: 18px;
}


.radio {
  vertical-align: top;
  width: 20px;
  height: 20px;
  margin: 0px 2;
}
.radio + label {
  cursor: pointer;
}
.radio:not(checked) {
  position: absolute;
  opacity: 0;
}
.radio:not(checked) + label {
  position: relative;
  padding: 0 0 0 30px;
}
.radio:not(checked) + label:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #353c44;
  border-radius: 50%;
  background: #353c44;
}
.radio:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1371FF;
  opacity: 0;
  transition: all .2s;
}
.radio:checked + label:after {
  opacity: 1;
}




.article_img{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1371FF;
  color: #ffffff;
  padding: 5px 7px;
  border-radius:3px;
  margin-bottom: 7px;
}
.article_img a{color: #ffffff;}
.article_img_text{flex:1;}
.article_img_delete img{width: 20px; display: block;}
.article_img_delete svg{width: 20px; fill:#fff;}


.filter{
  display: flex;
  background: #16191c;
  padding: 10px 10px 5px 10px;
  margin-bottom: 15px;
}
.filter_form{
  flex:1;
}
.filter_form_flex{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.filter_form input{
  width: 150px;
  padding: 6px 10px;
  background: #293037;
  border: 1px solid #293037;
  border-radius:3px;
  margin-right: 7px;
  margin-bottom: 5px;
  color: #ffffff;
}
.filter_form select{
  min-width: 150px;
  padding: 5px 10px;
  background: #293037;
  border: 1px solid #293037;
  border-radius:3px;
  margin-right: 7px;
  margin-bottom: 5px;
  color: #ffffff;
}
.filter_form_checkbox{
  margin-right: 12px;
  margin-bottom: 5px;
}
.filter_form input[type='checkbox']{
  width: auto;
  padding: 0px;
}
.filter_form input[type='submit']{
  cursor: pointer;
  width: 150px;
  padding: 6px 10px;
  border:1px solid #1371FF;
  background: #1371FF;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px;
}

.filter_form input[type='datetime-local']{
  padding: 4px 10px;
  width: 180px;
}


.user_settings_wrap{
  display: flex;
}
.user_settings_block{
  background: #16191c;
  padding: 15px;
  margin-right: 15px;
  min-width: 350px;
  max-width: 350px;
}

.user_settings_block table td{
  padding: 4px 0;
}
.user_settings_block td:nth-child(2n+1){
  padding-right: 30px;
}
.user_settings_block table input{
  width: calc(100% - 32px);
  padding: 7px 15px;
  background: #293037;
  border:1px solid #293037;
  color: #ffffff;
  border-radius:3px;
}
.user_settings_block table input[type='radio']{
  width: 25px;
  padding: 0;
  background: #293037;
  border:1px solid #293037;
  color: #ffffff;
  border-radius:3px;
}
.user_settings_block table select{
  width: 100%;
  padding: 7px 15px;
  background: #293037;
  border:1px solid #293037;
  color: #ffffff;
  border-radius:3px;
}



.user_note{
  margin-bottom: 10px;
}
.user_note div{
  margin-bottom: 7px;
}
.user_note textarea{
  width: calc(100% - 32px);
  padding: 7px 15px;
  background: #293037;
  border:1px solid #293037;
  color: #ffffff;
  border-radius:3px;
}


.user_settings_btns{
  display: flex;
  margin: 15px 0;
}
.user_settings_btns a{
  padding: 10px 15px;
  border:1px solid #1371FF;
  background: #1371FF;
  color: #ffffff;
  text-align: center;
  margin-right: 10px;
  text-decoration: none;
}
.user_settings_btns input{
  cursor: pointer;
  padding: 10px 15px;
  border:1px solid #1371FF;
  background: #1371FF;
  color: #ffffff;
  text-align: center;
  margin-right: 10px;
  text-decoration: none;
}


.amount_table{
  display: flex;
  align-items: center;
  justify-content: center;
}
.amount_table_before{
  font-size: 11px;
  color: #788a9c;
}
.amount_table_amount{
  color: #ffffff;
  font-weight: 600;
  margin: 0 10px;
  font-size: 15px;
}
.amount_table_after{
  font-size: 11px;
  color: #788a9c;
}



.time_second{
  font-size: 11px;
  color: #788a9c;
}


.casino_icon img{
  display: block;
  width: 75px;
  border-radius:3px;
}

.payment_icon img{
  display: block;
  width: 120px;
  border-radius:3px;
}

.cashier_balance{
  display: flex;
  background: #161a1f;
  padding: 10px 10px;
  margin-bottom: 15px;
}
.cashier_balance_name{
  margin-right: 15px;
}
.cashier_balance_balance{
  font-weight: bold;
}




.docs_user{
  width: 100%;
}
.docUser{
	position: relative;
	float:left;
	width: 73px;
	height: 73px;
	background-size: cover;
	background-position: center center;
	margin:5px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.1), 0 1px 3px 0 rgba(0,0,0,.08);
	cursor:pointer;
	transition: 0.3s;
}
.dellDoc{
	display: none;
	position: absolute;
	z-index: 15;
	width: 17px;
	height: 17px;
	top: 0;
	right: 0;
	background: #000000;
	background-image: url('/img/close_white.svg');
	background-size: 9px;
	background-position: center center;
	background-repeat: no-repeat;
}
.showDoc{
	display: none;
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
	background-image: url('/img/open_white.svg');
	background-size: 30px;
	background-position: center center;
	background-repeat: no-repeat;
}
.docUser:hover .dellDoc{
	display: block;
}
.docUser:hover .showDoc{
	display: block;
}


.table_status_0{
  padding: 7px 10px;
  border-radius:3px;
}
.table_status_1{
  background: #4c9002;
  color: #fff;
  padding: 7px 10px;
  border-radius:3px;
}
.table_status_2{
  background: #1371FF;
  color: #fff;
  padding: 7px 10px;
  border-radius:3px;
}
.description_finance{
  margin-top: 7px;
  color: rgba(197,207,217,0.6);
  font-size: 13px;
}


.table_auth_status_1{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4c9002;
  color: #fff;
  padding: 7px 10px;
  border-radius:3px;
}
.table_auth_status_1 a{
  margin-left: 5px;
}
.table_auth_status_1 img{
  width: 16px;
}


.stats_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.stats{
  background: rgba(0,0,0,0.4);
  padding: 15px;
  margin-bottom: 15px;
  width: 31%;
}
.stats table{
  width: 100%;
}
.stats H2{
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 15px;
}
.stats table span{
  color: #ffffff;
  font-weight: bold;
}
.stats_nodata{
  background: #161a1f;
  padding: 10px;
  text-align: center;
}




.user_find{
    display: flex;
    align-items: center;
    background: #16191c;
    padding: 10px;
    margin-bottom: 15px;
}
.user_find_back{
  margin-right: 10px;
}
.user_find_back a{
  display: block;
  padding: 5px;
  border-radius:100px;
  background: #1371FF;
  transition: 0.3s;
}
.user_find_back a:hover{
  background: rgba(0,0,0,0.6);
}
.user_find_back img{
  display: block;
  width: 16px;
  height: 16px;
}
.user_find_back svg{
  display: block;
  fill:#fff;
  width: 16px;
  height: 16px;
}
.user_find_tags{
  margin-left: 10px;
  background: rgba(0,0,0,0.6);
  border-radius:100px;
  padding: 5px 10px;
  font-size: 12px;
}
.user_find_tags span{
  opacity:0.5;
}


.collections{
  background: #15191d;
  padding: 10px;
  margin-bottom: 15px;
}
.collections_head{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.collections_name{flex:1;}
.collections_btns{
  margin-left: 20px;
}
.collections_name_name{
  color: #ffffff;
  margin-bottom: 5px;
}
.collections_type{
  text-decoration: underline;
  margin-bottom: 5px;
}
.collections_date{
  font-size: 12px;
}
.nodata_collections{
  background: #191e24;
  text-align: center;
  padding: 15px 10px;
}
.collection_form_block_name{
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}


.promo_in_table{
  background: #1371FF;
  color: #ffffff;
  padding: 6px 10px;
  border-radius:6px;
}


.promo_use{
  background: #1371FF;
  color: #ffffff;
  padding: 2px 6px;
  border-radius:50px;
}

.promo_usefail{
  background: #2d343c;
  color: #ffffff;
  padding: 2px 6px;
  border-radius:50px;
  margin-left: 5px;
}


.btn_individual_partner{
  display: block;
  cursor: pointer;
  padding: 10px 15px;
  border: 1px solid #000;
  background: #000;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 5px;
  border-radius: 3px;
  text-decoration: none;
}



.details_wrap{
  display: flex;
}
.details_wrap > div:first-child{
  flex: 1;
  margin-right: 30px;
}
.details_wrap h3{
  font-size: 19px;
  color: #616a76;
  font-weight: 300;
  margin-bottom: 17px;
}



.details_default{
  background: #16191c;
  padding: 15px;
}
.details_langs{
  background: #16191c;
  padding: 15px;
  width: 450px;
}



.details_default_event{
  display: flex;
  align-items: center;
}
.details_default_event > div:first-child{
  flex: 1;
  text-align: right;
}
.details_default_event > div:last-child{
  flex: 1;
}
.details_default_event .event_logo{
  background: #1d2329;
  border: 1px solid #57626f;
  border-radius: 500px;
  width: 65px;
  height: 65px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.details_default_event .event_logo img{
  display: block;
  max-width: 70%;
  max-height: 70%;
}


.langs{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.langs > div:nth-child(2){
  flex: 1;
}
.langs input{
  width: calc(100% - 32px);
  padding: 7px 15px;
  background: #293037;
  border: 1px solid #293037;
  color: #ffffff;
  border-radius: 3px;
}
.langs > div:nth-child(1){
  font-weight: bold;
  width: 35px;
}
.langs button{
  display: block;
  width: 19px;
  height: 19px;
  margin-left: 7px;
  border: 0;
  background: none;
  cursor: pointer;
  transition: 0.3s;
}
.langs svg{
  display: block;
  width: 100%;
  fill: #57626f;
}
.langs button:hover svg{
  fill: #1371FF;
}



.details_flex{
  display: flex;
}
.details_flex > div:nth-child(1){
  margin-right: 30px;
}


.details_list{
  color: #616a76;
}
.details_list > div{
  padding: 1.9px 0;
}
.details_list span{
  color: #c7cfd9;
}



.details_img{
  background: #293037;
  border-radius: 3px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.details_img img{
  display: block;
  max-width: 80%;
  max-height: 80%;
}



.top_switch{
  display: flex;
  align-items: center;
}
.top_switch > div{
  margin: 0 3px;
  cursor: pointer;
}
.top_switch svg{
  display: block;
  margin: 0;
  padding: 0;
}
.popular_left_act svg{
  fill: #e1de00;
}
.popular_center_act svg{
  fill: #9b07f0;
}


.count_events{
  display: flex;
  align-items: center;
  justify-content: center;
}
.count_events > div{
  margin: 0 3px;
  padding: 3px 7px;
  border-radius: 500px;
  background: #1d2329;
}
.count_events .active{
  background: #1371FF;
}

.teble_name_link{
  color: #c7cfd9;
  text-decoration: none;
}



.details_img_loader{
  position: relative;
  background-color: #293037;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-origin: content-box;
  border-radius: 3px;
  width: 125px;
  height: 125px;
  padding: 25px;
}
.details_img_loader .loader{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 25, 28, 0.7);
}
.details_img_loader:hover .loader{
  display: block;
}

.icon_del_btn{
  position: absolute;
  top: 15px;
  right: 15px;
  width: 19px;
  height: 19px;
  cursor: pointer;
}
.icon_del_btn svg{
  display: block;
  width: 100%;
  height: 100%;
}

.icon_load_btn{
  position: absolute;
  top: calc(50% - 32.5px);
  left: calc(50% - 32.5px);
  width: 65px;
  height: 65px;
  cursor: pointer;
}
.icon_load_btn svg{
  display: block;
  width: 100%;
  height: 100%;
}



.event_name_link{
  color: #c7cfd9;
  text-decoration: none;
}
.event_name_link > div{
  display: flex;
  align-items: center;
}
.event_name_link > div > div:first-child{
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
  padding: 4px;
  background: #111519;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px 11px 1px 0;
  border-radius: 3px;
  border: 1px solid #1d2329;
}
.event_name_link img{
  display: block;
  max-height: 100%;
  max-width: 100%;
}




.live{
  color: #b21941;
  font-weight: bold;
}
.line{
  color: #1371FF;
  font-weight: bold;
}



.table_event_time{
  font-weight: bold;
  font-size: 17px;
}



.bet_status{
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: 3px;
}
.b0{background: #1d2329;}
.b1{background: #007914;}
.b2{background: #900b0b;}
.b3{background: #e8af00; color: #000;}



.result_form_table input{
  text-align: center;
  font-weight: bold;
}
.result_form_table td{
  vertical-align: center;
  padding-right: 5px;
}

.bet_created{
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  font-size: 10.5px;
  white-space: nowrap;
}

.bet_bar{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 7px;
}
.bet_bar > a:nth-child(2){
  flex: 1;
  margin: 9px 0;
}
.bet_bar svg{
  display: block;
  margin: 0;
  padding: 0;
  fill: #fff;
  transition: 0.3s;
}
.bet_bar > a:nth-child(1):hover svg{
  fill: #b400ef;
}
.bet_bar > a:nth-child(2):hover svg{
  fill: #00efae;
}
.bet_bar > a:nth-child(3):hover svg{
  fill: #1371FF;
}

.event_hidden{opacity: 0.19;}

.stats_page{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}
.stats_block{
  display: flex;
  flex-direction: column;
  background: #161a1f;
  min-height: 100px;
  padding: 10px;
}
.stats_block > div:nth-child(2){
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats_count{
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  margin: 10px 0;
}
.stats_f{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 3px 0;
  background: rgba(0, 0, 0, 0.15);
  padding: 5px 10px;
}
.stats_f > div:nth-child(1){
  color: rgba(255, 255, 255, 0.5);
}
.stats_f > div:nth-child(2){
  font-weight: bold;
}
.stats_f span{
  font-size: 11px;
  font-weight: 100;
  color: #00CF00;
  opacity: 0.5;
}

@media screen and (max-width: 2500px) {
  .stats{width: 47%;}
}

@media screen and (max-width: 1750px) {
  .stats{width: calc(100% - 30px);}
}

@media screen and (max-width: 1000px) {
  .table_wrap{overflow-x: auto;}
  .left_block{
    width: 70px;
  }
  .menu .menu_link img{
    width: 50px!important;
  }
  .page{
    padding-left: 45px;
  }
  .content{
    padding-right: 10px;
  }
  .menu .menu_link svg{
    width: 20px;
  }
  .menu_top{
    height: 140px;
  }
  .menu_avatar, .menu_avatar_example{
    width: 40px;
    height: 40px;
  }
  .filter_form select,
  .filter_form input{
    width: 100%;
  }
}


@media screen and (max-width: 650px) {
  .content_auth_center{
    width: calc(100% - 20px);
    padding: 20px 10px;
  }
}