@font-face {
  font-family: Altone;
  src: url(../fonts/Altone.ttf);
  font-style: normal;
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-font: "Altone";
  --bg-color: #000;
  --bg-01: #111110;
  --bg-02: #0b0b0b;
  --primary-color-01: #c3ff19;
  --primary-color-02: #8dbf00;
  --btn-color: #c3ff19;
  --btn-01: #252525;
  --text-color1: #ffffff;
  --text-color2: #dddddd;
  --text-color3: #000000;
  --text-color4: #9d9d9d;
  --card-bg: #0e0e0d;
  --breaker-01: #2a2a29;
  --breaker-02: #1b1b1b;
  --breaker-03: #1e1e1e;
}

/* Scroll Bar CSS Start */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: #27272a;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--btn-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #71717a;
}

/* Scroll Bar CSS End */

.content_wrapper {
  background-image: url(../img/dashboard/Dashboard-domain-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

.breadcrumb-item a {
  color: var(--text-color1);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--primary-color-01) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-color1) !important;
}

.manage_box_header {
  display: flex;
  padding: 15px 0 5px 0;
  justify-content: space-between;
}

.manage_box_header p {
  font-size: 18px;
  color: var(--text-color1);
  font-weight: 500;
}

.manage_box_header span {
  color: #9d9d9d;
  font-size: 18px;
  font-weight: 500;
}

.manage_box_header span a {
  color: var(--primary-color-01);
  text-decoration: none;
  margin-left: 3px;
}

.manage_box_header span a svg {
  margin-left: 3px;
}

@media screen and (max-width: 768px) {
  .manage_box_header {
    display: block;
  }


}

.mytabs {
  display: flex;
  flex-wrap: wrap;
  background: #0d0d0c;
  border: 1px solid #191919;
  border-radius: 7px;
  padding: 7px;
}

.mytabs input[type="radio"] {
  display: none;
  border-bottom: 1px solid var(--breaker-02);
}

.mytabs label {
  padding: 15px;
  /* background: #e2e2e2; */
  color: var(--text-color1);
  font-size: 15px;
  font-weight: 400 !important;
  font-weight: bold;
  border-bottom: 1px solid var(--breaker-02);
}

.mytabs .tab {
  width: 100%;
  padding: 20px;
  transition: 0.5s;
  order: 1;
  display: none;
  border-top: 1px solid var(--btn-01);
}

.mytabs .tab h2 {
  font-size: 3em;
}

.mytabs input[type="radio"]:checked+label+.tab {
  display: block;
  transition: 0.5s;
}

.mytabs input[type="radio"]:checked+label {
  border-bottom: 1px solid var(--primary-color-01);
}

.tab_menu_items {
  display: flex !important;
  align-items: center !important;
}

.tab_menu_items span {
  border: 1px solid #252525;
  padding: 20px 20px;
  font-size: 14px;
  height: 30px;
  border-radius: 4px 0 0 4px;
  display: flex;
  align-items: center !important;
  color: var(--text-color1);
  background: #252525;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -ms-border-radius: 4px 0 0 4px;
  -o-border-radius: 4px 0 0 4px;
}

.tab_menu_items input {
  width: 100%;
  padding: 20px 20px;
  border: 1px solid #1b1b1b;
  height: 30px;
  border-radius: 0px 4px 4px 0px;
  background: #1b1b1b;
  color: var(--text-color4);
  font-size: 15px;
  display: flex;
  align-items: center;
}

.manage-domain_btn {
  border-radius: 6px !important;
  padding: 8px 15px !important;
  font-size: 15px !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  -ms-border-radius: 6px !important;
  -o-border-radius: 6px !important;
}

.tab_menu_items_2 {
  background-color: rgba(232, 155, 5, 0.1);
  align-items: center;
  padding: 8px 10px 8px 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.tab_menu_items_2 p {
  color: #A57923;
  margin-bottom: 0 !important;
  margin-left: 10px;
}

.tab_menu_ns h6 {
  color: var(--text-color1);
}

.tab_menu_items_ns input {
  width: 100%;
  padding: 20px 20px;
  border: 1px solid #1b1b1b;
  height: 30px;
  border-radius: 6px;
  background: #1b1b1b;
  color: var(--text-color4);
  font-size: 15px;
  align-items: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.tab_menu_items_ns input::placeholder {
  color: #9D9D9D;
}

.record_add {
  display: flex;
  justify-content: space-between;
}

.record_type input {
  padding: 10px 60px 10px 20px;
  margin-right: 20px;
  border: 1px solid #1b1b1b;
  border-radius: 6px;
  background: #1b1b1b;
  color: var(--text-color4);
  font-size: 15px;
  display: flex;
  align-items: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.record_name input {
  padding: 10px 240px 10px 20px;
  margin-right: 20px;
  border: 1px solid #1b1b1b;
  border-radius: 6px;
  background: #1b1b1b;
  color: var(--text-color4);
  font-size: 15px;
  display: flex;
  align-items: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  margin-right: 20px;
}

.record_pointing input {
  padding: 10px 110px 10px 20px;
  margin-right: 20px;
  border: 1px solid #1b1b1b;
  border-radius: 6px;
  background: #1b1b1b;
  color: var(--text-color4);
  font-size: 15px;
  display: flex;
  align-items: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.record_name label {
  padding: 0 !important;
  border-bottom: none !important;
  color: #9D9D9D;
  margin-bottom: 4px;
}

.record_type label {
  padding: 0 !important;
  border-bottom: none !important;
  color: #9D9D9D;
  margin-bottom: 4px;
}

.record_pointing label {
  padding: 0 !important;
  border-bottom: none !important;
  color: #9D9D9D;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .record_add {
    display: block;
  }

  .record_type input {
    width: 100%;
  }

  .record_name input {
    width: 100%;
    padding: 10px 0px 10px 20px;
  }

  .record_pointing input {
    width: 100%;
  }
}

@media screen and (max-width: 1800px) {
  .record_add {
    display: block;
  }

  .record_type input {
    width: 100%;
  }

  .record_name input {
    width: 100%;
  }

  .record_pointing input {
    width: 100%;
  }
}