/* Start ckStyle =======================================*/
#editor-container {
  /* display: none; */
  width: 50%;
  height: 50%;
  margin: auto;
}

/* End of ckStyle ======================================*/
/* Start colorpicker ===================================*/
/* Common stuff */
.picker-wrapper,
.slide-wrapper {
  position: relative;
  float: left;
}

.picker-indicator,
.slide-indicator {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.picker,
.slide {
  cursor: crosshair;
  float: left;
}

/* Default skin */
.cp-default {
  /* background-color: gray; */
  padding: 12px;
  /* box-shadow: 0 0 40px #000; */
  /* border-radius: 15px; */
  float: left;
}

.cp-default .picker {
  width: 200px;
  height: 200px;
}

.cp-default .slide {
  width: 30px;
  height: 200px;
}

.cp-default .slide-wrapper {
  margin-left: 10px;
}

.cp-default .picker-indicator {
  width: 5px;
  height: 5px;
  border: 2px solid darkblue;
  border-radius: 4px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  background-color: white;
}

.cp-default .slide-indicator {
  width: 100%;
  height: 10px;
  /* left: -4px; */
  opacity: 0.6;
  filter: alpha(opacity=60);
  border: 4px solid lightblue;
  border-radius: 4px;
  background-color: white;
}

/* Small skin */
.cp-small {
  padding: 5px;
  background-color: white;
  float: left;
  border-radius: 5px;
}

.cp-small .picker {
  width: 100px;
  height: 100px;
}

.cp-small .slide {
  width: 15px;
  height: 100px;
}

.cp-small .slide-wrapper {
  margin-left: 5px;
}

.cp-small .picker-indicator {
  width: 1px;
  height: 1px;
  border: 1px solid black;
  background-color: white;
}

.cp-small .slide-indicator {
  width: 100%;
  height: 2px;
  left: 0px;
  background-color: black;
}

/* Fancy skin */
.cp-fancy {
  padding: 10px;
  /*    background-color: #C5F7EA; */
  background: -webkit-linear-gradient(top, #aaa 0%, #222 100%);
  float: left;
  border: 1px solid #999;
  box-shadow: inset 0 0 10px white;
}

.cp-fancy .picker {
  width: 200px;
  height: 200px;
}

.cp-fancy .slide {
  width: 30px;
  height: 200px;
}

.cp-fancy .slide-wrapper {
  margin-left: 10px;
}

.cp-fancy .picker-indicator {
  width: 24px;
  height: 24px;
  background-image: url(http://cdn1.iconfinder.com/data/icons/fugue/bonus/icons-24/target.png);
}

.cp-fancy .slide-indicator {
  width: 30px;
  height: 31px;
  left: 30px;
  background-image: url(http://cdn1.iconfinder.com/data/icons/bluecoral/Left.png);
}

/* Normal skin */
.cp-normal {
  padding: 10px;
  background-color: white;
  float: left;
  border: 4px solid #d6d6d6;
  box-shadow: inset 0 0 10px white;
}

.cp-normal .picker {
  width: 200px;
  height: 200px;
}

.cp-normal .slide {
  width: 30px;
  height: 200px;
}

.cp-normal .slide-wrapper {
  margin-left: 10px;
}

.cp-normal .picker-indicator {
  width: 5px;
  height: 5px;
  border: 1px solid gray;
  opacity: 0.5;
  filter: alpha(opacity=50);
  background-color: white;
  pointer-events: none;
}

.cp-normal .slide-indicator {
  width: 100%;
  height: 10px;
  left: -4px;
  opacity: 0.6;
  filter: alpha(opacity=60);
  border: 4px solid gray;
  background-color: white;
  pointer-events: none;
}

/* header */
#picker {
  width: 200px;
  height: 200px;
}

#slider {
  width: 30px;
  height: 200px;
}

#color-preview {
  width: 35%;
  height: 200px;
  float: right;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid lightgray;
}

/* End of colorpicker ==================================*/
.analog-clock {
  display: inline-block;
  width: 300px;
  height: 300px;
  border-radius: 100%;
}

.screen .analog-clock {
  border: 1px dashed #84bcda;
}
.screen .analog-clock:hover {
  border: 2px dashed #84bcda;
}

.analogclock-preview {
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 375px;
  justify-content: center;
  align-items: center;
  background-color: lightgray;
}

.digital-clock {
  background-color: lightgrey;
  margin: 20px 0;
}

.digital-clock {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 200px;
}

.digital-clock p {
  direction: ltr;
  font-size: 60px;
}

.digital-clock-viewer {
  display: inline-block;
}

#digital-clock::-moz-selection {
  background-color: transparent;
}

