body {
  position: relative;
  background: linear-gradient(45deg, rgba(0, 56, 255, 0.9) 50%, rgba(255, 255, 255, 0.7) 100%), url("../images/eath.webp") top right no-repeat;
  background-size: cover;
}

#wrapper {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  height: auto;
  min-height: 100svh;
  margin: auto;
}
@media screen and (max-width: 400px) {
  #wrapper {
    margin-bottom: 50px;
  }
}
#wrapper > #wrapper__main {
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex: 1;
}
#wrapper > #wrapper__main main {
  padding: 7px 12px;
  height: 100%;
}

header {
  order: 2;
  border-radius: var(--radius-default);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 10%;
  min-height: 120px;
  margin: 5px 20px;
  flex-wrap: nowrap;
  gap: 10px;
}
header > div > img {
  height: auto;
  width: 120px;
}
@media screen and (max-width: 650px) {
  header > div > img {
    min-width: 70px;
  }
}
header > div:hover {
  cursor: pointer;
}
header > div:hover > h1,
header > div:hover h2 {
  color: red;
  transition: 0.5s;
  text-shadow: 1px 1px 10px white;
}
header div > h1 {
  color: white;
  font-weight: 500;
  transition: 0.5s;
}
@media screen and (max-width: 650px) {
  header div > h1 {
    font-size: 1.2rem;
  }
}
header div > h2 {
  color: white;
  font-weight: 300;
  transition: 0.5s;
}
@media screen and (max-width: 650px) {
  header div > h2 {
    font-size: 1.15rem;
  }
}

#flags {
  order: 1;
  width: 97%;
  margin-top: 10px;
}
#flags > .itc-slider-wrapper > .itc-slider-items > [class*=flag-] {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: stretch;
  gap: 3px;
  font-size: clamp(0.5rem, 10svw, 0.75rem);
  color: white;
  text-shadow: 1px 1px 1px black;
  cursor: pointer;
  position: relative;
}
#flags > .itc-slider-wrapper > .itc-slider-items > [class*=flag-] > img {
  width: 30px;
  height: auto;
  transition: 0.5s;
}
#flags > .itc-slider-wrapper > .itc-slider-items > [class*=flag-] > img:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

#preview {
  order: 3;
  container-type: inline-size;
  container-name: previewLiderCard;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  min-height: 250px;
  min-width: 100svw;
  gap: 20px;
  padding: 10px;
  touch-action: auto;
  overflow: auto;
}
@media screen and (max-width: 650px) {
  #preview {
    justify-content: stretch;
  }
}
#preview > [class*=leader-] {
  height: 200px;
  width: 400px;
  min-width: 300px;
  box-shadow: var(--box-shadow-default), inset 0px 0px 20px 1px rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-default);
  background-size: cover;
  transition: 0.8s;
}
#preview > [class*=leader-]:hover {
  transform: scale(1.05) translateY(5px);
  box-shadow: var(--box-shadow-biggest);
  transition: transform box-shadow 0.5s;
}
#preview > .leader-1 {
  background-image: url("../images/opinion-leader-1.webp");
}
#preview > .leader-2 {
  background-image: url("../images/opinion-leader-2.webp");
}
#preview > .leader-3 {
  background-image: url("../images/opinion-leader-3.webp");
}
#preview > .leader-4 {
  background-image: url("../images/opinion-leader-4.webp");
}

