@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800&display=swap");

/* ================================ General and reset ================================ */

:root {
	--color-primary: #2773be;
	--color-secondary: #3fa9f5;
	--color-main: #1e293b;
	--color-sub-light: #cbd5e1;
	--color-sub-normal: #64748b;
	--color-background: #f0f7ff;
	--shadow-primary: 0px 0px 10px 0px #2773be1c;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    border-radius: 10px;
    background:white;
  }

  .scroll-blue-track::-webkit-scrollbar-track {
    background: var(--color-background);
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-corner{
    display:none;
  }

  .transparent-scroll::-webkit-scrollbar-track{
    background: transparent; 
  }


*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
}

body {
	/* line-height: 1.5; */
	-webkit-font-smoothing: antialiased;
	color: var(--color-main);
	font-family: Assistant, sans-serif, Arial;
  font-weight: 500;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select,
.snackbar-container {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

html,
body {
	direction: rtl;
}

h1 {
	font-size: 40px;
	font-weight: 600;
}

h2 {
	font-size: 34px;
	font-weight: 600;
}

h3 {
	font-size: 30px;
	font-weight: 600;
}

h4 {
	font-size: 26px;
	font-weight: 600;
}

h5 {
	font-size: 22px;
	font-weight: 600;
}

h6 {
	font-size: 19px;
	font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
}

.input-group label,
.input-group input {
	display: block;
}

.input-group {
	text-align: start;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	padding: 15px 10px;
	border: 0;
	outline: 0;
	box-shadow: var(--shadow-primary);
	border-radius: 15px;
	font-size: 15px;
	max-width: 100%;
}

label {
	margin-bottom: 2px;
	padding-inline-start: 6px;
	font-weight: 500;
}

#main-wrapper {
	max-height: 100vh;
	width: 100%;
	background: var(--color-background);
	height: 100vh;
}

.input-group {
	margin-bottom: 10px;
}

#main-wrapper {
	max-height: 100vh;
	width: 100%;
	background: #f0f7ff;
	height: 100vh;
}

body.centered-wrapper #main-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.space-between-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.checkbox-container{
  user-select: none;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkbox-container .checkbox-label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.checkbox-container .checkbox-box {
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	background-color: white;
	border: 1px solid var(--color-sub-light);
  height: 21px;
  width: 21px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 6px;
	/* transition: background 0.3s; */
	margin-inline-end: 7px;
	flex: 0 0 auto;
}

