@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Light.ttf");
}

html,
body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  color: white;
  font-size: 16px;
  box-sizing: border-box;
  font-family: Poppins;
  touch-action: pan-x pan-y;
}

#container {
  /* display: grid;
  grid-template-columns: 1fr 360px 1fr; */
  background-color: #1b1f22;
  min-height: 100vh;
}

/* LANG STARTED */
.lang {
  position: fixed;
  right: 1%;
  top: 1%;
  width: 150px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.12),
    0 1px 3px 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1;
}

.lang .lang-selected {
  display: flex;
  align-items: center;
  padding: 7px;
}

.lang .lang-dropdown {
  display: none;
  position: absolute;
  width: 150px;
  margin-top: 3px;
  left: 0;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.12),
    0 1px 3px 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.75);
}

.lang-item {
  padding: 7px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.lang img {
  width: 40px;
  height: 25px;
  margin-right: 7px;
}
/* LANG FINISHED */

/* NAV ARROW STARTED */
.nav-arrow-container {
  position: fixed;
  width: 20px;
  height: 20px;
  bottom: 12%;
  right: 5%;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.nav-arrow-container i {
  font-size: 22px;
}

.nav-arrow-container i:hover {
  cursor: pointer;
}

.nav-arrow {
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* NAV ARROW FINISHED */

.inner {
  margin: auto 0;
  grid-column-start: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.inner-fixed {
  position: fixed;
  background-color: #1b1f22;
  height: auto;
  width: 100%;
  padding-bottom: 10px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

.logo img {
  max-width: 75%;
}

.name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  padding-top: 4px;
}

.name img {
  margin-left: 5px;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: gray;
}

.bio {
  text-align: center;
  font-size: 0.8rem;
}

.content-container {
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 10px;
  justify-items: center;
  padding-bottom: 20%;
  padding-top: 70%;
}

.content-item {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px;
  color: white;
  font-size: 13px;
}

.content-item img {
  width: 85px;
  height: 85px;
  cursor: pointer;
}

.footer {
  background-color: #1b1f22;
  padding: 10px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.12),
    0 1px 3px 0 rgba(0, 0, 0, 0.2) !important;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 50px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
}

.footer .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
}

.footer .item:last-child {
  margin-right: 0;
}

.footer .item:hover {
  cursor: pointer;
}

.footer .item i {
  margin-bottom: 5px;
}

/* POPUP FOOTER STARTED */
.popup {
  position: fixed;
  bottom: -1000px;
  height: 60%;
  background-color: #1b1f22;
  transition: 0.3s bottom cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: scroll;
  touch-action: pan-x pan-y;
  background-color: #151515;
  border-radius: 5% 5% 0 0;
  width: 100%;
}

.show {
  bottom: 70px;
}

.popup .popup-title-container {

}

.popup .popup-title {
  position: fixed;
  padding: 10px 0;
}

.popup .popup-title .popup-close-button {
  margin-right: 5px;
}

.popup .popup-title span {
  margin: 0 auto;
}

.popup i {
  font-size: 1.5rem;
}

/* POPUP FOOTER FINISHED */

/* LOCK SCROLL */
.lock-scroll {
  overflow-y: hidden;
}

/* BREAKPOINTS */
@media (max-width: 360px) {
  .bio {
    font-size: 0.7rem;
  }

  .content-container {
    padding-top: 90%;
    padding-bottom: 0;
  }

  .content-container img {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 360px) {
  .bio {
    font-size: 0.7rem;
  }

  .inner-fixed {
    padding-top: 15%;
  }

  .content-container {
    padding-top: 70%;
  }
}

@media (min-width: 576px) {
  .bio {
    font-size: 1rem;
  }

  .content-container {
    padding-top: 65%;
  }
}

@media (min-width: 768px) {
  .bio {
    font-size: 1rem;
  }

  .content-container {
    padding-top: 55%;
  }
}

@media (min-width: 992px) {
  .bio {
    font-size: 1rem;
  }

  .content-container {
    padding-top: 40%;
    width: 50%;
    margin: auto;
  }
}

@media (min-width: 1200px) {
  .bio {
    font-size: 1rem;
  }

  .content-container {
    padding-bottom: 10%;
    padding-top: 35%;
    width: 50%;
    margin: auto;
  }
}

@media (min-width: 1400px) {
  .bio {
    font-size: 1rem;
  }

  .content-container {
    padding-bottom: 10%;
    padding-top: 30%;
    width: 50%;
    margin: auto;
  }
}

.popup-title{
  text-align: center;
  border-bottom: 1px solid #cccccc3d;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #151515;
}

.popup-content{
  padding: 15% 4%;
}

.text-center{
  text-align: center;
}

.notification {
  position: fixed;
  bottom: 10%;
  left: 10px;
  right: 10px;
  z-index: 101;
  border-radius: 10px;
  transition: all 250ms ease;
  background-color: #343a3f;
}

.notification.hide {
  display: none;
}


.notification .notification-icon {
  padding: 5px;
  display: block;
  background-color: #343a40
}

.notification .notification-icon i:first-child {
  margin: 0 5px 0 10px;
  font-size: 10px
}

.notification .notification-icon i:last-child {
  position: absolute;
  right: 0;
  line-height: 30px;
  width: 40px;
  text-align: center
}

.notification .notification-icon em {
  font-size: 11px;
  text-transform: uppercase;
  font-style: normal
}

.notification h1,
.notification .h1 {
  margin: 10px 15px -7px
}

.notification p {
  line-height: 15px;
  margin: 5px 15px 18px;
  color: #fff
}

.notification.show {
  transform: translateY(0%) !important
}

.is-ios.is-on-homescreen .notification.show {
  transform: translateY(30px) !important
}

.notification-android {
  left: 5px;
  right: 5px;
  top: 5px;
  border-radius: 3px
}

.notification-android i {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 35px;
  margin-left: 15px;
  line-height: 35px;
  border-radius: 35px;
  text-align: center;
  font-size: 13px
}

.notification-android h1,
.notification-android .h1 {
  padding-left: 55px
}

.notification-android p {
  padding-right: 60px;
  padding-left: 55px;
  font-size: 12px
}

.notification-android strong {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 10px;
  font-weight: 400;
  font-style: normal
}

.notification-android .notification-buttons {
  width: 100%;
  margin-left: 70px;
  padding-top: 5px;
  border-top: solid 1px rgba(255, 255, 255, .1)
}

.notification-android .notification-buttons i {
  opacity: .6;
  font-size: 11px;
  position: relative;
  float: left;
  margin: 0 10px 0 0;
  width: auto;
  transform: translateY(-22px)
}

.notification-android a {
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  font-weight: 500
}

.notification-material {
  left: 0;
  right: 0;
  top: 0;
  border-radius: 0
}

.notification-material strong {
  font-size: 10px;
  font-weight: 400
}

.notification-material em {
  text-transform: none !important
}

.notification-material .notification-icon {
  background-color: transparent !important;
  margin-bottom: -15px
}

.notification-material img {
  position: absolute;
  width: 50px;
  border-radius: 50px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%)
}

.notification-material p {
  padding-right: 50px
}

.profil-image{
  border-radius: 20%;
  height: 100px;
  width: auto;
}

.bank_border {
  border:1px solid rgba(204, 204, 204, 0.33);
  padding:12px;
  margin-top:8px;
  line-height: 20px;
}
.bank_border .title{
  text-align: center;
  border-bottom: 1px solid #cccccc7a;
}
.bank_border .copybutton{
  position: absolute;
  right: 8%;
  margin-top: -40px;
  color: #77bfe9;
}
.bank_border span, strong {
  text-decoration: none !important;
  color:inherit !important;
  font-size: 0.9rem;
}
.bank_border span[x-apple-data-detectors]{
  text-decoration: none !important;
  color:inherit !important;
}
.bank_border:first-child{
  margin-top: 0px;
}

.company_border {
  border:1px solid rgba(204, 204, 204, 0.33);
  padding:12px;
  margin-top:8px;
  line-height: 20px;
}
.company_border .title{
  text-align: center;
  border-bottom: 1px solid #cccccc7a;
}
.company_border .copybutton{
  position: absolute;
  right: 8%;
  margin-top: -40px;
  color: #77bfe9;
}
.company_border span, strong,a {
  text-decoration: none !important;
  color:inherit !important;
  font-size: 0.9rem;
}
.company_border span[x-apple-data-detectors]{
  text-decoration: none !important;
  color:inherit !important;
}
.company_border:first-child{
  margin-top: 0px;
}