@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&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 container */
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-weight: 400;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #191b26;
}

p {
  line-height: 150%;
}

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

h2 {
  font-size: 32px;
  font-weight: 600;
  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: #f2ff00;
}

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

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #191b26;
  padding: 20px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  flex: 0 0 100px;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
.header .container .auth .btn-1 {
  background: #2c2f3e;
  color: #ebbb1d;
}
.header .container .auth .btn-1:hover {
  background: #4f546a;
}
.header .container .auth .btn-2 {
  background: #ebbb1d;
  color: #fff;
  font-weight: 600;
}
.header .container .auth .btn-2:hover {
  background: #f4cb44;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 50px 0;
}
.main .content {
  border-radius: 6px;
  padding: 20px;
  margin: 50px 0;
  background: #1e212d;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.main .cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  background-color: #1e212d;
  flex: 1;
}
.main .cards .card:hover span {
  color: #fff;
}
.main .cards .card img {
  max-width: 50px;
}
.main .cards .card span {
  color: #878da4;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.main .providers {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.main .providers .provider {
  background-color: #1e212d;
  padding: 20px;
  flex: 0 0 15%;
}
.main__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  width: 250px;
  margin: 25px auto;
  background: linear-gradient(253.67deg, #fffb00 2.27%, #c0ff03 94.48%);
  color: #000;
  border-radius: 6px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.main__btn a:hover {
  background: linear-gradient(253.67deg, #cdff63 2.27%, #55ff70 94.48%);
}
.main__btn a::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transition: none;
  animation: _ngcontent-wlc-app-c30_sheen 2.5s infinite;
}
.main .comments {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px auto;
  max-width: 70vw;
}
.main .comments .comment {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #00ea25;
  border-radius: 20px;
  padding: 15px;
  background-color: rgba(6, 90, 20, 0.62);
}
.main .comments .comment__name {
  font-size: 28px;
  font-weight: 600;
}
.main .comments .comment__date {
  font-style: italic;
}
.main .comments .comment__btn {
  border-radius: 20px 4px;
  box-shadow: none;
  padding: 8px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0px 0px 5px 3px #00ea25;
  margin-left: auto;
}
.main .comments .comment__btn:hover {
  color: #00ea25;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
  background-color: #12143c;
}
.footer .container {
  display: flex;
  justify-content: center;
}
.footer .container .flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .container .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer .container .icons img {
  height: 40px;
}

.scroll-btn {
  position: fixed;
  cursor: pointer;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  display: none;
}
.scroll-btn svg {
  border-radius: 6px;
}

.bottom-navigation {
  display: none;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .header .container .logo {
    flex: auto;
    width: 100px;
  }
  .main {
    padding: 30px 0;
  }
  .main .providers {
    gap: 10px;
  }
  .main .providers .provider {
    flex: 0 0 30%;
  }
  .main .content {
    margin: 20px 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .comments {
    max-width: 100%;
  }
  .bottom-navigation {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(111.84deg, #2e2147 0%, #36212a 102.14%);
    padding: 25px;
  }
  .bottom-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 14px;
  }
  .bottom-navigation ul li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }
  .bottom-navigation ul li svg {
    width: 24px;
    height: 24px;
  }
  .scroll-btn {
    bottom: 100px;
  }
}
@keyframes _ngcontent-wlc-app-c30_sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  50%, 100% {
    transform: skewX(-45deg) translateX(22em);
    transition: all 0.5s ease-in-out;
  }
}