/** Main ET-Block **/
.beseen-um-special-page div#et-boc.et-boc {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/** Change The Height of The Main ET-Block If ADMINBAR Is Visible */
.admin-bar.beseen-um-special-page div#et-boc.et-boc {
    height: calc(100vh - 32px);
}

/** Main Content Section **/
.beseen-um-special-page #et-boc.et-boc #main-content {
    height: 100%;
    display: flex;
    align-items: stretch;
}

/** ET Main Area **/
.beseen-um-special-page div#et-main-area {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/** Changes to the main article and its childs to make the system work. **/
.beseen-um-special-page article.page,
.beseen-um-special-page article.page .entry-content,
.beseen-um-special-page article.page .entry-content .et-l,
.beseen-um-special-page article.page .entry-content .et-l .et_builder_inner_content,
.beseen-um-special-page article.page .entry-content .et-l .et_builder_inner_content .et_pb_section {
    display: flex;
    width: 100%;
}

/** MY ACCOUNT PAGE **/
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.stats-box {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.stats-box .stats-box-title {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 5px;
}

.stats-box .stats-box-counter {
    font-size: 24px;
    margin-bottom: 5px;
}

.stats-box .stats-box-description {
    font-size: 12px;
}

/** HIDE SHIPPING OPTION WHICH IS NOT CHECKED **/
.beaed-custom-shipping-enabled .shipping_method ~ .custom-shipping-rate-field .input-text {
    display: none;
}

.beaed-custom-shipping-enabled .shipping_method:checked ~ .custom-shipping-rate-field .input-text {
    display: block;
}