﻿

:root {
    --sidebar-width: 220px;
    --sidebar-width-collapsed: 80px;
}

/* ---------------- Desktop default (نمایش عادی) ---------------- */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(135deg, #1b2735 0%, #2c3e50 100%);
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
}

    .sidebar.collapsed {
        width: var(--sidebar-width-collapsed);
    }

.sidebar-link {
    color: #a0a3bd;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 4px;
    white-space: nowrap;
    overflow: hidden;
}

    .sidebar-link:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

    .sidebar-link.active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }

.logo-text {
    background: linear-gradient(45deg, #123b97, #8b9fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease;
}


.main-content {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 20px;
    width: 100%;
    margin-right: var(--sidebar-width);
    transition: margin-right 0.3s ease;
}
/* حالت collapsed */
.sidebar.collapsed + .main-content,
.sidebar.collapsed ~ .main-content {
    margin-right: var(--sidebar-width-collapsed);
}

.sidebar.collapsed .sidebar-header .logo-text {
    opacity: 0;
}
/* حالت عادی */
.sidebar .hide-on-collapse {
    opacity: 1;
    visibility: visible;
    display: inline-block;
    transition: opacity 0.25s ease;
}

/* حالت collapsed – کاملاً ناپدید */
.sidebar.collapsed .hide-on-collapse {
    opacity: 0;
    visibility: hidden;
    width: 0;
    display: none;
}


.sidebar.collapsed i {
    margin: 0 !important;
}

.sidebar.collapsed .sidebar-header .toggle-btn {
    display: flex !important;
    right: 60px;
    transition: right 0.3s ease; /* انیمیشن نرم */
}

/* این بخش آیکون را داخل دکمه در هر حالتی وسط می‌برد */
.toggle-btn {
    position: absolute;
    top: 15px;
    right: 200px; /* از -45 به -20 تغییر دادم */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1500;
}

    /* تنظیم دقیق آیکون سه خطی */
    .toggle-btn i {
        font-size: 20px;
        line-height: 1 !important;
        display: block !important;
    }


/* ---------------- Mobile version ---------------- */
@media (max-width: 768px) {
    .sidebar-header {
        display: flex;
        flex-direction: column;
        align-items: center; /* لوگو و دکمه را در کل سایدبار وسط می‌برد */
    }

    .toggle-btn {
        display: flex !important;
        position: fixed !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        background: #007bff !important;
        color: #fff !important;
        border-radius: 8px !important;
        z-index: 999999 !important;
        margin-top: 55px; /* فاصله از لوگوی بالای سرش */
    }

    /* sidebar mobile */
    .sidebar {
        left: -240px;
        width: 240px;
        top: 0;
        position: fixed !important;
        height: 100vh;
        background: #083463; /* رنگ خودت */

        z-index: 9999 !important; /* این مهم‌ترین بخش */
        transition: 0.3s ease;
    }

        .sidebar.open {
            left: 0 !important;
        }

    .main-content {
        margin-right: 0;
        position: relative;
        z-index: 1;
    }
}

.icon-box04 {
    margin-bottom: 30px;
}

    .icon-box04 .icon {
        width: 96px;
        height: 96px;
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        font-size: 2.5rem;
        margin-bottom: 23px;
        position: relative;
    }

        .icon-box04 .icon:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: .5;
            visibility: hidden;
            border: 2px solid;
            border-color: inherit;
            border-radius: 50%;
            transition: opacity ease-out 500ms, transform ease-out 500ms;
            pointer-events: none;
        }

    .icon-box04:hover .icon:before {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
        visibility: visible;
    }

    .icon-box04 .title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
.title-19 small {
    font-size: 1.125rem;
    color: #333333;
}

.title-19 .title {
    font-size: 60px;
    font-weight: 500;
    color: var(--accent-color);
    line-height: 1.2;
}

