<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
	font-family: 'Ubuntu', sans-serif;
	background-color: #34393e;
}

h2{
   font-weight:600;
  text-transform: uppercase;
  color:#fff;
  font-size:20px;
  margin-bottom: 4px;
}
h3{
  font-weight:600;
  text-transform: uppercase;
  color:#fff;
  font-size:18px;
  margin-bottom: 10px;
}

a{
  color:#f45142;
}

a:hover{
  opacity:0.7;
  color: #f45142;
  text-decoration: none;
}

ol&gt;li{
  margin-bottom: 5px;
}

.blocker{
	display: none !important;
}
.longinput{
    width: 100%;
    font-size: 14px;
    color: #fff;
    border: 1px solid #1a1a1a;
    background: #2b2f33;
    border-radius: 3px;
    padding:15px 15px;
    font-weight: 500;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border 250ms ease-out;
    -moz-transition: border 250ms ease-out;
    -o-transition: border 250ms ease-out;
    -ms-transition: border 250ms ease-out;
    transition: border 250ms ease-out;
    resize: none;
    margin-top: 10px

}

textarea{
      width: 100%;
    font-size: 14px;
    color: #fff;
    border: 1px solid #1a1a1a;
    background: #2b2f33;
    border-radius: 3px;
    padding: 15px 15px 35px;
    font-weight: 500;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 150px;
    -webkit-transition: border 250ms ease-out;
    -moz-transition: border 250ms ease-out;
    -o-transition: border 250ms ease-out;
    -ms-transition: border 250ms ease-out;
    transition: border 250ms ease-out;
    resize: none;
}

.preloader{
  width:100%;
  height: 100%;
  top:0px;
  position: fixed;
  z-index:99999;
  background:#34393e;
}

.token-screen{
    width:100%;
  height: 100%;
  top:0px;
  position: fixed;
  z-index:99999;
  background:#34393e;
    display: flex;
  align-items: center;
  justify-content: center;

}

.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-screen-buttons{
  float: right;
}

.token-screen-container{
  background-color: #3e4246;
  padding:50px 20px;
  max-width: 50%;
  /*min-height: 50%;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

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


.loader{
      overflow: visible;
    padding-top: 2em;
    height: 0;
    width: 2em;
}

.loader-figure{
      height: 0;
    width: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0 solid #1976d2;
    border-radius: 50%;
    -webkit-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.loader, .loader-figure {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.loader-label{
  color: #f45142;
      float: left;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0.5em 0 0 50%;
    font-size: 0.875em;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    white-space: nowrap;
    -webkit-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.alert-warning{
  background-color: rgba(250,165,27,.2);
    border: 1px solid #faa51b;
    color: #faa51b;
}
.accordion{
  margin-top: 25px;
}

.card{
    border: 1px solid #1a1a1a;
    background: #2b2f33;
    border-radius: 3px;
    color: #fff;
}

.card-body{
  opacity: 0.7;
  font-weight: 400;
  font-size:14px;
}

.btn-link{
  color: #fff;
  text-decoration: none;
}

.btn-link:hover{
  opacity: 0.7;
  color: #fff;
  text-decoration: none;
}

.btn-link:clicked, .btn-link:focus, .btn-link:active{
  text-decoration: none;
  color: #fff;
}


.description{
  color:rgba(255,255,255,.5);
  font-weight: 400;
  font-size:14px;
  padding-bottom:10px;
/*  opacity: rgba(255,255,255,.65);*/
}

.disabled{
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

.navbar {
  min-height: 50px;
  width: 100%;
  background-color: #212427;
  border-bottom: 2px solid rgba(255,255,255,0.05);
}

.navbar-brand {
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
}



.navbar-toggle {
  /* (80px - button height 34px) / 2 = 23px */
  margin-top: calc((50px - 34px)/2);
  padding: 9px 10px !important;
}



@media (min-width: 768px) {
  .navbar-nav &gt; li &gt; a {
    /* (80px - line-height of 27px) / 2 = 26.5px */
    padding-top: calc((50px - 27px)/2);
    padding-bottom: calc((50px - 27px)/2);
    line-height: calc((50px - 27px)/2);
  }
}
.dropdown &gt;a{
    font-weight: 600;
    font-size: 13px;
    color: #fff;
}
/*.dropdown-menu{
  left:-200% !important;

}*/

.navbar-toggler-icon{
  font-size:25px;
  color: #fff;
}

.dropdown-item{
        display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    margin: 5px;
    padding: 4px 4px 4px 6px;
    font-size: 11px;
    font-weight: 400;
    color: gray;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
}

.dropdown-item:hover{
  background:none;

}

.nav-item &gt;a,.profile-text
{
	color: #fff;
    opacity: .7;
    -ms-filter: "alpha(opacity=70)";
    filter: alpha(opacity=70);
    cursor: pointer;
    text-decoration: None;
    padding: 15px 10px;
    font-weight: 400;
    font-size: 13px;
    -webkit-transition: opacity 175ms ease-out;
    -moz-transition: opacity 175ms ease-out;
    -o-transition: opacity 175ms ease-out;
    -ms-transition: opacity 175ms ease-out;
    transition: opacity 175ms ease-out;
}

.profile-text{
  font-weight: 600;
  opacity: 1 !important;
}

.profile-text:hover{
  opacity: .7 !important;
}

.blog-container{
  /* padding: 50px 30px; */
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
color: #fff;
}
.blog-subheader{
  opacity: 0.5;
}

.blog-item h2{
  font-size: 24px;
  text-transform: none;
  margin-bottom: 15px;
}

.blog-item{
  border-bottom: 0.5px solid rgb(255 255 255 / 30%);
  padding: 25px 0px;
}

.blog-contents-header{
  font-size: 16px;
  font-weight: 800;
}

.blog-contents::-webkit-scrollbar,.custom-scrollbar::-webkit-scrollbar{
  width: 12px;
  height: 12px;
}

.blog-contents::-webkit-scrollbar-button,.custom-scrollbar::-webkit-scrollbar-button {
  display: none;
}

.blog-contents::-webkit-scrollbar-thumb,.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgb(255 255 255 / 30%);
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  background-clip: content-box;
}

