:root {
  --pink: #9f11b7;
  --gray: #4D4D4D;
}

body {}

.text-gray {
  color: var(--gray);
}

.bottom-modal {
  position:fixed;
  top:auto;
  right:auto;
  left:auto;
  bottom:0;
}

.text-pink {
  color: var(--pink);
}

p {
  margin: 0;
}

.fixed-top{
  z-index: 1000;
}

#main_materials .article iframe {
  width: 100% !important;
  max-width: 640px;
}

.article img {
  max-width: 100%;
  height: auto
}
.page {
  padding-top: 80px;
  min-height: calc(100vh - 104px - 1rem);
}

.capitalize-letter::first-letter{
  text-transform: uppercase;
}

.kind-block {
  cursor: pointer;
  border-radius: 7px;
  border: 1px solid #000000;
  padding: 3px 15px;
  text-align: center;
  margin: 1rem 0;
  width: 100%;
  text-transform: uppercase;
}

.kind-block:hover {
  background-color: #c8a4cb;
}

.material {
  padding: 1rem;
  background: #fff;
  margin: 0.5rem;
}

@media (min-width: 768px) {
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

.title-wrapper{
  color: var(--gray);
}

.article {
  overflow: hidden;
}

.block-title {}

.hide {
  display: none;
}

.block {}

footer {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
}

.brand-block {
  line-height: 0;
}

.header-logo {
  height: 50px;
  width: 185px;
  background: url(../img/logo.png) no-repeat;
  padding: 0;
  margin-right: 0;
  background-size: contain;
}
.header-logo-lext {
  padding: 0;
  line-height: 1rem;
  text-align: center;
  text-decoration: none !important;
  color: var(--gray) !important;
  margin-right: 16px;
}
/* @media (max-width: 991px) {
  .header-logo {
    height: 50px;
    width: 50px;
    background: url(../img/logo-mob.png) no-repeat;
    padding: 0;
  }
} */
header .navbar-nav {
  max-width: 650px;
  margin: 0 auto;
}

header .nav-item .nav-link,
#navbarNav .dropdown-item {
  font-size: 1.3rem;
  color: var(--gray) !important;
  font-weight: bold;
}
header .nav-item .nav-link:hover,
#navbarNav .dropdown-item:hover {
  color: var(--pink) !important;
}

header .nav-item .nav-link:active,
#navbarNav .dropdown-item:active {
  background: none !important;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(55,92,170, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.loader-page {
  position: absolute;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  width: 100vw; 
  height: 100vh;
  top: 0;
}

.loader-label {
  position: absolute;
  width: 300px;
  height: 60px;
  left: calc(50vw - 150px);
  top: calc(50vh + 60px);
  color: white;
  text-align: center;
}

.loader {
  border: 16px solid var(--light);
  border-top: 16px solid var(--dark);
  border-bottom: 16px solid var(--dark);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: calc(50vh - 72px) auto;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* @media (max-width: 991px) {
  .material img {
    width: 100%;
  }
} */

.auth-block {
  display: grid;
  color: var(--gray);
  padding-left: .5rem;
}

.auth-block a{
  color: var(--gray);
}

.pointed {
  cursor: pointer;
}

.privacy-terms-confirm {
  font-size: smaller;
  max-width: 275px;
}