html {
  box-sizing: border-box;
}

html{
}

*,
*::after,
*::before{

}

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

body {
  box-sizing: border-box;
  margin: 0;
  background: #000000;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
}

header {
  margin: 0;
}

body::-webkit-scrollbar {
  display: none;
}

.a_none {
    line-height: 0; 
    font-size: 0;
    color: transparent;
}

a img {
  user-select: none;
}

        @font-face {
            font-family: 'Arial';
            src: url('../font/Arial.woff2') format('woff2');
        }

p {
  font-family: Arial;
  color: white;
  user-select: none;
}

.reg_text {
  font-size: 24px;
}

.sm_text {
  margin-top: 24px;
  font-size: 16px;
}

.succes_container_container {
  position: fixed;
  background-color: black;
  width: 100vw;
  height: 300vh;
  display: none;
}

.succes_container {
  display: flex;
  justify-content: center;
}

.succes_container_top {
  position: fixed;
  top: 30%;
}

.succes_flex {
  text-align: center;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: end;
}

.footer_flex img {
  width: 100%;
}

.footer_flex {
  width: 20%;
}

.cursor_switch:hover {
  cursor: url('../cursor/blue_size56.png') 16 16, auto;
}

.data_form {
    background-color: #000; /* Чорний фон для сторінки */
    color: #fff; /* Білий текст */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

form {
    width: 100%;
    padding: 20px;
    background-color: blue; /* Чорний фон форми */
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff; /* Білий текст */
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #000; /* Чорний фон полів */
    color: #fff; /* Білий текст */
    font-size: 14px;
}

input::placeholder {
    color: #aaa; /* Світліший текст для плейсхолдера */
}

input:focus {
    outline: none;
    border-color: #fff; /* Контур при фокусі */
    background-color: #000; /* Легкий підсвіт чорного */
}

button {
    width: 100%;
    padding: 10px;
    background-color: blue; /* Білий фон кнопки */
    color: white; /* Чорний текст */
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

button:hover {
    background-color: #aaa; /* Сірий фон при наведенні */
    color: #000; /* Зберігаємо чорний текст */
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: none;
}

.side_menu_cart,
.side_menu_text {
  display: none;
}

#cart-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%; /* Ширина 70% від екрану */
}

.cart-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.cart-item img {
  width: 100%;
  user-select: none;
}

.cart-item p {
  font-size: 24px;
  display: none;
}

.cart_container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 30px;
  margin-bottom: 60px;
  margin-left: 10px;
  margin-right: 10px;
}

.cart_info {
  width: 70%;
}

.remove-item {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-left: 10px;
    cursor: url('../cursor/blue_size56.png') 16 16, auto;
    user-select: none;
}
.remove-item:hover {
    color: gray;
}

@font-face {
    font-family: "Arial";
    src: url(/font/Arial.woff2) format("woff2");
}

#total-price {
  margin-bottom: 30px;
  font-family: arial;
  color: white;
  font-size: 24px;
}

#reg_text_space {
  margin-bottom: 60px;
}

#reg_text_space_sm {
  margin-bottom: 30px;
}

.redirect_button {
  background-color: transparent;
  text-decoration: underline;
  font-size: 24px;
  margin-top: 20px;
}

.redirect_button:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
}