:root {
  --border-color: #cacaca;
  --background-color: #ffffff;

  --background-box-title: #f7f7f7;
}

html,
body {
  margin: 0px;
  padding: 0px;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
}

header {
  height: 66px;
  border-bottom: 1px solid var(--border-color);
  padding-left: 20px;
}

header h2 {
  margin: 0px;
  line-height: 66px;
}

header a {
  color: black;
}

.them-edit-link {
  position: absolute;
  top: 10px;
  right: 100px;
  color: black;
  font-size: 40px;
}

.them-edit-link a {
  text-decoration: none;
}

.github-link {
  position: absolute;
  top: 10px;
  right: 20px;
  color: black;
}

.wrapper {
  width: 100%;
  height: calc(95vh - 0px);
  display: flex;
}

.topbuttons {
  width: 100%;
  height: 50px;
  display: flex;
  background-color: #555555;
  justify-content: flex-end;
}

.col {
  overflow: auto;
  width: 288px;
  height: 57%;
  /* border-right: 1px solid var(--border-color); */
  border-radius: 8px;
}

.drag-drawflow {
  line-height: 45px;
  border-bottom: 1px solid var(--border-color);
  padding-left: 20px;
  cursor: move;
  user-select: none;
  background-color: #d9d9d9;
}

.sidenavdrag {
  margin-top: 25px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  height: 400px;
}

.sidenavdrag::-webkit-scrollbar {
  width: 13px;
}

.sidenavdrag::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.sidenavdrag::-webkit-scrollbar-thumb {
  background: #212529;
  border-radius: 10px;
}

.sidenavdrag::-webkit-scrollbar-thumb:hover {
  background: grey;
}

.menu {
  position: absolute;
  height: 40px;
  display: block;
  background: white;
  width: 100%;
}

.menu ul {
  padding: 0px;
  margin: 0px;
  line-height: 40px;
}

.menu ul li {
  display: inline-block;
  margin-left: 10px;
  border-right: 1px solid var(--border-color);
  padding-right: 10px;
  line-height: 40px;
  cursor: pointer;
}

.menu ul li.selected {
  font-weight: bold;
}

.btn-export {
  /* float: right; */
  /* position: absolute; */
  /* right: 93px; */
  color: white;
  font-weight: bold;
  border: 1px solid #0e5ba3;
  background: #4ea9ff;
  /* padding: 5px 10px; */
  border-radius: 4px;
  cursor: pointer;
  z-index: 5;
  height: 36px;
  width: 75px;
}

/* .btn-import {
  float: right;
  position: absolute;
  right: 177px;
  color: white;
  font-weight: bold;
  border: 1px solid #008b8b;
  background: #008b8b;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 5;
} */
.btn-clear {
  /* float: right; */
  /* position: absolute; */
  /* right: 177px; */
  color: white;
  font-weight: bold;
  border: 1px solid #96015b;
  background: #e3195a;
  /* padding: 5px 10px; */
  border-radius: 4px;
  cursor: pointer;
  z-index: 5;
  height: 36px;
  width: 75px;
}

.btn-logout {
  /* float: right; */
  /* position: absolute; */
  /* right: 10px; */
  color: white;
  font-weight: bold;
  border: 1px solid #343a40;
  background: #343a40;
  /* padding: 5px 10px; */
  border-radius: 4px;
  cursor: pointer;
  z-index: 5;
  height: 36px;
  width: 75px;
}

.swal-wide {
  width: 80% !important;
}

.bar-zoom {
  float: right;
  position: absolute;
  bottom: 1%;
  left: 1%;
  display: flex;
  font-size: 24px;
  color: white;
  padding: 5px 10px;
  background: #555555;
  border-radius: 4px;
  border-right: 1px solid var(--border-color);
  z-index: 5;
}
.appliedTagText {
  background-color: black;
  color: white;
  font-size: 9px;
  width: 90px;
  position: absolute;
  right: 0;
}
.bar-zoom svg {
  cursor: pointer;
  padding-left: 10px;
}

.bar-zoom svg:nth-child(1) {
  padding-left: 0px;
}

