@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800&display=swap);
*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their konteiner */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable='false'])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable='true']) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #ffffff;
  background-color: rgb(197, 197, 197);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  text-decoration: underline;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
table tr td,
table tr th {
  border: 1px solid #3f3e3e;
  padding: 15px;
}
table tr th {
  background-color: #3f3e3e;
  color: 29dcdc;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #dfdbdb;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(19, 28, 129, 0.996);
  padding: 1px 0;
  border-bottom: 1px solid #0953f2;
  box-shadow: 0 1px 5px #006eff;
}
.header .konteiner {
  display: flex;
  align-items: center;
}
.header .logo {
  flex: 0 0 100px;
}
.header h1 {
  flex-grow: 1;
  color: #ffff30d9;
  margin: 0;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 165px 0;
}
.main .cards {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 50px auto;
}
.main .cards .card {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  height: 200px;
  text-align: center;
  padding-right: 25px;
  position: relative;
  background-color: rgba(70, 1, 246, 0.925);
  border: 1.5px solid #ffffff;
  border-radius: 10px;
}
.main .cards .card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  background-color: #ffffff;
  color: #070707;
  border-top-left-radius: 8px;
}
.main .cards .card .wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.main .cards .card__img {
  background-color: #fcf5f5;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 2px solid #f3f1f1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.main .cards .card__img img {
  width: 220px;
}
.main .cards .card__bonus {
  font-size: 35px;
  color: #00ff11;
  line-height: 100%;
  font-weight: 900;
}
.main .cards .card__bonus .bonus {
  animation: 1s steps(2) infinite stopsignal;
}
.main .cards .card__bonus span {
  font-size: 20px;
  color: #ffffff;
}
.main .cards .card__text {
  font-size: 16px;
}
.main .cards .card__text .days {
  font-size: 20px;
  font-weight: 600;
}
.main .cards .card__btn .btn {
  display: inline-block;
  background-color: #10ff1c;
  color: #353434;
  text-align: center;
  padding: 12px 20px;
  width: 150px;
  border-radius: 20px;
  font-weight: 600;
}
.main .cards .card__btn .btn:hover {
  background-color: #bd9a44;
}
.main .cards .card:nth-child(1)::before {
  content: '1';
}
.main .cards .card:nth-child(2)::before {
  content: '2';
}
.main .cards .card:nth-child(3)::before {
  content: '3';
}
.main .cards .card:nth-child(4)::before {
  content: '4';
}
.main .cards .card:nth-child(5)::before {
  content: '5';
}
.main .cards .card:nth-child(6)::before {
  content: '6';
}
.main .cards .card:nth-child(7)::before {
  content: '7';
}
.main .cards .card:nth-child(8)::before {
  content: '8';
}
.main .cards .card:nth-child(9)::before {
  content: '9';
}
.main .cards .card:nth-child(10)::before {
  content: '10';
}
.main .cards .card:nth-child(11)::before {
  content: '11';
}
.main .cards .card:nth-child(12)::before {
  content: '12';
}
.main .cards .card:nth-child(13)::before {
  content: '13';
}
.main .cards .card:nth-child(14)::before {
  content: '14';
}
.main .cards .card:nth-child(15)::before {
  content: '15';
}
.main .cards .card:nth-child(16)::before {
  content: '16';
}
.main .cards .card:nth-child(17)::before {
  content: '17';
}
.main .cards .card:nth-child(18)::before {
  content: '18';
}
.main .cards .card:nth-child(19)::before {
  content: '19';
}
.main .cards .card:nth-child(20)::before {
  content: '20';
}
.main .cards .card:nth-child(21)::before {
  content: '21';
}
.main .cards .card:nth-child(22)::before {
  content: '22';
}
.main .cards .card:nth-child(23)::before {
  content: '23';
}
.main .cards .card:nth-child(24)::before {
  content: '24';
}
.main .cards .card:nth-child(25)::before {
  content: '25';
}

.footer {
  border-top: 1px solid #dd0505;
  box-shadow: 1px 0 5px #30972c;
  padding: 30px 0;
  text-align: center;
}

.konteiner {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}
.napov {
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .konteiner {
    max-width: 100%;
  }
  .header {
    position: initial;
  }
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .header .logo {
    flex: 0 0 80px;
  }
  .main {
    padding: 20px 0;
  }
  .main .cards {
    margin: 25px 0;
  }
  .main .cards .card {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-right: 0;
    padding-bottom: 25px;
  }
  .main .cards .card__img {
    width: 100%;
    height: 120px;
  }
  .main .cards .card__text {
    font-size: 14px;
  }
  .main .cards .card .radius-top {
    border-top-right-radius: 8px;
  }
  .main .cards .card .radius-bottom {
    border-bottom-left-radius: 0;
  }
}
@keyframes stopsignal {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
