.menu .nav a {
  color: var(--default-text-color);
  margin-left: 15px;
  outline: none;
}

.menu .nav li {
  display: block;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  font-weight: var(--font-weight-3);
  font-size: 12px;
}

.menu .nav li:hover {
  color: var(--default-text-color);
  background-color: var(--hover);
}

.menu .nav .active {
  color: var(--default-text-color);
  background-color: var(--hover);
}

.menu-header {
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.menu-header h5 {
  font-weight: var(--font-weight-3);
  font-size: 18px;
  margin-bottom: 20px;
}

.align-center {
  margin: 25px auto;
}

.input-form {
  margin-bottom: 10px
}

.dd-handle {
  display: block;
  height: 30px;
  margin: 5px 0;
  padding: 5px 10px;
  color: var(--default-text-color);
  text-decoration: none;
  font-weight: bold;
  background: var(--hover);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  transition: all 0.3s ease;
}

.module_setting {
  float: right;
  padding-top: 6px;
  padding-left: 6px;
  padding-right: 6px;
  opacity: .2;
}

.module_setting:hover {
  opacity: 1;
  transition: all 0.3s ease;
}

a {
  color: var(--span-color);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

.input-form {
  position: relative;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 6px;
  width: 100%;
  color: var(--custom-text-color);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.input-form .border-checkbox-label {
  position: relative;
  width: 100%;
  cursor: pointer;
  line-height: 22px;
  margin-top: 4px;
  padding-left: 30px;
  color: var(--top-text-color);
  font-size: 12px;
  font-weight: var(--font-weight-2);
  transition: .7s;
}

.input-form label {
  float: left;
  white-space: nowrap;
  width: 19%;
  margin: 0 5px;
  transition: .7s;
}

[role=button],
a,
area,
button,
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transition: .7s;
}

.border-checkbox:checked+.border-checkbox-label:after {
  -webkit-animation: check linear 0.5s;
  animation: check linear 0.5s;
  opacity: 1;
  border-color: #f37c00;
  transition: .7s;
}

.input-form .border-checkbox-label {
  position: relative;
  width: 100%;
  cursor: pointer;
  line-height: 22px;
  margin-top: 4px;
  margin-bottom: 15px;
  padding-left: 30px;
  color: var(--top-text-color);
  font-size: 12px;
  font-weight: var(--font-weight-2);
  transition: .7s;
}

.input-form .border-checkbox-label:after {
  content: "";
  display: block;
  width: 5px;
  height: 13px;
  opacity: .15;
  border-right: 2px solid var(--default-text-color);
  border-top: 2px solid var(--default-text-color);
  position: absolute;
  left: 5px;
  top: 13px;
  -webkit-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  transition: .7s;
}

.input-form .border-checkbox-label:before {
  content: "";
  display: block;
  border: 2px solid #3a3a3a;
  ;
  width: 23px;
  height: 23px;
  position: absolute;
  left: 0;
  transition: .7s;
}

.border-checkbox {
  display: none;
  transition: .7s;
}

.border-checkbox:disabled~.border-checkbox-label {
  cursor: no-drop;
  color: #ccc;
  transition: .7s;
}

@-webkit-keyframes check {
    0% {
      opacity: 0;
      transition: .7s;
    }
    50% {
      opacity: .5;
      transition: .7s;
    }
    100% {
      opacity: 1;
      transition: .7s;
    }
}

@keyframes check {
  0% {
    opacity: 0;
    transition: .7s;
  }
  50% {
    opacity: .5;
    transition: .7s;
  }
  100% {
    opacity: 1;
    transition: .7s;
  }
}

.sidebar-right .sidebar {
  position: relative;
  width: 220px;
}

.section i {
  /* color: var(--default-text-color); */
}

.sidebar-right {
  transition: left .3s ease, right .3s ease, box-shadow .3s ease, width .3s ease;
}

.unshow {
  width: 0px !important;
}

.close {
  bottom: 6px;
  position: relative;
  padding-top: unset !important;
  padding-left: unset !important;
}

.gateways {
  display: none;
  transition: .7s;
}

.gateways-label {
  position: relative;
  float: unset !important;
  width: 110px !important;
  display: inline-block;
  height: 40px;
  border-radius: 8px;
  transition: .7s;
}

.gateways-label:hover {
  -webkit-filter: brightness(125%);
  filter: brightness(125%);
  transition: .7s;
  cursor: pointer;
}

input.gateways:checked+label.gateways-label:after {
  -webkit-animation: check linear 0.3s;
  animation: check linear 0.3s;
  position: absolute;
  left: 10px;
  top: 0;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 35%);
  padding-top: 7px;
  padding-left: 69px;
  width: 100px;
  height: 40px;
  content: "\f26b";
  font-size: 17px;
  font-weight: 900;
  font-family: "Material-Design-Iconic-Font";
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #fff;
  transition: .7s;
  background: linear-gradient(90deg, transparent, #6080ff);
  float: left !important;
}

.float-right {
  float: right !important;
}

.text-center {
  text-align: center !important;
}

.user_pays {
  max-height: 300px;
  overflow-y: scroll;
  width: 100%;
  top: 15px;
  position: relative;

}

.lk_cards_info {
  text-align: center;
  padding: 10px 0;
  background: #22253e;
  font-weight: 700;
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}

#inviteCode.invite-page {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  background-color: #1b2027;
  padding: 10px;
  border: 1px solid var(--border-input-form);
  border-radius: 8px;
  justify-content: space-between;
  width: 100%;
  margin-top: -19px;
}

#inviteCode.invite-page #link {
  align-self: center;
  font-size: 13px;
  color: #f4a633;
  font-weight: 700;
  flex-grow: 2;
  margin-left: 5px;
  text-transform: uppercase;
  background-color: #1b2027;
  border: none;
}