@media only screen and (max-width: 991px) {
    .title-19 .title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .title-19 .title {
        font-size: 28px;
    }
}
.Architecture-imgbox03 {
    border: 1px solid #e7e7e7;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: all ease-in 200ms;
    position: relative;
    background-color: #FFF;
}

    .Architecture-imgbox03 .cont {
        padding: 28px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .Architecture-imgbox03 .title {
        font-size: 24px;
        margin: 0 0 24px;
    }

    .Architecture-imgbox03 .link {
        margin: auto 0 0;
        opacity: 0;
        transition: all ease-in 300ms;
    }

    .Architecture-imgbox03:hover {
        background-color: #FFF;
        box-shadow: 0 0 35px rgba(0, 0, 0, .15);
    }

    .Architecture-imgbox03::after {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        border-bottom: 5px solid var(--accent-color);
        opacity: 0;
        transition: all ease-in 300ms;
    }

    .Architecture-imgbox03:hover .link, .Architecture-imgbox03:hover::after {
        opacity: 1;
    }

    .Architecture-imgbox03:hover .title {
        color: var(--accent-color);
    }

    .Architecture-imgbox03 .link a:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.builder-editor-mode .Architecture-imgbox03 .link a:after {
    content: none;
}

.MyFixdeImages {
    height: auto;
    max-height: 200px;
    min-height: 200px;
    width: 100%;
    border-radius: 8px;
}

@media only screen and (max-width: 767px) {
    .MyFixdeImages {
        height: auto;
        width: 100%;
        border-radius: 8px;
    }
}

.blogbox-05 {
    background-color: #FFF;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    position: relative;
    transition: all ease-in 300ms;
    padding: 10px;
}

    .blogbox-05 .cont {
        padding: 30px 35px 24px;
        text-align: right;
    }

.rtl .blogbox-05 .cont {
    text-align: right;
}

.blogbox-05 .pic {
    margin: -1px -1px 0;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}


.blogbox-05 .title {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 16px;
}

.blogbox-05 .link {
    text-align: right;
}

.rtl .blogbox-05 .link {
    text-align: right;
}

.blogbox-05 .link a, .blogbox-05 .link a:link {
    color: #d1d1d1;
    font-size: 1.5rem;
    line-height: 1;
}

    .blogbox-05 .link a:hover {
        color: var(--accent-color);
    }

.blogbox-05::after {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-bottom: 5px solid var(--accent-color);
    opacity: 0;
    transition: opacity ease-in 300ms;
}

.blogbox-05:hover, .blogbox-05.active {
    box-shadow: 0px 0px 90px rgba(0, 0, 0, .1);
}

    .blogbox-05:hover:after, .blogbox-05.active:after {
        opacity: 1;
        z-index: 2;
    }

.play-button02 .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--accent-color);
    background-color: currentColor;
    display: inline-block;
    vertical-align: middle;
    margin: 0 16px 3px 0;
    position: relative;
    z-index: 2;
}

.rtl .play-button02 .icon {
    margin: 0 0 3px 16px;
}

.play-button02 .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 5px solid currentColor;
    border-radius: 50%;
    opacity: 0.2;
    -webkit-animation: play-button02-effect 2s infinite;
    animation: play-button02-effect 2s infinite;
    z-index: -1;
}

.play-button02 .icon::after {
    content: "";
    border: 6px solid transparent;
    border-left-color: #FFF;
    position: absolute;
    top: 10px;
    left: 14px;
}

.rtl .play-button02.icon::after {
    border-right-color: #FFF;
    border-left-color: transparent;
    right: 14px;
    left: auto;
}

.play-button02, body .play-button02:link, body .play-button02:active, body .play-button02:visited {
    color: #333333;
    font-size: 1rem;
    font-weight: 600;
    transition: color ease-in 300ms, background-color ease-in 300ms;
}

    .play-button02:hover {
        color: var(--button-hover-color1);
        text-decoration: none !important;
    }

