﻿@charset "UTF-8";

@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 300;
  src: local("Montserrat Light Italic"), local("Montserrat-LightItalic"), url(../fonts/montserrat/Montserrat-LightItalic.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 100;
  src: local("Montserrat ExtraLight"), local("Montserrat-ExtraLight"), url(../fonts/montserrat/Montserrat-Light.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  src: local("Montserrat Light"), local("Montserrat-Light"), url(../fonts/montserrat/Montserrat-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(../fonts/montserrat/Montserrat-SemiBold.ttf) format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url("../img/body-bg.jpg");
  font-family: "Montserrat", sans-serif;
  height: 100%;
  font-size: 16px;
  color: rgba(255, 254, 228, 0.8);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
body > * {
  position: relative;
  z-index: 2;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
body {
  /* --- Heading --- */
}
body h1 {
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin: 0;
  font-size: 350%;
  word-spacing: 4px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
body h1 em {
  color: #4da6ff;
  text-decoration: underline solid;
}
@media screen and (max-width: 575px) {
  body h1 {
    font-size: 180%;
  }
}
body h2 {
  color: #fffee4;
  font-weight: 300;
  font-size: 180%;
  word-spacing: 2px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  body h2 {
    font-size: 120%;
  }
}
body h2:after {
  display: block;
  height: 1px;
  background: linear-gradient(135deg, #4da6ff, #00d4ff);
  content: " ";
  width: 120px;
  margin: 0 auto;
  margin-top: 30px;
}
body h3 {
  color: rgba(255, 254, 228, 0.8);
  font-weight: 300;
  font-size: 120%;
  text-transform: uppercase;
  margin: 25px 0;
}
body h3.sub-title {
  color: #00d4ff;
  text-transform: lowercase;
  font-size: 110%;
}
body h4 {
  color: #4da6ff;
  font-weight: 100;
}
body label {
  color: #fff;
}
body em {
  color: #4da6ff;
}
body strong {
  color: #4da6ff;
}
body ul {
  list-style: none;
  padding-left: 1em;
  margin: 0;
  font-weight: 100;
}
body ul.info {
  padding-left: 0;
}
body ul:not(.no-style):not(.sub-menu) li {
  position: relative;
}
body ul:not(.no-style):not(.sub-menu) li::before {
  display: block;
  position: absolute;
  height: 4px;
  width: 4px;
  background: #4da6ff;
  border-radius: 50%;
  content: " ";
  top: 10px;
  left: -12px;
}
body figure {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  max-height: 680px;
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
}
body figure.logo {
  max-width: 70px;
  max-height: 70px;
  border: none;
}
body figure.logo img {
  border: none;
}
body figure.logo::after {
  content: none;
}
body figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 60%, #4B1C12 100%);
}
body figure img {
  width: 100%;
  object-fit: cover;
}
body figure:hover {
  transform: rotate(2deg);
  box-shadow: 0 0 15px rgba(77, 166, 255, 0.7);
}
body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
body .logos {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
body .logos li {
  margin: 0 15px;
}
body .logos img {
  height: 50px;
}
body {
  /* --- Pagagraphs --- */
}
body p {
  font-size: 120%;
  line-height: 140%;
  font-weight: 100;
}
body {
  /* --- blocks --- */
}
body .cover {
  padding: 25px;
}
body .plus-pattern {
  background-image: url("../svg/plus.svg");
  background-repeat: repeat;
  background-size: 70px 70px;
}
body section {
  position: relative;
  padding: 20px 0;
  background-size: cover;
  background-position: center;
}
body section .section {
  padding: 25px;
  border-radius: 10px;
  background: rgba(0, 49, 2, 0.7);
  border: 1px solid rgba(77, 166, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media screen and (min-width: 768px) {
  body section .section {
    padding: 30px 40px;
  }
}
body section.bg-image {
  border-bottom: none;
}
body section.bg-image > * {
  position: relative;
  z-index: 2;
}
body section.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(7px);
  z-index: 1;
}
body section#hero {
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  body section#hero {
    padding: 40px 0;
  }
}
@media screen and (max-width: 575px) {
  body {
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 576px) {
  body {
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  body {
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 992px) {
  body {
    background-size: 100% 100%;
  }
}

body footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(77, 166, 255, 0.2);
}
body footer .disclaimer h1 {
  display: flex;
  align-items: center;
}
body footer .menu {
  padding: 10px;
}
body footer .menu .menu-item {
  padding: 5px 15px;
}
body footer .menu.block {
  justify-content: flex-start;
}
body footer .menu h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 20px;
  margin-bottom: 15px;
  font-weight: 100;
  color: #fff;
}
body footer .menu h4 .brand-title {
  font-size: 100%;
}
body footer .menu h4 .brand-name {
  font-size: 80%;
}
body footer .menu .icon {
  font-size: 120%;
}
body footer .menu ul .link {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
body footer .menu ul .link .title {
  font-weight: 100;
}
body footer .menu p {
  font-size: 100%;
  margin: 0;
}
body footer {
  padding: 15px 0;
}
body footer .box {
  text-align: center;
}
body footer .copyright {
  text-align: center;
  margin: 15px 0 0;
  color: #4da6ff;
}
body .basement figure {
  display: flex;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 60%, #4B1C12 100%);
  border-radius: 50px;
  padding: 5px;
}
body .basement figure img {
  height: 60px;
}

body {
  /*
  +----------------------------------------------------+
  |                     REDO                           |
  +----------------------------------------------------+
  */
}
@media screen and (min-width: 576px) {
  body .navbar {
    padding: 15px;
  }
}
@media screen and (max-width: 575px) {
  body .navbar {
    padding: 15px;
  }
}
@media screen and (min-width: 768px) {
  body .navbar {
    padding: 0.5rem;
  }
}
body .navbar .navbar-toggler {
  background: linear-gradient(135deg, #4da6ff, #00d4ff);
}
body .navbar .navbar-brand {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  line-height: 20px;
  font-weight: 100;
  color: #fff;
}
body .navbar .navbar-brand .brand-title {
  font-size: 150%;
}
body .navbar .navbar-brand .brand-name {
  font-size: 80%;
}
body .navbar .navbar-brand:hover {
  color: #fffee4;
}

body section.common .section {
  text-align: left;
}
body section.common .info {
  border: 1px solid rgba(77, 166, 255, 0.2);
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(77, 166, 255, 0.1) 100%);
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  body section.common .info {
    flex-direction: row;
  }
}
body section.common .info .item {
  text-align: center;
}
body section.common .info .item .icon {
  background: rgba(0, 212, 255, 0.5);
  padding: 15px;
  font-size: 300%;
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(77, 166, 255, 0.3);
}
body section.common .info .item p {
  font-size: 100%;
}
body section.common .info .item h4 {
  margin: 25px;
  font-weight: 400;
  font-size: 200%;
  color: #4B1C12;
}

body section.mix .block {
  text-align: center;
}
body section.mix .block h4 {
  font-size: 100%;
  margin: 15px 0;
  text-align: center;
}
body section.mix .block p {
  font-weight: 100;
  font-size: 90%;
  color: #fff;
}
body section.mix .block.second .box {
  padding: 5px;
  justify-content: center;
  background: linear-gradient(180deg, rgba(75, 28, 18, 0.3), rgba(75, 28, 18, 0.3));
}
body section.mix .block.third {
  text-align: center;
}
body section.mix .block.fourth .button {
  text-align: center;
}

body section.accord .accordion {
  padding: 0;
  margin-top: 40px;
}
body section.accord .accordion .accordion-item {
  background: linear-gradient(180deg, transparent 0%, rgba(77, 166, 255, 0.1) 100%);
  border: 1px solid rgba(77, 166, 255, 0.2);
  transition: border 0.5s, box-shadow 0.5s, transform 0.5s ease;
}
body section.accord .accordion .accordion-item h4 {
  color: #fff;
  font-size: 120%;
}
body section.accord .accordion .accordion-item:first-of-type {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
body section.accord .accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
body section.accord .accordion .accordion-item {
  border-radius: 5px;
  margin-bottom: 15px;
}
body section.accord .accordion .accordion-item:hover {
  border: 1px solid rgba(77, 166, 255, 0.7);
}
body section.accord .accordion .accordion-item .accordion-button {
  background: transparent;
  box-shadow: none;
}
body section.accord .accordion .accordion-item .accordion-button::after {
  filter: invert(1);
}
body section.accord .accordion .accordion-item .accordion-body {
  color: rgba(255, 254, 228, 0.8);
}

body section.blog > * {
  position: relative;
  z-index: 2;
}
body section.blog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
body section.blog .section {
  text-align: center;
}
body section.blog .section .info {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: center;
}
body section.blog .head-table {
  display: flex;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(77, 166, 255, 0.1) 100%);
  margin: 15px 0;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s ease;
  color: #fff;
  justify-content: space-around;
}
body section.blog .head-table .grade-th {
  margin-right: 40px;
}
body section.blog .head-table .button-th {
  margin-right: 40px;
}

body section.sender {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
body section.sender .block {
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border: none;
}
body section.sender .block .form-control {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
body section.sender .block .form-control::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
body section.sender .block .form-control:focus {
  background: rgba(255, 255, 255, 0.4);
  color: #000;
  box-shadow: none;
}
body section.sender .block .form-text {
  color: rgba(255, 254, 228, 0.8);
}
body section.sender .block .form-check-input {
  background-color: rgba(77, 166, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
body section.sender .block .invalid-feedback {
  color: #ff3700;
}
body section.sender p {
  text-align: center;
}

body section.wide {
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
body section.wide > * {
  position: relative;
  z-index: 2;
}
body section.wide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
body section.wide .section {
  text-align: center;
}
body section.wide .section .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  body section.wide .section .info {
    flex-wrap: nowrap;
  }
}
body section.wide .block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body section.wide .block.plain .info {
  display: flex;
  justify-content: space-around;
  padding: 0 0 40px;
}
body section.wide .block.plain .info .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body section.wide .block.plain .info .item p {
  font-size: 100%;
}
body section.wide .block.plain .info .item h4 {
  margin-top: 40px;
  font-weight: 400;
  font-size: 200%;
  color: #4B1C12;
}
body section.wide .block .button {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  body section.wide .block .button {
    flex-direction: row;
  }
}
body section.wide .block .button a {
  margin: 15px 0;
}
@media screen and (min-width: 992px) {
  body section.wide .block .button a {
    margin: 0 5px;
  }
}
body section.wide .block.rel {
  padding-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin: 5px;
  box-shadow: 0 0 30px rgba(75, 28, 18, 0.1), 0 0 0 rgba(75, 28, 18, 0.05) inset;
  transition: box-shadow 0.2s, border 0.2s;
}
body section.wide .block.rel h4 {
  margin: 4px;
  font-size: 120%;
}
body section.wide .block.rel p {
  margin: 0 4px;
  color: #4B1C12;
  font-weight: 100;
  font-size: 100%;
}
body section.wide .block.rel .plate {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}
body section.wide .block.rel .plate .info {
  display: flex;
  border: none;
  padding: 10px;
}
body section.wide .block.rel .plate .grade {
  display: flex;
  align-items: center;
}
body section.wide .block.rel .plate .grade .label {
  margin: 0 10px;
}
body section.wide .block.rel .plate .grade h4 {
  margin: 0;
  font-weight: 400;
  font-size: 200%;
  color: #4B1C12;
}
body section.wide .block.rel .plate .grade p {
  color: rgba(255, 254, 228, 0.8);
  font-size: 100%;
}
body section.wide .block.rel .plate .grade p span {
  margin: 0 5px;
}
body section.wide .block.rel .info {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
body section.wide .block.rel .info .item .promo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
body section.wide .block.rel .info .item .promo h4 {
  color: #3a1b00;
  font-weight: 100;
  font-size: 100%;
  margin: 0;
}
body section.wide .block.rel .head {
  display: flex;
  align-items: flex-start;
}

body section.map {
  padding: 0;
}

body section.resp .section {
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 175, 0, 0.15) 0%, rgba(255, 175, 0, 0.7) 100%);
}
body section.resp figure {
  background: none;
}
body section.resp figure:after {
  content: none;
}

body section.blog .brand {
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid rgba(77, 166, 255, 0.2);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  position: relative;
  z-index: 0;
}
body section.blog .brand .logo,
body section.blog .brand .grade,
body section.blog .brand .links {
  height: 100%;
  display: flex;
  border-radius: inherit;
}
body section.blog .brand .promo {
  position: absolute;
  top: 0;
  left: 0;
  background: #4da6ff;
  color: #fff;
  padding: 5px;
  border-radius: 10px 0 10px;
  font-size: 90%;
}
body section.blog .brand .logo {
  padding: 15px 0;
  align-items: center;
  justify-content: center;
}
body section.blog .brand .logo .order {
  padding: 15px;
  margin-left: 30px;
  font-size: 200%;
}
body section.blog .brand .logo figure {
  padding: 10px;
  background: linear-gradient(140deg, rgba(77, 166, 255, 0.05) 0%, rgba(77, 166, 255, 0.2));
  height: 140px;
  max-width: 220px;
  margin: 0 auto;
}
body section.blog .brand .logo figure:after {
  content: none;
}
body section.blog .brand.top {
  border: none;
}
body section.blog .brand.top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 5px;
  background: linear-gradient(135deg, #4da6ff, #00d4ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
body section.blog .brand .grade {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
body section.blog .brand .grade p {
  font-size: 100%;
  margin: 0;
}
body section.blog .brand .links {
  padding: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body section.blog .brand .message {
  padding: 10px;
  border-top: 1px solid rgba(77, 166, 255, 0.2);
}
body section.blog .brand .message p {
  color: #00d4ff;
  font-size: 100%;
  font-weight: 100;
  text-align: center;
  margin: 0;
}
body section.blog .brand .list {
  height: 100%;
  padding: 15px;
  display: flex;
  text-align: left;
}
body section.blog .brand .payment {
  height: 100%;
  padding: 15px;
}
body section.blog .brand .stars {
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
}
body section.blog .brand .stars .high {
  font-size: 150%;
}
body section.blog .brand .stars .medium {
  font-size: 120%;
}
body section.blog .brand .stars i {
  color: #fff;
}
body section.blog .brand .votes {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body section.blog .brand .votes .value {
  color: #fff;
  font-size: 160%;
  font-weight: bold;
}

body header {
  background: rgba(0, 0, 0, 0.7);
  overflow-x: clip;
  position: sticky;
  z-index: 999;
  top: 0;
  border-bottom: 1px solid rgba(77, 166, 255, 0.2);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
}
body header nav {
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(10px, 1.6vw, 18px) clamp(6px, 1.4vw, 16px);
  min-height: 80px;
}
body header nav::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.25;
}
body header nav .navbar-nav {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body header nav li.menu-item {
  position: relative;
  padding-right: 10px;
}
body header nav li.menu-item a {
  position: relative;
  display: inline-block;
  padding: 10px 6px;
  letter-spacing: 0.28px;
  color: #fff;
  transition: color 0.2s cubic-bezier(0.2, 0.5, 0.2, 1), transform 0.22s cubic-bezier(0.2, 0.5, 0.2, 1), filter 0.2s;
  background: radial-gradient(60% 50% at 50% 120%, transparent, transparent 70%);
  border-radius: 10px;
}
body header nav li.menu-item a:hover::before {
  opacity: 1;
}
body header nav li.menu-item a::before {
  content: "";
  position: absolute;
  inset: -10px -12px;
  border-radius: 14px;
  background: radial-gradient(80% 60% at 50% -10%, rgba(77, 166, 255, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.2, 0.5, 0.2, 1);
  pointer-events: none;
}
body header nav li.menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  background: linear-gradient(135deg, #4da6ff, #00d4ff);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s cubic-bezier(0.2, 0.5, 0.2, 1);
}
body header nav li.menu-item a:hover {
  color: #4da6ff;
  transform: translateY(-1px);
}
body header nav li.menu-item a:hover::after {
  transform: scaleX(1);
}
body header nav li.menu-item.menu-item-has-children {
  position: relative;
}
body header nav li.menu-item.menu-item-has-children a {
  display: inline-block;
  margin-right: 15px;
}
body header nav li.menu-item.menu-item-has-children > a::after {
  content: "▼";
  font-size: 100%;
  position: absolute;
  background: none;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
body header nav li.menu-item:hover > .sub-menu {
  display: block;
}
body header nav li.menu-item .sub-menu {
  display: none;
  position: absolute;
  top: 40px;
  background: #003102;
  margin: 0;
  padding: 15px;
  border-radius: 10px;
  min-width: 280px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
body header nav li.menu-item .sub-menu .menu-item {
  display: block;
  padding: 0;
}
body header nav li.menu-item .sub-menu .menu-item a {
  margin: 0;
}

body {
  /* --- Links --- */
}
body a:link, body a:visited {
  color: #fff;
  text-decoration: none;
  font-weight: 100;
  font-size: 100%;
  -webkit-transition: border-bottom 0.2s, color 0.2s;
  transition: border-bottom 0.2s, color 0.2s;
}
body a:hover, body a:active {
  color: #4da6ff;
}
body a.no-border {
  border-bottom: none;
}
@media screen and (min-width: 992px) {
  body a {
    font-size: 120%;
  }
}
body {
  /* --- Buttons --- */
}
body button.btn {
  color: #4da6ff;
}
body .btn,
body .btn:link,
body .btn:visited,
body input[type=submit] {
  display: inline-block;
  padding: 8px 24px;
  font-weight: 100;
  font-size: 80%;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid #3a1b00;
  -webkit-transition: background 0.4s ease, border 0.4s, color 0.4s, box-shadow 0.4s ease;
  transition: background 0.4s ease, border 0.4s, color 0.4s, box-shadow 0.4s ease;
  position: relative;
  background: transparent;
  overflow: hidden;
  color: #3a1b00;
}
@media screen and (max-width: 575px) {
  body .btn,
  body .btn:link,
  body .btn:visited,
  body input[type=submit] {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 992px) {
  body .btn,
  body .btn:link,
  body .btn:visited,
  body input[type=submit] {
    margin-bottom: 0;
    font-size: 100%;
  }
}
body .btn span,
body .btn:link span,
body .btn:visited span,
body input[type=submit] span {
  position: relative;
  z-index: 1;
}
body .btn::before,
body .btn:link::before,
body .btn:visited::before,
body input[type=submit]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4da6ff 70%, #00d4ff 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 0;
}
body .btn:hover::before,
body .btn:link:hover::before,
body .btn:visited:hover::before,
body input[type=submit]:hover::before {
  opacity: 1;
}
body .btn:hover, body .btn:active,
body .btn:link:hover,
body .btn:link:active,
body .btn:visited:hover,
body .btn:visited:active,
body input[type=submit]:hover,
body input[type=submit]:active {
  cursor: pointer;
  color: #3a1b00;
  border: 1px solid #4da6ff;
}
body .btn-full,
body .btn-full:link,
body .btn-full:visited,
body input[type=submit] {
  background: linear-gradient(135deg, #4da6ff, #00d4ff);
  box-shadow: 0 0 30px rgba(75, 28, 18, 0.5), inset 0 0 0 rgba(75, 28, 18, 0.05);
}
body .btn-full.btn,
body .btn-full:link.btn,
body .btn-full:visited.btn,
body input[type=submit].btn {
  color: #3a1b00;
}
body .btn-ghost:link, body .btn-ghost:visited {
  color: #4da6ff;
  border: 1px solid #4da6ff;
}
body .btn-ghost:hover, body .btn-ghost:active {
  box-shadow: 0 0 30px rgba(75, 28, 18, 0.5), inset 0 0 0 rgba(75, 28, 18, 0.05);
}

body .cover {
  padding: 10px;
}

body .block {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(77, 166, 255, 0.1) 100%);
  border-radius: 5px;
  border: 1px solid rgba(77, 166, 255, 0.2);
  padding: 15px;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s ease;
}
body .box:hover {
  box-shadow: 0 0 15px rgba(77, 166, 255, 0.3);
  border: 1px solid rgba(77, 166, 255, 0.3);
}
body .accord .box {
  height: auto;
}

body .plate {
  display: flex;
  border: 1px solid rgba(77, 166, 255, 0.2);
  border-radius: 50px;
  padding-right: 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(77, 166, 255, 0.1) 100%);
  margin: 5px;
  align-items: center;
  transition: box-shadow 0.4s, border 0.4s, transform 0.4s ease;
}
body .plate:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(77, 166, 255, 0.3);
  border: 1px solid rgba(77, 166, 255, 0.3);
}
body .plate p {
  font-size: 90%;
  margin: 0;
}

body .phantom {
  position: absolute;
  top: 70%;
  left: -10%;
}
body .basement .phantom {
  top: -10%;
  left: 70%;
}
body .lost p {
  margin: 0;
  padding: 0;
  height: 0;
}
body .lost .teaser {
  position: absolute;
  top: -10px;
  right: -55px;
  background: linear-gradient(135deg, #4da6ff, #00d4ff);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
}
body .lost .ok {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: linear-gradient(135deg, #4da6ff, #00d4ff);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
}

body .icon {
  margin-right: 5px;
  color: #fff;
  font-size: 100%;
}
body .box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  background: rgba(0, 212, 255, 0.5);
  font-size: 220%;
  margin-right: 25px;
  color: #fff;
}
body .plate .icon {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  padding: 12px;
  font-size: 140%;
  border-radius: 50px;
  margin-right: 10px;
  box-shadow: 3px 3px 5px rgba(77, 166, 255, 0.3);
}
body h1 .icon {
  color: #fff;
  font-size: 100%;
}
body .wide .rel .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  padding: 12px;
  font-size: 140%;
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgba(77, 166, 255, 0.3);
}
body .wide .plain .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(180deg, rgba(75, 28, 18, 0.3), rgba(75, 28, 18, 0.3));
  padding: 15px;
  font-size: 300%;
  border-radius: 100px;
  box-shadow: 3px 3px 5px rgba(77, 166, 255, 0.3);
}

body .ring {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
body .ring .ring-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#4da6ff 0% 0%, #fff 0% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), black 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), black 0);
}
body .ring .ring-border.nine-9 {
  background: conic-gradient(#4da6ff 0% 99%, #fff 99% 100%);
}
body .ring .ring-border.nine-8 {
  background: conic-gradient(#4da6ff 0% 98%, #fff 98% 100%);
}
body .ring .ring-border.nine-7 {
  background: conic-gradient(#4da6ff 0% 97%, #fff 98% 100%);
}
body .ring .ring-border.nine-6 {
  background: conic-gradient(#4da6ff 0% 96%, #fff 96% 100%);
}
body .ring .ring-border.nine-5 {
  background: conic-gradient(#4da6ff 0% 95%, #fff 96% 100%);
}
body .ring .ring-border.nine-4 {
  background: conic-gradient(#4da6ff 0% 94%, #fff 94% 100%);
}
body .ring .ring-border.nine-3 {
  background: conic-gradient(#4da6ff 0% 93%, #fff 93% 100%);
}
body .ring .ring-border.nine-2 {
  background: conic-gradient(#4da6ff 0% 92%, #fff 92% 100%);
}
body .ring .ring-border.nine-0 {
  background: conic-gradient(#4da6ff 0% 90%, #fff 90% 100%);
}
body .ring .ring-border.eight-9 {
  background: conic-gradient(#4da6ff 0% 89%, #fff 89% 100%);
}
body .ring .ring-border.eight-8 {
  background: conic-gradient(#4da6ff 0% 88%, #fff 89% 100%);
}
body .ring .ring-border.eight-7 {
  background: conic-gradient(#4da6ff 0% 87%, #fff 87% 100%);
}
body .ring .rate {
  position: relative;
  text-align: center;
  font-weight: bold;
}