.blog-content-item:hover{
  color: #fff;
  cursor: pointer;
}

.blog-content-item a{
  color:rgba(255, 255, 255, 0.37);
}

.blog-content-item{
  color: rgba(255, 255, 255, 0.37);
}


.blog{
  margin: 50px auto;
    padding: 0px 40px;
    scroll-behavior: smooth;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    max-width: 1400px;
}


.best-bot{
  border-bottom: 1px solid #ffffff36;
  margin-bottom: 30px;
}
.best-bot h2{
  font-size: 35px;
  text-transform: none;
}

.best-bot-tags span{
  background-color: rgb(27 29 31);
    padding: 5px 17px;
    border-radius: 3px;
    margin-inline-end: 10px;
    margin-bottom: 10px;
    color: rgb(158, 158, 158);
    user-select: none;
    white-space: nowrap;
    font-size: 14px;
}

.best-bot-image{
  display: flex;
  width: 100%;
  justify-content: center;
}


.best-bot img{
  height: 250px;
}
/* .blog-content{
  padding:0px 0px 0px 30px;
} */

.blog-contents{
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 20px;
  max-width: 200px;
  min-width: 200px;
  align-self: flex-start;
  max-height: 400px;
  overflow-y: scroll;
  color: #fff;
}
.blog-contents li{
  list-style: none;
}

.blog-contents ol{
  padding: 0;
}

.blog-contents a{
  margin-bottom: 15px;
  font-size: 16px;
}

.blog-item p{
  opacity: 0.5;
  font-weight: 100;
  font-style: 14px;
}

.blog-item-tags span{
  background-color: rgb(27 29 31);
  padding: 5px 17px;
  border-radius: 3px;
  margin-inline-end: 10px;
  margin-bottom: 10px;
  color: rgb(158, 158, 158);
  user-select: none;
  white-space: nowrap;
  font-size: 14px;
}

.best-bot-website{
  background-color: rgb(244 81 66);
  padding: 5px 17px;
  border-radius: 3px;
  margin-inline-end: 10px;
  margin-bottom: 10px;
  color: rgb(255 255 255);
  user-select: none;
  white-space: nowrap;
  font-size: 14px;
}

.best-bot-website:hover{
  opacity: 0.8;
  color: #fff;
}