#digital-clock::selection {
  background-color: transparent;
}

.clock-theme {
  overflow: auto;
  margin-top: 8px;
  margin-bottom: 5px;
  background-color: #d4e0f0;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  flex-flow: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  direction: rtl;
}
.clock-theme label {
  padding: 0 10px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 5px;
  text-align: center;
}
.clock-theme label:hover {
  cursor: pointer;
  background-color: rgba(0, 123, 255, 0.5215686275);
  color: #eeecee;
}

.clock-theme-selector {
  width: 250px;
  border-radius: 4px;
  background-color: transparent;
}
.clock-theme-selector:focus-visible {
  outline: none;
}

.digitalclock-preview > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Start multiVideoSource2 =======================================*/
.mlt-video-preview {
  background-size: cover;
  min-height: 250px;
  border-radius: 5px;
  background-color: lightgray;
  margin-bottom: 4px;
}
.mlt-video-preview video {
  width: 100%;
}

.video-tool-box {
  width: 100%;
  text-align: center;
  /* padding: 15px 30px 15px 15px; */
}

.add-multi-video {
  display: block;
  width: 100%;
  padding: 15px;
}

#add-multi-video {
  float: left;
}

/*  */
#myInput,
#server-videos {
  margin: 0;
  border: 1px solid lightgray;
  border-radius: 0;
  width: calc(100% - 35px);
  padding: 10px;
  font-size: 16px;
  height: 30px;
  text-align: left;
}

#server-videos {
  padding: 0;
}
#server-videos option {
  direction: ltr;
}

#added-video-source {
  overflow: auto;
  background-color: #d4e0f0;
  min-height: 100px;
  max-height: 195px;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 5px;
  border-radius: 5px;
  direction: ltr;
}
#added-video-source li {
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  cursor: pointer;
  position: relative;
  /* padding: 12px 8px 12px 40px; */
  list-style-type: none;
  background: #eee;
  /* font-size: 18px; */
  transition: 0.2s;
  margin-bottom: 5px;
  width: 100%;
  /* make the list items unselectable */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#added-video-source input {
  width: 100%;
  direction: rtl;
  text-align: left;
  border: none;
}

.addBtn {
  background: #fff;
  padding: 0 5px;
  font-size: 36px;
}

.addBtn:hover {
  cursor: pointer;
}

#myModal {
  direction: rtl;
}

.close {
  display: block;
  width: 30px;
  height: 30px;
}

/* End of multiVideoSource2 ============================*/
/* Start slider ========================================*/
.imageslides {
  display: none;
}
.imageslides img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.imageslider {
  display: none;
}

.imageslider-preview {
  background-size: cover;
  height: 250px;
  border-radius: 5px;
  background-color: lightgray;
  margin-bottom: 4px;
  overflow: hidden;
}
.imageslider-preview img {
  max-height: 220px !important;
  max-width: 100% !important;
}

.imageslider-container {
  max-width: 100%;
  border: 1px solid;
  height: -webkit-fill-available;
  min-height: 100px;
  min-width: 100px;
}
.imageslider-container img {
  max-width: -webkit-fill-available;
  max-height: -webkit-fill-available;
  width: 100%;
  height: auto;
}

