@import url("https://fonts.cdnfonts.com/css/montserrat");
html {
  background: #0d0d1c;
  color: #fff;
}

a {
  color: #5678f6;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #345be8;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5 {
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  font-family: "Montserrat", sans-serif;
}
body .container {
  width: 100%;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  z-index: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .container .card {
  background-color: #222231;
  padding: 15px;
  border-radius: 5px;
}
body .container .card .card_header {
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  margin: 10px 0px 20px 0px;
  z-index: 1;
}
body .container .card .card_header div {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  top: -27px;
  right: 0;
  text-align: center;
  color: transparent;
  font-size: 50px;
  z-index: -1;
  -webkit-text-fill-color: #222231;
  -webkit-text-stroke-color: rgba(247, 243, 243, 0.05);
  -webkit-text-stroke-width: 1px;
}
@media (max-width: 768px) {
  body .container .card .card_header div {
    display: none;
  }
}
body .container_navbar {
  background: rgba(255, 255, 255, 0.0588235294);
}
body .container_navbar .container_navbar_buttons {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
body .container_navbar .container_navbar_buttons a {
  width: 90px;
  transition: 0.3s;
  padding: 15px 0px 5px 0px;
  color: rgba(255, 255, 255, 0.295);
  border-bottom: 2px solid transparent;
}
body .container_navbar .container_navbar_buttons a.active {
  font-weight: bold;
  color: #fff;
  border-bottom: 2px solid #345be8;
}
body .container_navbar .container_navbar_buttons a:hover {
  color: #fff;
  transition: 0.3s;
  border-bottom: 2px solid #345be8;
}
body .container_navbar .container_navbar_buttons a svg {
  width: 35px;
}
body .container_navbar .container_navbar_buttons a div {
  font-size: 13px;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
}

.migration_center {
  display: flex;
  justify-content: center;
}
.migration_center .migration_button {
  padding: 10px 20px;
  background-color: #345be8;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  outline: none;
  border: 0;
  font-weight: bold;
  font-family: inherit;
}
.migration_center .migration_button:hover {
  transition: 0.3s;
  filter: brightness(115%);
}

.inputs_groups {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: end;
}
@media (max-width: 768px) {
  .inputs_groups {
    grid-template-columns: 1fr;
  }
}

.btn {
  padding: 10px 10px;
  border-radius: 10px;
  font-family: inherit;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  background: #345be8;
  border: 2px solid transparent;
  transition: 0.3s;
  transform: translateY(-1px);
  width: 100%;
  transition: 0.3s;
}
.btn:hover {
  transition: 0.3s;
  filter: brightness(120%);
}

.buttons_group {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  height: 80%;
}
@media (max-width: 768px) {
  .buttons_group {
    grid-template-columns: 1fr;
  }
}

.input_group {
  position: relative;
}
.input_group .icon {
  background: none;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
}
.input_group .icon svg {
  position: absolute;
  right: 10px;
  max-width: 17px;
  height: 100%;
  top: -2px;
  transition: 0.3s;
  opacity: 0.5;
  color: #fff;
}
.input_group .icon svg:hover {
  transition: 0.3s;
  opacity: 1;
}
.input_group label {
  font-size: 13px;
  letter-spacing: 1px;
  position: relative;
  top: -5px;
  left: 2px;
}
.input_group input,
.input_group select {
  padding: 10px 10px;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  border: 0;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.0901960784);
  box-shadow: 0px 8px 25px -17px #000;
  border: 2px solid transparent;
  transition: 0.3s;
  transform: translateY(-1px);
  padding-right: 35px;
  width: 100%;
}
.input_group input[type=file],
.input_group select[type=file] {
  cursor: pointer;
}
.input_group input[type=file]:hover,
.input_group select[type=file]:hover {
  background-color: rgba(255, 255, 255, 0.1176470588);
}
.input_group input.input_date_cursor,
.input_group select.input_date_cursor {
  cursor: pointer;
}
.input_group input.input_date_cursor:hover,
.input_group select.input_date_cursor:hover {
  background-color: rgba(255, 255, 255, 0.1176470588);
}
.input_group input::placeholder,
.input_group select::placeholder {
  color: rgba(255, 255, 255, 0.445);
  font-weight: 400;
}
.input_group input:focus,
.input_group select:focus {
  transition: 0.3s;
  border: 2px solid #5678f6;
  box-shadow: none;
  transform: translateY(0px);
}
.input_group input:focus + .icon > svg,
.input_group select:focus + .icon > svg {
  transform: translateY(1px);
  transition: 0.3s;
}
.input_group select {
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff' width='12px' height='12px'><path d='M16.332,18.253l-2.885,2.835c-.108.108-.255.245-.414.389V2.522c.16.146.308.283.42.4l2.879,2.828a1,1,0,1,0,1.4-1.426L14.861,1.5c-.2-.2-.513-.486-.84-.776a3,3,0,0,0-3.976,0c-.327.289-.637.573-.834.77L6.332,4.319a1,1,0,0,0,1.4,1.426l2.885-2.834c.108-.108.255-.244.414-.389V21.477c-.16-.146-.309-.284-.42-.4L7.734,18.253a1,1,0,0,0-1.4,1.427L9.205,22.5c.2.2.513.487.84.777a2.99,2.99,0,0,0,1.982.752h.012a2.992,2.992,0,0,0,1.983-.754c.326-.289.636-.572.833-.769l2.879-2.828a1,1,0,0,0-1.4-1.427Z'/></svg>") no-repeat, rgba(255, 255, 255, 0.0901960784);
  background-position: calc(100% - 0.5rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-right: 2rem !important;
}
.input_group select option {
  background-color: #0d0d1c;
  border: 0;
}

.rewards_card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rewards_card a {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  background: rgba(247, 247, 247, 0.05);
  justify-content: center;
  border-radius: 10px;
  gap: 5px;
  position: relative;
}
.rewards_card a .reward_img {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.185);
  padding: 10px;
  border-radius: 15px;
  transition: 0.3s;
}
.rewards_card a .reward_img img {
  max-width: 80px;
  max-height: 80px;
  border-radius: 5px;
  transition: 0.3s;
  transform: translateY(0%);
}
.rewards_card a .reward_name {
  font-size: 20px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7019607843);
  transition: 0.3s;
}
.rewards_card a .reward_seconds {
  color: rgba(255, 103, 103, 0.7098039216);
  font-weight: bold;
  transition: 0.3s;
}
.rewards_card a .reward_sid {
  position: absolute;
  right: 15px;
  top: 15px;
  color: rgba(255, 255, 255, 0.2784313725);
  font-weight: 500;
  transition: 0.3s;
}
.rewards_card a:hover .reward_name {
  color: rgba(255, 255, 255, 0.9647058824);
}
.rewards_card a:hover .reward_sid {
  color: rgba(255, 255, 255, 0.5803921569);
}
.rewards_card a:hover .reward_img {
  background-color: rgba(0, 0, 0, 0.363);
}
.rewards_card a:hover .reward_img img {
  transform: translateY(-14%);
}

