.email-sinature-page {
  background-color: #e1e3e7;
}

.signature-panel {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #232a38;
  padding: 8px 12px;
  margin-bottom: 12px;
}

.signature-panel .signature-dropdown {
  position: relative;
}

.signature-panel .signature-dropdown span {
  color: white;
  padding: 4px 0;
}

.signature-panel .signature-dropdown span svg {
}

.signature-panel .signature-dropdown ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #31363f;
  width: max-content;
  height: max-content;
  max-height: 0;
  z-index: 99;
  overflow: hidden;
}

.signature-panel .signature-dropdown:hover ul {
  max-height: 800px;
  overflow: visible;
}

.signature-panel .signature-dropdown ul li a {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  color: white;
}

.signature-panel .signature-dropdown ul li a:hover {
  background-color: #00a49a;
}
.signature-panel .right-buttons svg {
  color: white;
  height: 17px;
  width: 17px;
  cursor: pointer;
}

.signature-panel .right-buttons svg:hover {
  color: #00a49a;
}

.section-title {
  letter-spacing: 0;
  font-weight: 400;
  font-size: 22px;
}

.email-signature-detail {
  background-color: #101d32;
}

.input-group {
  position: relative;
  margin-bottom: 16px;
}

.input-group input {
  background-color: transparent;
  width: 100%;
  border: none;
  padding: 8px;
  color: white;
}

.input-group input:focus {
  outline: none;
}

.input-group::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  transition: 0.2s ease-in-out;
  bottom: 0;
  left: 0;
  background-color: white;
}

.add-more-link {
  color: #00a49a;
  text-decoration: none;
  margin-bottom: 16px;
}

.add-more-link:hover {
  text-decoration: underline;
}

.tool-section {
  background-color: #101d32;
  display: flex;
  flex-direction: row;
  height: 95px;
  overflow: hidden;
  padding: 0;
  transition: height 0.5s;
}

.tool-section:hover {
  height: 230px;
  overflow: visible;
}

.tool-section .tool-item {
  width: 33.3%;
  padding: 12px;
  position: relative;
  transition: 0.2s ease-in-out;
}

.tool-section:hover .tool-item {
  padding: 20px 12px;
}

.tool-section .tool-item .lock-layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  transition: 0.2s ease-in-out;
}