.how-to-post-section img{
  max-width: 100%;
  display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    box-shadow: rgb(25 15 15 / 28%) 0px 9px 15px 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.how-to-post-section p{
  font-size: 16px;
  line-height: 1.6;
  margin: 8px 0px;
  opacity: 0.6;
}

.how-to-post-section h2{
  margin-top: 40px;
  font-size: 30px;
  text-transform: none;
}

.nav-item&gt;a:hover{
  color:#fff;
  opacity: 1;
}
.nav-profile &gt;a
{
	color: #fff;
	font-weight: 600;
    -ms-filter: "alpha(opacity=70)";
    filter: alpha(opacity=70);
    cursor: pointer;
    text-decoration: None;
    padding: 15px 10px;
    font-size: 12px;
    -webkit-transition: opacity 175ms ease-out;
    -moz-transition: opacity 175ms ease-out;
    -o-transition: opacity 175ms ease-out;
    -ms-transition: opacity 175ms ease-out;
    transition: opacity 175ms ease-out;
}

.avatar{
	border-radius: 50%;
}


.sub-header{
	min-height:70px;
  background-color:#282c2f;
}

.sub-header-item{
	align-content: center;
	height:70px;
}
.sub-header-item {
	text-transform: uppercase;
	height:69px;
	font-size: 15px;
	color:#fff;
	font-weight: 600;
	min-width: 100px

}

.sub-header-container{
  padding:24px 0px;
  text-align: center;
}
.sub-header-item:hover{
  border-bottom: 3px solid #f45142;
  text-decoration: none;
  color: white;
}
.selected{
		border-bottom: 3px solid #f45142;
	    /*border-bottom-color: #f45142;*/
}


.module{
  padding:15px;
  padding-bottom: 15px;
}

.module-inner.module-disabled{
  opacity: 0.3;
  cursor: help;
}
.status-online{
  color:#00c292 !important;
}

.status-offline{
  color:red !important;
}



.module-inner{
  height:130px;
  padding:25px 30px;
  padding-left: 21px;
  background-color: #41464a;
      -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #3e4246;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    border-radius: 2px;
    -webkit-transition: opacity 175ms ease-out;
    -moz-transition: opacity 175ms ease-out;
    -o-transition: opacity 175ms ease-out;
    -ms-transition: opacity 175ms ease-out;
    transition: opacity 175ms ease-out;
    cursor: pointer;
}

.module-left{
  width:50px;
  display:flex;
  flex-direction: column;
  margin-right: 15px;
  height:100%;
  float:left;
}

.module-icon{
  width:100%;
  color: #fff;
  border-radius: 50%;
}

.module-right{
  color: white;
  margin-left: 5px
  flex:1;
}

.module-name{
  font-weight: 600;
  font-size:22px;
  color:#fff;
}

.module-description{
  font-weight: 400;
  font-size:13px;
  color: rgba(255,255,255,.65);
}

.section-header{
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 15px;
  display:flex;
  height:60px;
}

.section-header&gt;h2{
  margin-bottom: 10px;
  margin-top: 10px;
}


.section-header-icon{
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.section-header-action{
  margin-left: auto;
}
.section-content{
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.3);
}



.command{
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 16px;
    background-color: #2b2f33;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 3px;
    padding: 10px 16px;
    min-height: 85px;
    -webkit-transition: opacity 175ms ease-out;
    -moz-transition: opacity 175ms ease-out;
    -o-transition: opacity 175ms ease-out;
    -ms-transition: opacity 175ms ease-out;
    transition: opacity 175ms ease-out;
    margin-top: 10px;
}

.command-text{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-family: Ubuntu;
}

.command-text div{
  line-height: 1;
}

.command-name{
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

.command-description{
  font-size:13px;
  margin-top: 6px;
  color: #fff;
  opacity: 0.6;
}

.command-options{

    margin-left: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.command-option{
    padding-left: 15px;
  padding-right: 15px;
}
.command-option::before{
  content:"";
  width:1px;
}

.toggle{
      width: 60px;
    height: 30px;
    border-radius: 35px;
    background-color: #ccc;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    -webkit-box-shadow: 0 1px 3px #1a1a1a;
    box-shadow: 0 1px 3px #1a1a1a;
}

.toggle-circle{
      width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    -webkit-box-shadow: 0 1px 3px #999;
    box-shadow: 0 1px 3px #999;
    -webkit-transition: left 200ms ease-out;
    -moz-transition: left 200ms ease-out;
    -o-transition: left 200ms ease-out;
    -ms-transition: left 200ms ease-out;
    transition: left 200ms ease-out;
}

.checked{
  background-color: #e46b60;
}


.toggle.checked .toggle-circle {
    left: 33px;
}

.flex-row{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;

        -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-right{
  margin-left: auto;
}

.badge-container{
    background-color: #2b2f33;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 3px;
    padding: 10px 16px;
    min-height: 50px;
    -webkit-transition: opacity 175ms ease-out;
    -moz-transition: opacity 175ms ease-out;
    -o-transition: opacity 175ms ease-out;
    -ms-transition: opacity 175ms ease-out;
    transition: opacity 175ms ease-out;
    margin-top: 10px;
}

.badge{
  margin-right: 5px;
  color:#fff !important;
  opacity: 0.9;
}

.badge-modules{
	font-size:60% !important;
}

.badge-danger{
	background-color: #f45142;
}
.command:hover .command-delete{
  visibility:visible;
}
.command-delete{
    visibility: hidden;
    background-color: #f04848;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    color:#fff;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 32px;
    height: 32px;
    top: -16px;
    right: -16px;
}

.modal-content{
  background-color: #2f3336;
    border-radius: 4px;
    width: 580px;
    max-height: calc(100% - 100px);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: opacity 250ms ease-out;
    -moz-transition: opacity 250ms ease-out;
    -o-transition: opacity 250ms ease-out;
    -ms-transition: opacity 250ms ease-out;
    transition: opacity 250ms ease-out;
}

.modal-helper{
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
}

.modal-header{
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.modal-footer{
  border-top: 1px solid rgba(255,255,255,.1);
}

.close{
  color:#fff;
}

.close:hover{
  color:#fff;
}
.modal-title{
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-section h5{
  color: #fff;
  opacity: 0.9;
      text-transform: uppercase;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-divider{
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,.1);
}

.premium-content{
  margin-top:75px;
}

.premium-title{
  font-size: 36px;
  font-weight: 700;
  color:#f16e62;
  margin-top: 70px;
  text-transform: uppercase;

}

.premium-description{
  font-size: 17px;
  font-family: Ubuntu;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.7;
}

.premium-button{
}

.StripeElement {
  box-sizing: border-box;

  /*height: 40px;*/
  width:100%;
  padding: 10px 12px;

  border-radius: 4px;
  background-color: white;
  border: 1px solid #efefef;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

#card-element{
      -webkit-appearance: none;
    font-size: 16px;
    padding: 14px;
    padding-top: 19px;
    padding-bottom: 19px;
    border-radius: 5px;
    outline: none;
    box-shadow: none;
    border: 1px solid #efefef;
    width: 100%;
    margin: 14px;
    margin-left: 0;
    margin-right: 0;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.pay{
      background: #ff4742;
    font-weight: 800;
    cursor: pointer;
    color: #fff;
    border: 1px solid #ff4742;
    display: inline-block;
    margin: 14px;
    padding: 14px;
    padding-top: 21px;
    padding-bottom: 21px;
    display: block;
    border-radius: 5px;
    width: 100%;
    margin-top: 5px;
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
}

.pay-ultimate{
  background-color: #32325d;
  border:1px solid #32325d;
}

.pay:disabled{
  background-color: #fd8784;
  opacity: 0.5;
  cursor: not-allowed;
}

#card-errors {
  text-align: center;
    padding-top: 7px;
    color: #ff4742;
    display: block;
    font-weight: 800;
    padding-bottom: 7px;
}

#charge-errors {
  text-align: center;
    padding-top: 7px;
    color: #ff4742;
    display: block;
    font-weight: 800;
    padding-bottom: 7px;
}

.plans {
    background-color: #36383a;
    border-radius: 5px;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
    margin-top: 14px;
    margin-bottom: 14px;
}

.plan{
  text-align: center;
    position: relative;
    overflow: initial;
    margin:7px;
    border-radius: 5px;
    padding:10px;
    color:#fff;
}

.active{
    background: #fff;
    color: #000;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    border: 1px solid #dddddd;
    width: 105%;
    margin-left: -2.5%
}

.active small{
  opacity: 1.00 !important;
}

.plan-types-inner{
    text-align: center;
    border: 1px solid black;
    width: 100%;
    display: inline-block !important;
    padding: 7px;
    background-color: #36383a;
    border-radius: 5px;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
    margin-top: 14px;
    cursor: pointer;
    color: #fff;
}

.plan-types-active{
  padding:11px;
  background-color: red;
}

.premium-form{
 padding-left: 80px;
}

.plan p{
  margin:0;
}

.plan p small{
  font-size: 0.65em;
}

.content{
  padding:0px 25px;
}

.brand{
  height:70px;
  width:70px;
}


.premium-features-title h2{
  margin-top:80px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.premium-features-title{
  text-align: center;
  width:100%;
}
.premium-feature{
    border-right: 1px solid #434649;
    border-bottom: 1px solid #434649;
        padding: 60px;
    -webkit-transition: background-color ease-in 170ms;
    -moz-transition: background-color ease-in 170ms;
    -o-transition: background-color ease-in 170ms;
    -ms-transition: background-color ease-in 170ms;
    transition: background-color ease-in 170ms;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    position: relative;
}

.premium-feature:hover{
  background-color: #383c40;
}
.premium-feature-inner{
      display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.premium-feature-inner img{
      margin-right: 20px;
      height:80px;
    width: 80px;
}

.premium-feature-text{
      display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 305px;
}

.premium-feature h4{
    color: #fff;
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 0px;
}

.premium-feature span{
  color: #707376;
    font-size: 16px;
    font-family: Ubuntu;
    margin-top: 9px;
}


.footer{
     position:fixed;
   left:0px;
   bottom:25px;
   height:50px;
   width:100%;
   padding-left: 15%;
   padding-right: 15%;
}
.save-confirmation{
      z-index: 2000;
    width: 100%;
    /*max-width: 1200px;*/
    border-radius: 3px;
    background-color: rgba(0,0,0,.5);
    padding: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    /*position: fixed;*/
    bottom: 20px;
    -webkit-transition: bottom 600ms cubic-bezier(.68,-.55,.265,1.55);
    -moz-transition: bottom 600ms cubic-bezier(.68,-.55,.265,1.55);
    -o-transition: bottom 600ms cubic-bezier(.68,-.55,.265,1.55);
    -ms-transition: bottom 600ms cubic-bezier(.68,-.55,.265,1.55);
    transition: bottom 600ms cubic-bezier(.68,-.55,.265,1.55);
}
.premium-text{
  color: #49c1e8;
}
.save-text{
      -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-right: auto;
}

.custombot-title{
    font-size: 36px;
  font-weight: 700;
  color:#f16e62;
  text-transform: uppercase;
}

.custombot-text{
  color:#fff;
  opacity: 0.7;
}

.form-group &gt;label, .form-check&gt;label{
  color:#fff;
  opacity: 0.7;
}
.custombot-strong{
  color:#f16e62;
}

.edit-button {
    line-height: 1;
    font-weight: 600;
    min-height: 32px;
    border-radius: 3px;
    font-size: 14px;
    padding:10px 30px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
}

.levels-leaderboard-button{
  columns: #fff;
}


/*MODULES PAGE*/

.module-body{
  background-color: #212427
}

.module-header-container{
  margin-top: 15%;
}
.module-image{
  max-height:100%;
  max-width:100%;
}

.module-header{
      font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: capitalize;
    color:white;
}

.module-header-text{
  margin-top: 15px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.modules-icon{
    width: 50px;
    height:50px;
    color: #fff;
    border-radius: 50%
    margin-right:15px;

}

.module-features{
  border:none !important;
}

.premium-feature-text a{
  color:white;
}

.bot-icon{
      border-radius: 100%;
    height: 50px;
    width: 50px;
    display: inline;
        margin-right: 10px;
}

.bot-icon-container{
  font-weight: 600;
    font-size: 20px;
    color: #fff;
}

.bot-switcher-item{
      margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,.1);
    padding: 10px;
}

.bot-switcher-item:hover{
  cursor: pointer;
}

.quantity-input{
  width:50%;
  text-align: center;
}

.plan-hover:hover{
  cursor: pointer;
}


.modal-body p{
  color: white;
  opacity: 0.8;
}

.savings{
      color: #ff4742;
    font-style: italic;
    font-size: 14px;
    opacity: 0.8;
}

.profile-img{
  height:30px;
  width:30px;
  border-radius: 50%;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff4742;;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}


.permission-form{
  background-color: #2b2f33;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 16px;
    background-color: #2b2f33;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 3px;
    padding: 10px 16px;
}

.permission-label{
      font-weight: 600;
    font-size: 16px;
    color: #fff;
    opacity: 1;
}

.permission-input{
/*      width: 50%;
    font-size: 14px;
    color: #fff;
    border: 1px solid #1a1a1a;
    background: #2b2f33;
    border-radius: 3px;
    padding: 15px 15px;
    font-weight: 500;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border 250ms ease-out;
    -moz-transition: border 250ms ease-out;
    -o-transition: border 250ms ease-out;
    -ms-transition: border 250ms ease-out;
    transition: border 250ms ease-out;
    resize: none;
    margin-top: 10px;*/
}

.form-control:disabled, .form-control[readonly] {
    background-color: #2b2f33;

	}


select{
      font-family: Ubuntu,Helvetica,arial,sans-serif;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    color: #fff;
}

.custom-select{
    position: relative;
     background: #2b2f33;
    width: 100%;
    min-height: 50px;
    border: 1px solid #1a1a1a;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border 250ms ease-out;
    -moz-transition: border 250ms ease-out;
    -o-transition: border 250ms ease-out;
    -ms-transition: border 250ms ease-out;
    transition: border 250ms ease-out;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color:#fff;
}

.permission-command{
min-height: 70px;
}

.permission-text{
  font-size:16px;
}

.permission-group{
  padding:0px 15px;
  border:1px solid rgba(255,255,255,.1);
}

.permission-condition{
  opacity: 1.0;
}


.role-container {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.role-inner{
  width: 100%;
    background: #2b2f33;
    border-radius: 3px;
    border: 1px solid #000;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 6px;
    min-height: 50px;
   -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.role-list{
      margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding:0px;
}

.role-item{
  font-weight: 500;
  margin:6px;
  cursor: pointer;
}


.add-role-button{
    font-size: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    background: 0 0;
    border: none;
    color: #ccc;
    font-weight: 600;
    margin-left: 5px;
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.dropdown-item-header{
  opacity: 1;
  color: black;
  font-weight: 700;
}

.dropdown-item-header:hover{
    opacity: 1;
  color: black;
  font-weight: 700;
  cursor: auto;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.faq{
  padding:20px;
}

.faq-container{
      padding: 15px 20px;
    border: 2px solid rgba(255,255,255,.039);
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-transition: border ease-out 150ms;
    -moz-transition: border ease-out 150ms;
    -o-transition: border ease-out 150ms;
    -ms-transition: border ease-out 150ms;
    transition: border ease-out 150ms;
}

.faq-question{
  display: flex;
}

.faq-question h3{
  flex:1;
  padding:0;
  text-transform: unset;
  font-weight: 600;
  color: #fff;
  opacity: 0.7;
}

.faq-answer{
      max-height: 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -o-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transition: all ease-in 150ms;
    -moz-transition: all ease-in 150ms;
    -o-transition: all ease-in 150ms;
    -ms-transition: all ease-in 150ms;
    transition: all ease-in 150ms;
    border-top: 1px solid rgba(255,255,255,.039);
}


.accordion{
  width: 100%;
}

.card{
  margin-bottom: 20px;
}

.card-body{
  font-weight: 400;
  opacity: 0.6;
}


.new-premium-plan{
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 350px;
	border-radius: 4px;
border-color: rgba(255, 255, 255, 0.06);
border-style: solid;
border-width: 2px;
background-color: rgba(255, 255, 255, 0.06);
padding:30px 10px;
}

.new-premium-plan-popular{
  border-color: rgb(244 81 66);
  border-width: 3px;
}

.new-premium-plan-name{
	font-weight: 400;
  text-transform: none;
	color: #fff;
}

.new-premium-plan-description{
	opacity: 0.7;
	color: #fff;
}

.new-premium-plan-tag{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgb(244 81 66 / 0.7);
	height: 30px;
border-radius: 12px;
padding: 0px 10px;
color: #fff;
font-weight: 400;
}

.new-premium-plan-price{
	font-size: 40px;
	color: white;
	font-weight: 600;
}

.new-premium-plan &gt;div{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.new-premium-plan-buttons{
	margin-top: auto;
	width: 100%;
}

.new-premium-plan-billing{
	font-size: 13px;
    color: #fff;
    opacity: 0.7;
		text-align: center;
}
.premium-strike{
  text-decoration: line-through;
  color:#ff4742;
}

.plan.plan-best:after{
  content: 'âœ¨';
    position: absolute;
    font-size: 1.5em;
    top: 0;
    right: 0;
    margin-right: 23px;
    margin-top: 3px;
}

.plan.plan-best:before{
      content: 'Popular';
    font-weight: bold;
    position: absolute;
    font-size: 0.75em;
    color: #7b7b7b;
    top: 2em;
    right: 0em;
    /* margin-right: 7px; */
    margin-right: 14px;
    margin-top: 7px;
}

.module-inner{
  overflow: hidden;
  position: relative;
}
.module-inner.premium:after{
    content: "PREMIUM";
    color: #fff;
    font-family: Ubuntu;
    font-weight: 600;
    font-size: 12px;
    line-height: 26px;
    text-transform: uppercase;
    background-color: #ff4742;
    height: 26px;
    -webkit-transform: rotate(38deg);
    -moz-transform: rotate(38deg);
    -o-transform: rotate(38deg);
    -ms-transform: rotate(38deg);
    transform: rotate(38deg);
    position: absolute;
    right: -27px;
    top: 14px;
    width: 123px;
    text-align: center;
    -webkit-box-shadow: 0 0 6px #000;
    box-shadow: 0 0 6px #000;

}

.module-inner.premium-upgrade-banner:after{
    content: "UPGRADE";
    color: #fff;
    font-family: Ubuntu;
    font-weight: 600;
    font-size: 12px;
    line-height: 26px;
    text-transform: uppercase;
    background-color: #ff4742;
    height: 26px;
    -webkit-transform: rotate(38deg);
    -moz-transform: rotate(38deg);
    -o-transform: rotate(38deg);
    -ms-transform: rotate(38deg);
    transform: rotate(38deg);
    position: absolute;
    right: -27px;
    top: 14px;
    width: 123px;
    text-align: center;
    -webkit-box-shadow: 0 0 6px #000;
    box-shadow: 0 0 6px #000;

}

.premium-menu{
      font-size: 14px;
    margin-top: 0;
    color: #ff4742;
    font-weight: 400;
    padding: 3px 5px;
    border: 1px solid #ff4742;
    border-radius: 3px;
    margin-left: 15px;
}

.signed-up{
  font-size: 0.9em;
    margin-top: 0;
    color: #ff4742;
    font-weight: 800;
    /* background: #fff; */
    padding: 5px;
    border: 1px solid #ff4742;
    border-radius: 3px;
    text-align: center;
}

input:disabled, .btn:disabled, button:disabled{
  cursor: not-allowed;
}

.word-add{
    background-color: rgba(255,255,255,.1);
    padding: 0;

}

.word-add input{
  border: none;
    outline: none;
    background: 0 0;
}

.leaderboard-container{
  margin-top: 50px;
}

.leaderboard-container h1{
  color:white;
  font-size: 28px;
  font-weight: 600;
  margin-left: 30px;
}

.leaderboard-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
}

.leaderboard-header{
  display: flex;
  align-items: center;
  width: 100%;
}

.leaderboard-header-left{
  display: flex;
  align-items: center;
  flex-direction: row;
}

.leaderboard-header-right{
  display: flex;
  align-content: center;
  margin-left: auto;
  flex-direction: row;

}
.leaderboard-inner{
  padding-top: 15px;
}

.leaderboard-main-container{
  border-radius: 5px;
  width: 100%;
  background-color: #41464a;
  margin-top: 50px;
      -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}

.leaderboard-member-inner{
  height: 70px;
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}

.leaderboard-member-div{
  height: 1px;
  width: 100%;
  background-color: #596069;
}


.leaderboard-member-rank{
  height: 30px;
  width: 30px;
  margin-top: 20px;
  border-radius: 50%;
  background-color: #6e767d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

}

.leaderboard-member-level-inner{
    height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #DAA520;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.leaderboard-header-info{
  margin-left: 50px;
}

.leaderboard-member-container{
  padding: 15px 30px;
}

.leaderboard-member-left{
  display:flex;
  align-content: center;
  flex-direction: row;
}

.leaderboard-member-right{
  display: flex;
  align-content: center;
  margin-left: auto;
  flex-direction: row;

}

.leaderboard-member-level, .leaderboard-member-messages, .leaderboard-member-experience{

  display: flex;
  align-content: center;
  align-items: center;
  margin-left: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
}

.leaderboard-exp-progress{
  width: 150px;
  margin-top: 34px;
  margin-left: 20px;
}

.leaderboard-member-info-icon{
  opacity: 0.5;
}

.leaderboard-member-level{
}

.leaderboard-member-icon img{
  margin-top: 5px;
  margin-left: 20px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leaderboard-member-name{
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  margin-left: 20px;
}

.leaderboard-cta{
    font-size: 14px;
    margin-top: 0;
    color: #ff4742;
    font-weight: 400;
    padding: 7px 7px;
    border: 1px solid #ff4742;
    border-radius: 3px;
    margin-left: 15px;
}

.leaderboard-editor-container{
  position: absolute;
  top: 25;
  right:0;
  padding: 15px;
}

.leaderboard-editor{
    border-radius: 3px;
    background-color: black;
    padding: 5px;
    height: 350px;
}

.modal-list li{
  color: #fff;
    opacity: 0.9;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.main-wrapper{
  display: flex;

}

.side-bar{
      min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    background-color: #212427;
    padding-top: 25px;
    padding-left: 10px;
}

.side-bar-header{
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 25px;

}


.side-bar-icon img{
  height: 80px;
  width: 80px;
  border-radius: 100%;
}

.side-bar-icon h2{
  margin-top: 10px;
  text-transform: none;

}



.side-bar-menu{
  margin: 0px;
  padding: 0px;

}
.side-bar-nav-header&gt;span{
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
      color: #878787 !important;
      margin-bottom: 10px;
  padding:0px !important;


}

.side-bar-menu li{
  padding: 5px 15px;
  width:100%;
}

.side-bar-menu a{
  color:#fff;
}
.side-bar-menu span:hover, .side-bar-menu a:hover{
  color: #f45142 !important;
  cursor: pointer;
}
.side-bar-menu span{
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color:#fff;
}

.side-bar-disabled{
  opacity: 0.6;
    cursor: not-allowed;
}

.side-bar-enabled span{
  color: #f45142;
}

.side-bar-menu i{
  margin-right: 15px;
}
@keyframes bounce{
  20%, 53%, 80%, 0%, 100% {
      -webkit-animation-timing-function: cubic-bezier(0.215,.61,.355,1);
      animation-timing-function: cubic-bezier(0.215,.61,.355,1);
      -webkit-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
  }
  40%, 43% {
      -webkit-animation-timing-function: cubic-bezier(0.755,.050,.855,.060);
      animation-timing-function: cubic-bezier(0.755,.050,.855,.060);
      -webkit-transform: translate3d(0,-30px,0);
      transform: translate3d(0,-30px,0);
  }
  70% {
      -webkit-animation-timing-function: cubic-bezier(0.755,.050,.855,.060);
      animation-timing-function: cubic-bezier(0.755,.050,.855,.060);
      -webkit-transform: translate3d(0,-15px,0);
      transform: translate3d(0,-15px,0);
  }
  90% {
      -webkit-transform: translate3d(0,-4px,0);
      transform: translate3d(0,-4px,0);
  }
}


.bounce{
  animation: bounce 2s infinite;
}

.ad-alert{
  width: 100%;
  background-color: #f45142;
}

.ad-alert-success{
	width: 100%;
	background-color: #28a745;
}


.mobile-bot-info{
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: 15px;
}

.mobile-bot-info img{
  height: 50px;
  width: 50px;
  border-radius: 100%;
}

.mobile-bot-info h2{
  margin-top: 10px;
  text-transform: none;
  font-size: 15px;
}


.mobile-bot-menu{
  margin-top: 15px;
}

.mobile-bot-menu ul{
  list-style: none;
  display: flex;
  align-items: stretch; /* Default */
  justify-content: space-between;
  width: 100%;
  color: #fff;
 margin:0;
 padding: 0;

}

.mobile-bot-menu li{

      display: block;
    flex: 0 1 auto; /* Default */
    list-style-type: none;
}

.mobile-bot-menu span{
  font-size: 40px;
}

.mobile-bot-menu a{
  color: #fff;
}

.modal-content{
  max-width: 100%;
}

.fact-box{
  display: flex;
}

.fact-box-inner{
  margin:auto;
}


/* BOT PAGE STYLES */

.bot-page-header{
	margin-top: 50px;
}

.bot-page-header-inner{
  padding: 25px 30px;
  padding-left: 21px;
	height: 150px;
  background-color: #41464a;
	display: flex;
	display: -webkit-flex;
display: -ms-flexbox;
}

.bot-page-header-text{
	display: flex;
}

.bot-page-header-text-container{
	color: white;
	display: flex;
	justify-content: center;
	flex-direction: column;
	flex:1;
	margin-left:15px;
}
.bot-page-header-text-container&gt;h1{
	font-weight: 600;
	font-size: 30px;
	display: flex;
}
.bot-page-header-text-container&gt;h3{
	display: flex;
	font-weight: 400;
	font-size: 15px;
	text-transform: none;
	opacity: 0.7;
}
.bot-page-header-icon{
	height: 100px;
	width: 100px;
	border-radius: 50%;
}

.bot-page-header-buttons{
	margin-left: auto;
	display: flex;
	align-items: center;
}

.bot-page-header-buttons&gt;a{
	margin-left: 10px;
}

.bot-page-main-content{
	margin-top: 25px;
	margin-right: 0;
}

.nav-branding-container{
	color: #dc3545;
	margin-top: 12px;
}

.nav-branding-container:hover{
	color: white;
}
.bot-page-main-content h2{
	text-transform: none;
}

.bot-page-tag{
	margin-bottom: 5px;
}
.bot-page-description-container, .bot-page-sidebar, .bot-page-features-container, .bot-page-search-container{
	    padding: 25px 30px;
	background-color: #41464a;
	display: flex;
	display: -webkit-flex;
display: -ms-flexbox;
flex-direction: column;
color: white;
margin-top: 25px;
}

.bot-page-sidebar-container span{
	opacity: 0.7;
}
.bot-page-sidebar-stats, .bot-page-sidebar-info{
	margin-top:20px;
}

.bot-page-search-container h4{
	font-weight: 400;
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
		margin-top: 15px;
}

.bot-page-search-container span{
	opacity: 0.7;
}

.bot-page-description-container p{
	opacity: 0.7;
}

.bot-page-description-container .badge{
	font-size: 100%;
}

.bot-page-search-box, .bot-page-search-tag{
	margin-top: 25px;
}

.bot-page-search-tag{
	color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}


.bot-page-search-tag:hover{
	color: white;
}

.support-container h2{
  font-size: 26px;
  text-transform: none;
  font-weight: 500;
  line-height: 1.5em;
  margin-top: 0;
  padding-top: 0;
  color: #fff;
  padding: 20px 0 10px;
  font-family: 'Poppins', sans-serif;
  opacity: 1;
}

.support-container p{
  font-size: 20px;
  color: #969899;
  line-height: 1.8em;
  margin-top: 5px;
}

.support-container .module-name{
  font-family: 'Poppins';
}

.support-container .module-description{
  font-family: 'Roboto';
}


.support-option{
  display:flex;
  flex-direction: column;
  text-align: center;
  background-color: #3e4246;
  padding: 30px 15px;
  cursor: pointer;
}

.support-option-active{
  border:2px solid #ff4742;
}

.support-helper{
  padding: 30px;
  background-color: #3e4246;
  margin-top: 35px;
}

.support-helper h2{
  font-weight: 600;
  color: #fff;
  font-size: 30px;
}

.support-helper p{
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,.65);
  font-family: 'Roboto';
}


.support-option-outer{
  padding: 15px;
}
.support-option i{
  font-size: 45px;
  color:#fff;
}

.video-iframe{
  margin: 30px 0px;
}
.support-option span{
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 17px;
  color: rgba(255,255,255,.65);
  margin-top: 5px;
}
.utlimate-plan{
  background-color: #f34e43;;
}

.utlimate-plan button{
  background-color: #fff;
  color:#f34e43;
}

.new-premium-plan-buttons-container{
  width: 100%;
}

.new-premium-plan-buttons-container button{
  width: 49%;
  padding: 7px 5px;
  border-radius: 19px;
  font-weight: 600;
}
.twitter-popup{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
  background-color: #212427;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  border-radius: 6px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  color: #fff;
  font-weight: 700;
}

.best-value{
  height: 27px;
  border-radius: 15px;
  background-color: #f04848;
  color: rgb(255, 255, 255);
  text-align: center;
  line-height: 100%;
  padding: 10px 20px;
  font-size: 13px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 0px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.twitter-popup img{
  height: 25px;
  margin-bottom: 5px;
}

@media(max-width:800px) {
  .module-image{
    margin-bottom: 50px
  }
  .module-header-container{
    text-align: center;
  }

}

.mobile-menu-container{
  display: none
}


@media(max-width: 425px){

  .mobile-menu-container{
    display: block;
  }

  .side-bar, .command-description{
    display: none;
  }

  .premium-content{
    margin-top: 30px;
  }

  .premium-form{
    padding-left:0;
    padding:15px;
  }

  .edit-button{
    padding:5px 15px;
  }

  .command-option{
    padding-right: 7.5px;
    padding-left: 7.5px;
  }

  .premium-title, .premium-description{
    display: none;
  }

  .token-screen-container{
    height:100%;
    max-width: 100%;
  }
  .mobile-save-confirmation{
    display: flex;
  }

  .non-mobile{
    display: none;
  }

  .footer{
    padding: 0% 20%;
  }


}
</pre></body></html>