.imageslider-source-box {
  overflow: auto;
  background-color: #d4e0f0;
  min-height: 100px;
  max-height: 195px;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 5px;
  border-radius: 5px;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.imageslider-source-box > form {
  width: 100%;
}
.imageslider-source-box div {
  border: 1px solid #d4e0f0;
  text-align: left;
  background-color: white;
  padding: 4px;
  border-radius: 4px;
  color: #333;
  margin: 2px 0;
}
.imageslider-source-box div:hover {
  border: 1px solid rgb(172, 172, 172);
}
.imageslider-source-box label {
  padding: 0;
  margin: 0;
}
.imageslider-source-box label:hover {
  cursor: pointer;
}
.imageslider-source-box input:hover {
  cursor: pointer;
}

/* End of slider =======================================*/
/*Start drawingPanel-general =======================================*/
a::-moz-selection, span::-moz-selection, img::-moz-selection, label::-moz-selection {
  background-color: transparent;
}
a::selection,
span::selection,
img::selection,
label::selection {
  background-color: transparent;
}

.screen-container {
  height: 100vh;
}

.screen .resize,
.screen .resize-drag,
.screen .dragable {
  font-size: 20px;
  touch-action: none;
  /* This makes things *much* easier */
  box-sizing: border-box;
  border: 1px dashed #84bcda;
}
.screen .resize:hover,
.screen .resize-drag:hover,
.screen .dragable:hover {
  border: 2px dashed #84bcda;
}

.contentArea {
  transform: translate(30.0878vw, 30.599vh);
  display: flex;
  align-items: center;
  min-height: 100 px;
  min-width: 100 px;
  justify-content: center;
}

.contentArea p:hover {
  border: 1px dashed gray;
}

marquee .editable:hover {
  border: 1px dashed gray;
}

.video:hover {
  border: 2px dashed #84bcda;
}

/*@@@@@@@@@@@@@@@@@@@@@@*/
/* Change background color of buttons on hover */
/* Create an active/current tablink class */
/* Style the tab content */
/*accordion*/
.screen {
  float: left;
  margin-top: 60px;
  border: 2px solid rgba(21, 162, 255, 0.726);
  background: rgb(221, 240, 253);
}

.single-video-preview {
  background-color: lightgray;
  border-radius: 4px;
  height: 270px;
  background-image: url("../images/video-place.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.single-video-preview img {
  width: 100%;
}
.single-video-preview video {
  width: 100%;
}

.single-image-source-type,
.single-video-details-bar {
  background-color: lightgray;
  height: 20px;
  border-radius: 0 0 8px 8px;
}

.size-bar {
  background-color: #d4e0f0;
  height: 50px;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-evenly;
  align-items: center;
}
.size-bar label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.size-bar select,
.size-bar input:not(.custom-range) {
  max-width: 150px;
  border-radius: 4px;
  border: none;
}

.single-image-source-type,
.source-switcher {
  background-color: #d4e0f0;
  height: 50px;
  border-radius: 4px 4px 0 0;
}

.source-switcher .btn-group-toggle {
  width: 100%;
  border-radius: 4px;
}
.source-switcher label {
  width: 50%;
  height: 35px;
}
.source-switcher > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
}

.single-image-preview {
  height: 300px;
  background-color: lightgray;
  border-radius: 4px;
  height: 270px;
  background-image: url("../images/img-place.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.single-image-preview img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  display: block;
  margin: auto;
}

.source-bar {
  background-color: #d4e0f0;
  height: 50px;
  border-radius: 0 0 4px 4px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.source-bar select,
.source-bar input {
  width: 100%;
  border: none;
  border-radius: 4px;
  height: 34px;
  direction: ltr;
  padding: 0 8px;
}
.source-bar select:hover,
.source-bar input:hover {
  cursor: pointer;
}
.source-bar input:hover {
  cursor: text;
}

.btn-group-toggle {
  border-radius: 4px;
}
.btn-group-toggle label {
  border-radius: 0;
  width: 70px;
}

.add-source-btn {
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.add-source-btn:hover {
  cursor: pointer;
}

.image {
  width: 25%;
  height: auto;
}

.pri-btn {
  color: #fff;
  background-color: #6849fc;
  padding: 5px 15px;
  min-width: 80px;
  border-radius: 10px;
}
.pri-btn:hover {
  background-color: rgba(103, 73, 252, 0.7058823529);
}

.sec-btn {
  color: #fff;
  background-color: #565656;
  padding: 5px 15px;
  min-width: 80px;
  border-radius: 10px;
}
.sec-btn:hover {
  background-color: rgba(86, 86, 86, 0.7333333333);
}

.multi-video-source-path,
.multi-video-source-selector {
  background-color: rgb(212, 224, 240);
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  height: 50px;
}
.multi-video-source-path input, .multi-video-source-path select,
.multi-video-source-selector input,
.multi-video-source-selector select {
  border: none;
  border-radius: 5px !important;
  margin: 0 5px;
  text-align: left;
  height: 30px;
}
.multi-video-source-path div,
.multi-video-source-selector div {
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  width: 30px;
  height: 30px;
}
.multi-video-source-path div:hover,
.multi-video-source-selector div:hover {
  cursor: pointer;
  box-shadow: 1px 1px 6px gainsboro;
}

.addBtn {
  background: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool-bar {
  color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  list-style-type: none;
  cursor: pointer;
  margin: 10px 0;
  padding-right: 0;
  height: 40px;
  overflow: hidden;
}
.tool-bar li {
  margin-top: 8px;
}
.tool-bar li:hover:not(.line-vertical) {
  padding-top: 3px;
}
.tool-bar a {
  color: white;
}
.tool-bar a:visited {
  color: white;
  outline: none;
  text-decoration: none;
}
.tool-bar a:hover {
  color: #6849fc;
  text-decoration: none;
}
.tool-bar img {
  width: 22px;
}
.tool-bar .line-vertical:hover {
  background-color: unset;
  cursor: default;
  color: unset;
}

#editorSubmit {
  border: none;
  border-radius: 4px;
  padding: 0 6px 5px 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
#editorSubmit img {
  margin-left: 5px;
}

#dropdownMenuButton img {
  width: 25px;
  margin: 0 4px;
}

#dropdownMenuButton:hover {
  color: #fff;
}

/* background color setting */
.cp-default {
  padding-left: 0 !important;
}

#bg-color {
  background-color: lightgray;
  overflow: auto;
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 2px auto;
}

#bg-image {
  background-color: lightgray;
  overflow: auto;
  margin: 4px auto;
  padding: 5px;
}

