@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
/*==== font-family: 'Roboto', sans-serif; ===*/


@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-Black.woff2') format('woff2'),
      url('../fonts/CircularStd-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-Medium.woff2') format('woff2'),
      url('../fonts/CircularStd-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std Book';
  src: url('../fonts/CircularStd-Book.woff2') format('woff2'),
      url('../fonts/CircularStd-Book.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-Bold.woff2') format('woff2'),
      url('../fonts/CircularStd-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}






a:hover {
    text-decoration: none;
  }
  a:focus {
    outline: none;
  }
  .btn:focus {
    outline: none;
    box-shadow: none;
  }
  button:focus {
    outline: none;
    box-shadow: none;
  }
  ul {
    margin: 0;
    padding: 0;
  }
  li {
    list-style: none;
  }
  .form-control:focus {
    border: none;
    box-shadow: none;
  }
  body {
    font-family: 'Circular Std';
    font-size: 14px;
    background: #fff;
  }
  p {
    font-family: 'Circular Std';
    font-weight: normal;
    font-size: 14px;
    margin: 0;
  }

.container{
  max-width: 1170px;
}




.admin_loginPage{
  background: #5a55ca;
  width: 100%;
  height: 100vh;
  position: relative;
}
.login_box{
  background: #fff;
  width: 660px;
  padding: 40px;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: space-between;
}
.logo_div{
  width: 43%;
  border-right: 1px solid #BCBCBC;
  display: flex;
  align-items: center;
}
.logo_div img{
  margin-top: 20px;
}
.login_box .form_div{
  width: 50%;
}
.login_box .form_div h3{
  color: #5a55ca;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}
.login_box .form_div h3 span{
  display: block;
  color: #000;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.login_box .form_div .form-control{
  border: none;
  border-bottom: 1px solid #C9C9C9;
  border-radius: 0;
  padding: 25px 0;
  margin-top: 10px;
  font-family: 'Circular Std Book';
}
.login_box .form_div a{
  color: #000;
  opacity: .8;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Circular Std Book';
  font-weight: 500;
  margin-top: 5px;
  display: inline-block;
}

.login_btn{
  border: none;
  outline: none;
  background: #5a55ca;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  font-family: 'Circular Std Book';
  font-weight: 500;
  width: 100%;
  border-radius: 4px;
  line-height: 43px;
  margin-top: 20px;
  transition: 0.3s all ease-in;
}
.login_btn:hover{
  background: #302b9e;
  color: #fff;
}

.login_box .form_div ::-webkit-input-placeholder { 
  color: #000;
  opacity: .8;
}

.login_box .form_div :-ms-input-placeholder { 
  color: #000;
  opacity: .8;
}

.login_box .form_div ::placeholder {
  color: #000;
  opacity: .8;
}

header{
  background: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  padding: 10px 0;
}
.head_part{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head_part .logo{
    flex-grow:1;
}
.head_part .logo a.nav-link{
    padding-left:0;
}
.head_part .logo img{
    width:120px;
}
.head_part .nav_item{
    margin-right:25px;
}
.head_part .navbar-nav{
  flex-direction: row;
}
.head_part .navbar-nav .nav-link {
  color: #000;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: 'Circular Std';
  font-weight: bold;
  padding: 0 0 0 30px !important;
}

.head_part .navbar-nav .nav-link:hover {
  color: #D59529;
}

.head_part .navbar-nav .nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #5a55ca;
  transition: width .3s;
  margin-top: 5px;
}
.head_part .navbar-nav .nav-link.active{ 
  color: #5a55ca;
}
.head_part .navbar-nav .nav-link:hover::after,
.head_part .navbar-nav .active:after {
  width: 100%;
  transition: width .3s;
  color: #D59529;
}
.head_part .navbar-nav .nav-item{
  position: relative;
}
span.noti_fi{
  background: #D59529;
  color: #fff;
  font-size: 13px;
  font-family: 'Circular Std Book';
  font-weight: 500;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: -10px;
  height: 20px;
  width: 20px;
  text-align: center;
}


.head_part .dropdown .btn{
  background: none;
  border-radius: 0;
  border: none;
  font-size: 16px;
  color: #000;
  opacity: 0.8;
  font-family: 'Circular Std';
  font-weight: 500;
  text-transform: capitalize;
}
.head_part .dropdown .dropdown-toggle::after{
  color: #7B7B7B;
  top: 16px;
  position: absolute;
  margin-left: 5px;
}


.topic_body{
  margin: 40px 0;
}
.topic_head{
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.topic_head h3{
  color: #5a55ca;
  font-size: 28px;
  text-transform: capitalize;
  font-weight: bold;
}
.search-container{
  position: relative;
  display: flex;
  align-items: center;
}
.search-container input{
  background: none;
  border: 1px solid #CBCBCB;
  border-radius: 4px;
  height: 36px;
  padding: 15px;
  width: 270px;
}
.search-container form{
  position: relative;
}
.search-container button.search_bu {
  border: none;
  background: none;
  padding: 0;
  position: absolute;
  right: 0px;
  top: 14px;
  padding: 7px 10px;
}
.search-container a.add_btn{
  background: #5a55ca;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  padding: 6px 15px;
  margin-left: 12px;
  transition: 0.3s all ease-in;
}
.search-container a.add_btn:hover{
  background: #302b9e;
  cursor: pointer;
}
.search-container ::-webkit-input-placeholder { 
  color: #000;
  opacity: .5;
  font-size: 14;
}

.search-container :-ms-input-placeholder { 
  color: #000;
  opacity: .5;
  font-size: 14;
}

.search-container ::placeholder {
  color: #000;
  opacity: .5;
  font-size: 14;
}

.add_newTopic{
  border: 1px dashed #707070;
  border-radius: 4px;
  padding: 25px 20px;
  margin-bottom: 30px;
}
.add_newTopic h3{
  color: #000;
  font-size: 16px;
  opacity: .7;
  font-weight: 500;
  margin-bottom: 24px;
}
.del_btn{
  position: absolute;
  right: 25px;
  top: 15px;
  background: none;
  outline: none;
  border: none;
}
.add_newTopic form{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.add_newTopic input{
  background: none;
    border: 1px solid #CBCBCB;
    border-radius: 4px;
    height: 45px;
    padding: 15px;
    width: 255px;
}
.add_newTopic .sub_btn{
  background: #000;
  color: #fff;
  font-size: 24px;
  border: none;
  outline: none;
  border-radius: 4px;
  height: 45px;
  width: 53px;
}

.add_newTopic::-webkit-input-placeholder { 
  color: #000;
  opacity: .5;
  font-size: 14;
  font-weight: 500;
}

.add_newTopic:-ms-input-placeholder { 
  color: #000;
  opacity: .5;
  font-size: 14;
  font-weight: 500;
}

.add_newTopic::placeholder {
  color: #000;
  opacity: .5;
  font-size: 14;
  font-weight: 500;
}

.fancybox-inner {
	width: 390px !important;
}


ul.topic_item{
  background: #EDEDED;
  padding: 25px 20px;
  border-radius: 4px;
  margin-bottom: 30px;
}
ul.topic_item  li{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
ul.topic_item  li:nth-child(2){
  margin: 10px 0;
}
ul.topic_item h4{
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
ul.topic_item  li .btn{
  background: none;
  padding: 0;
  margin: 0;
}
ul.topic_item h5{
  color: #000;
  font-size: 14px;
  opacity: .8;
  font-weight: 500;
  margin: 0;
}
ul.topic_item h6{
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 22px;
  margin: 0;
}
.switch.mr-4{
	margin-right:2px !important;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9A9A9A;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom:2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #4BD964;
}


input:checked + .slider:before {
  -webkit-transform: translateX(11px);
  -ms-transform: translateX(11px);
  transform: translateX(11px);
  box-shadow:-1px 2px 3px #187128;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}





.member_table{
  border-radius: 3px;
}
.topic_body .table tr td:last-child{
  width:125px !important;	
}
.topic_body .table tr td:nth-child(2){
  max-width:330px !important;	
}
.topic_body .table tr td:nth-child(3){
  max-width:330px !important;	
}
.topic_body .table .thead-light th a{
  background: #EDEDED;
  color: #000;
  opacity: .8;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 0;
}
.topic_body .table .thead-light th a.up_down{
  float: right;
}
.topic_body .table th{
  color: #000;
  opacity: .8;
  font-size: 16px;
  font-weight: 500;
}
.topic_body .table{
  border: 1px solid #D6D6D6;
  margin-bottom: 0;
}
.topic_body .table td, .table th{
  border: 1px solid #D6D6D6;
}
.topic_body .table td{
  color: #000;
  opacity: .8;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Circular Std Book';
  word-break: break-word;
}
.topic_body .table td a{
  border: 1px solid #707070;
  border-radius: 2px;
  height: 22px;
  width: 22px;
  padding: 2px;
  color: #000;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  margin-left: 5px;
  transition:all 0.3s ease-in;
}
.topic_body .table td a:hover i{
  color: #D59529;
  transition:all 0.3s ease-in;
}
span.user_img{
  margin-right: 10px;
  display: inline-block;
  float:left;
}

.records_show{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.search_records .btn{
  border: 1px solid #DBDBDB;
  border-radius: 0;
  margin-right: 15px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: #000;
  opacity: .9;
}
.search_records span{
  color: #000;
  opacity: .8;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}
.records_show .pagination{
  border-radius: 0;
}
.records_show .page-item:first-child .page-link{
  border-radius: 0;
}
.records_show .page-item:last-child .page-link{
  border-radius: 0;
}
.records_show .page-link{
  border: 1px solid #D2D2D2;
  font-size: 14px;
  color: #393B3B;
  font-weight:400;
  font-family: 'Roboto', sans-serif;
  padding: 12px 18px;
}
.records_show .page-item.active .page-link{
  background: #D59529;
  border-color: #D59529;
}
.records_show .page-link:hover{
  background: #D59529;
  color: #fff;
  border-color: #D59529;
}
.nxt_color{
  color: #D59529 !important;
}
.nxt_color:hover{
  color: #fff !important;
}



.modal-dialog{
  max-width: 372px;
  border: none;
}
.modal-content{
  border: none;
  border-radius: 4px;
  padding: 30px;
}
button.close{
  opacity: 1;
}
.modal-title{
  color: #000;
  font-size: 22px;
  font-family: 'Circular Std';
  font-weight: 500;
}
.modal-header{
  border: none;
  padding: 0;
  padding-bottom: 10px;
}
.modal-body{
  padding: 0;
}
.user_profile{
  position: relative;
  display: inline-block;
}

.user_profile a.add_pic{
  background: #D59529;
    color: #fff;
    font-size: 13px;
    font-family: 'Circular Std Book';
    font-weight: 500;
    border-radius: 50%;
    position: absolute;
    right: -6px;
    bottom: -6px;
    height: 18px;
    width: 18px;
    text-align: center;
    line-height: 18px;
}
.modal-body form {
  margin-top: 20px;
}
.modal-body form .form-group label{
  font-family: 'Circular Std Book';
  font-weight: 500;
  color: #505050;
  font-size: 14px;
  margin-bottom: 4px;
}
.modal-body form .form-control{
  border: 1px solid #DCDCDC;
  border-radius: 3px;
}
.modal-body form .btn{
  background: #D59529;
  color: #fff;
  font-size: 16px;
  font-family: 'Circular Std Book';
  font-weight: 500;
  border-radius: 4px;
  transition: 0.3s all ease-in;
}
.modal-body form .btn:hover{
  background: #000;
}

.error {
  display: block;
  color: #c60909;
}

 input.error {
  border-bottom: 1px solid #c60909 !important;
}
#adminAdd input.error {
	border: 1px solid c60909!important;
}
#adminAdd .form-group .btn-danger{
    background:#5a55ca;
    border:1px solid #5a55ca;
    padding:4px 20px;
}
.no-record-found {
    text-align: center;
    color: #c60909;
border: 1px solid #ddd;
    padding: 11px;
}

.member_table td{
  border: 1px solid #D6D6D6;
  vertical-align: middle;
}

.member_table .user_img img{ border-radius: 50%; width: 30px;height: 30px;display: inline-block;object-fit: fill;}
.fancybox-wrap {
	width: 400px !important;
}
#adminAdd + .add_btn.vid {
	margin-top: 13px;
}
.fancybox-wrap iframe {
	width: 382px;
}
#adminAdd {
	padding-top: 14px;
}
.help-block {
	padding: 10px 0;
}
.records_show.pagein a, .records_show.pagein .active span, .records_show.pagein span  {
  border: 1px solid #D2D2D2;
  font-size: 14px;
  color: #393B3B;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  padding: 12px 18px;
}
.records_show.pagein a:hover {
  background: #D59529;
  color: #fff;
  border-color: #D59529;
}
.records_show.pagein .active span{
  background: #D59529;
  border-color: #D59529;
  color: #fff;
}
.block-title h2 {
	font-size: 20px;
}
.require {
	color: red;
}
input.form-control:focus {
	border: 1px solid #ddd;
}

.add_newTopic .del_btn {
	display: none !important;
}

.topic_item .dropdown-menu {
  left: -152px !important;
  padding-left: 11px !important;
}

.dropdown-menu a {
	color: #000 !important;
}
#login-form input {
	padding: 0 !important;
}
.search_records select {
	padding: 11px;
}



@media(min-width:768px) and (max-width:991px){




}



@media(max-width:767px){
.login_box{
  flex-direction: column;
  width: 100%;
  position: inherit;
  transform: translate(0,0);
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
}
.logo_div{
  width: 100%;
  border: none;
  text-align: center;
}
.logo_div img {
  margin-top: 0;
}
.login_box .form_div{
  width: 100%;
  margin-top: 20px;
}





}




@media(max-width:480px){


}