#drawflow {
  position: relative;
  width: 82vw;
  height: calc(100% - 0px);
  /*  top: 40px;*/
  background: #d9d9d9;
  background-size: 6px 6px;
  /*background-image:
   linear-gradient(to right, #f1f1f1 1px, transparent 1px ),
   linear-gradient(to bottom, #f1f1f1 1px, transparent 1px);*/
}

/* drawflow */

.drawflow,
.drawflow .parent-node {
  position: relative;
}

.parent-drawflow {
  display: flex;
  overflow: hidden;
  touch-action: none;
  outline: 0;
}

.drawflow {
  width: 100%;
  height: 100%;
  user-select: none;
  perspective: 0;
}

.drawflow .drawflow-node {
  display: flex;
  align-items: center;
  position: absolute;
  background: #0ff;
  width: 160px;
  min-height: 40px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  z-index: 2;
  padding: 15px;
}

.drawflow .drawflow-node.selected {
  background: red;
}

.drawflow .drawflow-node:hover {
  cursor: move;
}

.drawflow .drawflow-node .inputs,
.drawflow .drawflow-node .outputs {
  width: 0;
}

.drawflow .drawflow-node .drawflow_content_node {
  width: 100%;
  display: block;
}

.drawflow .drawflow-node .input,
.drawflow .drawflow-node .output {
  position: relative;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  cursor: crosshair;
  z-index: 1;
  margin-bottom: 5px;
}

.drawflow .drawflow-node .input {
  left: -27px;
  top: 2px;
  background: #ff0;
}

.drawflow .drawflow-node .output {
  right: -3px;
  top: 2px;
}

.drawflow svg {
  z-index: 0;
  position: absolute;
  overflow: visible !important;
}

.drawflow .connection {
  position: absolute;
  pointer-events: none;
  aspect-ratio: 1/1;
}

.drawflow .connection .main-path {
  fill: none;
  stroke-width: 5px;
  stroke: #4682b4;
  pointer-events: all;
}

.drawflow .connection .main-path:hover {
  stroke: #1266ab;
  cursor: pointer;
}

.drawflow .connection .main-path.selected {
  stroke: #43b993;
}

.drawflow .connection .point {
  cursor: move;
  stroke: #000;
  stroke-width: 2;
  fill: #fff;
  pointer-events: all;
}

.drawflow .connection .point.selected,
.drawflow .connection .point:hover {
  fill: #1266ab;
}

.drawflow .main-path {
  fill: none;
  stroke-width: 5px;
  stroke: #4682b4;
}

.drawflow-delete {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  z-index: 4;
  border: 2px solid #fff;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  font-family: monospace;
  cursor: pointer;
}

.drawflow > .drawflow-delete {
  margin-left: -15px;
  margin-top: 15px;
}

.parent-node .drawflow-delete {
  right: -15px;
  top: -15px;
}

/* drawflow end */

@media only screen and (max-width: 768px) {
  .col {
    width: 50px;
  }

  .col .drag-drawflow span {
    display: none;
  }

  #drawflow {
    width: calc(100vw - 51px);
  }
}

/* Editing Drawflow */

.drawflow .drawflow-node {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0 2px 15px 2px var(--border-color);
  box-shadow: 0 2px 15px 2px var(--border-color);
  padding: 0px;
  width: 200px;
}

.drawflow .drawflow-node.selected {
  background: white;
  border: 1px solid #4ea9ff;
  -webkit-box-shadow: 0 2px 20px 2px #4ea9ff;
  box-shadow: 0 2px 20px 2px #4ea9ff;
}

.drawflow .drawflow-node.selected .title-box {
  color: #22598c;
  /*border-bottom: 1px solid #4ea9ff;*/
}

.drawflow .connection .main-path {
  stroke: #4ea9ff;
  stroke-width: 3px;
}

.drawflow .drawflow-node .input,
.drawflow .drawflow-node .output {
  height: 15px;
  width: 15px;
  border: 2px solid var(--border-color);
}