.checkbox-container .checkbox-box::after {
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity: 0;
	content: "";
	display: block;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: scale(0.5) rotate(45deg);
	transition: all 0.35s cubic-bezier(0.3, -0.41, 0.19, 2), opacity 0.3s;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-label .checkbox-box {
	background: var(--color-secondary);
	border: 0;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-label .checkbox-box::after {
	transform: scale(1) rotate(45deg);
	opacity: 1;
}


.checkbox-container .checkbox-text {
	word-break: break-word;
}

.icon-button {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: var(--color-secondary);
  border-radius: 12px;
  box-shadow: var(--shadow-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-button.red {
  background: #ef3d5e;
}

button.icon-button img {
  width: 28px;
}

.icon-button.medium {
  width: 42px;
  height: 42px;
}

.icon-button.medium img {
  width: 23px;
}

.icon-button.small {
  width: 38px;
  height: 38px;
}

.icon-button.small img {
  width: 21px;
}

.default-loader {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(255 255 255 / 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 12;
}

.default-loader.fixed{
  width: 100vw;
  position: fixed;
}

.default-loader .loader-text {
  font-size: 31px;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.1em;
}

.default-loader .loader-container .loader {
  width: 85px;
  margin: 0 auto;
}

.input-group label.error {margin-top: 2px;margin-bottom: 0;color: #f44336;font-size: 15px;}

.input-group input.error {
  border: 1px solid #f44336;
}

.snackbar-container .action {
	margin-left: unset;
	margin-right: 24px;
	font-weight: 900;
  }
  
  .snackbar-container p {
	font-weight: 600 !important;
  }
  
  .w-100{
	width: 100%;
  }

  .modal {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgb(0 0 0 / 65%);
	align-items: center;
	justify-content: center;
	z-index: 11;
	opacity: 0;
  }
  
  .modal-content{
		  width: 800px;
		  min-height: 300px;
		  max-height: 95%;
		  position: relative;
		  background: #f0f7ff;
		  z-index: 0;
		  border-radius: 25px;
		  transform: scale(0.8);
		  transition: transform .3s;
		  /* overflow: hidden; */
  }
  
.modal.visible-for-loading{
  display: flex !important;
  right: -100000px !important;
}

.modal.visible-for-loading .modal-content{
  transform: unset !important;
}

  .modal-content.biggest-height {
	height: 95%;
  }

  .modal-content.biggest-width {
	width: 95%;
  }
  
  .modal-content.w-small {
	width: 400px;
  }

  #edit-room-modal .modal-content{
	width: 1250px;
	display: flex;
	flex-direction: column;
	}
  
  .modal.show .modal-content {
	transform: scale(1);
  }
  
  .modal-title {
	text-align: center;
	margin-bottom: 20px;
	font-weight: bold;
	line-height: 1em;
  }
  
  .close-modal-icon {
	cursor: pointer;
	position: absolute;
	right: 12px;
	top: 15px;
	display: block;
	z-index: 1;
  }
  
  .close-modal-icon img {
	width: 17px;
	display: block;
  }

  .modal-content.with-padding {
    padding: 15px 30px;
  }

  .fc .fc-toolbar-title {
    font-weight: 700;
    font-size: 1.7em;
}

.fc .fc-button {
    padding: 0.15em 0.25em;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 1em;
}

.fc {
  font-size: 0.8em;
}

.fc-view {
  background: white;
}

.fc-v-event .fc-event-title{
  height: 100%;
  line-height: 0.8em;
}

.fc-v-event{
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.inline-half-width-input-groups{
  display: flex;
  gap: 20px;
}

.inline-half-width-input-groups > *{
  width: 50%;
}

.ms-auto{
  margin-inline-start: auto;
}

@keyframes highlight {
  0%, 100% {
      background-color: transparent;
  }
  15%, 85% {
      background-color: #fefae5;
  }
}

.highlight-bg-anim{
  animation: highlight 1s ease-in-out;
}

.search-input-container.with-side-button{
  display: flex;
  align-items: center;
}

.search-input-container.with-side-button > button{
  margin-right: 10px;
}

#add-new-host img{
  width: 17px;
}

.d-block{
  display: block;
}

.ltr{
  direction: ltr;
}

input:disabled {
  background: var(--color-sub-light);
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background: var(--color-sub-light);
}

.mt-7{
  margin-top: 7px;
}

.option-selection-dropdown {
  position: absolute;
  min-width: 200px;
  background: white;
  z-index: 12;
  border-radius: 15px;
  box-shadow: 0px 0px 7px -2px #0000006e;
  /* left: 0;
  top: 0; */
  overflow: hidden;
  transition: visibility 0s,transform 0.2s;
  transition-delay: .2s, 0s;
  transform: scale(0);
  visibility: hidden;
}

.option-selection-dropdown[data-position="top"] {
  transform-origin: bottom;
}

.option-selection-dropdown[data-position="bottom"] {
  transform-origin: top;
}

.option-selection-dropdown.open {
  transition-delay: 0s, 0s;
  visibility: visible;
  transform: scale(1);
}

.option-selection-item {
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s;
  color: var(--color-sub-normal);
  display: flex;
  align-items: center;
  position: relative;
}

.option-selection-item:hover {
  color: white;
}

.option-selection-icon {
  height: 17px;
  width: 17px;
  margin-left: 7px;
}

.option-selection-icon .icon-path {
  fill: var(--color-sub-normal);
  transition: fill 0.2s;
}

.option-selection-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--color-secondary);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s;
}

.option-selection-item:hover::before {
  opacity: 1;
}

.option-selection-item:hover .option-selection-icon .icon-path {
  fill: white;
}

.warning-modal .modal-content {
  background: rgb(239,61,94);
  background: linear-gradient(90deg, rgba(239,61,94,1) 0%, rgba(242,100,126,1) 100%);
  padding-top: 70px;
  text-align: center;
  padding-bottom: 40px;
}

.warning-modal-icon {
  padding: 20px;
  box-sizing: content-box;
  background: white;
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  translate: 0 -50%;
  width: fit-content;
  top: 0;
}

.warning-modal-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

#modal-warning-text {
  font-weight: 700;
  color: white;
  font-size: 35px;
  line-height: 1.1em;
}

.text-button {
  background: var(--color-secondary);
  border-radius: 6px;
  box-shadow: var(--shadow-primary);
  cursor: pointer;
  padding: 7px 30px;
  border: 0;
  outline: 0;
  color: white;
  font-size: 25px;
  font-weight: 700;
}

.text-button.warning {
  background: white;
  color: #ef3d5e;
}

.warning-buttons-container {
  margin-top: 20px;
}

.text-button.big {
  min-width: 120px;
  height: 50px;
}

.warning-buttons-container > button:not(:last-of-type) {
  margin-left: 30px;
}
/* ================================ General and reset ================================ */

/* ================================ Auth page ================================ */
#auth-box-container {
	width: 300px;
  max-width: 100%;
	padding: 0 15px 0 15px;
	box-sizing: content-box;
}

#auth-logo {
	width: 140px;
	margin: 0 auto 30px auto;
}

