:root {
  --transition: all 1s ease;
}

#bluranimation {
  filter: blur(15px);
  opacity: 0;
  transition: all 1.5s ease-out;
  transform: translateY(100px);
}

#bluranimation.visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.bluranimation2 {
  filter: blur(10px);
  transition: filter 2s ease;
}

/* When loaded or triggered */
.bluranimation2.clear {
  filter: blur(0);
}

body.ovf {
  overflow: hidden;
}

form#newsletter_form label.error {
  position: absolute;
  left: 0;
  bottom: -18px;
  font-family: "Inconsolata", monospace;
  letter-spacing: -0.5px;
  font-size: 0.9rem;
  line-height: 1;
  color: red;
  font-weight: 600;
}

#loader, #response {
  width: 410px;
  text-align: center;
}

#loader p {
  text-align: center;
  width: 100%;
}

#response p {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  text-align: center;
}

header {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
}
@media (width <= 64rem) {
  header {
    background-color: transparent;
    transition: all 0.6s ease;
    position: fixed;
    top: 0;
    padding: 10px 0;
  }
  header.fixed {
    background-color: #111;
    transition: all 0.6s ease;
  }
  header .hamburger {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
    position: relative;
  }
  header .hamburger span {
    display: block;
    height: 3px;
    background: #ff9000;
    border-radius: 2px;
    transition: all 0.4s ease;
    margin-left: 8px;
  }
  header .hamburger span:nth-child(1) {
    width: 32px;
  }
  header .hamburger span:nth-child(2) {
    width: 24px;
  }
  header .hamburger span:nth-child(3) {
    width: 16px;
  }
  header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 32px;
    position: absolute;
    top: 14px;
    left: 1px;
  }
  header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 32px;
    position: absolute;
    top: 14px;
    left: 1px;
  }
  header .navmo {
    background: url(../images/home/bg-banner.jpg) no-repeat center center;
    background-size: cover;
  }
  header .navmo .lastchildsocial {
    display: flex;
    justify-content: center;
    padding-top: 50px;
  }
  header .navmo .lastchildsocial a {
    margin: 10px 0;
    font-family: "Inconsolata", monospace;
    font-size: 0.75rem;
    line-height: 28px;
    color: #fff;
    font-weight: 700;
  }
  header .navmo .lastchildsocial a span {
    margin: 0 15px 0 8px;
  }
  header .navmo .lastchildsocial a img {
    filter: brightness(0) saturate(100%) invert(53%) sepia(51%) saturate(1067%) hue-rotate(358deg) brightness(104%) contrast(107%);
  }
  header .navmo {
    transform: translateY(-140%);
    transition: all 0.3s ease;
  }
  header.active .navmo {
    transform: translateY(0%);
    transition: all 0.3s ease;
  }
}

