/*Reboot*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *::before, *::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: auto;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.btn, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn:focus, button:focus {
  outline: none;
}

a[href^=tel] {
  color: #000;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  max-width: 100%;
  min-width: 320px;
  font-weight: 400;
  font-size: 1.1vw;
  font-family: "Public Sans", sans-serif;
  overflow-x: hidden;
  background-color: #050505;
  padding-bottom: 50px;
}

.li {
  list-style: none;
}

/* Link animation */
.link_animation {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 0.08em;
  padding-bottom: 5px;
  transition: all 0.5s;
}
.link_animation:hover {
  background-size: 100% 0.07em;
}

/*-----SCROLL ANIMATION------------------------------------------*/
.scroll_animation {
  opacity: 0;
  transform: translateY(15%);
}

.scroll_animation.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateY(0%);
}

.scroll_animation_right {
  opacity: 0;
  transform: translateX(30%);
}

.scroll_animation_right.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateX(0%);
}

.scroll_animation_left {
  opacity: 0;
  transform: translateX(-30%);
}

.scroll_animation_left.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateX(0%);
}

/* HEADER --------------------------------------------------------------- */
.header {
  position: absolute;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  margin: 20px 5%;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.logo-header-container {
  width: 10%;
}
.logo-header-container img {
  width: 100%;
  transition: 0.3s all;
}
.logo-header-container img:hover {
  transform: scale(1.1);
}

.header-nav-list {
  display: flex;
  align-items: center;
  line-height: 0;
  list-style: none;
  gap: 40px;
  font-size: 0.97vw;
}
.header-nav-list li a {
  color: rgba(255, 255, 255, 0.9);
}
.header-nav-list li .active-nav {
  color: #ff0000;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.328);
}
.header-nav-list img {
  width: 24px;
  height: 24px;
  transition: 0.3s all;
}
.header-nav-list img:hover {
  transform: scale(1.5);
  cursor: pointer;
}

.header-buttons {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 740px) {
  .header-buttons {
    flex-direction: column;
  }
}

.login-button {
  font-size: 0.97vw;
  padding: 8px 20px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 640px) {
  .login-button {
    font-size: 30px;
    padding: 16px 60px;
    text-align: center;
  }
}
.login-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: left 0.3s ease-in-out;
  z-index: -1;
}
.login-button:hover {
  color: #000;
}
.login-button:hover::before {
  left: 0;
}

.signup-button {
  font-size: 0.97vw;
  padding: 8px 20px;
  border-radius: 8px;
  color: #FFF;
  background-color: #CE0D0D;
  transition: 0.3s all;
}
.signup-button:hover {
  background-color: white;
  color: #000;
}
@media screen and (max-width: 640px) {
  .signup-button {
    font-size: 30px;
    padding: 16px 60px;
  }
}

/* MAIN ----------------------------------------------------------------- */
.main-intro-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 55vh;
  background-image: url(../images/Main-Background.png);
  background-size: cover;
  background-position: center;
  background-color: #111;
  gap: 20px;
}
.main-intro-block a {
  width: 25%;
}
@media screen and (max-width: 740px) {
  .main-intro-block a {
    width: 50%;
  }
}
.main-intro-block a img {
  width: 100%;
}
.main-intro-block h1 {
  font-size: 2.5vw;
  margin-top: 1em;
  font-weight: 500;
  color: #FFF;
}

.main-content-container {
  width: 90%;
  margin: 0 5%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 100px;
}
.main-content-container .left-content-container {
  width: 66.5%;
}
@media screen and (max-width: 740px) {
  .main-content-container .left-content-container {
    width: 100%;
  }
}
.main-content-container .right-content-container {
  width: 33%;
}
@media screen and (max-width: 740px) {
  .main-content-container .right-content-container {
    width: 100%;
  }
}

.content-title {
  width: 100%;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  font-size: 1.389vw;
  font-weight: 500;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 0;
}

.legion-support-container {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
  border-radius: 16px;
  background: #151515;
  margin-bottom: 30px;
  height: 210px;
}

.div-button {
  display: flex;
  padding: 20px 24px;
  justify-content: space-between;
  color: #FFF;
  text-transform: uppercase;
  border-radius: 8px;
  background: #2D2D2D;
  position: relative;
  overflow: hidden;
  transform: 0.3s all;
}

.div-button p {
  z-index: 2;
}

.div-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-bottom-right-radius: 140px;
  background-color: red;
  transition: width 0.4s ease-in-out;
  z-index: 1;
}

.div-button:hover::before {
  width: 60%;
}

.div-button:hover {
  cursor: pointer;
}

/* Articles & News START */
.articles-news-container {
  background: #151515;
  padding: 10px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  overflow-y: auto;
  height: 1000px;
  gap: 2%;
  overflow-x: hidden;
}

.news-item {
  width: 29%;
  height: 430px;
  box-sizing: border-box;
  margin-bottom: 40px;
  background: #2D2D2D;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.5s all;
}
@media screen and (max-width: 1680px) {
  .news-item {
    height: 400px;
  }
}
@media screen and (max-width: 1440px) {
  .news-item {
    height: 370px;
  }
}
@media screen and (max-width: 740px) {
  .news-item {
    height: 520px;
  }
}
.news-item img {
  width: 100%;
}
.news-item:hover {
  transform: scale(1.04);
}

.under-post-image {
  padding: 16px 20px;
}

.post-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-category {
  color: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.97vw;
  font-weight: 400;
  background: #050505;
}

.post-date {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.97vw;
}

.post-text {
  color: #FFF;
  font-weight: 400;
  line-height: 140%;
  margin-top: 10px;
  font-size: 0.9vw;
  overflow-y: auto;
  height: max-content;
  max-height: 140px;
}
@media screen and (max-width: 740px) {
  .post-text {
    max-height: 190px;
  }
}

.articles-news-container::-webkit-scrollbar {
  width: 5px;
}

.articles-news-container::-webkit-scrollbar-track {
  background-color: #2D2D2D;
}

.articles-news-container::-webkit-scrollbar-thumb {
  background-color: #CE0D0D;
  border-radius: 6px;
}

.articles-news-container::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.post-text::-webkit-scrollbar {
  width: 5px;
}

.post-text::-webkit-scrollbar-track {
  background-color: #2D2D2D;
}

.post-text::-webkit-scrollbar-thumb {
  background-color: #CE0D0D;
  border-radius: 6px;
}

