:root {
  --green:#00c258;
  --green_hover:#00a94d; }

body {
  font-size: 100%;
  height: 100%;
  margin: 0;
  color: #181622;
  background: #fff;
  position: relative;
  width: 100vw;
  min-height: 100vh; }

body, input {
  font-family: proxima-nova,Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

input {
  border: none;
  outline: none; }

div {
  -webkit-tap-highlight-color: transparent; }

a {
  text-decoration: none; }

.button {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer; }

.full-msg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0, 194, 88, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease;
  opacity: 0; }

.full-msg-overlay.shown {
  opacity: 1; }

.full-msg-overlay .text {
  font-family: monotalic,sans-serif;
  font-weight: 700;
  color: #fff;
  font-weight: 700;
  font-size: 50px;
  padding: 24px 32px 48px; }

.landing {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.landing .emojies {
  font-size: 100px; }

.landing h1 {
  font-family: monotalic,sans-serif;
  font-weight: 700;
  font-size: 52px; }

@media (min-width: 720px) {
  .landing h1 {
    font-size: 80px; } }

.landing h1, .landing p {
  margin: 0;
  text-align: center;
  padding: 0 24px; }

.landing p {
  font-size: 22px;
  color: #4d4b5a;
  font-weight: 500; }

.landing .button.login {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 19px;
  padding: 0 24px;
  height: 50px;
  border-radius: 99px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(0, 156, 70, 0.5);
  transition: .3s ease;
  margin: 32px 0;
  display: flex;
  align-items: center;
  padding-left: 0; }

.landing .button.login:hover {
  background: var(--green_hover);
  box-shadow: 0 16px 28px -6px rgba(0, 156, 70, 0.4); }

.landing .button.login:before {
  content: "";
  display: flex;
  width: 32px;
  height: 32px;
  background-color: #fff;
  background-image: url(/img/google-icon.svg);
  background-size: 25.6px;
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin: 0 10px; }

.landing .login-username-password {
  margin: 32px 0 96px; }

.landing .login-username-password input {
  text-align: center;
  padding: 0 16px; }

.landing .login-username-password input:active, .landing .login-username-password input:focus {
  border-radius: 99px;
  height: 40px;
  box-shadow: inset 0 0 0 2px var(--green); }

.landing .login-username-password input::-moz-placeholder {
  color: transparent; }

.landing .login-username-password input::placeholder {
  color: transparent; }

.not-worthy {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.not-worthy .emojies, .not-worthy .headline, .not-worthy .description {
  text-align: center;
  padding: 0 24px; }

.not-worthy .emojies {
  font-size: 100px;
  transform: translateX(-20px); }

.not-worthy .headline {
  font-family: monotalic,sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1em;
  margin-bottom: 16px; }

.not-worthy .description {
  font-size: 22px;
  color: #4d4b5a; }

.not-worthy .button.logout {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 19px;
  padding: 0 24px;
  height: 50px;
  border-radius: 99px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(0, 156, 70, 0.5);
  transition: .3s ease;
  margin: 32px 0;
  padding: 0 32px; }

.not-worthy .button.logout:hover {
  background: var(--green_hover);
  box-shadow: 0 16px 28px -6px rgba(0, 156, 70, 0.4); }

.dashboard {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  background: #f3f6ff; }

.dashboard header {
  width: calc(100vw - 24px);
  height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 10;
  transition: .3s ease;
  transform: translateY(0); }

.dashboard header.scrolled {
  transform: translateY(-100px); }

.dashboard header .logo-wrap {
  font-size: 22px;
  display: flex;
  align-items: center;
  margin-left: 24px;
  flex-grow: 1; }

.dashboard header .logo-wrap .logo-icon {
  margin-right: 12px;
  font-size: 30px; }

@media (max-width: 360px) {
  .dashboard header .logo-wrap .logo-icon {
    display: none; } }

.dashboard header .logo-wrap .logo-name {
  font-family: monotalic,sans-serif;
  font-weight: 700; }

.dashboard header .amazon-image-grabber {
  padding: 0 16px;
  height: 38px;
  margin-right: 24px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px; }

.dashboard header .user-wrap {
  display: flex;
  align-items: center; }

@media (max-width: 720px) {
  .dashboard header .user-wrap {
    display: none; } }

.dashboard header .user-wrap .user-name {
  font-weight: 700; }

.dashboard header .user-wrap img {
  border-radius: 18px;
  margin-right: 12px; }

.dashboard header .button.logout {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 19px;
  padding: 0 24px;
  height: 50px;
  border-radius: 99px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(0, 156, 70, 0.5);
  transition: .3s ease;
  height: 38px;
  margin: 0 24px;
  background: #e7e9f3;
  color: unset;
  font-size: 17px;
  box-shadow: unset; }

.dashboard header .button.logout:hover {
  background: var(--green_hover);
  box-shadow: 0 16px 28px -6px rgba(0, 156, 70, 0.4); }

.dashboard header .button.logout:hover {
  color: unset;
  background: #dee1ef;
  box-shadow: unset; }

.dashboard .list-wrap {
  width: 100%;
  margin-top: 88px;
  padding-bottom: 128px; }

.dashboard .list-wrap.scrolled .list {
  margin-top: 28px; }

.dashboard .list-wrap.scrolled .label-bar {
  background: #fff;
  box-shadow: 0 10px 20px -5px rgba(25, 20, 43, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 0 0 12px 12px; }

.dashboard .list-wrap .label-bar {
  padding: 0 24px;
  display: flex;
  width: 100%;
  z-index: 9;
  height: 28px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  transition: .3s ease; }

.dashboard .list-wrap .label-bar .actions {
  opacity: 0; }

.dashboard .list-wrap .label-bar .name, .dashboard .list-wrap .label-bar .tags, .dashboard .list-wrap .list .name, .dashboard .list-wrap .list .tags {
  flex-shrink: 1; }

.dashboard .list-wrap .label-bar .lifetimeClicks, .dashboard .list-wrap .label-bar .lastMonth, .dashboard .list-wrap .label-bar .linkstatus, .dashboard .list-wrap .label-bar .actions, .dashboard .list-wrap .list .lifetimeClicks, .dashboard .list-wrap .list .lastMonth, .dashboard .list-wrap .list .linkstatus, .dashboard .list-wrap .list .actions {
  flex-shrink: 0; }

.dashboard .list-wrap .label-bar, .dashboard .list-wrap .list {
  width: calc(100% - 48px); }

.dashboard .list-wrap .label-bar .name, .dashboard .list-wrap .list .name {
  min-width: 100px;
  margin-left: 16px;
  width: calc( 100vw - 16px - 280px - (90px * 2) - 234px - 280px - 48px); }

.dashboard .list-wrap .label-bar .tags, .dashboard .list-wrap .list .tags {
  margin-left: 16px;
  width: 280px; }

.dashboard .list-wrap .label-bar .lifetimeClicks, .dashboard .list-wrap .label-bar .lastMonth, .dashboard .list-wrap .list .lifetimeClicks, .dashboard .list-wrap .list .lastMonth {
  width: 90px;
  text-align: center; }

.dashboard .list-wrap .label-bar .linkstatus, .dashboard .list-wrap .list .linkstatus {
  width: 234px; }

.dashboard .list-wrap .label-bar .actions, .dashboard .list-wrap .list .actions {
  width: 280px; }

.dashboard .list-wrap .list {
  padding-top: 8px;
  margin-left: 24px; }

.dashboard .list-wrap .list .entry {
  background: #fff;
  margin-bottom: 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 5px 0;
  box-shadow: 0 10px 20px -5px rgba(25, 20, 43, 0.12); }

.dashboard .list-wrap .list .entry .name {
  font-weight: 700; }

.dashboard .list-wrap .list .entry .name .name-inner, .dashboard .list-wrap .list .entry .name .notes {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.dashboard .list-wrap .list .entry .name .notes {
  font-weight: 600;
  font-size: 12px;
  color: #7b8090; }

.dashboard .list-wrap .list .entry .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }

.dashboard .list-wrap .list .entry .tags .tag-entry {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 5px;
  border-radius: 6px;
  margin: 2px;
  text-transform: uppercase;
  color: #676b85;
  background-color: #e6e9f3; }

.dashboard .list-wrap .list .entry .lifetimeClicks, .dashboard .list-wrap .list .entry .lastMonth {
  font-size: 13px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.dashboard .list-wrap .list .entry .linkstatus {
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  height: 32px;
  justify-content: space-between;
  border-radius: 16px;
  background: #e7e9f3;
  cursor: pointer; }

.dashboard .list-wrap .list .entry .linkstatus .linkstatus-entry {
  font-size: 13px;
  font-weight: 600;
  color: rgba(50, 51, 57, 0.7);
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 99px;
  height: 26px;
  margin: 3px;
  padding: 0 5px 0 9px; }

.dashboard .list-wrap .list .entry .linkstatus .linkstatus-entry:after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #b5b8c4;
  display: flex;
  margin-left: 6px;
  background-image: url(/img/check-false.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain; }

.dashboard .list-wrap .list .entry .linkstatus .linkstatus-entry.true:after {
  background-color: #606271;
  background-image: url(/img/check-true.svg); }

.dashboard .list-wrap .list .entry .linkstatus .linkstatus-entry.active {
  background: #fff; }

.dashboard .list-wrap .list .entry .linkstatus .linkstatus-entry.active:after {
  background-color: #ff005d; }

.dashboard .list-wrap .list .entry .linkstatus .linkstatus-entry.active.true:after {
  background-color: var(--green); }

.dashboard .list-wrap .list .entry .actions {
  display: flex;
  justify-content: center;
  align-items: center; }

.dashboard .list-wrap .list .entry .copy, .dashboard .list-wrap .list .entry .edit {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: rgba(231, 233, 243, 0);
  border-radius: 16px;
  padding: 0 12px;
  height: 32px;
  display: flex;
  align-items: center;
  transition: .3s ease;
  font-size: 13px;
  font-weight: 700; }

.dashboard .list-wrap .list .entry .copy:hover, .dashboard .list-wrap .list .entry .edit:hover {
  background: #e7e9f3; }

.dashboard .filter-bar {
  bottom: 32px;
  left: calc(50vw - 220px);
  background: #fff;
  height: 66px;
  width: 440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 10;
  box-shadow: 0 12px 48px -8px rgba(25, 20, 43, 0.3);
  border-radius: 33px; }

.dashboard .filter-bar input {
  margin: 0 11px;
  background: #e7e9f3;
  flex-grow: 1;
  padding: 0 20px;
  font-size: 17px;
  font-weight: 600; }

.dashboard .filter-bar input::-moz-placeholder {
  color: rgba(24, 22, 34, 0.3); }

.dashboard .filter-bar input::placeholder {
  color: rgba(24, 22, 34, 0.3); }

.dashboard .filter-bar input:active, .dashboard .filter-bar input:focus {
  background: #e9efff;
  box-shadow: inset 0 0 0 2px #1551ff; }

.dashboard .filter-bar input, .dashboard .filter-bar .add {
  border-radius: 22px;
  height: 44px;
  transition: .3s ease; }

.dashboard .filter-bar .add {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 19px;
  padding: 0 16px;
  background: var(--green);
  color: #fff;
  margin-right: 11px; }

.dashboard .filter-bar .add:hover {
  background: var(--green_hover); }

.dashboard .filter-bar .add:before {
  content: "";
  display: flex;
  width: 16px;
  height: 30px;
  margin-right: 12px;
  background-image: url(/img/add.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 26px; }

.amazon-image-grabber-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(42, 39, 54, 0.8);
  display: flex;
  justify-content: center;
  align-items: center; }

.amazon-image-grabber-overlay .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; }

.amazon-image-grabber-overlay .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 8px 8px 16px; }

.amazon-image-grabber-overlay .wrap a {
  background: #000; }

.amazon-image-grabber-overlay .wrap a img {
  transition: .3s ease;
  display: block; }

.amazon-image-grabber-overlay .wrap a:hover img {
  opacity: .7; }

.amazon-image-grabber-overlay .wrap .copy {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--green);
  font-weight: 700;
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 99px;
  transition: .3s ease;
  margin-top: 8px; }

.amazon-image-grabber-overlay .wrap .copy:hover {
  background: var(--green_hover); }

.close-amazon-image-grabber-overlay {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  top: 32px;
  position: fixed;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transition: background-color .3s ease;
  border-radius: 24px;
  cursor: pointer;
  z-index: 999;
  right: 32px;
  background-color: #181622;
  background-image: url(/img/close-overlay.svg); }

.close-amazon-image-grabber-overlay:hover {
  background-color: #ff1053; }

.stats-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(42, 39, 54, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease;
  opacity: 0; }

.stats-overlay.shown {
  opacity: 1; }

.stats-overlay .stats-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  max-width: 90vw;
  max-height: 80vh;
  overflow: auto;
  box-shadow: 0 50px 100px -20px rgba(25, 20, 43, 0.3);
  -ms-overflow-style: none;
  scrollbar-width: none; }

.stats-overlay .stats-card::-webkit-scrollbar {
  display: none; }

.stats-overlay .stats-card .stats-title {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center; }

.stats-overlay .stats-card .stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px; }

.stats-overlay .stats-card .stats-table thead tr {
  border-bottom: 2px solid #e7e9f3; }

.stats-overlay .stats-card .stats-table thead tr th {
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap; }

.stats-overlay .stats-card .stats-table thead tr th:first-child {
  text-align: left; }

.stats-overlay .stats-card .stats-table thead tr th:not(:first-child) {
  text-align: right; }

.stats-overlay .stats-card .stats-table tbody tr {
  border-bottom: 1px solid #f3f4f7;
  transition: .2s ease; }

.stats-overlay .stats-card .stats-table tbody tr:hover {
  background: #f8f9fb; }

.stats-overlay .stats-card .stats-table tbody tr:last-child {
  border-bottom: none; }

.stats-overlay .stats-card .stats-table tbody tr td {
  padding: 10px 16px; }

.stats-overlay .stats-card .stats-table tbody tr td:first-child {
  font-weight: 600; }

.stats-overlay .stats-card .stats-table tbody tr td:not(:first-child) {
  text-align: right;
  font-weight: 500;
  color: #4d4b5a; }

.close-stats-overlay {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  top: 32px;
  position: fixed;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transition: background-color .3s ease;
  cursor: pointer;
  z-index: 999;
  right: 32px;
  background-color: #181622;
  background-image: url(/img/close-overlay.svg); }

.close-stats-overlay:hover {
  background-color: #ff1053; }

.download-stats-csv {
  width: auto;
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  top: 32px;
  left: 32px;
  position: fixed;
  background-color: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: background-color .3s ease; }

.download-stats-csv:hover {
  background-color: var(--green_hover); }

.edit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(42, 39, 54, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: .3s ease;
  opacity: 0;
  box-shadow: inset 0 200px 200px -100px rgba(0, 0, 0, 0.2); }

.edit-overlay.shown {
  opacity: 1; }

.edit-overlay .delete, .edit-overlay .close {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  top: 32px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transition: background-color .3s ease;
  border-radius: 24px;
  cursor: pointer; }

.edit-overlay .delete {
  left: 32px;
  background-color: #ff005d;
  background-image: url(/img/delete-entry.svg); }

.edit-overlay .delete:hover {
  background-color: #181622; }

.edit-overlay .close {
  right: 32px;
  background-color: #181622;
  background-image: url(/img/close-overlay.svg); }

.edit-overlay .close:hover {
  background-color: #ff1053; }

.edit-overlay .link-preview {
  font-family: monotalic,sans-serif;
  font-weight: 700;
  margin-bottom: 32px;
  height: 52px;
  border-radius: 99px;
  background: #181622;
  color: #fff;
  line-height: 52px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: .3s ease;
  position: relative;
  padding: 4px 32px 0 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 0 3px transparent; }

.edit-overlay .link-preview b {
  font-size: 28px;
  margin-right: 16px; }

.edit-overlay .link-preview:after {
  content: "Copy";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  line-height: 56px;
  opacity: 0;
  transition: .3s ease;
  padding-top: 2px;
  font-size: 22px; }

.edit-overlay .link-preview:hover {
  color: rgba(255, 255, 255, 0.1); }

.edit-overlay .link-preview:hover:after {
  opacity: 1; }

.edit-overlay .card {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px 32px 32px;
  border-radius: 30px 30px 60px 60px;
  margin-bottom: 32px;
  position: relative;
  box-shadow: 0 50px 100px -20px rgba(25, 20, 43, 0.2); }

.edit-overlay .card.delete-card {
  width: 320px; }

.edit-overlay .card .headline {
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  max-width: 480px; }

.edit-overlay .card .country-list-close {
  position: absolute;
  top: 38px;
  right: 44px;
  font-weight: 800; }

.edit-overlay .card .country-list-wrap {
  height: 480px;
  width: 480px;
  overflow-y: scroll;
  max-height: 70vh;
  border-radius: 8px 8px 24px 24px;
  margin-top: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none; }

.edit-overlay .card .country-list-wrap::-webkit-scrollbar {
  display: none; }

.edit-overlay .card .country-list-wrap .country-list-last-item {
  font-size: 36px;
  padding: 24px 0 0;
  width: 100%;
  text-align: center;
  cursor: pointer; }

.edit-overlay .card .country-list-wrap .country-entry {
  display: flex;
  margin-bottom: 4px;
  background: #ecedf2;
  border-radius: 8px;
  padding: 4px 12px 4px 0; }

.edit-overlay .card .country-list-wrap .country-entry .country-entry-code {
  font-weight: 800;
  width: 48px;
  text-align: center; }

.edit-overlay .card .country-list-wrap .country-entry .country-entry-name {
  flex-grow: 1; }

.edit-overlay .card .country-list-wrap .country-entry .country-entry-action {
  cursor: pointer;
  transition: .3s ease; }

.edit-overlay .card .country-list-wrap .country-entry .country-entry-action.add {
  width: 24px;
  height: 24px;
  background-color: var(--green);
  border-radius: 12px;
  background-image: url(/img/add.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px; }

.edit-overlay .card .country-list-wrap .country-entry .country-entry-action.add:hover {
  background-color: var(--green_hover); }

.edit-overlay .card .country-list-wrap .country-entry .country-entry-action.remove {
  font-weight: 700;
  color: #ff005d;
  height: 24px;
  border-radius: 12px; }

.edit-overlay .card .input-wrap {
  margin: 20px 0 24px; }

.edit-overlay .card .input-wrap div:last-child {
  margin-bottom: 0; }

.edit-overlay .card .input-wrap .wrap {
  margin-bottom: 12px;
  width: 480px;
  max-width: calc(100vw - 48px - 32px);
  position: relative; }

.edit-overlay .card .input-wrap .wrap.tags, .edit-overlay .card .input-wrap .wrap.fallbackLink {
  margin-bottom: 32px; }

.edit-overlay .card .input-wrap .wrap .label {
  font-weight: 700;
  font-size: 11px;
  color: rgba(20, 23, 33, 0.5);
  position: absolute;
  top: 6px;
  left: 12px;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.edit-overlay .card .input-wrap .wrap .label, .edit-overlay .card .input-wrap .wrap .label a {
  line-height: 16px;
  height: 16px; }

.edit-overlay .card .input-wrap .wrap .label.active a {
  pointer-events: auto;
  opacity: 1; }

.edit-overlay .card .input-wrap .wrap .label a {
  display: inline-block;
  background: #1551ff;
  color: #fff;
  padding: 0 6px;
  border-radius: 8px;
  margin-left: 8px;
  pointer-events: none;
  opacity: 0; }

.edit-overlay .card .input-wrap .wrap .field-wrap input {
  width: calc(100% - 24px);
  padding: 22px 12px 8px;
  background: #ecedf2;
  font-size: 17px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: inset 0 0 0 2px transparent;
  transition: .3s ease;
  line-height: 24px; }

.edit-overlay .card .input-wrap .wrap .field-wrap input::-moz-placeholder {
  color: rgba(24, 22, 34, 0.3); }

.edit-overlay .card .input-wrap .wrap .field-wrap input::placeholder {
  color: rgba(24, 22, 34, 0.3); }

.edit-overlay .card .input-wrap .wrap .field-wrap input:active, .edit-overlay .card .input-wrap .wrap .field-wrap input:focus {
  background: #e9efff;
  box-shadow: inset 0 0 0 2px #1551ff; }

.edit-overlay .card .input-wrap .wrap .field-wrap.link-toggle {
  position: relative; }

.edit-overlay .card .input-wrap .wrap .field-wrap.link-toggle input {
  width: calc(100% - 12px - 72px);
  padding: 22px 72px 8px 12px; }

.edit-overlay .card .input-wrap .wrap .field-wrap.link-toggle .toggle {
  position: absolute;
  z-index: 3;
  right: 12px;
  top: 12px;
  width: 48px;
  height: 30px;
  background: rgba(5, 7, 19, 0.12);
  cursor: pointer; }

.edit-overlay .card .input-wrap .wrap .field-wrap.link-toggle .toggle, .edit-overlay .card .input-wrap .wrap .field-wrap.link-toggle .toggle:after {
  border-radius: 99px;
  transition: .3s ease; }

.edit-overlay .card .input-wrap .wrap .field-wrap.link-toggle .toggle:after {
  content: "";
  display: block;
  background: #fff;
  width: 24px;
  height: 24px;
  margin: 3px; }

.edit-overlay .card .input-wrap .wrap .field-wrap.link-toggle .toggle.active {
  background: var(--green); }

.edit-overlay .card .input-wrap .wrap .field-wrap.link-toggle .toggle.active:after {
  transform: translateX(18px); }

.edit-overlay .card .save {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 19px;
  padding: 0 24px;
  height: 50px;
  border-radius: 99px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(0, 156, 70, 0.5);
  transition: .3s ease;
  justify-content: center;
  height: 54px; }

.edit-overlay .card .save:hover {
  background: var(--green_hover);
  box-shadow: 0 16px 28px -6px rgba(0, 156, 70, 0.4); }

.edit-overlay .card .save, .edit-overlay .card .save:hover, .edit-overlay .card .save.inactive {
  box-shadow: unset; }

.edit-overlay .card .save.inactive {
  background: #bfc1c8;
  pointer-events: none; }

.edit-overlay .card .delete-wrap {
  display: flex;
  width: 100%;
  margin-top: 24px;
  justify-content: space-between; }

.edit-overlay .card .delete-wrap .delete-cancel, .edit-overlay .card .delete-wrap .delete-confirm {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 19px;
  border-radius: 99px;
  height: 54px;
  padding: 0;
  width: calc(50% - 8px);
  justify-content: center;
  color: #fff;
  transition: background .3s ease; }

.edit-overlay .card .delete-wrap .delete-cancel {
  background: #312e41; }

.edit-overlay .card .delete-wrap .delete-cancel:hover {
  background: #181622; }

.edit-overlay .card .delete-wrap .delete-confirm {
  background: #ff005d; }

.edit-overlay .card .delete-wrap .delete-confirm:hover {
  background: #dc0050; }

.edit-overlay .card .multi-country-wrap {
  width: 480px;
  max-width: calc(100vw - 48px - 32px); }

.edit-overlay .card .multi-country-wrap .add {
  font-weight: 700;
  display: flex;
  align-items: center; }

.edit-overlay .card .multi-country-wrap .add:before {
  content: "";
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: var(--green);
  background-image: url(/img/add.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  margin-right: 12px;
  transition: .3s ease; }

.edit-overlay .card .multi-country-wrap .add:hover:before {
  background-color: var(--green_hover); }

.edit-overlay .card .multi-country-wrap .multi-country-editor {
  display: none;
  margin-bottom: 12px; }

.edit-overlay .card .multi-country-wrap .multi-country-editor.active {
  display: flex; }

.edit-overlay .card .multi-country-wrap .multi-country-editor, .edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-selector, .edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap {
  height: 120px;
  border-radius: 8px; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap {
  width: calc(100% - 12px - 30px);
  margin-left: 12px; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry {
  position: relative; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry.first-entry {
  margin-bottom: 12px; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .label {
  font-weight: 700;
  font-size: 11px;
  color: rgba(20, 23, 33, 0.5);
  position: absolute;
  top: 6px;
  left: 12px;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .label, .edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .label a {
  line-height: 16px;
  height: 16px; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .label.active a {
  pointer-events: auto;
  opacity: 1; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .label a {
  display: inline-block;
  background: #1551ff;
  color: #fff;
  padding: 0 6px;
  border-radius: 8px;
  margin-left: 8px;
  pointer-events: none;
  opacity: 0; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap input {
  width: calc(100% - 12px - 72px);
  padding: 22px 72px 8px 12px;
  border: none;
  background: #ecedf2;
  font-size: 17px;
  border-radius: 8px;
  font-weight: 500;
  outline: none;
  box-shadow: inset 0 0 0 2px transparent;
  transition: .3s ease;
  line-height: 24px;
  position: relative; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap input::-moz-placeholder {
  color: rgba(24, 22, 34, 0.3); }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap input::placeholder {
  color: rgba(24, 22, 34, 0.3); }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap input:active, .edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap input:focus {
  background: #e9efff;
  box-shadow: inset 0 0 0 2px #1551ff; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap .toggle {
  position: absolute;
  z-index: 3;
  right: 12px;
  top: 12px;
  width: 48px;
  height: 30px;
  background: rgba(5, 7, 19, 0.12);
  cursor: pointer; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap .toggle, .edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap .toggle:after {
  border-radius: 99px;
  transition: .3s ease; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap .toggle:after {
  content: "";
  display: block;
  background: #fff;
  width: 24px;
  height: 24px;
  margin: 3px; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap .toggle.active {
  background: var(--green); }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-input-wrap .multi-country-input-wrap-entry .field-wrap .toggle.active:after {
  transform: translateX(18px); }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-selector {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-selector::-webkit-scrollbar {
  display: none; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-selector div:last-child {
  margin-bottom: 0; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-selector .multi-country-selector-entry {
  width: 30px;
  height: 30px;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 4px;
  background: #ecedf2;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: .3s ease; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-selector .multi-country-selector-entry.shown {
  display: flex; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-selector .multi-country-selector-entry:hover {
  background: #d7dae6; }

.edit-overlay .card .multi-country-wrap .multi-country-editor .multi-country-selector .multi-country-selector-entry.active {
  color: #fff;
  background: #181622;
  pointer-events: none; }

.edit-overlay .amz-wrap {
  display: flex; }

.edit-overlay .amz-wrap .amz-img {
  width: 54px;
  height: 54px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%; }

.edit-overlay .amz-wrap input {
  font-size: 16px;
  border-radius: 8px;
  font-weight: 500;
  margin: 0 16px;
  padding: 0 16px; }

.edit-overlay .amz-wrap .amz-update-btn {
  font-size: 20px;
  font-weight: 700;
  background: #f90;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  border-radius: 27px;
  padding: 0 24px;
  cursor: pointer; }