nav {
  position: relative;
}
nav a {
  transition: all 0.3s linear;
  background-color: transparent;
  position: relative;
  clip-path: polygon(0 0, 100% 5px, 100% 100%, 0 100%);
}
nav a:after {
  content: "";
  transition: all 0.3s linear;
  background-color: transparent;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  left: 1px;
  clip-path: polygon(0 0, 100% 5px, 100% 100%, 0 100%);
}
nav a span {
  letter-spacing: 0.5px;
  color: #fff;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  transition: all 0.3s linear;
  background-color: #FE9000;
}
nav a:hover:after, nav a.active:after {
  background-color: #000;
  transition: all 0.3s linear;
}
nav a:hover .animatedinfinite {
  opacity: 1 !important;
}
nav a:hover .animatedinfinite .top {
  width: 0%;
  height: 9px;
  animation: ani_top 4s linear 0s infinite;
}
nav a:hover .animatedinfinite .right {
  width: 9px;
  height: 0%;
  animation: ani_right 4s linear 0s infinite;
}
nav a:hover .animatedinfinite .bottom {
  width: 0%;
  height: 4px;
  animation: ani_bottom 4s linear 0s infinite;
}
nav a:hover .animatedinfinite .left {
  width: 9px;
  height: 0%;
  animation: ani_left 4s linear 0s infinite;
}
nav a.active .animatedinfinite {
  opacity: 1 !important;
}
nav a.active .animatedinfinite .top {
  width: 0%;
  height: 9px;
  animation: ani_top 4s linear 0s;
}
nav a.active .animatedinfinite .right {
  width: 9px;
  height: 0%;
  animation: ani_right 4s linear 0s;
}
nav a.active .animatedinfinite .bottom {
  width: 0%;
  height: 4px;
  animation: ani_bottom 4s linear 0s;
}
nav a.active .animatedinfinite .left {
  width: 9px;
  height: 0%;
  animation: ani_left 4s linear 0s;
}
@media (width <= 64rem) {
  nav a {
    clip-path: none;
    background-color: transparent !important;
    position: relative;
    padding: 15px 0;
  }
  nav a:after {
    clip-path: none;
    background-color: #FE9000;
    opacity: 0.4;
    width: 240px;
    height: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  nav a span {
    font-weight: normal;
  }
  nav a:first-child:after {
    display: none;
  }
  nav a.active span, nav a:hover span {
    color: #ff9000;
    font-weight: normal;
  }
  nav a.active:after, nav a:hover:after {
    background-color: #ff9000;
  }
}

.HomeSectionBanner {
  background: url(../images/home/bg-banner.jpg) no-repeat center center;
  background-size: cover;
}
.HomeSectionBanner .rightside {
  clip-path: polygon(100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0);
  padding: 1px;
}

.borderangle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  clip-path: polygon(100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0);
  background-color: #FE9000;
}
.borderangle:before {
  content: "";
  clip-path: polygon(100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0);
  background-color: #000;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
}

.HomeSectionLiveSessions .leftSide .imgBanner {
  padding: 12px 16px;
}
.HomeSectionLiveSessions .leftSide .imgBanner .img {
  clip-path: polygon(100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px, 24px 0);
}
.HomeSectionLiveSessions .leftSide .imgBanner .borderangleinside {
  opacity: 0.9;
  padding: 10px 14px;
  clip-path: polygon(100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px, 30px 0);
}
.HomeSectionLiveSessions .leftSide .imgBanner .borderangleinside span {
  background: #553e26;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  clip-path: polygon(100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px, 30px 0);
}
.HomeSectionLiveSessions .leftSide .imgBanner .borderangleinside.borderangleinside2 {
  width: calc(100% - 28px);
  height: calc(100% - 20px);
  clip-path: polygon(100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px, 24px 0);
}

.btn {
  position: relative;
  transition: all 0.2s linear;
  background-color: #FF8300;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  clip-path: polygon(87% 0, 100% 60%, 100% 100%, 0 100%, 0 0);
}
.btn span {
  position: relative;
  z-index: 1;
  font-family: "Inconsolata", monospace;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.btn img {
  position: relative;
  z-index: 1;
  width: 15px;
  background-color: transparent;
}
.btn:after {
  content: "";
  transition: all 0s linear;
  background-color: transparent;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  left: 1px;
  clip-path: polygon(100% 0, 100% calc(40% - 2px), calc(87% - 0px) 100%, 0 100%, 0 0);
}
.btn:hover {
  transition: all 0.2s linear;
  background-color: #FF8300;
  clip-path: polygon(100% 0, 100% 40%, 87% 100%, 0 100%, 0 0);
  /* clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 0 60%); */
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 13% 100%, 0 40%); */
}
.btn:hover img {
  background-color: transparent !important;
}
.btn:hover:after {
  background-color: #111;
  transition: all 0.2s linear;
  transition-delay: 0.2s;
}

.title {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 1.5s steps(30, end), blink-caret 0.5s step-end infinite;
}

