#section_bo_content{
	opacity: 0;
	transition: visibility 0s, opacity 0.5s linear;
}

.sct_loader{
	padding: 15px;
}
.user-select, .group-select, .video-select, .user-select-imput, .group-select-imput, .video-select-imput{
	cursor: pointer;
}
.user-name{
	min-height: 20px;
	min-width: 50px;
}
.user-live{
	color: #da3649 !important;
}
.user-admin{
	color: #da3649 !important;
	text-decoration: underline !important;
}
.bold{
	font-weight: bold;
}

.with-border{
	border:1px solid black;
}
.with-border-bottom{
	border-bottom:1px solid black;
}

.full-width{
	width: 100%;
}

.clickable{
	cursor: pointer;
}
.expandable{
	cursor: pointer;
}
.bo-text-error {
	color: #FF0000;
}
.bo-text-normal {
	color: #000000;
}

#section-member-list, #section-group-list{
	padding-top: 25px;
}
#members-lists, #groups-lists{
	padding-top: 25px;
}
.member-list, .group-list {
	position: absolute;
	top: 20px;
	display: block;
	width: 96%;
	overflow: hidden;
	opacity: 0;
    	margin-bottom: 50px;
	transition: visibility 0s, opacity 0.5s linear;
}

/* LOADER */

.box{
	width: 100%;
	text-align: center;
	margin-top: 100px;
}

.loader{
	width: 50px;
	height: 50px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}


.loader-quart-1{
	border-radius: 50px;
	border: 5px solid #e98b19;
}

.loader-quart-1:after{
	content: '';
	position: absolute;
	top: -5px; left: -5px; right: -5px; bottom: -5px;
	border: 5px solid transparent;
	border-top-color: #fff;
	border-radius: 50px;

	-webkit-animation: rotation 1s linear infinite;
	animation: rotation 1s linear infinite;
}



.mini-box {
    display:none;
    margin-left: 20px;
}

.mini-loader {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.mini-loader-quart-1 {
    border-radius: 25px;
    border: 5px solid rgba(110,30,120,1);
}

.mini-loader-quart-1:after{
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 5px solid transparent;
    border-top-color: #fff;
    border-radius: 50px;

    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}


@-webkit-keyframes rotation{
	0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); }
	100%{ -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes rotation{
	0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); }
	100%{ -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); }
}

/* END LOADER */

/* ACTION BUTTONS
-------------------------------------------------- */


.a_bo_form i{
	margin-right: 10px;
	padding: 7px;
	border-radius: 50%;
	font-size: 14px;
	color: #FFFFFF;
    	background-color: #e98b19;
	background-color: var(--btnColor);
	transition: all 250ms ease;
}

.a_bo_form:hover i,
.a_bo_form:focus i{
	color: #FFFFFF;
    	background-color: #e8a55b;
	background-color: var(--btnColorHover);
}


