.list {
  color: #4a4a4a;
  flex-direction: column;
  display: flex
}

.list.has-hidden-images .list-item-image {
  display: none
}

.list.has-hoverable-list-items .list-item:hover {
  background-color: #fafafa
}

.list.has-overflow-ellipsis .list-item-content {
  min-width: 0;
  max-width: calc(var(--length)*1ch)
}

.list.has-overflow-ellipsis .list-item-content>* {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden
}

@media (hover:hover) {
  .list:not(.has-visible-pointer-controls) .list-item-controls {
    opacity: 0;
    visibility: hidden
  }
}

.list-item {
  align-items: center;
  transition: background-color .125s ease-out;
  display: flex;
  position: relative
}

@media (hover:hover) {
  .list-item:hover .list-item-controls, .list-item:focus-within .list-item-controls {
    opacity: initial;
    visibility: initial
  }
}

.list-item:not(.box) {
  padding: .75em
}

.list-item:not(:last-child):not(.box) {
  border-bottom: 1px solid #dbdbdb
}

@media screen and (max-width:768px) {
  .list:not(.has-overflow-ellipsis) .list-item {
    flex-wrap: wrap
  }
}

.list-item-image {
  flex-shrink: 0;
  margin-right: .75em
}

@media screen and (max-width:768px) {
  .list-item-image {
    padding: .5rem 0
  }
}

.list-item-content {
  flex-direction: column;
  flex-grow: 1;
  display: flex
}

@media screen and (max-width:768px) {
  .list-item-content {
    padding: .5rem 0
  }
}

.list-item-title {
  color: #363636;
  font-weight: 600
}

.list-item-description {
  color: #7a7a7a
}

.list-item-controls {
  flex-shrink: 0;
  transition: opacity .125s ease-out
}

@media screen and (max-width:768px) {
  .list-item-controls {
    flex-wrap: wrap;
    padding: .5rem 0
  }
}

@media screen and (min-width:769px), print {
  .list-item-controls {
    padding-left: .75em
  }

  .list:not(.has-visible-pointer-controls) .list-item-controls {
    height: 100%;
    align-items: center;
    padding-right: .75em;
    display: flex;
    position: absolute;
    right: 0
  }
}

/* ^bulma-list https://bluefantail.github.io/bulma-list/ */
/*! @creativebulma/bulma-badge v1.0.1 | (c) 2020 Gaetan | MIT License | https://github.com/CreativeBulma/bulma-badge */
.badge {
  background-color: #00d1b2;
  border: 2px solid transparent;
  border-radius: 14px;
  box-shadow: 0 0 0 2px #fff;
  color: #fff;
  font-size: .65rem;
  height: 14px;
  line-height: 8px;
  min-width: 14px;
  overflow: hidden;
  padding: .05rem .15rem;
  position: absolute;
  right: 0;
  text-overflow: ellipsis;
  top: 0;
  transform: translate(50%, -50%);
  white-space: nowrap
}

.badge.is-outlined {
  background-color: #fff;
  border-color: #00d1b2;
  color: #00d1b2
}

.badge.is-left {
  bottom: 0;
  left: 0;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%)
}

.badge.is-right {
  bottom: auto;
  left: auto;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%)
}

.badge.is-top {
  left: 50%
}

.badge.is-top, .badge.is-top-left {
  bottom: auto;
  right: auto;
  top: 0;
  transform: translate(-50%, -50%)
}

.badge.is-top-left {
  left: 0
}

.badge.is-top-right {
  bottom: auto;
  left: auto;
  right: 0;
  top: 0;
  transform: translate(50%, -50%)
}

.badge.is-bottom {
  left: 50%
}

.badge.is-bottom, .badge.is-bottom-left {
  bottom: 0;
  right: auto;
  top: auto;
  transform: translate(-50%, 50%)
}

.badge.is-bottom-left {
  left: 0
}

.badge.is-bottom-right {
  bottom: 0;
  left: auto;
  right: 0;
  top: auto;
  transform: translate(50%, 50%)
}

.badge.is-white:not(.is-outlined) {
  background-color: #fff;
  color: #0a0a0a
}

