html,body {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/*
.dd_show {
  display: block !important;
}
.dd_hide {
  display: none !important;
}
*//
.dd_fa_btn {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 25px;
        border: 1px solid #bbb;
        background: rgba(0,0,0,0.3);
        border-radius: 50%;
        text-align: center;
	margin: 10px;
}
.dd_fa_txt {
	font-size: 20px;
	/*
	padding-left: 10px;
	*/
}

/* 1. MENU BOTTOM --------------------------- */
.main_menu_container {
  position: absolute;
  right: 0px;
  bottom: -100px;
  width: 100%;
  /*
  background-color: #32364a99;
  background-color: white;
  background-color: rgba(50, 54, 74, 0.9);
  */
  background: linear-gradient(135deg, #EA5C54 0%, #bb6dec 100%);
  color: blanchedalmond;
  border-top: 5px solid;
  height: 100px;
  font-size: 11px;
  font-weight: normal;

  /* layout flex */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  opacity: 0;
}
.main_menu_item {
  width: 80px;
  height: 80px;
  border: 1px solid white;
  border-radius: 50%;
  font-size: 30px;
  line-height: 80px;
  text-align: center;
  opacity: 0.5;
}

/* 2. MAIN (SUB MENU + SLIDER) --------------------------- */
.absolute_container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* 2.1 SUB MENU */
.left_container {
  width: 50%;
  height: 100%;
  float: left;
}
.right_container {
  width: 50%;
  height: 100%;
  float: right;
}
.bottom_container {
  position: absolute;
  bottom: 0;
  height: 100px;
  width: 100%;
  overflow: visible;
}

.sub_menu_container {
  /*
  position: absolute;
  background-color: #32364ae8;
  overflow: scroll;
  */
  width: 160%;
  height: calc(100% - 100px);
  font-size: 11px;
  font-weight: normal;
  color: wheat;
  opacity: 0;

  /* layout flex */
  /*
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  */
}

.sub_menu_left_container {
  float: left;
  /*
  border-right: 1px solid;
  */
}

.sub_menu_right_container {
  float: right;
  /*
  border-left: 1px solid;
  */
}

.sub_menu_bottom_container {
  width: 100% !important;
  height: 220px !important;
  margin: auto;
  /*
  border-top: 1px solid;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  */
}

.sub_menu_title {
  padding: 10px;
  text-align: center;
  background: rgba(0,0,0,0.95) !important;
  border-top: 1px solid;
  font-size: 20px;
}

.sub_menu_left_item {
  /*
  margin-left: 20px;
  text-align: center;
  background-color: #32364ae8;
  */
  border-bottom: 1px solid;
  border-right: 1px solid;
  background-color: rgba(50, 54, 74, 0.9);
}

.sub_menu_right_item {
  /*
  margin-right: 20px;
  background-color: #32364ae8;
  */
  text-align: center;
  border-bottom: 1px solid;
  border-left: 1px solid;
  background-color: rgba(50, 54, 74, 0.9);
  height: 150px;
}

.sub_menu_bottom_item {
  text-align: center;
  /*
  margin-left: 20px;
  background-color: #32364ae8;
  border-bottom: 1px solid;
  border-right: 1px solid;
  background-color: rgba(50, 54, 74, 0.9);
  */
}

.select_base_container {
  /*
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding-bottom: 20px;
  margin-bottom: 10px;
  height: calc(100vh - 260px);
  height: calc(100vh - 320px);
  */
  height: calc(100vh - 325px);
  text-align: left;
  overflow-x: hidden;
  overflow-y: scroll;
}

.initial_screen_selection label, .select_base_container label {
  font-size: 20px;
  line-height: 26px;
}

.initial_screen_selection .radio input[type="radio"] + label, .select_base_container .radio input[type="radio"] + label {
  color: grey;
  position: relative;
}

.initial_screen_selection .radio input[type="radio"] + label::before, .select_base_container .radio input[type="radio"] + label::before {
  /* Outer Circle of radio button */
  border: 4px solid grey;
  content: ' ';
  display: inline-block;
  margin-right: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: border 0.15s ease-in-out;
}

.initial_screen_selection .radio input[type="radio"] + label::after, .select_base_container .radio input[type="radio"] + label::after {
  /* Inner Circle of radio button */
  border: 0px solid orange;
  content: ' ';
  background: transparent;
  display: inline-block;
  margin-right: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  position: absolute;
  left: 27px;
  top: 7px;
  transition: border 0.15s ease-in-out;
}

.initial_screen_selection input[type="radio"], .select_base_container input[type="radio"] {
  display: none;
}

/* When button is active */
.initial_screen_selection .radio input[type="radio"]:checked + label::after, .select_base_container .radio input[type="radio"]:checked + label::after {
  background: orange;
}

.initial_screen_selection .radio input[type="radio"]:checked + label::before, .select_base_container .radio input[type="radio"]:checked + label::before {
  border-color: orange;
}

.initial_screen_selection .radio input[type="radio"]:checked + label {
  color: orange;
}
.select_base_container .radio input[type="radio"]:checked + label {
  color: #0DFF92;
}



.add_del_base {
  padding: 15px;
  height: 75px;
}

/* 2.2 SLIDER */
.slider-container {
  /*
  width: 300px;
  height: 500px;
  position: absolute;
  left: 50%;
  margin-left: -150px;
  top: 50%;
  margin-top: -225px;
  display: none;
  top: -100%;
  */
  position: absolute;
  opacity: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
}
.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.holder {
  width: 300%;
  /*
  max-height: 500px;
  */
  height: 100%;
  overflow-y: hidden;
}
.slide-wrapper {
  width: 33.333%;
  height: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}
.slide {
  height: 100%;
  position: relative;
  z-index: -1;
}
@import url(fonts/josefinslab.css);
.temp {
  position: absolute;
  /*
  z-index: 1;
  font-size: 100px;
  left: 15px;
  font-weight: 100;
  */
  text-align: center;
  padding: 5px;
  width: 100%;
  color: white;
  font-size: 30px;
  bottom: 15px;
  font-family: 'Josefin Slab', serif;
}
.slide img {
  position: absolute;
  z-index: 0;
  transform: translatex(-100px);
  width: 130%;
}
.slide:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*
  height: 40%;
  */
  background: linear-gradient(transparent, black);
}
.slide div {
  width: 300px;
  /*
  height: 500px;
  */
  z-index: 0;
}
.slide_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: white;
  font-size: 25px;
  /*
  font-weight: bold;
  */
  background: linear-gradient(135deg, rgba(234, 92, 84, 0) 0%, rgba(187, 109, 236, 0.9) 100%);
  border-bottom: 3px solid blanchedalmond;
}   
.slide_content {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  text-align: center;
  color: white;
  font-size: 20px;
  overflow: scroll;
    background: rgba(0,0,0,0.25);
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: center center;
}   

