* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background: var(--main-color);
  color: var(--text-color);
  font-family: var(--font-rubik);
}

.scroll-disable {
  overflow: hidden !important;
}

.preloader {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10000;
  background: var(--main-color);
  filter: invert(20%) saturate(300%);
}

.coming-soon {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  font-family: var(--font-rubik);
}

.countdown {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}
.countdown .d {
  font-size: 6rem;
  font-weight: 800;
  margin-right: 20px;
}
.countdown .d span {
  display: block;
  font-size: 2rem;
  text-align: center;
}
.countdown .time {
  display: flex;
  justify-content: center;
  align-items: center;
}
.countdown .time .h, .countdown .time .m, .countdown .time .s {
  font-size: 6rem;
  font-weight: 800;
  margin-right: 50px;
}
.countdown .time .h span, .countdown .time .m span, .countdown .time .s span {
  display: block;
  font-size: 2rem;
  text-align: center;
}
.countdown .time .s {
  margin-right: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: var(--topbar-color);
}
.topbar .bars {
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}
.topbar .bars:active .icons {
  width: 25px;
}
.topbar .bars:active .icons::before {
  width: 25px;
}
.topbar .bars.active {
  transform: rotate(135deg);
}
.topbar .bars.active .icons {
  width: 25px;
}
.topbar .bars.active .icons::before {
  opacity: 0;
  transition: 0.1s;
}
.topbar .bars.active .icons::after {
  transform: rotate(90deg);
  top: 0;
}
.topbar .bars .icons {
  width: 20px;
  height: 3px;
  background: var(--text-color);
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
}
.topbar .bars .icons::before, .topbar .bars .icons::after {
  content: "";
  position: absolute;
  right: 0;
  height: 3px;
  background: var(--text-color);
  border-radius: 10px;
  transition: 0.3s;
}
.topbar .bars .icons::before {
  width: 15px;
  top: -8px;
}
.topbar .bars .icons::after {
  top: 8px;
  width: 25px;
}
.topbar .logo {
  width: 150px;
}
.topbar .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-space {
  margin-top: 40px;
}

a {
  text-decoration: none;
  color: unset;
}
a:hover {
  color: unset;
}

.drop-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  background: rgba(36, 36, 36, 0.5019607843);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  transition: 0.3s;
  color: var(--text-color);
}
.drop-icon.size {
  width: 20px;
  height: 20px;
}
.drop-icon.active {
  transform: rotate(90deg);
}

.widget-2 {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.widget-2 .widget-2-content {
  overflow: hidden;
  border-radius: 10px;
}
.widget-2 .content {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}
.widget-2 .content p {
  margin-top: 5px;
  font-weight: 400;
}
.widget-2 .price, .widget-2 .currency {
  text-align: center;
}
.widget-2 .bg {
  width: 100%;
  height: 140px;
  position: relative;
}
.widget-2 .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget-2 .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3764705882);
}
.widget-2 .bg .bg-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.widget-2 .widget-2-dropdown {
  margin-top: 10px;
  display: none;
  overflow: hidden;
  border-radius: 10px;
}

.widget-1 {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.widget-1 .content {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}
.widget-1 .content p {
  margin-top: 5px;
  font-weight: 400;
}
.widget-1 .price, .widget-1 .currency {
  text-align: center;
}
.widget-1 .bg {
  width: 100%;
  height: 250px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.widget-1 .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget-1 .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3764705882);
}

.menu-ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-rubik);
  font-size: 16px;
  font-weight: 500;
}
.menu-ul li {
  width: 100%;
  position: relative;
  margin-bottom: 5px;
  border-radius: 10px;
  padding: 5px 0;
  cursor: pointer;
}
.menu-ul li a {
  width: 100%;
  display: block;
}
.menu-ul li a:hover {
  text-decoration: underline;
}
.menu-ul li .menu-dropdown {
  display: none;
  list-style: none;
  margin-top: 10px;
}
.menu-ul li .menu-dropdown li {
  background: rgba(211, 211, 211, 0.1450980392);
  margin-bottom: 5px;
  border-radius: 5px;
  padding: 7px;
}
.menu-ul li .menu-dropdown li:hover {
  background: rgba(211, 211, 211, 0.2078431373);
}

.contact {
  position: fixed;
  bottom: 0;
  right: 0;
  transform: translate(-50%, 0);
  margin: 0;
  padding: 0;
  text-align: center;
  height: 100vh;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.contact a {
  text-decoration: none;
  font-size: 24px;
  padding: 10px;
  margin: 0;
  text-align: center;
  transition: 0.3s;
}
.contact a:hover {
  color: #0070F3;
}

@media screen and (max-width: 1100px) {
  .contact {
    right: unset;
    transform: unset;
    height: unset;
    width: 100%;
  }
  .contact div {
    display: flex;
  }
}
.dropdown-menu {
  min-width: unset !important;
}

.flags {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.webmaster {
  color: #0070F3;
  font-weight: 600;
  transition: 0.3s;
}

.menu-logo {
  width: 150px;
}/*# sourceMappingURL=dn_qrmenu.css.map */