.titlebig {
  overflow: hidden;
  white-space: nowrap;
  animation: typingbig 3s steps(30, end), blink-caret 1s step-end infinite;
}

.title2 {
  overflow: hidden;
  white-space: nowrap;
  animation: typing2 3s steps(30, end), blink-caret 1s step-end infinite;
  /* animation-delay: 1.5s; */
}

.title3 {
  overflow: hidden;
  white-space: nowrap;
  animation: typing3 4.5s steps(30, end), blink-caret 1.5s step-end infinite;
  /* animation-delay: 1.5s; */
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typingbig {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing2 {
  0% {
    width: 0%;
    opacity: 0;
  }
  49% {
    width: 0%;
    opacity: 0;
  }
  50% {
    width: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes typing3 {
  0% {
    width: 0%;
    opacity: 0;
  }
  33% {
    width: 0%;
    opacity: 0;
  }
  66% {
    width: 0%;
    opacity: 0;
  }
  67% {
    width: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: transparent;
  }
}
.HomeSectionScrollerText {
  position: relative;
}
.HomeSectionScrollerText .scroll-box {
  width: calc(100% + 30px);
  margin-left: -15px;
  position: relative;
  transform: rotate(-3deg);
  transform-origin: right top;
  z-index: 1;
  box-shadow: 0 8px 2px rgba(254, 144, 0, 0.7);
}
.HomeSectionScrollerText .scroll-box2 {
  width: calc(100% + 30px);
  margin-left: -15px;
  position: relative;
  transform: rotate(1.5deg);
  transform-origin: left top;
  z-index: 0;
  background-color: rgb(255, 204, 0);
}
@media (width <= 48rem) {
  .HomeSectionScrollerText .scroll-box {
    transform: rotate(-9deg);
  }
  .HomeSectionScrollerText .scroll-box2 {
    transform: rotate(4deg);
  }
}

.scroll-box, .scroll-box2 {
  width: 100%;
  overflow: hidden;
  height: 100%;
  background: #FF9D01;
  position: relative;
  border-top: 2px dashed #fff;
  border-bottom: 2px dashed #fff;
  padding: 6px 0;
}
.scroll-box .scroll-inner, .scroll-box2 .scroll-inner {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  height: 100%;
}
.scroll-box .scroll-inner .scroll-content, .scroll-box2 .scroll-inner .scroll-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0;
  white-space: nowrap;
  font-size: 16px;
  height: 100%;
}
.scroll-box .scroll-inner .scroll-content span, .scroll-box2 .scroll-inner .scroll-content span {
  display: inline-block;
  font-family: "Advent Pro", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #000;
  margin: 0 32px;
}
@media (width <= 48rem) {
  .scroll-box .scroll-inner .scroll-content span, .scroll-box2 .scroll-inner .scroll-content span {
    font-size: 1rem;
  }
}

.HomeSectionUpcoming .upcoming {
  position: relative;
  background-color: #FFD562;
  transition: all 0.3s linear;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  clip-path: polygon(calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%, 0 0);
}
.HomeSectionUpcoming .upcoming:after {
  z-index: 1111;
  content: "";
  position: absolute;
  right: 0;
  top: -10%;
  width: 50px;
  height: 120%;
  box-shadow: inset -23px 0em 11px rgba(0, 0, 0, 0.2);
}
.HomeSectionUpcoming .upcoming h2, .HomeSectionUpcoming .upcoming p, .HomeSectionUpcoming .upcoming img {
  transition: all 0.3s linear;
}
.HomeSectionUpcoming .upcoming:hover {
  background-color: #FE9000;
}
.HomeSectionUpcoming .upcoming:hover h2, .HomeSectionUpcoming .upcoming:hover p {
  color: #fff;
}
.HomeSectionUpcoming .upcoming:hover img {
  background-color: #FE9000;
}
@media (width <= 48rem) {
  .HomeSectionUpcoming #UpcomingSwiper {
    padding-bottom: 60px;
  }
  .HomeSectionUpcoming #UpcomingSwiper .swiper-pagination {
    right: auto;
    left: 0;
    justify-content: flex-start;
  }
}

.HomeSectionLiveSessions {
  background: url(../images/home/banner_bg_livesessions.jpg) no-repeat center center;
  background-size: cover;
}
.HomeSectionLiveSessions .swiper-slide-prev, .HomeSectionLiveSessions .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.3s linear;
}
.HomeSectionLiveSessions .swiper-slide-next, .HomeSectionLiveSessions .swiper-slide {
  animation: fadeani2 2 linear 0s 1;
  opacity: 0 !important;
  transition: opacity 0.3s linear;
}
.HomeSectionLiveSessions .swiper-slide-visible {
  animation: fadeani 3 linear 0s 1;
  opacity: 1 !important;
  transition: opacity 0.3s linear;
}
@keyframes fadeani {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeani2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.swiper-pagination {
  justify-content: flex-end;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  display: inline-flex;
  gap: 6px;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 14px;
  transition: all 0.2s linear;
  height: 4px;
  display: inline-block;
  background-color: #fff;
  opacity: 0.5;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.2s linear;
  background-color: #FE9000;
  width: 50px;
  opacity: 1;
}

.HomeSectionRecap {
  position: relative;
}
.HomeSectionRecap .gradient1 {
  width: 50vw;
  height: 50vw;
  top: 50%;
  transform: translateY(-50%);
}

.HomeSectionCaptured .swiper {
  padding: 0 0 50px;
}
.HomeSectionCaptured .imgBanner {
  padding: 12px 16px 0 16px;
}
.HomeSectionCaptured .imgBanner:nth-child(even) {
  margin-top: 50px;
}
.HomeSectionCaptured .imgBanner .img {
  clip-path: polygon(100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px, 24px 0);
}
.HomeSectionCaptured .imgBanner .borderangleinside {
  opacity: 0.9;
  padding: 10px 14px;
  clip-path: polygon(100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px, 30px 0);
}
.HomeSectionCaptured .imgBanner .borderangleinside span {
  background: #553e26;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  clip-path: polygon(100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px, 30px 0);
}
.HomeSectionCaptured .imgBanner .borderangleinside.borderangleinside2 {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  clip-path: polygon(100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px, 24px 0);
}
@media (width <= 48rem) {
  .HomeSectionCaptured {
    overflow: hidden;
  }
  .HomeSectionCaptured .swiper {
    padding: 0 0 50px;
    overflow: visible;
  }
}

.HomeSectionJoin .imgBanner {
  padding: 2px;
}
.HomeSectionJoin .imgBanner .img {
  clip-path: polygon(100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px, 24px 0);
}
.HomeSectionJoin .imgBanner .borderangleinside {
  opacity: 0.9;
  clip-path: polygon(100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px, 24px 0);
}
.HomeSectionJoin .imgBanner .borderangleinside span {
  background: #553e26;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  clip-path: polygon(100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px, 30px 0);
}
@media (width <= 48rem) {
  .HomeSectionJoin {
    overflow: hidden;
  }
  .HomeSectionJoin .swiper {
    overflow: visible;
  }
}

.HomeSectionJoinNewsletter {
  background: url(../images/home/bg_join_newsletter.jpg) no-repeat center center;
  background-size: cover;
}
.HomeSectionJoinNewsletter form input[type=text]:focus, .HomeSectionJoinNewsletter form input[type=text]:active, .HomeSectionJoinNewsletter form input[type=text]:hover {
  border: 0 !important;
  border-bottom: 2px solid #FF8300 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
.HomeSectionJoinNewsletter form input[type=text] {
  color: #fff;
  width: 100%;
  height: 48px;
  background-color: transparent;
  border-bottom: 2px solid #FF8300;
}
.HomeSectionJoinNewsletter form input[type=submit] {
  cursor: pointer;
  padding: 0 !important;
  font-family: "Advent Pro", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  width: 100px;
  height: 48px;
  background-color: #FF8300;
  clip-path: polygon(83% 0, 100% 60%, 100% 100%, 0 100%, 0 0);
}

.footer .rightSide {
  padding: 30px 42px;
  clip-path: polygon(calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%, 0 0);
  background-color: rgba(72, 77, 67, 0.1);
}
.footer .rightSide a, .footer .rightSide p {
  margin: 10px 0;
  font-family: "Inconsolata", monospace;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
}
.footer .rightSide .first {
  border-right: 1px solid rgba(139, 195, 74, 0.2);
}
.footer .rightSide .last {
  padding-left: 22px;
}
.footer .gradient1 span {
  background-color: rgba(255, 187, 0, 0.3);
}
@media (width <= 48rem) {
  .footer {
    padding-bottom: 0;
  }
  .footer .rightSide {
    padding: 24px 19px;
    margin: 15px 0;
    clip-path: polygon(calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%, 0 0);
  }
  .footer .rightSide a {
    font-size: 0.8rem;
  }
  .footer .rightSide .last {
    padding-left: 15px;
  }
  .footer .rightSide .last img {
    filter: brightness(0) saturate(100%) invert(53%) sepia(51%) saturate(1067%) hue-rotate(358deg) brightness(104%) contrast(107%);
    width: 18px;
    height: 18px;
  }
}

.gradientbgs {
  width: 100%;
  height: 600px;
  overflow: hidden;
  z-index: -10;
  position: absolute;
  overflow: hidden;
}
.gradientbgs span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  filter: blur(120px);
  background: rgb(255, 85, 0);
  background: linear-gradient(nulldeg, rgb(255, 85, 0) 1%, rgb(255, 210, 28) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF550099", endColorstr="#FFD21C99", GradientType=0);
}
.gradientbgs.ac span {
  animation: bggradients 2s linear 0s infinite alternate-reverse;
}
.gradientbgs.ac.second {
  animation: bggradients2 2s linear 0s infinite alternate-reverse;
}
@keyframes bggradients {
  0% {
    left: -15%;
    filter: blur(120px);
    opacity: 1;
  }
  100% {
    left: 50%;
    filter: blur(60px);
    opacity: 1;
  }
  100% {
    left: 115%;
    filter: blur(120px);
    opacity: 0;
  }
}
@keyframes bggradients2 {
  0% {
    left: 115%;
    filter: blur(120px);
    opacity: 1;
  }
  100% {
    left: 50%;
    filter: blur(60px);
    opacity: 1;
  }
  100% {
    left: -5%;
    filter: blur(120px);
    opacity: 0;
  }
}

.gradient1 span {
  filter: blur(256px);
  width: 22vw;
  height: 22vw;
  background: rgba(255, 85, 0, 0.6);
  background: linear-gradient(nulldeg, rgb(255, 85, 0) 1%, rgb(255, 210, 28) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF550099", endColorstr="#FFD21C99", GradientType=0);
}

.video-wrapper {
  position: relative;
  width: 100%;
}
.video-wrapper .video-thumb {
  width: 100%;
}
.video-wrapper .video-thumb img {
  width: 100%;
  display: block;
}
.video-wrapper .play-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video-wrapper .video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2;
}
.video-wrapper .close-btn {
  position: absolute;
  top: -15px;
  right: 15px;
  cursor: pointer;
  z-index: 3;
  display: none;
}
.video-wrapper .close-btn::after, .video-wrapper .close-btn::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #fff !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.video-wrapper .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

textarea {
  resize: none;
  overflow: auto;
}

textarea::-webkit-scrollbar {
  width: 5px;
}

textarea::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(255, 144, 0, 0.5);
}

textarea::-webkit-scrollbar-thumb {
  background-color: #ff9000;
}/*# sourceMappingURL=common.css.map */