/* BUTTONS
-------------------------------------------------- */
    .atrdButton{
        display: inline-block;
        padding: 10px 25px;
        color: #FFFFFF;
        border: solid 1px #e98b19;
        border: solid 1px var(--btnColor);
        background-color: #e98b19;
        background-color: var(--btnColor);
        border-radius: 10px;
    }
        .atrdButton i{
            vertical-align: middle;
            margin-right: 5px;
        }
    .atrdButton:hover, .atrdButton:focus{
        color: #FFFFFF;
        border: solid 1px #e8a55b;
        border: solid 1px var(--btnColorHover);
        background-color: #e8a55b;
        background-color: var(--btnColorHover);
    }

    .atrdButtonWhite{
        display: inline-block;
        padding: 10px 25px;
        color: #e8a55b;
        border: solid 1px #e8a55b;
        background-color: #FFFFFF;
        border-radius: 10px;
    }
        .atrdButtonWhite i{
            vertical-align: middle;
            margin-right: 5px;
        }
    .atrdButtonWhite:hover, .atrdButtonWhite:focus{
        color: #FFFFFF;
        border: solid 1px #e8a55b;
        background-color: #e8a55b;
    }

    .atrdButtonLight{
    	display: inline-block;
        padding: 10px 25px;
        color: #333333;
    	border: solid 1px #333333;
        background-color: #FFFFFF;
    }
    	.atrdButtonLight i{
    		vertical-align: middle;
    		margin-right: 5px;
    	}
    .atrdButtonLight:hover, .atrdButtonLight:focus{
        color: #FFFFFF;
        background-color: #e8a55b;
    }
    .atrdButtonDark{
    	display: inline-block;
        padding: 10px 25px;
        color: #333333;
    	border: solid 1px #FFFFFF;
        background-color: #113344;
    }
    .atrdButtonDark:hover, .atrdButtonDark:focus{
        color: #FFFFFF;
        background-color: #e2001a;
    }

    .atrdButtonCircle{
    	display: inline-block;
    	width: 75px;
        height: 75px;
        text-align: center;
        border-radius: 50%;
        box-shadow: 0px 0px 0px 0px;
        background-color: #113344;
    }
    	.atrdButtonCircle i{
    		color: #FFFFFF;
    		font-size: 30px;
    	}

    .atrdButtonCircle:hover, .atrdButtonCircle:focus{
    	box-shadow: 0px 0px 0px 10px rgba(160,160,160,0.8);
        color: #FFFFFF;
        background-color: #e2001a;
    }

    .atrdButtonHalfCircle{
        display: inline-block;
        height: 45px;
        width: 90px;
        border-radius: 90px 90px 0 0;
        text-align: center;
        background-color: #113344;
    }
        .atrdButtonHalfCircle i{
            color: #FFFFFF;
            font-size: 30px;
        }
    .atrdButtonHalfCircle:hover, .atrdButtonHalfCircle:focus{
        color: #FFFFFF;
        background-color: #e2001a;
    }

    .atrdSmallRoundedButton{
    	height: 30px;
        width: 30px;
         border-radius: 50%;
        text-align: center;
        background-color: #113344;
    }
    	.atrdSmallRoundedButton i{
    		color: #FFFFFF;
    		font-size: 18px;
    	}
    .atrdSmallRoundedButton:hover, .atrdSmallRoundedButton:focus{
        color: #FFFFFF;
        background-color: #e2001a;
    }

    .atrdModalButton{
        margin-right: 5px;
    }
    .atrdModalButton:last-of-type{
        margin-right: 0;
    }


    .atrdButtonSmall{
        padding: 5px 10px;
        border-radius: 3px;
    }
         .atrdButtonSmall i{
            font-size: 12px;
         }


    .atrdButtonDisable {
        background-color: #bbb;
        border-color: #bbb;
        color: #FFF;
        cursor: not-allowed;
    }
    .atrdButtonDisable:hover {
        background-color: #bbb !important;
        color: #FFF;
        border-color: #bbb;
    }

   /* BTN without hover*/
   .buttonDark{
       display: inline-block;
       padding: 10px 25px;
       color: #FFFFFF;
       border: solid 1px #e98b19;
       border-radius: 10px;
       background-color: #555;
       outline:none;
   }

   .buttonSmall{
       adding: 5px 10px;
       border-radius: 3px;
   }

   .btnSelected{
       background-color: #e98b19 !important;
   }

   #btn_boVideo_validDiff {
	margin-bottom:15px;
    }

		#btn_boVideo_validDiff:disabled {
			background-color: #ccc;
			border-color: #ccc;
		}

		#btn_boVideo_validDiff:disabled:hover {
			background-color: #ccc;
			border-color: #ccc;
		}



/* TOOLTIPS
-------------------------------------------------- */
a.info {
   position: relative;
   color: black;
   text-decoration: none;
}

a.info span {
   display: none;
}

a.info:hover {
   background: none; /* Bug IE... */
   z-index: 500;
}

a.info:hover span {
   display: inline;
   position: absolute;
   top: 25px;
   left: 0;
   width: 220px;
   background: white;
   color: #222;
   font-size:13px;
   padding: 8px;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



/* IMPORT CSV
-------------------------------------------------- */
#ipt_boCSV_file {
}

#btn_boCSV_sendFile {
}

input.checkbox_import {
    margin-right: 10px;
}

    input[type="file"] {
        display: none;
    }

