@media (prefers-reduced-motion: no-preference){
:root {
    scroll-behavior: unset;
}
}

@font-face {
  font-family: Qbicle;
  src: url(../fonts/Qbicle1BRKMKinv.otf);
}
@font-face {
  font-family: glitch-inside;
  src: url(../fonts/glitch-inside.otf);
}
@font-face {
  font-family: windows-regular;
  src: url(../fonts/windows-regular.otf);
}
@font-face {
  font-family: abnes;
  src: url(../fonts/abnes.otf);
}

/*===================== off line fonts End =======================*/
:root{
 --primary-color:#9b0000;
  --dark-grey:#ac070e;
}
.pt-120{
  padding-top: 120px
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
  font-family: Roboto;
  font-size: 20px;
  counter-reset: my-sec-counter; 
  color: #24252E;
  line-height: 1.4;
  background-color: #000;
}
body.is-active{
  overflow-y: hidden !important;
}
h1,h2,h3,h4,h5,h6,p,a,span,ul{
	margin-bottom: 0; 
}
body h1{
  font-weight: 700;
  font-size: 56px;
}
body h2{
  font-weight: 700;
  font-size: 42px;
    color: #fff;  
}
ul{
	margin-left: 0; 
}
a,a:hover{
	text-decoration: none; 
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}
input:focus,textarea:focus,button:focus{
  box-shadow: none;
  border: none;
  outline: none;
}
.menu_listing > li > a{
  text-transform: uppercase;
}
.menu_listing > li > a,
.menu_listing > li > a:hover,
.menu_listing > li > a::after,
.menu_listing > li > a:hover::after{
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}
/*==================== header css ===================*/
main {
    position: relative;
    z-index: 9;
    background: #000;
}
.header-wrapper{
  padding-top: 25px;
  padding-bottom: 25px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;  
  z-index: 100;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  background-color: transparent;
}
body .header-wrapper.sticky{
  box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  -webkit-box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  -moz-box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  -ms-box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  -o-box-shadow: 0px 8px 20px -4px rgb(128 128 128);
  padding-top: 15px;
  padding-bottom: 15px;
}
.main_logo {
  margin-bottom: 0;
}
.mobile_menu_icon{
  display: none;
}
.header-mobile-icon a{
  margin: 5px 10px;
}
.menu_listing > li > a{
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  font-family: windows-regular;
}
.header-social-media svg {
    width: 20px;
    height: 20px;
    display: block;
}
.menu_listing > li > div > a,.left-banner-sec a{
  background-color:#ffffff;
  border-radius: 5px;
  border: none;
  padding: 10px 30px;
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 500;
  margin-left: 5px;
  display: inline-block;
}
.menu_listing > li > div > a{
  font-size: 12px;
  color: rgb(255, 255, 255);
  background-color: #000;
  border: 2px solid #fff;
}
.menu_listing > li > div > a:hover,.left-banner-sec a:hover{
  box-shadow: 0 20px 38px rgba(0,0,0,.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}
.menu_listing > li > a::after {
  content: "";
  position: absolute;
  width: 0%;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #fff;
  transition-duration: 0.5s;
}
.menu_listing > li:not(:last-child){
  margin-right: 20px;
}
.menu_listing > li > a:hover::after,
.menu_listing > li > a.menu-item_active::after {
  width: 100%;
  left: 0;
  right: auto;
  background-color: #fff;
}

.menu_listing > li > .header-social-icon:hover::after{
  width: 0;
  left: 0;
  right: auto;
  background-color: transparent;
}
.main_logo a{
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}
.header-logo{
  font-family: Qbicle;
}
.header-logo a img{
  width: 180px;
}
/*============== mobile menu icon strat ===========*/
#hamburger-1 {
	float: left;
}
.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
}
#hamburger-1 .line:nth-child(2) {
  display: block;
  width: 25px;
  margin-right: inherit;
}
#hamburger-1 .line:last-child {
  width: 20px;
  margin-right: inherit;
}
.is-active #hamburger-1 .line:nth-child(1) {
  -webkit-transform: translateY(3px) rotate(45deg);
  -ms-transform: translateY(3px) rotate(45deg);
  -o-transform: translateY(3px) rotate(45deg);
  transform: translateY(3px) rotate(45deg);
}
.is-active #hamburger-1 .line:nth-child(2) {
  display: none;
}
.is-active #hamburger-1 .line:nth-child(3) {
  width: 30px;
  -webkit-transform: translateY(-4px) rotate(-50deg);
  -ms-transform: translateY(-4px) rotate(-50deg);
  -o-transform: translateY(-4px) rotate(-50deg);
  transform: translateY(-4px) rotate(-50deg);
}
.header-background{
  background-color: rgba(0, 0, 0, 0.815);
}
/*------------====== Footer Css End =======------------*/
.menu-overle {
    display: none;
}
/* ========================= header start */
#see-more{
  cursor: pointer;
    text-decoration: underline;  
}
/*---------------- Zugriff-Auf Section Css Start --------------*/
.zugriff-auf-section{
  position: relative;
}
.zugriff-auf-content-block {
	max-width: 935px;
}
.zugriff-auf-image-row{
    transform: rotate(332deg);
    margin-top: -357px;
    height: 100%;
    transform-origin: bottom;
}
.zugriff-auf-content-block .common-section-label p{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.zugriff-auf-content-block .common-section-title {
	max-width: 740px;
	margin-bottom: 30px;
}
.zugriff-auf-content-block .common-section-label p img {
	max-width: 125px;
	margin: -2px 15px 0;
}
.zugriff-auf-image-block {
	width: 100%;
	background-color: var(--color-2);
	height: 100vh;
	overflow: hidden;
  position: relative;
}
.zugriff-auf-image-block::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.20);
  left: 0;
  top: 0;
}
.zugriff-auf-info {
  position: absolute;
  color: #ffffff;
  top: 50%;
  max-width: 1446px;
  width: 100%;
  margin: 0 auto;
  left: 50%;
    transform: translate(-50%, -50%);  
}
.zugriff-auf-info-more{
  padding: 0 15px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.zugriff-auf-info-more h2 {
  font-size: px;
  text-align: center;
  margin-bottom: 30px;
  font-family: abnes;
  line-height: 1;
}
.zugriff-auf-info-more span {
  font-size: 40px;
  font-family: glitch-inside;
}
.zugriff-auf-info-more p{
  text-align: center;
  font-size: 22px;
  max-width: 547px;
  width: 100%;
  margin: 0 auto;
}
.zugriff-img  {
	margin-bottom: 30px;
}
.zugriff-img img {
	width: 100%;
	max-height: 405px;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.zugriff-common-image-block {
	animation: var(--animation, none) 30s infinite linear;
	padding: 0 22px;
}
.zugriff-common-image-block:nth-of-type(odd) {
	align-self: flex-end;
	--direction: -13%;
}
@keyframes slide {
	to {
		-webkit-transform: translateY(var(--direction, -50%));
		transform: translateY(var(--direction, -50%));
	}
}
.zugriff-col {
	display: flex;
	overflow: hidden;
	margin: 0 -120px 0 0;
  /*height: 100%;*/
}
.vertical-slider{
    height: 100%;
    width: 15%
}
.slick-list {
    height: 100% !important;
}

/*---------------- Zugriff-Auf Section Css end --------------*/
/* vedio section start */
.gaming-video {
    position: relative;
    margin-top: 80px;
}
.gaming-video:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 250px;
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    top: 0;
    z-index: 9;
    left: 0;    
}
.audio-control {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 99;
}
.audio-control > a {
    display: block;
    max-width: 50px;
}
.audio-control img {
    max-width: 100%;
}
#mute{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
/* vedio section end */
/*---------------- based on exploring section start -----------------*/
.based-on-exploring-info h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
  font-family: glitch-inside;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.based-on-exploring-info p,
.story-section p{
  font-size: 22px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 15px;
}
/*---------------- based on exploring section end -----------------*/
/*----------------- feature section start ---------------------------*/
.feature{
  padding-left: 60px;
  padding-right: 60px;
}
.feature .based-on-exploring-info{
  margin-bottom: 80px;
}
.feature-standerd h3{
  font-family: glitch-inside;
  font-size: 60px;
  margin-top: 15px;
}
.feature-standerd p{
  font-size: 24px;
}
.feature-standerd-info p{
  font-size: 20px;
  border-top: 1px solid rgb(65, 65, 65);
  margin: 15px 0;
  padding: 15px 0;
}
.feature-tradition img{
  max-width: 80%
}
/*----------------- feature section end ---------------------------*/
/* road map section start */
.road-map-section .road-map-title h2{
  font-size: 62px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-family: glitch-inside;
}
.question-one-title{
  align-items: center!important;
}
.question-one-left{
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.question-one-left h2{
  text-transform: uppercase;
  color: #fff;
  font-size: 40px;
  margin-bottom: 32px;
  text-align: left;
  font-family: glitch-inside;
}
.question-one-left p{
  color: #fff;
  font-size: 22px;
  text-align: left;
  margin-bottom: 30px;
}
.question-one-right{
  border-left-width: 1px;
}
.question-one-right .animation-image{
  padding-bottom: 50px;
  padding-top: 50px;
}
.question-one-left ul li{
  text-align: left;
  color: #fff;
  margin-bottom: 10px;
}
.question-two-title{
  align-items: center!important;
}
.question-two-left{
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.question-two-left h2{
  text-transform: uppercase;
  color: #fff;
  font-size: 40px;
  margin-bottom: 32px;
  text-align: left;
  font-family: glitch-inside;
}
.question-two-left p{
  color: #fff;
  font-size: 18px;
  text-align: left;
  margin-bottom: 30px;
}
.question-two-right{
  border-left-width: 1px;
}
.question-two-right .animation-image{
  padding-bottom: 50px;
  padding-top: 50px;
}
.question-two-left ul li{
  text-align: left;
  color: #fff;
  margin-bottom: 10px;
}
.question-one-title{
  border-left: 0px !important;
}
.animation-image{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
/* road map section end */

/* feature-traits section start */
.gold-nft-col img{
  max-width: 80%;
  display: block;
  margin: 0 auto;
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}
.feature-traits .based-on-exploring-info{
  margin-bottom: 50px;
}
.feature .based-on-exploring-info h2{
  font-size: 42px;
}
.feature-traits .based-on-exploring-info h2{
  font-size: 42px;
}
.feature-traits-box {
  border: 1px solid #fd4a7447;
  padding: 30px  15px;
  border-radius: 20px;
  transition: .3s;
}
.feature-traits-box img{
  max-width: 250px;
  display: block;
  margin: 0 auto
}
.feature-traits-box h4{
  font-family: glitch-inside;
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
}
.feature-traits-box p{
  color: #fff;
  font-size: 20px;
  margin-top: 8px;
}
.feature-light-green-border{
  border: 1px solid #4a9b7f52;
}
.feature-traits-box.feature-light-green-border:hover {
  border: 1px solid #4a9b7f;
}
.feature-light-purple-border{
  border: 1px solid #65437267;
}
.feature-traits-box.feature-light-purple-border:hover {
  border: 1px solid #654372;
}
.feature-light-orange-border{
  border: 1px solid #8d47344b;
}
.feature-traits-box.feature-light-orange-border:hover {
  border: 1px solid #8d4734;
}
.feature-light-blue-border{
  border: 1px solid #3456954b;
}
.feature-traits-box.feature-light-blue-border:hover {
  border: 1px solid #345695;
}
.feature-light-yellow-border{
  border: 1px solid #9b8a364b;
}
.feature-traits-box.feature-light-yellow-border:hover {
  border: 1px solid #9b8a36;
}
.feature-traits-box:hover{
  border: 1px solid #974a5c;
}
/* feature-traits section end */
/* minting section start */
.minting .minting-now a{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: 500px;
  padding: 10px 20px;
  border: 1px solid #fff;
  color: #ffff;
  text-transform: uppercase;
  margin-top: 30px;
  transition: .3s;
}
.minting .minting-now a:hover{
  color: #000;
  background: #fff;
}
/* minting section end */
/* back to top button */
#button {
  display: inline-block;
  background-color: #161616;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 60px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 0;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 37px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
/* footer start */
.footer-menu li a{
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px;
}
.footer-menu li .header-social-icon{
  padding: 0;
}
.footer-main .footer-social a{
  transition: .3s;
}
.footer-main .footer-social a:hover,
a.header-social-icon:hover {
    opacity: .7;
}
footer .footer-main{
  max-width: 700px;
  width: 100%;
  padding-top: 80px;
}
.footer-main p{
  color: #fff;
  font-size: 12px;
}
.footer-main .footer-social li {
  padding: 5px 8px;
}
.footer-social li a svg{
  color: #fff;
  width: 20px;
    height: 20px;
}
/* footer end */

/*Intro effect*/
.pin-spacer {
    margin-bottom: 50vh !important;
}
.wrapspacer{
  transform: none!important;
}
.wrap{
  background: #cdcdcdcd;
  height: 100vh;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;    
}
.intro1 {
  position: absolute;
  width: 100%;
  top: 90%;
}
.intro2{
    transform: rotateX(180deg);
    position: absolute;
    width: 100%;
    bottom: 90%;
}
.svg-wrap{
  margin: 0 auto;
}
.svg-wrap1{
  /*width: 30%*/
}
.wrap svg{
  width: 100%;
  display: block;
}
.wrap-inner{
  height: 50vh;
  overflow: hidden;
  position: relative;
  z-index: 99;  
  display: block;
}
.stars, .twinkling {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.stars {
    background: #000 url(../images/stars.png) repeat top center;
    z-index: 0;
}
.twinkling {
    background: transparent url(../images/twinkling.png) repeat top center;
    z-index: 1;
    -moz-animation: move-twink-back 200s linear infinite;
    -ms-animation: move-twink-back 200s linear infinite;
    -o-animation: move-twink-back 200s linear infinite;
    -webkit-animation: move-twink-back 200s linear infinite;
    animation: move-twink-back 200s linear infinite;
}
@keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-webkit-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-moz-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-ms-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
.scroll-indicator{
    width: 18px;
    height: 27px;
    border-radius: 10px;
    border: 2px solid #cbcbcb;
    margin: 0 auto 10px;
    position: relative;    
}
.scroll-indicator span {
    width: 2px;
    height: 6px;
    display: block;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 4px;
    background-color: #cbcbcb;
    -webkit-animation: scrollIndicator 1.3s infinite ease-in-out alternate;
    animation: scrollIndicator 1.3s infinite ease-in-out alternate;
}
.scroll-indicator-wrap {
    position: absolute;
    z-index: 99;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    font-size: 12px;
    color: #cbcbcb;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@keyframes scrollIndicator{
  0% {
      transform: translate(-50%);
  }
  100% {
      opacity: 1;
      transform: translate(-50%,5px);
  }
}

footer {
    padding-bottom: 80px;
}

/*Whitelist section*/
.whitelist-section h2,
.story-section h2,
.team-section h2 {
      font-size: 42px;
      font-family: glitch-inside;
      max-width: 700px;
      width: 100%;
      margin: 0 auto;
      margin-bottom: 30px;
}
.whitelist-section h2{
    max-width: 900px;
}
.whitelist-section h5{
  margin-bottom: 20px;
  color: #fff
}

.whitelist-section h4
{
  font-family: glitch-inside;
  max-width: 850px;
  font-size: 35px;
  width: 100%;
  margin: 0 auto;
  margin-top:30px;
  margin-bottom: 30px;
  text-align: center;

}

.whitelist-section p{

  font-size: 36px;
}
.whitelist-section .logotd img{
  width:45%;
}
#contact-form {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}
#contact-form label {
    display: block;
    margin-bottom: 5px;
}
#contact-form input {
    background: transparent;
    box-shadow: none;
    border: none;
    border: 1px solid #fff;
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: #fff;
    transition: .3s;
    font-family: windows-regular;
}
#contact-form input.submit:hover {
    color: #000;
    background: #fff;
}
#ct-success-dialog{
  display: none;
}

/*Team section*/
.team-section .container {
    max-width: 700px;
}
.soc-icon {
    display: inline-block;
    color: #fff;
    transition: all .3s
}
.soc-icon:hover{
  opacity: .8;
  color: #fff
}
.team-col img{
  border-radius: 50%;
}
.team-col h3{
  font-family: windows-regular;  
}

@media screen and (max-width: 767px){
  .team-col h3 {
      font-size: 20px;
  }
}

/* ============== */
.loading-page {
  background: #0d0d0d;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: flex;
  position: fixed;
  z-index: 999;
  -webkit-box-pack: center;
          justify-content: start;
  -webkit-box-align: center;
          align-items: end;
          margin-bottom: 50px;
          overflow-x: hidden !important;
          padding-bottom: 105px;
          padding: 0 80px 0 80px;
}

.loading-page .counter p {
  font-family: Roboto;
  color: #fff;
  font-size: 24px;
  padding-bottom: 10px;
}
.loading-page .counter h1 {
  color: white;
  font-size: 22px;
  margin-top: -10px;
  font-family: Roboto;
}
.loading-page .counter hr {
  background: #ffffff;
  border: none;
  height: 10px;
  opacity: 1;
  border-radius:50px;
}
.loading-page .counter {
  position: relative;
  width: 100%;
  text-align: left;
  padding-bottom: 100px;
  z-index: 99;
}
.loading-page .counter h1.abs {
  position: absolute;
  top: 0;
  width: 100%;
}
.loading-page .counter .color {
  width: 0px;
  overflow: hidden;
  color: #f60d54;
}



/* CSS for Chat Popup*/



/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  background-color: #5765F2;
  color: white;
  padding:5.15px 6px !important;
  border: none;
  border-radius: 450px;
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 60px;
  /* width: 240px; */
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 60px;
  /* border: 2px solid #f1f1f1; */
  z-index: 2000;
  border-radius: 9px;
  background: rgb(54, 57, 63);
}

