/** Tabs Narrow Switch */
.am-tabs-narrow-switch {
  line-height: 24px;
  cursor: pointer;
  float: left;
  padding-right: 8px;
  display: none;
  text-decoration: none;
}

.am-tabs-narrow-switch::before {
  content: "";
  color: #333333;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.am-tabs-narrow-dashboard {
  line-height: 24px;
  float: left;
  padding-right: 8px;
  display: none;
  text-decoration: none;
}

.am-tabs-narrow-dashboard::before {
  content: "";
  color: #333333;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media all and (max-width: 500px) {
  .am-tabs-narrow-switch,
  .am-tabs-narrow-dashboard {
    display: block;
  }

  .am-lang-title {
    display: none;
  }

  .am-account-toolbar {
    margin-bottom: 0.5em;
    overflow: visible;
    z-index: 10;
  }
  .am-account-toolbar .am-account-toolbar-items {
    padding: 0.5em;
    background: #eee;
  }

  .am-account-toolbar-fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 1px 5px grey;
  }
}
/** End Tabs Narrow Switch */


/* Tabs - user member area menu */
ul.am-tabs {
  display: block;
  overflow: hidden;
  margin: 0 0 1em 0;
  padding: 0;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-align: left;
}
ul.am-tabs .menu-item-alert {
  border-radius: 1.2em;
  margin-left: 0.2em;
  min-width: 1.2em;
  height: 1.2em;
  line-height: 1.2em;
  padding: 0.2em;
  font-size: 70%;
  background: #fafafa;
  display: inline-block;
  text-align: center;
  color: #333;
}
ul.am-tabs #menu-member {
  width: 1em;
  overflow: hidden;
}
ul.am-tabs #menu-member::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: left;
  margin-right: 2em;
}
ul.am-tabs li {
  display: block;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  position: unset;
}
ul.am-tabs > li {
  float: left;
  background: #e8e8e8;
  background: linear-gradient(to bottom, #f6f6f6, #e8e8e8);
}
ul.am-tabs a {
  display: block;
  box-sizing: content-box;
  margin: 0;
  height: 1.5em;
  vertical-align: middle;
  line-height: 1.5em;
  padding: 0.5em 1em;
  border-right: 1px solid #ccc;
  color: #555960;
  text-decoration: none;
}
ul.am-tabs li.active > a,
ul.am-tabs li.normal > a:hover {
  border-color: #c7665b;
  color: white;
}
ul.am-tabs li.active,
ul.am-tabs li.normal:hover {
  background: #e47a05;
  background: linear-gradient(to bottom, #f1826f, #e47a05);
}
ul.am-tabs li.active .menu-item-alert,
ul.am-tabs li.normal:hover .menu-item-alert {
  color: #e47a05;
}
ul.am-tabs li ul {
  visibility: hidden;
  position: absolute;
  transform: translate(0, 10px);
  margin: 0;
  padding: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
ul.am-tabs li > ul ul {
  top: 0;
  left: 100%;
  margin-left: -2px;
}
ul.am-tabs li > ul ul.am-tabs-flip {
  right: 100%;
  left: unset;
}
ul.am-tabs li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
  margin-left: -1px;
}
ul.am-tabs .has-children .has-children {
  position: relative;
}
ul.am-tabs .has-children ul {
  background: #e8e8e8;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #ccc;
  min-width: 150px;
  box-shadow: 0 3px 3px #0000001a;
}
ul.am-tabs .has-children li {
  margin: 0;
  border-radius: 0;
}
ul.am-tabs .has-children ul a {
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
}
ul.am-tabs .has-children > a:hover {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
ul.am-tabs .has-children > a::after {
  content: " ";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 70%;
}
ul.am-tabs .has-children .has-children > a::after {
  content: " ";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 70%;
  float: right;
  margin-left: 1em;
}

/* END Tabs */
/* Tabs Narrow - user member area menu */
.am-tabs-narrow-stuff {
  display: none;
}

.am-tabs-narrow-wrapper {
  display: none;
  clear: both;
  position: absolute;
  width: calc( 100% - 2 * var(--padding) );
}
.am-tabs-narrow-wrapper.am-tabs-narrow-wrapper-open {
  animation-name: tabs-narrow;
  animation-duration: 0.5s;
}
.am-tabs-narrow-wrapper .am-tabs-narrow-wrapper-tail {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: #dbdbdb;
  position: absolute;
  top: -5px;
  left: 2em;
}

@keyframes tabs-narrow {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0px);
  }
}
ul.am-tabs-narrow {
  position: relative;
  margin: 0;
  padding: 1em;
  background: #dbdbdb;
  text-align: left;
}
ul.am-tabs-narrow ul {
  margin: 0;
  padding: 1em;
  display: none;
  position: absolute;
  min-height: 100%;
  box-sizing: border-box;
  left: 0;
  top: 0;
  width: 100%;
  background: #dbdbdb;
}
ul.am-tabs-narrow ul div.am-tab-close {
  color: #303030;
  font-size: 1.1rem;
  float: right;
  cursor: pointer;
}
ul.am-tabs-narrow ul div.am-tab-close::after {
  content: "✕";
}
ul.am-tabs-narrow li.am-tab-opened > ul {
  display: block;
}
ul.am-tabs-narrow li {
  list-style-type: none;
}
ul.am-tabs-narrow a {
  padding-bottom: 0.4em;
  display: block;
}
ul.am-tabs-narrow li.active > a {
  font-weight: bold;
}

@media all and (max-width: 500px) {
  .am-tabs-wrapper {
    display: none;
  }

  .am-tabs-narrow-wrapper {
    display: block;
  }
}
@media all and (max-width: 600px) {
  ul.am-tabs a {
    padding: 0.4em 0.5em;
  }
}

/* END Tabs Narrow */

/** User Identity */

.am-user-identity-block {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAATCAYAAACZZ43PAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAbFJREFUeNpi/P//PwO1AWNGeYvM9ssvTx689/U/CIPYIDGQHIZiLAbwbTzz8JCAkIg+suCHd28u+pvI2wGZn5DFmbAYII2uGQSgYtLo4tgMEMblN1f/cD10PdgMYLh99eI7dLFbVy68371x5VtiDHhbkRK8/Mq5Ez9gAiB2ZWrICiDzJRD/IxiIQGwKxD7yKuomD+/c/AYyA4i3AfFp9ECEG1TSOlly/cl780DRtu/2x89uARFhIG8DsZN7UFQISAwkB1IDFONEN4Bn1ZEbW2DxDsJL9l7YDRQXAkXA0n0XdyHLrTl2azNQnAukkRmIWTvnrUvX0DXKQzaRX1BYiZuH96yZnYuypZNnBbIcNw+fmqa+yes9G1eeYwHZIC2vFI/NX2HJeatwRSlUzzJQLIjJKqoakpreoXrEQAYIUJBvBEAGsFJgACvIgD/YUh4hANXzBxQL3Mf2bWMXlZDSFJOUYWNjZ2fEp/Hr50//j+ze/Lm9NG3xt69fDjFCUx4oQFyAWAfKZ8Kh/x80JYJS5h4gPs8ITc7cQCwBxCJAzI4jiYMAqPj6CcRvgPgFyEEAAQYACdCrtuWvL4kAAAAASUVORK5CYII=) no-repeat left center;
  font-weight: bold;
  padding-left: 25px;
  display: block;
  margin: 0 0 1rem 0;
}
.am-user-identity-block a {
  text-decoration: none;
  font-weight: normal;
}
@media all and (max-width: 500px) {
  .am-user-identity-block {
    background: none;
    padding-left: 0;
  }
  .am-user-identity-block .am-user-identity-block_login {
    max-width: 100px;
    max-height: 24px;
    white-space: nowrap;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    float: left;
    margin-right: 0.4em;
  }
}

.am-user-identity-block-avatar {
  font-weight: bold;
  overflow: hidden;
  line-height: 24px;
  float: left;
}
.am-user-identity-block-avatar a {
  text-decoration: none;
  font-weight: normal;
}
@media all and (max-width: 500px) {
  .am-user-identity-block-avatar .am-user-identity-block_login {
    max-width: 100px;
    max-height: 24px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    float: left;
    margin-right: 0.4em;
  }
}

.am-user-identity-block-avatar-pic {
  overflow: hidden;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 0.5em;
  float: left;
}
.am-user-identity-block-avatar-pic img {
  width: 24px;
  height: 24px;
}
@media all and (max-width: 500px) {
  .am-user-identity-block-avatar-pic {
    display: none;
  }
}

/** End User Identity */

/** Category Search Filter */

#am-category-search {
  margin: 1rem 0 0;
}

