/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */


/*# sourceMappingURL=custom.css.map */

body a, body a:hover{
    color: inherit;
    text-decoration: none;
}

.text-main {
    color: #1aa0e1 !important;
}

.text-black {
    color: #000 !important;
}

.link:hover {
    color: #1aa0e1;
}


.sidebar-mini .main-sidebar a .header-logo {
    height: 35px;
}

.header-logo, .site-logo {
    width: 100%;
    height: auto;
}


.header-logo {
    background: url('https://dev.odg.tv/assets/frontend/images/logo-small.png');
    background-repeat: no-repeat;
    background-position: center;
}

.loading-img{
    width: 40px;
}

.sidebar-mini .header-logo {
    background: url('https://dev.odg.tv/assets/frontend/images/logo-small.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* .sidebar-mini .main-sidebar .sidebar-brand {
    line-height: 50px !important;
} */

.main-sidebar .sidebar-brand {
    padding: 15px !important;
}




/*progressbar*/
.progressbar-top {
    margin-bottom: 20px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}
.progressbar-top li {
    list-style-type: none;
    color: #000;
    
    font-size: 14px;
    width: 50%;
    float: left;
    position: relative;
    text-align: center;
}
.progressbar-top li:before {
    content: counter(step);
    counter-increment: step;
    width: 35px;
    line-height: 35px;
    display: block;
    font-size: 16px;
    color: #333;
    background: white;
    border-radius: 50%;
    margin: 0 auto 5px auto;
    text-align: center;
}
/*progressbar connectors*/
.progressbar-top li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 16px;
    z-index: -1; /*put it behind the numbers*/
}
.progressbar-top li:first-child:after {
    /*connector not needed before the first step*/
    content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
.progressbar-top li.active:before,  
.progressbar-top li.active:after{
    background: #1aa0e1;
    color: white;
}


.explore-list svg{
    font-size: 26px;
    color: #1aa0e1;
}

/*dash-top*/
.dash-top .box {
    background: #e7505a;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
    padding: 20px 15px;
    position: relative;
    height: 100%;
}

.dash-top .box svg {
    position: absolute;
    bottom: 0;
    left: 15px;
    font-size: 4.5em;
    opacity: .2;
}
.dash-top .box h3 {
    line-height: 1;
}



/*
Component: Core input type radio
*/
.accordian-box input[type="radio"],
.accordian-box input[type="checkbox"] {
    cursor: pointer;
    outline-style: none;
    position: relative;
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    min-width: 20px;
    margin-bottom: -0.25em;
    margin-right: 5px;
    vertical-align: top;
}

.accordian-box input[type="checkbox"]{
    background-color: #fff;
    border: 1px solid #e9ecf3;
    border-radius: 4px;
    color: #484848;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.accordian-box input[type="radio"] {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    color: #484848;
    outline-style: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}


.accordian-box input[type="checkbox"]:checked:after,
.accordian-box input[type="radio"]:checked:after {
  background: #1aa0e1;
  border: solid 1px #4a8cff;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  text-align: center;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.accordian-box input[type="checkbox"]:checked:after {
    border-radius: 3px;
    content: "\2714";
    font-size: 0.6em;
    line-height: .9;
}

.accordian-box input[type="radio"]:checked:after {
    border-radius: 50px;
    content: "lens";
    font-size: 0.34em;
    line-height: 2.3;
}

.accordian-box input[type="radio"]:disabled,
.accordian-box input[type="checkbox"]:disabled {
	  background: #F2F6F9;
    border: solid 1px #e8e8e8;
    pointer-events: none;
}

.accordian-box input[type="radio"]:disabled:checked:after,
.accordian-box input[type="checkbox"]:disabled:checked:after {
    color: #cdd3d9;
    background: #f2f6f9;
    border: solid 1px #e8e8e8;
}

.accordian-box .Checkbox-parent {
    margin-top: 16px;
    background: #fff;
    padding: 15px;
    border-radius: 4px 4px 0 0;
    position: relative;
    padding-right: 40px;
}

.accordian-box .Checkbox-child {
  margin-bottom: 8px;
  padding-left: 30px;
  margin-top: 15px;
}

.accordian-box ul {
  list-style: none;
}
  
.accordian-box .Checkbox-child li {
  margin-bottom: 15px;
}

/* Accordion */

/*.accordian-box .Accordion:after {*/
/*    font-family: 'feather' !important;*/
/*    content: '\e92d';*/
/*    color: #4f5766;*/
/*    font-weight: bold;*/
/*    float: right;*/
/*    margin-left: 5px;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 10px;*/
/*    transform: translateY(-50%);*/
/*}*/

/*.accordian-box .Accordion--active:after {*/
/*    font-family: 'feather' !important;*/
/*    content: "\e930";*/
/*    color: #4f5766;*/
/*}*/

.accordian-box .Accordion-panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 0 0 4px 4px;
    padding: 0 15px;
}

.accordian-box .Accordion-panel:last-of-type {
  /*border-bottom: solid 1px #e8e8e8;*/
  /*padding-bottom: 16px;*/
}
.accordian-box label {
    margin: 0 !important;
}
.accordian-box .form-control {
    height: 32px;
    box-shadow: none !important;
    outline: none !important;
    max-width: 160px;
    min-width: 100px;
}

		
.accordian-box .Accordion .togIcon{
    position: absolute;
    top: 50%;
    right: 10px;
    cursor: pointer;
    
}