#forgot-pass-link {
	padding-inline-start: 6px;
}
/* ================================ Auth page ================================ */

/* ================================ App layout ================================ */
.sidebar-icon-container {
    margin-bottom: 30px;
}

.sidebar {}

.sidebar {
    width: 120px;
    padding: 10px 0;
    height: 100%;
    background: #2773be;
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
}

#app-container {
    height: 100%;
}

.sidebar-icon {
    width: 80px;
    margin: 0 auto;
}

.sidebar-button-list {
    padding: 0;
    list-style: none;
}

.sidebar-button-icon {
    width: 42px;
    height: 42px;
}

.sidebar-button-icon-container {
    display: table;
    margin: 0 auto;
    padding: 16px;
    transition: background .3s;
    border-radius: 25px;
}

.sidebar-button-icon .icon-path {
    fill: white;
    transition: fill 0.3s;
}

.sidebar-button-list-button:not(:last-child) {
    margin-bottom: 20px;
}

.sidebar-button-list-button a:hover .sidebar-button-icon .icon-path,
.sidebar-button-list-button.active .sidebar-button-icon .icon-path,
body[data-current-open-dropdown-name="settings"]  #settings-button .icon-path {
    fill: var(--color-primary);
}

.sidebar-button-list-button a:hover .sidebar-button-icon-container,
.sidebar-button-list-button.active .sidebar-button-icon-container,
body[data-current-open-dropdown-name="settings"]  #settings-button .sidebar-button-icon-container{
    background: white;
}

.sidebar-all-buttons-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#app-container {
    padding-right: 120px;
}

#app-content-container {
    padding: 25px 45px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#topbar{
	text-align: center;
	margin-bottom: 25px;
}

#app-content {
    flex: 1;
    height: 0;
    display: flex;
    flex-direction: column;
}
/* ================================ App layout ================================ */

/* ================================ Rooms page ================================ */
#rooms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    flex: 1;
    height: 0;
    overflow: auto;
    align-content: flex-start;
}

.single-room {
    background: white;
    width: 220px;
    height: 220px;
    text-align: center;
    padding: 15px 20px;
    border-radius: 35px;
    box-shadow: var(--shadow-primary);
    cursor: pointer;
    transition: all .3s;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
}

.room-name {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.room-status-image-container {
    width: 105px;
    height: 105px;
    margin: 0 auto;
    border-radius: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
	padding: 15px;
}

.room-status-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.single-room[data-status="1"] .room-status-image-container {
    background: var(--color-sub-light);
}

.single-room[data-status="2"] .room-status-image-container {
	background: rgb(26,188,156);
	background: linear-gradient(90deg, rgba(26,188,156,1) 0%, rgba(72,201,176,1) 100%);
}

.single-room[data-status="3"] .room-status-image-container {
    background: rgb(239,61,94);
    background: linear-gradient(90deg, rgba(239,61,94,1) 0%, rgba(242,100,126,1) 100%);
}

.room-extra-info > span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
}