.badge.is-white.is-outlined {
  border-color: #fff;
  color: #fff
}

.badge.is-black:not(.is-outlined) {
  background-color: #0a0a0a;
  color: #fff
}

.badge.is-black.is-outlined {
  border-color: #0a0a0a;
  color: #0a0a0a
}

.badge.is-light:not(.is-outlined) {
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, .7)
}

.badge.is-light.is-outlined {
  border-color: #f5f5f5;
  color: #f5f5f5
}

.badge.is-dark:not(.is-outlined) {
  background-color: #363636;
  color: #fff
}

.badge.is-dark.is-outlined {
  border-color: #363636;
  color: #363636
}

.badge.is-primary:not(.is-outlined) {
  background-color: #00d1b2;
  color: #fff
}

.badge.is-primary.is-outlined {
  border-color: #00d1b2;
  color: #00d1b2
}

.badge.is-primary.is-light {
  color: #00947e
}

.badge.is-primary.is-light:not(.is-outlined) {
  background-color: #ebfffc
}

.badge.is-primary.is-light.is-outlined {
  border-color: #00d1b2
}

.badge.is-link:not(.is-outlined) {
  background-color: #3273dc;
  color: #fff
}

.badge.is-link.is-outlined {
  border-color: #3273dc;
  color: #3273dc
}

.badge.is-link.is-light {
  color: #2160c4
}

.badge.is-link.is-light:not(.is-outlined) {
  background-color: #eef3fc
}

.badge.is-link.is-light.is-outlined {
  border-color: #3273dc
}

.badge.is-info:not(.is-outlined) {
  background-color: #3298dc;
  color: #fff
}

.badge.is-info.is-outlined {
  border-color: #3298dc;
  color: #3298dc
}

.badge.is-info.is-light {
  color: #1d72aa
}

.badge.is-info.is-light:not(.is-outlined) {
  background-color: #eef6fc
}

.badge.is-info.is-light.is-outlined {
  border-color: #3298dc
}

.badge.is-success:not(.is-outlined) {
  background-color: #48c774;
  color: #fff
}

.badge.is-success.is-outlined {
  border-color: #48c774;
  color: #48c774
}

.badge.is-success.is-light {
  color: #257942
}

.badge.is-success.is-light:not(.is-outlined) {
  background-color: #effaf3
}

.badge.is-success.is-light.is-outlined {
  border-color: #48c774
}

.badge.is-warning:not(.is-outlined) {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, .7)
}

.badge.is-warning.is-outlined {
  border-color: #ffdd57;
  color: #ffdd57
}

.badge.is-warning.is-light {
  color: #947600
}

.badge.is-warning.is-light:not(.is-outlined) {
  background-color: #fffbeb
}

.badge.is-warning.is-light.is-outlined {
  border-color: #ffdd57
}

.badge.is-danger:not(.is-outlined) {
  background-color: #f14668;
  color: #fff
}

.badge.is-danger.is-outlined {
  border-color: #f14668;
  color: #f14668
}

.badge.is-danger.is-light {
  color: #cc0f35
}

.badge.is-danger.is-light:not(.is-outlined) {
  background-color: #feecf0
}

.badge.is-danger.is-light.is-outlined {
  border-color: #f14668
}

.tabs li {
  position: relative
}


.badge {
  box-shadow: initial;
  height: 18px;
  width: 18px;

  border-radius: 18px;
  font-size: 0.85rem;
  height: 18px;
  line-height: 12px;
  min-width: 18px;
}

html, body {
  /* #65B4F9; */
  background-color: #5091ff;
  color: white;
  font-family: 'Roboto', sans-serif;

  overflow: initial;
  position: initial;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: initial;
  margin: 0;
  padding: 0;

}




.bodyBg {
  background-color: #5091ff;
}

.title, .subtitle, .p, .label {
  color: white;
}

.radio:hover, .checkbox:hover, a:hover {
  text-decoration: none;
}

.box {
  color: white;
  background-color: rgb(255 255 255 / 10%)
}

.form {
  max-width: 300px;
  text-align: center;
  margin: auto;
}