#bg-image textarea {
  width: 100%;
  height: 35px;
  text-align: center;
}

#bg-image > select {
  width: 100%;
  margin-bottom: 15px;
}

.bg-type-selector {
  width: 100%;
  border-radius: 4px;
}

.modal-body > div {
  text-align: right;
}

.modal-body > div > select {
  direction: ltr;
  text-align: center;
  border: 1px solid rgb(199, 199, 199);
}

.active-primary {
  background-color: #0062cc !important;
}

.marquee,
.marquee-with-options,
.marquee-vert-before,
.marquee-vert {
  width: 50%;
  margin: auto;
  height: 50px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.subtitle-preview {
  background-color: lightgray;
  border-radius: 4px;
  height: 100px;
  overflow: hidden;
}
.subtitle-preview marquee {
  position: relative;
}

.modal-row-section {
  margin-top: 5px;
  margin-bottom: 10px;
  background-color: #d4e0f0;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subtitle-text {
  width: 100%;
  height: 150px;
}

.marquee-vert > div {
  width: 100% !important;
}

#cke_editor1 {
  max-width: 96% !important;
  margin-left: 15px;
  border-radius: 4px;
}

.subtitle-editor {
  margin: 20px;
  width: 90%;
}

.size-input {
  border: none;
  border-radius: 4px;
  width: 50%;
}