.tool-item .lock-layer .lock-icon {
  position: absolute;
  top: 8px;
  left: 0;
  color: white;
  height: 28px;
  width: 28px;
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.tool-item .lock-layer .upgrade-layer {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease-in-out;
  opacity: 0;
}

.tool-item .lock-layer:hover .upgrade-layer,
.tool-section:hover .lock-icon {
  opacity: 1;
}

.tool-item .lock-layer .upgrade-btn {
  background-color: #ff6009;
  color: white;
  border-radius: 2px;
  border: none;
  padding: 8px 20px;
}

.tool-item .lock-layer .upgrade-btn:focus {
  outline: none;
}

.tool-section .tool-item:not(:last-child)::after {
  content: "";
  position: absolute;
  height: calc(100% - 24px);
  width: 1px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  /* border-right: 1px solid white; */
  background-color: white;
}

@media (max-width: 800px) {
  .tool-section {
    flex-direction: column;
    height: max-content;
  }

  .tool-section:hover {
    height: max-content;
  }

  .tool-section .tool-item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.tool-title {
  color: white;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.color-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.font-selector {
  position: relative;
}

.font-selector .name {
  background-color: transparent;
  color: white;
  display: inline-block;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.font-selector ul {
  position: absolute;
  border-top: 1px solid white;
  width: 100%;
  height: 1px;
  overflow: hidden;
  top: 100%;
  left: 0;
  z-index: 4;
  background-color: white;
  list-style-type: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease-in-out;
}

.font-selector ul li {
  padding: 5px 10px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.font-selector:hover .name,
.font-selector ul li:hover {
  background-color: #e6e6e6;
  color: #000;
}

.font-selector:hover ul {
  height: auto;
  overflow: auto;
}

.color-selection .btn-color,
.color-selection .btn-color:hover {
  width: 20px;
  height: 20px;
  background-color: var(--color);
  border-radius: 50%;
  cursor: pointer;
}

.color-selection .btn-color:hover {
  box-shadow: 0 0 8px white;
  transform: scale(1.1);
}

.color-selection .btn-check:checked + .btn-color {
  box-shadow: 0 0 8px white;
}

.photo-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.photo-selection label {
  width: 20px;
  height: 20px;
  border: 2px solid white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.photo-selection label.small {
  width: 20px;
  height: 20px;
}

.photo-selection label.square-shape {
  border-radius: 0;
}

.photo-selection label.square-radius-shape {
  border-radius: 6px;
}

.photo-selection label.circle-shape {
  border-radius: 50%;
}

.photo-selection label:hover {
  transform: scale(1.1);
  border: 2px solid #00a49a;
}

.photo-selection .btn-check:checked + label {
  background-color: #00a49a;
  border: 2px solid #00a49a;
}

.size-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.size-selection label {
  height: 30px;
  width: 30px;
  color: #999;
  border: 2px solid #999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.size-selection label:hover {
  transform: scale(1.1);
  border: 2px solid #5abfe8;
  color: #5abfe8;
}

.size-selection .btn-check:checked + label {
  border: 2px solid #5abfe8;
  color: #5abfe8;
}

.border-selection {
  display: flex;
  flex-direction: column;
}

.border-selection label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 100%;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.29);
  position: relative;
  cursor: pointer;
  margin-bottom: 12px;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
  /* border: 1px solid white; */
}

.border-selection label:hover {
  /* transform: scale(1.1);
  border: 1px solid #00a49a; */
}

.border-selection label::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: 1px;
}

.border-selection label.dashed-border::before {
  border-top: 1px dashed white;
}

.border-selection label.dotted-border::before {
  border-top: 1px dotted white;
}

.border-selection label.solid-border::before {
  border-top: 1px solid white;
}

.border-selection .btn-check:checked + label {
  background-color: rgba(0, 0, 0, 0.69);
}

.border-selection .btn-check:checked + label::before {
  /* border: 1px solid #00a49a;
  background-color: #00a49a; */
  border-color: #00a49a;
}

.clear-tools {
  color: #00a49a;
  cursor: pointer;
  float: right;
}

.signature-demo {
  padding: 16px;
  background-color: white;
  border: 1px solid #c0c0c0;
}

.signature-demo img {
  width: 100px;
  height: 80px;
}

.signature-demo .signature-content {
  padding-left: 16px;
  margin-left: 16px;
  border-left: 1px solid #c6c6c6;
}

.mec-panel {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid;
  display: flex;
  flex-direction: row;
}

.mec-panel li a {
  display: inline-block;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: #f0f1f3;
  transition: all 0.2s ease-out;
  padding: 6px 8px;
}
.mec-panel li:not(:last-child) {
  border-right: 1px solid;
}
.mec-panel li a img {
  width: 38px;
  height: 37px;
}
.mec-panel li a:hover {
  background-color: #e2e2e2;
}

.save-btn {
  background-color: #91a605;
  color: white;
  padding: 0px 24px;
  border: none;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  transition: all 0.2s ease-out;
}

@media (max-width: 767px) {
  .save-btn {
    width: 100%;
  }
}

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

.save-btn:hover {
  background-color: #667404;
}

.faq {
  padding-left: 30px;
}

.faq .faq-icon {
  width: 50px;
  height: 50px;
}

.faq ul {
  padding: 0;
  margin: 0;
}

.faq ul li {
  padding-bottom: 12px;
  padding-top: 13px;
  font-size: 14px;
}

.faq ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

.template-choose {
  color: #00a49a;
  transition: all 0.2s ease-out;
  float: right;
}

.template-choose:hover {
  color: #333;
}

.input-group input:focus ~ .floating-label,
.input-group input:not(:focus):valid ~ .floating-label {
  top: 8px;
  bottom: 10px;
  left: 20px;
  font-size: 11px;
  opacity: 1;
}

.input-group .inputText {
  font-size: 14px;
  width: 200px;
  height: 35px;
}

.input-group .floating-label {
  position: absolute;
  pointer-events: none;
  left: 20px;
  top: 18px;
  transition: 0.2s ease all;
}
.custom-input-group {
  position: relative;
  /* width: 50%; */
}
.custom-input-group .inputText {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #777;
  box-shadow: none !important;
  background-color: transparent;
  color: white;
  font-size: 15px;
  padding-left: 11px;
}

.custom-input-group .floating-label {
  position: absolute;
  pointer-events: none;
  top: 24px;
  left: 10px;
  transition: 0.4s ease all;
  color: white;
}
.custom-input-group input:focus ~ .floating-label,
.custom-input-group input:not(:focus):valid ~ .floating-label {
  top: 11px;
  left: 11px;
  font-size: 10px;
  opacity: 1;
}

#sortable {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 200px;
  margin: 0 10%;
}

#sortable .draggable {
  width: 200px;
  height: 200px;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  margin: 0 5px;
  color: #fff;
}

.social-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-list li {
  display: flex;
  flex-direction: row;
  align-items: end;
}

.social-list li img {
  height: 31px;
  width: 31px;
  margin-right: 12px;
}
.social-list li .actions {
  position: relative;
  flex: 1;
  margin-bottom: 4px;
}

.social-list li .actions .floating-label {
  left: 2px;
  color: #ccc;
}

.social-list li .actions .custom-input-group input:focus ~ .floating-label,
.social-list
  li
  .actions
  .custom-input-group
  input:not(:focus):valid
  ~ .floating-label {
  left: 2px;
  font-size: 15px;
  top: 4px;
}

.social-list li .actions .delete-icon {
  position: absolute;
  cursor: pointer;
  bottom: 5px;
  right: 20px;
  color: #ff4609;
  opacity: 0;
}
.social-list li .actions .drag-icon {
  position: absolute;
  cursor: pointer;
  bottom: 5px;
  right: 0;
  color: #5abfe8;
}

.social-list li:hover .delete-icon {
  opacity: 1;
}

.create-qr-btn {
  background-color: #ed3226;
  padding: 15px;
  width: 100%;
  text-align: center;
  color: white;
  border: none;
}

.create-qr-btn:hover {
  background-color: #f90f00;
}

input.range-input {
  -webkit-appearance: none;
  background-color: #3f4652;
  height: 10px;
  border-radius: 7px;
}

input.range-input::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-appearance: none;
  cursor: ew-resize;
  background: #c4c4c4;
}