.room-extra-info {
    font-size: 18px;
    line-height: 1em;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.room-host-time-range {
    color: var(--color-sub-normal);
    direction: ltr;
}

.single-room:hover {
    box-shadow: var(--shadow-primary), inset 0px 0px 0px 3px var(--color-sub-light);
}

#rooms-search-input,
#hosts-search-input {
    width: 240px;
}

.app-above-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}

#edit-room-more-options-button {
  position: absolute;
  left: 20px;
  top: 18px;
  width: 6px;
  cursor: pointer;
}

#edit-room-main-container {
  display: flex;
  flex: 1;
  height: 0;
}

#edit-room-right-container {
  flex: 0 0 70%;
  max-width: 70%;
}

#edit-room-calendar-container{
  height: 100%;
}

f {
  flex: 1;
}

.fc-timegrid-body, .fc-scrollgrid-sync-table,.fc-col-header,
.fc .fc-scrollgrid-section-body table {
  width: 100% !important;
}

.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active {
  background-color: var(--color-main) !important;
  border-color: var(--color-main) !important;
}

.fc-timegrid-slot-lane{
  cursor: pointer;
}

.fc .fc-timegrid-slot{
  height: 40px !important;
}

.fc-timegrid-event, .fc-timegrid-more-link {
    font-size: 12px;
    line-height: 1em;
    font-weight: 600;
}

.fc-v-event .fc-event-time {font-size: 1em;margin-bottom: 3px;direction: ltr;}

.current-hover-highlight-cell {
  position: absolute;
  left: 0;
  right: 0px;
  background: #8dbee7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#edit-room-left-container {
  text-align: center;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}

.edit-room-left-container-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.edit-room-left-container-top-title-container {
  position: relative;
}

.fc .fc-toolbar-title {font-size: 22px;}

#add-room-event button[type="submit"]{
}

.h-auto{
  height: auto;
}

.min-h-auto{
  min-height: auto;
}

.room-event-label-block {
  display: block;
}

.fc-event-main{
  cursor: pointer;
}

.fc-event:focus::before,
.fc-event:focus::after{
  display: none;
}

#hosts-table_filter{
  display: none;
}

.single-room[data-status="1"] .room-host-time-range,
.single-room[data-status="3"] .room-host-time-range
{
  display: none;
}

#edit-room-left-container-bottom {
  padding-top: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 0;
  padding-bottom: 20px;
}

#edit-room-live-display {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

#edit-room-live-display-container {
  flex: 1;
  height: 0;
}

.room-live-display-hover-button {
  width: 15px;
}

.room-live-display-hover-button-container {
  position: absolute;
  left: 13px;
  top: 15px;
  width: 30px;
  height: 30px;
  background: var(--color-sub-light);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
  opacity: 0;
}

.single-room:hover .room-live-display-hover-button-container {
  opacity: 1;
}

.room-live-display-hover-container {
  text-align: center;
}

.room-live-display-hover-container h6 {
  margin-bottom: 4px;
  font-weight: bold;
}

.room-live-display-hover-container img {
  height: 150px;
}

#add-new-event-reset-form-button {
  width: 22px;
  height: 22px;
  background: var(--color-secondary);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 1px;
  cursor: pointer;
}

#add-new-event-reset-form-button img {
  width: 10px;
}

.fc-v-event.selected {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.hover-highlight-cell-image {
  width: 16px;
  height: 16px;
  background: var(--color-sub-normal);
  border-radius: 100%;
  box-sizing: content-box;
  padding: 6px;
}

#add-room-event-buttons-cont {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 5px;
}

#edit-room-left-container-top[data-type="edit"] #add-room-event-buttons-cont {
  justify-content: space-between;
}

#edit-room-left-container-top[data-type="disabled"] #add-room-event button[type="submit"],
#edit-room-left-container-top[data-type="disabled"] #add-room-event #delete-room-event
{
  display: none;
}

#edit-room-left-container-top[data-type="disabled"] #add-room-event #delete-room-event,
#edit-room-left-container-top[data-type="add"] #add-room-event #delete-room-event{
  display: none;
}

#change-room-image-button {
  width: 0.5em;
  cursor: pointer;
  position: absolute;
  left: -1px;
  transform: translate(-100%, -50%);
  top: 50%;
  margin-top: 2px;
  box-sizing: content-box;
  padding: 5px;
}

