@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --color-primary: #ff3473;
  --bg-image: url("https://webstore-template-assets.tebex.io/images/page-bg.jpg");
}

body {
  font-weight: 400;
  font-family: "Noto Sans";
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 8px;
}

.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 6px rgb(from var(--btn-color-bg-hover) r g b/0.6);
}

.quantity-field {
  border-radius: 8px;
}

.site-header-inner .info .image {
  border-radius: 5px;
}
.site-header-inner .user-name ul li {
  overflow: hidden;
}
.site-header-inner .user-name ul li:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.site-header-inner .user-name ul li:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.site-sale-banner {
  border-radius: 5px;
}

.site-home-categories .category {
  border-radius: 5px;
  padding: 20px var(--widget-padding);
  background: var(--color-brighter-bg);
  transition: color 0.15s ease-in-out;
}
.site-home-categories .category:hover {
  color: var(--color-primary);
}

.category-description {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-text {
  border-radius: 8px;
  background: #ffffff;
}
.store-text h1,
.store-text h2,
.store-text h3,
.store-text h4,
.store-text h5,
.store-text h6 {
  text-align: center;
}

.store-products-list .store-product,
.store-products-images .store-product {
}

.store-products-images .store-product {
  text-align: center;
}

.widget-title {
  text-align: center;
}

.widget .store-product {
  text-align: center;
}

.no-products {
  color: var(--color-text-secondary);
  background: var(--color-brighter-bg);
  border-radius: 5px;
}

.store-product-full {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-product .quantity-field {
  border-radius: 8px;
  background: #f0f3f6;
}
.store-product .quantity-field input[type=number] {
  border: none;
}

@media (width > 960px) {
  .navigation-horizontal > ul {
    border-radius: 5px;
  }
}
.navigation-horizontal .has-children > ul {
  border-radius: 5px;
}

.widget {
  border-radius: 8px;
  background-color: #ffffff;
}
@media (width <= 960px) {
  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
  }
}

.widget-gift-card .gift-card-input {
  border-radius: 8px;
}

.widget-top-donator .avatar {
  border-radius: 50%;
}

.widget-community-goal .progress,
.widget-goal .progress {
  border-radius: 4px;
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 2px;
}

.popup-content {
  border-radius: 5px;
}

.popup-close {
  border-radius: 0 5px 0 5px;
}

.basket-popup-content,
.basket-popup-content .popup-close {
  border-radius: 0;
}

.basket-items {
  padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding));
}

.basket-item {
  border-radius: 8px;
}
.basket-item .quantity {
  border-radius: 2px;
}

.toast {
  border-radius: 6px;
}

.toast-close {
  border-radius: 2px;
}

.store-category-tiered {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6 {
  text-align: center;
}

.store-product-tiered {
  border-radius: 5px;
  background: rgb(from var(--color-bg) r g b/0.5);
}
.btn-primary{
    transition: 0.2s !important;
    background-color: #ff3473;
}
.btn-primary:hover{
    background-color: #d50e4c !important;
    color: #fff !important;
    transition: 0.2s !important;
    box-shadow: none !important;
}
.btn-primary:focus{
    outline: 4px solid #ff347361 !important;
    background-color: #d50e4c !important;
    color: #fff !important;
    transition: 0.1s !important;
    box-shadow: none !important;
}
.btn-secondary{
    transition: 0.2s !important;
    background-color: #00a6ff;
}
.btn-secondary:hover{
    box-shadow: none !important;
    background-color: #0077b7 !important;
    color: #fff !important;
    transition: 0.2s !important;
}
.btn-gray{
    transition: 0.2s !important;
    background-color: #f0f3f6;
    color: #838e9b !important;
    border: 1px solid #e7ebef;
    font-weight: 400 !important;
}
.btn-gray:hover{
    box-shadow: none !important;
    background-color: #e7ebef !important;
    border: 1px solid #e7ebef;
    color: #838e9b !important;
    transition: 0.2s !important;
}
.btn-gray:focus{
    box-shadow: none !important;
    background-color: #e7ebef !important;
    border: 1px solid #e7ebef;
    color: #838e9b !important;
    transition: 0.2s !important;
}
.btn-gray:active{
    box-shadow: none !important;
    background-color: #e7ebef !important;
    border: 1px solid #e7ebef;
    color: #838e9b !important;
    transition: 0.2s !important;
}
.btn-secondary:focus{
    outline: 4px solid #00a6ff61 !important;
    background-color: #0077b7 !important;
    color: #fff !important;
    transition: 0.1s !important;
    box-shadow: none !important;
}
strong{
    
    color: #1d3053;
    font-weight: 700;
}