input.switch-input {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  height: 25px;
  width: 50px !important;
  padding: 6px;
  border-radius: 1em;
  background-color: #fff;
  border: none;
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input.switch-input:focus {
  border: none;
  outline: none;
  box-shadow: none;
  --bs-form-switch-bg: none;
}

input.switch-input:checked {
  background-color: #00a49a;
}

.template-item {
  width: 50%;
  height: max-content;
  padding: 0 12px;
}

.template-item .template-container {
  border: 1px solid #cfcfcf;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.template-item .template-container .template-content {
  padding: 16px 24px;
}
.template-item .template-container .template-title {
  padding: 12px;
  background-color: #e1e1e1;
  font-size: 20px;
  font-weight: 700;
}

#choose-template-modal .modal-dialog {
  max-width: 800px;
}

.btn-add-more {
  background-color: #00a49a;
  margin-top: 20px;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
  font-size: 17px;
  margin-bottom: 20px;
  border: none;
}

.upload-logo {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 16px;
  cursor: pointer;
  width: 225px;
  position: relative;
}

.upload-logo img {
  width: 54px;
  height: 54px;
}
.upload-logo svg {
  width: 44px;
  height: 44px;
  fill: #bdbdbd;
}
.upload-logo p {
  margin-bottom: 0;
  font-size: 15px;
  color: #bdbdbd;
  text-align: center;
  line-height: 1;
}

.upload-logo .logo-img {
  position: relative;
}
.upload-logo .clear-logo-btn {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: 0.3s;
  fill: #ff4609;
  background-color: #fff;
  border-radius: 50%;
}

#add-social-modal .modal-dialog {
  width: 100%;
  max-width: 700px;
}

