/* ==========================================================================
   Styles for Inline Paddle Checkout
   ========================================================================== */

[v-cloak] { display: none }

/* Fonts */

/* Webfont: LatoLatin-Regular */ @font-face {
    font-family: 'LatoLatinWeb';
    src: url('/store/fonts/LatoLatin-Regular.eot'); /* IE9 Compat Modes */
    src: url('/store/fonts/LatoLatin-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/store/fonts/LatoLatin-Regular.woff2') format('woff2'), /* Modern Browsers */
         url('/store/fonts/LatoLatin-Regular.woff') format('woff'), /* Modern Browsers */
         url('/store/fonts/LatoLatin-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

/* Webfont: LatoLatin-Bold */@font-face {
    font-family: 'LatoLatinWeb';
    src: url('/store/fonts/LatoLatin-Bold.eot'); /* IE9 Compat Modes */
    src: url('/store/fonts/LatoLatin-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/store/fonts/LatoLatin-Bold.woff2') format('woff2'), /* Modern Browsers */
         url('/store/fonts/LatoLatin-Bold.woff') format('woff'), /* Modern Browsers */
         url('/store/fonts/LatoLatin-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

::-moz-selection {
    color: inherit !important;
    background: rgba(44,106,178,0.2) !important;
    text-shadow: none;
}

::selection {
  color: inherit !important;
    background: rgba(44,106,178,0.2) !important;
    text-shadow: none;
}

.store-container * {
  
}

.store-container {
  background-color: #fff;
  background-color: #F9F9F9;
  margin: 0 auto 15px;
  padding: 15px 15px 0;
  border-radius: 8px;
  width: 480px;
  max-width: 100%;
  text-align: left;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 5px 20px black;
  color: #333;
  font-family: 'LatoLatinWeb', sans-serif !important;
}

#receipt-box .ammo-modal-content {
  background-color: #F9F9F9;
  color: #333;
  padding: 15px 25px 30px;
  width: 450px;
  max-width: 100%;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 5px 20px #333;
  font-family: 'LatoLatinWeb', sans-serif !important;
}

#receipt-box .text-column {
  float: left;
  text-align: left;
  width: 80%;
  clear: left;
  margin-bottom: 5px;
}

#receipt-box p {
  font-size: 18px;
  line-height: 22px;
}

#receipt-box .numeric-column {
  float: right;
  text-align: right;
  width: 20%;
}

#receipt-box .receipt-line-item {
  margin: 0 0 5px;
  padding: 0;
  clear: both;
}

#receipt-box .receipt-subtotal .text-column, #receipt-box .receipt-subtotal .numerical-column {
  margin-bottom: 15px;
}

#receipt-box .receipt-total {
  border-top: 2px solid #333;
  clear: both;
  font-weight: 800;
  padding-top: 5px;
}

#receipt-box .receipt-coupon {
  color: #889397 !important;
  font-style: italic !important;
  margin-bottom: 5px;
}

#receipt-box .receipt-subtotal {
  border-top: 1px dotted #889397;
  margin: 5px 0 10px;
}

#receipt-box .small-print {
  margin: 0 0 20px;
  padding: 20px 0 0;
  clear: both;
}

#receipt-box .small-print p {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px;
}

.store-container a, .store-container a:link, .store-container a:visited {
  color: rgb(44, 106, 178) !important;
}

.store-container label {
  font-weight: 300;
  font-size: 12px;
  margin: 15px 0 5px;
  padding: 0;
  display: block;
  text-align: left;
}

.store-container select {
  display: block;
  width: 100%;
  
  margin: 0 !important;
  padding: 0 !important;
  padding: 1px 0 1px 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #859398 !important;
  border-radius: 4px !important;
  height: 30px !important;
  min-height: 30px !important;
  font-size: 13px;
}

.store-container input {
  margin-bottom: 0;
  width: 100%;
}

.store-container input[type=text], .store-container .textbox {
  background: #fff;
}

.store-container .textbox {
  background: #fff;
  color: #333;
}

.store-container .textbox:focus {
  background: #fff;
}

.store-container .disabled {
  pointer-events: none;
  display: none;
  opacity: 0;
  
  -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

#receipt-box .ammo-modal-close {
  font-size: 18px !important;
  line-height: 18px;
  padding: 5px 20px !important;
}

.store-container .hidden {
  display: none;
  -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.store-container .pre-purchase-form {
  background: none;
  border-radius: 12px;
  padding: 0;
  
  -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.store-container .pre-purchase-form.complete {
  opacity: 0.5;
  pointer-events: none;
  
  -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.store-container .checkout-container {
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  
  -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.store-container .checkout-container.ready {
  opacity: 1;
  pointer-events: auto;
  
  -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.store-container .store-summary, .store-container .store-summary .content {
  padding-top: 0;
  margin-top: 0;
}

.order-complete #title {
  width: 1200px;
  max-width: 100%;
}

#store-modal-background {
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overflow-y: scroll !important;
  background-color: rgba(0,0,0,0.8);
}

.store-container iframe body {
  overflow: hidden !important;
  height: 550px !important;
}

.store-container #store-quantity {
  margin: 5px auto 0;
  text-align: center;
}

.store-container #store-quantity p {
  display: inline-block;
  color: #333 !important;
}

.store-container #store-quantity select {
  display: inline-block;
  width: 75px;
}

