@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  font-family: 'Poppins', serif;
}

.adjust-height {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 222px;
}

.no-data-show {
  color: #474747;
  font-size: 0.9rem;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  max-width: 800px;
  width: 50%;
  text-align: center;
}

.popup-content h2 {
  margin-top: 0;
  color: #444444;
  font-size: 1.5rem;
}

.popup-content p {
  margin: 1rem 0;
  font-size: 0.8rem;
}

.popup-button {
  background-color: #d9534f;
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.7rem;
}

.popup-button:hover {
  background-color: #c9302c;
}

.main-container {
  margin: 40px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 768px;
}

.session-dragable-caption {
  display: flex;
  justify-content: space-between;
  width: 90%;
  padding: 17px 15px;
  background-color: #1D1E23;
  border-bottom-width: 0;
  font-family: Leelawadee, Ebrima, 'Bahnschrift Light', Gadugi, 'Nirmala UI', 'Segoe UI', Verdana;	
  color: #ffffff;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
}

.session-dragable-list {
  width: 90%;
  background-color: #ffffff;
  min-height: 350px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 25px;
}

.session-dragable-tollbar {
  padding: 10px;
  margin-bottom: 15px;
}

.session-dragable-tollbar .default-button {
  border: none;
  padding: 11px 13px;
  border-radius: 5px;
}

.btn-insert {
  max-width: 92.78px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  background-color: #0acf97;
  border: 1px solid #0acf97;
  box-shadow: 0 2px 6px 0 rgba(10, 207, 151, 0.5);
  color: white;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-insert:hover {
    background-color: #1abf90;
}

.btn-return {
  display: flex;
  text-decoration: none;
  align-items: center;
  column-gap: 5px;
  background-color: #e3eaef;
  border: 1px solid #e3eaef;
  box-shadow: 0 2px 6px 0 rgba(227,234,239,.5);
  color: #313a46;
  font-size: 13px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-return:hover {
    background-color: #727cf4;
	color: white;
}

.btn-return:hover #icon-button-return {
	background-image: url('../images/arrow-left-white.svg');
}

.btn-insert img  {
  width: 17px;
}

.btn-return #icon-button-return {
	display: inline-block;
	width: 17px;
	height: 17px;
	background-image: url('../images/arrow-left.svg');
	background-position: left;
	background-size: cover;
	background-repeat: no-repeat;
}


.session-dragable-tollbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sortable-list .item {
  list-style: none;
  border: 1px solid #ccc;
  padding: 10px 13px;
  border-radius: 5px;
  margin-bottom: 11px;
  cursor: move;
}

.details-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 15px;
}

.info-edit-container {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.action-toolbar-container button {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.action-toolbar-container img {
  width: 24px;
}

.action-toolbar {
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.more-vertical {
  width: 24px;
}

.item.dragging .details-container {
  opacity: 0;
}

.title {
  font-weight: bold;
  font-size: 0.8rem;
  color: #474747;
}

.description {
  color: #474747;
  font-size: 0.74rem;
  text-align: justify;
}