#edit-room-room-name-container {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.top-more-options-button {
  width: 7px;
  padding: 0 10px;
  box-sizing: content-box;
  margin-left: -7px;
  cursor: pointer;
}

.rooms-current-filter{
  display: none;
}

body[data-rooms-current-filter]:not([data-rooms-current-filter="all"]) .rooms-current-filter{
  display: block;
}

#room-info-sign {
  position: absolute;
  left: 17px;
  top: 13px;
  cursor: pointer;
}

.single-room-info-detail-line > span{
  display: inline-block;
}

.room-info-details-title{
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
}
/* ================================ Rooms page ================================ */

/* ================================ Daterangepicker ================================ */
.daterangepicker .calendar-table .next span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker{
  direction: rtl;
  font-family: inherit;
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td{
  font-size: 13px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background: var(--color-secondary)
}
/* ================================ Daterangepicker ================================ */

/* ================================ DataTables ================================ */
table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td, table.dataTable tbody td {
    text-align: center;
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-inline-end: 26px !important; padding-inline-start: 10px !important; }

table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:after {
    right: unset;
    left: 10px;
}

table.dataTable thead th.sorting_disabled::before,
table.dataTable thead th.sorting_disabled::after {
  content: "" !important;
}

table.dataTable .checkbox-container{
  width:fit-content;
}

table.dataTable .checkbox-container .checkbox-label{
  padding-right: 0;
}

table.dataTable .checkbox-container .checkbox-box{
  margin-left: 0;
}

table.dataTable>thead>tr>th, table.dataTable>thead>tr>td,
table.dataTable{
  border: 0 !important;
}

table.dataTable tbody tr {
  background: white;
}

table.dataTable {
  border-spacing: 0 3px;
  border-collapse: separate;
}

table.dataTable tbody td {height: 50px;position: relative;vertical-align: middle;}

table.dataTable tbody td:first-child {
  border-radius: 0 20px 20px 0;
}

table.dataTable tbody td:first-child,table.dataTable tbody th:first-child {
  padding-inline-start: 17px !important;
}

table.dataTable tbody td:last-child {
  border-radius: 20px 0 0 20px;
}

table.dataTable tbody td:only-child {
  border-radius: 20px;
}

table.dataTable td:not(:first-child)::before {
  position: absolute;
  right: 0;
  width: 1px;
  background: #cccccc;
  height: calc(100% - 30px);
  content: '';
  top: 50%;
  transform: translateY(-50%);
}

table.dataTable tbody tr:hover {
  background: rgb(233 233 233);
}
/* ================================ DataTables ================================ */

/* ================================ Hosts page ================================ */
body[data-current-screen="hosts"] .app-above-container{
  margin-bottom: 15px;
}

#submit-host-modal .modal-content{
  width: 500px;
}

#hosts-container {
  flex: 1;
  height: 0;
  overflow: auto;
}

#hosts-table{
  width: 100% !important;
}

.host-actions > a > img {
  width: 20px;
  height: 20px;
}

.host-actions > a.edit-host-action > img{
  width: 18px;
  height: 18px;
}

.host-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.host-actions > a:not(:last-of-type) {
  margin-left: 10px;
}
/* ================================ Hosts page ================================ */

/* ================================ Select2 ================================ */
.select2-selection__rendered {
  line-height: 50px !important;
}
.select2-container .select2-selection--single {
  height: 50px !important;
  border: 0;
  outline: 0;
  box-shadow: var(--shadow-primary);
  border-radius: 15px;
  font-size: 15px;
}
.select2-selection__arrow {
  height: 50px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background-color: var(--color-secondary);
}

.select2-dropdown {
  border: 0;
}

.select2-container--default .select2-results>.select2-results__options {
  padding: 0 4px;
}

.select2-results {
  padding-bottom: 6px;
}
/* ================================ Select2 ================================ */

/* ================================ Timepicker ================================ */
li.ui-timepicker-selected, .ui-timepicker-list li:hover, .ui-timepicker-list .ui-timepicker-selected:hover{
  background: var(--color-secondary);
}
/* ================================ Timepicker ================================ */