.slide_content_subtitle {
    /*
    background: rgba(0,0,0,0.7);
    border-bottom: 1px solid blanchedalmond;
    border-left: 1px solid blanchedalmond;
    border-right: 1px solid blanchedalmond;
    */
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px;
    font-size: 20px;
}

.slide_content_inside_container {
  padding-left: 20px;
  padding-right: 20px;
  padding: 20px;
  font-size: 15px;
  background: rgba(0,0,0,0.5);
  min-height: calc(100vh + 100px);
  /*
  height: 100%;
  */
  text-align: left;
}






.toggle.btn {
  width: 85px !important;
}




.page-header {
  margin: 0;
}
.page-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 50px;
}
.page-logo {
    height: 50px;
    border-left: 1px solid;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}




.nav_active {
    opacity: 1;
    color: rebeccapurple;
    /*
    border: 5px solid black;
    */
    font-size: 55px;
    background: lightgrey;
}



.screen_detail {
  width: 35%;
  box-sizing: unset;
}



.config_logo {
    /*
    margin-bottom: 15px;
    */
    height: 75px;
    width: 75px;
    border: 1px solid black;
    background-size: contain;
}

/* file upload */
.template-download {
	background-color: unset !important;
}
.fu_fname {
	overflow-wrap: break-word;
	border-top: 1px solid #eee;
	padding: 10px;
	/*
	text-align: left;
	*/
	margin: 0;
}
.fu_preview {
	height: 100%;
	width: 100%;
	padding: 10px;
}
.fu_preview > video, .fu_preview > audio, .fu_preview > img, .fu_preview > canvas {
	max-width: 100% !important;
}
.fu_preview > img, .fu_preview > canvas {
	height: 75px !important;
}
.fu_image_td, .fu_video_td, .fu_audio_td, .fu_masjid_td, .fu_td {
	text-align: center;
	vertical-align: middle !important;
	border-top: initial !important;
	line-height: initial !important;
}
.fu_netral_td {
}