.drawflow .drawflow-node .input:hover,
.drawflow .drawflow-node .output:hover {
  background: #4ea9ff;
}

.drawflow .drawflow-node .output {
  right: 10px;
}

.drawflow .drawflow-node .input {
  left: -10px;
  background: white;
}

.drawflow > .drawflow-delete {
  border: 2px solid #43b993;
  background: white;
  color: #43b993;
  -webkit-box-shadow: 0 2px 20px 2px #43b993;
  box-shadow: 0 2px 20px 2px #43b993;
}

.drawflow-delete {
  border: 2px solid #4ea9ff;
  background: white;
  color: #4ea9ff;
  -webkit-box-shadow: 0 2px 20px 2px #4ea9ff;
  box-shadow: 0 2px 20px 2px #4ea9ff;
}

.drawflow-node .title-box {
  height: 50px;
  line-height: 50px;
  background: var(--background-box-title);
  border-bottom: 1px solid #e9e9e9;
  border-radius: 4px 4px 0px 0px;
  padding-left: 10px;
  font-size: 13px;
}

.drawflow .title-box svg {
  position: initial;
}

.drawflow-node .box {
  padding: 10px 20px 20px 20px;
  font-size: 14px;
  color: #555555;
}

.drawflow-node .box p {
  margin-top: 5px;
  margin-bottom: 5px;
}

/*Box1*/

.drawflow-node .title-box1 {
  /*  width: 450px;*/
  height: 50px;
  line-height: 50px;
  background: #d9d9d9;
  border-bottom: 1px solid #e9e9e9;
  border-radius: 4px 4px 0px 0px;
  padding: 10px 20px 0 20px;
}

.drawflow .title-box1 svg {
  position: initial;
}

.drawflow-node .box1 {
  padding: 10px 20px 20px 20px;
  font-size: 14px;
  color: #555555;
}

.drawflow-node .box1 p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.drawflow-node.welcome {
  width: 250px;
}

.drawflow-node.slack .title-box {
  border-radius: 4px;
}

.drawflow-node input,
.drawflow-node select,
.drawflow-node textarea {
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  width: 158px;
  color: #555555;
}

.drawflow-node textarea {
  height: 100px;
}

.drawflow-node.personalized {
  background: red;
  height: 200px;
  text-align: center;
  color: white;
}

.drawflow-node.personalized .input {
  background: yellow;
}

.drawflow-node.personalized .output {
  background: green;
}

.drawflow-node.personalized.selected {
  background: blue;
}

.drawflow .connection .point {
  stroke: var(--border-color);
  stroke-width: 2;
  fill: white;
}

.drawflow .connection .point.selected,
.drawflow .connection .point:hover {
  fill: #4ea9ff;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 7;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 400px;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .modal-content {
    width: 80%;
  }
}

@media screen and (max-width: 1366px) {
  .drag-drawflow {
    line-height: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-left: 12px;
    cursor: move;
    user-select: none;
    background-color: #d9d9d9;
  }

  .sidenavdrag {
    margin-top: 15px;
  }

  .wrapper {
    width: 100%;
    height: calc(92.1vh - 0px);
    display: flex;
  }
}

.vh-100 {
  height: 100vh;
}

.sidenavbox {
  flex: 0 0 auto;
  width: 18%;
  background-color: #3b4042;
}

.viewscreen {
  flex: 0 0 auto;
  width: 82%;
  margin: 0px;
  padding: 0px;
}

.rightbox {
  background-color: #ffffff;
}

/*.button{
	width: 90%;
	height: 30px;
	background-color: #4B5052;
	border-radius: 8px;
	margin-bottom: 10px;
	color: #CCCCCC;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	text-align: left;
	padding-top: 5px;
}*/
.selector {
  margin-bottom: 20px;
}

.button {
  border: none;
  color: #cccccc;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-family: "Inter";
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  width: 90%;
  height: 35px;
}

.button1 {
  background-color: #4b5052;
}

/* Grey */
.button2 {
  background-color: #008cba;
}

/* Blue */
.button3 {
  background-color: #d9d9d9;
}

/* grey */