.store-container #license-count {
  margin: 0 0 0 7px;
}

.store-container #store-spinner {
  display: none;
}

.store-container #store-header {
  margin: 10px 0 0 0;
  padding: 0 30px 0 10px;
}

#ra-store-container .store-container #store-header {
  margin: 0 0 0 0;
  padding: 0 30px 0 30px;
}

.store-container .StoreButton {
  background-color: rgb(44, 106, 178);
  background-color: rgb(47, 114, 192) !important;
  padding: 11px 30px;
  font-size: 13px;
  text-decoration: none;
  margin: 15px auto;
}

.store-container .StoreButton:hover {
  background-color: rgb(44, 106, 178) !important;
  text-decoration: none;
}

.store-container .StoreButton:active {
  background-color: #000 !important;
  text-decoration: none;
}

.store-container .close-button {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif !important;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.store-container .close-button:hover {
  color: #2F72C0;
}

.store-container .close-button:active {
  color: #000;
}

.store-container .back-button {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif !important;
  position: absolute;
  top: 20px;
  left: 30px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.store-container .back-button:hover {
  color: #2F72C0;
}

.store-container .back-button:active {
  color: #000;
}

.store-container #store-header h3 {
  margin: 5px 0 5px;
  font-weight: 800;
  color: #333 !important;
  font-size: 22px;
  line-height: 25px;
  text-align: center;
}

.store-container h3#purchaseTitle {
  margin: 0 !important;
  padding: 0 !important;
}

.store-container #store-header p {
  margin: 0;
}

h3.license-popup-link, h3.refund-popup-link, h3.taxes-popup-link, h3.privacy-popup-link {
  font-weight: 400;
  margin-bottom: 10px;
} 

.store-summary h3.ammo-modal-link a {
  font-size: 20px;
  line-height: 25px;
} 


.store-container #store-page-one {
	width:420px;
  max-width: 100%;
  background: #F3F7FC;
  background: #fff;
  border-radius: 12px;
  padding: 0 5px; 
	margin: 10px auto 30px auto;
}

.store-container #store-footer {
  margin: 0 10px 10px;
}

.store-container #loading-spinner {
  position: absolute;
  top: 240px;
  left: 50%;
  transform: translate(-50%, 0);
  will-change: transform;
  z-index: 999;
}

.store-container input[type=submit]:disabled,
.store-container input[type=submit][disabled],
.store-container label:disabled,
.store-container label[disabled],
.store-container select:disabled,
.store-container select[disabled]
{
  cursor: not-allowed;
  opacity: 50%;
  transition: all 300ms ease;
}

.store-container .store-price {
  margin: 0 0 7px 0;
  color: #2F72C0;
}

.store-container #current-price {
  color: #2F72C0;
  font-size: 20px;
  font-family: 'LatoLatinWeb', sans-serif !important;
  font-weight: bold;
  margin: 0;
}

.store-container #list-price {
  display: inline;
  text-decoration: line-through;
  color: #CCC;
  margin: 0 0 0 0; 
}

.store-container #store-total {
  margin: 0;
}
.store-container .original-price
{
  display: none;
}

.store-container .original-price.modified {
  display: inline;
  text-decoration: line-through;
  color: #CCC;
  margin: 0 7px 0 0; 
}

.store-container #store-note {
}

.store-container #store-total {
  font-weight: 600;
  text-align: center;
}

/* Search Spinner */
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

#search-spinner .spinner-1, #search-spinner .spinner-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px !important;
  height: 64px !important;
  padding: 0;
  margin: -32px 0 0 -32px;
  -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}

#search-spinner .spinner-2 {
  -webkit-animation:spin 2s linear infinite reverse;
    -moz-animation:spin 2s linear infinite reverse;
    animation:spin 2s linear infinite reverse;
    
}

.bzgLLg {
  text-align: center !important;
}

@media (max-width: 631px) {
  .store-container {
    margin: 30px 0 45px;
    width: 100%;
  }
  
  .store-container .StoreButton {
    /* font-size: 14px !important; */
  }
  
  .store-container #store-footer {
    margin: 0 10px 30px;
  }
  
  .store-container .close-button {
    top: 15px;
    right: 10px;
  }
  
  .store-container .back-button {
    top: 20px;
    left: 10px;
  }
}

@media (max-width: 351px) {
  .store-container .StoreButton {
    font-size: 15px !important;
  }
}