.animate {
  transition: transform 0.3s ease-out;
}


.dd_content_table {
	width: 100%;
	table-layout: fixed;
}
.dd_content_table > tbody > tr > td {
	padding: 2px;
}
thead {
	background: #413b57;
}
tr:nth-child(even) {
	background: #00000075;
	border: 10px solid #00000000;
}
tr:nth-child(odd) {
	background: #ffffff14;
	border: 10px solid #ffffff00;
}

.dd_wrap {
   white-space: inherit;
   word-break: break-word;
}

.dd_cms_add_button {
	text-align: center;
	padding: 15px;
}

.modal-content {
	/*
	border: 10px solid rgb(107, 107, 107);
	background-color: rgba(255,255,255,0.8);
	*/
	border: 1px solid rgb(107, 107, 107);
	background-color: rgba(0, 0, 0, 0.75);
	color: ivory;
}
.modal-header, .modal-footer {
	background: linear-gradient(135deg, #EA5C54 0%, #bb6dec 100%);
}
.modal-title {
	text-align: center;
	font-weight: bold;
}


.datepicker table th, .datepicker table td {
        background: white !important;
        color: black !important;
}
.datepicker table td.active, .datepicker table td.active:hover {
	background-color: #337ab7 !important;
	color: white !important;
	height: 100% !important;
	width: 100% !important;
}


.nav-item .fas {
	line-height: 80px;
}





hr {
	border: none;
	background: linear-gradient(135deg, #EA5C54 0%, #bb6dec 100%);
	height: 1px;
	margin: 10px;
}

#shutdown_schedule_datetime, #event_start_datetime, #event_stop_datetime {
	color: #265a86;
}

.t_2 {
	background: none;
}

.screenshot_preview {
	height: 120px;
  	background-size: contain;
  	background-repeat: no-repeat;
  	background-position: center center;
}

.live_screen_preview #menu {
	font-size: 10px;
}

.live_screen_preview video {
	width: 100%;
}


.cms_title_tag_active {
	text-align: center;
	background: cornflowerblue;
	padding: 10px;
	background: linear-gradient(135deg, rgba(234, 92, 84, 0.2) 0%, rgba(187, 109, 236, 0.8) 100%);
	border: 1px solid;
}
.cms_title_tag {
	font-size: 18px;
}
.cms_content_tag {
	padding: 10px;
}
.cms_content_tag_field {
	font-weight: bold;
	width: 100px;
	font-size: 15px;
}
.cms_content_tag_value {
	font-weight: normal;
	font-size: 15px;
	padding: 8px;
}
.cms_open {
	border: 1px solid;
}

.sub_menu_btn {
	/*
	padding-top: 2px;
	*/
}

.advanced_menu {
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	background: linear-gradient(135deg, rgba(234, 92, 84, 0.2) 0%, rgba(187, 109, 236, 0.8) 100%);
}

