.card_svg_header {
    display: flex;
    background: var(--card-color);
    border-radius: 20px;
    padding: 10px;
    justify-content: space-between;
    margin: 0 0 10px 0;
    align-items: center;
}

.svg_text_header {
    display: flex;
}

.serviceTopInfo {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
}
.new_card_discount {
  width: fit-content;
  padding: 2px 15px;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
  background: #d54343;
}
.svg_header {
    background: rgb(48 48 48);
    border-radius: 10px;
    padding: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.new_card {
  width: fit-content;
  padding: 2px 15px;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid #4fc2a1;
  font-size: 14px;
  display: flex;
  z-index: 1;
  background: #2aaa85;

  animation: blink 2s infinite;
}
.svg_header svg {
    width: 30px;
    height: 30px;
}

.flex_header_top {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0 10px;
    border-bottom: solid 1px #2a2a2a;
    color: #faa05f;
}

.flex_header_bottom {
    font-size: 14px;
    font-weight: 500;
    color: #6e6e6e;
    margin: 0 0 0 10px;
}

.shop_cards_info {
    text-align: center;
    margin-bottom: 0;
}

.shop_cards_info, .shop_servers_info {
    border: 0px !important;
}

.basket__button {
    display: flex;
    justify-content: center;
    padding: 11px;
    border-radius: 6px;
    transition: .3s;
    gap: 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    background-color: #242424;
    color: #6e6e6e;
}

.basket__button svg {
    width: 17px;
    height: auto;
    fill: #6e6e6e;
    transition: .3s;
}

.product-card-new {
    position: relative;
    display: block;
    box-shadow: rgb(0 0 0 / 12%) 5px 5px 20px;
    border-radius: 15px;
    height: 135px;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 30px; 
}

.product-card-new > div:nth-child(1), .product-card-new > div:nth-child(2) {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 100% 100%; 
}

.product-card-new > div:nth-child(1) {
    background-size: 100% 100%; 
}

.product-card-new > div:nth-child(2) {
    background: rgba(0, 0, 0, 0.3);
    transition: 0.2s;	
}

.product-card-new > div:nth-child(2) > span:nth-child(1), .product-card-new > div:nth-child(2) > span:nth-child(2) {
    line-height: 23px;
    padding: 3px 10px;
    color: #FFF;
    border-radius: 2px;
    position: absolute;
    right: 10px; 
}

.product-card-new > div:nth-child(2) > span:nth-child(1) {
    font-size: 13px;
    background: #fcc46f;
    top: 10px;
    color: #2a2a2a;
    border-radius: 8px; 
}

.product-card-new > div:nth-child(2) > span:nth-child(2) {
    background: #393f52;
    top: 45px;
    border-radius: 7px;
    font-size: 10.5px; 
}

.product-card-new > div:nth-child(2) p {
    position: absolute;
    bottom: -17px;
    width: 100%;
    display: block;
    line-height: 20px;
    font-size: 14px;
    padding: 8px 10px;
    color: #FFF;
    background: rgb(33 37 49 / 72%);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; 
}

.product-card-new:hover > div:nth-child(2) {
    background: rgba(0, 0, 0, 0); 
}

.product-card-new:hover > div:nth-child(2) p {
    overflow: visible;
    white-space: normal; 
}
    
@media (max-width: 991.99px) {
    .product-card-new {
        height: 150px;
    } 
}

.product-block {
    position: relative;
    margin: -30px;
    margin-bottom: 30px;
    border-bottom: 1px solid RGB(227, 228, 232);
    background: linear-gradient(to bottom, #6a9bb1 0%, #60acae 44%, #8ba7c3 100%);
    border-radius: 1px;
    color: #FFF;
    overflow: hidden;
}

.product-block .product-bg {
    position: absolute;
    height: calc( 100% + 20px );
    width: calc( 100% + 20px );
    background-size: 100% auto;
    left: -10px;
    top: -10px;
    filter: blur(4px); 
}

.product-block .product-content {
    position: relative;
    background: rgba(0, 0, 0, 0.45);
    padding: 40px 15px; 
}

.product-block .product-content h2 {
    font-size: 30px;
    display: block;
    width: calc( 100% - 200px );
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; 
}

.product-block .product-content span b {
    line-height: 23px;
    padding: 3px 10px;
    color: RGB(255, 255, 255);
    border-radius: 2px; 
}

.product-block .product-content span .price {
    background: #3fb358;
    margin-right: 10px;
}

.product-block .product-content span .count {
    background: #4196da; 
}

.product-block .product-content button {
    position: absolute;
    right: 15px;
    top: 40px;
    height: 65px;
    width: 190px;
    font-size: 18px;
    background: rgba(65, 150, 218, 0.58); 
}

.buy-product-key-info {
    margin: 15px 0 0 0;
    padding: 15px;
    background: #fbfbfb;
    border: 1px solid #DDD;
    border-radius: 2px; 
}

.buy-product-key-info p:last-child {
    margin: 0; 
}

.basket-item {
    display: flex;
    gap: 9px;
    align-items: center;
    color: #ffffff;
    padding: 6px;
    background: var(--basket-item-bg);
    border-radius: 10px;
}

.basket-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--basket-item-icon);
    width: 35px;
    height: 35px;
    position: relative;
    border-radius: 8px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.basket-info {
    display: grid;
    text-align: initial;
    line-height: 15px;
}

.basket-title {
    font-weight: 600;
    font-size: 10.2px;
    color: #6b7081;
}

.basket-value {
    font-weight: 600;
    font-size: 13px;
}

.btn-basket-open {
    font-size: 11px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 20px;
    background: var(--basket-item-btn);
    color: #fff !important;
    margin: 0px 1px 0px 10px;
    transition: all .3s;
}

.btn-basket-open:hover {
    background: var(--basket-item-btn-hover);
    transition: all .3s;
}

.product-image {
    margin-bottom: 0px;
    height: 220px;
    border-radius: 15px;
    background-size: 155px;
}

.product-info {
    margin-bottom: 0px;
    padding: 11px;
    border-radius: 15px;
    background: var(--block-na-card-all);
    border: 1px solid #494957;
}

.product-info-title {
    display: flex;
    padding: 5px;
    align-items: center;
    background: var(--product-info-title-bg);
    width: 100%;
    gap: 5px;
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-info-title-icon {
    width: 40px;
    border-radius: 9px;
    font-size: 20px;
    color: #898989;
    text-align: center;
    height: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.product-info-title-desc {
    color: #898989;
    position: relative;
    font-size: 11px;
    font-weight: 600;
}

.product-info-title-name {
    font-size: 13px;
    font-weight: 500;
    position: relative;
    color: #ffff;
    margin-bottom: 0;
}

.product-info-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.product-info-item:last-child {
    margin-bottom: 0px;
}

.product-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2b303e;
    border-radius: 8px;
}

.product-info-icon i {
    font-size: 16px;
    color: #f5bf6d;
}

.product-info-text {
    display: grid;
    line-height: 15px;
}

.product-info-text span {
    font-weight: 600;
    font-size: 13px;
    color: #6b7081;
}

.product-info-text b {
    font-size: 14px;
    font-weight: 600;
    color: #b4b4b4;
    font-family: revert;
}

.product-info-text b .text-primary {
    color: #fcc470!important;
}

.product-info-text b i {
    font-size: 12px!important;
}

.product-info-text b a {
    color: #b4b4b4;
    transition: all .3s;
}

.product-info-text b a:hover {
    color: #e7e5e5;
    transition: all .3s;
}

.product-info-actions {
    background: #ffffff00;
    padding: 0px;
    position: relative;
    margin-top: 15px;
    display: flex;
    margin-bottom: 0px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.product-info-price {
    background: #fff0;
    border: solid 1px #393f52;
    border-radius: 10px;
    font-size: 15px;
    padding: 10px 0px;
    text-align: center;
    width: 49%;
    color: #fff;
    font-weight: 550;
    letter-spacing: 1;
}

.product-info-btn {
    background: var(--btn-all-default);
    border-radius: 10px;
    padding: 18px 30px;
    color: #fff;
    cursor: pointer;
    width: 100%;
    text-align: center;
    line-height: 1px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.product-info-btn:hover {
    background: var(--btn-all-default-hover);
    transition: 0.2s;
}

.page-title-name {
    padding: 0px;
    background: #fff0;
    margin-bottom: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column-reverse;
}

.page-title-name img {
    width: 46px;
}

.page-title-name-text {
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-info-desc-scroll {
    overflow: auto;
    height: 400px;
    padding: 0 10px 0 0;
}

.product-info-desc {
    border-radius: 15px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    color: #fff;
    background-color: var(--product-info-bg-color);
}

.select-tarifs-cshop {
    background: #2e323c;
    border-radius: 15px;
    height: 56px;
    margin-bottom: 10px;
    position: relative;
}

.select-tarifs-cshop select {
    padding-right: 25px;
    padding-left: 25px;
    font-size: 16px;
    line-height: 42px;
    opacity: 1;
}

.select-tarifs-cshop select option {
    color: #fff;
    border: 0;
    padding: 10px;
    border-radius: 10px;
    background: #32363e;
}

.select-tarifs-cshop select::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #bbc4e9;
    opacity: .8
}

.select-tarifs-cshop select::placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #bbc4e9;
    opacity: .8
}

.select-tarifs-cshop select {
    width: 100%;
    height: 100%;
    outline: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    font-weight: 500;
    position: relative;
    padding-top: 13px;
    transition: all .2s;
    font-size: 16px
}

.select-tarifs-cshop:after {
    content: "\f078";
    color: #969696;
    width: 20px;
    height: 20px;
    font-size: 12px;
    position: absolute;
    top: 35%;
    right: 10px;
    font-family: 'FontAwesome';
}

.select-tarifs-cshop select+label {
    font-weight: 500;
    font-size: 9px;
    position: absolute;
    top: 10px;
    left: 25px;
    text-transform: uppercase;
    color: rgba(172, 182, 224, .56);
    transition: all .2s
}

.select-tarifs-cshop-btn {
    width: 40px;
    height: 40px;
    background: #2a2d36;
    border-radius: 10px;
    display: block;
    z-index: 99;
    margin: 0px 10px;
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: .3s
}

.select-tarifs-cshop-btn:hover {
    background: #31343e;
    transition: .3s;
}

.select-tarifs-cshop-btn svg {
    width: 20px;
    height: 30px;
    fill: #939393;
}

.cshop-select-title {
    font-size: 14.8px;
    color: #979797;
    padding: 0 5px;
}

.product-item-neww {
    height: 250px;
    border-radius: 15px;
    background: var(--card-color);
    display: flex;
    box-shadow: 0px 5px 10px #13151a0a;
    margin-bottom: 15px;
    flex-wrap: nowrap;
    position: relative;
    flex-direction: row-reverse;
}

.product-item-neww:before {
    background-image: url(../img/pattern.svg);
    content: "";
    height: 189px;
    right: 35px;
    position: absolute;
    top: 10px;
    width: 250px;
}

.product-item-neww-img {
    width: 40%;
    padding: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    background: #fff0;
    border-radius: 15px;
}

.product-item-neww-category {
    font-size: 11px;
    background: #292e3c;
    backdrop-filter: blur(1px);
    border-radius: 50px;
    border: solid 1px #ffffff1a;
    position: absolute;
    margin-top: 5px;
    text-align: center;
    text-overflow: ellipsis;
    width: calc( 40% - 46px );
    overflow: hidden;
    white-space: nowrap;
    line-height: 25px;
    margin-left: 10px;
    color: #fff;
    letter-spacing: 0.5;
}

.product-item-neww-info {
    float: right;
    height: 230px;
    display: flex;
    padding: 20px 20px;
    width: 58%;
    border-radius: 15px 0px 0px 15px;
    flex-direction: column;
    justify-content: space-between;
}

.product-item-neww-title {
    font-size: 18px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #ffff;
    margin-bottom: 15px;
    display: block;
}

.product-item-neww-description {
    font-size: 12px;
    font-weight: 500;
    color: #8d8d8d;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.3em;
    height: 3.9em;
}

.product-item-neww-description span {
    color: #8d8d8d!important;
}

.product-item-neww-btn {
    padding: 11px 44px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: var(--card-unikplugins-btn);
    bottom: -20px;
    position: relative;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    transition: .2s all;
}

.product-item-neww-btn:hover {
    padding: 11px 44px;
    font-size: 14px;
    background: var(--card-unikplugins-btn-hover);
    font-weight: 600;
    border-radius: 10px;
    transition: .2s all;
}

.wrapper_product_button {
    gap: 5px;
}

.product_button {
    border: 1px solid transparent;
    outline: none!important;
    background: var(--span-color)!important;
    transition: all .3s;
}

.product_button:hover {
    outline: none!important;
    background: var(--new-btn-bg-hover)!important;
    border: solid 1px var(--new-btn-border-hover)!important;
    color: var(--new-btn-color-hover)!important;
    transition: all .3s;
}

.product-item-neww-price {
    color: var(--a-href-color);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    bottom: -30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-shop-product-item {
    display: flex;
    flex-direction: column;
    background: #292929;
    border-radius: 20px;
    padding: 15px;
}

.custom-shop-product-image img {
    width: 100%;
    height: 140px;
    border-radius: 15px;
}

.custom-shop-product-title {
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
}

.custom-shop-border {
    border: 1px dashed #373737;
    border-radius: 50px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.custom-shop-product-description {
    font-size: 12px;
    font-weight: 500;
    color: #8d8d8d;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.3em;
    height: 3.9em;
}

.btn-cshop-product-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #303030;
    margin-top: 20px;
    padding: 8px;
    cursor: pointer;
    color: #cfcfcf;
    font-weight: 500;
    border-radius: 13px;
    transition: all .3s;
}

.btn-cshop-product-buy:hover {
    background: #353535;
    color: #fff;
    transition: all .3s;
}

.basket {
    background: var(--basket-bg)!important;
    box-shadow: none!important;
}

.button_basket {
    background: var(--button_basket)!important;
}

.button_basket::after {
    background: var(--button_basket)!important;
}

.circle_basket {
    border: var(--circle_basket-border)!important;
    color: var(--circle_basket-text)!important;
}

.product_wrapper_cart {
    border: 1px solid #474747!important;
}

.product:hover {
    background-color: #3b3b3b!important;
    box-shadow: none!important;
    transition: .3s;
}

.gift_basket {
    background: #303030!important;
    border: 1px solid #484848!important;
}

.gift_basket:focus {
    border: 1px solid #a96e2b;
    color: #fff;
    outline: 0!important;
}

.product-info-desc td {
    padding: 10px;
    border-style: solid!important;
    border-width: revert-layer!important;
}
.shop_product_description {
  display: flex;
  font-size: 14px;
  color: #959393;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 10px;
}
.shop_product_button_info {
  display: flex !important;
  background: #f4ca801a !important;
  color: #f4ca80;
  height: 28px;
  border-radius: 6px;
  padding: 5px 10px;
  border: 1px solid #ffffff05;
  width: max-content;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.no-box-shadow {
    box-shadow: none!important;
}
.new-icons-block {
    display: flex;
    font-size: 14px;
    position: relative;
    border: 1px solid #ffffff05;
    background: #ffffff05;
    padding: 8px;
    align-items: center;
    border-radius: 12px;
    margin-top: 5px;
}

span.nib-icon {
    display: flex;
    border-radius: 25px;
    padding-left: 2px;
    font-size: 20px;
    position: absolute;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

.nib-text {
    margin-left: 25px;
    font-size: 14px;
}
.allicons_overlay {
    position: fixed;
    background: #000000ad;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
    display: none;
}

.sidebar_right {
    position: absolute;
    right: -450px;
    top: 0;
    width: 450px;
    background: #212121;
    height: 100vh;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: right 0.3s ease;
}
.sidebar_right.isShow {
    right: 0;
}
.close_properties_table {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    cursor: pointer;
    transition: all 0.3s;
}
  .secondary_btn {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    height: 41px;
    background: #292929;
    border: 1px solid #ffffff05;
    border-radius: 8px;
    font-weight: 500;
    justify-content: center;
    font-size: 14px;
    line-height: normal;
    color: #fff;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
  }
.sidebar_name {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #989eca;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.nio_img_block {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 10px;
    padding-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.nio_img_flex img {
    width: 100%;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
  	cursor: pointer;
}

.nio_img_flex {
    width: calc(50% - 10px);
  
}
.sidebar_mainname {
    color: #F2A046;
    font-weight: 700;
    font-size: 30px;
}
.sidebar_body {
  max-height: 85%;
  overflow: auto;
  padding 0 5px 0 5px;
}
.fancybox__container {
  z-index: 11000 !important;
}