/* ==========================================================================
 Code to make our form look like Paddle form
 ========================================================================== */
  
 .store-container * {
   font-family: 'LatoLatinWeb', sans-serif !important;
 }
 
 /* .store-container #store-header * {
   font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif !important;
 } */
 
 .store-container #store-page-one {
   background: none;
 }
 
 .store-container .icon-container {
   float: right;
   padding: 0;
   width: 100%;
   margin: -5px auto 0;
   text-align: center;
 }
 
 .store-container .icon-container img {
    width: 128px;
    height: 128px;
    margin: 0;
    padding: 0;
  }
 
 .store-container label {
  font-size: 16px;
  line-height: 18px;
  color: rgb(51,51,51);
  font-weight: bold;
 }
 
.store-container input[type=text], .store-container .textbox {
  color: #333;
  font-size: 13xpx !important;
  height: 40px;
  font-weight: 400;
  border-radius: 5px;
  border: 1px solid #889397;
  box-shadow: 0 1px 2px #D9D9D9;
  padding: 5px 10px;
  font-family: 'LatoLatinWeb', sans-serif !important;
}

.store-container input[type=text]:focus, .store-container .textbox:focus {
  border: 1px solid #2F72C0;
  box-shadow: 0 0 0 4px #C5D8EE;
}

.store-container .StoreButton, #receipt-box .storeButton {
  background-color: rgb(47, 114, 192) !important;
  padding: 11px 30px;
  border-radius: 25px;
  font-size: 20px;
  font-family: 'LatoLatinWeb', sans-serif !important;
  box-shadow: none;
}

#quantity-warning.note.warning {
  margin: 15px 5px 0px 5px;
  padding: 15px 30px;
}

#coupon-button a {
  font-size: 24px; 
  line-height: 28px; 
  margin-top: 30px; 
  margin-bottom: 45px; 
  display: inline
}