#add-social-modal .modal-header {
  background-color: #ff0a00;
  color: white;
}

#add-social-modal .modal-header svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#add-social-modal .modal-header svg:hover {
  color: #000;
}

#add-social-modal .icon-list img {
  width: 50px;
  height: 50px;
  margin-right: 26px;
  cursor: pointer;
  transition: 0.3s;
}

#add-social-modal .icon-list img:hover {
  transform: scale(1.1);
}

#upload-icon-modal .modal-dialog {
  width: 100%;
  max-width: 800px;
}

#upload-icon-modal .upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: dashed 3px #c5cacd;
  border-radius: 3px;
}

#upload-icon-modal .upload-container label {
  display: block;
  padding: 16px 40px;
  border-radius: 100px;
  background: -webkit-linear-gradient(#4892f6, #4289e6);
  background: -moz-linear-gradient(#4892f6, #4289e6);
  background: linear-gradient(#4892f6, #4289e6);
  -webkit-box-shadow: inset 0 -2px #1f66c1;
  -moz-box-shadow: inset 0 -2px #1f66c1;
  box-shadow: inset 0 -2px #1f66c1;
  border: solid 1px #276fcb;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 1px;
  color: white;
  line-height: 33px;
  cursor: pointer;
  margin-top: 11px;
  margin-bottom: 55px;
}

#upload-icon-modal .upload-container label:hover {
  -webkit-box-shadow: inset 0 -2px #1652a0;
  -moz-box-shadow: inset 0 -2px #1652a0;
  box-shadow: inset 0 -2px #1652a0;
  background: -webkit-linear-gradient(#3986eb, #2c6dc2);
  background: -moz-linear-gradient(#3986eb, #2c6dc2);
  background: linear-gradient(#3986eb, #2c6dc2);
}

#upload-icon-modal .upload-container .drop-desc {
  color: #dee0e1;
  text-shadow: 0 1px white;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  margin: 66px 0;
}
#upload-icon-modal .upload-container .small {
  font-size: 13px;
  color: #8f9498;
  margin-bottom: 33px;
}
#upload-icon-modal .upload-container .max-size-desc {
}

#add-signature-to-modal {
  width: 100%;
  max-width: 800px;
}

#add-signature-to-modal .offcanvas-header {
  padding: 0;
  background-color: #e0e0e0;
  padding-right: 16px;
  align-items: start;
}

#add-signature-to-modal .offcanvas-header ul {
  border-bottom: none;
}

#add-signature-to-modal .offcanvas-header ul button {
  width: 100px;
  height: 100px;
  background-color: transparent;
  color: #000;
}

#add-signature-to-modal .offcanvas-header ul button.active {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background-color: #fff;
}

#add-signature-to-modal .offcanvas-header .btn-close {
  margin-top: 12px;
}

#add-signature-to-modal .offcanvas-body {
  padding: 40px 30px 30px 30px;
}

#add-signature-to-modal .tab-content p {
  font-size: 16px;
  text-align: justify;
  line-height: 1.2;
}

#add-signature-to-modal .tab-title {
  font-size: 30px;
  color: #343434;
}
#add-signature-to-modal .tab-subtitle {
  font-size: 18px;
  color: #343434;
}
#add-signature-to-modal .note {
  color: red;
}

#add-signature-to-modal .step {
  text-transform: uppercase;
  font-size: 15px;
  color: #05a3ff;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 24px;
}

#more-fields .actions {
  position: relative;
}

#more-fields .actions .delete-icon {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 20px;
  height: 20px;
  fill: red;
  cursor: pointer;
  opacity: 0;
}

#more-fields .actions:hover .delete-icon {
  opacity: 1;
}

.tip-icon {
  background: url("https://s3.amazonaws.com/images.wisestamp.com/img/setup/tip.png")
    center no-repeat orange;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  opacity: 0.65;
}

.green-get-signature-btn {
  background: rgba(57, 182, 78, 0.8);
  color: #ffffff;
  padding: 20px;
  border: none;
}

.green-get-signature-btn:focus {
  outline: none;
}

.green-get-signature-btn:hover {
  background: rgba(57, 182, 78, 1);
}
