html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: 'Stack Sans Text';
  src: url('../assets/fonts/Stack_Sans_Text/static/StackSansText-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Stack Sans Text';
  src: url('../assets/fonts/Stack_Sans_Text/static/StackSansText-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'ABeeZee';
  src: url('../assets/fonts/ABeeZee/ABeeZee-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 16px;
  background: #F8F9FD;
  color: #3d4654;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.font-36 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0;
}
.font-24 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0;
}
.font-18 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0;
}
.font-16 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0;
}
.font-16-abeezee {
  font-family: 'ABeeZee', sans-serif;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0;
}
.font-16 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0;
}
.font-14 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
}
.font-12 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
}
.font-14-abeezee {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
}
.font-12-abeezee {
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
}
.btn {
  width: fit-content;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 40px;
  font-weight: 600;
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: solid 1px #3280fe;
  cursor: pointer;
  gap: 10px;
  text-decoration: none;
}
.btn.primary {
  background-color: #3280fe;
  color: #ffffff;
}
.btn.secondary {
  background-color: #ffffff;
  color: #3280fe;
  transition: background-color ease 0.3s;
}
.btn.secondary:hover {
  text-decoration: none;
  background-color: #3280fe;
  color: #ffffff;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
}
.site-header {
  z-index: 90;
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0px 2px 10px 0px #3D46541A;
  background-color: #ffffff;
}
.site-header .container {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.site-header .container .logo {
  max-width: 150px;
  max-height: 80px;
  width: 100%;
  height: 100%;
  margin-right: 50px;
}
.site-header .container .logo img {
  object-fit: contain;
}
.site-header .container nav {
  margin-right: auto;
}
.site-header .container nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  padding-top: 8px;
}
.site-header .container nav ul li {
  padding-bottom: 5px;
  border-bottom: solid 1px transparent;
  transition: color 0.3s ease;
}
.site-header .container nav ul li.active {
  border-bottom: solid 1px #3280fe;
}
.site-header .container nav ul li.active a {
  color: #3280fe;
  text-decoration: none;
  font-weight: 600;
}
.site-header .container nav ul li:hover,
.site-header .container nav ul li:focus,
.site-header .container nav ul li:active {
  border-bottom: solid 1px #3280fe;
}
.site-header .container nav ul li:hover a,
.site-header .container nav ul li:focus a,
.site-header .container nav ul li:active a {
  color: #3280fe;
  text-decoration: none;
  font-weight: 600;
}
.site-header .container nav ul li a {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0;
  color: #3d4654;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.site-header .container .logout .icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url(../assets/images/logout.svg) no-repeat;
  background-size: contain;
}
.site-header .container .logout:hover .icon {
  background: url(../assets/images/logout-white.svg) no-repeat;
  background-size: contain;
}
.site-header .container .hamburger {
  display: none;
}
.site-header .sidebar {
  display: none;
}
@media (max-width: 768px) {
  .site-header .container {
    height: 50px;
  }
  .site-header .container .logo {
    max-width: 115px;
    max-height: 30px;
  }
  .site-header .container nav {
    display: none;
  }
  .site-header .container .logout {
    display: none;
  }
  .site-header .container .hamburger {
    display: flex;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background: url(../assets/images/hamburger.svg) no-repeat;
    background-size: contain;
    cursor: pointer;
  }
  .site-header .sidebar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
  }
  .site-header .sidebar.active {
    display: flex;
  }
  .site-header .sidebar .head {
    height: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .site-header .sidebar .head .logo {
    max-width: 115px;
    max-height: 30px;
  }
  .site-header .sidebar .head .close {
    display: flex;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background: url(../assets/images/close.svg) no-repeat;
    background-size: contain;
    cursor: pointer;
  }
  .site-header .sidebar .body {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
  .site-header .sidebar .body nav {
    margin-bottom: 50px;
  }
  .site-header .sidebar .body nav ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .site-header .sidebar .body nav ul li {
    width: 100%;
  }
  .site-header .sidebar .body nav ul li a {
    color: #3d4654;
    font-family: 'ABeeZee', sans-serif;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
    text-decoration: none;
  }
  .site-header .sidebar .body .logout {
    width: auto;
    justify-content: center;
  }
  .site-header .sidebar .body .logout .icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
    background: url(../assets/images/logout.svg) no-repeat;
    background-size: contain;
  }
  .site-header .sidebar .body .logout:hover .icon {
    background: url(../assets/images/logout-white.svg) no-repeat;
    background-size: contain;
  }
}
.row-form-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.row-form-wrap.colOne {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .row-form-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.tp-input-field,
.sl-input,
.tp-input,
.row-form input,
.date-inputs input,
.config-row input {
  all: unset;
  border: solid 1px #DDE1EC;
  border-radius: 10px;
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
  height: 38px !important;
  text-align: left !important;
  padding: 0 0.75rem;
}
.tp-input-field::placeholder,
.sl-input::placeholder,
.tp-input::placeholder,
.row-form input::placeholder,
.date-inputs input::placeholder,
.config-row input::placeholder {
  color: #97A2C2;
}
.tp-input-field.invalid,
.sl-input.invalid,
.tp-input.invalid,
.row-form input.invalid,
.date-inputs input.invalid,
.config-row input.invalid {
  border-color: #c70000;
}
.info-message {
  color: #97a2c2;
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
  margin-top: 4px;
  font-weight: 400;
}
.error-message {
  display: none;
  color: #c70000;
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
  margin-top: 4px;
}
.help-text {
  color: #97a2c2;
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  margin-top: 4px;
  max-width: 430px;
}
.bot-filter label::after,
.date-range label::after,
.config-row label::after,
.row-form label::after {
  content: "";
  color: #c70000;
  margin-left: 1px;
}
.bot-filter input[required] + label::after,
.date-range input[required] + label::after,
.config-row input[required] + label::after,
.row-form input[required] + label::after,
.bot-filter select[required] + label::after,
.date-range select[required] + label::after,
.config-row select[required] + label::after,
.row-form select[required] + label::after,
.bot-filter input[required] ~ label::after,
.date-range input[required] ~ label::after,
.config-row input[required] ~ label::after,
.row-form input[required] ~ label::after,
.bot-filter select[required] ~ label::after,
.date-range select[required] ~ label::after,
.config-row select[required] ~ label::after,
.row-form select[required] ~ label::after {
  content: "*";
}
.bot-filter:has(input[required]) label::after,
.date-range:has(input[required]) label::after,
.config-row:has(input[required]) label::after,
.row-form:has(input[required]) label::after,
.bot-filter:has(select[required]) label::after,
.date-range:has(select[required]) label::after,
.config-row:has(select[required]) label::after,
.row-form:has(select[required]) label::after {
  content: "*";
}
.input-icon-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.input-icon-wrap.left .icon {
  left: 14px;
  right: unset;
}
.input-icon-wrap.left input {
  padding-left: 40px;
  padding-right: 0;
}
.input-icon-wrap input {
  width: 100%;
  padding-right: 35px;
  box-sizing: border-box;
}
.input-icon-wrap .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.myCheckbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: url('../assets/images/unchecked.svg') no-repeat center / contain;
  cursor: pointer;
  border: none;
  outline: none;
  margin: 0;
}
.myCheckbox:checked {
  background: url('../assets/images/checked.svg') no-repeat center / contain;
}
.poin-sections::-webkit-scrollbar,
.table-wrapper::-webkit-scrollbar {
  width: 12px;
  height: 8px;
}
.poin-sections::-webkit-scrollbar-track,
.table-wrapper::-webkit-scrollbar-track {
  background: #DDE1EC;
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.poin-sections::-webkit-scrollbar-thumb,
.table-wrapper::-webkit-scrollbar-thumb {
  background: #3280FE;
  border-radius: 20px;
  overflow: hidden;
}
.poin-sections::-webkit-scrollbar-thumb:hover,
.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #4f8df0;
}
.dashboard-page .content {
  display: flex;
  gap: 20px;
  padding: 60px 80px 40px;
}
.dashboard-page .chart-section {
  min-width: 440px;
  width: 100%;
  max-width: 622px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.dashboard-page .chart-section .tradingview-widget-container {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0px 0px 10px 0px #3D46541A;
}
.dashboard-page .chart-section .bot-table {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dashboard-page .chart-section .bot-table .tab-header {
  display: flex;
  gap: 5px;
}
.dashboard-page .chart-section .bot-table .tab-header .tab {
  padding: 9px 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0;
  font-weight: 600;
  background-color: #3280fe;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.4;
  box-shadow: 0px 0px 10px 0px #3D46541A;
}
.dashboard-page .chart-section .bot-table .tab-header .tab.active {
  background-color: #ffffff;
  color: #3280fe;
  border-radius: 10px 10px 0 0;
  opacity: 1;
}
.dashboard-page .chart-section .bot-table:after {
  content: "";
  width: 100%;
  height: 20px;
  background-color: white;
}
.dashboard-page .chart-section .bot-table .table-wrapper {
  padding: 20px 30px;
  background-color: #ffffff;
  border-top-right-radius: 10px;
  box-shadow: 0px -10px 10px 0px #3d4654 1 A;
  display: none;
  overflow-x: scroll;
}
.dashboard-page .chart-section .bot-table .table-wrapper.active {
  display: block;
}
.dashboard-page .chart-section .bot-table .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.dashboard-page .chart-section .bot-table .table-wrapper table thead tr th {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 600;
  color: #3280fe;
  border-bottom: 1px solid #DDE1EC;
  padding-bottom: 20px;
  padding-right: 40px;
  min-width: 80px;
  max-width: 200px;
  width: fit-content;
  padding-right: 32px;
}
.dashboard-page .chart-section .bot-table .table-wrapper table thead tr th:last-child {
  min-width: 52px;
  padding-right: 0;
}
.dashboard-page .chart-section .bot-table .table-wrapper table tbody tr td {
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
  color: #3d4654;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid #F0F3F8;
}
.dashboard-page .chart-section .bot-table .table-wrapper table tbody tr td:last-child {
  text-align: right;
}
.dashboard-page .chart-section .bot-table .table-wrapper table tbody tr:last-child td {
  border-bottom: none;
}
.dashboard-page .chart-section .bot-table .table-wrapper table tbody tr .action-btn {
  background: #fff;
  border: 1px solid #3280fe;
  color: #3280fe;
  min-width: 60px;
  width: 60px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
}
.dashboard-page .chart-section .bot-table .table-wrapper table tbody tr .action-btn:hover {
  background: #3280fe;
  color: #ffffff;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history {
  background: #ffffff;
  border-top-right-radius: 10px;
  box-shadow: 0px -10px 10px 0px #3d4654 1 A;
  padding: 30px;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
  gap: 20px;
  position: sticky;
  left: 0;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar label {
  display: block;
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
  color: #3d4654;
  margin-bottom: 10px;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .date-range {
  flex: 1;
  min-width: 120px;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .date-range .date-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .bot-filter {
  width: 180px;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history table {
  width: 100%;
  border-collapse: collapse;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history table thead th {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 600;
  color: #3280fe;
  border-bottom: 1px solid #DDE1EC;
  padding-bottom: 16px;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history table tbody tr td {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  color: #3d4654;
  padding: 18px 0;
  border-bottom: 1px solid #F0F3F8;
}
.dashboard-page .chart-section .bot-table .table-wrapper.history table tbody tr td:last-child {
  text-align: left;
}
.dashboard-page .bots-section {
  min-width: 400px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: fit-content;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.dashboard-page .bots-section .tabs {
  display: flex;
  gap: 10px;
}
.dashboard-page .bots-section .tabs .tab {
  padding: 10px 0;
  width: 140px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0;
  font-weight: 600;
  background: #3280fe;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.3s;
  border: 0;
}
.dashboard-page .bots-section .tabs .tab.active {
  background: #ffffff;
  color: #3280fe;
  opacity: 1;
}
.dashboard-page .bots-section .bots-panel {
  background-color: #ffffff;
  padding: 30px;
  display: none;
}
.dashboard-page .bots-section .bots-panel h3 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0;
  color: #3280fe;
  font-weight: 600;
  margin-bottom: 20px;
}
.dashboard-page .bots-section .bots-panel.active {
  display: block;
}
.dashboard-page .bots-section .bots-panel .bot-card {
  border-top: 1px solid #DDE1EC;
  margin-top: 20px;
  padding-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-info-wrap {
  display: flex;
  justify-content: space-between;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-info-wrap .bot-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-info-wrap .bot-info h4 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 600;
  color: #3280fe;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-info-wrap .bot-info p {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  color: #97a2c2;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-info-wrap .bot-roi {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-info-wrap .bot-roi .label {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  line-height: 18px;
  letter-spacing: 0;
  color: #3d4654;
  font-size: 14px;
  font-weight: 600;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-meta {
  margin-top: 10px;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-meta p {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.dashboard-page .bots-section .bots-panel .bot-card .bot-actions .btn {
  width: 100%;
  white-space: nowrap;
  justify-content: center;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section {
  display: none;
  margin-top: 40px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section h3 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0;
  color: #3280fe;
  font-weight: 600;
  margin-bottom: 20px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-table .config-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #F0F3F8;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-table .config-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-table .config-row .config-label {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  color: #3d4654;
  font-weight: 500;
  flex: 1;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-table .config-row .config-value {
  flex: 1;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-table .config-row input {
  margin-left: 1.50rem;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .min-investment {
  background-color: #E1EDFF;
  padding: 10px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .min-investment p {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  color: #3280fe;
  margin: 0;
  text-align: center;
  font-weight: 600;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .poin-sections::-webkit-scrollbar-track {
  margin: 0;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .poin-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow-x: scroll;
  overflow-y: visible;
  padding-bottom: 20px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .poin-sections .tp-section {
  display: flex;
  align-items: center;
  gap: 15px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .poin-sections .tp-section .tp-number {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  color: #3280fe;
  font-weight: 700;
  min-width: 30px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .poin-sections .tp-section .tp-points {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex: 1;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .poin-sections .tp-section .tp-points .tp-point {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .poin-sections .tp-section .tp-points .tp-point .tp-input-label {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  color: #3d4654;
  font-weight: 400;
  min-width: 80px;
  white-space: nowrap;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .sl-tp-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .sl-tp-section .sl-tp-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .sl-tp-section .sl-tp-item .checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .sl-tp-section .sl-tp-item .checkbox-wrapper .sl-tp-label {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  color: #3d4654;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .sl-tp-section .sl-tp-item .sl-input-container,
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .sl-tp-section .sl-tp-item .tp-input-container {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .sl-tp-section .sl-tp-item .sl-input-container .label,
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .sl-tp-section .sl-tp-item .tp-input-container .label {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  color: #3d4654;
  font-weight: 400;
  min-width: 40px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .start-bot-section {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .start-bot-section .start-bot-btn {
  width: 100%;
  justify-content: center;
}
.dashboard-page .bots-section .bots-panel.connections-bots .connect-card {
  border-top: 1px solid #DDE1EC;
  margin-top: 20px;
  padding-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.dashboard-page .bots-section .bots-panel.connections-bots .connect-card .info-wp {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dashboard-page .bots-section .bots-panel.connections-bots .connect-card .info-wp .left h4 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 10px;
}
.dashboard-page .bots-section .bots-panel.connections-bots .connect-card .info-wp .left .status {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0;
}
.dashboard-page .bots-section .bots-panel.connections-bots .connect-card .info-wp .left .status span.green {
  color: #087D00;
}
.dashboard-page .bots-section .bots-panel.connections-bots .connect-card .info-wp .left .status span.red {
  color: #c70000;
}
.dashboard-page .bots-section .bots-panel.connections-bots .connect-card .btn.primary {
  width: 100%;
  justify-content: center;
}
.dashboard-page .bots-section .bots-panel.connections-bots .connect-card .btn.primary .icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url(../assets/images/plus.svg) no-repeat;
  background-size: contain;
}
.dashboard-page .modal-pop-up-connections, .dashboard-page .modal-pop-up-disconnect {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(61, 70, 84, 0.6);
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 90;
}
.dashboard-page .modal-pop-up-connections .content, .dashboard-page .modal-pop-up-disconnect .content {
  min-width: 438px;
  height: fit-content;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dashboard-page .modal-pop-up-connections .content .header, .dashboard-page .modal-pop-up-disconnect .content .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #DDE1EC;
}
.dashboard-page .modal-pop-up-connections .content .header h4, .dashboard-page .modal-pop-up-disconnect .content .header h4 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0;
  font-weight: 500;
  color: #3280fe;
}
.dashboard-page .modal-pop-up-connections .content .header .close, .dashboard-page .modal-pop-up-disconnect .content .header .close {
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url(../assets/images/close.svg) no-repeat;
  background-size: contain;
  cursor: pointer;
}
.dashboard-page .modal-pop-up-connections .content .row-form, .dashboard-page .modal-pop-up-disconnect .content .row-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 10px;
}
.dashboard-page .modal-pop-up-connections .content .row-form label, .dashboard-page .modal-pop-up-disconnect .content .row-form label {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
}
.dashboard-page .modal-pop-up-connections .content .save, .dashboard-page .modal-pop-up-disconnect .content .save {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 1020px) {
  .dashboard-page {
    padding: 0 20px;
  }
  .dashboard-page .content {
    flex-direction: column;
    gap: 50px;
    padding: 50px 0;
  }
  .dashboard-page .chart-section {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    gap: 50px;
  }
  .dashboard-page .chart-section .tradingview-widget-container {
    padding: 5px;
  }
  .dashboard-page .chart-section .bot-table {
    border-radius: 10px;
  }
  .dashboard-page .chart-section .bot-table .tab-header {
    gap: 7px;
  }
  .dashboard-page .chart-section .bot-table .tab-header .tab {
    font-family: 'Stack Sans Text', Inter, sans-serif;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    padding: 9px 20px;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper {
    padding: 30px 20px;
    overflow-x: scroll;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper table tbody tr .action-btn {
    min-width: 52px;
    width: 52px;
    height: 35px;
    border-radius: 10px;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history {
    padding: 30px 20px;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar {
    margin-bottom: 40px;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .date-range {
    min-width: 120px;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .date-range .date-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history table tbody tr td {
    padding: 20px 0;
  }
  .dashboard-page .bots-section {
    min-width: 100%;
    border-radius: 10px;
  }
  .dashboard-page .bots-section .tabs {
    gap: 6px;
  }
  .dashboard-page .bots-section .tabs .tab {
    padding: 9px 20px;
    width: fit-content;
    font-family: 'Stack Sans Text', Inter, sans-serif;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
  }
  .dashboard-page .bots-section .bots-panel {
    padding: 30px 20px;
  }
  .dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section h3 {
    margin-bottom: 30px;
  }
  .dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-card {
    gap: 30px;
  }
  .dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-table {
    gap: 10px;
  }
  .dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .config-table .config-row {
    padding-bottom: 10px;
  }
  .dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .min-investment p {
    font-family: 'Stack Sans Text', Inter, sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
  }
  .dashboard-page .bots-section .bots-panel.strategy-bots .configuration-section .poin-sections .tp-section {
    gap: 20px;
  }
  .dashboard-page .modal-pop-up-connections .content, .dashboard-page .modal-pop-up-disconnect .content {
    min-width: calc(100% - 80px);
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar {
    flex-direction: column;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .date-range {
    width: 100%;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .date-range .date-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .date-range .date-inputs span {
    display: none;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history .filter-bar .bot-filter {
    width: 100%;
  }
  .dashboard-page .chart-section .bot-table .table-wrapper.history table tbody tr td {
    padding: 20px 0;
  }
  .dashboard-page .bots-section .bots-panel .bot-card .bot-actions {
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
    row-gap: 20px;
  }
  .dashboard-page .bots-section .bots-panel .bot-card .bot-actions .btn {
    width: calc(50% - 5px);
  }
  .dashboard-page .bots-section .bots-panel .bot-card .bot-actions .btn:last-child {
    width: 100%;
  }
}
.auth-page {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-page::before {
  content: "";
  background: url(../assets/images/background.png) no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: -10;
}
.auth-page .content {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth-page .content .logo {
  width: 192px;
  min-width: 192px;
  height: 50px;
  margin-bottom: 50px;
}
.auth-page .content .logo img {
  object-fit: contain;
}
.auth-page .content .info-auth {
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: solid 1px #DDE1EC;
  width: 100%;
}
.auth-page .content .info-auth.noForm {
  border-bottom: 0;
  padding-bottom: 20;
}
.auth-page .content .info-auth.noForm .logoSuccess {
  width: 80px;
  min-width: 80px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.auth-page .content .info-auth .title {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  color: #3280fe;
}
.auth-page .content .info-auth .paragraph {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  color: #3d4654;
  margin-top: 20px;
}
.auth-page .content .row-form-wrap {
  gap: 20px;
  width: 100%;
}
.auth-page .content .row-form-wrap .row-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}
.auth-page .content .row-form-wrap .row-form label {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 400;
  color: #3d4654;
  position: relative;
}
.auth-page .content .row-form-wrap .row-form input {
  min-width: 300px;
}
.auth-page .content .forgot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 10px;
}
.auth-page .content .forgot-row .left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-page .content .forgot-row .left label {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
}
.auth-page .content .forgot-row .right {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 600;
  color: #3280fe;
}
.auth-page .content input[type="submit"] {
  width: 430px;
  margin-bottom: 50px;
  margin-top: 10px;
}
.auth-page .content p {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
  color: #3d4654;
}
.auth-page .content p a {
  color: #3280fe;
  font-weight: 600;
}
@media (max-width: 768px) {
  .auth-page {
    align-items: start;
    height: 100%;
  }
  .auth-page .content {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px 20px;
    width: calc(100% - 80px);
    position: relative;
  }
  .auth-page .content .logo {
    width: 154px;
    min-width: 154px;
    height: 40px;
  }
  .auth-page .content .row-form-wrap {
    gap: 0;
  }
  .auth-page .content .row-form-wrap .row-form label {
    font-weight: 600;
  }
  .auth-page .content .row-form-wrap .row-form input {
    min-width: calc(100% - 80px);
  }
  .auth-page .content input[type="submit"] {
    width: 100%;
    margin-top: 10px;
  }
}
.profile-page .content {
  gap: 20px;
  padding: 60px 80px 40px;
}
.profile-page .content h2 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 60px;
  color: #3280fe;
}
.profile-page .content .panel-wrap {
  display: flex;
  gap: 20px;
}
.profile-page .content .panel-wrap .side-menu {
  width: 255px;
  min-width: 255px;
  max-width: 255px;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px #3D46541A;
  height: fit-content;
}
.profile-page .content .panel-wrap .side-menu ul {
  display: flex;
  flex-direction: column;
}
.profile-page .content .panel-wrap .side-menu ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.profile-page .content .panel-wrap .side-menu ul li:first-child {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #DDE1EC;
}
.profile-page .content .panel-wrap .side-menu ul li.active h4 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0;
  font-weight: 600;
  color: #3280fe;
}
.profile-page .content .panel-wrap .side-menu ul li.active .icon {
  background: url(../assets/images/right-chev-blue.svg) no-repeat center;
}
.profile-page .content .panel-wrap .side-menu ul li h4 {
  font-family: 'ABeeZee', sans-serif;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0;
  font-weight: 400;
}
.profile-page .content .panel-wrap .side-menu ul li .icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url(../assets/images/right-chev.svg) no-repeat center;
  background-size: contain;
}
.profile-page .content .panel-wrap .panel {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  width: 100%;
  box-shadow: 0px 0px 10px 0px #3D46541A;
  display: none;
}
.profile-page .content .panel-wrap .panel.active {
  display: block;
}
.profile-page .content .panel-wrap .panel .head {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: solid 1px #DDE1EC;
}
.profile-page .content .panel-wrap .panel .head h3 {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3280fe;
}
.profile-page .content .panel-wrap .panel .body {
  width: 100%;
}
.profile-page .content .panel-wrap .panel .body .row-image {
  position: relative;
  width: fit-content;
  margin-bottom: 30px;
}
.profile-page .content .panel-wrap .panel .body .row-image .icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background: url(../assets/images/camera.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -10px;
  bottom: 0;
  z-index: 20;
}
.profile-page .content .panel-wrap .panel .body .row-image .image-preview {
  width: 150px;
  height: 150px;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-align: center;
  background-color: lightgray;
}
.profile-page .content .panel-wrap .panel .body .row-image .image-preview .preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.profile-page .content .panel-wrap .panel .body .row-form-wrap {
  gap: 25px;
}
.profile-page .content .panel-wrap .panel .body .row-form-wrap .row-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.profile-page .content .panel-wrap .panel .body .row-form-wrap .row-form label {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 10px;
}
.profile-page .content .panel-wrap .panel .body input[type="submit"] {
  margin-top: 10px;
}
@media (max-width: 1020px) {
  .profile-page .content {
    gap: 50px;
    padding: 50px 20px;
  }
  .profile-page .content h2 {
    font-family: 'Stack Sans Text', Inter, sans-serif;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 0;
    margin-bottom: 50px;
  }
  .profile-page .content .panel-wrap {
    flex-direction: column;
    gap: 50px;
  }
  .profile-page .content .panel-wrap .side-menu {
    width: auto;
    min-width: auto;
    max-width: calc(100% - 40px);
  }
  .profile-page .content .panel-wrap .side-menu ul li {
    justify-content: center;
  }
  .profile-page .content .panel-wrap .side-menu ul li .icon {
    display: none;
  }
  .profile-page .content .panel-wrap .panel {
    padding: 30px 20px;
    width: auto;
    max-width: calc(100% - 40px);
  }
  .profile-page .content .panel-wrap .panel .head h3 {
    font-family: 'Stack Sans Text', Inter, sans-serif;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0;
    margin-bottom: 0;
  }
  .profile-page .content .panel-wrap .panel .body .row-image {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .profile-page .content .panel-wrap .panel .body .row-form-wrap {
    gap: 0;
  }
  .profile-page .content .panel-wrap .panel .body .row-form-wrap .row-form {
    margin-bottom: 20px;
  }
  .profile-page .content .panel-wrap .panel .body input[type="submit"] {
    width: 100%;
  }
}
.notFound_page {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notFound_page .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notFound_page .content .logo {
  width: 192px;
  min-width: 192px;
  height: 50px;
  margin-bottom: 80px;
}
.notFound_page .content .logo img {
  object-fit: contain;
}
.notFound_page .content .body .logoNotFound {
  width: 400px;
  min-width: 400px;
  margin-bottom: 50px;
}
.notFound_page .content .body .title {
  font-family: 'Stack Sans Text', Inter, sans-serif;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  color: #3280fe;
}
.notFound_page .content .body .paragraph {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  color: #3d4654;
  margin-top: 20px;
  margin-bottom: 30px;
}
.select2-wrap {
  width: 100%;
  height: 40px;
  position: relative;
}
.select2-wrap .select2-container--default .select2-selection--single .select2-selection__clear {
  display: none !important;
}
.select2-wrap .select2-container {
  width: 100% !important;
}
.select2-wrap .select2-container--default .select2-selection--single {
  border-radius: 10px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid 1px #DDE1EC;
  border-width: 1px;
  padding-top: 0.3rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  align-items: center;
  display: flex;
  height: 40px;
}
.select2-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  color: #3d4654;
  text-align: left;
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
}
.select2-wrap .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #97A2C2;
}
.select2-wrap .select2-selection__arrow {
  width: 16px;
  height: 16px;
  display: flex;
  background: url(../assets/images/chevDown.svg) no-repeat;
  background-size: contain;
  margin-top: 8px;
  margin-right: 5px;
}
.select2-wrap .select2-selection__arrow b {
  display: none;
}
.select2-wrap .select2-container--open .select2-selection__arrow {
  top: 0 !important;
  margin-top: 2px;
  transform: rotate(180deg) !important;
}
.select2-container--default {
  font-family: 'ABeeZee', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3280fe !important;
}
.select2-results__option {
  padding: 4px 12px;
}
.select2-container--open .select2-dropdown--below {
  border: 0;
  margin-top: 2px;
}