.post-text::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Articles & News END */
/* Twitter Container - START */
.for-padding {
  background: #151515;
  border-radius: 16px;
  padding: 20px 0;
}

.twitter-container {
  background: #151515;
  padding: 10px 30px;
  overflow-y: auto;
  height: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.twitter-container .twit-item .user-info-twit {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.twitter-container .twit-item .user-info-twit .avatar {
  width: 15%;
}
.twitter-container .twit-item .user-info-twit .user-info {
  line-height: 150%;
  width: 75%;
  margin-left: 1%;
}
.twitter-container .twit-item .user-info-twit .user-info .user-name {
  color: #FFF;
}
.twitter-container .twit-item .user-info-twit .user-info .user-company {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 100;
}
.twitter-container .twit-item .user-info-twit .twit-delete {
  width: 5%;
  transition: 0.3s all;
}
.twitter-container .twit-item .user-info-twit .twit-delete:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.twit-text {
  color: #FFF;
  width: 82%;
  margin-left: 18%;
  line-height: 120%;
  font-weight: 400;
  font-size: 1.2vw;
  line-height: 24px;
  margin-top: 8px;
}
.twit-text a {
  color: #4D7CFF;
}

.twit-image {
  width: 82%;
  margin-left: 18%;
  margin-top: 12px;
}

.comment-like-twit {
  width: 82%;
  margin-left: 18%;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}

.comment-like {
  display: flex;
  gap: 21px;
}

.comment {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  gap: 2px;
  font-weight: 100;
}
.comment img {
  width: auto;
}

.like {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  gap: 2px;
  font-weight: 100;
}
.like img {
  width: auto;
}

/* Overflow-Y --- Slider-Style */
.twitter-container::-webkit-scrollbar {
  width: 5px;
}

.twitter-container::-webkit-scrollbar-track {
  background-color: #2D2D2D;
}

.twitter-container::-webkit-scrollbar-thumb {
  background-color: #CE0D0D;
  border-radius: 6px;
}

.twitter-container::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Twitter Container - END */
/* FOOTER ---*/
footer {
  padding: 60px 40px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  width: 90%;
  margin: 0 5%;
  margin-top: 100px;
}
footer .main-footer-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 740px) {
  footer .main-footer-container .foot-spec p {
    font-size: 20px !important;
  }
}
footer .main-footer-container .footer-nav {
  width: auto;
  color: rgba(255, 255, 255, 0.8);
}
footer .main-footer-container .footer-nav .footer-title {
  color: #CE0D0D;
  font-size: 1.15vw;
  text-transform: uppercase;
}
@media screen and (max-width: 740px) {
  footer .main-footer-container .footer-nav .footer-title {
    font-size: 28px !important;
  }
}
footer .main-footer-container .footer-nav p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.97vw;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
}
footer .main-footer-container .footer-nav img {
  width: 150px;
  margin-bottom: 20px;
}
footer .main-footer-container .footer-nav .footer-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .main-footer-container .footer-nav .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* BURGER */
.menu-btn {
  width: 50px;
  height: 40px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 12;
  overflow: hidden;
}
.menu-btn span {
  width: 50px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s;
}
.menu-btn span:nth-of-type(2) {
  top: calc(50% - 12px);
}
.menu-btn span:nth-of-type(3) {
  top: calc(50% + 12px);
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}

.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 15px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.06) 120.71%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.5s;
  z-index: 9;
}
.menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  gap: 30px;
}
.menu ul img {
  width: 20%;
}
.menu li {
  list-style-type: none;
}

.burger-link {
  font-size: 8vw;
  color: #FFF;
}

.menu.active {
  transform: translateX(0);
}