form a {
  text-decoration: underline;
  color: white;
}

.label {
  font-weight: initial
}



.displayAchievementBg {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.displayAchievementWrp {
  position: fixed;
  z-index: 101;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.displayAchievement {
  min-width: 280px;
  background: white;
  -webkit-box-shadow: 0px 0px 90px 55px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 0px 90px 55px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 0px 90px 55px rgba(0, 0, 0, 0.55);
}

.achvLock .icon {
  width: 5rem;
  height: 5rem;
}

.achvLock .icon i {
  font-size: 4rem;
}

.shakeAnim {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;
  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}





.containerWrp {
  display: inline-flex;
  align-content: center;
  width: 100%;
}

.contentWrp {
  max-width: 800px;
  flex-grow: 1;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.soniniai {
  flex-grow: 1;
  min-width: 160px;
  width: 160px;
  min-height: 600px;
  /* height: 600px; */
}

.soniniai.kairys {
  text-align: right;
  margin-right: 32px;
}

.soniniai.desinys {
  text-align: left;
  margin-left: 32px;
}

@media (max-width: 1200px) {
  .soniniai {
    display: none;
  }
}

.viduriniai {
  margin-top: 5px;
  min-width: 200px;
  width: 100%;
  min-height: 80px;
  max-height: 200px;
}

.header {
  background-color: rgb(255 255 255 / 10%);
  width: 100%;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.footer {
  margin: auto;
  text-align: center;
  background-color: initial;
}

.footer a, .footer a:visited {
  color: white;
  opacity: 0.75;
}

.footer .socials a, .footer .socials a:visited{
  color: black;
  opacity: 1;
  margin: 1px;
}

.footer .socials a:hover{
  color: black;
  opacity: 0.75;
}





.topNav {
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 10px;
  margin: auto;
  width: 100%;

  max-width: 600px;
}

.topNav .topNavButton {
  display: inline-block;
  text-decoration: none;
  /* height: 60px; */
  width: 100%;
  color: white;
  padding: 0.75rem;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;

  text-shadow: 2px 2px 3px rgb(0 0 0 / 25%);
}

.topNav .topNavButton:hover {
  background: rgba(0, 0, 0, 0.025);
}

.topNav .topNavButton div {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

.topNav .topNavButton div .fa-solid {
  font-size: 1.8rem;
}

.topNav .topNavButton div .homeBtn {
  max-height: 1.9rem;
}

.topNav .topNavButton div span {
  font-size: 1rem;
  text-transform: none;
}

.topNav.desktop {
  max-width: 600px;
}




.viduriniai {
  margin-top: 5px;
  min-width: 200px;
  width: 100%;
  min-height: 80px;
  max-height: 200px;
}

.shares .button {
  margin: 0.1rem;
}


/* #notificationsDiv.fullscreen {
  width: 100vw;
  height: calc(100vh - 56px);
  position: fixed;
  top: 56px;
  left: 0;
  z-index: 1000;
}

#notificationsDiv.center-300px {
  width: 300px;
  margin: 0 auto;
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
} */


#notificationsDiv {
  /* position: absolute; */
  /* top: 58px; */
  z-index: 1000;

  max-height: calc(100% - 62px);

  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.35);

  border-radius: 12px;
  overflow: hidden;
  flex-direction: column;
}

#notificationsDiv .list-item {
  padding: 0;
  flex-wrap: nowrap;
}

#notificationsDiv .unseen {
  background-color: #d4e4ff;
}

#notificationsDiv .list-item .list-item-content {
  padding: 0.75rem;
}

#notificationsDiv .list-item .list-item-description {
  color: black;
}

#notificationsDiv .list-item .list-item-image {
  margin-right: 0;
  /* padding: 0; */
}

#notificationsDiv.is-active {
  display: flex !important;
}

#notificationsDivList {
  overflow-y: scroll;
  height: 100%;
}

@media (min-width: 768px) {
  #notificationsDiv {
    width: 400px;
    /* margin: 0 auto; */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  #notificationsDiv {
    width: 100vw;
    height: calc(100% - 62px);
    position: fixed;
    left: 0;

  }
}

