/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.3em;
}

a {
  color: #00A1ED;
  text-decoration: none;
}

a:hover {
  color: #0399df;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 26px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #4154f1;
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4154f1;
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: #4154f1;
  background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i {
  color: #4154f1;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

/* MY STUFF
______________________________________________________________*/

/*PC ALL*/

.container {
  display: flex;
  min-width: 40vh;
  min-height: 35vh;
  justify-content: center;
  width: 100%;
  height: 92vh;
}

.main-card {
  position: relative;
  flex-shrink: 1;
  min-width: 40vh;
  max-width: 55vh;
  min-height: 35vh;
  max-height: 85vh;
  border: 4px solid rgba(255, 255, 255, 0.11);
  border-radius: 80px;
  opacity: 0.9;
}

.logo-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 100%;
  width: 14%;
  max-width: 14%;
}

.logo-card .logo {
  background: transparent url(../img/logo-gost.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  height: 38%;
  min-width: 280px;
  min-height: 62px;
}

.main-div {
  display: flex;
  flex-direction: column;
  line-height: 1.2em;
  background-color: transparent;
  width: 94%;
  height: 87%;
}

h5 {
  font-family: "Montserrat", sans-serif;
  line-height: 0.4em;
  font-weight: 300;
  opacity: 0.8;
  font-size: 1.25em;
}

.forgot-slight-left {
  padding-left: 21%;
  font-family: "Montserrat", sans-serif;
  line-height: 5em;
  font-size: 0.8em;
  font-weight: 500;
  opacity: 0.8;
  position: relative;
  top: -3%;
}

.form-general {
  position: relative;
  flex-shrink: 1;
  justify-content: center;
}

.form-field {
  background-color: transparent;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.7em;
  padding: 10px 20px;
  border: 2.2px solid rgba(255, 255, 255, 0.25);
  border-radius: 70px;
  text-align: left;
  min-width: 19rem;
}

.form-field:focus {
  color: #00A1ED;
  border: #00A1ED;
}

.log-in {
  position: relative;
  flex-shrink: 1;
  flex-grow: 1;
  width: 100%;
  height: 7.5%;
}

.button-blue {
  white-space: nowrap;
  background-color: #00A1ED;
  position: absolute;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.8em;
  padding: 1.2em 1em;
  border: none;
  border-radius: 70px;
  min-width: 9em;
  cursor: pointer;
  transition: background-color 0.1s linear;
}

.button-blue:hover {
  background-color: #19b6ff;
}

.button-blue-disabled {
  white-space: nowrap;
  background-color: #00A1ED;
  position: absolute;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.8em;
  padding: 1.2em 1em;
  border: none;
  border-radius: 70px;
  min-width: 9em;
  opacity: 0.5;
}

.button-green {
  white-space: nowrap;
  background-color: #2B9D09;
  position: absolute;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.8em;
  padding: 1.2em 1em;
  border: none;
  border-radius: 70px;
  min-width: 9em;
  cursor: pointer;
  transition: background-color 0.1s linear;
}

.button-green:hover {
  background-color: #44af24;
}

.button-red {
  white-space: nowrap;
  background-color: #FF0059;
  position: absolute;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.8em;
  padding: 1.2em 1em;
  border: none;
  border-radius: 70px;
  min-width: 9em;
  cursor: pointer;
  transition: background-color 0.1s linear;
}

.button-red:hover {
  background-color: #e6437c;
}

.button-white-tr:focus,
.button-white-tr:hover {
  border: 1px solid rgb(216, 216, 216);
  color: rgb(216, 216, 216);
}

.button-tr-blue {
  display: flex;
  width: 14%;
  height: 29%;
  color: #00A1ED;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8em;
  padding: 10px 20px;
  border: 1px solid rgb(0, 160, 235, 0.2);
  border-radius: 70px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.button-white-tr {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border: 1px solid rgb(255 255 255);
  border-radius: 70px;
  cursor: pointer;
  background: transparent;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8em;
  white-space: nowrap;
  transition: background-color 0.1s linear;
}

.button-blank {
  background: transparent;
  border: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.sign-up {
  position: relative;
  flex-shrink: 1;
  width: 100%;
  height: 15%;
}

.logo-card-powered {
  position: relative;
  flex-shrink: 1;
  width: 70%;
  height: 50%;
  left: 24%;
  font-weight: 300;
}

.logo-powered {
  position: relative;
  background: transparent url(../img/logo-poweredby.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  height: 53%;
  width: 53%;
  opacity: 0.8;
  top: -35%;
  width: 60%;
}

.g1 {
  position: relative;
  background: transparent url('../img/404-g1.svg') 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  height: 12%;
  opacity: 1;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  top: -0.5%;
  position: fixed;
  min-width: 40vh;
  min-height: 100px;
  height: 123px;
  width: 99.9%;
  background-color: #1A1D1F;
  z-index: 500;
  left: 0.01%;
}

.navbar-right {
  position: relative;
  left: -1%;
  width: 9%;
  height: 56%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  min-height: 100px;
  min-width: 150px;
}

.notification {
  background: transparent no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 55%;
  height: 63%;
  overflow: hidden;
  padding-right: 5px;
}

.nav-profile-pic {
  width: 75px;
  height: 75px;
  overflow: hidden;
  border-radius: 50%;
}

.nav-profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.container-bot {
  height: 910px;
  width: 100%;
  top: 119px;
  position: fixed;
  display: flex;
  align-items: stretch;
}

.sidebar {
  flex: 0 0 15%;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: relative;
  float: left;
  height: 1023px;
  top: -3px;
  left: 0%;
  min-width: 200px;
  width: 15%;
  z-index: 1;
  transition: all 0.3s;
  overflow-y: auto;
  background-color: #1A1D1F;
  border-top: 1px solid black;
  margin-right: 10px;
  margin-top: 4px;
  padding: 5px 5px;
}

.main-content {
  flex: 1;
  overflow: auto;
  /*height: 1023px;*/
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.side p.active {
  display: none;
  color: blue;
}

.side {
  display: block;
  position: relative;
  background: transparent;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  height: 7%;
  transition: background-color 0.1s linear;
}

.side:hover {
  background-color: #252b2f;
}

.side-text {
  font-weight: 400;
  position: relative;
  width: 50%;
  line-height: 1.1em;
  font-size: 1.2em;
  color: #ffffff;
  opacity: 0.25;
  left: 60%;
  top: -33%;
  transform: translate(-50%, -50%);
}

.titlebar {
  min-width: 40vh;
  display: flex;
  min-height: 10vh;
  height: 10vh;
  width: 94%;
  background-color: transparent;
  align-items: center;
}

.profile-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 400px;
  width: 100%;
  background-color: #1A1D1F;
  border-bottom: 3px solid black;
  min-height: 300px;
}

.profile-text-group {
  width: 400px;
  height: 84px;
  margin-top: 10px;
}

.profile-pic-blank {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 200px;
  border-radius: 50%;
  height: 200px;
}

.profile-pic-blank img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.profile-text {
  text-align: center;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.2em;
}

.profile-main {
  /*height: 488px;*/
  height: 315px;
  min-width: 800px;
  display: flex;
  justify-content: center;
  background-color: #1A1D1F;
  border-top-width: 1px;
  border-top-color: #000000;
}

.profile-info {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: column;
  width: 40%;
  left: -8%;
}

.info-box {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  width: 72%;
  height: 50%;
  top: 35%;
  left: -4%;
  white-space: nowrap;
  line-height: 4em;
  font-size: 1em;
  font-weight: 300;
}

.info-box-q {
  flex: 0 0 30%;
}

.info-box-item {
  flex: 1;
  height: 50%;
  top: 35%;
  left: 8%;
  line-height: 4em;
  font-size: 1em;
  font-weight: 300;
}

.profile-list {
  display: flex;
  width: 35%;
  flex-direction: column;
  justify-content: center;
}

.list-box {
  width: 90%;
  height: 50%;
  line-height: 4em;
  font-size: 1em;
  font-weight: 300;
  top: -6%;
  position: relative;
}

.youtube {
  background: transparent url(../img/logo-Youtube.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 13%;
  height: 50%;
}

.youtube-remove {
  background: transparent url(../img/logo-YoutubeRemove.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 16%;
  height: 50%;
  cursor: pointer;
  border: none;
}

.twitch {
  background: transparent url(../img/logo-Twitch.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 13%;
  height: 50%;
}

.twitch-remove {
  background: transparent url(../img/logo-TwitchRemove.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 13%;
  height: 50%;
  left: 23%;
  cursor: pointer;
  border: none;
}

.steam {
  background: transparent url(../img/logo-Steam.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 13%;
  height: 50%;
}

.steam-remove {
  background: transparent url(../img/logo-SteamRemove.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 15%;
  height: 30%;
  cursor: pointer;
  border: none;
}

.platform-icons {
  height: 34%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  min-width: 530px;
}

.add-butt {
  position: relative;
  background: transparent url(../img/profile-add.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 50px;
  height: 35px;
  transform: translate(-50%, -50%);
  border: none;
  cursor: pointer;
}

.add-butt-text {
  position: relative;
  left: 150%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1em;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1.1em;
  transition: background-color 0.1s linear;
}

.add-butt-text:hover,
.add-butt-text:active {
  color: #19b6ff;
}

.add-platform {
  white-space: nowrap;
  background-color: transparent;
  position: absolute;
  color: #00A1ED;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8em;
  padding: 1em 1em;
  border: 1px solid #00A1ED;
  border-radius: 70px;
  cursor: pointer;
  min-width: 13em;
  transition: color 0.1s linear, border 0.1s linear;
}

.add-platform:hover {
  color: #35bfff;
  border: 1px solid #35bfff;
}

.profile-button {
  display: flex;
  position: relative;
  width: 8%;
  height: 15%;
  top: 45%;
  left: -1.5%;
}

.modal-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal {
  padding: 1rem;
  margin: 0.5rem;
  background: #1A1D1F;
  position: fixed;
  z-index: 1055;
  overflow-x: hidden;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 89px;
  min-width: 500px;
  min-height: 300px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  background-clip: padding-box;
}

.modal-header {
  position: absolute;
  background: transparent;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 25%;
}

.button-close {
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.1ms linear;
}

.button-close:hover,
.button-close:active {
  opacity: 1;
}

.modal-title {
  font-family: "Montserrat", sans-serif;
  line-height: 0.4em;
  font-weight: 300;
  opacity: 0.8;
  position: absolute;
  left: 50%;
  top: 105%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  white-space: nowrap;
}

.modal-body {
  position: absolute;
  background: transparent;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 75%;
  top: 25%;
}

.modal-input {
  position: relative;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  min-width: 18rem;
  height: 20%;
}

.modal-submit {
  left: 50%;
  top: 72%;
  transform: translate(-50%, -50%);
}

.modal-pic-def {
  position: relative;
  width: 50%;
  height: 65%;
  left: 25%;
  top: 35%;
  transform: translate(-50%, -50%);
  border-right: #000000;
  border-right-width: 0.14em;
  border-right-style: solid;
  opacity: 0.7;
}

.modal-pic-upload {
  position: relative;
  width: 50%;
  height: 65%;
  left: 75%;
  top: -45%;
  transform: translate(-50%, -50%);
}

.modal-pic-upload p:hover {
  border-color: #b4b4b4;
}


.pp-g1 {
  position: relative;
  background: transparent url(../img/g1.svg) 0% 0% no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
  height: 35%;
  width: 20%;
  opacity: 0.5;
  transition: opacity 0.1s linear;
}

.pp-g1:focus,
.pp-g1:hover,
.pp-g2:focus,
.pp-g2:hover,
.pp-g3:focus,
.pp-g3:hover,
.pp-g4:focus,
.pp-g4:hover,
.pp-g5:focus,
.pp-g5:hover,
.pp-g6:focus,
.pp-g6:hover {
  opacity: 1;
}

.pp-g2 {
  position: relative;
  background: transparent url(../img/g2.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  border: none;
  height: 35%;
  width: 20%;
  opacity: 0.5;
  transition: opacity 0.1s linear;
}

.pp-g3 {
  position: relative;
  background: transparent url(../img/g3.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  border: none;
  height: 35%;
  width: 20%;
  opacity: 0.5;
  transition: opacity 0.1s linear;
}

.pp-g4 {
  position: relative;
  background: transparent url(../img/g4.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  border: none;
  height: 35%;
  width: 20%;
  opacity: 0.5;
  transition: opacity 0.1s linear;
}

.pp-g5 {
  position: relative;
  background: transparent url(../img/g5.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  border: none;
  height: 35%;
  width: 20%;
  opacity: 0.5;
  transition: opacity 0.1s linear;
}

.pp-g6 {
  position: relative;
  background: transparent url(../img/g6.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  border: none;
  height: 35%;
  width: 20%;
  opacity: 0.5;
  transition: opacity 0.1s linear;
}

.top-div {
  position: relative;
  top: -0.3%;
  height: 25%;
  background-color: #1A1D1F;
  display: flex;
}

.mid-div {
  position: relative;
  top: -0.3%;
  height: 100%;
  background-color: #1A1D1F;
  display: flex;
}

.bot-div {
  height: 75%;
  display: flex;
  justify-content: center;
  background-color: #1A1D1F;
  border-top-width: 1px;
  border-top-color: #000000;
}

.text-lg {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  font-size: 1.7em;
  font-weight: 300;
  line-height: 1.2em;
}

.text-md {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.2em;
}

.text-sm {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.2em;
}

.not-testing {
  display: block;
  position: relative;
  left: 82%;
  height: 80%;
  width: 10%;
}

.testing {
  display: none;
  position: relative;
  left: 82%;
  height: 80%;
  width: 10%;
}

.before-stream {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
}

.during-stream {
  display: none;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
}

.during-test {
  display: none;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
}

.toast-container {
  z-index: 1200;
  position: fixed;
  top: 0.5%;
  right: 0.1%;
  max-width: 200px;
  transition: opacity 1s ease 0s;
  opacity: 0;
  width: max-content;
  max-width: 100%;
  padding: 0.75em 0.5em;
  background-color: #1A1D1F;
  border-radius: 5px;
  background-clip: padding-box;
  vertical-align: middle;
  height: 1%;
  border: solid 1px;
  border-color: #3f4549;
}

.toast-body {
  position: relative;
  height: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  line-height: 0.4em;
  font-weight: 300;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  padding: 7px 5px;
  transform: translate(-50%, -50%);
  word-wrap: break-word;
}

.out-container {
  display: flex;
  min-width: 40vh;
  min-height: 35vh;
  justify-content: center;
  width: 100%;
  height: 92vh;
  align-items: end;
}

.out-main-card {
  width: 30%;
  height: 90%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  flex-direction: column;
  min-width: 400px;
  min-height: 600px;
}

.out-logo {
  background: transparent url(../img/logo-gost.svg) no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 50%;
  height: 37%;
}

.out-greeting {
  text-align: center;
  font-size: 22px;
  line-height: 26px;
  font-weight: 300;
}

.out-form {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 46%;
}

.out-form form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 60%;
}

.out-form-field {
  border: 0.4px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: transparent;
  width: 100%;
  height: 41px;
  text-align: left;
  text-indent: 14px;
  font-size: 12px;
  line-height: 14px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;

}

.out-form form .out-button-blue {
  cursor: pointer;
  height: 41px;
  border-radius: 100px;
  color: #ffffff;
  background-color: #00A1ED;
  font-size: 12px;
  line-height: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.out-form-bot {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.out-form a {
  font-size: 12px;
  line-height: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.out-sign-up {
  align-self: center;
  top: -11%;
  display: flex;
  flex-direction: row;
  width: 112px;
  height: 41px;
}

.out-sign-up .out-button-tr-blue {
  cursor: pointer;
  text-align: center;
  width: 100%;
  height: 100%;
  border: 0.4px solid;
  border-radius: 100px;
  border-color: #00A1ED;
  color: #00A1ED;
  background-color: transparent;
  line-height: 41px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.out-logo-card-powered {
  display: flex;
  height: 15%;
  flex-direction: row;
  width: 100%;
  align-items: baseline;
  justify-content: center;
  font-size: 15px;
  line-height: 18px;
}

.out-logo-card-powered .out-logo-powered {
  margin-left: 10px;
}

.out-logo-powered {
  width: 200px;
  height: 17px;
  background: transparent url(../img/logo-poweredby.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
}

.out-form form .out-button-blue:hover {
  background-color: #19b6ff;
}

.out-sign-up .out-button-tr-blue:hover {
  border-color: #19b6ff;
}

.main-div-404 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 35%;
  background-color: transparent;
  line-height: 26px;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  min-width: 400px;
  min-height: 600px;
}

.g1-404 {
  background: transparent url(../img/404-g1.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 156px;
  top: -12%;
  height: 134px;
  position: relative;
  min-width: 156px;
  min-height: 134px;
}

.mid-div-404 {
  position: relative;
  justify-content: space-evenly;
  display: flex;
  flex-direction: column;
  height: 41%;
  top: -7%;
  min-height: 21%;
}

.home-404 {
  width: 126px;
  height: 41px;
  cursor: pointer;
  border-radius: 100px;
  color: #ffffff;
  background-color: #00A1ED;
  font-size: 12px;
  line-height: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.home-404:hover {
  background-color: #19b6ff;
}

.out-button-blue {
  padding: 10px 30px;
  white-space: nowrap;
  margin-top: 10px;
}

.nav-menu-container {
  background: transparent url(../img/nav-menu.svg) 0% 0% no-repeat padding-box;
  background-size: contain;
  background-position: center;
  width: 115px;
  height: 108px;
  display: none;
  z-index: 2500;
  position: absolute;
  top: 89px;
  right: -14px;
}

.nav-menu-list a {
  line-height: 25px;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: flex;
  margin: 5px 0;
  text-decoration: none;
  color: #ffffff;
}

.nav-menu-list {
  display: flex;
  width: 73%;
  white-space: nowrap;
  justify-content: flex-start;
  flex-direction: column;
  padding-left: 15px;
  padding-top: 25px;
}

.open-nav {
  background: transparent;
  border: none;
  cursor: pointer;
}