/* LOG-IN page STYLES */
.main-log-in {
  max-width: 1440px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 840px) {
  .main-log-in {
    padding: 0;
  }
}
.main-log-in .left-log-in {
  width: 50%;
}
.main-log-in .left-log-in img {
  width: 85%;
}
@media screen and (max-width: 840px) {
  .main-log-in .left-log-in {
    display: none;
  }
}
@media screen and (max-width: 740px) {
  .main-log-in .left-log-in {
    display: none;
  }
}
.main-log-in .right-log-in {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 840px) {
  .main-log-in .right-log-in {
    height: 100vh;
    width: 100%;
    background-image: url(../assets/log-opacity.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 740px) {
  .main-log-in .right-log-in {
    height: 100vh;
    width: 100%;
    background: linear-gradient(125deg, #250404, rgba(102, 30, 2, 0.6980392157));
  }
}
.main-log-in .right-log-in a {
  color: white;
}
.main-log-in .right-log-in a:hover {
  color: #CE0D0D;
}
@media screen and (max-width: 840px) {
  .main-log-in .right-log-in a {
    font-size: 20px;
  }
}
.main-log-in .right-log-in .return {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 840px) {
  .main-log-in .right-log-in .return {
    padding: 50px 0 0 50px;
  }
}
.main-log-in .right-log-in .main-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.main-log-in .right-log-in .main-form-container h1 {
  color: #FFF;
  font-size: 48px;
}
@media screen and (max-width: 740px) {
  .main-log-in .right-log-in .main-form-container h1 {
    font-size: 36px;
  }
}
.main-log-in .right-log-in .main-form-container .log-form {
  min-width: 420px;
}
@media screen and (max-width: 740px) {
  .main-log-in .right-log-in .main-form-container .log-form {
    min-width: 320px;
  }
}
.main-log-in .right-log-in .main-form-container form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.main-log-in .right-log-in .main-form-container form u {
  margin-left: 8px;
}
@media screen and (max-width: 840px) {
  .main-log-in .right-log-in .main-form-container form u {
    font-size: 16px;
  }
}
.main-log-in .right-log-in .main-form-container form p {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 60px;
  font-size: 16px;
}
@media screen and (max-width: 840px) {
  .main-log-in .right-log-in .main-form-container form p {
    font-size: 14px;
  }
}
.main-log-in .right-log-in .main-form-container form div {
  display: flex;
  gap: 20px;
}
.main-log-in .right-log-in .main-form-container form div input {
  max-width: 200px;
}
@media screen and (max-width: 740px) {
  .main-log-in .right-log-in .main-form-container form div input {
    max-width: 160px;
  }
}
.main-log-in .right-log-in .main-form-container form input {
  padding: 16px 24px;
  margin-top: 20px;
  background-color: #2D2D2D;
  color: #FFF;
  border-radius: 8px;
  max-width: 420px;
}
.main-log-in .right-log-in .main-form-container form input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.main-log-in .right-log-in .main-form-container form .for-eye {
  background-image: url(../images/Eye.svg);
  background-repeat: no-repeat;
  background-position: 96% 50%;
}
.main-log-in .right-log-in .main-form-container form .agree {
  margin-top: 42.5px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 740px) {
  .main-log-in .right-log-in .main-form-container form .agree {
    justify-content: center;
    font-size: 14px;
  }
}
.main-log-in .right-log-in .main-form-container form .agree .mar-log {
  margin-top: 0px;
  font-size: 16px;
}
.main-log-in .right-log-in .main-form-container form .agree input {
  margin-top: auto;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.main-log-in .right-log-in .main-form-container form .agree p {
  color: #FFF;
  font-size: 16px;
  line-height: 0;
}
@media screen and (max-width: 740px) {
  .main-log-in .right-log-in .main-form-container form .agree p {
    font-size: 14px;
  }
}
.main-log-in .right-log-in .main-form-container form .agree p a:hover {
  color: #4D7CFF;
}
.main-log-in .right-log-in .main-form-container form .log-form p {
  text-align: start;
}
.main-log-in .right-log-in .main-form-container form button {
  padding: 16px 24px;
  margin-top: 42.5px;
  background-color: #CE0D0D;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9vw;
  transition: 0.3s all;
}
@media screen and (max-width: 840px) {
  .main-log-in .right-log-in .main-form-container form button {
    font-size: 24px;
  }
}
.main-log-in .right-log-in .main-form-container form button:hover {
  background-color: #AA0E0E;
}
.main-log-in .right-log-in .main-form-container form button:active {
  background-color: #7A0000;
}

.main-intro-product {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 55vh;
  background-image: url(../images/product-bg.png);
  background-size: cover;
  background-position: center;
  background-color: #111;
  gap: 20px;
}
@media screen and (min-width: 1441px) {
  .main-intro-product {
    height: 60vh;
  }
}
@media screen and (max-width: 640px) {
  .main-intro-product {
    height: 100vh;
  }
  .main-intro-product .none {
    display: none;
  }
}
.main-intro-product h1 {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 48px;
}
@media screen and (min-width: 1441px) {
  .main-intro-product h1 {
    font-size: 60px;
  }
}
.main-intro-product h2 {
  text-align: center;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}
@media screen and (min-width: 1441px) {
  .main-intro-product h2 {
    font-size: 28px;
  }
}
.main-intro-product button {
  background-color: #AA0E0E;
  color: white;
  font-size: 24px;
  padding: 12px 30px;
  border-radius: 8px;
  transition: 0.1s all;
}
.main-intro-product button:hover {
  background-color: #CE0D0D;
}
.main-intro-product button:active {
  background-color: #7A0000;
}

.product-section {
  padding: 60px 40px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
  width: 90%;
  margin: 0 5%;
  margin-top: 100px;
  /*display: flex;*/
  justify-content: start;
  gap: 2.5%;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .product-section {
    width: 95%;
    margin: 50px 2.5%;
    height: 600px;
    overflow-y: auto;
  }
}
.product-section .product-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31.3%;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  height: 300px;
  border-radius: 8px;
  font-size: 24px;
  border: 2px solid white;
  background: linear-gradient(90deg, rgba(227, 227, 227, 0.856) 0%, rgba(238, 185, 185, 0.256) 120.71%);
  transition: 0.3s all;
}
.product-section .product-item:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0px 0px 15px white;
}
@media screen and (max-width: 1140px) {
  .product-section .product-item {
    width: 48%;
    height: 250px;
  }
}
@media screen and (max-width: 640px) {
  .product-section .product-item {
    width: 100%;
    height: 200px;
  }
}

.product-section-item {
  padding: 60px 40px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
  width: 90%;
  margin: 0 5%;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .product-section-item {
    width: 95%;
    margin: 50px 2.5%;
    height: 600px;
    overflow-y: auto;
  }
}
.product-section-item .prod-image-block {
  width: 45%;
}
.product-section-item .prod-image-block img {
  width: 100%;
}
.product-section-item .prod-image-info {
  width: 50%;
  color: rgba(255, 255, 255, 0.8);
}
.product-section-item .prod-image-info h1 {
  text-align: center;
  font-size: 36px;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.46);
}
.product-section-item .prod-image-info p:nth-child(2) {
  text-align: center;
  background-color: rgba(206, 13, 13, 0.7803921569);
  width: 30%;
  margin: auto;
  margin-top: 20px;
  padding: 8px 20px;
  border-radius: 24px;
}
.product-section-item .prod-image-info p:nth-child(3) {
  line-height: 130%;
  width: 90%;
  margin: auto;
  margin-top: 20px;
}
.product-section-item .prod-image-info .add-to-cart {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.product-section-item .prod-image-info .add-to-cart p {
  text-align: end;
  width: 90%;
  margin: auto;
  color: #CE0D0D;
  font-size: 28px;
}
.product-section-item .prod-image-info .add-to-cart p span {
  color: white;
}
.product-section-item .prod-image-info .add-to-cart button {
  width: 25%;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  background-color: #AA0E0E;
  transition: 0.2s all;
  font-size: 18px;
}
.product-section-item .prod-image-info .add-to-cart button:hover {
  background-color: #CE0D0D;
}
.product-section-item .prod-image-info .add-to-cart button:active {
  background-color: #7A0000;
}

.main-intro-careers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 55vh;
  background-image: url(../images/careers-bg.png);
  background-size: cover;
  background-position: center;
  background-color: #111;
  gap: 20px;
}
@media screen and (min-width: 1441px) {
  .main-intro-careers {
    height: 60vh;
  }
}
@media screen and (max-width: 640px) {
  .main-intro-careers {
    height: 100vh;
  }
}
.main-intro-careers h1 {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 48px;
}
@media screen and (min-width: 1441px) {
  .main-intro-careers h1 {
    font-size: 60px;
  }
}
.main-intro-careers h2 {
  text-align: center;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}
@media screen and (min-width: 1441px) {
  .main-intro-careers h2 {
    font-size: 28px;
  }
}

.content-title-careers {
  width: 90%;
  margin: 0 5%;
  color: #FFF;
  font-size: 20px;
  margin-top: 120px;
  font-weight: 500;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
  padding: 20px 0 0 150px;
}
@media screen and (max-width: 850px) {
  .content-title-careers {
    font-size: 20px;
    width: 95%;
    line-height: 120%;
    margin: 50px 2.5%;
    padding: 15px;
    font-weight: 300;
    text-align: center;
    height: auto;
  }
}

.careers-section {
  padding: 30px;
  border-radius: 16px;
  background-color: #151515;
  width: 90%;
  margin: 0 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 90vh;
  overflow-y: auto;
}
@media screen and (max-width: 640px) {
  .careers-section {
    width: 95%;
    margin: 50px 2.5%;
  }
}
.careers-section .careers-item {
  background: #2D2D2D;
  padding: 40px;
  width: 100%;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  height: max-content;
}
@media screen and (max-width: 700px) {
  .careers-section .careers-item {
    flex-direction: column;
  }
}
.careers-section .careers-item .left-carrer-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF;
  gap: 19px;
  width: 50%;
}
@media screen and (max-width: 700px) {
  .careers-section .careers-item .left-carrer-item {
    width: 100%;
  }
}
.careers-section .careers-item .left-carrer-item h3 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: lighter;
  color: var(--White-80, rgba(255, 255, 255, 0.8));
}
.careers-section .careers-item .left-carrer-item h4 {
  font-size: 24px;
}
.careers-section .careers-item .left-carrer-item .hashtags {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 800px) {
  .careers-section .careers-item .left-carrer-item .hashtags {
    flex-direction: column;
  }
}
.careers-section .careers-item .left-carrer-item .hashtags p {
  font-size: 14px;
  padding: 10px 16px;
  transition: 0.3s all;
  border-radius: 100px;
  background: var(--Gradient, linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%));
}
.careers-section .careers-item .left-carrer-item .hashtags p:hover {
  background: var(--Gradient, linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.16) 120.71%));
  cursor: pointer;
}
.careers-section .careers-item .left-carrer-item p {
  color: var(--White-80, rgba(255, 255, 255, 0.8));
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
}
.careers-section .careers-item .right-carrer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 700px) {
  .careers-section .careers-item .right-carrer-item {
    margin-top: 40px;
  }
}
.careers-section .careers-item .right-carrer-item p {
  color: #FFF;
  font-size: 24px;
}
.careers-section .careers-item .right-carrer-item div {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  padding: 8px 16px;
  background: var(--Black-dark, #050505);
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  .careers-section .careers-item .right-carrer-item div {
    gap: 25px;
  }
}
.careers-section .careers-item .right-carrer-item div:hover {
  background: rgb(85, 5, 5);
  cursor: pointer;
}
.careers-section .careers-item .right-carrer-item div img {
  width: 24px;
}
.careers-section .careers-item .right-carrer-item div p {
  font-size: 14px;
}

/* Overflow-Y --- Slider-Style */
.careers-section::-webkit-scrollbar {
  width: 5px;
}

.careers-section::-webkit-scrollbar-track {
  background-color: #2D2D2D;
  margin: 20px 0;
}

.careers-section::-webkit-scrollbar-thumb {
  background-color: #CE0D0D;
  border-radius: 6px;
}

.careers-section::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Twitter Container - END */
.main-intro-support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 55vh;
  background-image: url(../images/support-bg.png);
  background-size: cover;
  background-position: 78%;
  background-color: #111;
  gap: 20px;
}
@media screen and (min-width: 1441px) {
  .main-intro-support {
    height: 60vh;
  }
}
@media screen and (max-width: 640px) {
  .main-intro-support {
    height: 100vh;
  }
}
.main-intro-support h1 {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 48px;
}
@media screen and (min-width: 1441px) {
  .main-intro-support h1 {
    font-size: 60px;
  }
}
.main-intro-support h2 {
  text-align: center;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}