/* #topLogo, #topLogo a, #topLogo a:hover, #topLogo a:visited {
  font-size: 1.5em;
  text-align: center;
  color: white;
  display: inline-block;
  font-family: 'Catamaran', sans-serif;
  padding-top: 5px;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  margin: 5px auto;
}

#topLogo .dotcom {
  color: #d1d1d1;
}

#topLogo img {
  max-height: 40px;
} */

.buttonCont {
  max-width: 900px;
  margin: auto;
  margin-top: 15px;
}

/* .headLogo:hover,  .headLogo a */
.headLogo {
  font-size: 1.8em;
  text-align: left;
  color: white;
  float: left;
  display: block;
  margin-left: 40px;
  margin-top: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.headLogo:hover, .headLogo:visited {
  color: white;
  text-decoration: none;
}


.headLogo .upperHead {
  font-weight: 300;
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.05em;
}

.headLogo .lowerHead {
  font-size: 1.5em;
  line-height: 0.7em;
  font-weight: 700;
  font-family: 'Merriweather Sans', sans-serif;
}

#yesbtn {
  background-image: url("/assets/images/1.png");
  /* background-image: url("/assets/images/ranka_2022_2.svg"); */

  /* background-size: 80%; */
  background-repeat: no-repeat;
  background-position: center;

  background-size: contain;
  max-width: 600px;
  max-height: 270px;
  width: 100%;
  height: 270px;
  height: 45vw;
  margin: auto;
  padding: 0 0 0 0;
  display: block;
}

#yesbtn:hover {
  background-image: url("/assets/images/2.png");

  /* background-image: url("/assets/images/ranka_2022_2_press.svg"); */
}


#dilemma {
  margin-top: 15px;
  margin-bottom: 15px;
}

.rect {
  min-height: 60px;
  height: auto;
  padding: 10px;
  color: #ffffff;
  font-size: 1.15em;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-family: 'Merriweather Sans', sans-serif;
  border-radius: 12px;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 800px) {
  .rect {
    min-height: 10px;
  }
}

@media only screen and (max-width: 800px) {
  .headLogo {
    font-size: 1.6em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    float: none;
  }
}

#but {
  width: auto;
  height: 60px;
  line-height: 60px;
  color: #FFFFFF;
  margin: 0 30px 0 30px;
  text-align: center;
  vertical-align: center;
  font-size: 1.75em;
  text-transform: lowercase;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: 300;
}


#socialCont {
  width: 600px;
  margin: 0;
  height: 100px;
  text-align: center;
}

.social {
  margin: 5px;
  float: left;
  width: 100px;
  height: 40px;
}







.loaderBlock {
  text-align: center;
}