table {
  width: 100%;
  table-layout: fixed;
  font-family: "Montserrat", sans-serif;
}

.tbl-header {
  background-color: rgba(238, 238, 241, 0.0784313725);
  border-radius: 5px;
}
.tbl-header th {
  padding: 20px 15px;
  text-align: left;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

.tbl-content {
  height: 300px;
  overflow-x: auto;
  margin-top: 0px;
}
.tbl-content tr {
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.tbl-content tr:hover {
  transition: 0.3s;
  background-color: #334485;
}
.tbl-content tr.active_tr {
  background-color: #5974d9;
}
.tbl-content tr td {
  padding: 15px;
  text-align: left;
  vertical-align: middle;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
}
.tbl-content tr td:first-child {
  border-bottom-left-radius: 10px;
  padding-left: 20px;
  border-top-left-radius: 10px;
}
.tbl-content tr td:last-child {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

/* for custom scrollbar for webkit browser*/
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(88, 72, 72, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(52, 91, 232, 0.6980392157);
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.container_checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: 0px !important;
  left: 0 !important;
}

/* Hide the browser's default checkbox */
.container_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  border-radius: 50px;
  height: 25px;
  border: 2px solid #2196f3;
  width: 25px;
  transition: 0.3s;
}

/* When the checkbox is checked, add a blue background */
.container_checkbox input:checked ~ .checkmark {
  background-color: #2196f3;
  transition: 0.3s;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  transition: 0.3s;
  opacity: 0;
  top: 3px;
}

/* Show the checkmark when checked */
.container_checkbox input:checked ~ .checkmark:after {
  display: block;
  transition: 0.3s;
  opacity: 1;
  top: 5px;
}

/* Style the checkmark/indicator */
.container_checkbox .checkmark:after {
  left: 8px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swal2-styled.swal2-cancel, .swal2-styled.swal2-confirm {
  width: 120px !important;
  font-family: inherit;
}

/*# sourceMappingURL=admin.css.map */