.am-input-filter-wrapper {
  overflow: hidden;
  border: 0.5rem solid var(--weiss);
}
.am-input-filter-wrapper.am-input-filter-wrapper_focus {
  box-shadow: 0 0 4px #00000022;
  background: #fff;
}
.am-input-filter-wrapper .am-input-filter-inner-wrapper {
  position: relative;
  padding-right: 15px;
  background: #fff;
}
.am-input-filter-wrapper .am-input-filter-empty {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  cursor: pointer;
  opacity: 0.3;
  display: none;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAASAAAAEgAjOG5KAAAAnUlEQVQ4y+WTuw3DMAxETwEHyDppDLDMOMog8jgqBVzjdTyAAKZxAFuxFH9SJVceiQcccQT+Ryml65GdS7kgIgPJUIOQDCIylLAFSFVHM4sA/Bps8ryZRVUdP8YjGUjaHLbmzeVaMAAeQD9ZHkDfdd1jF6iAoQV5u9EZfS1aFbL32JsgW2aLaK9CmlmsRSAZnHP3nPOt2aWjL/LDegLsGX0NjiatxAAAAABJRU5ErkJggg==) no-repeat center center transparent;
}
.am-input-filter-wrapper .am-input-filter-empty:hover {
  opacity: 1;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAASAAAAEgAjOG5KAAAAq0lEQVQ4y2NgGDngf0CCADlqmNAV/GH/efx3WFQfLkN+h0X1/WH/eRzdMBSDGDcs+MDwn3E7I8P/QmyG/Q6L6mNk+F/I8J9xO+OGBR8Ieu93WFTfn7DI/8iGYRNDcQQ+wxgZ/hf+Z2DshyiEsFlXLSsiySAUrzAwMOAzBCOMKAFU8xrVApsoQ4iRQ/EaLEEy/GfcjssLv8Oi+hgY/3uy/GS3xJuWyM0iwxgAAARneGlNvfu5AAAAAElFTkSuQmCC);
}
.am-input-filter-wrapper input[type=text].am-input-filter {
  padding: 0;
  margin: 0;
  border: none;
  width: 100%;
  padding-left: 24px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAASAAAAEgAjOG5KAAABeElEQVQ4y83TPYsTURjF8f+ZDL4UWlgFSeNWvmAjqBC9M/gNBCstd82nUKzExl6QsIpsl04stBvmTsimdP0AsmCpu9VqEdZ7bIyExTjBQjzVvQ+XHw8HLvxv0dHBeDw+lVK6DxTAMUkfgGEI4ePKUIzxCvAGOAvsSjqwfR74LmkQQthaBmXzw3Q6PQ28Bg5t3yiK4lwI4bLtNWDb9ssY47VWaDabbQA923fLspzM52VZfsrz/A7w2fbDVkjSTWB3EZmn3+/vA+8khVYopXRS0sHSMqWvwIlWKMuyHdsXqqrqHX00Go06tm/Zft8KAUPgsNPpbE0mkzPzYVVVebfbfQpclPR46caLl7qu70l6JWnP9lvb3ySVwCXgC/AohPBcUvojBNA0zfWU0oOfxR63vZNl2RPbPeCZ7RdFUQx+h60U21ld15sxRtd1vWl7sRbyVSFJyfYgxoik9Rgjtn9tplWhxc1ijENJtyVdbfuDrVjTNGt/DfyT/ACg8aXpx984kwAAAABJRU5ErkJggg==) no-repeat left center;
}
.am-input-filter-wrapper input[type=text].am-input-filter:focus {
  border: none;
  box-shadow: none;
  outline: 0;
}
/** End Category Search Filter */

/* Pagination */
.am-pagination {
  clear: both;
  font-size: 100%;
  padding: 0.5em 0;
  margin: 0.5em 0;
}
.am-pagination a {
  text-decoration: none;
  color: #5e6e7a;
  background: #d3dce3;
}
.am-pagination a, .am-pagination span {
  padding: 0.4em 1em;
  margin-right: 2px;
  margin-bottom: 5px;
}
.am-pagination .am-pagination-current {
  background: #97b1c2;
  color: #fff;
}
.am-pagination .am-pagination-current.am-pagination-prev,
.am-pagination .am-pagination-current.am-pagination-next {
  color: #afb5ba;
  background: #e3e6e8;
}
@media all and (max-width: 360px) {
  .am-pagination {
    text-align: center;
  }
  .am-pagination span.am-pagination-dots {
    padding: 0.6em 0.1em;
  }
  .am-pagination .am-pagination-prev,
  .am-pagination .am-pagination-next {
    display: none;
  }
}

/** Hide sendpass form at first */


.am-sendpass-form-wrapper {
  display: none;
}

