.ap_cart_container {
  position: relative;
  width: 33px;
  height: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ap_cart_container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ap_cart_icon-container {
  width: 33px;
  height: 24px;
}

.ap_cart_icon-container > iframe {
  border: none;
  outline: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.ap_cart_icon-container::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  cursor: pointer;
}

.ap_cart_popup-container {
  position: absolute;
  border-radius: 5px;
  top: 40px;
  right: -5px;
  width: 250px;
  min-height: 50px;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .ap_cart_popup-container {
    width: 380px;
  }
}

.ap_cart_popup-container > iframe {
  position: relative;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ap_cart_popup-container::before {
  position: absolute;
  top: -10px;
  right: 16px;
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDE1IDEzIiBmaWxsPSJub25lIj4NCjxwYXRoIGQ9Ik03LjUgMEwxNC44NjEyIDEyLjc1SDAuMTM4Nzg0TDcuNSAwWiIgZmlsbD0id2hpdGUiLz4NCjwvc3ZnPg==");
  display: block;
  content: "";
  z-index: -1;
}