#inviteCode.invite-page #copy {
  width: 30px;
  height: 30px;
  margin-left: 20px;
  border-radius: 6px;
  border: 1px solid var(--span-color);
}

#inviteCode.invite-page #copy i {
  display: block;
  line-height: 30px;
  position: relative;
  font-size: 12px;
  margin-left: 2px;
  color: var(--span-color);
}

#inviteCode.invite-page #copy i:hover {
  color: var(--default-text-color);
}

#inviteCode.invite-page #copy i::before {
  display: block;
  width: 15px;
  margin: 0 auto;
}

#inviteCode.invite-page #copy i.copied::after {
  position: absolute;
  top: 0px;
  right: 35px;
  height: 28px;
  line-height: 25px;
  display: block;
  content: "successfully!";
  font-family: 'Montserrat';
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 10px;
  color: #fff;
  background-color: #6080ff;
  border-radius: 6px;
  opacity: 1;
  will-change: opacity, transform;
  animation: showcopied 0.5s ease;
}

#inviteCode.invite-page #copy:hover {
  cursor: pointer;
  background-color: #6080ff;
  transition: background-color 0.3s ease-in;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: .5;
    transform: translateX(0);
  }

  100% {
    opacity: 1;
  }
}

.balance_info {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 20px 0;
  background-color: #1b2027;
  padding: 20px 24px;
  border-radius: 8px;
  color: var(--custom-text-color);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: help;
  align-items: center;
  flex-wrap: wrap;
}

.small_text_info {
  color: rgb(255 255 255 / 45%);
  margin-top: 10px;
  font-size: 10px;
  justify-content: center;
  text-align: center;
  opacity: .5;
}

.card_menu{
  border: 0px solid transparent;
  border-radius: 8px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  overflow: hidden;
  margin-bottom: 0px;
  background-color: var(--card-color);
}

.disabled {
  cursor: pointer;
  opacity: .3;
}

/*Checkboxes styles*/
.form-group input[type="checkbox"] { display: none; }

.form-group input[type="checkbox"] + label {
  display: block;
  position: relative;
  
  color: var(--custom-text-color);
  cursor: pointer;
  text-transform: uppercase;font-weight: 700;font-size: 14px;letter-spacing: .5px;-webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.form-group input[type="checkbox"] + label:last-child { margin-bottom: 0; }

.form-group input[type="checkbox"]:checked + label:before {
  width: 8px;
  top: -1px;
  left: -26px;
  border-radius: 0;
  opacity: 1;
  border: 1px solid #13ff66;border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  box-shadow: none;background-color: transparent;transform: rotate(45deg);
}

@media all and (min-width: 481px) {
	
	.form-group.accept {
		display: flex;text-align: center;padding: 20px 20px 5px 20px;
		
		
		
		position: relative;
		transition: all .1s ease-in-out;
		white-space: normal;
		max-height: 100px;
		
		
	justify-content: center;}
	
	.form-group input[type="checkbox"] + label:before {
	  content: '';
	  display: block;
	  width: 15px;
	  height: 15px;
	  border: 2px solid var(--span-color);
	  border-radius: 15px;background-color: #6080ff4a;box-shadow: 0 0 0 4px rgb(96 128 255 / 21%);position: absolute;
	  left: -28px;
	  top: 3px;
	  opacity: .6;
	  -webkit-transition: all .12s, border-color .08s;
	  transition: all .12s, border-color .08s;
	}
}

@media all and (max-width: 480px) {
	
	.form-group.accept {
		padding: 20px;
		border-radius: 4px;
		margin: 10px 0 10px 2px;
		box-sizing: border-box;
		position: relative;
		transition: all .1s ease-in-out;
		white-space: normal;
		max-height: 5%;
		max-width: 90%;
		background: var(--group-accept);
	}
	
	.form-group input[type="checkbox"] + label:before {
	  content: '';
	  display: block;
	  width: 20px;
	  height: 20px;
	  border: 1px solid var(--span-color);
	  position: relative;
	  left: 0;
	  top: 0;
	  opacity: .6;
	  -webkit-transition: all .12s, border-color .08s;
	  transition: all .12s, border-color .08s;
	}
}

.smalltext_bitch {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--custom-text-color);
  font-weight: 300;
  opacity: .5;
  transition: .3s;
}

.smalltext_bitch:hover {
  opacity: 1;
  transition: .3s;
}