.sidebutton img {
  vertical-align: middle;
  margin-right: 10px;
}

.controls {
  border-bottom: 5px solid black;
  padding-bottom: 20px;
}

.Comp {
  border: none;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-family: "Inter";
  font-size: 16px;
  /*    margin: 10px 0px;*/
  cursor: pointer;
  width: 70%;
  height: 35px;
  padding-left: 12px;
  margin-top: 8px;
}

/* .sort img {
  	margin: 20px 0px;
} */

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #f0f0f0;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control1 {
  display: block;
  width: 80%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 35px;
  height: 120px;
  line-height: 1.5;
  color: #212529;
  background-color: #d9d9d9;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.45rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control2 {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #d9d9d9;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* .form-control3 {
  position: relative;
  left: 500px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  width: 70%;
  padding: 0.375rem 0.75rem;
  margin: 5px 0 5px 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
} */

.form-control4 {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #d9d9d9;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control4:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.topbuttons button {
  margin: 4px;
}

.templateName {
  height: 37px;
  margin: 4px;
  width: 30%;
  border-radius: 6px;
}
/* ::placeholder {
  font-size: 13px;
  padding-left: 10px;
} */
.ph_call_text {
  font-size: 10px;
}
.rightside {
  margin: 0px;
  padding: 0px;
}

.start {
  /* border-bottom: 3px solid #d9d9d9; */
  margin: 0px;
  padding: 0px 0 10px 0;
}

.actions {
  margin: 10px 0px 0px 0px;
}

.start h5 {
  padding-left: 35px;
}

.start h6 {
  padding-left: 35px;
}

.actions h5 {
  padding-left: 25px;
}

.actions h6 {
  padding-left: 25px;
}

.fullbox {
  margin: 0px;
  padding: 0px;
}

/* .boxside {
} */

.StartCondition {
  margin: 10px 0px 5px 22px;
}

.StartCondition button {
  background-color: #d9d9d9;
  border-radius: 8px;
  padding: 8px;
  border: none;
  color: #4b5052;
  text-decoration: none;
  font-family: "Inter";
  font-size: 16px;
}

.box1 {
  width: 85%;
  height: auto;
  border: 1px solid #696969;
  margin-left: 25px;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.name {
  font-family: "Inter";
  font-size: 16px;
  color: #212529;
  font-weight: 500;
}

.name1 {
  font-family: "Inter";
  font-size: 16px;
  color: #212529;
  font-weight: 500;
  margin-top: 10px;
}

/*.messagebox{
    width: 80%;
    height: 131px;
    background-color: #D9D9D9;
    border-radius: 8px;
    margin-left: 33px;
    padding: 20px;
    text-align: center;
    font-family: 'Inter';
    font-size: 15px;
    color: #4B5052;
}*/

/*Draggable*/
#start {
  position: absolute;
  z-index: 9;
  background-color: #000000;
  border: 2px solid #000000;
  text-align: center;
  border-radius: 14px;
  color: #ffffff;
  padding: 12px;
  width: 120px;
  font-size: 18px;
  cursor: pointer;
}

#mydiv {
  position: absolute;
  z-index: 9;
  background-color: #000000;
  border: 2px solid #000000;
  text-align: center;
  border-radius: 10px;
  color: #ffffff;
}

#mydivheader {
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  background-color: #ffffff;
  color: #000;
  border-radius: 10px;
}

