* {
    padding: 0;
    margin: 0;
}

header {
    background: transparent;
    backdrop-filter: blur(50px);
    padding: 0 !important;
    top: 0;
    height: 72px;
    border-bottom: none;
}

.image-slot {
  background-color: #7257f4;
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header {
    display: flex;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid #e8e9eb;
    border-bottom: 1px solid #e8e9eb;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    height: 72px;
}

.header .container .left {
    display: flex;
    align-items: center;
}

.header .container .logo {
    margin-right: 20px;
    background-image: url("../images/HALOPTX.png");
    width: 120px;
    height: 20px;
    background-size: 100% 100%;
}

.header .container .left .menu {
    display: flex;
    align-items: center;
}

.header .container .left .menuItem {
    padding: 9px 20px;
    font-family: "Poppins-Medium";
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.header .container .left .menuItem:hover{
    background: #f1f4f9;
    border-radius: 100px;
}

.header .container .right {
    display: flex;
    align-items: center;
}

.header .container .right .text {
    font-family: "Poppins-Medium";
    font-size: 16px;
    font-weight: 500;
}

.header .container .right .login {
    font-family: "Poppins-Medium";
    font-size: 16px;
    font-weight: 500;
    color: #7257f4;
}

.header .container .right .btn {
    background: #fff;
    color: #7257f4;
    border: 1px solid #7257f4;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    font-family: "Poppins-SemiBold";
    cursor: pointer;
    margin: 0 24px;
}

.header .container .right .btn:hover {
    background: #533acd;
    color: #fff;
}

.header .container .right .contact {
    background: #fff;
    color: #7257f4;
    border: 1px solid #7257f4;
    padding: 9px 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    font-family: "Poppins-SemiBold";
    cursor: pointer;
}

.header .container .right .drop {
    background: #7257f4;
    color: #fff;
    border: 1px solid #7257f4;
    padding: 9px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    font-family: "Poppins-SemiBold";
    cursor: pointer;
    margin-left: 16px;
}

.header .container .right .drop .text {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-family: "Poppins-SemiBold";
}
.el-popper[x-placement^="bottom"] .popper__arrow {
    display: none;
}

.header .container .right .drop .el-icon-arrow-down {
    color: #fff;
    font-size: 14px;
}

.el-dropdown-menu .userInfo {
    padding: 0 10px;
    min-width: 200px;
}

.el-dropdown-menu .userInfo .flex {
    align-items: center;
    gap: 10px;
}

.el-dropdown-menu .userInfo .email {
    color: #7257f4;
    font-size: 14px;
    margin-top: 10px;
    text-decoration: underline;
}

.el-dropdown-menu .userInfo .signOut {
    padding: 10px 5px;
    border-top: 1px solid #dae0ec;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.el-dropdown-menu .userInfo .signOut:hover {
    background-color: #f1f4f9;
}

.el-dropdown-menu .userInfo .name {
    font-weight: bold;
    font-size: 14px;
}
.header .container .right .el-badge__content {
  font-size: 8px;
  height: 14px;
  width: 14px;
  line-height: 14px;
  padding: 1px;
  top: auto;
  /* bottom: -10px; */
}

.header .container .right .icon {
    margin-left: 20px;
}

.header .container .right .iconfont {
    font-size: 18px;
}

.box {
    margin-top: 72px;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-height: calc(100vh - 72px);
}

.box .menu {
    width: 730px;
    min-width: 730px;
    border-right: 1px solid #e8e9eb;
    padding: 20px 40px 40px 5px;
    overflow-y: scroll;
}

.box .menu .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 20px 0;
}

.box .menu .head .headTitle {
    font-size: 26px;
    font-family: "Poppins-SemiBold";
    font-weight: 600;
}

.box .menu .head .headArrow span {
    font-size: 14px;
    line-height: 26px;
}

.box .menu .head .headArrow span:nth-child(2) {
    color: #666588;
}

.box .menu .card {
    border: 1px solid #dae0ec;
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 12px;
}

.box .menu .card.open {
    border: 2px solid #7257f4;
    box-shadow: 0 0 0 4px rgba(114, 87, 244, 0.3);
}

.card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card .cardContent {
    border-top: 1px solid #dae0ec;
    margin-top: 20px;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.card .cardContent.show {
    opacity: 1;
    visibility: visible;
}

.card .cardContent.hidden {
    display: none;
}

.card .top .left {
    display: flex;
}

.card .top .left .name {
    margin: 0 12px 0 12px;
    flex: 1;
}

.card .top .left .name .title {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 6px;
    line-height: 120%;
}

.card .top .left .name .title span {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    font-size: 24px;
}

.card .top .left .name .option {
    font-size: 14px;
    font-family: "Poppins-Regular";
    font-weight: 400;
    line-height: 20px;
    color: #5b5f65;
}

.card .top .left .name .desc {
    font-size: 14px;
    font-family: "Poppins-Regular";
    font-weight: 400;
    line-height: 20px;
    color: #7257f4;
}

.card .top .left .el-icon-success {
    margin-top: 2px;
}

.card .top .right {
    display: flex;
    align-items: center;
}

.card .top .edit {
    font-family: "Poppins-Medium";
    font-size: 14px;
    font-weight: 500;
    color: #7257f4;
    line-height: 150%;
    margin-right: 5px;
}

.card .number {
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.card .number .title {
    font-family: "Poppins-Medium";
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin-right: 8px;
}

.card .numberDesc span {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    line-height: 20px;
    font-family: "Poppins";
}

.card .numberDesc span:nth-child(2) {
    color: #7257f4;
}

/* .card .numberDeal {
    border: 1px solid #dae0ec;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 144px;
    height: 48px;
    margin-top: 16px;
}

.card .numberDeal .el-icon-minus{
    width: 48px;
    height: 48px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.card .numberDeal .el-icon-minus:hover,
.card .numberDeal .el-icon-plus:hover{
    background-color: #f1f4f9;
}

.card .numberDeal .el-icon-plus{
    width: 48px;
    height: 48px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
} */

.card .numberDeal {
    /* border: 1px solid #dae0ec;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 144px;
    height: 48px;
    margin-top: 16px; */
    margin-top: 16px;
}

.card .cardContent .el-input-number{
    width: 146px;
    line-height: 50px;
}

.card .cardContent .el-input__inner{
    height: 50px;
    line-height: 50px;
    border-radius: 100px;
}

.card .cardContent .el-input__inner:hover{
    border-color: unset;
    border: 1px solid #dcdfe6;
}

.card .cardContent .el-input-number__increase{
    background: transparent;
    border-radius: 100px;
    border-left: none; 
    width: 50px;
}

.card .cardContent .el-input-number__increase:hover,
.card .cardContent .el-input-number__decrease:hover{
    background: #f1f4f9;
    color: unset;
}

.card .cardContent .el-input-number__decrease,
.card .cardContent .el-input-number__decrease.is-disabled{
    background: transparent;
    border-radius: 100px;
    border-right: none; 
    width: 50px;
}

.card .cardContent .el-input-number__decrease:hover:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled), .el-input-number__increase:hover:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled){
    border-color: #dcdfe6;
}

.card .numberDeal .num {
    margin: 0 auto;
}

.card .numberSwitch {
    display: flex;
    align-items: center;
    margin: 16px 0 0 0;
}

.card .numberSwitch .numberInput {
    /* border: 1px solid #dae0ec; */
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 144px;
    height: 48px; */
}

.card .numberSwitch .numberMonth {
    height: 100%;
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 16px;
    color: #212529;
    margin-left: 12px;
}

/* .card .numberSwitch .el-icon-minus {
    width: 48px;
    height: 48px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.card .numberSwitch .el-icon-minus:hover{
    background-color: #f1f4f9;
}

.card .numberSwitch .el-icon-plus {
    font-size: 18px;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.card .numberSwitch .el-icon-plus:hover{
    background-color: #f1f4f9;
} */

.card .cardType {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.card .cardType .checkSim {
    flex: 1;
    background-color: #f7f5fe;
    border: 1px solid #7257f4;
    border-radius: 8px;
    padding: 20px;
}

.card .cardType .nocheckSim {
    flex: 1;
    background-color: #f1f4f9;
    border: 1px solid #f1f4f9;
    border-radius: 8px;
    padding: 20px;
}

.card .cardType .title {
    display: flex;
    justify-content: space-between;
}

.card .cardType .title .one{
    display: flex
}

.card .cardType .title .one div:nth-child(1) {
    font-family: "Poppins-Medium";
    font-weight: 500;
    font-size: 18px;
    margin-right: 10px;
}

.card .cardType .price {
    margin: 12px 0;
    display: flex;
    align-items: flex-end;
}

.card .cardType .price div:nth-child(2) {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 18px;
    color: #a09bba;
    text-decoration: line-through;
}

.card .cardType .checkSim .price div:nth-child(1) {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    font-size: 32px;
    color: #7257f4;
    margin-right: 8px;
}

.card .cardType .checkSim .price div:nth-child(2) {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 18px;
    color: #a09bba;
    text-decoration: line-through;
}

.card .cardType .nocheckSim .price div:nth-child(1) {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    font-size: 32px;
    color: #000;
    margin-right: 8px;
}

.card .cardType .desc {
    font-size: 12px;
    line-height: 17px;
    font-weight: 400;
    font-family: "Poppins";
}

.card .simCard {
    display: flex;
    margin-top: 12px;
}

.card .simCard .checkSimCard {
    width: 104px;
    background-color: #f7f5fe;
    border: 1px solid #7257f4;
    border-radius: 8px;
    padding: 12px 12px;
}

.card .simCard .nocheckSimCard {
    width: 104px;
    background-color: #f1f4f9;
    border: 1px solid #f1f4f9;
    border-radius: 8px;
    padding: 12px 12px;
}

.card .simCardHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card .simCardHeader div {
    font-weight: 600;
    font-size: 16px;
    font-family: "Poppins-SemiBold";
}

.card .simCardItem:nth-child(1),
.card .simCardItem:nth-child(2),
.card .simCardItem:nth-child(3),
.card .simCardItem:nth-child(4) {
    margin-right: 12px;
}

.card .simCardItem .simCardPrice {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 14px;
    margin-top: 12px;
}

.card .checkPrice {
    color: #7257f4;
}

.remove {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #dae0ec;
}

.remove .el-icon-delete {
    color: #7257f4;
}

.remove div {
    font-weight: 500;
    font-family: "Poppins-Medium";
    font-size: 14px;
    color: #7257f4;
    margin-left: 8px;
}

.serviceBox {
    margin-top: 20px;
}

.serviceBox .serviceTitle {
    font-size: 24px;
    font-weight: 600;
    font-family: "Poppins-SemiBold";
    margin-bottom: 12px;
    line-height: 150%;
}

.serviceBox .serviceItem {
    margin-bottom: 12px;
    padding: 16px 24px;
    border: 1px solid #dae0ec;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
}

.serviceBox .serviceItem .iconfont {
    font-size: 48px;
    margin-right: 12px;
}

.serviceBox .serviceItem .rightContent {
    flex: 1;
    min-width: 0;
}

.serviceItem .rightContent .rightHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.serviceItem .rightContent .rightHeader .title {
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins-SemiBold";
    line-height: 150%;
    color: #212529;
    flex: 1;
    margin-right: 24px;
}

.serviceItem .rightContent .rightHeader .href {
    display: flex;
    justify-content: space-between;
}

.serviceItem .rightContent .rightHeader .href .learn {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins-SemiBold";
    color: #7257f4;
    margin: 8px 12px 8px 0;
}

.serviceItem .rightContent .rightHeader .href .btn {
    font-family: "Poppins-SemiBold";
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border: 1px solid #7257f4;
    color: #7257f4;
    border-radius: 100px;
}

.serviceItem .rightContent .price {
    font-family: "Poppins-Medium";
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    margin: 12px 0;
}

.serviceItem .rightContent .desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Poppins";
    max-width: 343px;
    color: #5b5f65;
}

.deviceBox {
    margin-top: 20px;
}

.deviceBox .deviceTitle {
    font-size: 24px;
    font-weight: 600;
    font-family: "Poppins-SemiBold";
}

.deviceBox .deviceItem {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid #dae0ec;
    border-radius: 8px;
}

.deviceItem .leftContent {
    display: flex;
    align-items: center;
    margin-right: 32px;
}

.deviceItem .leftContent .image {
    width: 120px;
    height: 120px;
    margin-right: 12px;
}

.deviceItem .leftContent .introduce {
    flex: 1;
    height: 106px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.deviceItem .leftContent .introduce .title {
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins-SemiBold";
    line-height: 150%;
    color: #212529;
}

.deviceItem .leftContent .introduce .desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Poppins";
    max-width: 343px;
}

.deviceItem .rightBtn {
    font-family: "Poppins-SemiBold";
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border: 1px solid #7257f4;
    color: #7257f4;
    border-radius: 100px;
}

.box .content {
    width: 100%;
    padding: 20px 0 0 40px;
    height: calc(100vh - 112px);
    display: flex;
    flex-direction: column;
}

.box .content .main {
    flex: 1;
    overflow-y: scroll;
    padding-right: 40px;
}

.box .content .title {
    font-size: 26px;
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    line-height: 44px;
}

.box .content .business {
    margin-top: 20px;
}

.business .one {
    display: flex;
    justify-content: space-between;
    font-family: "Poppins-SemiBold";
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 12px;
}

.business .two {
    margin-bottom: 8px;
}

.business .two span {
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins";
    line-height: 20px;
    margin-bottom: 8px;
}

.business .two span:nth-child(1) {
    color: #7257f4;
}

.content .coupon {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dae0ec;
}

.content .coupon .el-input {
    height: 48px;
}

.content .coupon .el-input__inner {
    height: 48px;
    line-height: 48px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    padding: 0 20px;
}

.content .coupon .el-input-group__append {
    background-color: transparent;
    border: none;
    text-align: center;
}

.content .coupon .el-input__inner:focus {
    border-color: #7257f4;
}

.content .coupon .codeBtn {
    background: #7257f4;
    color: #fff;
    padding: 0 20px;
    height: 48px;
    line-height: 48px;
    border-radius: 100px;
    width: 60px;
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Poppins-SemiBold";
    font-size: 14px;
    font-weight: 600;
}

.content .total .one {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.content .total .one div:nth-child(1) {
    font-family: "Poppins-Regular";
    font-size: 16px;
    font-weight: 400;
    color: #212529;
}

.content .total .one div:nth-child(2) {
    font-family: "Poppins-SemiBold";
    font-size: 16px;
    font-weight: 600;
    text-decoration: line-through;
    color: #a09bba;
}

.content .total .coupe {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.content .total .coupe div:nth-child(1) {
    font-family: "Poppins-Regular";
    font-size: 16px;
    font-weight: 400;
    color: #212529;
}

.content .total .coupe div:nth-child(2) {
    font-family: "Poppins-SemiBold";
    font-size: 16px;
    font-weight: 600;
    color: #027d48;
}

.content .total .two {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.content .total .two div:nth-child(1) {
    font-family: "Poppins-SemiBold";
    font-size: 20px;
    font-weight: 600;
    color: #212529;
}

.content .total .two div:nth-child(2) {
    font-family: "Poppins-SemiBold";
    font-size: 20px;
    font-weight: 600;
    /* text-decoration: line-through; */
    color: #212529;
}

.content .total .three {
    margin-top: 10px;
    color: #5b5f65;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.content .total .four {
    margin-top: 20px;
    color: #7257f4;
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 14px;
}

.content .total .five {
    margin-top: 20px;
    color: #5b5f65;
    font-family: "Poppins-Italic";
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
}

.content .total .btn {
    background-color: #7257f4;
    color: #fff;
    width: 100%;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins-SemiBold";
    margin-top: 20px;
    border-radius: 100px;
}

.content .bottomTotal {
    width: 100%;
    border-top: 1px solid #dfdfe4;
    padding: 20px 0 10px 0;
    margin-top: 20px;
}

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

.content .bottomTotal .number div:nth-child(1) {
    font-family: "Poppins-SemiBold";
    font-size: 20px;
    font-weight: 600;
    color: #212529;
}

.content .bottomTotal .number div:nth-child(2) {
    font-family: "Poppins-SemiBold";
    font-size: 20px;
    font-weight: 600;
    color: #212529;
}

.content .bottomTotal .btn {
    background-color: #7257f4;
    color: #fff;
    width: 100%;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins-SemiBold";
    margin-top: 20px;
    border-radius: 100px;
}

.supportItem {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.supportItem div {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 14px;
    color: #212529;
    margin-right: 12px;
}

.dialogBox {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dae0ec;
    padding: 24px 0 20px 0;
}

.dialogBox .title {
    font-family: "Poppins-SemiBold";
    font-size: 24px;
    font-weight: 600;
    margin-left: 20px;
    color: #212529;
}

.dialogBox .price {
    font-family: "Poppins-SemiBold";
    font-size: 20px;
    font-weight: 600;
    margin-left: 24px;
    color: #212529;
}

.dialogBox .unit {
    font-family: "Poppins-Regular";
    font-size: 14px;
    margin-left: 4px;
    color: #8b94a7;
}

.supportDesc {
    font-family: "Poppins-Regular";
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #212529;
    padding: 20px 0 8px 0;
    word-break: break-word;
}

.successHeader {
    display: flex;
    align-items: flex-start;
}

.successHeader .desc {
    margin-left: 20px;
    font-size: 20px;
    font-weight: 600;
    font-family: "Poppins-SemiBold";
    word-break: break-word;
    max-width: 428px;
    line-height: 150%;
}

.success .el-dialog__header {
    padding: 32px 0 20px 0;
    margin: 0 32px;
}

.success .el-dialog__headerbtn {
    top: 30px;
}

.successContent div {
    font-family: "Poppins-Regular";
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #212529;
    margin-top: 16px;
}

.successContent .three {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7257f4;
    color: #fff;
    width: 161px;
    height: 33px;
    border-radius: 100px;
}

.successContent .three div {
    color: #fff;
    margin-top: 0;
    margin-left: 8px;
    font-family: "Poppins-SemiBold";
    font-size: 14px;
    font-weight: 600;
}

.successContent .four span:nth-child(1) {
    margin-right: 20px;
}

.successContent .four span:nth-child(2),
.successContent .four span:nth-child(4) {
    color: #7257f4;
    text-decoration: underline;
}

.el-page-header__title {
    font-family: "Poppins-Regular";
    font-size: 14px;
    color: #5b5f65;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.15px;
}

.el-page-header__left .el-icon-back {
    font-size: 15px;
}

.el-page-header__left::after {
    display: none;
}

.el-icon-success {
    font-size: 18px;
    color: #7257f4;
}

.el-icon-arrow-down {
    color: #7257f4;
    font-size: 18px;
    font-weight: bold;
}

.el-icon-arrow-up {
    color: #7257f4;
    font-size: 18px;
    font-weight: bold;
}

.el-icon-warning-outline {
    font-size: 18px;
    /* font-weight: bold; */
    color: #7257f4;
}

.el-icon-delete {
    font-size: 18px;
    font-weight: bold;
}

.el-icon-plus {
    font-size: 18px;
    font-weight: bold;
}

.el-popover {
    padding: 10px 12px;
    background: #27272a;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
    font-size: 12px;
    line-height: 150%;
    font-family: "Poppins-Regular";
    font-weight: 400;
    word-break: break-word;
}

.el-popper .popper__arrow::after {
    border-top-color: #27272a !important;
}

.el-dialog {
    width: 600px;
    border-radius: 12px;
}

.el-dialog__header {
    padding: 16px 32px !important;
    border-bottom: 1px solid #dae0ec;
}

.el-dialog__title {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    font-size: 20px;
    color: #212529;
}

.el-dialog__body {
    padding: 0px 32px 32px 32px !important;
}

.el-dialog__close {
    font-size: 24px;
    color: #76767f;
}