input:focus-visible {
    outline: 0;
}
/* * {
    box-sizing: border-box;
} */
.outlined-white-btn {
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 8px;
    color: #57534E;
    font-weight: 500;
    font-size: 14px;
    outline: 0;
    min-width: 77px;
}

.page-container {
    padding: 15px;
}

.opex-page-title {
    margin-bottom: 30px;
}
.opex-page-title .page-names {
    color: var(--be-blue-3);
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.opex-page-title .page-names .page-name {
    font-weight: 700;
}
.opex-page-title .page-names span {
    margin: 0 5px;
    color: var(--be-gold);
}
.opex-page-title .title-block {
    display: flex;
    align-items: center;
}
.opex-page-title .title-block .search-box-included {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex: 1;
}
.opex-page-title .title-block .image {
    margin-right: 10px;
}
.opex-page-title .title-block .image img {
    width: 41px;
}
.opex-page-title .title-block .title-content .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--be-blue-3);
    border-bottom: 2.5px solid var(--be-gold);
    margin-bottom: 3px;
    text-transform: uppercase;
}
.opex-page-title .title-block .title-content .description {
    color: #475569;
    font-weight: 400;
    font-size: 12px;
}
.search-box {
    display: flex;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.search-box .search-icon {
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #57534E;
}
.search-box .input input {
    height: 36px;
    border-radius: 0 4px 4px 0;
    width: 340px;
    border: 1px solid #D1D5DB;
    padding: 0 10px;
}

.search-box .input input::placeholder {
    color: #B6B9BD;
}
.opex-tabs-section {
    background: #F1F5F9;
}
.opex-tabs-section .tabs-list {
    display: flex;
    background: #FFFFFF;
}
.opex-tabs-section .tabs-list > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: 7px 10px 5px;
    flex: 1 1 0px;
    font-weight: 500;
    font-size: 14px;
    color: #64748B;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    border-right: 1px solid #E5E7EB;
    text-align: center;
}
.opex-tabs-section .tabs-list > div:last-child {
    border-right: 0;
}
.opex-tabs-section .tabs-list > div.active {
    color: #1E293B;
    border-bottom-color: var(--be-gold);
}
.opex-tabs-section .tab-content {
    padding: 20px;
    border-top: 1px solid #E5E7EB;
}

.opex-common-table table {
    background: #fff;
    box-shadow: 0px 2px 4px rgba(216, 220, 230, 0.52);
    border-radius: 4px;
    overflow: hidden;
}
.opex-common-table table thead {
    background: #e7effa;
}
.opex-common-table table th {
    padding: 15px 30px;
    color: #8da0ab;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}
.opex-common-table table td {
    padding: 15px 30px;
    border-bottom: 1px solid #dbdde0;
    font-size: 12px;
    color: #52575c;
}
.opex-common-table table td.sortable span {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.opex-common-table table td.sortable span img {
    display: block;
    margin-left: 10px;
}
.opex-common-table table tr:last-child td, .opex-common-table table tr.border-bottom-0 td {
    border-bottom: 0;
}
.opex-common-table table tr.title-row td {
    text-transform: uppercase;
    font-weight: 700;
    color: #8da0ab;
}

@media (max-width: 1199.98px) { 
    .opex-common-table table th {
        padding: 15px;
    }
    .opex-common-table table td {
        padding: 15px;
    }
}
@media (max-width: 767.98px) { 
    .page-container {
        padding: 20px 15px;
    }
    .outlined-white-btn {
        padding: 6px;
        min-width: 60px;
    }
    div.bs-canvas {
        width: 100%;
    }
    .bs-canvas.bs-canvas-right, .bs-canvas.bs-canvas-right-manage {
        margin-right: -100%;
    }
}