@-webkit-keyframes animationscale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@keyframes animationscale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@-webkit-keyframes animationcountertime {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes animationcountertime {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
            transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
            transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
            transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
            transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
            transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
            transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
            transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
            transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
            transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
            transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
            transform: translate(1px, -2px) rotate(-1deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
            transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
            transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
            transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
            transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
            transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
            transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
            transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
            transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
            transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
            transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
            transform: translate(1px, -2px) rotate(-1deg);
  }
}

.animationscale {
  -webkit-animation-name: animationscale;
          animation-name: animationscale;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-direction: alternate-reverse;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animationcountertime {
  -webkit-animation-name: animationcountertime;
          animation-name: animationcountertime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-direction: alternate-reverse;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animationshake {
  -webkit-animation-name: shake;
          animation-name: shake;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-direction: alternate-reverse;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

:root {
  --primaryColor:#064346;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track
::-webkit-scrollbar-track {
 background: #f1f1f1;
}*/
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 9px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

:root {
  scroll-behavior: unset;
}

h1, h2, h3, h4, h5, h6 {
  margin: 5px;
}

iframe {
  width: 100%;
  height: 300px;
}

svg {
  width: 15px;
  height: 15px;
}

svg path {
  fill: var(--primaryColor);
}

iframe {
  border-radius: 9px;
}

.backsound {
  position: fixed;
  right: 9px;
  top: 50%;
  z-index: 97;
  padding: 5px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: white;
  border: 1px solid #dedede;
}

.backsound svg {
  width: 24px;
  height: 24px;
}

.backsound svg path {
  fill: var(--primaryColor);
}

.backsound .iconplay {
  display: none;
}

.backsound .iconpause {
  display: inline;
}

.backsound.play .iconplay {
  display: inline;
}

.backsound.play .iconpause {
  display: none;
}

.frame {
  margin: 0;
  padding: 99px 9px;
  border-radius: 9px;
  min-height: calc(100vh - 69px);
}

.frame::before {
  content: '';
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: calc(100% - 36px);
  height: 99px;
  margin: 0 18px;
  background-size: contain;
  background-position: center;
  background-repeat: repeat-x;
}

.content-text {
  padding: 37px 9px;
  border-radius: 15px;
}

body {
  padding-left: 3px;
  padding-right: 3px;
  color: #0c4643;
  padding-bottom: 39px;
  background-color: #f5eee1;
  background-image: url(/images/bg.jpg);
  background-size: contain;
  background-attachment: fixed;
  text-shadow: 1px 1px 3px #4d586da3;
}

section {
  min-height: calc(100vh - 69px);
}

section.card {
  border-radius: 9px;
}

.container {
  max-width: 750px;
  padding-top: 9px;
}

.container .card {
  position: relative;
}

.container:not(.modal-body) {
  padding-bottom: 61px;
}

.container.class-crush * {
  position: absolute;
}

.countdown .counter {
  width: 63px;
  height: 63px;
  border-radius: 39%;
  margin: 0 3px;
  padding: 5px;
  background-color: #06434685;
  color: white;
  font-size: 14pt;
}

.countdown .counter span {
  font-size: 10pt;
}

#inv-stories .date {
  font-family: 'breadley';
  font-size: 11pt;
  width: 69px;
  font-weight: bold;
}

#inv-stories .icon {
  margin: 0 5px;
  min-height: 69px;
  text-align: center;
}

#inv-stories .icon svg {
  display: block;
}

#inv-stories .icon span {
  height: 100%;
  width: 3px;
  border-radius: 9px;
  display: inline-block;
  background-color: #064346;
}

#inv-stories .story {
  border-radius: 33px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 9px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
  background-color: white;
  color: #274854;
}

#inv-gallery img {
  width: 100%;
  border-radius: 37px;
  cursor: pointer;
  border: 3px solid white;
  padding: 5px;
}

#inv-comment .form-control {
  border-radius: 19px;
  z-index: 2;
  position: relative;
}

#inv-comment .form-control input {
  text-shadow: none;
}

#inv-comment svg {
  width: 21px;
  height: 21px;
  vertical-align: sub;
}

#inv-comment .wishes .wish {
  padding: 9px;
  background-color: #fff;
  border-radius: 9px;
  margin-bottom: 5px;
}

#inv-comment .wishes .wish .user {
  font-weight: bold;
}

#inv-comment .wishes .wish .confirm {
  padding: 0px 9px;
  border-radius: 9px;
  border: 1px solid #b6b5b5;
  font-size: 9pt;
  margin-left: 3px;
}

#inv-comment .wishes .wish .time {
  display: block;
  font-size: 9pt;
  margin: 9px 0;
}

#inv-comment .wishes .wish .message {
  display: block;
}

#inv-comment .wishes .wish * {
  text-shadow: none;
}

#nav-others {
  overflow: hidden;
}

#nav-others .angpao, #nav-others .kado {
  position: relative;
  padding: 9px;
  border-radius: 19px;
}
/*# sourceMappingURL=custom.css.map */