@-webkit-keyframes play-button02-effect {
    0% {
        opacity: .8;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes play-button02-effect {
    0% {
        opacity: .8;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

*, ::after, ::before {
    text-shadow: none !important;
    box-shadow: none !important
}

*, ::after, ::before {
    box-sizing: border-box
}


.material-form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: rgb(175, 148, 86) 0px 3px 8px;
    width: 100%;
    box-sizing: border-box;
}

.material-form {
    display: flex;
    flex-direction: column;
    direction: rtl;
    text-align: right;
}

.material-input-group {
    position: relative;
    margin-bottom: 10px;
}

.material-input {
    border-bottom: solid;
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    color: #333;
    background-color: #FAFAFA;
    transition: border-color 0.3s ease;
    border-radius: 8px;
}

    .material-input :hover {
        border-color: #82B440;
    }

    .material-input:focus {
        border-bottom-color: #ffbc00;
    }
.material-input-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 100%;
    background-color: #82B440;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.material-input:focus ~ .material-input-bar {
    transform: scaleX(1);
}

.material-label {
    position: relative;
    right: 0;
    font-size: 16px;
    color: #999;
    transition: all 0.3s ease;
}

.material-input:focus ~ .material-label,
.material-input {
    top: -25px;
    font-size: 12px;
    color: #202435;
}

    /* Validation Styles */
    .material-input.material-input--error {
        border-bottom-color: #f44336;
    }

        .material-input.material-input--error ~ .material-label {
            color: #202435;
        }

        .material-input.material-input--error ~ .material-input-bar {
            background-color: #f44336;
            transform: scaleX(1); /* Ensure the bar is visible for error state */
        }

.material-button {
    background-color: #82B440;
    color: white;
    width: 99%;
    height: 45px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

    .material-button:hover {
        background-color: #87CE31;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.material-link-button {
    background-color: white;
    color: #3b82f6;
    width:200px;
    height: 45px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

    .material-link-button:hover {
       color: #73a7fc;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .material-button:active {
        background-color: #fcc645;
    }

    .material-button .ripple {
        display: block;
        position: absolute;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: ripple-animation 0.6s linear forwards;
        transform: scale(0);
    }

@keyframes ripple-animation {
    from {
        opacity: 1;
        transform: scale(0);
    }

    to {
        opacity: 0;
        transform: scale(4);
    }
}

.hide-text {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.input-block-level {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.btn-file {
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

    .btn-file > input {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translate(-300px, 0) scale(4);
        font-size: 23px;
        direction: ltr;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

.fileupload {
    width: 100%;
    height: 100%;
}

    .fileupload .uneditable-input {
        display: inline-block;
        margin-bottom: 0px;
        vertical-align: middle;
        cursor: text;
        width: 100%;
        height: 100%;
    }

    .fileupload .thumbnail {
        overflow: hidden;
        display: inline-block;
        margin-bottom: 5px;
        vertical-align: middle;
        text-align: center;
    }

        .fileupload .thumbnail > img {
            display: inline-block;
            vertical-align: middle;
            max-height: 100%;
        }

    .fileupload .btn {
        vertical-align: middle;
    }

.fileupload-exists .fileupload-new, .fileupload-new .fileupload-exists {
    display: none;
}

.fileupload-inline .fileupload-controls {
    display: inline;
}

.fileupload-new .input-append .btn-file {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.thumbnail-borderless .thumbnail {
    border: none;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.fileupload-new.thumbnail-borderless .thumbnail {
    border: 1px solid #ddd;
}

.control-group.warning .fileupload .uneditable-input {
    color: #a47e3c;
    border-color: #a47e3c;
}

.control-group.warning .fileupload .fileupload-preview {
    color: #a47e3c;
}

.control-group.warning .fileupload .thumbnail {
    border-color: #a47e3c;
}

.control-group.error .fileupload .uneditable-input {
    color: #b94a48;
    border-color: #b94a48;
}

.control-group.error .fileupload .fileupload-preview {
    color: #b94a48;
}

.control-group.error .fileupload .thumbnail {
    border-color: #b94a48;
}

.control-group.success .fileupload .uneditable-input {
    color: #468847;
    border-color: #468847;
}

.control-group.success .fileupload .fileupload-preview {
    color: #468847;
}

.control-group.success .fileupload .thumbnail {
    border-color: #468847;
}

* {
    box-sizing: border-box
}

* {
    text-shadow: none !important;
    box-shadow: none !important
}


input, input[type=password] {
    width: 150px;
    height: 20px;
}

#toggle_pwd {
    cursor: pointer;
}


.txtbox {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.iconbox-18 {
    padding: 40px 40px 34px;
    -webkit-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    margin: -1px;
    z-index: 1;
    position: relative;
    min-height: calc(100% + 2px);
    border-bottom: 4px solid transparent;
    border-radius: 3px;
}

    .iconbox-18:hover, .iconbox-18.active {
        background-color: #FFF;
        box-shadow: 0 0 20px rgba(0, 0, 0, .1), 0 5px 15px rgba(0, 0, 0, .2);
        border-bottom-color: var(--accent-color2);
    }

    .iconbox-18 .icon {
        margin-bottom: 23px;
    }

    .iconbox-18 p {
        margin: 0 0 0;
    }

.iconbox-18-line > div {
    border-left: 1px dashed #d5d5d5;
    padding: 0;
}

.iconbox-18-line + .iconbox-18-line > div {
    border-top: 1px dashed #d5d5d5;
}

.iconbox-18-line > div:first-child {
    border-left: none;
}

.is-light-text .iconbox-18 h3, .is-light-text .iconbox-18 h4, .is-light-text .iconbox-18 h5, .is-light-text .iconbox-18 h6, .is-light-text .iconbox-18 p {
    transition: color 300ms ease-in;
}

.is-light-text .iconbox-18:hover h3, .is-light-text .iconbox-18:hover h4, .is-light-text .iconbox-18:hover h5, .is-light-text .iconbox-18:hover h6 {
    color: #333333;
}

.is-light-text .iconbox-18:hover p {
    color: #787878;
}

@media only screen and (max-width: 991px) {
    .iconbox-18 {
        padding: 30px 18px;
    }
}

@media only screen and (max-width: 767px) {
    .iconbox-18-line > div {
        border-top: 1px dashed #d5d5d5;
        border-left: none;
    }
}
/* ------------------------------
  Checkbox CSS
------------------------------ */
/* Position setting */


.title-05 {
    margin: 0 auto 59px;
    text-align: right;
}

    .title-05 small {
        color: var(--accent-color);
        font-size: 16px;
        margin-bottom: 18px;
        display: inline-block;
        font-weight: 700;
    }

        .title-05 small::before, .title-05 small::after {
            content: "";
            width: 30px;
            display: inline-block;
            border-bottom: 1px solid currentColor;
            vertical-align: middle;
            margin: 0 20px 3px 0;
        }

        .title-05 small::after {
            margin: 0 0px 3px 20px;
        }

    .title-05 span {
        color: var(--accent-color);
    }

.sash tr td {
    position: relative;
    overflow: hidden;
    height: 60px;
}

.circle-img {
    width: 60px;
    height: 60px;
    border-radius: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 1px 1px 15px 3px #F6F6F6;
}

.image-with-rounded-border {
    background-size: cover;
    border: 2px solid #98CC02;
    border-radius: 5px;
}

.image-with-rounded-border-fix {
    background-size: cover;
    border-radius: 5px;
    box-shadow: 0 0 0 5px #5AB2FB; /* actual fix / hack */
    position: relative; /* fixing the fix this point below */
    top: 30px;
    left: 30px;
}
/* From Uiverse.io by kyle1dev */
.checkbox-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.ios-checkbox {
    --checkbox-size: 28px;
    --checkbox-color: #3b82f6;
    --checkbox-bg: #dbeafe;
    --checkbox-border: #93c5fd;
    position: relative;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

    .ios-checkbox input {
        display: none;
    }

.checkbox-wrapper {
    position: relative;
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.checkbox-bg {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid var(--checkbox-border);
    background: white;
    transition: all 0.2s ease;
}

.checkbox-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 80%;
    height: 80%;
    color: white;
    transform: scale(0);
    transition: all 0.2s ease;
}

.check-path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    transition: stroke-dashoffset 0.3s ease 0.1s;
}

/* Checked State */
.ios-checkbox input:checked + .checkbox-wrapper .checkbox-bg {
    background: var(--checkbox-color);
    border-color: var(--checkbox-color);
}

.ios-checkbox input:checked + .checkbox-wrapper .checkbox-icon {
    transform: scale(1);
}

.ios-checkbox input:checked + .checkbox-wrapper .check-path {
    stroke-dashoffset: 0;
}

/* Hover Effects */
.ios-checkbox:hover .checkbox-wrapper {
    transform: scale(1.05);
}

/* Active Animation */
.ios-checkbox:active .checkbox-wrapper {
    transform: scale(0.95);
}

/* Focus Styles */
.ios-checkbox input:focus + .checkbox-wrapper .checkbox-bg {
    box-shadow: 0 0 0 4px var(--checkbox-bg);
}

/* Color Themes */
.ios-checkbox.blue {
    --checkbox-color: #3b82f6;
    --checkbox-bg: #dbeafe;
    --checkbox-border: #93c5fd;
}

.ios-checkbox.green {
    --checkbox-color: #10b981;
    --checkbox-bg: #d1fae5;
    --checkbox-border: #6ee7b7;
}

.ios-checkbox.purple {
    --checkbox-color: #8b5cf6;
    --checkbox-bg: #ede9fe;
    --checkbox-border: #c4b5fd;
}

.ios-checkbox.red {
    --checkbox-color: #ef4444;
    --checkbox-bg: #fee2e2;
    --checkbox-border: #fca5a5;
}

/* Animation */
@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.ios-checkbox input:checked + .checkbox-wrapper {
    animation: bounce 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.progressbar {
    background-color: #f8f9fa;
    background-color: #f8f9fa;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.progressbaritem {
    list-style: none;
    display: inline-block;
    position: relative;
    text-align: center;
    cursor: pointer;
    min-height: 45px;
    color: #495057 !important;
    background-color: #F0F0F0;
    border: none;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.progressbaritemactive {
    list-style: none;
    display: inline-block;
    position: relative;
    text-align: center;
    cursor: pointer;
    min-height: 45px;
    border: none;
    padding: 15px 25px;
    transition: all 0.3s ease;
    color: #fff !important;
    background-color: #007bff;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
}

.Architecture-imgbox03 {
    border: 1px solid #e7e7e7;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    transition: all ease-in 200ms;
    position: relative;
    background-color: #FFF;
    padding:10px;
}

    .Architecture-imgbox03 .cont {
        padding: 28px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .Architecture-imgbox03 .title {
        font-size: 18px;
        margin: 0 0 24px;
    }

    .Architecture-imgbox03 .link {
        margin: auto 0 0;
        opacity: 0;
        transition: all ease-in 300ms;
    }

    .Architecture-imgbox03:hover {
        background-color: #FFF;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .Architecture-imgbox03::after {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        border-bottom: 5px solid var(--accent-color);
        opacity: 0;
        transition: all ease-in 300ms;
    }

    .Architecture-imgbox03:hover .link, .Architecture-imgbox03:hover::after {
        opacity: 1;
    }

    .Architecture-imgbox03:hover .title {
        color: var(--accent-color);
    }

    .Architecture-imgbox03 .link a:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.builder-editor-mode .Architecture-imgbox03 .link a:after {
    content: none;
}
.icon-box04 {
    margin-bottom: 30px;
}

    .icon-box04 .icon {
        width: 96px;
        height: 96px;
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        font-size: 2.5rem;
        margin-bottom: 23px;
        position: relative;
    }

        .icon-box04 .icon:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: .5;
            visibility: hidden;
            border: 2px solid;
            border-color: inherit;
            border-radius: 50%;
            transition: opacity ease-out 500ms, transform ease-out 500ms;
            pointer-events: none;
        }

    .icon-box04:hover .icon:before {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
        visibility: visible;
    }

    .icon-box04 .title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
.base-player {
    display: flex;
    font-size: 1.25em;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
}

.audioplayer {
    direction: ltr;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin: 10px 0;
    padding: 10px 15px;
    width: 100%;
    height: auto;
    align-items: center;
    border: 1px solid #d1d3d5;
    border-radius: 4px;
    background: #fff;
    flex-flow: wrap;
    background: #f1f1f130;
}

.audioplayer-control {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    margin-top: 5px;
}

.audioplayer .audioplayer-15-forward, .audioplayer .audioplayer-15-sink, .audioplayer .audioplayer-download, .audioplayer .audioplayer-speed, .audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    background: rgba(91, 130, 255, 0);
    border: 1px solid #1977cc;
}

.audioplayer-15-forward, .audioplayer-15-sink, .audioplayer-download, .audioplayer-playpause, .audioplayer-speed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.audioplayer .audioplayer-playpause {
    margin-left: 5px;
    width: 60px;
    height: 60px;
}

.audioplayer .audioplayer-15-forward {
    margin-left: 5px;
}

.audioplayer .audioplayer-15-forward, .audioplayer .audioplayer-15-sink, .audioplayer .audioplayer-download, .audioplayer .audioplayer-speed, .audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    background: rgba(91, 130, 255, 0);
    border: 1px solid #1977cc;
}

.audioplayer-15-forward, .audioplayer-15-sink, .audioplayer-download, .audioplayer-playpause, .audioplayer-speed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.audioplayer-time {
    display: flex;
    width: 40px;
    justify-content: center;
    font-size: 12px;
    color: rgba(51, 51, 51, .6);
}

.audioplayer-bar {
    position: relative;
    display: flex;
    margin: 0 12px;
    height: 12px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;
}

    .audioplayer-bar > div {
        position: absolute;
        left: 0;
        top: 5px;
    }

.audioplayer-bar-loaded {
    z-index: 1;
    height: 2px;
    background: #bec8d2;
}

.audioplayer-bar > div {
    position: absolute;
    left: 0;
    top: 5px;
}

.audioplayer-bar-played {
    flex-direction: row-reverse;
    z-index: 2;
    height: 2px;
    background: #1977cc;
}

.audioplayer-time {
    display: flex;
    width: 40px;
    justify-content: center;
    font-size: 12px;
    color: rgba(51, 51, 51, .6);
}

.audioplayer .audioplayer-download {
    margin-left: 10px;
}

.audioplayer-volume {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
    margin-top: 11px;
}