.btn3d.btn-primary {
  box-shadow: 0 0 0 1px rgb(255, 152, 0) inset,
    0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 8px 0 0 #ef6a1b,
    0 8px 8px 1px rgba(0, 0, 0, 0.5);

  background-color: #ff7624;
}

.btn3d.btn-primary:active,
.btn3d.btn-primary.active {
  box-shadow: 0 0 0 1px #ff9800 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);

  background-color: #ff7624;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;

  background-color: #ff7624;

  border-color: #ff7624;
}

.btn3d.btn-success {
  box-shadow: 0 0 0 1px #31c300 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 8px 0 0 #5eb924, 0 8px 8px 1px rgba(0, 0, 0, 0.5);

  background-color: #78d739;
}

.btn3d.btn-success:active,
.btn3d.btn-success.active {
  box-shadow: 0 0 0 1px #30cd00 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);

  background-color: #78d739;
}

.btn3d.btn-info {
  box-shadow: 0 0 0 1px #00a5c3 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 8px 0 0 #348fd2, 0 8px 8px 1px rgba(0, 0, 0, 0.5);

  background-color: #39b3d7;
}

.btn3d.btn-info:active,
.btn3d.btn-info.active {
  box-shadow: 0 0 0 1px #00a5c3 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);

  background-color: #39b3d7;
}

.btn3d.btn-warning {
  box-shadow: 0 0 0 1px #d79a47 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 8px 0 0 #d79a34, 0 8px 8px 1px rgba(0, 0, 0, 0.5);

  background-color: #feaf20;
}

.btn3d.btn-warning:active,
.btn3d.btn-warning.active {
  box-shadow: 0 0 0 1px #d79a47 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);

  background-color: #feaf20;
}

.btn3d.btn-danger {
  box-shadow: 0 0 0 1px #b93802 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 8px 0 0 #aa0000, 0 8px 8px 1px rgba(0, 0, 0, 0.5);

  background-color: #d73814;
}

.btn3d.btn-danger:active,
.btn3d.btn-danger.active {
  box-shadow: 0 0 0 1px #b93802 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);

  background-color: #d73814;
}

.btn3d.btn-magick {
  color: #fff;

  box-shadow: 0 0 0 1px #9a00cd inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 8px 0 0 #9823d5, 0 8px 8px 1px rgba(0, 0, 0, 0.5);

  background-color: #bb39d7;
}

.btn3d.btn-magick:active,
.btn3d.btn-magick.active {
  box-shadow: 0 0 0 1px #9a00cd inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);

  background-color: #bb39d7;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

/* whiteboard */
#canvas-container {
  display: none;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: absolute;
  background: #fbfdff70;
}

.draw-cursor {
  cursor: url(../assets/cursor-pen.0b17119d63b2cfbafc7dbf35237eb0ac.cur),
    auto !important;
}

.erase-cursor {
  cursor: url(../assets/eraser-transparent.7aff2caa355213dd627839573ffe82e1.cur),
    auto !important;
}

.whiteboard-btn {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  background-color: #00bcd4;
  border-color: #00bcd4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete-btn {
  background-color: red !important;
  border-color: red !important;
}

#drawing-box {
  position: absolute;
  bottom: 5px;
  padding: 5px 5px;
  border: 1px solid gray;
  background-color: #fff;
  height: min-content;
  cursor: grab;
  border-radius: 10px;
  display: none;
  margin: 0px 2px;
  z-index: 10000;
  /* flex-wrap: wrap; */
}

#drawing-box button {
  margin: 3px;
}

.textbox {
  top: 20px;
  left: 40px;
  width: 300px;
  position: absolute;
  padding: 20px;
  cursor: grab;
}

.textbox>textarea {
  width: 250px;
  font-size: 25px;
  font-weight: 500;
}

textarea.form-control {
  resize: both;
  display: inline-block;
}

.close-text {
  /* display: inline-block; */
  padding: 0px 6px;
  background: red;
  color: white;
  top: 15px;
  left: -8px;
  height: 20px;
  line-height: 15px;
  cursor: pointer;
  position: relative;
  float: left;
  border-radius: 50px;
  z-index: 100;
}

.red-pen {
  color: #e91818;
}

.canvas_dropdown {
  /* visibility: inherit; */
  opacity: 0;
  /* z-index: 10; */
  margin: 0;
  position: absolute;
  right: -80px;
  top: -55px;
  /* width: 100%; */
  list-style: none;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.93, 0.88, 0.1, 0.8);
  background-color: #fff;
  padding: 10px;
  border-radius: 25px;
  border: 2px solid #fc7624;
}

.roundPen {
  border-radius: 50%;
  width: 20px;
  margin: 2px;
  height: 20px;
  cursor: pointer !important;
}

.roundPen:active .dropdown__items {
  visibility: hidden !important;
}

.cover {
  top: 30%;
  left: 40px;
  width: 200px;
  position: absolute;
  padding: 20px;
  cursor: grab;
}

.drag-container {
  padding: 10px 5px;
  width: 100%;
  flex-direction: column;
  display: flex;
  justify-content: center;
}

.drag-bars {
  border: 1px solid gray;
  margin-bottom: 5px;
}

a.close-icon,
div.close-icon {
  position: relative;
  z-index: 10000;
}

#close_ {
  z-index: 10000;
}

/*canvas reset modal styles*/
#canvasReset .modal-content {
  border: 1px solid black;
  border-radius: 15px;
}

#canvasReset .modal-header {
  border-bottom: none;
  padding: 1rem 1rem 0rem 1rem;
}

#canvasReset .modal-footer {
  border-top: none;
  justify-content: space-evenly!important;
}

#canvasReset .modal-title {
  margin: auto;
}

#canvasReset .modal-header .close {
  padding: 0px !important;
  margin: 0px !important;
}

#canvasReset .modal-body {
  margin: auto;
}

#canvasReset .modal-footer>:not(:last-child) {
  width: 30%;
}

#canvasReset .modal-footer>:not(:first-child) {
  width: 30%;
}

#canvasReset .btn {
  padding: 0px;
}

#canvasReset .reset-yes {
  background-color: #ff7624;
  border-color: #ff7624;
  color: white;
  font-size: 30px;
}

#canvasReset .reset-yes:hover {
  background-color: #f97222;
  border-color: #f97222;
}

#canvasReset .reset-no {
  background-color: #34a853;
  border-color: #34a853;
  color: white;
  font-size: 30px;
}

#canvasReset .reset-no:hover {
  background-color: #309b4c;
  border-color: #309b4c;
}