.loading {
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background:
    radial-gradient(farthest-side, #5091FF 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #5091FF);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: s3 1s infinite linear;
}

.loadingWhite {
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #ffffff 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, #ffffff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: s3 1s infinite linear;
}

@keyframes s3 {
  100% {
    transform: rotate(1turn)
  }
}


.comments {
  background-color: #e5efff;
  border-radius: 16px;
  color: black;
  text-align: left;

  max-width: 600px;
  margin: auto;
}

.commentsHead {
  text-align: center;
  color: black;
}

.comments .title, .comments .subtitle {
  color: #363636;
}


.comment {}

.comment .showOffensive {
  font-style: italic;
}

.comment .media-content {
  overflow-x: initial;
}

.comment .replies {
  margin-left: -2rem;
}

.comment .flag {
  opacity: 0.3;
}

.comment .trophy {
  display: inline-block;
  max-height: 32px;
  margin-top: 0px;
  margin-bottom: -10px;
}

.comment .flag:hover {
  opacity: 1;
}

.comment .content {
  overflow: hidden;
  word-break: break-word;
}

.comment .timeAgo {
  opacity: 0.85;
  font-size: 0.75em;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  white-space:nowrap;
}

.comment.marked {
  background: #81f3ff;
  padding-top: 1em;
}

.comment .commentRate .clicked {
  color: #363636;
}

.remainingChars {
  opacity: 0.5;
  font-size: 0.75em;
  float: right;
  margin-right: 1em;
}

.remainingChars.limit {
  opacity: 1.0;
  color: red;
}


/* .unconfirmedNotice {
  margin-bottom: 25px;
}

.unconfirmedWeb {
  max-width: 300px;
  margin: auto;
  margin-bottom: 25px;
} */



@media only screen and (max-width: 800px) {
  /* .dilStats .headLogo, .dilStats .headLogo a, .dilStats .headLogo a:hover, .dilStats .headLogo a:visited {
    font-size: 1.1em;
  } */

  .dilStats .headLogo .lowerHead {
    /*font-size: 1.2em;*/
    /*padding: 5px;*/
  }
}


.dilStats {
  width: 100%;
  text-align: center;
}

.dilStats .buttonCont {
  max-width: 900px;
  margin: auto;
  margin-top: 15px;
}

.dilStats .headLogo {
  float: none;
  margin: auto;
  /* margin-left: 10px; */
  margin-top: 10px;
  text-align: center;
}

.dilStats .headLogo .upperHead {
  font-weight: 300;
  font-size: 0.95em;
}

.dilStats .headLogo .lowerHead {
  font-size: 1.5em;
  line-height: 0.7em;
  font-weight: 700;
}



.dilStats .statsBar {
  width: 100%;
  max-width: 310px;
  color: white;
  margin: auto;
  text-align: center;
  margin-bottom: 30px;
}

.dilStats .statsBar .statsBarinfoText {
  max-width: 310px;
  margin: auto;
}

.dilStats .statsBarinfoText .statsBarLeft {
  float: left;
}

.dilStats .statsBarinfoText .statsBarRight {
  float: right;
}

.dilStats .percentBar {
  width: 100%;
  background-color: #dc1414;
  /*width: 100%;*/
  height: 5px;
  max-height: 20px;
  max-width: 100%;
  /*margin-left: 10vw;*/
  margin: auto;
  margin-bottom: 10px;
}

.dilStats .yesBar {
  background-color: #40E892;
  width: 0%;
  height: 5px;
  max-width: 100%;
  max-height: 5px;
  /*margin-left: 0vw;*/
}

.dilStats .peoplePressed {
  color: #40E892;
}

.dilStats .peopleDidntpress {
  color: #dc1414;
}


/* .dilStats .headStats, .dilStats .headStats, .dilStats .headStats:hover, .dilStats .headStats {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  text-align: center;
  float: none;
  display: block;
  margin-left: 0;
  margin: auto;
  max-width: 600px;
} */

/* .dilStats .headStats .upperHead {
  font-size: inherit;
} */

/* BBZ TODO: FIXME */
.showNextDilemma, .nobtn, .showNextDilemma a, .nobtn a {
  width: 170px;
  min-height: 40px;
  line-height: 40px;
  font-size: 1.45em;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  margin: auto;
  margin-top: 15px;
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid white;
}

.showNextDilemma {
  background-color: white;
  color: #65B4F9;
}

.showNextDilemma:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

.nobtn {
  background-color: #e63232;
  color: white;
  text-decoration: none;
}

.nobtn:hover {
  background-color: #ff0033;
  color: white;
  text-decoration: none;
}

.image.is-64x64 {
  max-width: 64px;
  max-height: 64px;
  overflow: hidden;
}

.image.is-32x32 {
  max-width: 64px;
  max-height: 64px;
  overflow: hidden;
}

.image.is-128x128 {
  max-width: 128px;
  max-height: 128px;
  overflow: hidden;
}

.premium{
  /* background-color: #efc122; */
  background-color: #5091ff;
  color: white;
  font-size: 0.7em;
  vertical-align: middle;
  padding: 3px;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 5px;
  line-height: 1em;
  display: inline;
  white-space:nowrap;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  display: block;
  height: 650px;
  top: 12px;
  max-height: 650px;
  min-height: 250px;
}

.topBnr {
  margin: 8px auto auto;
  max-height: 60px;
}

.midBnr {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .midInCnt {
    height: 650px;
  }

  .topBnr {
    height: 60px;
  }
}