.accordian-box .Accordion .togIcon:after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    color: #4f5766;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    transform: translateY(-50%);
}

.accordian-box .Accordion-active .togIcon:after {
    font-family: "Font Awesome 5 Free";
    content: "\f106";
    color: #4f5766;
}

.accordian-box .show-panel{
    max-height: 100%;
}

.nav.nav-tabs1 {
    border-bottom: 1px solid #1aa0e1;
    margin-bottom: 20px;
}

.nav.nav-tabs1 .nav-item .nav-link {
    border: 1px solid transparent;
    color: #777;
    padding: 14px 20px;
    border-bottom: 0;
}

.nav.nav-tabs1 .nav-item.active .nav-link {
    border-color: #1aa0e1;
    color: #1aa0e1;
    font-size: 18px;
    font-weight: 700;
}

.nav.nav-tabs1 .nav-item .nav-link .badge {
    border-radius: 3px;
}


/*.chet-box*/
.chet-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgb(0 0 0 / 10%);
}
.chet-box .chat-body {
    padding: 16px;
    height: 360px;
}

.chet-box .chat-foot {
    padding: 16px;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.chet-box .chat-foot .input-box input.form-control {
    background: #f2f5f8;
    border-color: #f2f5f8;
    border-radius: 50px;
    font-size: 1em;
    padding: 5px 24px;
    padding-right: 120px;
    height: 52px;
    outline: none !important;
    box-shadow: none !important;
    color: #000;
}

.chet-box .chat-foot .input-box input.form-control:focus {
    border-color: #1aa0e1;
}

.chet-box .chat-foot .input-box .btn.btn-primary {
    position: absolute;
    top: 8px;
    right: 9px;
    border-radius: 50px;
    min-width: 100px;
}

.chet-box .sr-box {
    width: auto;
    max-width: 90%;
    margin-bottom: 15px;
}
.chet-box .sr-box .txt{
    background: #f2f5f8;
    border-radius: 5px;
    padding: 6px 10px;
    display: inline-block;
}

.chet-box .sr-box .txt p {
    margin-bottom: 2px;
}

.chet-box .sr-box.receive {
    margin-left: auto;
    text-align: right;
}

.chet-box .sr-box.receive .txt {
    text-align: left;
}


.view-imgs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.view-imgs .img-box {
    width: 220px;
    height: 140px;
    margin-right: 10px;
    position: relative;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.view-imgs .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-imgs .img-box .cls-icon {
    position: absolute;
    top: -6px;
    right: -8px;
    background: red;
    color: #fff;
    width: 40px;
    height: 40px;
    padding-left: 16px;
    line-height: 38px;
    border-radius: 0 0 0 50px;
}










/* scrollbar */
.scrollbar{
    overflow: auto;
}
.scrollbar::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #e1e1e1;
}

.scrollbar::-webkit-scrollbar
{
    width: 4px;
    height: 4px;
    background-color: #e1e1e1;
}

.scrollbar::-webkit-scrollbar-thumb
{
    width: 4px;
    height: 4px;
    background-color: #1aa0e1;
}

/*responsive*/
@media (max-width: 767px) {
    .accordian-box .Checkbox-child {
        padding-left: 25px;
    }
}


/*slider button*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/*.select-video-box */
.select-video-box input[type="radio"],
.select-video-box input[type="checkbox"] {
    visibility: hidden;
}

.select-video-box input[type="radio"]:checked + label,
.select-video-box input[type="checkbox"]:checked + label {
    border-color: #1aa0e1;
}

.select-video-box label.form-check-label {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
    border: 1px solid rgb(0 0 0 / 8%);
    padding: 0;
    display: block;
}


.select-video-box .txt {
    padding: 15px;
}

.select-video-box .img{
    position: relative;
}
.select-video-box .img1 {
    height: 140px;
    width: 100%;
    object-fit: cover;
}

.select-video-box .form-check-label .check-icon {
    display: none;
    background: rgb(26 160 225 / 80%);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    font-size: 26px;
    text-align: center;
    z-index: 2;
}
.select-video-box .form-check-label .check-icon i{
    font-size: 26px;
}

.select-video-box input[type="radio"]:checked + label .check-icon,
.select-video-box input[type="checkbox"]:checked + label .check-icon {
    display: flex;
}

.select-video-box .delete-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #fc544b;
    color: #fff !important;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 2px;
    font-size: 1.2em;
}

/*.select-video-box */

.livetv-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
    border: 1px solid rgb(0 0 0 / 8%);
    padding: 0;
    display: block;
}


.livetv-box .txt {
    padding: 15px;
}

.livetv-box .img{
    position: relative;
}
.livetv-box .img1 {
    height: 140px;
    width: 100%;
    object-fit: cover;
}

.livetv-box .check-icon {
    display: none;
    background: rgb(26 160 225 / 80%);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    font-size:  26px;
    z-index: 2;
}


.livetv-box:hover .check-icon {
    display: flex;
}

.livetv-box .delete-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #fc544b;
    color: #fff !important;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 2px;
    font-size: 1.2em;
}

.dropdown-item-unread{
   background: #ddd!important; 
}
.vid-title{
    font-size: 13px!important;
}
.col-md-3{
    padding-left:5px!important;
    padding-right:5px!important;
}