.page-content > div {
  background-color: #f1f1f1;
}

.offcanvas-togglers {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.offcanvas-togglers a {
  margin: 0 4px;
  border-radius: 4px !important;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offcanvas-togglers a:focus {
  box-shadow: none;
}

#pin-sidebar i {
  font-size: 2rem;
  font-weight: 400;
}

.user-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid gray; */
  border-radius: 50%;
  background-color: #f9f9f9;
  margin: 0 8px;
}

.tool-bar-container {
  background-color: #6849fc;
}

.sidebar-footer img {
  max-width: 25px;
}

.default-theme .sidebar-wrapper {
  background-color: #001b48 !important;
}

.default-theme.sidebar-bg .sidebar-wrapper .sidebar-menu .sidebar-dropdown div {
  background-color: rgba(19, 19, 19, 0.5) !important;
  color: #ccc !important;
}

.default-theme .sidebar-wrapper .sidebar-menu a:hover i,
.default-theme .sidebar-wrapper .sidebar-menu a:hover:before,
.default-theme .sidebar-wrapper .sidebar-menu li.active a i {
  color: #ccc;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
  color: white;
}

.menu-text {
  text-align: right;
  margin-right: 16px;
}

a.dropdown-item:hover {
  cursor: pointer;
}

/****** Editor ******/
#cke_editor1 {
  width: 100% !important;
  display: block !important;
}

.editor {
  background-color: #ffffff;
}

.editor > i {
  margin: 6px;
  background-color: #ffffff;
  padding: 10px;
}

.editor > i:hover {
  cursor: pointer;
  background-color: #cdcee5;
}

.bgColor {
  background-color: aqua;
  padding: 2px 10px;
  margin: auto 5px;
  cursor: pointer;
}

.bgColor:hover {
  background-color: #cdcee5;
}

.colorSelector {
  padding: 2px 10px;
}

.colorSelector:hover {
  background-color: #cdcee5;
  cursor: pointer;
}

.colorSelector > i {
  border-bottom: 2px solid;
  padding-bottom: 2px;
}

/*menu*/
/*clock*/
.showClock {
  display: block;
}

#layer2-time {
  border: 2px dashed #84bcda;
}

#editor-container {
  /* display: none; */
  width: 50%;
  height: 50%;
  margin: auto;
}

#editorSubmit + div {
  display: none;
}

#editorSubmit:hover {
  border: none;
}

.cke {
  position: absolute !important;
  left: 0;
  z-index: 500;
}

#editorSubmit p {
  margin: 0;
}

marquee .editable p {
  padding-top: 0.5rem;
}

.pathBox {
  direction: ltr;
}

/* 
div.editable{
  padding-left: 25px;
  padding-right: 25px;
} */
.modal-btn {
  background-color: transparent;
  border: none;
  color: #fff;
}

.modal-btn:focus {
  outline: none;
}

.copyright-section {
  background-color: #ddd;
  padding: 5px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #001b48;
}
.copyright-section img {
  margin: 0 5px;
  width: 30px;
}
.copyright-section a {
  color: #001b48;
  text-decoration: none;
}

.main-sidebar {
  opacity: 0.3;
}

.main-sidebar:hover {
  opacity: 1;
}

.side-toolbar > div {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
  border-radius: 4px;
  min-width: 30px;
  width: 90%;
  padding: 4px;
}
.side-toolbar i {
  font-size: 1.3rem;
  color: #ccc;
}
.side-toolbar i:hover {
  cursor: pointer;
  color: rgb(173, 172, 172);
}

.iFrame:hover {
  padding: 40px;
}