@media screen and (min-width: 1441px) {
  .main-intro-support h2 {
    font-size: 28px;
  }
}

.main-content-support {
  width: 90%;
  margin: 0 5%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 100px;
}
@media screen and (max-width: 750px) {
  .main-content-support {
    flex-direction: column;
  }
}
.main-content-support .left-content-container {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .main-content-support .left-content-container {
    width: 100%;
  }
}
.main-content-support .left-content-container .create-ticket {
  background: #151515;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  overflow-y: auto;
  height: 700px;
  overflow-x: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 1200px) {
  .main-content-support .left-content-container .create-ticket {
    height: 600px;
  }
}
@media screen and (max-width: 1000px) {
  .main-content-support .left-content-container .create-ticket {
    height: 500px;
  }
}
.main-content-support .left-content-container .create-ticket form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.main-content-support .left-content-container .create-ticket form label {
  color: rgba(255, 255, 255, 0.9);
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
}
.main-content-support .left-content-container .create-ticket form input {
  padding: 16px 24px;
  border-radius: 8px;
  background: var(--Black-light, #2D2D2D);
  color: white;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .main-content-support .left-content-container .create-ticket form input {
    font-size: 12px;
  }
}
.main-content-support .left-content-container .create-ticket form textarea {
  padding: 16px 24px;
  border-radius: 8px;
  background: var(--Black-light, #2D2D2D);
  color: white;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .main-content-support .left-content-container .create-ticket form textarea {
    font-size: 12px;
    max-height: 180px;
  }
}
@media screen and (max-width: 1000px) {
  .main-content-support .left-content-container .create-ticket form textarea {
    font-size: 12px;
    max-height: 160px;
  }
}
.main-content-support .left-content-container .create-ticket form button {
  color: rgba(255, 255, 255, 0.9);
  width: 320px;
  padding: 16px 24px;
  border-radius: 8px;
  background: #CE0D0D;
  margin: auto;
  margin-top: 60px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .main-content-support .left-content-container .create-ticket form button {
    width: 100%;
  }
}
.main-content-support .left-content-container .create-ticket form button:hover {
  background: rgba(242, 19, 19, 0.5960784314);
}
.main-content-support .right-content-container {
  width: 39.5%;
}
@media screen and (max-width: 740px) {
  .main-content-support .right-content-container {
    width: 100%;
  }
}
.main-content-support .right-content-container .tickets {
  background: #151515;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 700px;
  overflow-x: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 1200px) {
  .main-content-support .right-content-container .tickets {
    height: 600px;
  }
}
@media screen and (max-width: 1000px) {
  .main-content-support .right-content-container .tickets {
    height: 500px;
  }
}
.main-content-support .right-content-container .tickets .ticket-item {
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  background: var(--Black-light, #2D2D2D);
  padding: 20px 24px;
  margin-bottom: 10px;
}
.main-content-support .right-content-container .tickets .ticket-item .ticket-item-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
}
.main-content-support .right-content-container .tickets .ticket-item .ticket-item-left p {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .main-content-support .right-content-container .tickets .ticket-item .ticket-item-left p {
    font-size: 12px;
  }
}
@media screen and (max-width: 740px) {
  .main-content-support .right-content-container .tickets .ticket-item .ticket-item-left p {
    font-size: 16px;
  }
}
.main-content-support .right-content-container .tickets .ticket-item .ticket-item-left p:nth-child(2) {
  margin-top: 24px;
  color: var(--White-80, rgba(255, 255, 255, 0.8));
}
.main-content-support .right-content-container .tickets .ticket-item .ticket-item-left p:nth-child(3) {
  margin-top: 8px;
  color: var(--White-80, rgba(255, 255, 255, 0.8));
}
.main-content-support .right-content-container .tickets .ticket-item svg {
  cursor: pointer;
  transition: 0.3s all;
}
.main-content-support .right-content-container .tickets .ticket-item svg:hover {
  transform: rotate(45deg) scale(1.6);
}

/* Overflow-Y --- Slider-Style */
.create-ticket::-webkit-scrollbar {
  width: 5px;
}

.create-ticket::-webkit-scrollbar-track {
  background-color: #2D2D2D;
  margin: 20px 0;
}

.create-ticket::-webkit-scrollbar-thumb {
  background-color: #CE0D0D;
  border-radius: 6px;
}

.create-ticket::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.tickets::-webkit-scrollbar {
  width: 5px;
}

.tickets::-webkit-scrollbar-track {
  background-color: #2D2D2D;
  margin: 20px 0;
}

.tickets::-webkit-scrollbar-thumb {
  background-color: #CE0D0D;
  border-radius: 6px;
}

.tickets::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Twitter Container - END */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 30px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-image: url(../images/Checkbox-2.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.container:hover input ~ .checkmark {
  background-image: url(../images/Checkbox-2.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.container input:checked ~ .checkmark {
  background-image: url(../images/Checkbox-1.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.main-content-support-ticket {
  margin-top: 40px;
}
.main-content-support-ticket .ticket-return {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 5%;
  display: flex;
  gap: 10px;
  font-size: 16px;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-return {
    font-size: 24px;
  }
}
.main-content-support-ticket .ticket-return svg {
  width: 2%;
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-return svg {
    width: 5%;
  }
}
.main-content-support-ticket .content-title-ticket {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  border-radius: 16px;
  margin: 0 5%;
  margin-top: 40px;
  padding: 20px 0;
  background: var(--Gradient, linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%));
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .content-title-ticket {
    font-size: 24px;
  }
}
.main-content-support-ticket .ticket-information-body {
  padding: 30px 30px 60px;
  margin: 0 5%;
  border-radius: 16px;
  background: var(--Black-middle, #151515);
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body {
    padding: 15px 15px 40px;
  }
}
.main-content-support-ticket .ticket-information-body .ticket-message {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: rgba(255, 255, 255, 0.8);
  padding: 32px;
  border-radius: 16px;
  background: var(--Black-light, #2D2D2D);
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body .ticket-message {
    margin-bottom: 30px;
    padding: 16px;
  }
}
.main-content-support-ticket .ticket-information-body .ticket-message .ticket-user-date {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body .ticket-message .ticket-user-date {
    justify-content: space-between;
  }
}
.main-content-support-ticket .ticket-information-body .ticket-message .ticket-user-date p:nth-child(1) {
  font-size: 24px;
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body .ticket-message .ticket-user-date p:nth-child(1) {
    font-size: 24px;
  }
}
.main-content-support-ticket .ticket-information-body .ticket-message .ticket-user-date p:nth-child(2) {
  font-size: 14px;
  padding: 8px 16px;
  display: flex;
  gap: 5px;
  border-radius: 100px;
  background: var(--Gradient, linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%));
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body .ticket-message .ticket-user-date p:nth-child(2) {
    font-size: 18px;
  }
}
.main-content-support-ticket .ticket-information-body .ticket-message p {
  color: var(--White-80, rgba(255, 255, 255, 0.8));
  font-size: 16px;
  line-height: normal;
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body .ticket-message p {
    font-size: 18px;
    margin-top: 10px;
  }
}
.main-content-support-ticket .ticket-information-body .your-response-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
.main-content-support-ticket .ticket-information-body .your-response-body h4 {
  color: white;
  width: 50%;
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body .your-response-body h4 {
    font-size: 24px;
    width: 100%;
  }
}
.main-content-support-ticket .ticket-information-body .your-response-body textarea {
  width: 50%;
  color: white;
  font-size: 16px;
  margin-top: 16px;
  border-radius: 8px;
  background: var(--Black-light, #2D2D2D);
  padding: 16px 24px;
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body .your-response-body textarea {
    margin-top: 32px;
    font-size: 18px;
    width: 100%;
    max-height: 200px;
  }
}
.main-content-support-ticket .ticket-information-body .your-response-body button {
  width: 25%;
  padding: 16px 24px;
  margin-top: 30px;
  border-radius: 8px;
  font-size: 16px;
  background: var(--Red, #CE0D0D);
  color: white;
}
.main-content-support-ticket .ticket-information-body .your-response-body button:hover {
  background: var(--Red, #AA0E0E);
}
.main-content-support-ticket .ticket-information-body .your-response-body button:active {
  background: var(--Red, #7A0000);
}
@media screen and (max-width: 640px) {
  .main-content-support-ticket .ticket-information-body .your-response-body button {
    font-size: 22px;
    width: 100%;
  }
}

.about-section {
  padding: 60px 40px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
  width: 90%;
  margin: 0 5%;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-section p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 130%;
}
@media screen and (max-width: 640px) {
  .about-section {
    width: 95%;
    margin: 50px 2.5%;
    height: 600px;
    overflow-y: auto;
  }
}

.main-intro-product-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  background-image: url(../images/header_bg.png);
  background-size: cover;
  background-position: center;
  background-color: #111;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .main-intro-product-2 {
    height: 60vh;
  }
}
@media screen and (max-width: 640px) {
  .main-intro-product-2 {
    height: 100vh;
  }
  .main-intro-product-2 .none {
    display: none;
  }
}
.main-intro-product-2 h1 {
  text-align: center;
  color: white;
  font-size: 48px;
  font-weight: bold;
  margin-top: 50px;
}
@media screen and (min-width: 1441px) {
  .main-intro-product-2 h1 {
    font-size: 60px;
  }
}
.main-intro-product-2 h2 {
  text-align: center;
  line-height: 150%;
  color: white;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 1441px) {
  .main-intro-product-2 h2 {
    font-size: 28px;
  }
}
.main-intro-product-2 button {
  background-image: url(../images/button.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font-size: 24px;
  padding: 24px 32px;
  border-radius: 8px;
  transition: 0.3s all;
}
.main-intro-product-2 button:hover {
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.82);
  filter: brightness(1.75);
}

.theme-one-store {
  width: 90%;
  margin: 0 5%;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .theme-one-store {
    width: 95%;
    margin: 50px 2.5%;
    height: auto;
    flex-direction: column;
  }
}
.theme-one-store .store-left {
  width: 74%;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left {
    width: 100%;
  }
}
.theme-one-store .store-left .category-container {
  display: flex;
  justify-content: space-around;
  padding: 12px 12px;
  border-radius: 16px;
  background: var(--Gradient, linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 120.71%));
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  gap: 20px;
  height: 78px;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .category-container {
    flex-direction: column;
    height: auto;
  }
}
.theme-one-store .store-left .category-container .category-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 6px 20px;
  border-radius: 16px;
  gap: 20px;
  color: white;
  box-sizing: border-box;
  width: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .category-container .category-item {
    width: 100%;
    font-size: 20px;
  }
}
.theme-one-store .store-left .category-container .category-item:hover {
  background-color: rgba(255, 255, 255, 0.35);
}
.theme-one-store .store-left .category-container .category-item img {
  width: 40px;
}
.theme-one-store .store-left .category-container .active-item {
  background-color: rgba(255, 255, 255, 0.35);
}
.theme-one-store .store-left .items-container-search {
  padding: 40px 40px;
  border-radius: 16px;
  background: var(--Black-middle, #151515);
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1439px) {
  .theme-one-store .store-left .items-container-search {
    height: 450px;
    padding: 30px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-one-store .store-left .items-container-search {
    padding: 20px;
    height: 375px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search {
    height: auto;
  }
}
.theme-one-store .store-left .items-container-search .search-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1439px) {
  .theme-one-store .store-left .items-container-search .search-line {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .search-line {
    margin-top: 0px;
  }
}
.theme-one-store .store-left .items-container-search .search-line p {
  color: white;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .search-line p {
    font-size: 22px;
  }
}
.theme-one-store .store-left .items-container-search .search-line form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 25%;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .search-line form {
    width: 65%;
  }
}
.theme-one-store .store-left .items-container-search .search-line form button {
  padding: 2px 6px;
  background-color: #AA0E0E;
  width: 15%;
}
.theme-one-store .store-left .items-container-search .search-line form button:hover {
  background-color: #CE0D0D;
}
.theme-one-store .store-left .items-container-search .search-line form button img {
  width: 100%;
}
.theme-one-store .store-left .items-container-search .search-line form input {
  width: 85%;
  padding: 6px 12px;
  background: rgba(205, 205, 205, 0.05);
  color: white;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .search-line form input {
    font-size: 22px;
  }
}
.theme-one-store .store-left .items-container-search .store-items {
  display: flex;
  justify-content: space-around;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 16px;
  gap: 1%;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .store-items {
    flex-direction: column;
  }
}
.theme-one-store .store-left .items-container-search .store-items .store-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px 20px;
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 32%;
  cursor: pointer;
  transition: 0.3s all;
}
@media screen and (max-width: 1439px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.theme-one-store .store-left .items-container-search .store-items .store-item:hover {
  transform: scale(1.01);
  background-color: rgba(255, 255, 255, 0.25);
}
.theme-one-store .store-left .items-container-search .store-items .store-item img {
  width: 25%;
  background-color: grey;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item img {
    width: 50%;
  }
}
.theme-one-store .store-left .items-container-search .store-items .store-item h3 {
  margin: 20px 0;
  text-shadow: 0 0 15px rgb(255, 255, 255);
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item h3 {
    font-size: 22px;
  }
}
.theme-one-store .store-left .items-container-search .store-items .store-item p {
  font-size: 18px;
  text-align: center;
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 1439px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item p {
    font-size: 14px;
    width: 80%;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item p {
    font-size: 18px;
    line-height: 150%;
  }
}
.theme-one-store .store-left .items-container-search .store-items .store-item .add-butt {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item .add-butt {
    padding: 0px;
    border-radius: 8px;
  }
}
.theme-one-store .store-left .items-container-search .store-items .store-item .add-butt p {
  width: 40%;
}
@media screen and (max-width: 1439px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item .add-butt p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item .add-butt p {
    width: 30%;
    font-size: 14px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item .add-butt p {
    font-size: 20px;
  }
}
.theme-one-store .store-left .items-container-search .store-items .store-item .add-butt button {
  width: 50%;
  padding: 5px 0px;
  color: #FFF;
  background: rgba(31, 28, 28, 0.5);
  position: relative;
  overflow: hidden;
  transform: 0.3s all;
  font-size: 16px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 1439px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item .add-butt button {
    font-size: 12px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item .add-butt button {
    font-size: 10px;
    width: 65%;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-one-store .store-left .items-container-search .store-items .store-item .add-butt button {
    font-size: 20px;
    padding: 10px 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
.theme-one-store .store-left .items-container-search .store-items .store-item .add-butt button:nth-child(3) {
  padding: 10px 0px;
}
.theme-one-store .store-left .items-container-search .store-items .store-item .add-butt button p {
  z-index: 99;
  color: #FFF;
}
.theme-one-store .store-left .items-container-search .store-items .store-item .add-butt button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgb(255, 0, 0);
  transition: width 0.4s ease-in-out;
  z-index: -2;
}
.theme-one-store .store-left .items-container-search .store-items .store-item .add-butt button:hover::before {
  width: 100%;
}
.theme-one-store .store-right {
  display: flex;
  flex-direction: column;
  width: 25%;
}
@media screen and (max-width: 640px) {
  .theme-one-store .store-right {
    width: 100%;
  }
}
.theme-one-store .store-right h3 {
  padding: 12px 12px;
  border-radius: 16px;
  background: var(--Gradient, linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 120.71%));
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 32px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.theme-one-store .store-right .cart-container {
  padding: 40px 40px;
  border-radius: 16px;
  background: var(--Black-middle, #151515);
  min-height: 500px;
}
@media screen and (max-width: 1439px) {
  .theme-one-store .store-right .cart-container {
    min-height: 450px;
    padding: 30px 30px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-one-store .store-right .cart-container {
    padding: 20px 20px;
    min-height: 375px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-one-store .store-right .cart-container {
    height: auto;
  }
}
.theme-one-store .store-right .cart-container .input-cart {
  width: 100%;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.theme-one-store .store-right .cart-container .input-cart img {
  width: 15%;
  padding: 5px;
  background-color: #AA0E0E;
}
@media screen and (max-width: 1100px) {
  .theme-one-store .store-right .cart-container .input-cart img {
    width: 20%;
  }
}
.theme-one-store .store-right .cart-container .input-cart input {
  width: 85%;
  padding: 10px 18px;
  background: rgba(205, 205, 205, 0.05);
  color: white;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .theme-one-store .store-right .cart-container .input-cart input {
    font-size: 12px;
    width: 80%;
  }
}
@media screen and (max-width: 1100px) and (max-width: 640px) {
  .theme-one-store .store-right .cart-container .input-cart input {
    font-size: 18px;
  }
}
.theme-one-store .store-right .cart-container .total-card {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 20px;
  color: white;
}
.theme-one-store .store-right .cart-container .total-card p:nth-child(1) {
  width: 75%;
  padding: 10px 18px;
  background: rgba(205, 205, 205, 0.05);
}
@media screen and (max-width: 1100px) {
  .theme-one-store .store-right .cart-container .total-card p:nth-child(1) {
    font-size: 20px;
  }
}
.theme-one-store .store-right .cart-container .total-card p:nth-child(2) {
  width: 25%;
  padding: 10px 0px;
  background-color: #555;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .theme-one-store .store-right .cart-container .total-card p:nth-child(2) {
    font-size: 20px;
  }
}
.theme-one-store .store-right .cart-container button {
  width: 100%;
  margin-top: 20px;
  padding: 5px 0px;
  color: #FFF;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  transform: 0.3s all;
  font-size: 22px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 1439px) {
  .theme-one-store .store-right .cart-container button {
    font-size: 18px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-one-store .store-right .cart-container button {
    font-size: 14px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 1100px) {
  .theme-one-store .store-right .cart-container button {
    font-size: 20px;
  }
}
.theme-one-store .store-right .cart-container button:nth-child(3) {
  padding: 10px 0px;
}
.theme-one-store .store-right .cart-container button p {
  z-index: 99;
  color: #FFF;
}
.theme-one-store .store-right .cart-container button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgb(255, 0, 0);
  transition: width 0.4s ease-in-out;
  z-index: -2;
}
.theme-one-store .store-right .cart-container button:hover::before {
  width: 100%;
}
.theme-one-store .store-right .cart-container hr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin: 20px 0 10px;
}

#logo-f {
  display: none;
}

.theme-second-store {
  width: 90%;
  margin: 0 5%;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .theme-second-store {
    width: 95%;
    margin: 50px 2.5%;
    height: auto;
    flex-direction: column;
  }
}
.theme-second-store .store-left {
  width: 74%;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left {
    width: 100%;
  }
}
.theme-second-store .store-left .category-container {
  display: flex;
  justify-content: space-around;
  padding: 16px;
  background: linear-gradient(45deg, #092849, rgba(54, 186, 212, 0.23));
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  gap: 20px;
  height: 85px;
  border: 1px solid #06213f;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .category-container {
    flex-direction: column;
    height: auto;
  }
}
.theme-second-store .store-left .category-container .category-item {
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #092849, rgba(39, 40, 40, 0.63));
  padding: 20px;
  gap: 20px;
  color: white;
  box-sizing: border-box;
  width: 50%;
  border: 1px solid #06213f;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .category-container .category-item {
    width: 100%;
    font-size: 20px;
    padding: 10px;
  }
}
.theme-second-store .store-left .category-container .category-item:hover {
  background: linear-gradient(45deg, #092849, rgb(36, 158, 183));
}
.theme-second-store .store-left .category-container .category-item img {
  width: 40px;
}
.theme-second-store .store-left .category-container .active-item {
  background: linear-gradient(45deg, #092849, rgb(36, 158, 183));
}
.theme-second-store .store-left .search-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1439px) {
  .theme-second-store .store-left .search-line {
    margin-top: 10px;
  }
}
.theme-second-store .store-left .search-line p {
  color: white;
  font-weight: bold;
  font-size: 32px;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .search-line p {
    font-size: 22px;
  }
}
.theme-second-store .store-left .search-line form {
  display: flex;
  border: 1px solid #064e9a;
  width: 25%;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .search-line form {
    width: 65%;
  }
}
.theme-second-store .store-left .search-line form button {
  padding: 2px 6px;
  background-color: #092542;
  border-right: 1px solid #064e9a;
  width: 15%;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .search-line form button {
    width: 20%;
  }
}
.theme-second-store .store-left .search-line form button:hover {
  background-color: #0d3662;
}
.theme-second-store .store-left .search-line form button img {
  width: 100%;
}
.theme-second-store .store-left .search-line form input {
  width: 85%;
  padding: 14px 20px;
  background: linear-gradient(45deg, #092849, rgba(54, 186, 212, 0.23));
  color: white;
  font-size: 16px;
  border: 1px solid transparent;
  filter: brightness(1.75);
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .search-line form input {
    font-size: 16px;
    width: 80%;
  }
}
.theme-second-store .store-left .search-line form input::placeholder {
  color: #5cc0e8;
}
.theme-second-store .store-left .search-line form input:focus {
  border: 1px solid #5cc0e8;
}
.theme-second-store .store-left .items-container-search .store-items {
  display: flex;
  justify-content: space-around;
  background: linear-gradient(45deg, #092849, rgba(54, 186, 212, 0.23));
  padding: 20px;
  gap: 1%;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .items-container-search .store-items {
    flex-direction: column;
  }
}
.theme-second-store .store-left .items-container-search .store-items .store-item {
  background: linear-gradient(45deg, #092849, rgba(54, 186, 212, 0.23));
  padding: 30px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 32%;
  cursor: pointer;
  transition: 0.3s all;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.theme-second-store .store-left .items-container-search .store-items .store-item:hover {
  transform: scale(1.01);
  background: linear-gradient(45deg, #092849, rgba(54, 186, 212, 0.33));
}
.theme-second-store .store-left .items-container-search .store-items .store-item img {
  width: 25%;
  background-color: #092542;
  border: 1px solid #151515;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item img {
    width: 50%;
  }
}
.theme-second-store .store-left .items-container-search .store-items .store-item h3 {
  margin: 20px 0;
  text-shadow: 0 0 15px rgb(255, 255, 255);
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item h3 {
    font-size: 22px;
  }
}
.theme-second-store .store-left .items-container-search .store-items .store-item p {
  font-size: 18px;
  text-align: center;
  width: 80%;
  margin: auto;
  line-height: 130%;
  color: #5cc0e8;
}
@media screen and (max-width: 1439px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item p {
    font-size: 14px;
    width: 80%;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item p {
    font-size: 18px;
    line-height: 150%;
  }
}
.theme-second-store .store-left .items-container-search .store-items .store-item .add-butt {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item .add-butt {
    padding: 0px;
    border-radius: 8px;
  }
}
.theme-second-store .store-left .items-container-search .store-items .store-item .add-butt p {
  width: 40%;
  background: linear-gradient(45deg, #092849, rgba(54, 186, 212, 0.23));
  padding: 7px 0;
  border: 2px solid rgba(8, 87, 103, 0.4784313725);
  font-size: 1.03vw;
}
@media screen and (max-width: 1439px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item .add-butt p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item .add-butt p {
    width: 30%;
    font-size: 14px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item .add-butt p {
    font-size: 20px;
  }
}
.theme-second-store .store-left .items-container-search .store-items .store-item .add-butt button {
  width: 55%;
  background: linear-gradient(45deg, rgba(0, 140, 255, 0.4), rgba(7, 71, 123, 0.8));
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  transition: 0.3s all;
  font-size: 1.03vw;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 1439px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item .add-butt button {
    font-size: 12px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item .add-butt button {
    font-size: 10px;
    width: 65%;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-second-store .store-left .items-container-search .store-items .store-item .add-butt button {
    font-size: 20px;
    padding: 10px 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
.theme-second-store .store-left .items-container-search .store-items .store-item .add-butt button:hover {
  box-shadow: 0 0 15px white;
}
.theme-second-store .store-left .items-container-search .store-items .store-item .add-butt button p {
  z-index: 99;
  color: #FFF;
}
.theme-second-store .store-left .items-container-search .store-items .store-item .add-butt button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, rgb(0, 0, 0), rgb(4, 122, 219));
  transition: width 0.4s ease-in-out;
  z-index: -2;
}
.theme-second-store .store-left .items-container-search .store-items .store-item .add-butt button:hover::before {
  width: 100%;
}
.theme-second-store .store-right {
  display: flex;
  flex-direction: column;
  width: 25%;
  background: linear-gradient(45deg, #092849, rgba(54, 186, 212, 0.23));
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-right {
    width: 100%;
  }
}
.theme-second-store .store-right h3 {
  padding: 12px 12px;
  border: 1px solid #06213f;
  color: white;
  font-size: 32px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.theme-second-store .store-right .cart-container {
  border: 1px solid #06213f;
  min-height: 500px;
  padding: 35px;
}
@media screen and (max-width: 1439px) {
  .theme-second-store .store-right .cart-container {
    min-height: 450px;
    padding: 30px 30px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) {
  .theme-second-store .store-right .cart-container {
    padding: 20px 20px;
    min-height: 375px;
  }
}
@media screen and (max-width: 1439px) and (max-width: 1100px) and (max-width: 640px) {
  .theme-second-store .store-right .cart-container {
    height: auto;
  }
}
.theme-second-store .store-right .cart-container .input-cart {
  width: 100%;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.theme-second-store .store-right .cart-container .input-cart img {
  width: 15%;
  padding: 5px;
  background: linear-gradient(45deg, #092849, rgba(54, 186, 212, 0.23));
}
.theme-second-store .store-right .cart-container .input-cart input {
  width: 85%;
  padding: 10px 18px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.4), rgba(45, 131, 202, 0.4));
  color: white;
  font-size: 16px;
}
.theme-second-store .store-right .cart-container .input-cart input::placeholder {
  color: rgba(255, 255, 255, 0.698);
}
.theme-second-store .store-right .cart-container .total-card {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 20px;
  color: white;
}
.theme-second-store .store-right .cart-container .total-card p:nth-child(1) {
  width: 75%;
  padding: 10px;
  background: linear-gradient(45deg, #092542, rgba(9, 119, 141, 0.9019607843));
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-right .cart-container .total-card p:nth-child(1) {
    font-size: 20px;
  }
}
.theme-second-store .store-right .cart-container .total-card p:nth-child(2) {
  padding: 10px;
  width: 25%;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 640px) {
  .theme-second-store .store-right .cart-container .total-card p:nth-child(2) {
    font-size: 20px;
  }
}
.theme-second-store .store-right .cart-container button {
  width: 100%;
  margin-top: 20px;
  padding: 5px 0px;
  color: #FFF;
  background: linear-gradient(45deg, rgba(0, 140, 255, 0.4), rgba(255, 255, 255, 0.4));
  position: relative;
  overflow: hidden;
  transform: 0.3s all;
  font-size: 22px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.theme-second-store .store-right .cart-container button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.4), rgba(6, 81, 143, 0.746));
  transition: left 0.5s ease-in-out;
  z-index: -1;
}
.theme-second-store .store-right .cart-container button:hover::before {
  left: 0;
}
.theme-second-store .store-right .cart-container button:hover {
  z-index: 2;
  color: white;
  text-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 3px;
  transition: 0.8s all;
  box-shadow: 0px 1px 5px #5CC0E8;
}
.theme-second-store .store-right .cart-container button:nth-child(3) {
  padding: 10px 0px;
}
.theme-second-store .store-right .cart-container hr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin: 20px 0 10px;
}

#storeHeaderThemeSecond {
  display: none;
}

#themeStoreSecond {
  display: none;
}