/* Add styles to the form container */
.discord-chat-container {
  max-width: 300px;
  padding: 10px;
  /* background-color: white; */
  
}

/* Set a style for the submit/send button */
.discord-chat-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  /* opacity: 0.8; */
}

/* Add a red background color to the cancel button */
.discord-chat-container .cancel {
  line-height: 0;
  font-size: 22px;
  font-weight: 700;
  background-color: #fff;
  position: absolute;
  top: -18px;
  right: -18px;
  color: #5765F2;
  width: auto;
  padding: 19px 12px 18px;
  border-radius: 450px;
  z-index: 2009;
}

/* Add some hover effects to buttons */
discord-chat-container .btn:hover, .open-button:hover {
  /*opacity: 1;*/
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.4), 0 6px 20px 0 rgba(255, 255, 255, 0.4);
}

.discord-chat-desktop{
    display:block;
}
.discord-chat-mobile{
    display:none;
}

@media all and (max-width: 500px){
    .open-button {
        right: 30px;
    }
    #button {
        bottom: 80px;
    }
    .chat-popup {
        right:30px;
        max-width: 300px;
    }
    .discord-chat-desktop{
        display:none;
    }
    .discord-chat-mobile{
    display:block;
    }
    .discord-chat-container .cancel{
        font-size:16px;
        padding: 17px 12px 16px;
    }
}