.iframe-preview {
  background-color: lightgray;
  border-radius: 4px;
  height: 270px;
  background-image: url("../images/frame-place.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.iframe-preview > div {
  width: 100%;
}
.iframe-preview > div iFrame {
  width: 100%;
  height: 100%;
  border: none;
}

.apple-clock {
  background-color: rgb(224, 107, 107);
}

.view-title {
  font-size: 16px;
  color: #f9f9f9;
}

.main-footer {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

#message-box .close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d5d1d1;
  border-radius: 4px;
}
#message-box .modal-body {
  text-align: right;
}

#spinner {
  background: rgba(0, 0, 0, 0.5803921569);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.lds-spinner {
  display: inline-block;
  position: absolute;
  left: calc(50% - 50px);
  top: 50%;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: rgb(55, 52, 228);
  -webkit-animation: lds-spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: lds-spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-spinner div:nth-child(1) {
  left: 8px;
  -webkit-animation-delay: -0.24s;
          animation-delay: -0.24s;
}

.lds-spinner div:nth-child(2) {
  left: 32px;
  -webkit-animation-delay: -0.12s;
          animation-delay: -0.12s;
}

.lds-spinner div:nth-child(3) {
  left: 56px;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

@-webkit-keyframes lds-spinner {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

@keyframes lds-spinner {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}
/* End of drawingPanel-general ========================================*/
/* Start calendar ===================================*/
.calendar-preview {
  background-size: cover;
  min-height: 310px;
  border-radius: 5px;
  background-color: lightgray;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.calendar-preview p {
  line-height: 1;
}

.calendar-type {
  background-color: #d4e0f0;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  overflow: auto;
  margin-top: 8px;
  margin-bottom: 5px;
  flex-direction: column;
  flex-flow: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  direction: rtl;
}
.calendar-type label {
  padding: 0 10px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 5px;
  text-align: center;
}
.calendar-type label:hover {
  cursor: pointer;
  background-color: rgba(0, 123, 255, 0.5215686275);
  color: #eeecee;
}

.date:hover {
  border: 2px dashed #84bcda;
}
.date p::-moz-selection {
  background-color: transparent;
}
.date p::selection {
  background-color: transparent;
}
.date p {
  line-height: 1;
}

.calendar-size-bar {
  display: flex;
  flex-direction: column;
}

input.custom-range {
  border: 2px solid rgba(0, 123, 255, 0.5215686275);
  border-radius: 16px;
  height: 12px;
}

.calendar-theme-selector {
  background: transparent;
  border: none;
}
.calendar-theme-selector:focus-visible {
  outline: none;
}

/* End of calendar ==================================*/
/*Start general =======================================*/
body {
  direction: rtl;
  background-color: #cdcee5;
}

h1,
h2,
h3,
h3,
p {
  text-align: right;
}

img {
  height: auto !important;
}

marquee {
  display: inline-table;
}

select {
  min-width: 150px;
}

.container-fluid {
  padding: 0 !important;
}

.screen {
  height: calc(100vh + 50px);
  width: 100%;
  overflow: hidden;
  position: relative;
  direction: ltr;
  background-size: cover;
}

.screen video,
.screen .contentArea,
.screen .date,
.screen img,
.subTitle,
.analog-clock,
.digital-clock-viewer {
  position: absolute;
}

#digital-clock {
  direction: ltr;
}

.textArea {
  border: none;
}

.iFrame {
  border: none;
}
.iFrame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.subTitle {
  width: 100%;
  height: 55px;
  max-height: 70px;
}

.contentArea {
  width: 25%;
  touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transform: translate(0px, 0px);
}

.hidden {
  display: none;
}

.show {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.panel ul {
  list-style-type: none;
}

.panel ul li {
  text-align: right;
  cursor: pointer;
  padding: 3px;
}

.panel ul li:hover {
  background-color: #eee;
}

.hideClock {
  display: none;
}

/* End of general ========================================*//*# sourceMappingURL=drawingPanel.css.map */