.contacts {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.contacts > span {
  display: block;
}
.contacts a {
  color: white;
  text-decoration: none;
  border-bottom: dashed 1px #ff00ff;
}
.contacts a:hover {
  color: #ffa4ff;
  border-bottom: solid 1px #ff00ff;
}

main {
  order: 4;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto auto;
  gap: 10px;
  flex: 1;
}
main a {
  color: white;
  text-decoration: none;
  border-bottom: dashed 1px #ff00ff;
}
main a:hover {
  color: #ffa4ff;
  border-bottom: solid 1px #ff00ff;
}
@media screen and (max-width: 800px) {
  main {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
main > .page-title {
  grid-row: 1/2;
  grid-column: 1/4;
  margin: 7px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  main > .page-title {
    grid-row: 2/3;
    grid-column: 1/1;
  }
}
main > .about-provides,
main .about-contacts {
  grid-row: 2/4;
  grid-column: 1/4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 20px;
  font-size: clamp(1rem, 3svw, 1.4rem);
}
main > .about-provides ol,
main .about-contacts ol {
  list-style: decimal;
}
main > .about-provides ol > li,
main .about-contacts ol > li {
  margin-left: 12px;
}
main > .about-provides ul,
main .about-contacts ul {
  list-style: " - ";
}
main > .about-provides ul > li,
main .about-contacts ul > li {
  margin-bottom: 7px;
  margin-left: 22px;
}
main > .about {
  grid-row: 2/3;
  grid-column: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: clamp(0.8rem, 3svw, 1.2rem);
  font-style: italic;
  border-radius: var(--radius-default);
  height: -moz-max-content;
  height: max-content;
  align-self: center;
}
@media screen and (max-width: 800px) {
  main > .about {
    grid-row: 3/4;
    grid-column: 1/1;
  }
}
main > .about-top {
  grid-row: 2/4;
  grid-column: 1/2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 20px;
  font-size: clamp(1rem, 3svw, 1.4rem);
}
@media screen and (max-width: 800px) {
  main > .about-top {
    grid-row: 5/6;
    grid-column: 1/1;
  }
}
main > .about-bottom-first {
  grid-row: 3/4;
  grid-column: 2/4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 20px;
  font-size: clamp(1rem, 3svw, 1.4rem);
}
@media screen and (max-width: 800px) {
  main > .about-bottom-first {
    grid-row: 4/5;
    grid-column: 1/1;
  }
}
main > .about-bottom {
  grid-row: 4/5;
  grid-column: 1/4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 20px;
  font-size: clamp(1rem, 3svw, 1.4rem);
}
@media screen and (max-width: 800px) {
  main > .about-bottom {
    grid-row: 6/7;
    grid-column: 1/1;
  }
}
main > .select-opinion {
  grid-row: 2/3;
  grid-column: 2/3;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 17px;
  padding: 12px;
}
main > .select-opinion > button {
  width: clamp(150px, 40%, 250px);
}
@media screen and (max-width: 800px) {
  main > .select-opinion {
    grid-row: 1/2;
    grid-column: 1/1;
  }
}

footer {
  order: 5;
  min-height: 120px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 30px;
}
footer > div:nth-child(3n) {
  flex-direction: column;
  align-items: flex-end;
  padding-right: 50px;
}
footer > div:first-child {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 50px;
}
footer img {
  max-height: 50px;
}
@media screen and (max-width: 400px) {
  footer {
    flex-direction: column;
  }
  footer div:nth-child(3n) {
    align-items: center;
    order: 1;
    padding: 0;
  }
  footer div:first-child {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
footer > .footer_about {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 2svw, 1rem);
  width: 33%;
  flex: 2;
  padding: 7px 12px;
}
@media screen and (max-width: 400px) {
  footer > .footer_about {
    order: 3;
    width: 100%;
  }
}
footer > .footer_copy {
  flex: 3;
  display: flex;
  align-content: center;
  justify-content: center;
}
@media screen and (max-width: 400px) {
  footer > .footer_copy {
    order: 2;
    width: 100%;
  }
}
footer > .footer_copy > .footer_logo {
  flex-direction: column;
}
footer > .footer_copy > .footer_logo > div {
  font-size: clamp(12px, 2svw, 1rem);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle at 127px -20px, rgba(255, 255, 255, 0.8) 14%, rgba(255, 4, 125, 0.9) 100%);
  font-size: clamp(0.7rem, 1.22vw, 1.1rem);
  min-height: 40px;
  border-radius: 27px;
  font-weight: 600;
  color: white;
  transition: color 0.2s;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.25), inset 6px -6px 18px 4px rgba(255, 255, 255, 0.65);
}
.button:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 6px 6px 20px 0 rgba(0, 0, 0, 0.25), inset 12px -12px 36px 8px rgba(255, 255, 255, 0.65);
  text-shadow: 1px 1px 5px rgba(255, 255, 0, 0.4);
  transition: transform 0.5s, box-shadow 0.5s, text-shadow 0.5s;
}

.glass {
  background-color: rgba(217, 217, 217, 0.3);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.25), inset 5px 5px 10px 0 rgba(255, 255, 255, 0.25);
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .glass {
    margin: 0 calc(640px - 50svw);
  }
}

.glass-div {
  background-color: rgba(217, 217, 217, 0.3);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.25), inset 5px 5px 10px 0 rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-default);
}

.glass-pink-gradient {
  background: linear-gradient(to right, transparent, #5271ff 15%, #fd68c5);
  border-radius: var(--radius-default);
  box-shadow: var(--box-shadow-default);
}

#chat-debates {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: rgba(32, 34, 163, 0.4);
  border-radius: 12px;
  width: 25%;
  min-width: 300px;
  max-height: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
#chat-debates > .chat-debates_title {
  background: violet;
  color: yellow;
  font-size: 1.15rem;
  padding: 3px 12px;
  border-radius: 12px 12px 0 0;
  position: relative;
}
#chat-debates > .chat-debates_title > .hide-chat {
  position: absolute;
  color: white;
  right: 10px;
  top: 0;
  font-weight: 800;
}
#chat-debates > .chat-debates_title > .hide-chat:hover {
  cursor: pointer;
}
#chat-debates > .chat-debates_content {
  overflow-y: scroll;
  border-radius: 12px;
  margin: 12px;
  border: 1px solid white;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-wrap: nowrap;
  min-height: 0;
}
#chat-debates > .chat-debates_content > .chat-debates_content_msg {
  margin-bottom: 7px;
  padding: 0 7px;
  color: black;
}
#chat-debates > .chat-debates_content > .chat-debates_content_msg:nth-child(odd) {
  background-color: rgba(148, 146, 7, 0.1);
  width: 100%;
}
#chat-debates > .chat-debates_content > .chat-debates_content_msg:nth-child(odd) span {
  color: red;
  font-weight: 600;
  font-style: italic;
}
#chat-debates > .chat-debates_content > .chat-debates_content_msg:nth-child(even) span {
  color: green;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.1rem;
}
#chat-debates .chat-debates_login {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: -5px 3px 7px 3px;
}
#chat-debates .chat-debates_login > button {
  width: 50px;
}
#chat-debates .chat-debates_login > input {
  width: 35%;
}

.error {
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-size: larger;
  font-weight: 800;
  background-color: rgba(255, 255, 0, 0.5);
  padding: 3px;
  border-radius: var(--radius-default);
}

.add-flex-center, footer > .footer_copy > .footer_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hide {
  display: none !important;
}

.minimize {
  height: initial !important;
}

#ui-widget-overlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100svw;
  height: 100svh;
  z-index: 1;
}

.display {
  display: block !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.bttn-style {
  color: rgb(255, 238, 0);
  background: red;
  background-size: 100%;
  transition: 0.5s;
}

.links-block {
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto;
}
.links-block > a {
  display: block;
}/*# sourceMappingURL=main.css.map */