@font-face {
  font-family: 'south';
  src: url('./fonts/south-regular-webfont.woff') format('woff'),
    url('./fonts/south-regular-webfont.ttf') format('ttf'),
    url('./fonts/south-regular-webfont.svg') format('svg');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'south';
  src: url('./fonts/south-bold-webfont.woff') format('woff'),
    url('./fonts/south-bold-webfont.ttf') format('ttf'),
    url('./fonts/south-bold-webfont.svg') format('svg');
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
  font-family: south;
  background-color: black;
  color: #fff;
}

footer {
  background: black;
  padding: 15px;
}

header {
  text-align: center;
  padding-bottom: 10px;
  background: #6a26f5;
  padding: 15px;
}

img {
  height: 100%;
  width: 100%;
}

footer {
  color: #9999;
  font-size: 12px;
}

.ios header,
.ios footer,
.android header,
.android footer {
  display: none;
}

.title-name {
  color: #4dff9d;
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}

.container {
  width: 60%;
  margin: 50px auto;
  direction: rtl;
  font-family: south;
  font-weight: 400;
}

.toggle {
  border-bottom: 2px solid #ccc;
}

.toggle-title {
  border: 0px;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  margin-right: 30px;
  position: relative;
  text-align: right;
}

.toggle-title:before {
  content: '+';
  color: #4dff9d;
  font-style: normal;
  margin-left: 10px;
  position: absolute;
  right: -15px;
  top: 20px;
  font-size: 22px;
}

.active:before {
  content: '-';
}

.logo-container {
  margin: auto;
  height: 40px;
  width: 100px;
}

.logo {
  width: 100px;
  height: 40px;
  background: url('./logo.png') no-repeat center;
  background-size: contain;
}

.toggle-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: #fff;
  line-height: 1.3;
}

.chat-button {
  visibility: hidden !important;
  opacity: 0 !important;
}

.toggle-section-title {
  font-size: 1.5em;
  /* margin-top: 20px; */
}

@media (max-width: 768px) {
  .container {
    width: 80%;
  }
}

@media (max-width: 360px) {
  .container {
    width: 90%;
  }
}

/* return to registration page button */

.go-back__container {
  margin-right: auto;
  margin-bottom: 20px;
  display: none;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  width: max-content;
  cursor: pointer;
}

@media screen and (max-width: 1025px) {
  .go-back__container {
    display: flex;
  }
}

.go-back__icon {
  width: 20px;
  height: 20px;
  margin-right: 20px;

  transform: rotate(90deg);
}