.label_input_csv {
    display: inline-block;
    padding: 4px 12px;
    cursor: pointer;
    background: #fff;
    color: #e98b19;
    color: var(--btnColor);
    width: 250px;
    border-radius: 3px;
    font-weight: normal;
    border: 2px solid #e98b19;
    border: 2px solid var(--btnColor);
}
.label_input_csv i {
    font-size: 16px;
    vertical-align: text-bottom;
    margin-right: 8px;
}

.progress_container {
    width: 80%;
    margin-top: 80px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.div_progress {
    width: 100%;
    background-color: #D0D0D0;
    border: 1px solid #A0A0A0;
}

.progressBar {
    width: 1%;
    height: 30px;
    background-color: #cd0037;
    background-image:linear-gradient(to right, #e98b19, #e8a55b);
}

.countlog {
    font-size: 15px;
    display: block;
}




#mini_progress_container {
    width: 40%;
    margin-top: 30px;
    display: block;
}

#mini_div_progress {
    width: 100%;
    background-color: #D0D0D0;
    border: 1px solid #A0A0A0;
}

#mini_progressBar {
    width: 1%;
    height: 15px;
    background-color: #cd0037;
    background-image:linear-gradient(to right, #e98b19, #e8a55b);
}

#mini_countlog {
    font-size: 15px;
    display: block;
}

#btnCancel {
    text-decoration: none;
    color: #FFF;
}
#btnCancel:hover, #btnCancel:focus {
    text-decoration: none;
    color: #FFF;
}


/* PAGINATION
-------------------------------------------------- */
.div_pagination {
    display: block;
    margin-top: 25px;
    width: 100%;
    text-align: right;
    padding-right: 85px;
}

#div_page_container {
    display: inline-block;
}

.div_page {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #e98b19;
    color: #FFF;
    text-align: center;
    padding-top: 5px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 3px;
}
.div_page:hover {
    background-color: #e8a55b;
}
.page_selected {
    background-color: #e8a55b;
}


#div_page_prev {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #e98b19;
    color: #FFF;
    text-align: center;
    padding-top: 5px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 3px;
}
#div_page_prev:hover {
    background-color: #e8a55b;
}

#div_page_next {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #e98b19;
    color: #FFF;
    text-align: center;
    padding-top: 5px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 3px;
}
#div_page_next:hover {
    background-color: #e8a55b;
}

.icon_save_line {

}

.icon_save_line_disable {
    color: #bbb;
}

/* CHECKBOXES
-------------------------------------------------- */

.video-info-title{
    display:block;
    font-size:15px;
    margin-bottom:14px;
    font-variant: small-caps;
    color:#e98b19;
}


.div_tag {
	display:inline-block;
	background-color:#e8a55b;
	padding:2px 8px 2px 8px;
	border-bottom-left-radius:3px;
	border-top-left-radius:3px;
	color:#fff;
}

.div_tag_delete {
	display:inline-block;
	background-color:#e8a55b;
	margin-right:10px;
	padding:2px 8px 2px 8px;
	border-bottom-right-radius:3px;
	border-top-right-radius:3px;
	color:#fff;
	border-left: 1px solid #fff;
	cursor:pointer;
}

/* The container */
.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: normal;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    opacity: 0;
}


/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
		border: 1px solid #e98b19;
		border-radius: 12px;
    background-color: #fff;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
    background-color: #e98b19;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* UPLOAD VIDEO
---------------------------------------------------- */
#btn_modalUpload_cancel {
	display:block;
	margin:auto;
	margin-top:45px;
	height:30px;
	line-height:10px;
	background-color:#fff;
	color:#e98b19;
}

#div_modalUpload_confirm_cancel {
	margin:auto;
	margin-top:45px;
	width: 300px;
	text-align: center;
	display: none;
}
#div_modalUpload_confirm_cancel span {
	display:block;
	margin-bottom:15px;
}
#btn_modalUpload_cancel_ok {
	display:inline-block;
	height:30px;
	line-height:10px;
}
#btn_modalUpload_cancel_nok {
	display:inline-block;
	height:30px;
	line-height:10px;
}

#div_upload_progress {
	display:none;
	margin-bottom:45px;
	padding:25px;
}

.text-form {
	display:block;
	color:#e98b19;
	font-weight:bold;
}