/*Side Nav*/
.sidenav {
  display: none;
  height: 95%;
  width: 326px;
  position: fixed;
  z-index: 1;
  top: 48px;
  right: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/*@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}*/

/*Side Nav1*/
.sidenav1 {
  display: none;
  height: 95%;
  width: 326px;
  position: fixed;
  z-index: 1;
  top: 48px;
  right: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 60px;
}

.sidenav1 a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

.sidenav1 a:hover {
  color: #f1f1f1;
}

.sidenav1 .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/*@media screen and (max-height: 450px) {
  .sidenav1 {padding-top: 15px;}
  .sidenav1 a {font-size: 18px;}
}*/

/*Side Nav2*/
.sidenav2 {
  display: none;
  height: 95%;
  width: 326px;
  position: fixed;
  z-index: 1;
  top: 48px;
  right: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 60px;
}

.sidenav2 a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

.sidenav2 a:hover {
  color: #f1f1f1;
}

.sidenav2 .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/*@media screen and (max-height: 450px) {
  .sidenav2 {padding-top: 15px;}
  .sidenav2 a {font-size: 18px;}
}*/

/*Dropdown*/
/* Page styles
================================ */
/*html, body { background: #1abc9c; }*/
nav {
  margin-top: 40px;
}

/* Drop Down Styles
================================ */
nav .drop-down {
  list-style: none;
  overflow: hidden;
  color: #4b5052;
  height: 132px;
  background-color: #d9d9d9;
  font-family: Arial;
  width: 93%;
  font-family: "Inter";
  font-size: 16px;
  margin: 10px 0 0 22px;
  /* margin: 20px; */
  padding: 0 10px;
  border-radius: 10px;
  text-align: left;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

nav .drop-down.closed {
  /*  When toggled via jQuery this class will reduce the height of the ul which inconjuction
      with overflow: hidden set on the ul will hide all list items apart from the first */
  /* current li height 38px + 5px border */
  height: 43px;
}

nav .drop-down li {
  border-bottom: 1px solid #2c3e50;
}

nav .drop-down li a {
  display: block;
  color: #4b5052;
  text-decoration: none;
  font-family: "Inter";
  font-size: 16px;
  padding: 10px;
  /* Larger touch target area */
}

nav .drop-down li:first-child a:after {
  content: "\25BC";
  float: right;
  margin-left: -30px;
  /* Excessive -margin to bring link text back to center */
  margin-right: 5px;
}

/*Dropdown 1*/
/* Page styles
================================ */
/*html, body { background: #1abc9c; }*/
nav1 {
  margin-top: 40px;
}

/* Drop Down Styles
================================ */
nav .drop-down1 {
  list-style: none;
  overflow: hidden;
  color: #4b5052;
  height: 132px;
  background-color: #d9d9d9;
  font-family: Arial;
  width: 100%;
  font-family: "Inter";
  font-size: 16px;
  margin: 0px 0 0 0px;
  /* margin: 20px; */
  padding: 0;
  border-radius: 10px;
  text-align: left;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

nav .drop-down1.closed1 {
  /*  When toggled via jQuery this class will reduce the height of the ul which inconjuction
      with overflow: hidden set on the ul will hide all list items apart from the first */
  /* current li height 38px + 5px border */
  height: 43px;
  width: 100%;
}

nav .drop-down1 li {
  border-bottom: 1px solid #2c3e50;
}

nav .drop-down1 li a {
  display: block;
  color: #4b5052;
  text-decoration: none;
  font-family: "Inter";
  font-size: 16px;
  padding: 10px;
  /* Larger touch target area */
}

nav .drop-down1 li:first-child a:after {
  content: "\25BC";
  float: right;
  margin-left: -30px;
  /* Excessive -margin to bring link text back to center */
  margin-right: 5px;
}

/*Dropdown 2*/
/* Page styles
================================ */
/*html, body { background: #1abc9c; }*/
nav1 {
  margin-top: 40px;
}

/* Drop Down Styles
================================ */
nav .drop-down2 {
  list-style: none;
  overflow: hidden;
  color: #4b5052;
  height: 132px;
  background-color: #d9d9d9;
  font-family: Arial;
  width: 100%;
  font-family: "Inter";
  font-size: 16px;
  margin: 0px 0 0 0px;
  /* margin: 20px; */
  padding: 0;
  border-radius: 10px;
  text-align: left;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

nav .drop-down2.closed2 {
  /*  When toggled via jQuery this class will reduce the height of the ul which inconjuction
      with overflow: hidden set on the ul will hide all list items apart from the first */
  /* current li height 38px + 5px border */
  height: 43px;
  width: 100%;
}

nav .drop-down2 li {
  border-bottom: 1px solid #2c3e50;
}

nav .drop-down2 li a {
  display: block;
  color: #4b5052;
  text-decoration: none;
  font-family: "Inter";
  font-size: 16px;
  padding: 10px;
  /* Larger touch target area */
}

nav .drop-down2 li:first-child a:after {
  content: "\25BC";
  float: right;
  margin-left: -30px;
  /* Excessive -margin to bring link text back to center */
  margin-right: 5px;
}

/*Map*/

.responsive-map {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.responsive-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*Tags*/

.tags-input-wrapper {
  background: #f9f9f9;
  padding: 12px;
  border-radius: 0px;
  max-width: 300px;
  border: 1px solid #ccc;
  margin: 20px 0 0 28px;
}

.tags-input-wrapper input {
  border: none;
  background: transparent;
  outline: none;
  width: 150px;
}

.tags-input-wrapper .tag {
  display: inline-block;
  background-color: #d9d9d9;
  color: black;
  border-radius: 0;
  padding: 0px 0px 0px 18px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.tags-input-wrapper .tag a {
  /*            margin: 0 7px 3px;*/
  display: inline-block;
  cursor: pointer;
}

.apply {
  margin: 20px 120px;
}

/* On screens that are 1276px wide or less, go from four columns to two columns */
@media screen and (max-width: 1276px) {
  .button {
    font-size: 15px;
  }
}

/* On screens that are 1346px wide or less, go from four columns to two columns */
@media screen and (max-width: 1220px) {
  .button {
    font-size: 13px;
  }
}

@media screen and (max-width: 1366px) {
  .drag-drawflow {
    /* line-height: 37px; */
    border-bottom: 1px solid var(--border-color);
    /*    padding-left: 10px;*/
    cursor: move;
    user-select: none;
    background-color: #d9d9d9;
    font-size: 14px;
  }

  .selector {
    margin-bottom: 5px;
  }

  .controls {
    border-bottom: 2px solid black;
    padding-bottom: 5px;
  }

  .sidenavdrag {
    margin-top: 13px;
  }
}

/* custom css */

.form-control-focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.was-validated :valid + .form-control-focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated :invalid + .form-control-focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.attributeContainer,
.attributeContainer1,
.attributeContainer2 {
  margin-left: 25px;
  margin-right: 25px;
}

.attribute_instruction {
  font-family: "Courier New";
  font-size: 11px;
  margin-left: 40px;
  margin-right: 32px;
}

#templateContainer {
  overflow-y: scroll;
  height: 300px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

#templateContainer::-webkit-scrollbar {
  width: 13px;
}

#templateContainer::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

#templateContainer::-webkit-scrollbar-thumb {
  background: #212529;
  border-radius: 10px;
}

#templateContainer::-webkit-scrollbar-thumb:hover {
  background: grey;
}

.form-switch {
  font-size: 15px;
}

.settingsTag {
  font-size: 11px;
  font-weight: 700;
  padding: 20px 0px;
}

.templateDelete {
  margin: 2px;
}

.templateApply {
  margin: 2px;
}

.templateIcon {
  max-width: 100px;
  max-height: 50px;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: block;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  cursor: pointer;
}

#chatMap {
  position: absolute;
  bottom: 45px;
  right: 84px;
  /* font-size: 18px; */
}

/* chat designs */
.chat-main {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 380px;
  background-color: #f0f2f4;
  border-radius: 10px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  overflow: scroll;
  overflow-x: hidden;
}

.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #55acff;
  border-radius: 10px 10px 0px 0px;
  padding: 10px 0px;
  width: 300px;
  z-index: 999;
}

.header div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.header .cross img {
  width: 23px;
  margin-right: 14px;
  cursor: pointer;
}

.header .min img {
  width: 13px;
  cursor: pointer;
  margin-left: 140px;
}

.chatCompanyName {
  font-size: 10px;
  font-weight: 500;
  color: #000000;
}

.status {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  text-align: center;
  margin-bottom: -8px;
}

#chatMap {
  display: none;
}

.chatMainhead {
  display: block;
  position: fixed;
  bottom: 64px;
  right: 330px;
}