/* ==========================================================================
 Attempt to Overwrite Paddle's Styles 
 ========================================================================== */
 
 .cRvkZH {
   text-align: center !important;
 }
 
 /* ==========================================================================
    Styles for Store Pages
    ========================================================================== */
 
 #price-estimate-note {
   position: absolute;
   top: 0;
   right: 0;
   padding: 10px 15px;
   margin: 10px 0 0;
   border-radius: 10px;
   width: 220px;
   font-size: 13px;
   line-height: 15px;
   color: #333;
   background: #F3F7FC;
   
   display: none;
 }
 
 #price-estimate-note.inline {
   position: inherit;
   width: 100%;
   max-width: 590px;
   margin: 0 auto;
   font-size: 14px;
   line-height: 18px;
   display: none;
   text-align: center;
 }
 
 .store-summary h4 {
   color: #fff;
   color: #333;
   font-weight: 500;
 }
 
 .store-summary h2 {
   color: #333;
   font-weight: 700;
   margin-bottom: 5px;
   font-size: 20px;
   text-align: left;
 }
 
 .store-summary {
   width: 100%;
   padding: 0 15px 0;
   margin: 0;
   background: #3e4149;
   background: #fff;
   color: #fff;
   color: #333;
   font-size: 18px;
   line-height: 26px;
 }
 
 .store-summary a {
   font-size: 18px;
   line-height: 26px;
 }
 
 .store-summary p {
   margin-bottom: 15px;
 }
 
 .store-summary ul {
   width: 50%;
   float: left;
   list-style: none;
   margin: 0;
   padding: 0;
 }
 
 .store-summary ul li {
   font-weight: 300;
   color: #fff;
 }
 
 .store-summary ul li strong {
   font-weight: 300;
 }
 
 .store-item {
   margin-bottom: 0;
   padding: 25px 0px 10px;
   border-bottom: 1px solid #e8eaf0;
 }
 
 a.storeButton, a.storeButton:link, a.storeButton:visited, a.button, a.button:link, a.button:visited, input[type=submit] {
   color: #fff;
   background: #2F72C0;
   width: 100%;
   display: block;
   border-radius: 21px;
   padding: 10px 15px;
   margin: 0px 0 15px;
   text-decoration: none !important;
   font-size: 16px;
   line-height: 24px;
   text-align: center;
   font-weight: 500;
   font-weight: 700;
   
   box-shadow: 0 3px 5px rgba(0,0,0,0.2);
 }
 
 a.storeButton:hover {
   text-decoration: none !important;
 }
 
 a.storeButton.buy {
   border-radius: 12px;
 }
 
 input[type=submit] {
   width: auto;
   padding: 10px 30px;
 }
 
 a.storeButton.continue:hover {
   text-shadow: none;
 }
 
 a.storeButton.cancel {
   color: #fff;
   background: #888;
   font-weight: 400;
   font-size: 16px;
   line-height: 24px;
 }
 
 a.storeButton.small, a.storeButton.small:link, a.storeButton.small:visited, a.button.small, a.button.small:link, a.button.small:visited {
   color: #fff;
   background: #2F72C0;
   display: block;
   width: intrinsic;
   min-height: 0px;
   min-height: intrinsic;
   border-radius: 18px;
   padding: 10px 20px;
   margin: 5px 0 10px;
   text-decoration: none;
   font-size: 16px;
   line-height: 16px;
   text-align: center;
   font-weight: 500;
 }
 
 a.storeButton .price {
 /* 	display: block; */
   font-size: 24px;
   line-height: 24px;
 }
 
 /* 20th Anniversary Sale */
 a.storeButton .price.original {
 /* 	display: block; */
   font-size: 24px;
   line-height: 24px;
   font-weight: 300;
   background: linear-gradient(to bottom, 
     rgba(255, 255, 255, 0) 0%,
     rgba(255, 255, 255, 0) 48%,
     #ffffff 48%,
     #ffffff 52%,
     rgba(255, 255, 255, 0) 52%,
     rgba(255, 255, 255, 0) 100%) no-repeat;
   animation: 1s crossout linear;
   animation-delay: 1s;
   animation-timing-function: ease-in-out;
   animation-fill-mode: both;
 }
 
 @keyframes crossout {
    0% { background-position: 75px 0; color: white; }
    50% { background-position: 0 0; color: rgba(255, 255, 255, 0.5); }
    100% { background-position: 0 0; color: rgba(255, 255, 255, 0.5);}
 }
 
 a.storeButton .price.sale {
   display: inline-block;
   animation: 1s accentuate linear;
   animation-timing-function: ease-in-out;
   animation-delay: 2s;
   animation-fill-mode: both;
 }
 
 @keyframes accentuate {
    0% { transform: scale(0, 0); color: white; text-shadow: 0 0 0 transparent; width: 0;}
    50% { transform: scale(1.2, 1.2); text-shadow: 0 0 10px white; width: 68px;}
    100% { transform: scale(1) color: white; text-shadow: 0 0 0 transparent; width: 64px;}
 
 }
 
 
 a.storeButton .text {
   display: block;
   font-size: 12px;
   line-height: 16px;
   font-weight: 300;
 }
 
 .store-box {
   background: #F3F7FC;
   border-radius: 30px;
   padding: 15px 5px 0px 0px;
   margin: 0 0 15px;
   position: relative;
 }
 
 .store-box:has(h4:target), .store-box:target {
   box-shadow: 0 0 20px 5px #2F72C0;
   animation-name: highlight;
   animation-duration: 1s;
   animation-delay: 1s;
 }
 
 .store-box h4:target {
   scroll-margin-top: 55px;	
 }
 
 @keyframes highlight {
   0% {
     transform: scale(1, 1);
   }
   
   50% {
     transform: scale(1.1, 1.1);
   }
   
   100% {
     opacity: 1;
     transform: scale(1, 1);
   }
 }
 
 
 
 .store-box .icon-container {
   margin: 0 15px 15px 0;
   float: left;
 }
 
 .store-box h3 {
   margin-top: 5px;
   margin-bottom: 0;
   color: #333;
 }
 
 .store-box h4 {
   margin: 0 0 5px;
   color: #333;
   font-size: 20px;
 }
 
 .store-box p, .store-block-big p {
   font-size: 18px;
   line-height: 26px;
 }
 
 .store-box p {
   padding-left: 80px;
 }
 
 .store-box a.storeButton {
   margin-top: 5px;
 }
 
 .store-box a.storeButton, .store-block-big a.storebutton {
   font-weight: 700;
   font-size: 18px;
 }
 
 /* Updated Store */
 
 .store-box-new {
   background: #F3F7FC;
   border-radius: 30px;
   padding: 5px 15px 50px;
   margin: 0;
   text-align: center;
   position: relative;
   box-shadow: 0 5px 0px white;
   transition: all 0.3s ease-in-out;
   text-decoration: none !important;
 }
 
 a.store-link::before {
   display: none;
   content: none;
   text-decoration: none !important;
 }
 
 a.store-link {
   display: block;
   grid-area: span 1 / span 1;
   text-decoration: none !important;
 }
 
 a.store-link div {
   display:inline;
 }
 
 .store-box-new:hover {
   box-shadow: 0 5px 20px rgba(51, 51, 51, 0.33);
   transition: all 0.3s ease-in-out;
   text-decoration: none !important;
 }
 
 .store-box-new:active {
   transform: scale(0.95);
   box-shadow: 0 5px 30px rgba(51, 51, 51, 0.33);
   transition: all 0.1s ease-in-out;
   text-decoration: none !important;
 }
 
 .store-box-new .store-icon {
   width: 100%;
   padding: 0;
   margin: 0;
   text-align: center;
 }
 
 .store-box-new .store-icon img {
   width: 200px;
 }
 
 .store-box-new h3 {
   margin-top: 5px;
   margin-bottom: 5px;
   color: #333;
   font-size: 26px;
   line-height: 28px;
 }
 
 .store-box-new h4 {
   margin-bottom: 0px;
 }
 
 .store-box-new a.storeButton {
   width: 200px;
   max-width: 80%;
   margin: 30px auto 20px;
   clear: none;
   font-size: 20px;
   text-align: center;
   display: inline;
   
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   bottom: 5px;
   text-decoration: none !important;
 }
 
 .store-box-new p { 
   font-size: 20px;
   line-height: 30px;
   margin: 0 0 15px;
   padding: 0 0 15px;
   color: #333;
 }
 
 .store-box-new a:hover {
   text-decoration: none !important;
 }
 
  .store-columns {
   grid-template-columns: 1fr 1fr 1fr !important;
   }
 
 @media (max-width: 900px) {
   .store-columns {
   grid-template-columns: 1fr 1fr !important;
   }
 }
 
 @media (max-width: 550px) {
   .store-columns {
   grid-template-columns: 1fr !important;
   }
 }
 
 /* Styling per-app */
 
 /* AF */
 .store-box-new.af {
   background: #e6f9ff;
 }
 
 .store-box-new.af .storeButton {
   background: #0571a3;
 }
 
 /* AH */
 .store-box-new.ah {
   background: rgba(249, 162, 41, 0.2);
   background: color(display-p3 0.976 0.635 0.161 / 0.2);
 }
 
 .store-box-new.ah .storeButton {
   background: #F9A229;
   background: color(display-p3 0.976 0.635 0.161);
 }
 
 /* FG */
 .store-box-new.fg {
   background: #F0EAFB;
 }
 
 .store-box-new.fg .storeButton {
   background: #762BF5;
   background: color(display-p3 0.463 0.169 0.961);
 }
 
 /* FS */
 .store-box-new.fs {
   background: #fffbdc;
 }
 
 .store-box-new.fs .storeButton {
   background: #D7B85A;
 }
 
 /* LB */
 .store-box-new.lb {
   background: #e7f5f5;
 }
 
 .store-box-new.lb .storeButton {
   background: #3cbfbf;
 }
 
 /* PZ */
 .store-box-new.pz {
   background: #FFF3E9;
 }
 
 .store-box-new.pz .storeButton {
   background: #C1773E;
 }
 
 /* SS */
 .store-box-new.ss {
   background: linear-gradient(-45deg, #D2EADC 0%,#D5EAEB 100%);
   min-height: 395px;
 }
 
 .store-box-new.ss .storeButton {
   background: #279878;
 }
 
 .store-box-new .storeButton:hover {
   background: #333;
 }
 
 @media (max-width: 631px) {
   .store-box-new .store-icon img {
     width: 128px;
   }
   
   .store-box-new.ss {
     min-height: 0;
   }
 }
 
 
 a.storeButton .currencyName {
   font-weight: 300;
   font-size: 16px;
   line-height: 24px;
 }
 
 .store-icon {
   position: relative;
   display: inline-block;
   float: left;
   margin: 0 15px 30px 0;
 }
 
 .store-icon .badge {
   position: absolute;
   bottom: 0;
   right: 0;
   vertical-align: bottom;
 }
 
 a.cart-header-link {
   position: absolute;
   top: 30px;
   right: 30px;
   text-decoration: none;
   color: #2F72C0;
   font-size: 16px;
   font-weight: 600;
   line-height: 16px;
   
   -webkit-font-smoothing: antialiased;
   
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
 }
 
 .cart-header-link:hover {
   color: #0062aa;
   
   -webkit-filter: brightness(0.1);
   filter: brightness(0.1);
   
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
 }
 
 .cart-header-link img {
   margin: 0 3px 9px 0;
 }
 
 a.storeButton, a.storeButton:link, a.storeButton:visited {
   color: #fff;
   background: #2F72C0;
 }
 
 a.storeButton:hover, a.storeButton:focus, a.storeButton.small:hover, a.storeButton.small:focus, a.button:hover, a.button:focus, a.button.small:hover, a.button.small:focus {
   color: #fff;
   background: #223940;
   box-shadow: 0 3px 10px rgba(0,0,0,0.5);
 }
 
 a.storeButton:active {
   box-shadow: 0 1px 15px rgba(0,0,0,0.8);
 }
 
 a.basket-link img {
   -webkit-filter: brightness(1);
   filter: brightness(1);
   
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
 }
 
 a.basket-link:hover img {
   -webkit-filter: brightness(1.3);
   filter: brightness(1.3);
   
   
   -webkit-transition: all 100ms ease;
   -moz-transition: all 100ms ease;
   -o-transition: all 100ms ease;
   transition: all 100ms ease;
 }
 
 div.coupon-note {
   font-size: 16px;
   line-height: 18px;
   text-align: center;
   margin-bottom: 15px;
   padding-bottom: 15px;
 }
 
 .price-note {
   font-size: 14px;
   line-height: 14px;
   text-align: center;
   font-weight: 400;
   margin: -10px 0 10px;
   text-decoration: none !important;
 }
 
 .price-note:hover {
   text-decoration: underline;
 }
 
 /* ==========================================================================
    Store Revamp 2016
    ========================================================================== */
 
 .store-section-divider {
   background: #e8eaf0;
   position: relative;
   width: 100%;
   height: 1px;
   clear: both;
   top: 38px;
   margin: 0px 0 0;
 }
 
 h5.store-section {
   margin: 30px auto 0px;
   color: #333;
   font-size: 14px;
   line-height: 16px;
   clear: left;
   padding: 0;
   position: relative;
   text-align: left;
   font-weight: 600;
   
   display: block;
 }
 
 h5.store-section span {
   background: #fff;
   padding: 0 15px;
 }
 
 .store-block-big {
   margin-bottom: 0px;
   float: left;
   width: 100%;
   padding: 20px 5px 5px 0;
   background: #f4f4f4;
   border-radius: 40px;
   font-size: 18px;
   line-height: 26px;
 }
 
 @media (max-width: 931px) {
   .store-block-big {
     text-align: center;
   }
   
   .storeButton {
     margin: 0px auto 30px !important;
     float: none;
     max-width: 350px;
   }
 }
 
 .store-block-small {
   margin-bottom: 0px;
   float: left;
   width: 100%;
 /* 	border-bottom: 1px solid #e8eaf0; */
   padding: 30px 5px 0 0;
 }
 
 .store-block-small::after {
   display: block;
   width: 833px;
   float: right;
   height: 1px;
   background: #e8eaf0;
   content: "";
 }
 
 .store-block-small p {
   padding-left: 79px;
   margin-bottom: 30px;
 }
 
 .store-block-small.no-border {
   border: none;
 }
 
 .store-block-small.no-border::after {
   display: none;
 }
 
 .store-block-big .icon-container, .store-block-small .icon-container {
   float: left;
   margin: 0 15px 15px 0;
 }
 
 .store-block-big h3 {
   color: #333;
 }
 
 .store-block-small a.storeButton {
   padding: 8px 0;
   margin: 0 0 15px;
   height: auto;
   min-height: intrinsic;
   font-size: 14px;
   line-height: 22px;
 }
 
 .store-block-small .storeButton .price {
   font-size: 18px;
   line-height: 18px;
   padding: 0px;
   margin: 0;
 }
 
 .store-block-small .storeButton .text {
   font-size: 10px;
   line-height: 12px;
   margin: 0;
   padding: 0;
 }
 
 .store-block-small h4 {
   margin: 0;
   line-height: 18px;
 }
 
 .license-box {
   background: #333;
   padding: 15px 30px;
   margin: 30px 0 30px;
   color: #fff;
   border-radius: 12px;
   position: relative;
   font-weight: 400;
 }
 
 .license-box p {
   font-size: 22px;
   line-height: 34px;
   font-weight: 400;
   opacity: 1;
   transform: scale(1);
   word-break: break-all;
   
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }
 
 .license-box ::selection {
   background: #2F72C0 !important;
   color: #fff;
 }
 
 #license-container {
   display: grid;
   grid-template-columns: auto 1fr;
   grid-column-gap: 10px;
 }
 
 .license-box .license-label {
    width: 75px;
    text-align: right;
    display: inline-block;
  }
  
  .license-box .license-code {
    font-family: monospace;
  }
  
  .license-box .license-name {
    font-family: monospace;
  }
 
 @media (max-width: 631px) {
   .license-box {
     padding: 10px 15px;
   }
   
   .license-box p {
      font-size: 18px;
      line-height: 26px;
    }
    
    .license-box .license-label {
      width: auto;
      text-align: left;
      display: inline;
    }
 }
 
 @-webkit-keyframes rotate {
   from { -webkit-transform: rotate(0deg); }
   to { -webkit-transform: rotate(360deg); }
 }
 
 .license-box .loader {
   width: 48px;
   margin-left: -24px;
   height: 48px;
   margin-top: -24px;
   position: absolute;
   left: 50%;
   top: 50%;
   opacity: 0;
   
   background: url('/global/images/store/loader.png') no-repeat center center;
   background-size: 48px 48px;
   
   transform-origin: 50% 50%;
   
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
   
   animation: rotate 1.5s infinite;
   animation-timing-function: linear;
   transform: translateZ(0);
 }
 
 
 /* Store FAQ items - Popups */
 h3#license-title, h3#refund-title, h3#privacy-title, h3#taxes-title {
   font-size: 20px;
   line-height: 25px;
   font-weight: 300;
   cursor: pointer;
   margin-bottom: 10px;
 }
 
 h3.ammo-modal-link {
   font-size: 20px;
   line-height: 25px;
   font-weight: 300;
   cursor: pointer;
   margin-bottom: 10px;
 }
 
 .store-summary h3 {
   color: #2F72C0;
 }
 
 .store-summary h3:hover {
   color: #333;
 }
 
 .dark .store-summary h3:hover {
   color: #fff;
 }
 
 @media 
 (-webkit-min-device-pixel-ratio: 2), 
 (min-resolution: 192dpi) { 
   .license-box .loader {
     background: url('/global/images/store/loader@2x.png') no-repeat center center;
     background-size: 48px 48px;
   }
 }
 
 /* Mobile Styles */
 @media (max-width: 631px) {
   .section.store-summary {
     padding: 0;
   }
   
   .faq-content {
     border-radius: 20px;
     width: 90%;
     padding: 20px;
   }
   
   .faq-content p {
     font-size: 17px;
     line-height: 22px;
   }
   
   .faq-content h3 {
     font-size: 20px;
     line-height: 24px;
   }
 }
 
 @media (max-width: 361px) {
   
   .faq-content {
     border-radius: 20px;
     width: 100%;
     padding: 20px;
   }
   
   .faq-content p {
     font-size: 16px;
     line-height: 22px;
   }
   
   .faq-content h3 {
     font-size: 20px;
     line-height: 24px;
   }
 }
 
 
 
 .license-box .loader.two {
   animation: rotate 3s infinite;
   animation-timing-function: linear;
 }
 
 .license-box.loading p {
   opacity: 0;
   transform: scale(0.9);
   
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }
 
 .license-box.loading .loader {
   opacity: 1;
   
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }
 
 .license-box pre {
   margin: 0 0 15px;
   padding: 0;
   font-weight: bold;
   font-size: 20px;
 }
 
 .details-button {
   background: #2F72C0;
   padding: 3px 10px;
   border-radius: 5px;
   color: #fff !important;
   margin-bottom: 15px;
   font-size: 14px;
   line-height: 12px;
   font-weight: 600;
 }
 
 .details-button:hover {
   background: #333 !important;
   text-decoration: none;
 }
 
 .pop-up.store {
   width: 600px;
   padding: 15px;
   box-shadow: 0 4px 15px rgba(0,0,0,0.75);
 }
 
 .pop-up.store::-moz-selection, .pop-up.store::selection {
   color: #fff;
   background: #2F72C0 !important;
   text-shadow: none;
 }
 
 .pop-up.store #submit {
   color: #fff;
   width: 100%;
   display: block;
   border-radius: 6px;
   padding: 10px 15px;
   margin: 0px 0 15px;
   text-decoration: none;
   font-size: 16px;
   line-height: 24px;
   text-align: center;
   font-weight: 700;
   background: #4FA901;
   text-shadow: 0 2px 6px #408900;
 }
 
 .pop-up.store #submit:hover {
   background: #333;
   text-shadow: 0 2px 6px #000;
 }
 
 .pop-up.store .column.label {
   padding-top: 7px;
   text-align: right;
   clear: left;
 }
 
 
 .pop-up.store select {
   margin: 10px 0 20px;
 }
 
 .pop-up.store .mailing-signup {
   font-size: 14px;
   line-height: 18px;
 }
 
 /* ==========================================================================
    Styles for store pages
    ========================================================================== */
 
 #title {
   padding: 15px 15px 0px;
   margin: 0 auto;
   position: relative;
   width: 930px;
   max-width: 100%;
   clear: left;
 }
 
 #title.narrow, .narrow #title {
   padding: 5px 15px 0px;
   margin: 0 auto;
   position: relative;
   width: 760px;
   clear: left;
 }
 
 #title h1 {
   font-size: 36px;
   line-height: 44px;
   text-transform: none;
 }
 
 #title h2, h3.subtitle {
   font-size: 22px;
   font-weight: 300;
   color: #859398;
 }
 
 .platform-badge {
   padding: 5px 20px;
   border-radius: 20px;
   background: #F3F7FC;
   display: inline-block;
   color: #333 !important;
   margin-bottom: 15px;
 }
 
 .platform-badge img {
   margin: 0 5px 5px 0;
 }
 
 
 /* Styles for license info */
 
 .license-download-link {
   text-decoration: none;
   margin-bottom: 15px;
 }
 
 .license-download-button, .license-download-button:visited {
   color: #fff;
   font-weight: bold;
   background: #2F72C0;
   padding: 15px 30px 15px 45px;
   border-radius: 6px;
   text-decoration: none;
   margin: 0px 0 0px 0;
   float: left;
   clear: both;
   
   background: url('http://rogueamoeba.com/global/images/siteimages/icon-download-small@2x.png') no-repeat 15px 15px, #2F72C0;
   background-size: 16px 20px;
 }
 
 .license-download-button:hover {
   background: #223940;
   background: url('http://rogueamoeba.com/global/images/siteimages/icon-download-small@2x.png') no-repeat 15px 15px, #223940;
   background-size: 16px 20px;
   color: #fff;
 }
 
 .license-download-url {
   font-size: 12px; clear: both; color: #859399; margin: 0 0 15px;
 }
 
 /* addons */
 
 /* Animate-in styles */
 
 #addonArea {
   opacity: 0;
   transition: all 1s 0s;
 }
 
 #addonArea.visible {
   transition: all 1s 0s;
   opacity: 1;
 }
 
 /* Scale Down Offsets */
 #addonArea .addon-container:nth-child(1){
   transform: scale(0.8, 0.8);
   transition: all 0.5s 0.5s;
   opacity: 0;
 }
 
 #addonArea .addon-container:nth-child(2){
   transform: scale(0.8, 0.8);
   transition: all 0.5s 0.7s;
   opacity: 0;
 }
 
 #addonArea .addon-container:nth-child(3){
   transform: scale(0.8, 0.8);
   transition: all 0.5s 0.9s;
   opacity: 0;
 }
 
 #addonArea .addon-container:nth-child(4){
   transform: scale(0.8, 0.8);
   transition: all 0.5s 1.1s;
   opacity: 0;
 }
 
 #addonArea .addon-container:nth-child(5){
   transform: scale(0.8, 0.8);
   transition: all 0.5s 1.3s;
   opacity: 0;
 }
 
 /* Scale Up Offsets*/
 #addonArea.visible .addon-container:nth-child(1){
   transform: scale(1, 1);
   transition: all 0.5s 0.5s;
   opacity: 1;
 }
 
 #addonArea.visible .addon-container:nth-child(2){
   transform: scale(1, 1);
   transition: all 0.5s 0.7s;
   opacity: 1;
 }
 
 #addonArea.visible .addon-container:nth-child(3){
   transform: scale(1, 1);
   transition: all 0.5s 0.9s;
   opacity: 1;
 }
 
 #addonArea.visible .addon-container:nth-child(4){
   transform: scale(1, 1);
   transition: all 0.5s 1.1s;
   opacity: 1;
 }
 
 #addonArea.visible .addon-container:nth-child(5){
   transform: scale(1, 1);
   transition: all 0.5s 1.3s;
   opacity: 1;
 }
 
 #addonArea h2 {
   margin-top: 34px;
   color: #2F72C0;
   font-weight: 700;
 }
 
 .addon-container {
   background: rgba(47, 114, 192, 0.2);
   padding: 20px 30px 15px;
   border-radius: 24px;
   text-align: center;
   margin-bottom: 15px;
   float: left;
   clear: left;
 }
 
 .addon-container .icon-container {
   margin-bottom: 15px;
 }
 
 .addon-container .icon-container .small {
   margin: 10px 0 10px;
 }
 
 .addon-container a {
   color: #2F72C0;
 }
 
 .addon-container a:hover {
   color: #333;
 }
 
 .addon-container a.storeButton, .addon-container a.storeButton:hover {
   color: #fff;
 }
 
 .addon-container a.storeButton {
   margin: 0 0 15px;
   float: left;
   clear: left;
 }
 
 .addon-container a.storeButton .text {
   font-size: 14px;
   font-weight: 300;
 }
 
 .addon-container a.storeButton .price {
   font-size: 18px;
   line-height: 20px;
 }
 
 .addon-container h4 {
   font-size: 18px;
   line-height: 22px;
   margin-bottom: 5px;
 }
 
 .addon-container p {
   font-size: 14px;
   line-height: 18px;
   margin-bottom: 10px;
   font-weight: 300;
 }

/* ==========================================================================
Dark Mode
 ========================================================================== */
 
 @media (prefers-color-scheme: dark) {
   #receipt-box .ammo-modal-content {
     background-color: #f6f6f6;
     color: #222;
   }
   
   #receipt-box .ammo-modal-content p {
      color: #222;
    }
 }
 
 /* ==========================================================================
  Mobile Styles
  ========================================================================== */
 
 @media (max-width: 631px) {
   .pop-up p {
     font-size: 14px;
     line-height: 18px;
   }
   
   .pop-up.store {
     padding: 10px;
   }
   
   .pop-up.store h2 {
     font-size: 20px;
     line-height: 22px;
   }
   
   .pop-up.store .column.label {
     padding-top: 0;
     text-align: left;
   }
   
   .pop-up.store select {
     margin: 0 0 5px;
   }
   
   .pop-up.store input {
     margin: 0;
     padding: 5px 10px;
   }
 }
 
 @media (max-height: 610px) {
   .pop-up .download-icon {
     display: none;
   }
 }
